Symfony Exception

ErrorException ViewException

HTTP 500 Internal Server Error

Undefined index: yes_count (View: /var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/resources/views/front/site/pdf-graphs.blade.php)

Exceptions 2

Illuminate\View\ ViewException

  1.                                 <?php if(count($category['question_list']) > 0): ?>
  2.                                     <?php $__currentLoopData $category['question_list']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $question): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
  3.                                         <tr>
  4.                                             <td class="fw-bold"><?php echo e($question['question']->label); ?></td>
  5.                                             <td><?php echo e(@($question['yes_count'] > 0)?( number_format((($question['yes_count']/$question['total_count']) * 100), 1) ):0.0); ?>%</td>
  6.                                             <td><?php echo e($question['yes_count']."/".$question['total_count']); ?></td>
  7.                                         </tr>
  8.                                         <?php if(count($question['hpo_array']) > 0): ?> 
  9.                                             <?php $__currentLoopData $question['hpo_array']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $hpo): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
  10.                                                 <tr>
  11.                                                     <td style="padding-left: 2rem;"><?php echo e($hpo['hpo_name']); ?></td>
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         }
  2.         // Once we have the path to the compiled file, we will evaluate the paths with
  3.         // typical PHP just like any other templates. We also keep a stack of views
  4.         // which have been rendered for right exception messages to be generated.
  5.         $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         array_pop($this->lastCompiled);
  7.         return $results;
  8.     }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each sections get flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         // If this content implements the "Renderable" interface then we will call the
  2.         // render method on the object so we will avoid any "__toString" exceptions
  3.         // that might be thrown and have their errors obscured by PHP's handling.
  4.         elseif ($content instanceof Renderable) {
  5.             $content $content->render();
  6.         }
  7.         parent::setContent($content);
  8.         return $this;
  1.      */
  2.     public function __construct($content ''$status 200, array $headers = [])
  3.     {
  4.         $this->headers = new ResponseHeaderBag($headers);
  5.         $this->setContent($content);
  6.         $this->setStatusCode($status);
  7.         $this->setProtocolVersion('1.0');
  8.     }
  9.     /**
  1.                     $response instanceof JsonSerializable ||
  2.                     $response instanceof \stdClass ||
  3.                     is_array($response))) {
  4.             $response = new JsonResponse($response);
  5.         } elseif (! $response instanceof SymfonyResponse) {
  6.             $response = new Response($response200, ['Content-Type' => 'text/html']);
  7.         }
  8.         if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {
  9.             $response->setNotModified();
  10.         }
  1.      * @param  mixed  $response
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function prepareResponse($request$response)
  5.     {
  6.         return static::toResponse($request$response);
  7.     }
  8.     /**
  9.      * Static version of prepareResponse.
  10.      *
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(function ($request) use ($route) {
  5.                             return $this->prepareResponse(
  6.                                 $request$route->run()
  7.                             );
  8.                         });
  9.     }
  10.     /**
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1. class CookieConsentMiddleware
  2. {
  3.     public function handle($requestClosure $next)
  4.     {
  5.         $response $next($request);
  6.         if (! $response instanceof Response) {
  7.             return $response;
  8.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw $exception;
  3.         }
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->isReading($request) ||
  2.             $this->runningUnitTests() ||
  3.             $this->inExceptArray($request) ||
  4.             $this->tokensMatch($request)
  5.         ) {
  6.             return tap($next($request), function ($response) use ($request) {
  7.                 if ($this->shouldAddXsrfTokenCookie()) {
  8.                     $this->addCookieToResponse($request$response);
  9.                 }
  10.             });
  11.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->startSession($request$session)
  2.         );
  3.         $this->collectGarbage($session);
  4.         $response $next($request);
  5.         $this->storeCurrentUrl($request$session);
  6.         $this->addCookieToResponse($response$session);
  1.         if ($this->manager->shouldBlock() ||
  2.             ($request->route() instanceof Route && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         }
  5.         return $this->handleStatefulRequest($request$session$next);
  6.     }
  7.     /**
  8.      * Handle the given request within session state.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8.             $response->headers->setCookie($cookie);
  9.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  10.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             $response $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response tap($kernel->handle(
  4.     $request Request::capture()
  5. ))->send();
  6. $kernel->terminate($request$response);
require_once('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/public/index.php') in /var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/index.php (line 19)
  1. // built-in PHP web server. This provides a convenient way to test a Laravel
  2. // application without having installed a "real" web server software here.
  3. if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
  4.     return false;
  5. }
  6. require_once __DIR__.'/public/index.php';

ErrorException

Undefined index: yes_count

  1.                                 <?php if(count($category['question_list']) > 0): ?>
  2.                                     <?php $__currentLoopData $category['question_list']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $question): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
  3.                                         <tr>
  4.                                             <td class="fw-bold"><?php echo e($question['question']->label); ?></td>
  5.                                             <td><?php echo e(@($question['yes_count'] > 0)?( number_format((($question['yes_count']/$question['total_count']) * 100), 1) ):0.0); ?>%</td>
  6.                                             <td><?php echo e($question['yes_count']."/".$question['total_count']); ?></td>
  7.                                         </tr>
  8.                                         <?php if(count($question['hpo_array']) > 0): ?> 
  9.                                             <?php $__currentLoopData $question['hpo_array']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $hpo): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
  10.                                                 <tr>
  11.                                                     <td style="padding-left: 2rem;"><?php echo e($hpo['hpo_name']); ?></td>
HandleExceptions->handleError(8, 'Undefined index: yes_count', '/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php', 70, array('__path' => '/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php', '__data' => array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 74, 'region_data' => array(array('country_count' => 2, 'country_name' => 'Germany'), array('country_count' => 1, 'country_name' => 'Lebanon'), array('country_count' => 71, 'country_name' => 'Unknown')), 'regionMaxValue' => 71, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Unknown', 'answer_count' => 4, 'answer_percentage' => 100.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 3, 'no_count' => 70, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 72, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 72, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 5, 'no_count' => 68, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 40, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 52, 'no_count' => 22, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 18, 'no_count' => 56, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 43, 'no_count' => 29, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 61, 'no_count' => 13, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 25, 'no_count' => 48, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74)), 'male_count' => 39, 'female_count' => 35, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0003517' => array('hpo_id' => 3293, 'hpo_name' => '> P98 : Birth length greater than 97th percentile', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 29, 'hpo_array' => array('HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 28), 'HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 5, 'total_count' => 73, 'hpo_array' => array('0424161834166728' => array('hpo_id' => 1240, 'hpo_name' => 'Muscular hypotonia', 'count' => 4), '0129322428214126' => array('hpo_id' => 1257, 'hpo_name' => 'Hemiparesis', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134321932358020' => array('hpo_id' => 4484, 'hpo_name' => 'Cerebral aneurysm', 'count' => 1), '0128231719363859' => array('hpo_id' => 2082, 'hpo_name' => 'Intracranial hemorrhage', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125221410182346' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 1), '0124363419229527' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 34, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 26), array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 14), '0635251632108242' => array('hpo_id' => 593, 'hpo_name' => 'Blue sclerae', 'count' => 6), '0321192221177337' => array('hpo_id' => 511, 'hpo_name' => 'Proptosis', 'count' => 3), '0221172218284740' => array('hpo_id' => 500, 'hpo_name' => 'Ptosis', 'count' => 2), '0136243525121434' => array('hpo_id' => 657, 'hpo_name' => 'Amblyopia', 'count' => 1), '0131253617107914' => array('hpo_id' => 6512, 'hpo_name' => 'Flat cornea', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125222330108944' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 1), '0117192836232924' => array('hpo_id' => 436, 'hpo_name' => 'Triangular nasal tip', 'count' => 1))), array('question' => object(Question), 'yes_count' => 52, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 212, 'hpo_name' => 'Bifid uvula', 'count' => 28), array('hpo_id' => 297, 'hpo_name' => 'Retrognathia', 'count' => 16), array('hpo_id' => 2564, 'hpo_name' => 'High, narrow palate', 'count' => 14), array('hpo_id' => 195, 'hpo_name' => 'Cleft palate', 'count' => 10), '0829283029103662' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 8), '0633322317361275' => array('hpo_id' => 687, 'hpo_name' => 'Dental crowding', 'count' => 6), '0235192236333589' => array('hpo_id' => 10819, 'hpo_name' => 'Broad uvula', 'count' => 2), '0223361919223488' => array('hpo_id' => 209, 'hpo_name' => 'Narrow palate', 'count' => 2), '0218292219171657' => array('hpo_id' => 343, 'hpo_name' => 'Short chin', 'count' => 2), '0218242222177142' => array('hpo_id' => 333, 'hpo_name' => 'Smooth philtrum', 'count' => 2), '0136352322195925' => array('hpo_id' => 186, 'hpo_name' => 'Abnormality of the teeth', 'count' => 1), '0122153219355180' => array('hpo_id' => 11143, 'hpo_name' => 'Overbite', 'count' => 1), '0118292219173502' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1), '0117292823107535' => array('hpo_id' => 255, 'hpo_name' => 'Thin vermilion border', 'count' => 1), '0117292823101522' => array('hpo_id' => 236, 'hpo_name' => 'Thin upper lip vermilion', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 18, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 542, 'hpo_name' => 'Myopia', 'count' => 13), '0434361736194506' => array('hpo_id' => 509, 'hpo_name' => 'Cataract', 'count' => 4), '0229122132191841' => array('hpo_id' => 537, 'hpo_name' => 'Hypermetropia', 'count' => 2), '0133121834296783' => array('hpo_id' => 6455, 'hpo_name' => 'Dyschromatopsia', 'count' => 1), '0132132217192519' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936355180' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 43, 'total_count' => 72, 'hpo_array' => array(array('hpo_id' => 1549, 'hpo_name' => 'Mitral valve prolapse', 'count' => 12), array('hpo_id' => 2476, 'hpo_name' => 'Aortic root dilatation', 'count' => 11), '0917292219369229' => array('hpo_id' => 12916, 'hpo_name' => 'Thoracic aortic aneurysm', 'count' => 9), '0736221917284173' => array('hpo_id' => 2510, 'hpo_name' => 'Aortic dissection', 'count' => 7), '0724281719366331' => array('hpo_id' => 1567, 'hpo_name' => 'Mitral regurgitation', 'count' => 7), '0318282316187070' => array('hpo_id' => 11735, 'hpo_name' => 'Sinus of Valsalva aneurysm', 'count' => 3), '0315361928344083' => array('hpo_id' => 2478, 'hpo_name' => 'Varicose veins', 'count' => 3), '0236233216195750' => array('hpo_id' => 2477, 'hpo_name' => 'Aneurysm', 'count' => 2), '0236221917284837' => array('hpo_id' => 4481, 'hpo_name' => 'Aortic aneurysm', 'count' => 2), '0236221917281213' => array('hpo_id' => 1572, 'hpo_name' => 'Aortic regurgitation', 'count' => 2), '0236183432233682' => array('hpo_id' => 4471, 'hpo_name' => 'Ascending aortic dissection', 'count' => 2), '0221361732233143' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 2), '0136353322242084' => array('hpo_id' => 4492, 'hpo_name' => 'Abdominal aortic aneurysm', 'count' => 1), '0136352322197095' => array('hpo_id' => 1623, 'hpo_name' => 'Abnormality of the left ventricle', 'count' => 1), '0136221917287680' => array('hpo_id' => 1636, 'hpo_name' => 'Aortic dilatation', 'count' => 1), '0136191929123309' => array('hpo_id' => 11768, 'hpo_name' => 'Arrhythmia', 'count' => 1), '0136183432232751' => array('hpo_id' => 4508, 'hpo_name' => 'Ascending aortic dilation', 'count' => 1), '0136171928368774' => array('hpo_id' => 1546, 'hpo_name' => 'Atria septal defect', 'count' => 1), '0134361922176703' => array('hpo_id' => 4763, 'hpo_name' => 'Carotid artery tortuosity', 'count' => 1), '0133321834323710' => array('hpo_id' => 12663, 'hpo_name' => 'Descending aortic dissection', 'count' => 1), '0133282536173484' => array('hpo_id' => 1559, 'hpo_name' => 'Dilated cardiomyopathy', 'count' => 1), '0133282536172928' => array('hpo_id' => 4497, 'hpo_name' => 'Dilatation of the descending thoracic aorta', 'count' => 1), '0121361922136771' => array('hpo_id' => 4339, 'hpo_name' => 'Paroxysmal supraventricular tachycardia', 'count' => 1), '0119283029177657' => array('hpo_id' => 11807, 'hpo_name' => 'Right bundle branch block', 'count' => 1), '0117192834168605' => array('hpo_id' => 4642, 'hpo_name' => 'Tricuspid regurgitation', 'count' => 1), '0117192834165324' => array('hpo_id' => 1616, 'hpo_name' => 'Tricuspid valve prolapse', 'count' => 1), '0115322317196190' => array('hpo_id' => 1545, 'hpo_name' => 'Ventricular septal defect', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134291922237712' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0129283617166408' => array('hpo_id' => 1954, 'hpo_name' => 'Hiatus hernia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 61, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 37), array('hpo_id' => 1673, 'hpo_name' => 'Pes planus', 'count' => 29), array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 24), array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 19), array('hpo_id' => 12967, 'hpo_name' => 'Increased arm span', 'count' => 14), array('hpo_id' => 776, 'hpo_name' => 'Pectus excavatum', 'count' => 13), '0921323417169836' => array('hpo_id' => 777, 'hpo_name' => 'Pectus carinatum', 'count' => 9), '0533323419329473' => array('hpo_id' => 3022, 'hpo_name' => 'Decreased muscle mass', 'count' => 5), '0533222528344496' => array('hpo_id' => 287, 'hpo_name' => 'Dolichocephaly', 'count' => 5), '0526122129229955' => array('hpo_id' => 2606, 'hpo_name' => 'Kyphoscoliosis', 'count' => 5), '0427222823179537' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 4), '0422181732227459' => array('hpo_id' => 2616, 'hpo_name' => 'Osteoarthritis', 'count' => 4), '0417362528211340' => array('hpo_id' => 1665, 'hpo_name' => 'Talipes equinovarus', 'count' => 4), '0336352322191166' => array('hpo_id' => 775, 'hpo_name' => 'Abnormality of the sternum', 'count' => 3), '0326122129225715' => array('hpo_id' => 2647, 'hpo_name' => 'Kyphosis', 'count' => 3), '0318212223335574' => array('hpo_id' => 3116, 'hpo_name' => 'Spondylolisthesis', 'count' => 3), '0235282536179019' => array('hpo_id' => 10650, 'hpo_name' => 'Bilateral coxa valga', 'count' => 2), '0229362525162665' => array('hpo_id' => 1728, 'hpo_name' => 'Hallux valgus', 'count' => 2), '0229282110337368' => array('hpo_id' => 1356, 'hpo_name' => 'Hip dysplasia', 'count' => 2), '0222181732226857' => array('hpo_id' => 946, 'hpo_name' => 'Osteoporosis', 'count' => 2), '0221321810347476' => array('hpo_id' => 1664, 'hpo_name' => 'Pes cavus', 'count' => 2), '0136352322199261' => array('hpo_id' => 778, 'hpo_name' => 'Abnormality of the breast', 'count' => 1), '0136352322197421' => array('hpo_id' => 3130, 'hpo_name' => 'Abnormality of the cervical spine', 'count' => 1), '0134362421179732' => array('hpo_id' => 12537, 'hpo_name' => 'Camptodactyly', 'count' => 1), '0134362421179594' => array('hpo_id' => 1743, 'hpo_name' => 'Camptodactyly of toe', 'count' => 1), '0134321915285644' => array('hpo_id' => 7102, 'hpo_name' => 'Cervical spondylosis', 'count' => 1), '0134321915285567' => array('hpo_id' => 896, 'hpo_name' => 'Cervical ribs', 'count' => 1), '0134222317193080' => array('hpo_id' => 14888, 'hpo_name' => 'Contractures of the proximal interphalangeal joint of the 5th toe', 'count' => 1), '0134222317191187' => array('hpo_id' => 14886, 'hpo_name' => 'Contracture of the proximal interphalangeal joint of the 4th toe', 'count' => 1), '0133281821193240' => array('hpo_id' => 1468, 'hpo_name' => 'Disproportionate tall stature', 'count' => 1), '0131192223179840' => array('hpo_id' => 1925, 'hpo_name' => 'Frontal bossing', 'count' => 1), '0130322332192303' => array('hpo_id' => 2617, 'hpo_name' => 'Generalized joint laxity', 'count' => 1), '0130322316101004' => array('hpo_id' => 2692, 'hpo_name' => 'Genu valgum', 'count' => 1), '0129362424323304' => array('hpo_id' => 1674, 'hpo_name' => 'Hammertoe', 'count' => 1), '0129321923283942' => array('hpo_id' => 7060, 'hpo_name' => 'Herniation of intervertebral nuclei', 'count' => 1), '0129282110228902' => array('hpo_id' => 7350, 'hpo_name' => 'Hip osteoarthritis', 'count' => 1), '0128233016289600' => array('hpo_id' => 25, 'hpo_name' => 'Inguinal hernia', 'count' => 1), '0125222330107886' => array('hpo_id' => 10465, 'hpo_name' => 'Long toe', 'count' => 1), '0125222330105018' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0124321736178495' => array('hpo_id' => 1749, 'hpo_name' => 'Metatarsus adductus', 'count' => 1), '0121192224285963' => array('hpo_id' => 4902, 'hpo_name' => 'Prominent metopic ridge', 'count' => 1), '0121192217195106' => array('hpo_id' => 3006, 'hpo_name' => 'Protrusio acetabuli', 'count' => 1), '0118292219173961' => array('hpo_id' => 456, 'hpo_name' => 'Short neck', 'count' => 1), '0118253223337847' => array('hpo_id' => 1476, 'hpo_name' => 'Slender build', 'count' => 1), '0117292219365789' => array('hpo_id' => 2772, 'hpo_name' => 'Thoracic kyphosis', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 25, 'total_count' => 73, 'hpo_array' => array(array('hpo_id' => 984, 'hpo_name' => 'Bruising susceptibility', 'count' => 15), array('hpo_id' => 10625, 'hpo_name' => 'Dermal translucency', 'count' => 11), array('hpo_id' => 983, 'hpo_name' => 'Soft skin', 'count' => 11), array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 11), '0421222219109267' => array('hpo_id' => 1068, 'hpo_name' => 'Poor wound healing', 'count' => 4), '0418171928361969' => array('hpo_id' => 1075, 'hpo_name' => 'Striae distensae', 'count' => 4), '0229122132193050' => array('hpo_id' => 980, 'hpo_name' => 'Hyperextensible skin', 'count' => 2), '0136233028224981' => array('hpo_id' => 15487, 'hpo_name' => 'Angioedema', 'count' => 1), '0119323316343133' => array('hpo_id' => 3445, 'hpo_name' => 'Reduced subcutaneous adipose tissue', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0129122122267844' => array('hpo_id' => 2735, 'hpo_name' => 'Hypokalemia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0136161722285214' => array('hpo_id' => 1889, 'hpo_name' => 'Autoimmune thrombocytopenia', 'count' => 1)))))), 'lang' => 'front/site/index.'), '__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 74, 'region_data' => array(array('country_count' => 2, 'country_name' => 'Germany'), array('country_count' => 1, 'country_name' => 'Lebanon'), array('country_count' => 71, 'country_name' => 'Unknown')), 'regionMaxValue' => 71, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Unknown', 'answer_count' => 4, 'answer_percentage' => 100.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 3, 'no_count' => 70, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 72, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 72, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 5, 'no_count' => 68, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 40, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 52, 'no_count' => 22, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 18, 'no_count' => 56, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 43, 'no_count' => 29, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 61, 'no_count' => 13, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 25, 'no_count' => 48, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74)), 'male_count' => 39, 'female_count' => 35, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0003517' => array('hpo_id' => 3293, 'hpo_name' => '> P98 : Birth length greater than 97th percentile', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 29, 'hpo_array' => array('HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 28), 'HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 5, 'total_count' => 73, 'hpo_array' => array('0424161834166728' => array('hpo_id' => 1240, 'hpo_name' => 'Muscular hypotonia', 'count' => 4), '0129322428214126' => array('hpo_id' => 1257, 'hpo_name' => 'Hemiparesis', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134321932358020' => array('hpo_id' => 4484, 'hpo_name' => 'Cerebral aneurysm', 'count' => 1), '0128231719363859' => array('hpo_id' => 2082, 'hpo_name' => 'Intracranial hemorrhage', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125221410182346' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 1), '0124363419229527' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 34, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 26), array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 14), '0635251632108242' => array('hpo_id' => 593, 'hpo_name' => 'Blue sclerae', 'count' => 6), '0321192221177337' => array('hpo_id' => 511, 'hpo_name' => 'Proptosis', 'count' => 3), '0221172218284740' => array('hpo_id' => 500, 'hpo_name' => 'Ptosis', 'count' => 2), '0136243525121434' => array('hpo_id' => 657, 'hpo_name' => 'Amblyopia', 'count' => 1), '0131253617107914' => array('hpo_id' => 6512, 'hpo_name' => 'Flat cornea', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125222330108944' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 1), '0117192836232924' => array('hpo_id' => 436, 'hpo_name' => 'Triangular nasal tip', 'count' => 1))), array('question' => object(Question), 'yes_count' => 52, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 212, 'hpo_name' => 'Bifid uvula', 'count' => 28), array('hpo_id' => 297, 'hpo_name' => 'Retrognathia', 'count' => 16), array('hpo_id' => 2564, 'hpo_name' => 'High, narrow palate', 'count' => 14), array('hpo_id' => 195, 'hpo_name' => 'Cleft palate', 'count' => 10), '0829283029103662' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 8), '0633322317361275' => array('hpo_id' => 687, 'hpo_name' => 'Dental crowding', 'count' => 6), '0235192236333589' => array('hpo_id' => 10819, 'hpo_name' => 'Broad uvula', 'count' => 2), '0223361919223488' => array('hpo_id' => 209, 'hpo_name' => 'Narrow palate', 'count' => 2), '0218292219171657' => array('hpo_id' => 343, 'hpo_name' => 'Short chin', 'count' => 2), '0218242222177142' => array('hpo_id' => 333, 'hpo_name' => 'Smooth philtrum', 'count' => 2), '0136352322195925' => array('hpo_id' => 186, 'hpo_name' => 'Abnormality of the teeth', 'count' => 1), '0122153219355180' => array('hpo_id' => 11143, 'hpo_name' => 'Overbite', 'count' => 1), '0118292219173502' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1), '0117292823107535' => array('hpo_id' => 255, 'hpo_name' => 'Thin vermilion border', 'count' => 1), '0117292823101522' => array('hpo_id' => 236, 'hpo_name' => 'Thin upper lip vermilion', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 18, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 542, 'hpo_name' => 'Myopia', 'count' => 13), '0434361736194506' => array('hpo_id' => 509, 'hpo_name' => 'Cataract', 'count' => 4), '0229122132191841' => array('hpo_id' => 537, 'hpo_name' => 'Hypermetropia', 'count' => 2), '0133121834296783' => array('hpo_id' => 6455, 'hpo_name' => 'Dyschromatopsia', 'count' => 1), '0132132217192519' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936355180' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 43, 'total_count' => 72, 'hpo_array' => array(array('hpo_id' => 1549, 'hpo_name' => 'Mitral valve prolapse', 'count' => 12), array('hpo_id' => 2476, 'hpo_name' => 'Aortic root dilatation', 'count' => 11), '0917292219369229' => array('hpo_id' => 12916, 'hpo_name' => 'Thoracic aortic aneurysm', 'count' => 9), '0736221917284173' => array('hpo_id' => 2510, 'hpo_name' => 'Aortic dissection', 'count' => 7), '0724281719366331' => array('hpo_id' => 1567, 'hpo_name' => 'Mitral regurgitation', 'count' => 7), '0318282316187070' => array('hpo_id' => 11735, 'hpo_name' => 'Sinus of Valsalva aneurysm', 'count' => 3), '0315361928344083' => array('hpo_id' => 2478, 'hpo_name' => 'Varicose veins', 'count' => 3), '0236233216195750' => array('hpo_id' => 2477, 'hpo_name' => 'Aneurysm', 'count' => 2), '0236221917284837' => array('hpo_id' => 4481, 'hpo_name' => 'Aortic aneurysm', 'count' => 2), '0236221917281213' => array('hpo_id' => 1572, 'hpo_name' => 'Aortic regurgitation', 'count' => 2), '0236183432233682' => array('hpo_id' => 4471, 'hpo_name' => 'Ascending aortic dissection', 'count' => 2), '0221361732233143' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 2), '0136353322242084' => array('hpo_id' => 4492, 'hpo_name' => 'Abdominal aortic aneurysm', 'count' => 1), '0136352322197095' => array('hpo_id' => 1623, 'hpo_name' => 'Abnormality of the left ventricle', 'count' => 1), '0136221917287680' => array('hpo_id' => 1636, 'hpo_name' => 'Aortic dilatation', 'count' => 1), '0136191929123309' => array('hpo_id' => 11768, 'hpo_name' => 'Arrhythmia', 'count' => 1), '0136183432232751' => array('hpo_id' => 4508, 'hpo_name' => 'Ascending aortic dilation', 'count' => 1), '0136171928368774' => array('hpo_id' => 1546, 'hpo_name' => 'Atria septal defect', 'count' => 1), '0134361922176703' => array('hpo_id' => 4763, 'hpo_name' => 'Carotid artery tortuosity', 'count' => 1), '0133321834323710' => array('hpo_id' => 12663, 'hpo_name' => 'Descending aortic dissection', 'count' => 1), '0133282536173484' => array('hpo_id' => 1559, 'hpo_name' => 'Dilated cardiomyopathy', 'count' => 1), '0133282536172928' => array('hpo_id' => 4497, 'hpo_name' => 'Dilatation of the descending thoracic aorta', 'count' => 1), '0121361922136771' => array('hpo_id' => 4339, 'hpo_name' => 'Paroxysmal supraventricular tachycardia', 'count' => 1), '0119283029177657' => array('hpo_id' => 11807, 'hpo_name' => 'Right bundle branch block', 'count' => 1), '0117192834168605' => array('hpo_id' => 4642, 'hpo_name' => 'Tricuspid regurgitation', 'count' => 1), '0117192834165324' => array('hpo_id' => 1616, 'hpo_name' => 'Tricuspid valve prolapse', 'count' => 1), '0115322317196190' => array('hpo_id' => 1545, 'hpo_name' => 'Ventricular septal defect', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134291922237712' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0129283617166408' => array('hpo_id' => 1954, 'hpo_name' => 'Hiatus hernia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 61, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 37), array('hpo_id' => 1673, 'hpo_name' => 'Pes planus', 'count' => 29), array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 24), array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 19), array('hpo_id' => 12967, 'hpo_name' => 'Increased arm span', 'count' => 14), array('hpo_id' => 776, 'hpo_name' => 'Pectus excavatum', 'count' => 13), '0921323417169836' => array('hpo_id' => 777, 'hpo_name' => 'Pectus carinatum', 'count' => 9), '0533323419329473' => array('hpo_id' => 3022, 'hpo_name' => 'Decreased muscle mass', 'count' => 5), '0533222528344496' => array('hpo_id' => 287, 'hpo_name' => 'Dolichocephaly', 'count' => 5), '0526122129229955' => array('hpo_id' => 2606, 'hpo_name' => 'Kyphoscoliosis', 'count' => 5), '0427222823179537' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 4), '0422181732227459' => array('hpo_id' => 2616, 'hpo_name' => 'Osteoarthritis', 'count' => 4), '0417362528211340' => array('hpo_id' => 1665, 'hpo_name' => 'Talipes equinovarus', 'count' => 4), '0336352322191166' => array('hpo_id' => 775, 'hpo_name' => 'Abnormality of the sternum', 'count' => 3), '0326122129225715' => array('hpo_id' => 2647, 'hpo_name' => 'Kyphosis', 'count' => 3), '0318212223335574' => array('hpo_id' => 3116, 'hpo_name' => 'Spondylolisthesis', 'count' => 3), '0235282536179019' => array('hpo_id' => 10650, 'hpo_name' => 'Bilateral coxa valga', 'count' => 2), '0229362525162665' => array('hpo_id' => 1728, 'hpo_name' => 'Hallux valgus', 'count' => 2), '0229282110337368' => array('hpo_id' => 1356, 'hpo_name' => 'Hip dysplasia', 'count' => 2), '0222181732226857' => array('hpo_id' => 946, 'hpo_name' => 'Osteoporosis', 'count' => 2), '0221321810347476' => array('hpo_id' => 1664, 'hpo_name' => 'Pes cavus', 'count' => 2), '0136352322199261' => array('hpo_id' => 778, 'hpo_name' => 'Abnormality of the breast', 'count' => 1), '0136352322197421' => array('hpo_id' => 3130, 'hpo_name' => 'Abnormality of the cervical spine', 'count' => 1), '0134362421179732' => array('hpo_id' => 12537, 'hpo_name' => 'Camptodactyly', 'count' => 1), '0134362421179594' => array('hpo_id' => 1743, 'hpo_name' => 'Camptodactyly of toe', 'count' => 1), '0134321915285644' => array('hpo_id' => 7102, 'hpo_name' => 'Cervical spondylosis', 'count' => 1), '0134321915285567' => array('hpo_id' => 896, 'hpo_name' => 'Cervical ribs', 'count' => 1), '0134222317193080' => array('hpo_id' => 14888, 'hpo_name' => 'Contractures of the proximal interphalangeal joint of the 5th toe', 'count' => 1), '0134222317191187' => array('hpo_id' => 14886, 'hpo_name' => 'Contracture of the proximal interphalangeal joint of the 4th toe', 'count' => 1), '0133281821193240' => array('hpo_id' => 1468, 'hpo_name' => 'Disproportionate tall stature', 'count' => 1), '0131192223179840' => array('hpo_id' => 1925, 'hpo_name' => 'Frontal bossing', 'count' => 1), '0130322332192303' => array('hpo_id' => 2617, 'hpo_name' => 'Generalized joint laxity', 'count' => 1), '0130322316101004' => array('hpo_id' => 2692, 'hpo_name' => 'Genu valgum', 'count' => 1), '0129362424323304' => array('hpo_id' => 1674, 'hpo_name' => 'Hammertoe', 'count' => 1), '0129321923283942' => array('hpo_id' => 7060, 'hpo_name' => 'Herniation of intervertebral nuclei', 'count' => 1), '0129282110228902' => array('hpo_id' => 7350, 'hpo_name' => 'Hip osteoarthritis', 'count' => 1), '0128233016289600' => array('hpo_id' => 25, 'hpo_name' => 'Inguinal hernia', 'count' => 1), '0125222330107886' => array('hpo_id' => 10465, 'hpo_name' => 'Long toe', 'count' => 1), '0125222330105018' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0124321736178495' => array('hpo_id' => 1749, 'hpo_name' => 'Metatarsus adductus', 'count' => 1), '0121192224285963' => array('hpo_id' => 4902, 'hpo_name' => 'Prominent metopic ridge', 'count' => 1), '0121192217195106' => array('hpo_id' => 3006, 'hpo_name' => 'Protrusio acetabuli', 'count' => 1), '0118292219173961' => array('hpo_id' => 456, 'hpo_name' => 'Short neck', 'count' => 1), '0118253223337847' => array('hpo_id' => 1476, 'hpo_name' => 'Slender build', 'count' => 1), '0117292219365789' => array('hpo_id' => 2772, 'hpo_name' => 'Thoracic kyphosis', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 25, 'total_count' => 73, 'hpo_array' => array(array('hpo_id' => 984, 'hpo_name' => 'Bruising susceptibility', 'count' => 15), array('hpo_id' => 10625, 'hpo_name' => 'Dermal translucency', 'count' => 11), array('hpo_id' => 983, 'hpo_name' => 'Soft skin', 'count' => 11), array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 11), '0421222219109267' => array('hpo_id' => 1068, 'hpo_name' => 'Poor wound healing', 'count' => 4), '0418171928361969' => array('hpo_id' => 1075, 'hpo_name' => 'Striae distensae', 'count' => 4), '0229122132193050' => array('hpo_id' => 980, 'hpo_name' => 'Hyperextensible skin', 'count' => 2), '0136233028224981' => array('hpo_id' => 15487, 'hpo_name' => 'Angioedema', 'count' => 1), '0119323316343133' => array('hpo_id' => 3445, 'hpo_name' => 'Reduced subcutaneous adipose tissue', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0129122122267844' => array('hpo_id' => 2735, 'hpo_name' => 'Hypokalemia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0136161722285214' => array('hpo_id' => 1889, 'hpo_name' => 'Autoimmune thrombocytopenia', 'count' => 1)))))), 'lang' => 'front/site/index.', '__currentLoopData' => array(array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0003517' => array('hpo_id' => 3293, 'hpo_name' => '> P98 : Birth length greater than 97th percentile', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 29, 'hpo_array' => array('HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 28), 'HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array())), 'que_cat' => array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Unknown', 'answer_count' => 4, 'answer_percentage' => 100.0))))), 'loop' => object(stdClass), 'que_details' => array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Unknown', 'answer_count' => 4, 'answer_percentage' => 100.0))), 'key' => 0, 'category' => array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0003517' => array('hpo_id' => 3293, 'hpo_name' => '> P98 : Birth length greater than 97th percentile', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 29, 'hpo_array' => array('HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 28), 'HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()))), 'question' => array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0003517' => array('hpo_id' => 3293, 'hpo_name' => '> P98 : Birth length greater than 97th percentile', 'count' => 2))))) in /var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php (line 70)
  1.                                 <?php if(count($category['question_list']) > 0): ?>
  2.                                     <?php $__currentLoopData $category['question_list']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $question): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
  3.                                         <tr>
  4.                                             <td class="fw-bold"><?php echo e($question['question']->label); ?></td>
  5.                                             <td><?php echo e(@($question['yes_count'] > 0)?( number_format((($question['yes_count']/$question['total_count']) * 100), 1) ):0.0); ?>%</td>
  6.                                             <td><?php echo e($question['yes_count']."/".$question['total_count']); ?></td>
  7.                                         </tr>
  8.                                         <?php if(count($question['hpo_array']) > 0): ?> 
  9.                                             <?php $__currentLoopData $question['hpo_array']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $hpo): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
  10.                                                 <tr>
  11.                                                     <td style="padding-left: 2rem;"><?php echo e($hpo['hpo_name']); ?></td>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         }
  2.         // Once we have the path to the compiled file, we will evaluate the paths with
  3.         // typical PHP just like any other templates. We also keep a stack of views
  4.         // which have been rendered for right exception messages to be generated.
  5.         $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         array_pop($this->lastCompiled);
  7.         return $results;
  8.     }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each sections get flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         // If this content implements the "Renderable" interface then we will call the
  2.         // render method on the object so we will avoid any "__toString" exceptions
  3.         // that might be thrown and have their errors obscured by PHP's handling.
  4.         elseif ($content instanceof Renderable) {
  5.             $content $content->render();
  6.         }
  7.         parent::setContent($content);
  8.         return $this;
  1.      */
  2.     public function __construct($content ''$status 200, array $headers = [])
  3.     {
  4.         $this->headers = new ResponseHeaderBag($headers);
  5.         $this->setContent($content);
  6.         $this->setStatusCode($status);
  7.         $this->setProtocolVersion('1.0');
  8.     }
  9.     /**
  1.                     $response instanceof JsonSerializable ||
  2.                     $response instanceof \stdClass ||
  3.                     is_array($response))) {
  4.             $response = new JsonResponse($response);
  5.         } elseif (! $response instanceof SymfonyResponse) {
  6.             $response = new Response($response200, ['Content-Type' => 'text/html']);
  7.         }
  8.         if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {
  9.             $response->setNotModified();
  10.         }
  1.      * @param  mixed  $response
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function prepareResponse($request$response)
  5.     {
  6.         return static::toResponse($request$response);
  7.     }
  8.     /**
  9.      * Static version of prepareResponse.
  10.      *
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(function ($request) use ($route) {
  5.                             return $this->prepareResponse(
  6.                                 $request$route->run()
  7.                             );
  8.                         });
  9.     }
  10.     /**
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1. class CookieConsentMiddleware
  2. {
  3.     public function handle($requestClosure $next)
  4.     {
  5.         $response $next($request);
  6.         if (! $response instanceof Response) {
  7.             return $response;
  8.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw $exception;
  3.         }
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->isReading($request) ||
  2.             $this->runningUnitTests() ||
  3.             $this->inExceptArray($request) ||
  4.             $this->tokensMatch($request)
  5.         ) {
  6.             return tap($next($request), function ($response) use ($request) {
  7.                 if ($this->shouldAddXsrfTokenCookie()) {
  8.                     $this->addCookieToResponse($request$response);
  9.                 }
  10.             });
  11.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->startSession($request$session)
  2.         );
  3.         $this->collectGarbage($session);
  4.         $response $next($request);
  5.         $this->storeCurrentUrl($request$session);
  6.         $this->addCookieToResponse($response$session);
  1.         if ($this->manager->shouldBlock() ||
  2.             ($request->route() instanceof Route && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         }
  5.         return $this->handleStatefulRequest($request$session$next);
  6.     }
  7.     /**
  8.      * Handle the given request within session state.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8.             $response->headers->setCookie($cookie);
  9.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  10.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             $response $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response tap($kernel->handle(
  4.     $request Request::capture()
  5. ))->send();
  6. $kernel->terminate($request$response);
require_once('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/public/index.php') in /var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/index.php (line 19)
  1. // built-in PHP web server. This provides a convenient way to test a Laravel
  2. // application without having installed a "real" web server software here.
  3. if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
  4.     return false;
  5. }
  6. require_once __DIR__.'/public/index.php';

Stack Traces 2

[2/2] ViewException
Illuminate\View\ViewException:
Undefined index: yes_count (View: /var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/resources/views/front/site/pdf-graphs.blade.php)

  at /var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php:70
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ErrorException), 2)
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 74, 'region_data' => array(array('country_count' => 2, 'country_name' => 'Germany'), array('country_count' => 1, 'country_name' => 'Lebanon'), array('country_count' => 71, 'country_name' => 'Unknown')), 'regionMaxValue' => 71, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Unknown', 'answer_count' => 4, 'answer_percentage' => 100.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 3, 'no_count' => 70, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 72, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 72, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 5, 'no_count' => 68, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 40, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 52, 'no_count' => 22, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 18, 'no_count' => 56, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 43, 'no_count' => 29, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 61, 'no_count' => 13, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 25, 'no_count' => 48, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74)), 'male_count' => 39, 'female_count' => 35, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0003517' => array('hpo_id' => 3293, 'hpo_name' => '> P98 : Birth length greater than 97th percentile', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 29, 'hpo_array' => array('HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 28), 'HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 5, 'total_count' => 73, 'hpo_array' => array('0424161834166728' => array('hpo_id' => 1240, 'hpo_name' => 'Muscular hypotonia', 'count' => 4), '0129322428214126' => array('hpo_id' => 1257, 'hpo_name' => 'Hemiparesis', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134321932358020' => array('hpo_id' => 4484, 'hpo_name' => 'Cerebral aneurysm', 'count' => 1), '0128231719363859' => array('hpo_id' => 2082, 'hpo_name' => 'Intracranial hemorrhage', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125221410182346' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 1), '0124363419229527' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 34, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 26), array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 14), '0635251632108242' => array('hpo_id' => 593, 'hpo_name' => 'Blue sclerae', 'count' => 6), '0321192221177337' => array('hpo_id' => 511, 'hpo_name' => 'Proptosis', 'count' => 3), '0221172218284740' => array('hpo_id' => 500, 'hpo_name' => 'Ptosis', 'count' => 2), '0136243525121434' => array('hpo_id' => 657, 'hpo_name' => 'Amblyopia', 'count' => 1), '0131253617107914' => array('hpo_id' => 6512, 'hpo_name' => 'Flat cornea', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125222330108944' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 1), '0117192836232924' => array('hpo_id' => 436, 'hpo_name' => 'Triangular nasal tip', 'count' => 1))), array('question' => object(Question), 'yes_count' => 52, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 212, 'hpo_name' => 'Bifid uvula', 'count' => 28), array('hpo_id' => 297, 'hpo_name' => 'Retrognathia', 'count' => 16), array('hpo_id' => 2564, 'hpo_name' => 'High, narrow palate', 'count' => 14), array('hpo_id' => 195, 'hpo_name' => 'Cleft palate', 'count' => 10), '0829283029103662' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 8), '0633322317361275' => array('hpo_id' => 687, 'hpo_name' => 'Dental crowding', 'count' => 6), '0235192236333589' => array('hpo_id' => 10819, 'hpo_name' => 'Broad uvula', 'count' => 2), '0223361919223488' => array('hpo_id' => 209, 'hpo_name' => 'Narrow palate', 'count' => 2), '0218292219171657' => array('hpo_id' => 343, 'hpo_name' => 'Short chin', 'count' => 2), '0218242222177142' => array('hpo_id' => 333, 'hpo_name' => 'Smooth philtrum', 'count' => 2), '0136352322195925' => array('hpo_id' => 186, 'hpo_name' => 'Abnormality of the teeth', 'count' => 1), '0122153219355180' => array('hpo_id' => 11143, 'hpo_name' => 'Overbite', 'count' => 1), '0118292219173502' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1), '0117292823107535' => array('hpo_id' => 255, 'hpo_name' => 'Thin vermilion border', 'count' => 1), '0117292823101522' => array('hpo_id' => 236, 'hpo_name' => 'Thin upper lip vermilion', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 18, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 542, 'hpo_name' => 'Myopia', 'count' => 13), '0434361736194506' => array('hpo_id' => 509, 'hpo_name' => 'Cataract', 'count' => 4), '0229122132191841' => array('hpo_id' => 537, 'hpo_name' => 'Hypermetropia', 'count' => 2), '0133121834296783' => array('hpo_id' => 6455, 'hpo_name' => 'Dyschromatopsia', 'count' => 1), '0132132217192519' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936355180' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 43, 'total_count' => 72, 'hpo_array' => array(array('hpo_id' => 1549, 'hpo_name' => 'Mitral valve prolapse', 'count' => 12), array('hpo_id' => 2476, 'hpo_name' => 'Aortic root dilatation', 'count' => 11), '0917292219369229' => array('hpo_id' => 12916, 'hpo_name' => 'Thoracic aortic aneurysm', 'count' => 9), '0736221917284173' => array('hpo_id' => 2510, 'hpo_name' => 'Aortic dissection', 'count' => 7), '0724281719366331' => array('hpo_id' => 1567, 'hpo_name' => 'Mitral regurgitation', 'count' => 7), '0318282316187070' => array('hpo_id' => 11735, 'hpo_name' => 'Sinus of Valsalva aneurysm', 'count' => 3), '0315361928344083' => array('hpo_id' => 2478, 'hpo_name' => 'Varicose veins', 'count' => 3), '0236233216195750' => array('hpo_id' => 2477, 'hpo_name' => 'Aneurysm', 'count' => 2), '0236221917284837' => array('hpo_id' => 4481, 'hpo_name' => 'Aortic aneurysm', 'count' => 2), '0236221917281213' => array('hpo_id' => 1572, 'hpo_name' => 'Aortic regurgitation', 'count' => 2), '0236183432233682' => array('hpo_id' => 4471, 'hpo_name' => 'Ascending aortic dissection', 'count' => 2), '0221361732233143' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 2), '0136353322242084' => array('hpo_id' => 4492, 'hpo_name' => 'Abdominal aortic aneurysm', 'count' => 1), '0136352322197095' => array('hpo_id' => 1623, 'hpo_name' => 'Abnormality of the left ventricle', 'count' => 1), '0136221917287680' => array('hpo_id' => 1636, 'hpo_name' => 'Aortic dilatation', 'count' => 1), '0136191929123309' => array('hpo_id' => 11768, 'hpo_name' => 'Arrhythmia', 'count' => 1), '0136183432232751' => array('hpo_id' => 4508, 'hpo_name' => 'Ascending aortic dilation', 'count' => 1), '0136171928368774' => array('hpo_id' => 1546, 'hpo_name' => 'Atria septal defect', 'count' => 1), '0134361922176703' => array('hpo_id' => 4763, 'hpo_name' => 'Carotid artery tortuosity', 'count' => 1), '0133321834323710' => array('hpo_id' => 12663, 'hpo_name' => 'Descending aortic dissection', 'count' => 1), '0133282536173484' => array('hpo_id' => 1559, 'hpo_name' => 'Dilated cardiomyopathy', 'count' => 1), '0133282536172928' => array('hpo_id' => 4497, 'hpo_name' => 'Dilatation of the descending thoracic aorta', 'count' => 1), '0121361922136771' => array('hpo_id' => 4339, 'hpo_name' => 'Paroxysmal supraventricular tachycardia', 'count' => 1), '0119283029177657' => array('hpo_id' => 11807, 'hpo_name' => 'Right bundle branch block', 'count' => 1), '0117192834168605' => array('hpo_id' => 4642, 'hpo_name' => 'Tricuspid regurgitation', 'count' => 1), '0117192834165324' => array('hpo_id' => 1616, 'hpo_name' => 'Tricuspid valve prolapse', 'count' => 1), '0115322317196190' => array('hpo_id' => 1545, 'hpo_name' => 'Ventricular septal defect', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134291922237712' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0129283617166408' => array('hpo_id' => 1954, 'hpo_name' => 'Hiatus hernia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 61, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 37), array('hpo_id' => 1673, 'hpo_name' => 'Pes planus', 'count' => 29), array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 24), array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 19), array('hpo_id' => 12967, 'hpo_name' => 'Increased arm span', 'count' => 14), array('hpo_id' => 776, 'hpo_name' => 'Pectus excavatum', 'count' => 13), '0921323417169836' => array('hpo_id' => 777, 'hpo_name' => 'Pectus carinatum', 'count' => 9), '0533323419329473' => array('hpo_id' => 3022, 'hpo_name' => 'Decreased muscle mass', 'count' => 5), '0533222528344496' => array('hpo_id' => 287, 'hpo_name' => 'Dolichocephaly', 'count' => 5), '0526122129229955' => array('hpo_id' => 2606, 'hpo_name' => 'Kyphoscoliosis', 'count' => 5), '0427222823179537' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 4), '0422181732227459' => array('hpo_id' => 2616, 'hpo_name' => 'Osteoarthritis', 'count' => 4), '0417362528211340' => array('hpo_id' => 1665, 'hpo_name' => 'Talipes equinovarus', 'count' => 4), '0336352322191166' => array('hpo_id' => 775, 'hpo_name' => 'Abnormality of the sternum', 'count' => 3), '0326122129225715' => array('hpo_id' => 2647, 'hpo_name' => 'Kyphosis', 'count' => 3), '0318212223335574' => array('hpo_id' => 3116, 'hpo_name' => 'Spondylolisthesis', 'count' => 3), '0235282536179019' => array('hpo_id' => 10650, 'hpo_name' => 'Bilateral coxa valga', 'count' => 2), '0229362525162665' => array('hpo_id' => 1728, 'hpo_name' => 'Hallux valgus', 'count' => 2), '0229282110337368' => array('hpo_id' => 1356, 'hpo_name' => 'Hip dysplasia', 'count' => 2), '0222181732226857' => array('hpo_id' => 946, 'hpo_name' => 'Osteoporosis', 'count' => 2), '0221321810347476' => array('hpo_id' => 1664, 'hpo_name' => 'Pes cavus', 'count' => 2), '0136352322199261' => array('hpo_id' => 778, 'hpo_name' => 'Abnormality of the breast', 'count' => 1), '0136352322197421' => array('hpo_id' => 3130, 'hpo_name' => 'Abnormality of the cervical spine', 'count' => 1), '0134362421179732' => array('hpo_id' => 12537, 'hpo_name' => 'Camptodactyly', 'count' => 1), '0134362421179594' => array('hpo_id' => 1743, 'hpo_name' => 'Camptodactyly of toe', 'count' => 1), '0134321915285644' => array('hpo_id' => 7102, 'hpo_name' => 'Cervical spondylosis', 'count' => 1), '0134321915285567' => array('hpo_id' => 896, 'hpo_name' => 'Cervical ribs', 'count' => 1), '0134222317193080' => array('hpo_id' => 14888, 'hpo_name' => 'Contractures of the proximal interphalangeal joint of the 5th toe', 'count' => 1), '0134222317191187' => array('hpo_id' => 14886, 'hpo_name' => 'Contracture of the proximal interphalangeal joint of the 4th toe', 'count' => 1), '0133281821193240' => array('hpo_id' => 1468, 'hpo_name' => 'Disproportionate tall stature', 'count' => 1), '0131192223179840' => array('hpo_id' => 1925, 'hpo_name' => 'Frontal bossing', 'count' => 1), '0130322332192303' => array('hpo_id' => 2617, 'hpo_name' => 'Generalized joint laxity', 'count' => 1), '0130322316101004' => array('hpo_id' => 2692, 'hpo_name' => 'Genu valgum', 'count' => 1), '0129362424323304' => array('hpo_id' => 1674, 'hpo_name' => 'Hammertoe', 'count' => 1), '0129321923283942' => array('hpo_id' => 7060, 'hpo_name' => 'Herniation of intervertebral nuclei', 'count' => 1), '0129282110228902' => array('hpo_id' => 7350, 'hpo_name' => 'Hip osteoarthritis', 'count' => 1), '0128233016289600' => array('hpo_id' => 25, 'hpo_name' => 'Inguinal hernia', 'count' => 1), '0125222330107886' => array('hpo_id' => 10465, 'hpo_name' => 'Long toe', 'count' => 1), '0125222330105018' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0124321736178495' => array('hpo_id' => 1749, 'hpo_name' => 'Metatarsus adductus', 'count' => 1), '0121192224285963' => array('hpo_id' => 4902, 'hpo_name' => 'Prominent metopic ridge', 'count' => 1), '0121192217195106' => array('hpo_id' => 3006, 'hpo_name' => 'Protrusio acetabuli', 'count' => 1), '0118292219173961' => array('hpo_id' => 456, 'hpo_name' => 'Short neck', 'count' => 1), '0118253223337847' => array('hpo_id' => 1476, 'hpo_name' => 'Slender build', 'count' => 1), '0117292219365789' => array('hpo_id' => 2772, 'hpo_name' => 'Thoracic kyphosis', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 25, 'total_count' => 73, 'hpo_array' => array(array('hpo_id' => 984, 'hpo_name' => 'Bruising susceptibility', 'count' => 15), array('hpo_id' => 10625, 'hpo_name' => 'Dermal translucency', 'count' => 11), array('hpo_id' => 983, 'hpo_name' => 'Soft skin', 'count' => 11), array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 11), '0421222219109267' => array('hpo_id' => 1068, 'hpo_name' => 'Poor wound healing', 'count' => 4), '0418171928361969' => array('hpo_id' => 1075, 'hpo_name' => 'Striae distensae', 'count' => 4), '0229122132193050' => array('hpo_id' => 980, 'hpo_name' => 'Hyperextensible skin', 'count' => 2), '0136233028224981' => array('hpo_id' => 15487, 'hpo_name' => 'Angioedema', 'count' => 1), '0119323316343133' => array('hpo_id' => 3445, 'hpo_name' => 'Reduced subcutaneous adipose tissue', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0129122122267844' => array('hpo_id' => 2735, 'hpo_name' => 'Hypokalemia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0136161722285214' => array('hpo_id' => 1889, 'hpo_name' => 'Autoimmune thrombocytopenia', 'count' => 1)))))), 'lang' => 'front/site/index.'))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/resources/views/front/site/pdf-graphs.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 74, 'region_data' => array(array('country_count' => 2, 'country_name' => 'Germany'), array('country_count' => 1, 'country_name' => 'Lebanon'), array('country_count' => 71, 'country_name' => 'Unknown')), 'regionMaxValue' => 71, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Unknown', 'answer_count' => 4, 'answer_percentage' => 100.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 3, 'no_count' => 70, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 72, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 72, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 5, 'no_count' => 68, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 40, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 52, 'no_count' => 22, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 18, 'no_count' => 56, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 43, 'no_count' => 29, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 61, 'no_count' => 13, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 25, 'no_count' => 48, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74)), 'male_count' => 39, 'female_count' => 35, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0003517' => array('hpo_id' => 3293, 'hpo_name' => '> P98 : Birth length greater than 97th percentile', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 29, 'hpo_array' => array('HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 28), 'HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 5, 'total_count' => 73, 'hpo_array' => array('0424161834166728' => array('hpo_id' => 1240, 'hpo_name' => 'Muscular hypotonia', 'count' => 4), '0129322428214126' => array('hpo_id' => 1257, 'hpo_name' => 'Hemiparesis', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134321932358020' => array('hpo_id' => 4484, 'hpo_name' => 'Cerebral aneurysm', 'count' => 1), '0128231719363859' => array('hpo_id' => 2082, 'hpo_name' => 'Intracranial hemorrhage', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125221410182346' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 1), '0124363419229527' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 34, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 26), array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 14), '0635251632108242' => array('hpo_id' => 593, 'hpo_name' => 'Blue sclerae', 'count' => 6), '0321192221177337' => array('hpo_id' => 511, 'hpo_name' => 'Proptosis', 'count' => 3), '0221172218284740' => array('hpo_id' => 500, 'hpo_name' => 'Ptosis', 'count' => 2), '0136243525121434' => array('hpo_id' => 657, 'hpo_name' => 'Amblyopia', 'count' => 1), '0131253617107914' => array('hpo_id' => 6512, 'hpo_name' => 'Flat cornea', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125222330108944' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 1), '0117192836232924' => array('hpo_id' => 436, 'hpo_name' => 'Triangular nasal tip', 'count' => 1))), array('question' => object(Question), 'yes_count' => 52, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 212, 'hpo_name' => 'Bifid uvula', 'count' => 28), array('hpo_id' => 297, 'hpo_name' => 'Retrognathia', 'count' => 16), array('hpo_id' => 2564, 'hpo_name' => 'High, narrow palate', 'count' => 14), array('hpo_id' => 195, 'hpo_name' => 'Cleft palate', 'count' => 10), '0829283029103662' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 8), '0633322317361275' => array('hpo_id' => 687, 'hpo_name' => 'Dental crowding', 'count' => 6), '0235192236333589' => array('hpo_id' => 10819, 'hpo_name' => 'Broad uvula', 'count' => 2), '0223361919223488' => array('hpo_id' => 209, 'hpo_name' => 'Narrow palate', 'count' => 2), '0218292219171657' => array('hpo_id' => 343, 'hpo_name' => 'Short chin', 'count' => 2), '0218242222177142' => array('hpo_id' => 333, 'hpo_name' => 'Smooth philtrum', 'count' => 2), '0136352322195925' => array('hpo_id' => 186, 'hpo_name' => 'Abnormality of the teeth', 'count' => 1), '0122153219355180' => array('hpo_id' => 11143, 'hpo_name' => 'Overbite', 'count' => 1), '0118292219173502' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1), '0117292823107535' => array('hpo_id' => 255, 'hpo_name' => 'Thin vermilion border', 'count' => 1), '0117292823101522' => array('hpo_id' => 236, 'hpo_name' => 'Thin upper lip vermilion', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 18, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 542, 'hpo_name' => 'Myopia', 'count' => 13), '0434361736194506' => array('hpo_id' => 509, 'hpo_name' => 'Cataract', 'count' => 4), '0229122132191841' => array('hpo_id' => 537, 'hpo_name' => 'Hypermetropia', 'count' => 2), '0133121834296783' => array('hpo_id' => 6455, 'hpo_name' => 'Dyschromatopsia', 'count' => 1), '0132132217192519' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936355180' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 43, 'total_count' => 72, 'hpo_array' => array(array('hpo_id' => 1549, 'hpo_name' => 'Mitral valve prolapse', 'count' => 12), array('hpo_id' => 2476, 'hpo_name' => 'Aortic root dilatation', 'count' => 11), '0917292219369229' => array('hpo_id' => 12916, 'hpo_name' => 'Thoracic aortic aneurysm', 'count' => 9), '0736221917284173' => array('hpo_id' => 2510, 'hpo_name' => 'Aortic dissection', 'count' => 7), '0724281719366331' => array('hpo_id' => 1567, 'hpo_name' => 'Mitral regurgitation', 'count' => 7), '0318282316187070' => array('hpo_id' => 11735, 'hpo_name' => 'Sinus of Valsalva aneurysm', 'count' => 3), '0315361928344083' => array('hpo_id' => 2478, 'hpo_name' => 'Varicose veins', 'count' => 3), '0236233216195750' => array('hpo_id' => 2477, 'hpo_name' => 'Aneurysm', 'count' => 2), '0236221917284837' => array('hpo_id' => 4481, 'hpo_name' => 'Aortic aneurysm', 'count' => 2), '0236221917281213' => array('hpo_id' => 1572, 'hpo_name' => 'Aortic regurgitation', 'count' => 2), '0236183432233682' => array('hpo_id' => 4471, 'hpo_name' => 'Ascending aortic dissection', 'count' => 2), '0221361732233143' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 2), '0136353322242084' => array('hpo_id' => 4492, 'hpo_name' => 'Abdominal aortic aneurysm', 'count' => 1), '0136352322197095' => array('hpo_id' => 1623, 'hpo_name' => 'Abnormality of the left ventricle', 'count' => 1), '0136221917287680' => array('hpo_id' => 1636, 'hpo_name' => 'Aortic dilatation', 'count' => 1), '0136191929123309' => array('hpo_id' => 11768, 'hpo_name' => 'Arrhythmia', 'count' => 1), '0136183432232751' => array('hpo_id' => 4508, 'hpo_name' => 'Ascending aortic dilation', 'count' => 1), '0136171928368774' => array('hpo_id' => 1546, 'hpo_name' => 'Atria septal defect', 'count' => 1), '0134361922176703' => array('hpo_id' => 4763, 'hpo_name' => 'Carotid artery tortuosity', 'count' => 1), '0133321834323710' => array('hpo_id' => 12663, 'hpo_name' => 'Descending aortic dissection', 'count' => 1), '0133282536173484' => array('hpo_id' => 1559, 'hpo_name' => 'Dilated cardiomyopathy', 'count' => 1), '0133282536172928' => array('hpo_id' => 4497, 'hpo_name' => 'Dilatation of the descending thoracic aorta', 'count' => 1), '0121361922136771' => array('hpo_id' => 4339, 'hpo_name' => 'Paroxysmal supraventricular tachycardia', 'count' => 1), '0119283029177657' => array('hpo_id' => 11807, 'hpo_name' => 'Right bundle branch block', 'count' => 1), '0117192834168605' => array('hpo_id' => 4642, 'hpo_name' => 'Tricuspid regurgitation', 'count' => 1), '0117192834165324' => array('hpo_id' => 1616, 'hpo_name' => 'Tricuspid valve prolapse', 'count' => 1), '0115322317196190' => array('hpo_id' => 1545, 'hpo_name' => 'Ventricular septal defect', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134291922237712' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0129283617166408' => array('hpo_id' => 1954, 'hpo_name' => 'Hiatus hernia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 61, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 37), array('hpo_id' => 1673, 'hpo_name' => 'Pes planus', 'count' => 29), array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 24), array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 19), array('hpo_id' => 12967, 'hpo_name' => 'Increased arm span', 'count' => 14), array('hpo_id' => 776, 'hpo_name' => 'Pectus excavatum', 'count' => 13), '0921323417169836' => array('hpo_id' => 777, 'hpo_name' => 'Pectus carinatum', 'count' => 9), '0533323419329473' => array('hpo_id' => 3022, 'hpo_name' => 'Decreased muscle mass', 'count' => 5), '0533222528344496' => array('hpo_id' => 287, 'hpo_name' => 'Dolichocephaly', 'count' => 5), '0526122129229955' => array('hpo_id' => 2606, 'hpo_name' => 'Kyphoscoliosis', 'count' => 5), '0427222823179537' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 4), '0422181732227459' => array('hpo_id' => 2616, 'hpo_name' => 'Osteoarthritis', 'count' => 4), '0417362528211340' => array('hpo_id' => 1665, 'hpo_name' => 'Talipes equinovarus', 'count' => 4), '0336352322191166' => array('hpo_id' => 775, 'hpo_name' => 'Abnormality of the sternum', 'count' => 3), '0326122129225715' => array('hpo_id' => 2647, 'hpo_name' => 'Kyphosis', 'count' => 3), '0318212223335574' => array('hpo_id' => 3116, 'hpo_name' => 'Spondylolisthesis', 'count' => 3), '0235282536179019' => array('hpo_id' => 10650, 'hpo_name' => 'Bilateral coxa valga', 'count' => 2), '0229362525162665' => array('hpo_id' => 1728, 'hpo_name' => 'Hallux valgus', 'count' => 2), '0229282110337368' => array('hpo_id' => 1356, 'hpo_name' => 'Hip dysplasia', 'count' => 2), '0222181732226857' => array('hpo_id' => 946, 'hpo_name' => 'Osteoporosis', 'count' => 2), '0221321810347476' => array('hpo_id' => 1664, 'hpo_name' => 'Pes cavus', 'count' => 2), '0136352322199261' => array('hpo_id' => 778, 'hpo_name' => 'Abnormality of the breast', 'count' => 1), '0136352322197421' => array('hpo_id' => 3130, 'hpo_name' => 'Abnormality of the cervical spine', 'count' => 1), '0134362421179732' => array('hpo_id' => 12537, 'hpo_name' => 'Camptodactyly', 'count' => 1), '0134362421179594' => array('hpo_id' => 1743, 'hpo_name' => 'Camptodactyly of toe', 'count' => 1), '0134321915285644' => array('hpo_id' => 7102, 'hpo_name' => 'Cervical spondylosis', 'count' => 1), '0134321915285567' => array('hpo_id' => 896, 'hpo_name' => 'Cervical ribs', 'count' => 1), '0134222317193080' => array('hpo_id' => 14888, 'hpo_name' => 'Contractures of the proximal interphalangeal joint of the 5th toe', 'count' => 1), '0134222317191187' => array('hpo_id' => 14886, 'hpo_name' => 'Contracture of the proximal interphalangeal joint of the 4th toe', 'count' => 1), '0133281821193240' => array('hpo_id' => 1468, 'hpo_name' => 'Disproportionate tall stature', 'count' => 1), '0131192223179840' => array('hpo_id' => 1925, 'hpo_name' => 'Frontal bossing', 'count' => 1), '0130322332192303' => array('hpo_id' => 2617, 'hpo_name' => 'Generalized joint laxity', 'count' => 1), '0130322316101004' => array('hpo_id' => 2692, 'hpo_name' => 'Genu valgum', 'count' => 1), '0129362424323304' => array('hpo_id' => 1674, 'hpo_name' => 'Hammertoe', 'count' => 1), '0129321923283942' => array('hpo_id' => 7060, 'hpo_name' => 'Herniation of intervertebral nuclei', 'count' => 1), '0129282110228902' => array('hpo_id' => 7350, 'hpo_name' => 'Hip osteoarthritis', 'count' => 1), '0128233016289600' => array('hpo_id' => 25, 'hpo_name' => 'Inguinal hernia', 'count' => 1), '0125222330107886' => array('hpo_id' => 10465, 'hpo_name' => 'Long toe', 'count' => 1), '0125222330105018' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0124321736178495' => array('hpo_id' => 1749, 'hpo_name' => 'Metatarsus adductus', 'count' => 1), '0121192224285963' => array('hpo_id' => 4902, 'hpo_name' => 'Prominent metopic ridge', 'count' => 1), '0121192217195106' => array('hpo_id' => 3006, 'hpo_name' => 'Protrusio acetabuli', 'count' => 1), '0118292219173961' => array('hpo_id' => 456, 'hpo_name' => 'Short neck', 'count' => 1), '0118253223337847' => array('hpo_id' => 1476, 'hpo_name' => 'Slender build', 'count' => 1), '0117292219365789' => array('hpo_id' => 2772, 'hpo_name' => 'Thoracic kyphosis', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 25, 'total_count' => 73, 'hpo_array' => array(array('hpo_id' => 984, 'hpo_name' => 'Bruising susceptibility', 'count' => 15), array('hpo_id' => 10625, 'hpo_name' => 'Dermal translucency', 'count' => 11), array('hpo_id' => 983, 'hpo_name' => 'Soft skin', 'count' => 11), array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 11), '0421222219109267' => array('hpo_id' => 1068, 'hpo_name' => 'Poor wound healing', 'count' => 4), '0418171928361969' => array('hpo_id' => 1075, 'hpo_name' => 'Striae distensae', 'count' => 4), '0229122132193050' => array('hpo_id' => 980, 'hpo_name' => 'Hyperextensible skin', 'count' => 2), '0136233028224981' => array('hpo_id' => 15487, 'hpo_name' => 'Angioedema', 'count' => 1), '0119323316343133' => array('hpo_id' => 3445, 'hpo_name' => 'Reduced subcutaneous adipose tissue', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0129122122267844' => array('hpo_id' => 2735, 'hpo_name' => 'Hypokalemia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0136161722285214' => array('hpo_id' => 1889, 'hpo_name' => 'Autoimmune thrombocytopenia', 'count' => 1)))))), 'lang' => 'front/site/index.'))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
  at Illuminate\Http\Response->setContent(object(View))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
  at Illuminate\Http\Response->__construct(object(View), 200, array('Content-Type' => 'text/html'))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:820)
  at Illuminate\Routing\Router::toResponse(object(Request), object(View))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:789)
  at Illuminate\Routing\Router->prepareResponse(object(Request), object(View))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:721)
  at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/statikbe/laravel-cookie-consent/src/CookieConsentMiddleware.php:13)
  at Statikbe\CookieConsent\CookieConsentMiddleware->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:723)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:698)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:651)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:167)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
  at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/public/index.php:50)
  at require_once('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/public/index.php')
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/index.php:19)                
[1/2] ErrorException
ErrorException:
Undefined index: yes_count

  at /var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php:70
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8, 'Undefined index: yes_count', '/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php', 70, array('__path' => '/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php', '__data' => array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 74, 'region_data' => array(array('country_count' => 2, 'country_name' => 'Germany'), array('country_count' => 1, 'country_name' => 'Lebanon'), array('country_count' => 71, 'country_name' => 'Unknown')), 'regionMaxValue' => 71, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Unknown', 'answer_count' => 4, 'answer_percentage' => 100.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 3, 'no_count' => 70, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 72, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 72, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 5, 'no_count' => 68, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 40, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 52, 'no_count' => 22, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 18, 'no_count' => 56, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 43, 'no_count' => 29, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 61, 'no_count' => 13, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 25, 'no_count' => 48, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74)), 'male_count' => 39, 'female_count' => 35, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0003517' => array('hpo_id' => 3293, 'hpo_name' => '> P98 : Birth length greater than 97th percentile', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 29, 'hpo_array' => array('HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 28), 'HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 5, 'total_count' => 73, 'hpo_array' => array('0424161834166728' => array('hpo_id' => 1240, 'hpo_name' => 'Muscular hypotonia', 'count' => 4), '0129322428214126' => array('hpo_id' => 1257, 'hpo_name' => 'Hemiparesis', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134321932358020' => array('hpo_id' => 4484, 'hpo_name' => 'Cerebral aneurysm', 'count' => 1), '0128231719363859' => array('hpo_id' => 2082, 'hpo_name' => 'Intracranial hemorrhage', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125221410182346' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 1), '0124363419229527' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 34, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 26), array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 14), '0635251632108242' => array('hpo_id' => 593, 'hpo_name' => 'Blue sclerae', 'count' => 6), '0321192221177337' => array('hpo_id' => 511, 'hpo_name' => 'Proptosis', 'count' => 3), '0221172218284740' => array('hpo_id' => 500, 'hpo_name' => 'Ptosis', 'count' => 2), '0136243525121434' => array('hpo_id' => 657, 'hpo_name' => 'Amblyopia', 'count' => 1), '0131253617107914' => array('hpo_id' => 6512, 'hpo_name' => 'Flat cornea', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125222330108944' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 1), '0117192836232924' => array('hpo_id' => 436, 'hpo_name' => 'Triangular nasal tip', 'count' => 1))), array('question' => object(Question), 'yes_count' => 52, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 212, 'hpo_name' => 'Bifid uvula', 'count' => 28), array('hpo_id' => 297, 'hpo_name' => 'Retrognathia', 'count' => 16), array('hpo_id' => 2564, 'hpo_name' => 'High, narrow palate', 'count' => 14), array('hpo_id' => 195, 'hpo_name' => 'Cleft palate', 'count' => 10), '0829283029103662' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 8), '0633322317361275' => array('hpo_id' => 687, 'hpo_name' => 'Dental crowding', 'count' => 6), '0235192236333589' => array('hpo_id' => 10819, 'hpo_name' => 'Broad uvula', 'count' => 2), '0223361919223488' => array('hpo_id' => 209, 'hpo_name' => 'Narrow palate', 'count' => 2), '0218292219171657' => array('hpo_id' => 343, 'hpo_name' => 'Short chin', 'count' => 2), '0218242222177142' => array('hpo_id' => 333, 'hpo_name' => 'Smooth philtrum', 'count' => 2), '0136352322195925' => array('hpo_id' => 186, 'hpo_name' => 'Abnormality of the teeth', 'count' => 1), '0122153219355180' => array('hpo_id' => 11143, 'hpo_name' => 'Overbite', 'count' => 1), '0118292219173502' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1), '0117292823107535' => array('hpo_id' => 255, 'hpo_name' => 'Thin vermilion border', 'count' => 1), '0117292823101522' => array('hpo_id' => 236, 'hpo_name' => 'Thin upper lip vermilion', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 18, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 542, 'hpo_name' => 'Myopia', 'count' => 13), '0434361736194506' => array('hpo_id' => 509, 'hpo_name' => 'Cataract', 'count' => 4), '0229122132191841' => array('hpo_id' => 537, 'hpo_name' => 'Hypermetropia', 'count' => 2), '0133121834296783' => array('hpo_id' => 6455, 'hpo_name' => 'Dyschromatopsia', 'count' => 1), '0132132217192519' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936355180' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 43, 'total_count' => 72, 'hpo_array' => array(array('hpo_id' => 1549, 'hpo_name' => 'Mitral valve prolapse', 'count' => 12), array('hpo_id' => 2476, 'hpo_name' => 'Aortic root dilatation', 'count' => 11), '0917292219369229' => array('hpo_id' => 12916, 'hpo_name' => 'Thoracic aortic aneurysm', 'count' => 9), '0736221917284173' => array('hpo_id' => 2510, 'hpo_name' => 'Aortic dissection', 'count' => 7), '0724281719366331' => array('hpo_id' => 1567, 'hpo_name' => 'Mitral regurgitation', 'count' => 7), '0318282316187070' => array('hpo_id' => 11735, 'hpo_name' => 'Sinus of Valsalva aneurysm', 'count' => 3), '0315361928344083' => array('hpo_id' => 2478, 'hpo_name' => 'Varicose veins', 'count' => 3), '0236233216195750' => array('hpo_id' => 2477, 'hpo_name' => 'Aneurysm', 'count' => 2), '0236221917284837' => array('hpo_id' => 4481, 'hpo_name' => 'Aortic aneurysm', 'count' => 2), '0236221917281213' => array('hpo_id' => 1572, 'hpo_name' => 'Aortic regurgitation', 'count' => 2), '0236183432233682' => array('hpo_id' => 4471, 'hpo_name' => 'Ascending aortic dissection', 'count' => 2), '0221361732233143' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 2), '0136353322242084' => array('hpo_id' => 4492, 'hpo_name' => 'Abdominal aortic aneurysm', 'count' => 1), '0136352322197095' => array('hpo_id' => 1623, 'hpo_name' => 'Abnormality of the left ventricle', 'count' => 1), '0136221917287680' => array('hpo_id' => 1636, 'hpo_name' => 'Aortic dilatation', 'count' => 1), '0136191929123309' => array('hpo_id' => 11768, 'hpo_name' => 'Arrhythmia', 'count' => 1), '0136183432232751' => array('hpo_id' => 4508, 'hpo_name' => 'Ascending aortic dilation', 'count' => 1), '0136171928368774' => array('hpo_id' => 1546, 'hpo_name' => 'Atria septal defect', 'count' => 1), '0134361922176703' => array('hpo_id' => 4763, 'hpo_name' => 'Carotid artery tortuosity', 'count' => 1), '0133321834323710' => array('hpo_id' => 12663, 'hpo_name' => 'Descending aortic dissection', 'count' => 1), '0133282536173484' => array('hpo_id' => 1559, 'hpo_name' => 'Dilated cardiomyopathy', 'count' => 1), '0133282536172928' => array('hpo_id' => 4497, 'hpo_name' => 'Dilatation of the descending thoracic aorta', 'count' => 1), '0121361922136771' => array('hpo_id' => 4339, 'hpo_name' => 'Paroxysmal supraventricular tachycardia', 'count' => 1), '0119283029177657' => array('hpo_id' => 11807, 'hpo_name' => 'Right bundle branch block', 'count' => 1), '0117192834168605' => array('hpo_id' => 4642, 'hpo_name' => 'Tricuspid regurgitation', 'count' => 1), '0117192834165324' => array('hpo_id' => 1616, 'hpo_name' => 'Tricuspid valve prolapse', 'count' => 1), '0115322317196190' => array('hpo_id' => 1545, 'hpo_name' => 'Ventricular septal defect', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134291922237712' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0129283617166408' => array('hpo_id' => 1954, 'hpo_name' => 'Hiatus hernia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 61, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 37), array('hpo_id' => 1673, 'hpo_name' => 'Pes planus', 'count' => 29), array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 24), array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 19), array('hpo_id' => 12967, 'hpo_name' => 'Increased arm span', 'count' => 14), array('hpo_id' => 776, 'hpo_name' => 'Pectus excavatum', 'count' => 13), '0921323417169836' => array('hpo_id' => 777, 'hpo_name' => 'Pectus carinatum', 'count' => 9), '0533323419329473' => array('hpo_id' => 3022, 'hpo_name' => 'Decreased muscle mass', 'count' => 5), '0533222528344496' => array('hpo_id' => 287, 'hpo_name' => 'Dolichocephaly', 'count' => 5), '0526122129229955' => array('hpo_id' => 2606, 'hpo_name' => 'Kyphoscoliosis', 'count' => 5), '0427222823179537' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 4), '0422181732227459' => array('hpo_id' => 2616, 'hpo_name' => 'Osteoarthritis', 'count' => 4), '0417362528211340' => array('hpo_id' => 1665, 'hpo_name' => 'Talipes equinovarus', 'count' => 4), '0336352322191166' => array('hpo_id' => 775, 'hpo_name' => 'Abnormality of the sternum', 'count' => 3), '0326122129225715' => array('hpo_id' => 2647, 'hpo_name' => 'Kyphosis', 'count' => 3), '0318212223335574' => array('hpo_id' => 3116, 'hpo_name' => 'Spondylolisthesis', 'count' => 3), '0235282536179019' => array('hpo_id' => 10650, 'hpo_name' => 'Bilateral coxa valga', 'count' => 2), '0229362525162665' => array('hpo_id' => 1728, 'hpo_name' => 'Hallux valgus', 'count' => 2), '0229282110337368' => array('hpo_id' => 1356, 'hpo_name' => 'Hip dysplasia', 'count' => 2), '0222181732226857' => array('hpo_id' => 946, 'hpo_name' => 'Osteoporosis', 'count' => 2), '0221321810347476' => array('hpo_id' => 1664, 'hpo_name' => 'Pes cavus', 'count' => 2), '0136352322199261' => array('hpo_id' => 778, 'hpo_name' => 'Abnormality of the breast', 'count' => 1), '0136352322197421' => array('hpo_id' => 3130, 'hpo_name' => 'Abnormality of the cervical spine', 'count' => 1), '0134362421179732' => array('hpo_id' => 12537, 'hpo_name' => 'Camptodactyly', 'count' => 1), '0134362421179594' => array('hpo_id' => 1743, 'hpo_name' => 'Camptodactyly of toe', 'count' => 1), '0134321915285644' => array('hpo_id' => 7102, 'hpo_name' => 'Cervical spondylosis', 'count' => 1), '0134321915285567' => array('hpo_id' => 896, 'hpo_name' => 'Cervical ribs', 'count' => 1), '0134222317193080' => array('hpo_id' => 14888, 'hpo_name' => 'Contractures of the proximal interphalangeal joint of the 5th toe', 'count' => 1), '0134222317191187' => array('hpo_id' => 14886, 'hpo_name' => 'Contracture of the proximal interphalangeal joint of the 4th toe', 'count' => 1), '0133281821193240' => array('hpo_id' => 1468, 'hpo_name' => 'Disproportionate tall stature', 'count' => 1), '0131192223179840' => array('hpo_id' => 1925, 'hpo_name' => 'Frontal bossing', 'count' => 1), '0130322332192303' => array('hpo_id' => 2617, 'hpo_name' => 'Generalized joint laxity', 'count' => 1), '0130322316101004' => array('hpo_id' => 2692, 'hpo_name' => 'Genu valgum', 'count' => 1), '0129362424323304' => array('hpo_id' => 1674, 'hpo_name' => 'Hammertoe', 'count' => 1), '0129321923283942' => array('hpo_id' => 7060, 'hpo_name' => 'Herniation of intervertebral nuclei', 'count' => 1), '0129282110228902' => array('hpo_id' => 7350, 'hpo_name' => 'Hip osteoarthritis', 'count' => 1), '0128233016289600' => array('hpo_id' => 25, 'hpo_name' => 'Inguinal hernia', 'count' => 1), '0125222330107886' => array('hpo_id' => 10465, 'hpo_name' => 'Long toe', 'count' => 1), '0125222330105018' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0124321736178495' => array('hpo_id' => 1749, 'hpo_name' => 'Metatarsus adductus', 'count' => 1), '0121192224285963' => array('hpo_id' => 4902, 'hpo_name' => 'Prominent metopic ridge', 'count' => 1), '0121192217195106' => array('hpo_id' => 3006, 'hpo_name' => 'Protrusio acetabuli', 'count' => 1), '0118292219173961' => array('hpo_id' => 456, 'hpo_name' => 'Short neck', 'count' => 1), '0118253223337847' => array('hpo_id' => 1476, 'hpo_name' => 'Slender build', 'count' => 1), '0117292219365789' => array('hpo_id' => 2772, 'hpo_name' => 'Thoracic kyphosis', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 25, 'total_count' => 73, 'hpo_array' => array(array('hpo_id' => 984, 'hpo_name' => 'Bruising susceptibility', 'count' => 15), array('hpo_id' => 10625, 'hpo_name' => 'Dermal translucency', 'count' => 11), array('hpo_id' => 983, 'hpo_name' => 'Soft skin', 'count' => 11), array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 11), '0421222219109267' => array('hpo_id' => 1068, 'hpo_name' => 'Poor wound healing', 'count' => 4), '0418171928361969' => array('hpo_id' => 1075, 'hpo_name' => 'Striae distensae', 'count' => 4), '0229122132193050' => array('hpo_id' => 980, 'hpo_name' => 'Hyperextensible skin', 'count' => 2), '0136233028224981' => array('hpo_id' => 15487, 'hpo_name' => 'Angioedema', 'count' => 1), '0119323316343133' => array('hpo_id' => 3445, 'hpo_name' => 'Reduced subcutaneous adipose tissue', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0129122122267844' => array('hpo_id' => 2735, 'hpo_name' => 'Hypokalemia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0136161722285214' => array('hpo_id' => 1889, 'hpo_name' => 'Autoimmune thrombocytopenia', 'count' => 1)))))), 'lang' => 'front/site/index.'), '__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 74, 'region_data' => array(array('country_count' => 2, 'country_name' => 'Germany'), array('country_count' => 1, 'country_name' => 'Lebanon'), array('country_count' => 71, 'country_name' => 'Unknown')), 'regionMaxValue' => 71, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Unknown', 'answer_count' => 4, 'answer_percentage' => 100.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 3, 'no_count' => 70, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 72, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 72, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 5, 'no_count' => 68, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 40, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 52, 'no_count' => 22, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 18, 'no_count' => 56, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 43, 'no_count' => 29, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 61, 'no_count' => 13, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 25, 'no_count' => 48, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74)), 'male_count' => 39, 'female_count' => 35, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0003517' => array('hpo_id' => 3293, 'hpo_name' => '> P98 : Birth length greater than 97th percentile', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 29, 'hpo_array' => array('HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 28), 'HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 5, 'total_count' => 73, 'hpo_array' => array('0424161834166728' => array('hpo_id' => 1240, 'hpo_name' => 'Muscular hypotonia', 'count' => 4), '0129322428214126' => array('hpo_id' => 1257, 'hpo_name' => 'Hemiparesis', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134321932358020' => array('hpo_id' => 4484, 'hpo_name' => 'Cerebral aneurysm', 'count' => 1), '0128231719363859' => array('hpo_id' => 2082, 'hpo_name' => 'Intracranial hemorrhage', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125221410182346' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 1), '0124363419229527' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 34, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 26), array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 14), '0635251632108242' => array('hpo_id' => 593, 'hpo_name' => 'Blue sclerae', 'count' => 6), '0321192221177337' => array('hpo_id' => 511, 'hpo_name' => 'Proptosis', 'count' => 3), '0221172218284740' => array('hpo_id' => 500, 'hpo_name' => 'Ptosis', 'count' => 2), '0136243525121434' => array('hpo_id' => 657, 'hpo_name' => 'Amblyopia', 'count' => 1), '0131253617107914' => array('hpo_id' => 6512, 'hpo_name' => 'Flat cornea', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125222330108944' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 1), '0117192836232924' => array('hpo_id' => 436, 'hpo_name' => 'Triangular nasal tip', 'count' => 1))), array('question' => object(Question), 'yes_count' => 52, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 212, 'hpo_name' => 'Bifid uvula', 'count' => 28), array('hpo_id' => 297, 'hpo_name' => 'Retrognathia', 'count' => 16), array('hpo_id' => 2564, 'hpo_name' => 'High, narrow palate', 'count' => 14), array('hpo_id' => 195, 'hpo_name' => 'Cleft palate', 'count' => 10), '0829283029103662' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 8), '0633322317361275' => array('hpo_id' => 687, 'hpo_name' => 'Dental crowding', 'count' => 6), '0235192236333589' => array('hpo_id' => 10819, 'hpo_name' => 'Broad uvula', 'count' => 2), '0223361919223488' => array('hpo_id' => 209, 'hpo_name' => 'Narrow palate', 'count' => 2), '0218292219171657' => array('hpo_id' => 343, 'hpo_name' => 'Short chin', 'count' => 2), '0218242222177142' => array('hpo_id' => 333, 'hpo_name' => 'Smooth philtrum', 'count' => 2), '0136352322195925' => array('hpo_id' => 186, 'hpo_name' => 'Abnormality of the teeth', 'count' => 1), '0122153219355180' => array('hpo_id' => 11143, 'hpo_name' => 'Overbite', 'count' => 1), '0118292219173502' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1), '0117292823107535' => array('hpo_id' => 255, 'hpo_name' => 'Thin vermilion border', 'count' => 1), '0117292823101522' => array('hpo_id' => 236, 'hpo_name' => 'Thin upper lip vermilion', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 18, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 542, 'hpo_name' => 'Myopia', 'count' => 13), '0434361736194506' => array('hpo_id' => 509, 'hpo_name' => 'Cataract', 'count' => 4), '0229122132191841' => array('hpo_id' => 537, 'hpo_name' => 'Hypermetropia', 'count' => 2), '0133121834296783' => array('hpo_id' => 6455, 'hpo_name' => 'Dyschromatopsia', 'count' => 1), '0132132217192519' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936355180' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 43, 'total_count' => 72, 'hpo_array' => array(array('hpo_id' => 1549, 'hpo_name' => 'Mitral valve prolapse', 'count' => 12), array('hpo_id' => 2476, 'hpo_name' => 'Aortic root dilatation', 'count' => 11), '0917292219369229' => array('hpo_id' => 12916, 'hpo_name' => 'Thoracic aortic aneurysm', 'count' => 9), '0736221917284173' => array('hpo_id' => 2510, 'hpo_name' => 'Aortic dissection', 'count' => 7), '0724281719366331' => array('hpo_id' => 1567, 'hpo_name' => 'Mitral regurgitation', 'count' => 7), '0318282316187070' => array('hpo_id' => 11735, 'hpo_name' => 'Sinus of Valsalva aneurysm', 'count' => 3), '0315361928344083' => array('hpo_id' => 2478, 'hpo_name' => 'Varicose veins', 'count' => 3), '0236233216195750' => array('hpo_id' => 2477, 'hpo_name' => 'Aneurysm', 'count' => 2), '0236221917284837' => array('hpo_id' => 4481, 'hpo_name' => 'Aortic aneurysm', 'count' => 2), '0236221917281213' => array('hpo_id' => 1572, 'hpo_name' => 'Aortic regurgitation', 'count' => 2), '0236183432233682' => array('hpo_id' => 4471, 'hpo_name' => 'Ascending aortic dissection', 'count' => 2), '0221361732233143' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 2), '0136353322242084' => array('hpo_id' => 4492, 'hpo_name' => 'Abdominal aortic aneurysm', 'count' => 1), '0136352322197095' => array('hpo_id' => 1623, 'hpo_name' => 'Abnormality of the left ventricle', 'count' => 1), '0136221917287680' => array('hpo_id' => 1636, 'hpo_name' => 'Aortic dilatation', 'count' => 1), '0136191929123309' => array('hpo_id' => 11768, 'hpo_name' => 'Arrhythmia', 'count' => 1), '0136183432232751' => array('hpo_id' => 4508, 'hpo_name' => 'Ascending aortic dilation', 'count' => 1), '0136171928368774' => array('hpo_id' => 1546, 'hpo_name' => 'Atria septal defect', 'count' => 1), '0134361922176703' => array('hpo_id' => 4763, 'hpo_name' => 'Carotid artery tortuosity', 'count' => 1), '0133321834323710' => array('hpo_id' => 12663, 'hpo_name' => 'Descending aortic dissection', 'count' => 1), '0133282536173484' => array('hpo_id' => 1559, 'hpo_name' => 'Dilated cardiomyopathy', 'count' => 1), '0133282536172928' => array('hpo_id' => 4497, 'hpo_name' => 'Dilatation of the descending thoracic aorta', 'count' => 1), '0121361922136771' => array('hpo_id' => 4339, 'hpo_name' => 'Paroxysmal supraventricular tachycardia', 'count' => 1), '0119283029177657' => array('hpo_id' => 11807, 'hpo_name' => 'Right bundle branch block', 'count' => 1), '0117192834168605' => array('hpo_id' => 4642, 'hpo_name' => 'Tricuspid regurgitation', 'count' => 1), '0117192834165324' => array('hpo_id' => 1616, 'hpo_name' => 'Tricuspid valve prolapse', 'count' => 1), '0115322317196190' => array('hpo_id' => 1545, 'hpo_name' => 'Ventricular septal defect', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134291922237712' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0129283617166408' => array('hpo_id' => 1954, 'hpo_name' => 'Hiatus hernia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 61, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 37), array('hpo_id' => 1673, 'hpo_name' => 'Pes planus', 'count' => 29), array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 24), array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 19), array('hpo_id' => 12967, 'hpo_name' => 'Increased arm span', 'count' => 14), array('hpo_id' => 776, 'hpo_name' => 'Pectus excavatum', 'count' => 13), '0921323417169836' => array('hpo_id' => 777, 'hpo_name' => 'Pectus carinatum', 'count' => 9), '0533323419329473' => array('hpo_id' => 3022, 'hpo_name' => 'Decreased muscle mass', 'count' => 5), '0533222528344496' => array('hpo_id' => 287, 'hpo_name' => 'Dolichocephaly', 'count' => 5), '0526122129229955' => array('hpo_id' => 2606, 'hpo_name' => 'Kyphoscoliosis', 'count' => 5), '0427222823179537' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 4), '0422181732227459' => array('hpo_id' => 2616, 'hpo_name' => 'Osteoarthritis', 'count' => 4), '0417362528211340' => array('hpo_id' => 1665, 'hpo_name' => 'Talipes equinovarus', 'count' => 4), '0336352322191166' => array('hpo_id' => 775, 'hpo_name' => 'Abnormality of the sternum', 'count' => 3), '0326122129225715' => array('hpo_id' => 2647, 'hpo_name' => 'Kyphosis', 'count' => 3), '0318212223335574' => array('hpo_id' => 3116, 'hpo_name' => 'Spondylolisthesis', 'count' => 3), '0235282536179019' => array('hpo_id' => 10650, 'hpo_name' => 'Bilateral coxa valga', 'count' => 2), '0229362525162665' => array('hpo_id' => 1728, 'hpo_name' => 'Hallux valgus', 'count' => 2), '0229282110337368' => array('hpo_id' => 1356, 'hpo_name' => 'Hip dysplasia', 'count' => 2), '0222181732226857' => array('hpo_id' => 946, 'hpo_name' => 'Osteoporosis', 'count' => 2), '0221321810347476' => array('hpo_id' => 1664, 'hpo_name' => 'Pes cavus', 'count' => 2), '0136352322199261' => array('hpo_id' => 778, 'hpo_name' => 'Abnormality of the breast', 'count' => 1), '0136352322197421' => array('hpo_id' => 3130, 'hpo_name' => 'Abnormality of the cervical spine', 'count' => 1), '0134362421179732' => array('hpo_id' => 12537, 'hpo_name' => 'Camptodactyly', 'count' => 1), '0134362421179594' => array('hpo_id' => 1743, 'hpo_name' => 'Camptodactyly of toe', 'count' => 1), '0134321915285644' => array('hpo_id' => 7102, 'hpo_name' => 'Cervical spondylosis', 'count' => 1), '0134321915285567' => array('hpo_id' => 896, 'hpo_name' => 'Cervical ribs', 'count' => 1), '0134222317193080' => array('hpo_id' => 14888, 'hpo_name' => 'Contractures of the proximal interphalangeal joint of the 5th toe', 'count' => 1), '0134222317191187' => array('hpo_id' => 14886, 'hpo_name' => 'Contracture of the proximal interphalangeal joint of the 4th toe', 'count' => 1), '0133281821193240' => array('hpo_id' => 1468, 'hpo_name' => 'Disproportionate tall stature', 'count' => 1), '0131192223179840' => array('hpo_id' => 1925, 'hpo_name' => 'Frontal bossing', 'count' => 1), '0130322332192303' => array('hpo_id' => 2617, 'hpo_name' => 'Generalized joint laxity', 'count' => 1), '0130322316101004' => array('hpo_id' => 2692, 'hpo_name' => 'Genu valgum', 'count' => 1), '0129362424323304' => array('hpo_id' => 1674, 'hpo_name' => 'Hammertoe', 'count' => 1), '0129321923283942' => array('hpo_id' => 7060, 'hpo_name' => 'Herniation of intervertebral nuclei', 'count' => 1), '0129282110228902' => array('hpo_id' => 7350, 'hpo_name' => 'Hip osteoarthritis', 'count' => 1), '0128233016289600' => array('hpo_id' => 25, 'hpo_name' => 'Inguinal hernia', 'count' => 1), '0125222330107886' => array('hpo_id' => 10465, 'hpo_name' => 'Long toe', 'count' => 1), '0125222330105018' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0124321736178495' => array('hpo_id' => 1749, 'hpo_name' => 'Metatarsus adductus', 'count' => 1), '0121192224285963' => array('hpo_id' => 4902, 'hpo_name' => 'Prominent metopic ridge', 'count' => 1), '0121192217195106' => array('hpo_id' => 3006, 'hpo_name' => 'Protrusio acetabuli', 'count' => 1), '0118292219173961' => array('hpo_id' => 456, 'hpo_name' => 'Short neck', 'count' => 1), '0118253223337847' => array('hpo_id' => 1476, 'hpo_name' => 'Slender build', 'count' => 1), '0117292219365789' => array('hpo_id' => 2772, 'hpo_name' => 'Thoracic kyphosis', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 25, 'total_count' => 73, 'hpo_array' => array(array('hpo_id' => 984, 'hpo_name' => 'Bruising susceptibility', 'count' => 15), array('hpo_id' => 10625, 'hpo_name' => 'Dermal translucency', 'count' => 11), array('hpo_id' => 983, 'hpo_name' => 'Soft skin', 'count' => 11), array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 11), '0421222219109267' => array('hpo_id' => 1068, 'hpo_name' => 'Poor wound healing', 'count' => 4), '0418171928361969' => array('hpo_id' => 1075, 'hpo_name' => 'Striae distensae', 'count' => 4), '0229122132193050' => array('hpo_id' => 980, 'hpo_name' => 'Hyperextensible skin', 'count' => 2), '0136233028224981' => array('hpo_id' => 15487, 'hpo_name' => 'Angioedema', 'count' => 1), '0119323316343133' => array('hpo_id' => 3445, 'hpo_name' => 'Reduced subcutaneous adipose tissue', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0129122122267844' => array('hpo_id' => 2735, 'hpo_name' => 'Hypokalemia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0136161722285214' => array('hpo_id' => 1889, 'hpo_name' => 'Autoimmune thrombocytopenia', 'count' => 1)))))), 'lang' => 'front/site/index.', '__currentLoopData' => array(array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0003517' => array('hpo_id' => 3293, 'hpo_name' => '> P98 : Birth length greater than 97th percentile', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 29, 'hpo_array' => array('HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 28), 'HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array())), 'que_cat' => array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Unknown', 'answer_count' => 4, 'answer_percentage' => 100.0))))), 'loop' => object(stdClass), 'que_details' => array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Unknown', 'answer_count' => 4, 'answer_percentage' => 100.0))), 'key' => 0, 'category' => array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0003517' => array('hpo_id' => 3293, 'hpo_name' => '> P98 : Birth length greater than 97th percentile', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 29, 'hpo_array' => array('HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 28), 'HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()))), 'question' => array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0003517' => array('hpo_id' => 3293, 'hpo_name' => '> P98 : Birth length greater than 97th percentile', 'count' => 2)))))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php:70)
  at require('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php')
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 74, 'region_data' => array(array('country_count' => 2, 'country_name' => 'Germany'), array('country_count' => 1, 'country_name' => 'Lebanon'), array('country_count' => 71, 'country_name' => 'Unknown')), 'regionMaxValue' => 71, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Unknown', 'answer_count' => 4, 'answer_percentage' => 100.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 3, 'no_count' => 70, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 72, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 72, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 5, 'no_count' => 68, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 40, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 52, 'no_count' => 22, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 18, 'no_count' => 56, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 43, 'no_count' => 29, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 61, 'no_count' => 13, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 25, 'no_count' => 48, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74)), 'male_count' => 39, 'female_count' => 35, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0003517' => array('hpo_id' => 3293, 'hpo_name' => '> P98 : Birth length greater than 97th percentile', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 29, 'hpo_array' => array('HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 28), 'HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 5, 'total_count' => 73, 'hpo_array' => array('0424161834166728' => array('hpo_id' => 1240, 'hpo_name' => 'Muscular hypotonia', 'count' => 4), '0129322428214126' => array('hpo_id' => 1257, 'hpo_name' => 'Hemiparesis', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134321932358020' => array('hpo_id' => 4484, 'hpo_name' => 'Cerebral aneurysm', 'count' => 1), '0128231719363859' => array('hpo_id' => 2082, 'hpo_name' => 'Intracranial hemorrhage', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125221410182346' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 1), '0124363419229527' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 34, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 26), array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 14), '0635251632108242' => array('hpo_id' => 593, 'hpo_name' => 'Blue sclerae', 'count' => 6), '0321192221177337' => array('hpo_id' => 511, 'hpo_name' => 'Proptosis', 'count' => 3), '0221172218284740' => array('hpo_id' => 500, 'hpo_name' => 'Ptosis', 'count' => 2), '0136243525121434' => array('hpo_id' => 657, 'hpo_name' => 'Amblyopia', 'count' => 1), '0131253617107914' => array('hpo_id' => 6512, 'hpo_name' => 'Flat cornea', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125222330108944' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 1), '0117192836232924' => array('hpo_id' => 436, 'hpo_name' => 'Triangular nasal tip', 'count' => 1))), array('question' => object(Question), 'yes_count' => 52, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 212, 'hpo_name' => 'Bifid uvula', 'count' => 28), array('hpo_id' => 297, 'hpo_name' => 'Retrognathia', 'count' => 16), array('hpo_id' => 2564, 'hpo_name' => 'High, narrow palate', 'count' => 14), array('hpo_id' => 195, 'hpo_name' => 'Cleft palate', 'count' => 10), '0829283029103662' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 8), '0633322317361275' => array('hpo_id' => 687, 'hpo_name' => 'Dental crowding', 'count' => 6), '0235192236333589' => array('hpo_id' => 10819, 'hpo_name' => 'Broad uvula', 'count' => 2), '0223361919223488' => array('hpo_id' => 209, 'hpo_name' => 'Narrow palate', 'count' => 2), '0218292219171657' => array('hpo_id' => 343, 'hpo_name' => 'Short chin', 'count' => 2), '0218242222177142' => array('hpo_id' => 333, 'hpo_name' => 'Smooth philtrum', 'count' => 2), '0136352322195925' => array('hpo_id' => 186, 'hpo_name' => 'Abnormality of the teeth', 'count' => 1), '0122153219355180' => array('hpo_id' => 11143, 'hpo_name' => 'Overbite', 'count' => 1), '0118292219173502' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1), '0117292823107535' => array('hpo_id' => 255, 'hpo_name' => 'Thin vermilion border', 'count' => 1), '0117292823101522' => array('hpo_id' => 236, 'hpo_name' => 'Thin upper lip vermilion', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 18, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 542, 'hpo_name' => 'Myopia', 'count' => 13), '0434361736194506' => array('hpo_id' => 509, 'hpo_name' => 'Cataract', 'count' => 4), '0229122132191841' => array('hpo_id' => 537, 'hpo_name' => 'Hypermetropia', 'count' => 2), '0133121834296783' => array('hpo_id' => 6455, 'hpo_name' => 'Dyschromatopsia', 'count' => 1), '0132132217192519' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936355180' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 43, 'total_count' => 72, 'hpo_array' => array(array('hpo_id' => 1549, 'hpo_name' => 'Mitral valve prolapse', 'count' => 12), array('hpo_id' => 2476, 'hpo_name' => 'Aortic root dilatation', 'count' => 11), '0917292219369229' => array('hpo_id' => 12916, 'hpo_name' => 'Thoracic aortic aneurysm', 'count' => 9), '0736221917284173' => array('hpo_id' => 2510, 'hpo_name' => 'Aortic dissection', 'count' => 7), '0724281719366331' => array('hpo_id' => 1567, 'hpo_name' => 'Mitral regurgitation', 'count' => 7), '0318282316187070' => array('hpo_id' => 11735, 'hpo_name' => 'Sinus of Valsalva aneurysm', 'count' => 3), '0315361928344083' => array('hpo_id' => 2478, 'hpo_name' => 'Varicose veins', 'count' => 3), '0236233216195750' => array('hpo_id' => 2477, 'hpo_name' => 'Aneurysm', 'count' => 2), '0236221917284837' => array('hpo_id' => 4481, 'hpo_name' => 'Aortic aneurysm', 'count' => 2), '0236221917281213' => array('hpo_id' => 1572, 'hpo_name' => 'Aortic regurgitation', 'count' => 2), '0236183432233682' => array('hpo_id' => 4471, 'hpo_name' => 'Ascending aortic dissection', 'count' => 2), '0221361732233143' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 2), '0136353322242084' => array('hpo_id' => 4492, 'hpo_name' => 'Abdominal aortic aneurysm', 'count' => 1), '0136352322197095' => array('hpo_id' => 1623, 'hpo_name' => 'Abnormality of the left ventricle', 'count' => 1), '0136221917287680' => array('hpo_id' => 1636, 'hpo_name' => 'Aortic dilatation', 'count' => 1), '0136191929123309' => array('hpo_id' => 11768, 'hpo_name' => 'Arrhythmia', 'count' => 1), '0136183432232751' => array('hpo_id' => 4508, 'hpo_name' => 'Ascending aortic dilation', 'count' => 1), '0136171928368774' => array('hpo_id' => 1546, 'hpo_name' => 'Atria septal defect', 'count' => 1), '0134361922176703' => array('hpo_id' => 4763, 'hpo_name' => 'Carotid artery tortuosity', 'count' => 1), '0133321834323710' => array('hpo_id' => 12663, 'hpo_name' => 'Descending aortic dissection', 'count' => 1), '0133282536173484' => array('hpo_id' => 1559, 'hpo_name' => 'Dilated cardiomyopathy', 'count' => 1), '0133282536172928' => array('hpo_id' => 4497, 'hpo_name' => 'Dilatation of the descending thoracic aorta', 'count' => 1), '0121361922136771' => array('hpo_id' => 4339, 'hpo_name' => 'Paroxysmal supraventricular tachycardia', 'count' => 1), '0119283029177657' => array('hpo_id' => 11807, 'hpo_name' => 'Right bundle branch block', 'count' => 1), '0117192834168605' => array('hpo_id' => 4642, 'hpo_name' => 'Tricuspid regurgitation', 'count' => 1), '0117192834165324' => array('hpo_id' => 1616, 'hpo_name' => 'Tricuspid valve prolapse', 'count' => 1), '0115322317196190' => array('hpo_id' => 1545, 'hpo_name' => 'Ventricular septal defect', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134291922237712' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0129283617166408' => array('hpo_id' => 1954, 'hpo_name' => 'Hiatus hernia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 61, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 37), array('hpo_id' => 1673, 'hpo_name' => 'Pes planus', 'count' => 29), array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 24), array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 19), array('hpo_id' => 12967, 'hpo_name' => 'Increased arm span', 'count' => 14), array('hpo_id' => 776, 'hpo_name' => 'Pectus excavatum', 'count' => 13), '0921323417169836' => array('hpo_id' => 777, 'hpo_name' => 'Pectus carinatum', 'count' => 9), '0533323419329473' => array('hpo_id' => 3022, 'hpo_name' => 'Decreased muscle mass', 'count' => 5), '0533222528344496' => array('hpo_id' => 287, 'hpo_name' => 'Dolichocephaly', 'count' => 5), '0526122129229955' => array('hpo_id' => 2606, 'hpo_name' => 'Kyphoscoliosis', 'count' => 5), '0427222823179537' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 4), '0422181732227459' => array('hpo_id' => 2616, 'hpo_name' => 'Osteoarthritis', 'count' => 4), '0417362528211340' => array('hpo_id' => 1665, 'hpo_name' => 'Talipes equinovarus', 'count' => 4), '0336352322191166' => array('hpo_id' => 775, 'hpo_name' => 'Abnormality of the sternum', 'count' => 3), '0326122129225715' => array('hpo_id' => 2647, 'hpo_name' => 'Kyphosis', 'count' => 3), '0318212223335574' => array('hpo_id' => 3116, 'hpo_name' => 'Spondylolisthesis', 'count' => 3), '0235282536179019' => array('hpo_id' => 10650, 'hpo_name' => 'Bilateral coxa valga', 'count' => 2), '0229362525162665' => array('hpo_id' => 1728, 'hpo_name' => 'Hallux valgus', 'count' => 2), '0229282110337368' => array('hpo_id' => 1356, 'hpo_name' => 'Hip dysplasia', 'count' => 2), '0222181732226857' => array('hpo_id' => 946, 'hpo_name' => 'Osteoporosis', 'count' => 2), '0221321810347476' => array('hpo_id' => 1664, 'hpo_name' => 'Pes cavus', 'count' => 2), '0136352322199261' => array('hpo_id' => 778, 'hpo_name' => 'Abnormality of the breast', 'count' => 1), '0136352322197421' => array('hpo_id' => 3130, 'hpo_name' => 'Abnormality of the cervical spine', 'count' => 1), '0134362421179732' => array('hpo_id' => 12537, 'hpo_name' => 'Camptodactyly', 'count' => 1), '0134362421179594' => array('hpo_id' => 1743, 'hpo_name' => 'Camptodactyly of toe', 'count' => 1), '0134321915285644' => array('hpo_id' => 7102, 'hpo_name' => 'Cervical spondylosis', 'count' => 1), '0134321915285567' => array('hpo_id' => 896, 'hpo_name' => 'Cervical ribs', 'count' => 1), '0134222317193080' => array('hpo_id' => 14888, 'hpo_name' => 'Contractures of the proximal interphalangeal joint of the 5th toe', 'count' => 1), '0134222317191187' => array('hpo_id' => 14886, 'hpo_name' => 'Contracture of the proximal interphalangeal joint of the 4th toe', 'count' => 1), '0133281821193240' => array('hpo_id' => 1468, 'hpo_name' => 'Disproportionate tall stature', 'count' => 1), '0131192223179840' => array('hpo_id' => 1925, 'hpo_name' => 'Frontal bossing', 'count' => 1), '0130322332192303' => array('hpo_id' => 2617, 'hpo_name' => 'Generalized joint laxity', 'count' => 1), '0130322316101004' => array('hpo_id' => 2692, 'hpo_name' => 'Genu valgum', 'count' => 1), '0129362424323304' => array('hpo_id' => 1674, 'hpo_name' => 'Hammertoe', 'count' => 1), '0129321923283942' => array('hpo_id' => 7060, 'hpo_name' => 'Herniation of intervertebral nuclei', 'count' => 1), '0129282110228902' => array('hpo_id' => 7350, 'hpo_name' => 'Hip osteoarthritis', 'count' => 1), '0128233016289600' => array('hpo_id' => 25, 'hpo_name' => 'Inguinal hernia', 'count' => 1), '0125222330107886' => array('hpo_id' => 10465, 'hpo_name' => 'Long toe', 'count' => 1), '0125222330105018' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0124321736178495' => array('hpo_id' => 1749, 'hpo_name' => 'Metatarsus adductus', 'count' => 1), '0121192224285963' => array('hpo_id' => 4902, 'hpo_name' => 'Prominent metopic ridge', 'count' => 1), '0121192217195106' => array('hpo_id' => 3006, 'hpo_name' => 'Protrusio acetabuli', 'count' => 1), '0118292219173961' => array('hpo_id' => 456, 'hpo_name' => 'Short neck', 'count' => 1), '0118253223337847' => array('hpo_id' => 1476, 'hpo_name' => 'Slender build', 'count' => 1), '0117292219365789' => array('hpo_id' => 2772, 'hpo_name' => 'Thoracic kyphosis', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 25, 'total_count' => 73, 'hpo_array' => array(array('hpo_id' => 984, 'hpo_name' => 'Bruising susceptibility', 'count' => 15), array('hpo_id' => 10625, 'hpo_name' => 'Dermal translucency', 'count' => 11), array('hpo_id' => 983, 'hpo_name' => 'Soft skin', 'count' => 11), array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 11), '0421222219109267' => array('hpo_id' => 1068, 'hpo_name' => 'Poor wound healing', 'count' => 4), '0418171928361969' => array('hpo_id' => 1075, 'hpo_name' => 'Striae distensae', 'count' => 4), '0229122132193050' => array('hpo_id' => 980, 'hpo_name' => 'Hyperextensible skin', 'count' => 2), '0136233028224981' => array('hpo_id' => 15487, 'hpo_name' => 'Angioedema', 'count' => 1), '0119323316343133' => array('hpo_id' => 3445, 'hpo_name' => 'Reduced subcutaneous adipose tissue', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0129122122267844' => array('hpo_id' => 2735, 'hpo_name' => 'Hypokalemia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0136161722285214' => array('hpo_id' => 1889, 'hpo_name' => 'Autoimmune thrombocytopenia', 'count' => 1)))))), 'lang' => 'front/site/index.'))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 74, 'region_data' => array(array('country_count' => 2, 'country_name' => 'Germany'), array('country_count' => 1, 'country_name' => 'Lebanon'), array('country_count' => 71, 'country_name' => 'Unknown')), 'regionMaxValue' => 71, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Unknown', 'answer_count' => 4, 'answer_percentage' => 100.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 3, 'no_count' => 70, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 72, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 72, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 5, 'no_count' => 68, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 40, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 52, 'no_count' => 22, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 18, 'no_count' => 56, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 43, 'no_count' => 29, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 61, 'no_count' => 13, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 25, 'no_count' => 48, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74)), 'male_count' => 39, 'female_count' => 35, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0003517' => array('hpo_id' => 3293, 'hpo_name' => '> P98 : Birth length greater than 97th percentile', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 29, 'hpo_array' => array('HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 28), 'HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 5, 'total_count' => 73, 'hpo_array' => array('0424161834166728' => array('hpo_id' => 1240, 'hpo_name' => 'Muscular hypotonia', 'count' => 4), '0129322428214126' => array('hpo_id' => 1257, 'hpo_name' => 'Hemiparesis', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134321932358020' => array('hpo_id' => 4484, 'hpo_name' => 'Cerebral aneurysm', 'count' => 1), '0128231719363859' => array('hpo_id' => 2082, 'hpo_name' => 'Intracranial hemorrhage', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125221410182346' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 1), '0124363419229527' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 34, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 26), array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 14), '0635251632108242' => array('hpo_id' => 593, 'hpo_name' => 'Blue sclerae', 'count' => 6), '0321192221177337' => array('hpo_id' => 511, 'hpo_name' => 'Proptosis', 'count' => 3), '0221172218284740' => array('hpo_id' => 500, 'hpo_name' => 'Ptosis', 'count' => 2), '0136243525121434' => array('hpo_id' => 657, 'hpo_name' => 'Amblyopia', 'count' => 1), '0131253617107914' => array('hpo_id' => 6512, 'hpo_name' => 'Flat cornea', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125222330108944' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 1), '0117192836232924' => array('hpo_id' => 436, 'hpo_name' => 'Triangular nasal tip', 'count' => 1))), array('question' => object(Question), 'yes_count' => 52, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 212, 'hpo_name' => 'Bifid uvula', 'count' => 28), array('hpo_id' => 297, 'hpo_name' => 'Retrognathia', 'count' => 16), array('hpo_id' => 2564, 'hpo_name' => 'High, narrow palate', 'count' => 14), array('hpo_id' => 195, 'hpo_name' => 'Cleft palate', 'count' => 10), '0829283029103662' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 8), '0633322317361275' => array('hpo_id' => 687, 'hpo_name' => 'Dental crowding', 'count' => 6), '0235192236333589' => array('hpo_id' => 10819, 'hpo_name' => 'Broad uvula', 'count' => 2), '0223361919223488' => array('hpo_id' => 209, 'hpo_name' => 'Narrow palate', 'count' => 2), '0218292219171657' => array('hpo_id' => 343, 'hpo_name' => 'Short chin', 'count' => 2), '0218242222177142' => array('hpo_id' => 333, 'hpo_name' => 'Smooth philtrum', 'count' => 2), '0136352322195925' => array('hpo_id' => 186, 'hpo_name' => 'Abnormality of the teeth', 'count' => 1), '0122153219355180' => array('hpo_id' => 11143, 'hpo_name' => 'Overbite', 'count' => 1), '0118292219173502' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1), '0117292823107535' => array('hpo_id' => 255, 'hpo_name' => 'Thin vermilion border', 'count' => 1), '0117292823101522' => array('hpo_id' => 236, 'hpo_name' => 'Thin upper lip vermilion', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 18, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 542, 'hpo_name' => 'Myopia', 'count' => 13), '0434361736194506' => array('hpo_id' => 509, 'hpo_name' => 'Cataract', 'count' => 4), '0229122132191841' => array('hpo_id' => 537, 'hpo_name' => 'Hypermetropia', 'count' => 2), '0133121834296783' => array('hpo_id' => 6455, 'hpo_name' => 'Dyschromatopsia', 'count' => 1), '0132132217192519' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936355180' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 43, 'total_count' => 72, 'hpo_array' => array(array('hpo_id' => 1549, 'hpo_name' => 'Mitral valve prolapse', 'count' => 12), array('hpo_id' => 2476, 'hpo_name' => 'Aortic root dilatation', 'count' => 11), '0917292219369229' => array('hpo_id' => 12916, 'hpo_name' => 'Thoracic aortic aneurysm', 'count' => 9), '0736221917284173' => array('hpo_id' => 2510, 'hpo_name' => 'Aortic dissection', 'count' => 7), '0724281719366331' => array('hpo_id' => 1567, 'hpo_name' => 'Mitral regurgitation', 'count' => 7), '0318282316187070' => array('hpo_id' => 11735, 'hpo_name' => 'Sinus of Valsalva aneurysm', 'count' => 3), '0315361928344083' => array('hpo_id' => 2478, 'hpo_name' => 'Varicose veins', 'count' => 3), '0236233216195750' => array('hpo_id' => 2477, 'hpo_name' => 'Aneurysm', 'count' => 2), '0236221917284837' => array('hpo_id' => 4481, 'hpo_name' => 'Aortic aneurysm', 'count' => 2), '0236221917281213' => array('hpo_id' => 1572, 'hpo_name' => 'Aortic regurgitation', 'count' => 2), '0236183432233682' => array('hpo_id' => 4471, 'hpo_name' => 'Ascending aortic dissection', 'count' => 2), '0221361732233143' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 2), '0136353322242084' => array('hpo_id' => 4492, 'hpo_name' => 'Abdominal aortic aneurysm', 'count' => 1), '0136352322197095' => array('hpo_id' => 1623, 'hpo_name' => 'Abnormality of the left ventricle', 'count' => 1), '0136221917287680' => array('hpo_id' => 1636, 'hpo_name' => 'Aortic dilatation', 'count' => 1), '0136191929123309' => array('hpo_id' => 11768, 'hpo_name' => 'Arrhythmia', 'count' => 1), '0136183432232751' => array('hpo_id' => 4508, 'hpo_name' => 'Ascending aortic dilation', 'count' => 1), '0136171928368774' => array('hpo_id' => 1546, 'hpo_name' => 'Atria septal defect', 'count' => 1), '0134361922176703' => array('hpo_id' => 4763, 'hpo_name' => 'Carotid artery tortuosity', 'count' => 1), '0133321834323710' => array('hpo_id' => 12663, 'hpo_name' => 'Descending aortic dissection', 'count' => 1), '0133282536173484' => array('hpo_id' => 1559, 'hpo_name' => 'Dilated cardiomyopathy', 'count' => 1), '0133282536172928' => array('hpo_id' => 4497, 'hpo_name' => 'Dilatation of the descending thoracic aorta', 'count' => 1), '0121361922136771' => array('hpo_id' => 4339, 'hpo_name' => 'Paroxysmal supraventricular tachycardia', 'count' => 1), '0119283029177657' => array('hpo_id' => 11807, 'hpo_name' => 'Right bundle branch block', 'count' => 1), '0117192834168605' => array('hpo_id' => 4642, 'hpo_name' => 'Tricuspid regurgitation', 'count' => 1), '0117192834165324' => array('hpo_id' => 1616, 'hpo_name' => 'Tricuspid valve prolapse', 'count' => 1), '0115322317196190' => array('hpo_id' => 1545, 'hpo_name' => 'Ventricular septal defect', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134291922237712' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0129283617166408' => array('hpo_id' => 1954, 'hpo_name' => 'Hiatus hernia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 61, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 37), array('hpo_id' => 1673, 'hpo_name' => 'Pes planus', 'count' => 29), array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 24), array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 19), array('hpo_id' => 12967, 'hpo_name' => 'Increased arm span', 'count' => 14), array('hpo_id' => 776, 'hpo_name' => 'Pectus excavatum', 'count' => 13), '0921323417169836' => array('hpo_id' => 777, 'hpo_name' => 'Pectus carinatum', 'count' => 9), '0533323419329473' => array('hpo_id' => 3022, 'hpo_name' => 'Decreased muscle mass', 'count' => 5), '0533222528344496' => array('hpo_id' => 287, 'hpo_name' => 'Dolichocephaly', 'count' => 5), '0526122129229955' => array('hpo_id' => 2606, 'hpo_name' => 'Kyphoscoliosis', 'count' => 5), '0427222823179537' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 4), '0422181732227459' => array('hpo_id' => 2616, 'hpo_name' => 'Osteoarthritis', 'count' => 4), '0417362528211340' => array('hpo_id' => 1665, 'hpo_name' => 'Talipes equinovarus', 'count' => 4), '0336352322191166' => array('hpo_id' => 775, 'hpo_name' => 'Abnormality of the sternum', 'count' => 3), '0326122129225715' => array('hpo_id' => 2647, 'hpo_name' => 'Kyphosis', 'count' => 3), '0318212223335574' => array('hpo_id' => 3116, 'hpo_name' => 'Spondylolisthesis', 'count' => 3), '0235282536179019' => array('hpo_id' => 10650, 'hpo_name' => 'Bilateral coxa valga', 'count' => 2), '0229362525162665' => array('hpo_id' => 1728, 'hpo_name' => 'Hallux valgus', 'count' => 2), '0229282110337368' => array('hpo_id' => 1356, 'hpo_name' => 'Hip dysplasia', 'count' => 2), '0222181732226857' => array('hpo_id' => 946, 'hpo_name' => 'Osteoporosis', 'count' => 2), '0221321810347476' => array('hpo_id' => 1664, 'hpo_name' => 'Pes cavus', 'count' => 2), '0136352322199261' => array('hpo_id' => 778, 'hpo_name' => 'Abnormality of the breast', 'count' => 1), '0136352322197421' => array('hpo_id' => 3130, 'hpo_name' => 'Abnormality of the cervical spine', 'count' => 1), '0134362421179732' => array('hpo_id' => 12537, 'hpo_name' => 'Camptodactyly', 'count' => 1), '0134362421179594' => array('hpo_id' => 1743, 'hpo_name' => 'Camptodactyly of toe', 'count' => 1), '0134321915285644' => array('hpo_id' => 7102, 'hpo_name' => 'Cervical spondylosis', 'count' => 1), '0134321915285567' => array('hpo_id' => 896, 'hpo_name' => 'Cervical ribs', 'count' => 1), '0134222317193080' => array('hpo_id' => 14888, 'hpo_name' => 'Contractures of the proximal interphalangeal joint of the 5th toe', 'count' => 1), '0134222317191187' => array('hpo_id' => 14886, 'hpo_name' => 'Contracture of the proximal interphalangeal joint of the 4th toe', 'count' => 1), '0133281821193240' => array('hpo_id' => 1468, 'hpo_name' => 'Disproportionate tall stature', 'count' => 1), '0131192223179840' => array('hpo_id' => 1925, 'hpo_name' => 'Frontal bossing', 'count' => 1), '0130322332192303' => array('hpo_id' => 2617, 'hpo_name' => 'Generalized joint laxity', 'count' => 1), '0130322316101004' => array('hpo_id' => 2692, 'hpo_name' => 'Genu valgum', 'count' => 1), '0129362424323304' => array('hpo_id' => 1674, 'hpo_name' => 'Hammertoe', 'count' => 1), '0129321923283942' => array('hpo_id' => 7060, 'hpo_name' => 'Herniation of intervertebral nuclei', 'count' => 1), '0129282110228902' => array('hpo_id' => 7350, 'hpo_name' => 'Hip osteoarthritis', 'count' => 1), '0128233016289600' => array('hpo_id' => 25, 'hpo_name' => 'Inguinal hernia', 'count' => 1), '0125222330107886' => array('hpo_id' => 10465, 'hpo_name' => 'Long toe', 'count' => 1), '0125222330105018' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0124321736178495' => array('hpo_id' => 1749, 'hpo_name' => 'Metatarsus adductus', 'count' => 1), '0121192224285963' => array('hpo_id' => 4902, 'hpo_name' => 'Prominent metopic ridge', 'count' => 1), '0121192217195106' => array('hpo_id' => 3006, 'hpo_name' => 'Protrusio acetabuli', 'count' => 1), '0118292219173961' => array('hpo_id' => 456, 'hpo_name' => 'Short neck', 'count' => 1), '0118253223337847' => array('hpo_id' => 1476, 'hpo_name' => 'Slender build', 'count' => 1), '0117292219365789' => array('hpo_id' => 2772, 'hpo_name' => 'Thoracic kyphosis', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 25, 'total_count' => 73, 'hpo_array' => array(array('hpo_id' => 984, 'hpo_name' => 'Bruising susceptibility', 'count' => 15), array('hpo_id' => 10625, 'hpo_name' => 'Dermal translucency', 'count' => 11), array('hpo_id' => 983, 'hpo_name' => 'Soft skin', 'count' => 11), array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 11), '0421222219109267' => array('hpo_id' => 1068, 'hpo_name' => 'Poor wound healing', 'count' => 4), '0418171928361969' => array('hpo_id' => 1075, 'hpo_name' => 'Striae distensae', 'count' => 4), '0229122132193050' => array('hpo_id' => 980, 'hpo_name' => 'Hyperextensible skin', 'count' => 2), '0136233028224981' => array('hpo_id' => 15487, 'hpo_name' => 'Angioedema', 'count' => 1), '0119323316343133' => array('hpo_id' => 3445, 'hpo_name' => 'Reduced subcutaneous adipose tissue', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0129122122267844' => array('hpo_id' => 2735, 'hpo_name' => 'Hypokalemia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0136161722285214' => array('hpo_id' => 1889, 'hpo_name' => 'Autoimmune thrombocytopenia', 'count' => 1)))))), 'lang' => 'front/site/index.'))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/resources/views/front/site/pdf-graphs.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 74, 'region_data' => array(array('country_count' => 2, 'country_name' => 'Germany'), array('country_count' => 1, 'country_name' => 'Lebanon'), array('country_count' => 71, 'country_name' => 'Unknown')), 'regionMaxValue' => 71, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Unknown', 'answer_count' => 4, 'answer_percentage' => 100.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 3, 'no_count' => 70, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 72, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 72, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 5, 'no_count' => 68, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 40, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 52, 'no_count' => 22, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 18, 'no_count' => 56, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 43, 'no_count' => 29, 'unknown_count' => 2, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 72, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 61, 'no_count' => 13, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 25, 'no_count' => 48, 'unknown_count' => 1, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 1, 'no_count' => 73, 'unknown_count' => 0, 'total_count' => 74), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 74, 'unknown_count' => 0, 'total_count' => 74)), 'male_count' => 39, 'female_count' => 35, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0003517' => array('hpo_id' => 3293, 'hpo_name' => '> P98 : Birth length greater than 97th percentile', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 29, 'hpo_array' => array('HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 28), 'HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 2, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 2))), array('question' => object(Question), 'total_count' => 74, 'hpo_count' => 0, 'hpo_array' => array()))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 5, 'total_count' => 73, 'hpo_array' => array('0424161834166728' => array('hpo_id' => 1240, 'hpo_name' => 'Muscular hypotonia', 'count' => 4), '0129322428214126' => array('hpo_id' => 1257, 'hpo_name' => 'Hemiparesis', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134321932358020' => array('hpo_id' => 4484, 'hpo_name' => 'Cerebral aneurysm', 'count' => 1), '0128231719363859' => array('hpo_id' => 2082, 'hpo_name' => 'Intracranial hemorrhage', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125221410182346' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 1), '0124363419229527' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 34, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 26), array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 14), '0635251632108242' => array('hpo_id' => 593, 'hpo_name' => 'Blue sclerae', 'count' => 6), '0321192221177337' => array('hpo_id' => 511, 'hpo_name' => 'Proptosis', 'count' => 3), '0221172218284740' => array('hpo_id' => 500, 'hpo_name' => 'Ptosis', 'count' => 2), '0136243525121434' => array('hpo_id' => 657, 'hpo_name' => 'Amblyopia', 'count' => 1), '0131253617107914' => array('hpo_id' => 6512, 'hpo_name' => 'Flat cornea', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0125222330108944' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 1), '0117192836232924' => array('hpo_id' => 436, 'hpo_name' => 'Triangular nasal tip', 'count' => 1))), array('question' => object(Question), 'yes_count' => 52, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 212, 'hpo_name' => 'Bifid uvula', 'count' => 28), array('hpo_id' => 297, 'hpo_name' => 'Retrognathia', 'count' => 16), array('hpo_id' => 2564, 'hpo_name' => 'High, narrow palate', 'count' => 14), array('hpo_id' => 195, 'hpo_name' => 'Cleft palate', 'count' => 10), '0829283029103662' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 8), '0633322317361275' => array('hpo_id' => 687, 'hpo_name' => 'Dental crowding', 'count' => 6), '0235192236333589' => array('hpo_id' => 10819, 'hpo_name' => 'Broad uvula', 'count' => 2), '0223361919223488' => array('hpo_id' => 209, 'hpo_name' => 'Narrow palate', 'count' => 2), '0218292219171657' => array('hpo_id' => 343, 'hpo_name' => 'Short chin', 'count' => 2), '0218242222177142' => array('hpo_id' => 333, 'hpo_name' => 'Smooth philtrum', 'count' => 2), '0136352322195925' => array('hpo_id' => 186, 'hpo_name' => 'Abnormality of the teeth', 'count' => 1), '0122153219355180' => array('hpo_id' => 11143, 'hpo_name' => 'Overbite', 'count' => 1), '0118292219173502' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1), '0117292823107535' => array('hpo_id' => 255, 'hpo_name' => 'Thin vermilion border', 'count' => 1), '0117292823101522' => array('hpo_id' => 236, 'hpo_name' => 'Thin upper lip vermilion', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 18, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 542, 'hpo_name' => 'Myopia', 'count' => 13), '0434361736194506' => array('hpo_id' => 509, 'hpo_name' => 'Cataract', 'count' => 4), '0229122132191841' => array('hpo_id' => 537, 'hpo_name' => 'Hypermetropia', 'count' => 2), '0133121834296783' => array('hpo_id' => 6455, 'hpo_name' => 'Dyschromatopsia', 'count' => 1), '0132132217192519' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936355180' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 43, 'total_count' => 72, 'hpo_array' => array(array('hpo_id' => 1549, 'hpo_name' => 'Mitral valve prolapse', 'count' => 12), array('hpo_id' => 2476, 'hpo_name' => 'Aortic root dilatation', 'count' => 11), '0917292219369229' => array('hpo_id' => 12916, 'hpo_name' => 'Thoracic aortic aneurysm', 'count' => 9), '0736221917284173' => array('hpo_id' => 2510, 'hpo_name' => 'Aortic dissection', 'count' => 7), '0724281719366331' => array('hpo_id' => 1567, 'hpo_name' => 'Mitral regurgitation', 'count' => 7), '0318282316187070' => array('hpo_id' => 11735, 'hpo_name' => 'Sinus of Valsalva aneurysm', 'count' => 3), '0315361928344083' => array('hpo_id' => 2478, 'hpo_name' => 'Varicose veins', 'count' => 3), '0236233216195750' => array('hpo_id' => 2477, 'hpo_name' => 'Aneurysm', 'count' => 2), '0236221917284837' => array('hpo_id' => 4481, 'hpo_name' => 'Aortic aneurysm', 'count' => 2), '0236221917281213' => array('hpo_id' => 1572, 'hpo_name' => 'Aortic regurgitation', 'count' => 2), '0236183432233682' => array('hpo_id' => 4471, 'hpo_name' => 'Ascending aortic dissection', 'count' => 2), '0221361732233143' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 2), '0136353322242084' => array('hpo_id' => 4492, 'hpo_name' => 'Abdominal aortic aneurysm', 'count' => 1), '0136352322197095' => array('hpo_id' => 1623, 'hpo_name' => 'Abnormality of the left ventricle', 'count' => 1), '0136221917287680' => array('hpo_id' => 1636, 'hpo_name' => 'Aortic dilatation', 'count' => 1), '0136191929123309' => array('hpo_id' => 11768, 'hpo_name' => 'Arrhythmia', 'count' => 1), '0136183432232751' => array('hpo_id' => 4508, 'hpo_name' => 'Ascending aortic dilation', 'count' => 1), '0136171928368774' => array('hpo_id' => 1546, 'hpo_name' => 'Atria septal defect', 'count' => 1), '0134361922176703' => array('hpo_id' => 4763, 'hpo_name' => 'Carotid artery tortuosity', 'count' => 1), '0133321834323710' => array('hpo_id' => 12663, 'hpo_name' => 'Descending aortic dissection', 'count' => 1), '0133282536173484' => array('hpo_id' => 1559, 'hpo_name' => 'Dilated cardiomyopathy', 'count' => 1), '0133282536172928' => array('hpo_id' => 4497, 'hpo_name' => 'Dilatation of the descending thoracic aorta', 'count' => 1), '0121361922136771' => array('hpo_id' => 4339, 'hpo_name' => 'Paroxysmal supraventricular tachycardia', 'count' => 1), '0119283029177657' => array('hpo_id' => 11807, 'hpo_name' => 'Right bundle branch block', 'count' => 1), '0117192834168605' => array('hpo_id' => 4642, 'hpo_name' => 'Tricuspid regurgitation', 'count' => 1), '0117192834165324' => array('hpo_id' => 1616, 'hpo_name' => 'Tricuspid valve prolapse', 'count' => 1), '0115322317196190' => array('hpo_id' => 1545, 'hpo_name' => 'Ventricular septal defect', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 74, 'hpo_array' => array('0134291922237712' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0129283617166408' => array('hpo_id' => 1954, 'hpo_name' => 'Hiatus hernia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 61, 'total_count' => 74, 'hpo_array' => array(array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 37), array('hpo_id' => 1673, 'hpo_name' => 'Pes planus', 'count' => 29), array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 24), array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 19), array('hpo_id' => 12967, 'hpo_name' => 'Increased arm span', 'count' => 14), array('hpo_id' => 776, 'hpo_name' => 'Pectus excavatum', 'count' => 13), '0921323417169836' => array('hpo_id' => 777, 'hpo_name' => 'Pectus carinatum', 'count' => 9), '0533323419329473' => array('hpo_id' => 3022, 'hpo_name' => 'Decreased muscle mass', 'count' => 5), '0533222528344496' => array('hpo_id' => 287, 'hpo_name' => 'Dolichocephaly', 'count' => 5), '0526122129229955' => array('hpo_id' => 2606, 'hpo_name' => 'Kyphoscoliosis', 'count' => 5), '0427222823179537' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 4), '0422181732227459' => array('hpo_id' => 2616, 'hpo_name' => 'Osteoarthritis', 'count' => 4), '0417362528211340' => array('hpo_id' => 1665, 'hpo_name' => 'Talipes equinovarus', 'count' => 4), '0336352322191166' => array('hpo_id' => 775, 'hpo_name' => 'Abnormality of the sternum', 'count' => 3), '0326122129225715' => array('hpo_id' => 2647, 'hpo_name' => 'Kyphosis', 'count' => 3), '0318212223335574' => array('hpo_id' => 3116, 'hpo_name' => 'Spondylolisthesis', 'count' => 3), '0235282536179019' => array('hpo_id' => 10650, 'hpo_name' => 'Bilateral coxa valga', 'count' => 2), '0229362525162665' => array('hpo_id' => 1728, 'hpo_name' => 'Hallux valgus', 'count' => 2), '0229282110337368' => array('hpo_id' => 1356, 'hpo_name' => 'Hip dysplasia', 'count' => 2), '0222181732226857' => array('hpo_id' => 946, 'hpo_name' => 'Osteoporosis', 'count' => 2), '0221321810347476' => array('hpo_id' => 1664, 'hpo_name' => 'Pes cavus', 'count' => 2), '0136352322199261' => array('hpo_id' => 778, 'hpo_name' => 'Abnormality of the breast', 'count' => 1), '0136352322197421' => array('hpo_id' => 3130, 'hpo_name' => 'Abnormality of the cervical spine', 'count' => 1), '0134362421179732' => array('hpo_id' => 12537, 'hpo_name' => 'Camptodactyly', 'count' => 1), '0134362421179594' => array('hpo_id' => 1743, 'hpo_name' => 'Camptodactyly of toe', 'count' => 1), '0134321915285644' => array('hpo_id' => 7102, 'hpo_name' => 'Cervical spondylosis', 'count' => 1), '0134321915285567' => array('hpo_id' => 896, 'hpo_name' => 'Cervical ribs', 'count' => 1), '0134222317193080' => array('hpo_id' => 14888, 'hpo_name' => 'Contractures of the proximal interphalangeal joint of the 5th toe', 'count' => 1), '0134222317191187' => array('hpo_id' => 14886, 'hpo_name' => 'Contracture of the proximal interphalangeal joint of the 4th toe', 'count' => 1), '0133281821193240' => array('hpo_id' => 1468, 'hpo_name' => 'Disproportionate tall stature', 'count' => 1), '0131192223179840' => array('hpo_id' => 1925, 'hpo_name' => 'Frontal bossing', 'count' => 1), '0130322332192303' => array('hpo_id' => 2617, 'hpo_name' => 'Generalized joint laxity', 'count' => 1), '0130322316101004' => array('hpo_id' => 2692, 'hpo_name' => 'Genu valgum', 'count' => 1), '0129362424323304' => array('hpo_id' => 1674, 'hpo_name' => 'Hammertoe', 'count' => 1), '0129321923283942' => array('hpo_id' => 7060, 'hpo_name' => 'Herniation of intervertebral nuclei', 'count' => 1), '0129282110228902' => array('hpo_id' => 7350, 'hpo_name' => 'Hip osteoarthritis', 'count' => 1), '0128233016289600' => array('hpo_id' => 25, 'hpo_name' => 'Inguinal hernia', 'count' => 1), '0125222330107886' => array('hpo_id' => 10465, 'hpo_name' => 'Long toe', 'count' => 1), '0125222330105018' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0124321736178495' => array('hpo_id' => 1749, 'hpo_name' => 'Metatarsus adductus', 'count' => 1), '0121192224285963' => array('hpo_id' => 4902, 'hpo_name' => 'Prominent metopic ridge', 'count' => 1), '0121192217195106' => array('hpo_id' => 3006, 'hpo_name' => 'Protrusio acetabuli', 'count' => 1), '0118292219173961' => array('hpo_id' => 456, 'hpo_name' => 'Short neck', 'count' => 1), '0118253223337847' => array('hpo_id' => 1476, 'hpo_name' => 'Slender build', 'count' => 1), '0117292219365789' => array('hpo_id' => 2772, 'hpo_name' => 'Thoracic kyphosis', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 25, 'total_count' => 73, 'hpo_array' => array(array('hpo_id' => 984, 'hpo_name' => 'Bruising susceptibility', 'count' => 15), array('hpo_id' => 10625, 'hpo_name' => 'Dermal translucency', 'count' => 11), array('hpo_id' => 983, 'hpo_name' => 'Soft skin', 'count' => 11), array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 11), '0421222219109267' => array('hpo_id' => 1068, 'hpo_name' => 'Poor wound healing', 'count' => 4), '0418171928361969' => array('hpo_id' => 1075, 'hpo_name' => 'Striae distensae', 'count' => 4), '0229122132193050' => array('hpo_id' => 980, 'hpo_name' => 'Hyperextensible skin', 'count' => 2), '0136233028224981' => array('hpo_id' => 15487, 'hpo_name' => 'Angioedema', 'count' => 1), '0119323316343133' => array('hpo_id' => 3445, 'hpo_name' => 'Reduced subcutaneous adipose tissue', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0129122122267844' => array('hpo_id' => 2735, 'hpo_name' => 'Hypokalemia', 'count' => 1))), array('question' => object(Question), 'yes_count' => 1, 'total_count' => 74, 'hpo_array' => array('0136161722285214' => array('hpo_id' => 1889, 'hpo_name' => 'Autoimmune thrombocytopenia', 'count' => 1)))))), 'lang' => 'front/site/index.'))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
  at Illuminate\Http\Response->setContent(object(View))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
  at Illuminate\Http\Response->__construct(object(View), 200, array('Content-Type' => 'text/html'))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:820)
  at Illuminate\Routing\Router::toResponse(object(Request), object(View))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:789)
  at Illuminate\Routing\Router->prepareResponse(object(Request), object(View))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:721)
  at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/statikbe/laravel-cookie-consent/src/CookieConsentMiddleware.php:13)
  at Statikbe\CookieConsent\CookieConsentMiddleware->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:723)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:698)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:651)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:167)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
  at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/public/index.php:50)
  at require_once('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/public/index.php')
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/index.php:19)