Whoops, looks like something went wrong.

Get help in the TYPO3 Documentation

If you need help solving this exception, you can have a look at the TYPO3 Documentation. There you can find solutions provided by the TYPO3 community. Once you have found a solution to the problem, help others by contributing to the documentation page.

Find a solution for this exception in the TYPO3 Documentation.

(1/1) #1476107295 TYPO3\CMS\Core\Error\Exception

PHP Warning: Creating default object from empty value in /html/tos.info/typo3conf/ext/t3sbootstrap/Classes/ViewHelpers/MediaViewHelper.php line 364

in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Error/ErrorHandler.php line 134
            E_DEPRECATED => 'PHP Runtime Deprecation Notice'
        ];
        $message = $errorLevels[$errorLevel] . ': ' . $errorMessage . ' in ' . $errorFile . ' line ' . $errorLine;
        if ($errorLevel & $this->exceptionalErrors) {
            throw new Exception($message, 1476107295);
        }
        switch ($errorLevel) {
            case E_USER_ERROR:
            case E_RECOVERABLE_ERROR:
at TYPO3\CMS\Core\Error\ErrorHandler->handleError(2, 'Creating default object from empty value', '/html/tos.info/typo3conf/ext/t3sbootstrap/Classes/ViewHelpers/MediaViewHelper.php', 364, array('image' => object(TYPO3\CMS\Core\Resource\FileReference), 'cropString' => '{"default":{"cropArea":{"x":0,"y":0.0030303030303030303,"width":1,"height":0.48333333333333334}}}', 'cropObject' => object(stdClass), 'cv' => array('cropVariant' => 'tablet', 'media' => '(min-width: 576px)', 'srcset' => '125, 255, 385, 576, 768, 992, 1200'), 'cropVariant' => 'tablet', 'cropedWidth' => 1448, 'cropedHeight' => 699.8666666666667, 'rArr' => array('4', '3'), 'pxHeight' => 1086, 'cHeight' => 0.75))
in /html/tos.info/typo3conf/ext/t3sbootstrap/Classes/ViewHelpers/MediaViewHelper.php line 364
  $cropObject = json_decode($cropString);

  foreach($this->arguments['breakpoints'] as $cv) {
   $cropVariant = $cv['cropVariant'];
   $cropObject->$cropVariant->selectedRatio = $this->arguments['ratio'];
   $cropObject->$cropVariant->cropArea->y = $this->arguments['shift'] ? $this->arguments['shift'] : $cropObject->$cropVariant->cropArea->y;
   $cropedWidth = $image->getProperties()['width'] * $cropObject->$cropVariant->cropArea->width;
   $cropedHeight = $image->getProperties()['height'] * $cropObject->$cropVariant->cropArea->height;
   $rArr = explode(':',$this->arguments['ratio']);
at T3SBS\T3sbootstrap\ViewHelpers\MediaViewHelper->getCropString(object(TYPO3\CMS\Core\Resource\FileReference), '{"default":{"cropArea":{"x":0,"y":0.0030303030303030303,"width":1,"height":0.48333333333333334}}}')
in /html/tos.info/typo3conf/ext/t3sbootstrap/Classes/ViewHelpers/MediaViewHelper.php line 111
  if ( $this->arguments['mobileNoRatio'] && $this->arguments['ratio'] ) {
   $mobileImgManipulation = json_decode($cropString)->mobile;
  }
  if ( $this->arguments['ratio'] ) {
   $cropString = self::getCropString($image, $cropString);
   if ( $this->arguments['mobileNoRatio'] ) {
    $cropObject = json_decode($cropString);
    $cropObject->mobile = $mobileImgManipulation;
    $cropString = json_encode($cropObject);
at T3SBS\T3sbootstrap\ViewHelpers\MediaViewHelper->renderPicture(object(TYPO3\CMS\Core\Resource\FileReference), '500', '')
in /html/tos.info/typo3conf/ext/t3sbootstrap/Classes/ViewHelpers/MediaViewHelper.php line 84
  if ($this->arguments['imgtag']) {
   return self::renderImageTag($image, $width, $height, $fileExtension);
  } else {
   if ($this->arguments['breakpoints']) {
    return $this->renderPicture($image, $width, $height);
   } elseif ($this->arguments['srcset']) {
    return $this->renderImageSrcset($image, $width, $height);
   } else {
    return parent::renderImage($image, $width, $height, $fileExtension);
at T3SBS\T3sbootstrap\ViewHelpers\MediaViewHelper->renderImage(object(TYPO3\CMS\Core\Resource\FileReference), '500', '', null)
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/fluid/Classes/ViewHelpers/MediaViewHelper.php line 119
        $fileRenderer = RendererRegistry::getInstance()->getRenderer($file);

        // Fallback to image when no renderer is found
        if ($fileRenderer === null) {
            return $this->renderImage($file, $width, $height, $this->arguments['fileExtension'] ?? null);
        }
        $additionalConfig = array_merge_recursive($this->arguments, $additionalConfig);
        return $fileRenderer->render($file, $width, $height, $additionalConfig);
    }
at TYPO3\CMS\Fluid\ViewHelpers\MediaViewHelper->render()
at call_user_func(array(object(T3SBS\T3sbootstrap\ViewHelpers\MediaViewHelper), 'render'))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 264
     */
    protected function callRenderMethod()
    {
        if (method_exists($this, 'render')) {
            return call_user_func([$this, 'render']);
        }
        if ((new \ReflectionMethod($this, 'renderStatic'))->getDeclaringClass()->getName() !== AbstractViewHelper::class) {
            // Method is safe to call - will not recurse through ViewHelperInvoker via the default
            // implementation of renderStatic() on this class.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->callRenderMethod()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 252
    {
        $this->validateArguments();
        $this->initialize();

        return $this->callRenderMethod();
    }

    /**
     * Call the render() method and handle errors.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->initializeArgumentsAndRender()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperInvoker.php line 79
            }
            $viewHelper->setRenderingContext($renderingContext);
            $viewHelper->setArguments($evaluatedArguments);
            $viewHelper->handleAdditionalArguments($undeclaredArguments);
            return $viewHelper->initializeArgumentsAndRender();
        } catch (Exception $error) {
            return $renderingContext->getErrorHandler()->handleViewHelperError($error);
        }
    }
at TYPO3Fluid\Fluid\Core\ViewHelper\ViewHelperInvoker->invoke('T3SBS\\T3sbootstrap\\ViewHelpers\\MediaViewHelper', array('additionalAttributes' => null, 'data' => null, 'class' => 'img-fluid mr-3', 'dir' => null, 'id' => null, 'lang' => null, 'style' => null, 'title' => null, 'accesskey' => null, 'tabindex' => null, 'onclick' => null, 'alt' => 'image-15336', 'file' => object(GeorgRinger\News\Domain\Model\FileReference), 'additionalConfig' => array(), 'width' => '500', 'height' => '', 'cropVariant' => 'default', 'fileExtension' => null, 'loading' => null, 'srcset' => null, 'sizes' => '(min-width: %1$dpx) %1$dpx, 100vw', 'breakpoints' => array(array('cropVariant' => 'default', 'media' => '(min-width: 1200px)', 'srcset' => '576, 768, 992, 1200, 1440, 1920, 5000'), array('cropVariant' => 'tablet', 'media' => '(min-width: 576px)', 'srcset' => '125, 255, 385, 576, 768, 992, 1200'), array('cropVariant' => 'mobile', 'media' => '(max-width: 575px)', 'srcset' => '385, 575')), 'imgtag' => false, 'picturefill' => false, 'lazyload' => '0', 'ratio' => '4:3', 'mobileNoRatio' => '', 'shift' => '', 'columns' => 0, 'placeholderSize' => 0, 'placeholderInline' => false, 'ignoreFileExtensions' => 'svg'), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext), object(Closure))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 524
     */
    public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
    {
        $viewHelperClassName = get_called_class();
        return $renderingContext->getViewHelperInvoker()->invoke($viewHelperClassName, $arguments, $renderingContext, $renderChildrenClosure);
    }

    /**
     * Save the associated ViewHelper node in a static public class variable.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper::renderStatic(array('additionalAttributes' => null, 'data' => null, 'class' => 'img-fluid mr-3', 'dir' => null, 'id' => null, 'lang' => null, 'style' => null, 'title' => null, 'accesskey' => null, 'tabindex' => null, 'onclick' => null, 'alt' => 'image-15336', 'file' => object(GeorgRinger\News\Domain\Model\FileReference), 'additionalConfig' => array(), 'width' => '500', 'height' => '', 'cropVariant' => 'default', 'fileExtension' => null, 'loading' => null, 'srcset' => null, 'sizes' => '(min-width: %1$dpx) %1$dpx, 100vw', 'breakpoints' => array(array('cropVariant' => 'default', 'media' => '(min-width: 1200px)', 'srcset' => '576, 768, 992, 1200, 1440, 1920, 5000'), array('cropVariant' => 'tablet', 'media' => '(min-width: 576px)', 'srcset' => '125, 255, 385, 576, 768, 992, 1200'), array('cropVariant' => 'mobile', 'media' => '(max-width: 575px)', 'srcset' => '385, 575')), 'imgtag' => false, 'picturefill' => false, 'lazyload' => '0', 'ratio' => '4:3', 'mobileNoRatio' => '', 'shift' => '', 'columns' => 0, 'placeholderSize' => 0, 'placeholderInline' => false, 'ignoreFileExtensions' => 'svg'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/partial_List_Media_Image_a92d71ffaad82e53a5b240dcf56a56a15a5d1bfa.php line 2940
);$arguments512['lazyload'] = $renderingContext->getVariableProvider()->getByPath('settings.lazyLoad', $array550);
$array551 = array (
);$arguments512['ratio'] = $renderingContext->getVariableProvider()->getByPath('ratio', $array551);

$output0 .= T3SBS\T3sbootstrap\ViewHelpers\MediaViewHelper::renderStatic($arguments512, $renderChildrenClosure513, $renderingContext);

$output0 .= '
</figure>

at partial_List_Media_Image_a92d71ffaad82e53a5b240dcf56a56a15a5d1bfa->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 329
        $this->startRendering(self::RENDERING_PARTIAL, $parsedPartial, $renderingContext);
        if ($sectionName !== null) {
            $output = $this->renderSection($sectionName, $variables, $ignoreUnknown);
        } else {
            $output = $parsedPartial->render($renderingContext);
        }
        $this->stopRendering();
        return $output;
    }
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial('List/Media/Image', null, array('file' => object(GeorgRinger\News\Domain\Model\FileReference)), false)
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 141
            $renderingContext = clone $renderingContext;
            $renderingContext->getVariableProvider()->setSource($variables);
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => null, 'partial' => 'List/Media/Image', 'delegate' => null, 'renderable' => null, 'arguments' => array('file' => object(GeorgRinger\News\Domain\Model\FileReference)), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/partial_List_Card_0139e2ef5dc3ca4331d4f952bf580fc256b1120c.php line 405
$array27 = array (
);$array26['file'] = $renderingContext->getVariableProvider()->getByPath('mediaElement', $array27);
$arguments24['arguments'] = $array26;

$output23 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments24, $renderChildrenClosure25, $renderingContext);

$output23 .= '
    ';
return $output23;
at partial_List_Card_0139e2ef5dc3ca4331d4f952bf580fc256b1120c->{closure}()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure)), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/partial_List_Card_0139e2ef5dc3ca4331d4f952bf580fc256b1120c.php line 431
     $renderingContext
    );
$arguments18['__thenClosure'] = $renderChildrenClosure19;

$output17 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments18, $renderChildrenClosure19, $renderingContext);

$output17 .= '
    ';
// Rendering ViewHelper TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper
at partial_List_Card_0139e2ef5dc3ca4331d4f952bf580fc256b1120c->{closure}()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/ViewHelpers/AliasViewHelper.php line 76
        $map = $arguments['map'];
        foreach ($map as $aliasName => $value) {
            $templateVariableContainer->add($aliasName, $value);
        }
        $output = $renderChildrenClosure();
        foreach ($map as $aliasName => $value) {
            $templateVariableContainer->remove($aliasName);
        }
        return $output;
at TYPO3Fluid\Fluid\ViewHelpers\AliasViewHelper::renderStatic(array('map' => array('mediaElement' => object(GeorgRinger\News\Domain\Model\FileReference))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/partial_List_Card_0139e2ef5dc3ca4331d4f952bf580fc256b1120c.php line 564
$array16 = array (
);$array15['mediaElement'] = $renderingContext->getVariableProvider()->getByPath('newsItem.mediaPreviews.0', $array16);
$arguments13['map'] = $array15;

$output12 .= TYPO3Fluid\Fluid\ViewHelpers\AliasViewHelper::renderStatic($arguments13, $renderChildrenClosure14, $renderingContext);

$output12 .= '
  ';
return $output12;
at partial_List_Card_0139e2ef5dc3ca4331d4f952bf580fc256b1120c->{closure}()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/partial_List_Card_0139e2ef5dc3ca4331d4f952bf580fc256b1120c.php line 630
  ';
return $output49;
};

$output9 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments10, $renderChildrenClosure11, $renderingContext);

$output9 .= '
 <div class="overlay';
// Rendering ViewHelper TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper
at partial_List_Card_0139e2ef5dc3ca4331d4f952bf580fc256b1120c->{closure}()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 304
    public function renderChildren()
    {
        if ($this->renderChildrenClosure !== null) {
            $closure = $this->renderChildrenClosure;
            return $closure();
        }
        return $this->viewHelperNode->evaluateChildNodes($this->renderingContext);
    }

at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->renderChildren()
in /html/tos.info/typo3conf/ext/news/Classes/ViewHelpers/LinkViewHelper.php line 123
            }
        }

        $this->init();
        $linkedContent = $this->renderChildren();

        if ($newsItem === null) {
            return $linkedContent;
        }
at GeorgRinger\News\ViewHelpers\LinkViewHelper->render()
at call_user_func(array(object(GeorgRinger\News\ViewHelpers\LinkViewHelper), 'render'))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 264
     */
    protected function callRenderMethod()
    {
        if (method_exists($this, 'render')) {
            return call_user_func([$this, 'render']);
        }
        if ((new \ReflectionMethod($this, 'renderStatic'))->getDeclaringClass()->getName() !== AbstractViewHelper::class) {
            // Method is safe to call - will not recurse through ViewHelperInvoker via the default
            // implementation of renderStatic() on this class.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->callRenderMethod()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 252
    {
        $this->validateArguments();
        $this->initialize();

        return $this->callRenderMethod();
    }

    /**
     * Call the render() method and handle errors.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->initializeArgumentsAndRender()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperInvoker.php line 79
            }
            $viewHelper->setRenderingContext($renderingContext);
            $viewHelper->setArguments($evaluatedArguments);
            $viewHelper->handleAdditionalArguments($undeclaredArguments);
            return $viewHelper->initializeArgumentsAndRender();
        } catch (Exception $error) {
            return $renderingContext->getErrorHandler()->handleViewHelperError($error);
        }
    }
at TYPO3Fluid\Fluid\Core\ViewHelper\ViewHelperInvoker->invoke('GeorgRinger\\News\\ViewHelpers\\LinkViewHelper', array('additionalAttributes' => null, 'data' => null, 'class' => 'card mb-3', 'dir' => null, 'id' => null, 'lang' => null, 'style' => null, 'title' => 'Higher and Higher', 'accesskey' => null, 'tabindex' => null, 'onclick' => null, 'newsItem' => object(GeorgRinger\News\Domain\Model\NewsDefault), 'settings' => array('version' => '9', 'cssFile' => 'EXT:news/Resources/Public/Css/news-basic.css', 'cdn' => '0', 'animateVersion' => '4.1.1', 'owlCarouselVersion' => '2.3.4', 'baguetteBoxVersion' => '1.11.1', 'magnificpopupVersion' => '1.1.0', 'lightcaseVersion' => '{$bootstrap.cdn.lightcaseVersion}', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'loadingSpinnerPosition' => 'top', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'lazyLoad' => '0', 'picturefill' => '0', 'magnifying' => '0', 'imgCopyright' => '0', 'jqueryDisable' => '1', 'dummyImageUid' => '0', 'displayDummyIfNoMedia' => '1', 'format' => 'html', 'overrideFlexformSettingsIfEmpty' => 'cropMaxCharacters,dateField,timeRestriction,timeRestrictionHigh,archiveRestriction,orderBy,orderDirection,backPid,listPid,startingpoint,recursive,list.paginate.itemsPerPage,list.paginate.templatePath', 'allowEmptyStringsForOverwriteDemand' => '0', 'includeSubCategories' => '1', 'detailPidDetermination' => 'flexform, categories, default', 'defaultDetailPid' => '0', 'dateField' => 'datetime', 'cropMaxCharacters' => '150', 'orderBy' => 'datetime', 'orderDirection' => 'desc', 'topNewsFirst' => '0', 'orderByAllowed' => 'sorting,author,uid,title,teaser,author,tstamp,crdate,datetime,categories.title', 'facebookLocale' => 'en_US', 'googlePlusLocale' => 'en', 'demandClass' => '', 'list' => array('imageRatio' => '4:3', 'info' => '0', 'mobile' => array('imageOverlay' => '0'), 'button' => array('class' => 'primary'), 'media' => array('dummyImage' => 'typo3conf/ext/news/Resources/Public/Images/dummy-preview-image.png', 'image' => array('maxWidth' => '500', 'maxHeight' => '100', 'width' => '500c', 'height' => '500c')), 'paginate' => array('class' => 'GeorgRinger\\NumberedPagination\\NumberedPagination', 'itemsPerPage' => '12', 'insertAbove' => '1', 'insertBelow' => '1', 'maximumNumberOfLinks' => '3', 'templatePath' => 'EXT:t3sbootstrap/Resources/Private/Extensions/news/Resources/Private/Templates/ViewHelpers/Widget/Paginate/IndexAjax.html'), 'rss' => array('channel' => array('title' => 'Dummy Title', 'description' => '', 'language' => 'en-gb', 'copyright' => 'TYPO3 News', 'generator' => 'TYPO3 EXT:news', 'link' => 'http://example.com', 'typeNum' => '9818'))), 'detail' => array('imageRatio' => '0', 'info' => '1', 'mediaOnTop' => '0', 'carousel' => '1', 'leftGrid' => '7', 'errorHandling' => 'showStandaloneTemplate,EXT:news/Resources/Private/Templates/News/DetailNotFound.html,404', 'checkPidOfNewsRecord' => '0', 'registerProperties' => 'keywords,title', 'showPrevNext' => '0', 'showSocialShareButtons' => '1', 'showMetaTags' => '1', 'pageTitle' => array('provider' => 'GeorgRinger\\News\\Seo\\NewsTitleProvider', 'properties' => 'title,teaser', '_typoScriptNodeValue' => '1'), 'lightbox' => array('enabled' => '1', 'selection' => '1'), 'image' => array('maxWidth' => '575', 'maxHeight' => ''), 'teaser' => array('class' => 'lead'), 'button' => array('class' => 'primary'), 'media' => array('image' => array('maxWidth' => '282', 'maxHeight' => '', 'lightbox' => array('enabled' => '0', 'class' => 'lightbox', 'width' => '1400m', 'height' => '800m', 'rel' => 'lightbox[myImageSet]')), 'video' => array('width' => '282', 'height' => '159'))), 'analytics' => array('social' => array('facebookLike' => '1', 'facebookShare' => '1', 'twitter' => '1')), 'link' => array('typesOpeningInNewWindow' => '2', 'hrDate' => array('day' => 'j', 'month' => 'n', 'year' => 'Y', '_typoScriptNodeValue' => '0')), 'search' => array('fields' => 'teaser,title,bodytext', 'splitSearchWord' => '0'), 'opengraph' => array('site_name' => '', 'type' => 'article', 'admins' => '', 'email' => '', 'phone_number' => '', 'fax_number' => '', 'latitude' => '', 'longitude' => '', 'street-address' => '', 'locality' => '', 'locale' => '', 'region' => '', 'postal-code' => '', 'country-name' => '', 'twitter' => array('card' => 'summary', 'site' => '', 'creator' => '')), 'media' => array('maxWidth' => '', 'popup' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '0'), '_typoScriptNodeValue' => '0'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('stdWrap' => array('cObject' => array(array('data' => 'file:current:description // file:current:title', 'wrap' => 'data-caption="|"', 'required' => '1', 'stdWrap' => array('htmlSpecialChars' => '1'), '_typoScriptNodeValue' => 'TEXT'), array('data' => 'file:current:description // file:current:title', 'wrap' => 'title="|"', 'required' => '1', 'stdWrap' => array('htmlSpecialChars' => '1'), '_typoScriptNodeValue' => 'TEXT'), '_typoScriptNodeValue' => 'COA'))))), 'image' => array('width' => '500c'), 'maxHeight' => ''), 'categoryConjunction' => 'or', 'categories' => '4', 'archiveRestriction' => '', 'timeRestriction' => '', 'timeRestrictionHigh' => '', 'topNewsRestriction' => '', 'startingpoint' => '243', 'recursive' => '', 'detailPid' => '256', 'listPid' => '255', 'backPid' => '255', 'limit' => '', 'offset' => '', 'tags' => '', 'hidePagination' => '0', 'excludeAlreadyDisplayedNews' => '0', 'disableOverrideDemand' => '0', 'templateLayout' => '73'), 'uriOnly' => false, 'configuration' => array(), 'content' => '', 'section' => null), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext), object(Closure))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 524
     */
    public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
    {
        $viewHelperClassName = get_called_class();
        return $renderingContext->getViewHelperInvoker()->invoke($viewHelperClassName, $arguments, $renderingContext, $renderChildrenClosure);
    }

    /**
     * Save the associated ViewHelper node in a static public class variable.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper::renderStatic(array('additionalAttributes' => null, 'data' => null, 'class' => 'card mb-3', 'dir' => null, 'id' => null, 'lang' => null, 'style' => null, 'title' => 'Higher and Higher', 'accesskey' => null, 'tabindex' => null, 'onclick' => null, 'newsItem' => object(GeorgRinger\News\Domain\Model\NewsDefault), 'settings' => array('version' => '9', 'cssFile' => 'EXT:news/Resources/Public/Css/news-basic.css', 'cdn' => '0', 'animateVersion' => '4.1.1', 'owlCarouselVersion' => '2.3.4', 'baguetteBoxVersion' => '1.11.1', 'magnificpopupVersion' => '1.1.0', 'lightcaseVersion' => '{$bootstrap.cdn.lightcaseVersion}', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'loadingSpinnerPosition' => 'top', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'lazyLoad' => '0', 'picturefill' => '0', 'magnifying' => '0', 'imgCopyright' => '0', 'jqueryDisable' => '1', 'dummyImageUid' => '0', 'displayDummyIfNoMedia' => '1', 'format' => 'html', 'overrideFlexformSettingsIfEmpty' => 'cropMaxCharacters,dateField,timeRestriction,timeRestrictionHigh,archiveRestriction,orderBy,orderDirection,backPid,listPid,startingpoint,recursive,list.paginate.itemsPerPage,list.paginate.templatePath', 'allowEmptyStringsForOverwriteDemand' => '0', 'includeSubCategories' => '1', 'detailPidDetermination' => 'flexform, categories, default', 'defaultDetailPid' => '0', 'dateField' => 'datetime', 'cropMaxCharacters' => '150', 'orderBy' => 'datetime', 'orderDirection' => 'desc', 'topNewsFirst' => '0', 'orderByAllowed' => 'sorting,author,uid,title,teaser,author,tstamp,crdate,datetime,categories.title', 'facebookLocale' => 'en_US', 'googlePlusLocale' => 'en', 'demandClass' => '', 'list' => array('imageRatio' => '4:3', 'info' => '0', 'mobile' => array('imageOverlay' => '0'), 'button' => array('class' => 'primary'), 'media' => array('dummyImage' => 'typo3conf/ext/news/Resources/Public/Images/dummy-preview-image.png', 'image' => array('maxWidth' => '500', 'maxHeight' => '100', 'width' => '500c', 'height' => '500c')), 'paginate' => array('class' => 'GeorgRinger\\NumberedPagination\\NumberedPagination', 'itemsPerPage' => '12', 'insertAbove' => '1', 'insertBelow' => '1', 'maximumNumberOfLinks' => '3', 'templatePath' => 'EXT:t3sbootstrap/Resources/Private/Extensions/news/Resources/Private/Templates/ViewHelpers/Widget/Paginate/IndexAjax.html'), 'rss' => array('channel' => array('title' => 'Dummy Title', 'description' => '', 'language' => 'en-gb', 'copyright' => 'TYPO3 News', 'generator' => 'TYPO3 EXT:news', 'link' => 'http://example.com', 'typeNum' => '9818'))), 'detail' => array('imageRatio' => '0', 'info' => '1', 'mediaOnTop' => '0', 'carousel' => '1', 'leftGrid' => '7', 'errorHandling' => 'showStandaloneTemplate,EXT:news/Resources/Private/Templates/News/DetailNotFound.html,404', 'checkPidOfNewsRecord' => '0', 'registerProperties' => 'keywords,title', 'showPrevNext' => '0', 'showSocialShareButtons' => '1', 'showMetaTags' => '1', 'pageTitle' => array('provider' => 'GeorgRinger\\News\\Seo\\NewsTitleProvider', 'properties' => 'title,teaser', '_typoScriptNodeValue' => '1'), 'lightbox' => array('enabled' => '1', 'selection' => '1'), 'image' => array('maxWidth' => '575', 'maxHeight' => ''), 'teaser' => array('class' => 'lead'), 'button' => array('class' => 'primary'), 'media' => array('image' => array('maxWidth' => '282', 'maxHeight' => '', 'lightbox' => array('enabled' => '0', 'class' => 'lightbox', 'width' => '1400m', 'height' => '800m', 'rel' => 'lightbox[myImageSet]')), 'video' => array('width' => '282', 'height' => '159'))), 'analytics' => array('social' => array('facebookLike' => '1', 'facebookShare' => '1', 'twitter' => '1')), 'link' => array('typesOpeningInNewWindow' => '2', 'hrDate' => array('day' => 'j', 'month' => 'n', 'year' => 'Y', '_typoScriptNodeValue' => '0')), 'search' => array('fields' => 'teaser,title,bodytext', 'splitSearchWord' => '0'), 'opengraph' => array('site_name' => '', 'type' => 'article', 'admins' => '', 'email' => '', 'phone_number' => '', 'fax_number' => '', 'latitude' => '', 'longitude' => '', 'street-address' => '', 'locality' => '', 'locale' => '', 'region' => '', 'postal-code' => '', 'country-name' => '', 'twitter' => array('card' => 'summary', 'site' => '', 'creator' => '')), 'media' => array('maxWidth' => '', 'popup' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '0'), '_typoScriptNodeValue' => '0'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('stdWrap' => array('cObject' => array(array('data' => 'file:current:description // file:current:title', 'wrap' => 'data-caption="|"', 'required' => '1', 'stdWrap' => array('htmlSpecialChars' => '1'), '_typoScriptNodeValue' => 'TEXT'), array('data' => 'file:current:description // file:current:title', 'wrap' => 'title="|"', 'required' => '1', 'stdWrap' => array('htmlSpecialChars' => '1'), '_typoScriptNodeValue' => 'TEXT'), '_typoScriptNodeValue' => 'COA'))))), 'image' => array('width' => '500c'), 'maxHeight' => ''), 'categoryConjunction' => 'or', 'categories' => '4', 'archiveRestriction' => '', 'timeRestriction' => '', 'timeRestrictionHigh' => '', 'topNewsRestriction' => '', 'startingpoint' => '243', 'recursive' => '', 'detailPid' => '256', 'listPid' => '255', 'backPid' => '255', 'limit' => '', 'offset' => '', 'tags' => '', 'hidePagination' => '0', 'excludeAlreadyDisplayedNews' => '0', 'disableOverrideDemand' => '0', 'templateLayout' => '73'), 'uriOnly' => false, 'configuration' => array(), 'content' => '', 'section' => null), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/partial_List_Card_0139e2ef5dc3ca4331d4f952bf580fc256b1120c.php line 810
$array8 = array (
);$arguments4['title'] = $renderingContext->getVariableProvider()->getByPath('newsItem.title', $array8);
$arguments4['class'] = 'card mb-3';

$output0 .= GeorgRinger\News\ViewHelpers\LinkViewHelper::renderStatic($arguments4, $renderChildrenClosure5, $renderingContext);

$output0 .= '

';
at partial_List_Card_0139e2ef5dc3ca4331d4f952bf580fc256b1120c->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 329
        $this->startRendering(self::RENDERING_PARTIAL, $parsedPartial, $renderingContext);
        if ($sectionName !== null) {
            $output = $this->renderSection($sectionName, $variables, $ignoreUnknown);
        } else {
            $output = $parsedPartial->render($renderingContext);
        }
        $this->stopRendering();
        return $output;
    }
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial('List/Card', null, array('newsItem' => object(GeorgRinger\News\Domain\Model\NewsDefault), 'iterator' => array('index' => 0, 'cycle' => 1, 'total' => 9, 'isFirst' => true, 'isLast' => false, 'isEven' => false, 'isOdd' => true)), false)
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 141
            $renderingContext = clone $renderingContext;
            $renderingContext->getVariableProvider()->setSource($variables);
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => null, 'partial' => 'List/Card', 'delegate' => null, 'renderable' => null, 'arguments' => array('newsItem' => object(GeorgRinger\News\Domain\Model\NewsDefault), 'iterator' => array('index' => 0, 'cycle' => 1, 'total' => 9, 'isFirst' => true, 'isLast' => false, 'isEven' => false, 'isOdd' => true)), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/News_action_list_c2b910b499edf8a044bb0bc4f95ff36c63f586d6.php line 3639
$array527 = array (
);$array525['iterator'] = $renderingContext->getVariableProvider()->getByPath('iterator', $array527);
$arguments523['arguments'] = $array525;

$output522 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments523, $renderChildrenClosure524, $renderingContext);

$output522 .= '
    ';
return $output522;
at News_action_list_c2b910b499edf8a044bb0bc4f95ff36c63f586d6->{closure}()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/ViewHelpers/ForViewHelper.php line 133
                $templateVariableContainer->add($arguments['iteration'], $iterationData);
                $iterationData['index']++;
                $iterationData['cycle']++;
            }
            $output .= $renderChildrenClosure();
            $templateVariableContainer->remove($arguments['as']);
            if (isset($arguments['key'])) {
                $templateVariableContainer->remove($arguments['key']);
            }
at TYPO3Fluid\Fluid\ViewHelpers\ForViewHelper::renderStatic(array('each' => object(TYPO3\CMS\Extbase\Persistence\Generic\QueryResult), 'as' => 'newsItem', 'key' => null, 'reverse' => false, 'iteration' => 'iterator'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/News_action_list_c2b910b499edf8a044bb0bc4f95ff36c63f586d6.php line 3656
);$arguments519['each'] = $renderingContext->getVariableProvider()->getByPath('pagination.paginator.paginatedItems', $array521);
$arguments519['as'] = 'newsItem';
$arguments519['iteration'] = 'iterator';

$output488 .= TYPO3Fluid\Fluid\ViewHelpers\ForViewHelper::renderStatic($arguments519, $renderChildrenClosure520, $renderingContext);

$output488 .= '
    </div>
    ';
at News_action_list_c2b910b499edf8a044bb0bc4f95ff36c63f586d6->{closure}()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => false, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/News_action_list_c2b910b499edf8a044bb0bc4f95ff36c63f586d6.php line 3747
  ';
return $output488;
};

$output459 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments460, $renderChildrenClosure461, $renderingContext);

$output459 .= '
';

at News_action_list_c2b910b499edf8a044bb0bc4f95ff36c63f586d6->section_0f830bc25e52f96121b00a67378be1abeaa3f274(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 260
                    );
                }
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('Cards', array('settings' => array('version' => '9', 'cssFile' => 'EXT:news/Resources/Public/Css/news-basic.css', 'cdn' => '0', 'animateVersion' => '4.1.1', 'owlCarouselVersion' => '2.3.4', 'baguetteBoxVersion' => '1.11.1', 'magnificpopupVersion' => '1.1.0', 'lightcaseVersion' => '{$bootstrap.cdn.lightcaseVersion}', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'loadingSpinnerPosition' => 'top', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'lazyLoad' => '0', 'picturefill' => '0', 'magnifying' => '0', 'imgCopyright' => '0', 'jqueryDisable' => '1', 'dummyImageUid' => '0', 'displayDummyIfNoMedia' => '1', 'format' => 'html', 'overrideFlexformSettingsIfEmpty' => 'cropMaxCharacters,dateField,timeRestriction,timeRestrictionHigh,archiveRestriction,orderBy,orderDirection,backPid,listPid,startingpoint,recursive,list.paginate.itemsPerPage,list.paginate.templatePath', 'allowEmptyStringsForOverwriteDemand' => '0', 'includeSubCategories' => '1', 'detailPidDetermination' => 'flexform, categories, default', 'defaultDetailPid' => '0', 'dateField' => 'datetime', 'cropMaxCharacters' => '150', 'orderBy' => 'datetime', 'orderDirection' => 'desc', 'topNewsFirst' => '0', 'orderByAllowed' => 'sorting,author,uid,title,teaser,author,tstamp,crdate,datetime,categories.title', 'facebookLocale' => 'en_US', 'googlePlusLocale' => 'en', 'demandClass' => '', 'list' => array('imageRatio' => '4:3', 'info' => '0', 'mobile' => array('imageOverlay' => '0'), 'button' => array('class' => 'primary'), 'media' => array('dummyImage' => 'typo3conf/ext/news/Resources/Public/Images/dummy-preview-image.png', 'image' => array('maxWidth' => '500', 'maxHeight' => '100', 'width' => '500c', 'height' => '500c')), 'paginate' => array('class' => 'GeorgRinger\\NumberedPagination\\NumberedPagination', 'itemsPerPage' => '12', 'insertAbove' => '1', 'insertBelow' => '1', 'maximumNumberOfLinks' => '3', 'templatePath' => 'EXT:t3sbootstrap/Resources/Private/Extensions/news/Resources/Private/Templates/ViewHelpers/Widget/Paginate/IndexAjax.html'), 'rss' => array('channel' => array('title' => 'Dummy Title', 'description' => '', 'language' => 'en-gb', 'copyright' => 'TYPO3 News', 'generator' => 'TYPO3 EXT:news', 'link' => 'http://example.com', 'typeNum' => '9818'))), 'detail' => array('imageRatio' => '0', 'info' => '1', 'mediaOnTop' => '0', 'carousel' => '1', 'leftGrid' => '7', 'errorHandling' => 'showStandaloneTemplate,EXT:news/Resources/Private/Templates/News/DetailNotFound.html,404', 'checkPidOfNewsRecord' => '0', 'registerProperties' => 'keywords,title', 'showPrevNext' => '0', 'showSocialShareButtons' => '1', 'showMetaTags' => '1', 'pageTitle' => array('provider' => 'GeorgRinger\\News\\Seo\\NewsTitleProvider', 'properties' => 'title,teaser', '_typoScriptNodeValue' => '1'), 'lightbox' => array('enabled' => '1', 'selection' => '1'), 'image' => array('maxWidth' => '575', 'maxHeight' => ''), 'teaser' => array('class' => 'lead'), 'button' => array('class' => 'primary'), 'media' => array('image' => array('maxWidth' => '282', 'maxHeight' => '', 'lightbox' => array('enabled' => '0', 'class' => 'lightbox', 'width' => '1400m', 'height' => '800m', 'rel' => 'lightbox[myImageSet]')), 'video' => array('width' => '282', 'height' => '159'))), 'analytics' => array('social' => array('facebookLike' => '1', 'facebookShare' => '1', 'twitter' => '1')), 'link' => array('typesOpeningInNewWindow' => '2', 'hrDate' => array('day' => 'j', 'month' => 'n', 'year' => 'Y', '_typoScriptNodeValue' => '0')), 'search' => array('fields' => 'teaser,title,bodytext', 'splitSearchWord' => '0'), 'opengraph' => array('site_name' => '', 'type' => 'article', 'admins' => '', 'email' => '', 'phone_number' => '', 'fax_number' => '', 'latitude' => '', 'longitude' => '', 'street-address' => '', 'locality' => '', 'locale' => '', 'region' => '', 'postal-code' => '', 'country-name' => '', 'twitter' => array('card' => 'summary', 'site' => '', 'creator' => '')), 'media' => array('maxWidth' => '', 'popup' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '0'), '_typoScriptNodeValue' => '0'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('stdWrap' => array('cObject' => array(array('data' => 'file:current:description // file:current:title', 'wrap' => 'data-caption="|"', 'required' => '1', 'stdWrap' => array('htmlSpecialChars' => '1'), '_typoScriptNodeValue' => 'TEXT'), array('data' => 'file:current:description // file:current:title', 'wrap' => 'title="|"', 'required' => '1', 'stdWrap' => array('htmlSpecialChars' => '1'), '_typoScriptNodeValue' => 'TEXT'), '_typoScriptNodeValue' => 'COA'))))), 'image' => array('width' => '500c'), 'maxHeight' => ''), 'categoryConjunction' => 'or', 'categories' => '4', 'archiveRestriction' => '', 'timeRestriction' => '', 'timeRestrictionHigh' => '', 'topNewsRestriction' => '', 'startingpoint' => '243', 'recursive' => '', 'detailPid' => '256', 'listPid' => '255', 'backPid' => '255', 'limit' => '', 'offset' => '', 'tags' => '', 'hidePagination' => '0', 'excludeAlreadyDisplayedNews' => '0', 'disableOverrideDemand' => '0', 'templateLayout' => '73'), 'contentObjectData' => array('header_position' => '', 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'uid' => 4124, 'pid' => 255, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 1542, 'tstamp' => 1626116885, 'crdate' => 1519071277, 'cruser_id' => 4, 'editlock' => 0, 'hidden' => 0, 'sorting' => 5632, 'CType' => 'list', 'header' => '', 'rowDescription' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '0', 'list_type' => 'news_pi1', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 1, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.orderBy"> <value index="vDEF"></value> </field> <field index="settings.orderDirection"> <value index="vDEF"></value> </field> <field index="settings.categoryConjunction"> <value index="vDEF">or</value> </field> <field index="settings.categories"> <value index="vDEF">4</value> </field> <field index="settings.includeSubCategories"> <value index="vDEF">1</value> </field> <field index="settings.archiveRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestrictionHigh"> <value index="vDEF"></value> </field> <field index="settings.topNewsRestriction"> <value index="vDEF"></value> </field> <field index="settings.startingpoint"> <value index="vDEF">243</value> </field> <field index="settings.recursive"> <value index="vDEF"></value> </field> <field index="switchableControllerActions"> <value index="vDEF">News-&gt;list;News-&gt;detail</value> </field> </language> </sheet> <sheet index="additional"> <language index="lDEF"> <field index="settings.detailPid"> <value index="vDEF">256</value> </field> <field index="settings.listPid"> <value index="vDEF">255</value> </field> <field index="settings.backPid"> <value index="vDEF">255</value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.offset"> <value index="vDEF"></value> </field> <field index="settings.tags"> <value index="vDEF"></value> </field> <field index="settings.hidePagination"> <value index="vDEF">0</value> </field> <field index="settings.list.paginate.itemsPerPage"> <value index="vDEF">12</value> </field> <field index="settings.topNewsFirst"> <value index="vDEF">0</value> </field> <field index="settings.excludeAlreadyDisplayedNews"> <value index="vDEF">0</value> </field> <field index="settings.disableOverrideDemand"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="template"> <language index="lDEF"> <field index="settings.media.maxWidth"> <value index="vDEF"></value> </field> <field index="settings.media.maxHeight"> <value index="vDEF"></value> </field> <field index="settings.cropMaxCharacters"> <value index="vDEF"></value> </field> <field index="settings.templateLayout"> <value index="vDEF">73</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 4124, 'l18n_diffsource' => 'a:42:{s:5:"CType";s:4:"list";s:6:"colPos";i:0;s:16:"sys_language_uid";i:0;s:6:"header";s:0:"";s:9:"subheader";s:0:"";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:13:"header_layout";s:1:"0";s:31:"tx_t3sbootstrap_header_position";s:0:"";s:4:"date";i:0;s:11:"header_link";s:0:"";s:14:"rowDescription";s:0:"";s:9:"list_type";s:8:"news_pi1";s:11:"pi_flexform";s:4011:"<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.orderBy"> <value index="vDEF">datetime</value> </field> <field index="settings.orderDirection"> <value index="vDEF">desc</value> </field> <field index="settings.categoryConjunction"> <value index="vDEF">or</value> </field> <field index="settings.categories"> <value index="vDEF">4</value> </field> <field index="settings.includeSubCategories"> <value index="vDEF">1</value> </field> <field index="settings.archiveRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestrictionHigh"> <value index="vDEF"></value> </field> <field index="settings.topNewsRestriction"> <value index="vDEF"></value> </field> <field index="settings.startingpoint"> <value index="vDEF">243</value> </field> <field index="settings.recursive"> <value index="vDEF"></value> </field> <field index="switchableControllerActions"> <value index="vDEF">News-&gt;list;News-&gt;detail</value> </field> </language> </sheet> <sheet index="additional"> <language index="lDEF"> <field index="settings.detailPid"> <value index="vDEF">256</value> </field> <field index="settings.listPid"> <value index="vDEF">255</value> </field> <field index="settings.backPid"> <value index="vDEF">255</value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.offset"> <value index="vDEF"></value> </field> <field index="settings.tags"> <value index="vDEF"></value> </field> <field index="settings.hidePagination"> <value index="vDEF">0</value> </field> <field index="settings.list.paginate.itemsPerPage"> <value index="vDEF">12</value> </field> <field index="settings.topNewsFirst"> <value index="vDEF">0</value> </field> <field index="settings.excludeAlreadyDisplayedNews"> <value index="vDEF">0</value> </field> <field index="settings.disableOverrideDemand"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="template"> <language index="lDEF"> <field index="settings.media.maxWidth"> <value index="vDEF"></value> </field> <field index="settings.media.maxHeight"> <value index="vDEF"></value> </field> <field index="settings.cropMaxCharacters"> <value index="vDEF"></value> </field> <field index="settings.templateLayout"> <value index="vDEF">73</value> </field> </language> </sheet> </data></T3FlexForms>";s:6:"layout";i:0;s:12:"sectionIndex";i:1;s:6:"hidden";i:0;s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"fe_group";s:0:"";s:8:"editlock";i:0;s:10:"categories";i:0;s:25:"tx_gridelements_container";s:1:"0";s:24:"tx_t3sbootstrap_flexform";s:2081:"<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="frame"> <value index="vDEF">0</value> </field> <field index="hiddenXs"> <value index="vDEF">0</value> </field> <field index="hiddenSm"> <value index="vDEF">0</value> </field> <field index="hiddenMd"> <value index="vDEF">0</value> </field> <field index="hiddenLg"> <value index="vDEF">0</value> </field> <field index="hiddenPrint"> <value index="vDEF">0</value> </field> <field index="rulerBefore"> <value index="vDEF">0</value> </field> <field index="rulerAfter"> <value index="vDEF">0</value> </field> <field index="indent"> <value index="vDEF">0</value> </field> <field index="topMargin"> <value index="vDEF">0</value> </field> <field index="bottomMargin"> <value index="vDEF">0</value> </field> <field index="containerOverride"> <value index="vDEF">0</value> </field> <field index="extraClass"> <value index="vDEF"></value> </field> <field index="hidden"> <value index="vDEF">0</value> </field> <field index="float"> <value index="vDEF">0</value> </field> <field index="border"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>";s:11:"l18n_parent";i:0;s:19:"tx_container_parent";i:0;s:15:"header_position";s:0:"";s:29:"tx_t3sbootstrap_header_celink";i:0;s:30:"tx_t3sbootstrap_header_display";s:0:"";s:28:"tx_t3sbootstrap_header_class";s:0:"";s:34:"tx_t3sbootstrap_header_fontawesome";s:0:"";s:11:"frame_class";s:7:"default";s:29:"tx_t3sbootstrap_padding_sides";s:0:"";s:28:"tx_t3sbootstrap_padding_size";s:1:"0";s:28:"tx_t3sbootstrap_margin_sides";s:0:"";s:27:"tx_t3sbootstrap_margin_size";s:1:"0";s:27:"tx_t3sbootstrap_extra_class";s:0:"";s:25:"tx_t3sbootstrap_container";s:9:"container";s:28:"tx_t3sbootstrap_contextcolor";s:0:"";s:23:"tx_t3sbootstrap_bgcolor";s:0:"";s:25:"tx_t3sbootstrap_bgopacity";s:1:"0";s:25:"tx_t3sbootstrap_textcolor";s:0:"";s:34:"tx_t3sbootstrap_header_sectionMenu";s:0:"";}', 'selected_categories' => '', 'category_field' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'categories' => 0, 'tx_dce_dce' => 0, 'tx_dce_index' => null, 'tx_dce_new_container' => 0, 'tx_t3sbootstrap_header_position' => '', 'tx_t3sbootstrap_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="frame"> <value index="vDEF">0</value> </field> <field index="hiddenXs"> <value index="vDEF">0</value> </field> <field index="hiddenSm"> <value index="vDEF">0</value> </field> <field index="hiddenMd"> <value index="vDEF">0</value> </field> <field index="hiddenLg"> <value index="vDEF">0</value> </field> <field index="hiddenPrint"> <value index="vDEF">0</value> </field> <field index="rulerBefore"> <value index="vDEF">0</value> </field> <field index="rulerAfter"> <value index="vDEF">0</value> </field> <field index="indent"> <value index="vDEF">0</value> </field> <field index="topMargin"> <value index="vDEF">0</value> </field> <field index="bottomMargin"> <value index="vDEF">0</value> </field> <field index="containerOverride"> <value index="vDEF">0</value> </field> <field index="extraClass"> <value index="vDEF"></value> </field> <field index="hidden"> <value index="vDEF">0</value> </field> <field index="float"> <value index="vDEF">0</value> </field> <field index="border"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>', 'tx_t3sbootstrap_animateCss' => '', 'tx_t3sbootstrap_animateCssRepeat' => 1, 'tx_t3sbootstrap_animateCssDuration' => '0', 'tx_news_related_news' => 0, 'tx_t3sbootstrap_header_display' => '', 'tx_t3sbootstrap_header_class' => '', 'tx_t3sbootstrap_padding_sides' => '', 'tx_t3sbootstrap_padding_size' => '0', 'tx_t3sbootstrap_margin_sides' => '', 'tx_t3sbootstrap_margin_size' => '0', 'tx_t3sbootstrap_flexbox_columns' => '', 'tx_t3sbootstrap_flexbox_prefix' => '', 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_extra_class' => '', 'tx_t3sbootstrap_bgcolor' => '', 'tx_t3sbootstrap_contextcolor' => '', 'tx_t3sbootstrap_textcolor' => '', 'l10n_source' => 4124, 'l10n_state' => null, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'table_class' => '', 'tx_t3sbootstrap_header_fontawesome' => '', 'tx_t3sbootstrap_inTextImgRowWidth' => '', 'tx_t3sbootstrap_bordercolor' => '', 'tx_t3sbootstrap_image_ratio' => '', 'tx_t3sbootstrap_header_celink' => 0, 'filelink_sorting_direction' => '', 'tx_t3sbootstrap_header_sectionMenu' => '', 'tx_t3sbootstrap_sectionOrder' => '', 'tx_t3sbootstrap_bgopacity' => '0', 'tx_t3sbootstrap_animateCssDelay' => '', 'tx_container_parent' => 0, 'tx_t3sbootstrap_extra_style' => '', 'tx_dce_slug' => '', 'tx_t3sbootstrap_image_orig' => '', 'tx_content_animations_animation' => null, 'tx_content_animations_duration' => 800, 'tx_content_animations_delay' => 0, 'tx_content_animations_offset' => 0, 'tx_content_animations_once' => 1, 'tx_content_animations_mirror' => 0, 'tx_content_animations_easing' => null, 'tx_content_animations_anchor_placement' => null, 'tx_t3sbootstrap_inTextImgColumns' => 0, 'tx_t3sbootstrap_galleryGutters' => 0, '_LOCALIZED_UID' => 4125, 'currentValue_kidjls9dksoje' => 'OneCol', 'configuid' => 3), 'emConfiguration' => object(GeorgRinger\News\Domain\Model\Dto\EmConfiguration), 'pageData' => array('uid' => 255, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 10, 'tstamp' => 1620931016, 'sorting' => 1272, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1519071277, 'cruser_id' => 4, 'hidden' => 0, 'title' => 'News', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'News from TOS Dienste International e.V., our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Welcome to our newsblog at TOS Dienste International e.V. Read about the latest developments in our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1626116885, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 255, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";N;s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/news', 'legacy_overlay_uid' => 218, 'l10n_parent' => 255, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1418, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1), 'news' => object(TYPO3\CMS\Extbase\Persistence\Generic\QueryResult), 'overwriteDemand' => array('categories' => '78'), 'demand' => object(GeorgRinger\News\Domain\Model\Dto\NewsDemand), 'categories' => object(TYPO3\CMS\Extbase\Persistence\Generic\QueryResult), 'tags' => null, 'pagination' => array('currentPage' => 1, 'paginator' => object(TYPO3\CMS\Extbase\Pagination\QueryResultPaginator), 'pagination' => object(TYPO3\CMS\Core\Pagination\SimplePagination))), false)
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 143
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => 'Cards', 'partial' => null, 'delegate' => null, 'renderable' => null, 'arguments' => array('settings' => array('version' => '9', 'cssFile' => 'EXT:news/Resources/Public/Css/news-basic.css', 'cdn' => '0', 'animateVersion' => '4.1.1', 'owlCarouselVersion' => '2.3.4', 'baguetteBoxVersion' => '1.11.1', 'magnificpopupVersion' => '1.1.0', 'lightcaseVersion' => '{$bootstrap.cdn.lightcaseVersion}', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'loadingSpinnerPosition' => 'top', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'lazyLoad' => '0', 'picturefill' => '0', 'magnifying' => '0', 'imgCopyright' => '0', 'jqueryDisable' => '1', 'dummyImageUid' => '0', 'displayDummyIfNoMedia' => '1', 'format' => 'html', 'overrideFlexformSettingsIfEmpty' => 'cropMaxCharacters,dateField,timeRestriction,timeRestrictionHigh,archiveRestriction,orderBy,orderDirection,backPid,listPid,startingpoint,recursive,list.paginate.itemsPerPage,list.paginate.templatePath', 'allowEmptyStringsForOverwriteDemand' => '0', 'includeSubCategories' => '1', 'detailPidDetermination' => 'flexform, categories, default', 'defaultDetailPid' => '0', 'dateField' => 'datetime', 'cropMaxCharacters' => '150', 'orderBy' => 'datetime', 'orderDirection' => 'desc', 'topNewsFirst' => '0', 'orderByAllowed' => 'sorting,author,uid,title,teaser,author,tstamp,crdate,datetime,categories.title', 'facebookLocale' => 'en_US', 'googlePlusLocale' => 'en', 'demandClass' => '', 'list' => array('imageRatio' => '4:3', 'info' => '0', 'mobile' => array('imageOverlay' => '0'), 'button' => array('class' => 'primary'), 'media' => array('dummyImage' => 'typo3conf/ext/news/Resources/Public/Images/dummy-preview-image.png', 'image' => array('maxWidth' => '500', 'maxHeight' => '100', 'width' => '500c', 'height' => '500c')), 'paginate' => array('class' => 'GeorgRinger\\NumberedPagination\\NumberedPagination', 'itemsPerPage' => '12', 'insertAbove' => '1', 'insertBelow' => '1', 'maximumNumberOfLinks' => '3', 'templatePath' => 'EXT:t3sbootstrap/Resources/Private/Extensions/news/Resources/Private/Templates/ViewHelpers/Widget/Paginate/IndexAjax.html'), 'rss' => array('channel' => array('title' => 'Dummy Title', 'description' => '', 'language' => 'en-gb', 'copyright' => 'TYPO3 News', 'generator' => 'TYPO3 EXT:news', 'link' => 'http://example.com', 'typeNum' => '9818'))), 'detail' => array('imageRatio' => '0', 'info' => '1', 'mediaOnTop' => '0', 'carousel' => '1', 'leftGrid' => '7', 'errorHandling' => 'showStandaloneTemplate,EXT:news/Resources/Private/Templates/News/DetailNotFound.html,404', 'checkPidOfNewsRecord' => '0', 'registerProperties' => 'keywords,title', 'showPrevNext' => '0', 'showSocialShareButtons' => '1', 'showMetaTags' => '1', 'pageTitle' => array('provider' => 'GeorgRinger\\News\\Seo\\NewsTitleProvider', 'properties' => 'title,teaser', '_typoScriptNodeValue' => '1'), 'lightbox' => array('enabled' => '1', 'selection' => '1'), 'image' => array('maxWidth' => '575', 'maxHeight' => ''), 'teaser' => array('class' => 'lead'), 'button' => array('class' => 'primary'), 'media' => array('image' => array('maxWidth' => '282', 'maxHeight' => '', 'lightbox' => array('enabled' => '0', 'class' => 'lightbox', 'width' => '1400m', 'height' => '800m', 'rel' => 'lightbox[myImageSet]')), 'video' => array('width' => '282', 'height' => '159'))), 'analytics' => array('social' => array('facebookLike' => '1', 'facebookShare' => '1', 'twitter' => '1')), 'link' => array('typesOpeningInNewWindow' => '2', 'hrDate' => array('day' => 'j', 'month' => 'n', 'year' => 'Y', '_typoScriptNodeValue' => '0')), 'search' => array('fields' => 'teaser,title,bodytext', 'splitSearchWord' => '0'), 'opengraph' => array('site_name' => '', 'type' => 'article', 'admins' => '', 'email' => '', 'phone_number' => '', 'fax_number' => '', 'latitude' => '', 'longitude' => '', 'street-address' => '', 'locality' => '', 'locale' => '', 'region' => '', 'postal-code' => '', 'country-name' => '', 'twitter' => array('card' => 'summary', 'site' => '', 'creator' => '')), 'media' => array('maxWidth' => '', 'popup' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '0'), '_typoScriptNodeValue' => '0'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('stdWrap' => array('cObject' => array(array('data' => 'file:current:description // file:current:title', 'wrap' => 'data-caption="|"', 'required' => '1', 'stdWrap' => array('htmlSpecialChars' => '1'), '_typoScriptNodeValue' => 'TEXT'), array('data' => 'file:current:description // file:current:title', 'wrap' => 'title="|"', 'required' => '1', 'stdWrap' => array('htmlSpecialChars' => '1'), '_typoScriptNodeValue' => 'TEXT'), '_typoScriptNodeValue' => 'COA'))))), 'image' => array('width' => '500c'), 'maxHeight' => ''), 'categoryConjunction' => 'or', 'categories' => '4', 'archiveRestriction' => '', 'timeRestriction' => '', 'timeRestrictionHigh' => '', 'topNewsRestriction' => '', 'startingpoint' => '243', 'recursive' => '', 'detailPid' => '256', 'listPid' => '255', 'backPid' => '255', 'limit' => '', 'offset' => '', 'tags' => '', 'hidePagination' => '0', 'excludeAlreadyDisplayedNews' => '0', 'disableOverrideDemand' => '0', 'templateLayout' => '73'), 'contentObjectData' => array('header_position' => '', 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'uid' => 4124, 'pid' => 255, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 1542, 'tstamp' => 1626116885, 'crdate' => 1519071277, 'cruser_id' => 4, 'editlock' => 0, 'hidden' => 0, 'sorting' => 5632, 'CType' => 'list', 'header' => '', 'rowDescription' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '0', 'list_type' => 'news_pi1', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 1, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.orderBy"> <value index="vDEF"></value> </field> <field index="settings.orderDirection"> <value index="vDEF"></value> </field> <field index="settings.categoryConjunction"> <value index="vDEF">or</value> </field> <field index="settings.categories"> <value index="vDEF">4</value> </field> <field index="settings.includeSubCategories"> <value index="vDEF">1</value> </field> <field index="settings.archiveRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestrictionHigh"> <value index="vDEF"></value> </field> <field index="settings.topNewsRestriction"> <value index="vDEF"></value> </field> <field index="settings.startingpoint"> <value index="vDEF">243</value> </field> <field index="settings.recursive"> <value index="vDEF"></value> </field> <field index="switchableControllerActions"> <value index="vDEF">News-&gt;list;News-&gt;detail</value> </field> </language> </sheet> <sheet index="additional"> <language index="lDEF"> <field index="settings.detailPid"> <value index="vDEF">256</value> </field> <field index="settings.listPid"> <value index="vDEF">255</value> </field> <field index="settings.backPid"> <value index="vDEF">255</value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.offset"> <value index="vDEF"></value> </field> <field index="settings.tags"> <value index="vDEF"></value> </field> <field index="settings.hidePagination"> <value index="vDEF">0</value> </field> <field index="settings.list.paginate.itemsPerPage"> <value index="vDEF">12</value> </field> <field index="settings.topNewsFirst"> <value index="vDEF">0</value> </field> <field index="settings.excludeAlreadyDisplayedNews"> <value index="vDEF">0</value> </field> <field index="settings.disableOverrideDemand"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="template"> <language index="lDEF"> <field index="settings.media.maxWidth"> <value index="vDEF"></value> </field> <field index="settings.media.maxHeight"> <value index="vDEF"></value> </field> <field index="settings.cropMaxCharacters"> <value index="vDEF"></value> </field> <field index="settings.templateLayout"> <value index="vDEF">73</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 4124, 'l18n_diffsource' => 'a:42:{s:5:"CType";s:4:"list";s:6:"colPos";i:0;s:16:"sys_language_uid";i:0;s:6:"header";s:0:"";s:9:"subheader";s:0:"";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:13:"header_layout";s:1:"0";s:31:"tx_t3sbootstrap_header_position";s:0:"";s:4:"date";i:0;s:11:"header_link";s:0:"";s:14:"rowDescription";s:0:"";s:9:"list_type";s:8:"news_pi1";s:11:"pi_flexform";s:4011:"<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.orderBy"> <value index="vDEF">datetime</value> </field> <field index="settings.orderDirection"> <value index="vDEF">desc</value> </field> <field index="settings.categoryConjunction"> <value index="vDEF">or</value> </field> <field index="settings.categories"> <value index="vDEF">4</value> </field> <field index="settings.includeSubCategories"> <value index="vDEF">1</value> </field> <field index="settings.archiveRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestrictionHigh"> <value index="vDEF"></value> </field> <field index="settings.topNewsRestriction"> <value index="vDEF"></value> </field> <field index="settings.startingpoint"> <value index="vDEF">243</value> </field> <field index="settings.recursive"> <value index="vDEF"></value> </field> <field index="switchableControllerActions"> <value index="vDEF">News-&gt;list;News-&gt;detail</value> </field> </language> </sheet> <sheet index="additional"> <language index="lDEF"> <field index="settings.detailPid"> <value index="vDEF">256</value> </field> <field index="settings.listPid"> <value index="vDEF">255</value> </field> <field index="settings.backPid"> <value index="vDEF">255</value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.offset"> <value index="vDEF"></value> </field> <field index="settings.tags"> <value index="vDEF"></value> </field> <field index="settings.hidePagination"> <value index="vDEF">0</value> </field> <field index="settings.list.paginate.itemsPerPage"> <value index="vDEF">12</value> </field> <field index="settings.topNewsFirst"> <value index="vDEF">0</value> </field> <field index="settings.excludeAlreadyDisplayedNews"> <value index="vDEF">0</value> </field> <field index="settings.disableOverrideDemand"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="template"> <language index="lDEF"> <field index="settings.media.maxWidth"> <value index="vDEF"></value> </field> <field index="settings.media.maxHeight"> <value index="vDEF"></value> </field> <field index="settings.cropMaxCharacters"> <value index="vDEF"></value> </field> <field index="settings.templateLayout"> <value index="vDEF">73</value> </field> </language> </sheet> </data></T3FlexForms>";s:6:"layout";i:0;s:12:"sectionIndex";i:1;s:6:"hidden";i:0;s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"fe_group";s:0:"";s:8:"editlock";i:0;s:10:"categories";i:0;s:25:"tx_gridelements_container";s:1:"0";s:24:"tx_t3sbootstrap_flexform";s:2081:"<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="frame"> <value index="vDEF">0</value> </field> <field index="hiddenXs"> <value index="vDEF">0</value> </field> <field index="hiddenSm"> <value index="vDEF">0</value> </field> <field index="hiddenMd"> <value index="vDEF">0</value> </field> <field index="hiddenLg"> <value index="vDEF">0</value> </field> <field index="hiddenPrint"> <value index="vDEF">0</value> </field> <field index="rulerBefore"> <value index="vDEF">0</value> </field> <field index="rulerAfter"> <value index="vDEF">0</value> </field> <field index="indent"> <value index="vDEF">0</value> </field> <field index="topMargin"> <value index="vDEF">0</value> </field> <field index="bottomMargin"> <value index="vDEF">0</value> </field> <field index="containerOverride"> <value index="vDEF">0</value> </field> <field index="extraClass"> <value index="vDEF"></value> </field> <field index="hidden"> <value index="vDEF">0</value> </field> <field index="float"> <value index="vDEF">0</value> </field> <field index="border"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>";s:11:"l18n_parent";i:0;s:19:"tx_container_parent";i:0;s:15:"header_position";s:0:"";s:29:"tx_t3sbootstrap_header_celink";i:0;s:30:"tx_t3sbootstrap_header_display";s:0:"";s:28:"tx_t3sbootstrap_header_class";s:0:"";s:34:"tx_t3sbootstrap_header_fontawesome";s:0:"";s:11:"frame_class";s:7:"default";s:29:"tx_t3sbootstrap_padding_sides";s:0:"";s:28:"tx_t3sbootstrap_padding_size";s:1:"0";s:28:"tx_t3sbootstrap_margin_sides";s:0:"";s:27:"tx_t3sbootstrap_margin_size";s:1:"0";s:27:"tx_t3sbootstrap_extra_class";s:0:"";s:25:"tx_t3sbootstrap_container";s:9:"container";s:28:"tx_t3sbootstrap_contextcolor";s:0:"";s:23:"tx_t3sbootstrap_bgcolor";s:0:"";s:25:"tx_t3sbootstrap_bgopacity";s:1:"0";s:25:"tx_t3sbootstrap_textcolor";s:0:"";s:34:"tx_t3sbootstrap_header_sectionMenu";s:0:"";}', 'selected_categories' => '', 'category_field' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'categories' => 0, 'tx_dce_dce' => 0, 'tx_dce_index' => null, 'tx_dce_new_container' => 0, 'tx_t3sbootstrap_header_position' => '', 'tx_t3sbootstrap_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="frame"> <value index="vDEF">0</value> </field> <field index="hiddenXs"> <value index="vDEF">0</value> </field> <field index="hiddenSm"> <value index="vDEF">0</value> </field> <field index="hiddenMd"> <value index="vDEF">0</value> </field> <field index="hiddenLg"> <value index="vDEF">0</value> </field> <field index="hiddenPrint"> <value index="vDEF">0</value> </field> <field index="rulerBefore"> <value index="vDEF">0</value> </field> <field index="rulerAfter"> <value index="vDEF">0</value> </field> <field index="indent"> <value index="vDEF">0</value> </field> <field index="topMargin"> <value index="vDEF">0</value> </field> <field index="bottomMargin"> <value index="vDEF">0</value> </field> <field index="containerOverride"> <value index="vDEF">0</value> </field> <field index="extraClass"> <value index="vDEF"></value> </field> <field index="hidden"> <value index="vDEF">0</value> </field> <field index="float"> <value index="vDEF">0</value> </field> <field index="border"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>', 'tx_t3sbootstrap_animateCss' => '', 'tx_t3sbootstrap_animateCssRepeat' => 1, 'tx_t3sbootstrap_animateCssDuration' => '0', 'tx_news_related_news' => 0, 'tx_t3sbootstrap_header_display' => '', 'tx_t3sbootstrap_header_class' => '', 'tx_t3sbootstrap_padding_sides' => '', 'tx_t3sbootstrap_padding_size' => '0', 'tx_t3sbootstrap_margin_sides' => '', 'tx_t3sbootstrap_margin_size' => '0', 'tx_t3sbootstrap_flexbox_columns' => '', 'tx_t3sbootstrap_flexbox_prefix' => '', 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_extra_class' => '', 'tx_t3sbootstrap_bgcolor' => '', 'tx_t3sbootstrap_contextcolor' => '', 'tx_t3sbootstrap_textcolor' => '', 'l10n_source' => 4124, 'l10n_state' => null, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'table_class' => '', 'tx_t3sbootstrap_header_fontawesome' => '', 'tx_t3sbootstrap_inTextImgRowWidth' => '', 'tx_t3sbootstrap_bordercolor' => '', 'tx_t3sbootstrap_image_ratio' => '', 'tx_t3sbootstrap_header_celink' => 0, 'filelink_sorting_direction' => '', 'tx_t3sbootstrap_header_sectionMenu' => '', 'tx_t3sbootstrap_sectionOrder' => '', 'tx_t3sbootstrap_bgopacity' => '0', 'tx_t3sbootstrap_animateCssDelay' => '', 'tx_container_parent' => 0, 'tx_t3sbootstrap_extra_style' => '', 'tx_dce_slug' => '', 'tx_t3sbootstrap_image_orig' => '', 'tx_content_animations_animation' => null, 'tx_content_animations_duration' => 800, 'tx_content_animations_delay' => 0, 'tx_content_animations_offset' => 0, 'tx_content_animations_once' => 1, 'tx_content_animations_mirror' => 0, 'tx_content_animations_easing' => null, 'tx_content_animations_anchor_placement' => null, 'tx_t3sbootstrap_inTextImgColumns' => 0, 'tx_t3sbootstrap_galleryGutters' => 0, '_LOCALIZED_UID' => 4125, 'currentValue_kidjls9dksoje' => 'OneCol', 'configuid' => 3), 'emConfiguration' => object(GeorgRinger\News\Domain\Model\Dto\EmConfiguration), 'pageData' => array('uid' => 255, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 10, 'tstamp' => 1620931016, 'sorting' => 1272, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1519071277, 'cruser_id' => 4, 'hidden' => 0, 'title' => 'News', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'News from TOS Dienste International e.V., our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Welcome to our newsblog at TOS Dienste International e.V. Read about the latest developments in our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1626116885, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 255, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";N;s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/news', 'legacy_overlay_uid' => 218, 'l10n_parent' => 255, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1418, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1), 'news' => object(TYPO3\CMS\Extbase\Persistence\Generic\QueryResult), 'overwriteDemand' => array('categories' => '78'), 'demand' => object(GeorgRinger\News\Domain\Model\Dto\NewsDemand), 'categories' => object(TYPO3\CMS\Extbase\Persistence\Generic\QueryResult), 'tags' => null, 'pagination' => array('currentPage' => 1, 'paginator' => object(TYPO3\CMS\Extbase\Pagination\QueryResultPaginator), 'pagination' => object(TYPO3\CMS\Core\Pagination\SimplePagination))), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/News_action_list_c2b910b499edf8a044bb0bc4f95ff36c63f586d6.php line 1952
$arguments14['debug'] = true;
$arguments14['section'] = 'Cards';
$arguments14['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output13 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments14, $renderChildrenClosure15, $renderingContext);

$output13 .= '
      ';
return $output13;
at News_action_list_c2b910b499edf8a044bb0bc4f95ff36c63f586d6->{closure}()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/News_action_list_c2b910b499edf8a044bb0bc4f95ff36c63f586d6.php line 2128
      ';
return $output17;
};

$output10 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments11, $renderChildrenClosure12, $renderingContext);

$output10 .= '
    ';
return $output10;
at News_action_list_c2b910b499edf8a044bb0bc4f95ff36c63f586d6->{closure}()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => false, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/News_action_list_c2b910b499edf8a044bb0bc4f95ff36c63f586d6.php line 2135
    ';
return $output10;
};

$output3 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments4, $renderChildrenClosure5, $renderingContext);

$output3 .= '
  ';
return $output3;
at News_action_list_c2b910b499edf8a044bb0bc4f95ff36c63f586d6->{closure}()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/News_action_list_c2b910b499edf8a044bb0bc4f95ff36c63f586d6.php line 2169
  ';
return $output170;
};

$output0 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '
 <!--TYPO3SEARCH_begin-->
';
at News_action_list_c2b910b499edf8a044bb0bc4f95ff36c63f586d6->section_040f06fd774092478d450774f5ba30c5da78acc8(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 260
                    );
                }
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('content', array(), false)
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 143
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => 'content', 'partial' => null, 'delegate' => null, 'renderable' => null, 'arguments' => array(), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/layout_General_html_132cec3321aa0322419bec858f218093753796a3.php line 61
$arguments1['contentAs'] = NULL;
$arguments1['debug'] = true;
$arguments1['section'] = 'content';

$output0 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '
</div>
';
at layout_General_html_132cec3321aa0322419bec858f218093753796a3->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 201
            } catch (PassthroughSourceException $error) {
                return $error->getSource();
            }
            $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedLayout->render($this->baseRenderingContext);
            $this->stopRendering();
        }

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 504
            $actionResult = $this->{$this->errorMethodName}();
        }

        if ($actionResult === null && $this->view instanceof ViewInterface) {
            $this->response->appendContent($this->view->render());
        } elseif (is_string($actionResult) && $actionResult !== '') {
            $this->response->appendContent($actionResult);
        } elseif (is_object($actionResult) && method_exists($actionResult, '__toString')) {
            $this->response->appendContent((string)$actionResult);
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->callActionMethod()
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 426
        $this->view = $this->resolveView();
        if ($this->view !== null) {
            $this->initializeView($this->view);
        }
        $this->callActionMethod();
        $this->renderAssetsForRequest($request);
    }

    /**
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 89
                throw new InfiniteLoopException('Could not ultimately dispatch the request after ' . $dispatchLoopCount . ' iterations. Most probably, a @' . IgnoreValidation::class . ' annotation is missing on re-displaying a form with validation errors.', 1217839467);
            }
            $controller = $this->resolveController($request);
            try {
                $controller->processRequest($request, $response);
            } catch (StopActionException $ignoredException) {
            }
        }

at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 66
        }

        /** @var \TYPO3\CMS\Extbase\Mvc\ResponseInterface $response */
        $response = $this->objectManager->get(Response::class);
        $this->dispatcher->dispatch($request, $response);
        return $response;
    }

    /**
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest()
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 183
    protected function handleRequest(): string
    {
        $requestHandler = $this->requestHandlerResolver->resolveRequestHandler();

        $response = $requestHandler->handleRequest();
        // If response is NULL after handling the request we need to stop
        // This happens for instance, when a USER object was converted to a USER_INT
        // @see TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler::handleRequest()
        if ($response === null) {
at TYPO3\CMS\Extbase\Core\Bootstrap->handleRequest()
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 173
     */
    public function run(string $content, array $configuration): string
    {
        $this->initialize($configuration);
        return $this->handleRequest();
    }

    /**
     * @return string
at TYPO3\CMS\Extbase\Core\Bootstrap->run('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'))
at call_user_func_array(array(object(TYPO3\CMS\Extbase\Core\Bootstrap), 'run'), array('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1')))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5690
                if (is_object($classObj) && method_exists($classObj, $parts[1]) && is_callable($callable)) {
                    $classObj->cObj = $this;
                    $content = call_user_func_array($callable, [
                        $content,
                        $conf
                    ]);
                } else {
                    $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', 3);
                }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction('TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), '')
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 43
        if ($this->cObj->getUserObjectType() === false) {
            // Come here only if we are not called from $TSFE->processNonCacheableContentPartsAndSubstituteContentMarkers()!
            $this->cObj->setUserObjectType(ContentObjectRenderer::OBJECTTYPE_USER);
        }
        $tempContent = $this->cObj->callUserFunction($conf['userFunc'], $conf, '');
        if ($this->cObj->doConvertToUserIntObject) {
            $this->cObj->doConvertToUserIntObject = false;
            $content = $this->cObj->cObjGetSingle('USER_INT', $conf);
        } else {
at TYPO3\CMS\Frontend\ContentObject\UserContentObject->render(array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 828
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 742
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'tt_content.list.20.news_pi1')
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 193
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 't3sbootstrap_pi1' => 'USER', 't3sbootstrap_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'T3sbootstrap', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'nsyoutube_youtube' => 'USER', 'nsyoutube_youtube.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'NsYoutube', 'pluginName' => 'Youtube'), 'tostv_tostv' => 'USER', 'tostv_tostv.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Tostv', 'pluginName' => 'Tostv')), 'tt_content.list.20.news_pi1', 'news_pi1')
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 170
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('header_position' => '', 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'uid' => 4124, 'pid' => 255, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 1542, 'tstamp' => 1626116885, 'crdate' => 1519071277, 'cruser_id' => 4, 'editlock' => 0, 'hidden' => 0, 'sorting' => 5632, 'CType' => 'list', 'header' => '', 'rowDescription' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '0', 'list_type' => 'news_pi1', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 1, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.orderBy"> <value index="vDEF"></value> </field> <field index="settings.orderDirection"> <value index="vDEF"></value> </field> <field index="settings.categoryConjunction"> <value index="vDEF">or</value> </field> <field index="settings.categories"> <value index="vDEF">4</value> </field> <field index="settings.includeSubCategories"> <value index="vDEF">1</value> </field> <field index="settings.archiveRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestrictionHigh"> <value index="vDEF"></value> </field> <field index="settings.topNewsRestriction"> <value index="vDEF"></value> </field> <field index="settings.startingpoint"> <value index="vDEF">243</value> </field> <field index="settings.recursive"> <value index="vDEF"></value> </field> <field index="switchableControllerActions"> <value index="vDEF">News-&gt;list;News-&gt;detail</value> </field> </language> </sheet> <sheet index="additional"> <language index="lDEF"> <field index="settings.detailPid"> <value index="vDEF">256</value> </field> <field index="settings.listPid"> <value index="vDEF">255</value> </field> <field index="settings.backPid"> <value index="vDEF">255</value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.offset"> <value index="vDEF"></value> </field> <field index="settings.tags"> <value index="vDEF"></value> </field> <field index="settings.hidePagination"> <value index="vDEF">0</value> </field> <field index="settings.list.paginate.itemsPerPage"> <value index="vDEF">12</value> </field> <field index="settings.topNewsFirst"> <value index="vDEF">0</value> </field> <field index="settings.excludeAlreadyDisplayedNews"> <value index="vDEF">0</value> </field> <field index="settings.disableOverrideDemand"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="template"> <language index="lDEF"> <field index="settings.media.maxWidth"> <value index="vDEF"></value> </field> <field index="settings.media.maxHeight"> <value index="vDEF"></value> </field> <field index="settings.cropMaxCharacters"> <value index="vDEF"></value> </field> <field index="settings.templateLayout"> <value index="vDEF">73</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 4124, 'l18n_diffsource' => 'a:42:{s:5:"CType";s:4:"list";s:6:"colPos";i:0;s:16:"sys_language_uid";i:0;s:6:"header";s:0:"";s:9:"subheader";s:0:"";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:13:"header_layout";s:1:"0";s:31:"tx_t3sbootstrap_header_position";s:0:"";s:4:"date";i:0;s:11:"header_link";s:0:"";s:14:"rowDescription";s:0:"";s:9:"list_type";s:8:"news_pi1";s:11:"pi_flexform";s:4011:"<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.orderBy"> <value index="vDEF">datetime</value> </field> <field index="settings.orderDirection"> <value index="vDEF">desc</value> </field> <field index="settings.categoryConjunction"> <value index="vDEF">or</value> </field> <field index="settings.categories"> <value index="vDEF">4</value> </field> <field index="settings.includeSubCategories"> <value index="vDEF">1</value> </field> <field index="settings.archiveRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestrictionHigh"> <value index="vDEF"></value> </field> <field index="settings.topNewsRestriction"> <value index="vDEF"></value> </field> <field index="settings.startingpoint"> <value index="vDEF">243</value> </field> <field index="settings.recursive"> <value index="vDEF"></value> </field> <field index="switchableControllerActions"> <value index="vDEF">News-&gt;list;News-&gt;detail</value> </field> </language> </sheet> <sheet index="additional"> <language index="lDEF"> <field index="settings.detailPid"> <value index="vDEF">256</value> </field> <field index="settings.listPid"> <value index="vDEF">255</value> </field> <field index="settings.backPid"> <value index="vDEF">255</value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.offset"> <value index="vDEF"></value> </field> <field index="settings.tags"> <value index="vDEF"></value> </field> <field index="settings.hidePagination"> <value index="vDEF">0</value> </field> <field index="settings.list.paginate.itemsPerPage"> <value index="vDEF">12</value> </field> <field index="settings.topNewsFirst"> <value index="vDEF">0</value> </field> <field index="settings.excludeAlreadyDisplayedNews"> <value index="vDEF">0</value> </field> <field index="settings.disableOverrideDemand"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="template"> <language index="lDEF"> <field index="settings.media.maxWidth"> <value index="vDEF"></value> </field> <field index="settings.media.maxHeight"> <value index="vDEF"></value> </field> <field index="settings.cropMaxCharacters"> <value index="vDEF"></value> </field> <field index="settings.templateLayout"> <value index="vDEF">73</value> </field> </language> </sheet> </data></T3FlexForms>";s:6:"layout";i:0;s:12:"sectionIndex";i:1;s:6:"hidden";i:0;s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"fe_group";s:0:"";s:8:"editlock";i:0;s:10:"categories";i:0;s:25:"tx_gridelements_container";s:1:"0";s:24:"tx_t3sbootstrap_flexform";s:2081:"<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="frame"> <value index="vDEF">0</value> </field> <field index="hiddenXs"> <value index="vDEF">0</value> </field> <field index="hiddenSm"> <value index="vDEF">0</value> </field> <field index="hiddenMd"> <value index="vDEF">0</value> </field> <field index="hiddenLg"> <value index="vDEF">0</value> </field> <field index="hiddenPrint"> <value index="vDEF">0</value> </field> <field index="rulerBefore"> <value index="vDEF">0</value> </field> <field index="rulerAfter"> <value index="vDEF">0</value> </field> <field index="indent"> <value index="vDEF">0</value> </field> <field index="topMargin"> <value index="vDEF">0</value> </field> <field index="bottomMargin"> <value index="vDEF">0</value> </field> <field index="containerOverride"> <value index="vDEF">0</value> </field> <field index="extraClass"> <value index="vDEF"></value> </field> <field index="hidden"> <value index="vDEF">0</value> </field> <field index="float"> <value index="vDEF">0</value> </field> <field index="border"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>";s:11:"l18n_parent";i:0;s:19:"tx_container_parent";i:0;s:15:"header_position";s:0:"";s:29:"tx_t3sbootstrap_header_celink";i:0;s:30:"tx_t3sbootstrap_header_display";s:0:"";s:28:"tx_t3sbootstrap_header_class";s:0:"";s:34:"tx_t3sbootstrap_header_fontawesome";s:0:"";s:11:"frame_class";s:7:"default";s:29:"tx_t3sbootstrap_padding_sides";s:0:"";s:28:"tx_t3sbootstrap_padding_size";s:1:"0";s:28:"tx_t3sbootstrap_margin_sides";s:0:"";s:27:"tx_t3sbootstrap_margin_size";s:1:"0";s:27:"tx_t3sbootstrap_extra_class";s:0:"";s:25:"tx_t3sbootstrap_container";s:9:"container";s:28:"tx_t3sbootstrap_contextcolor";s:0:"";s:23:"tx_t3sbootstrap_bgcolor";s:0:"";s:25:"tx_t3sbootstrap_bgopacity";s:1:"0";s:25:"tx_t3sbootstrap_textcolor";s:0:"";s:34:"tx_t3sbootstrap_header_sectionMenu";s:0:"";}', 'selected_categories' => '', 'category_field' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'categories' => 0, 'tx_dce_dce' => 0, 'tx_dce_index' => null, 'tx_dce_new_container' => 0, 'tx_t3sbootstrap_header_position' => '', 'tx_t3sbootstrap_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="frame"> <value index="vDEF">0</value> </field> <field index="hiddenXs"> <value index="vDEF">0</value> </field> <field index="hiddenSm"> <value index="vDEF">0</value> </field> <field index="hiddenMd"> <value index="vDEF">0</value> </field> <field index="hiddenLg"> <value index="vDEF">0</value> </field> <field index="hiddenPrint"> <value index="vDEF">0</value> </field> <field index="rulerBefore"> <value index="vDEF">0</value> </field> <field index="rulerAfter"> <value index="vDEF">0</value> </field> <field index="indent"> <value index="vDEF">0</value> </field> <field index="topMargin"> <value index="vDEF">0</value> </field> <field index="bottomMargin"> <value index="vDEF">0</value> </field> <field index="containerOverride"> <value index="vDEF">0</value> </field> <field index="extraClass"> <value index="vDEF"></value> </field> <field index="hidden"> <value index="vDEF">0</value> </field> <field index="float"> <value index="vDEF">0</value> </field> <field index="border"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>', 'tx_t3sbootstrap_animateCss' => '', 'tx_t3sbootstrap_animateCssRepeat' => 1, 'tx_t3sbootstrap_animateCssDuration' => '0', 'tx_news_related_news' => 0, 'tx_t3sbootstrap_header_display' => '', 'tx_t3sbootstrap_header_class' => '', 'tx_t3sbootstrap_padding_sides' => '', 'tx_t3sbootstrap_padding_size' => '0', 'tx_t3sbootstrap_margin_sides' => '', 'tx_t3sbootstrap_margin_size' => '0', 'tx_t3sbootstrap_flexbox_columns' => '', 'tx_t3sbootstrap_flexbox_prefix' => '', 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_extra_class' => '', 'tx_t3sbootstrap_bgcolor' => '', 'tx_t3sbootstrap_contextcolor' => '', 'tx_t3sbootstrap_textcolor' => '', 'l10n_source' => 4124, 'l10n_state' => null, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'table_class' => '', 'tx_t3sbootstrap_header_fontawesome' => '', 'tx_t3sbootstrap_inTextImgRowWidth' => '', 'tx_t3sbootstrap_bordercolor' => '', 'tx_t3sbootstrap_image_ratio' => '', 'tx_t3sbootstrap_header_celink' => 0, 'filelink_sorting_direction' => '', 'tx_t3sbootstrap_header_sectionMenu' => '', 'tx_t3sbootstrap_sectionOrder' => '', 'tx_t3sbootstrap_bgopacity' => '0', 'tx_t3sbootstrap_animateCssDelay' => '', 'tx_container_parent' => 0, 'tx_t3sbootstrap_extra_style' => '', 'tx_dce_slug' => '', 'tx_t3sbootstrap_image_orig' => '', 'tx_content_animations_animation' => null, 'tx_content_animations_duration' => 800, 'tx_content_animations_delay' => 0, 'tx_content_animations_offset' => 0, 'tx_content_animations_once' => 1, 'tx_content_animations_mirror' => 0, 'tx_content_animations_easing' => null, 'tx_content_animations_anchor_placement' => null, 'tx_t3sbootstrap_inTextImgColumns' => 0, 'tx_t3sbootstrap_galleryGutters' => 0, '_LOCALIZED_UID' => 4125, 'currentValue_kidjls9dksoje' => 'OneCol', 'configuid' => 3), 'typoscriptObjectPath' => 'tt_content.list.20.news_pi1', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/Standard_action_list_e70bdfc96dc4679e1c08db1bdeedc899c0171d91.php line 66
$array11 = array (
);$arguments7['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array11);
$arguments7['table'] = 'tt_content';
$renderChildrenClosure8 = ($arguments7['data'] !== null) ? function() use ($arguments7) { return $arguments7['data']; } : $renderChildrenClosure8;
$output6 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments7, $renderChildrenClosure8, $renderingContext);

$output6 .= '
    ';
return $output6;
at Standard_action_list_e70bdfc96dc4679e1c08db1bdeedc899c0171d91->{closure}()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure)), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/Standard_action_list_e70bdfc96dc4679e1c08db1bdeedc899c0171d91.php line 91
     $renderingContext
    );
$arguments1['__thenClosure'] = $renderChildrenClosure2;

$output0 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '

';
at Standard_action_list_e70bdfc96dc4679e1c08db1bdeedc899c0171d91->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 260
                    );
                }
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('Main', array('settings' => array('defaultHeaderType' => '2', 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'media' => array('lazyLoading' => 'lazy', 'popup' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '0'), '_typoScriptNodeValue' => '0'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('stdWrap' => array('cObject' => array(array('data' => 'file:current:description // file:current:title', 'wrap' => 'data-caption="|"', 'required' => '1', 'stdWrap' => array('htmlSpecialChars' => '1'), '_typoScriptNodeValue' => 'TEXT'), array('data' => 'file:current:description // file:current:title', 'wrap' => 'title="|"', 'required' => '1', 'stdWrap' => array('htmlSpecialChars' => '1'), '_typoScriptNodeValue' => 'TEXT'), '_typoScriptNodeValue' => 'COA'))))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')), 'config' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'be_layout' => 'OneCol', 'data' => array('header_position' => '', 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'uid' => 4124, 'pid' => 255, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 1542, 'tstamp' => 1626116885, 'crdate' => 1519071277, 'cruser_id' => 4, 'editlock' => 0, 'hidden' => 0, 'sorting' => 5632, 'CType' => 'list', 'header' => '', 'rowDescription' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '0', 'list_type' => 'news_pi1', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 1, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.orderBy"> <value index="vDEF"></value> </field> <field index="settings.orderDirection"> <value index="vDEF"></value> </field> <field index="settings.categoryConjunction"> <value index="vDEF">or</value> </field> <field index="settings.categories"> <value index="vDEF">4</value> </field> <field index="settings.includeSubCategories"> <value index="vDEF">1</value> </field> <field index="settings.archiveRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestrictionHigh"> <value index="vDEF"></value> </field> <field index="settings.topNewsRestriction"> <value index="vDEF"></value> </field> <field index="settings.startingpoint"> <value index="vDEF">243</value> </field> <field index="settings.recursive"> <value index="vDEF"></value> </field> <field index="switchableControllerActions"> <value index="vDEF">News-&gt;list;News-&gt;detail</value> </field> </language> </sheet> <sheet index="additional"> <language index="lDEF"> <field index="settings.detailPid"> <value index="vDEF">256</value> </field> <field index="settings.listPid"> <value index="vDEF">255</value> </field> <field index="settings.backPid"> <value index="vDEF">255</value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.offset"> <value index="vDEF"></value> </field> <field index="settings.tags"> <value index="vDEF"></value> </field> <field index="settings.hidePagination"> <value index="vDEF">0</value> </field> <field index="settings.list.paginate.itemsPerPage"> <value index="vDEF">12</value> </field> <field index="settings.topNewsFirst"> <value index="vDEF">0</value> </field> <field index="settings.excludeAlreadyDisplayedNews"> <value index="vDEF">0</value> </field> <field index="settings.disableOverrideDemand"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="template"> <language index="lDEF"> <field index="settings.media.maxWidth"> <value index="vDEF"></value> </field> <field index="settings.media.maxHeight"> <value index="vDEF"></value> </field> <field index="settings.cropMaxCharacters"> <value index="vDEF"></value> </field> <field index="settings.templateLayout"> <value index="vDEF">73</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 4124, 'l18n_diffsource' => 'a:42:{s:5:"CType";s:4:"list";s:6:"colPos";i:0;s:16:"sys_language_uid";i:0;s:6:"header";s:0:"";s:9:"subheader";s:0:"";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:13:"header_layout";s:1:"0";s:31:"tx_t3sbootstrap_header_position";s:0:"";s:4:"date";i:0;s:11:"header_link";s:0:"";s:14:"rowDescription";s:0:"";s:9:"list_type";s:8:"news_pi1";s:11:"pi_flexform";s:4011:"<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.orderBy"> <value index="vDEF">datetime</value> </field> <field index="settings.orderDirection"> <value index="vDEF">desc</value> </field> <field index="settings.categoryConjunction"> <value index="vDEF">or</value> </field> <field index="settings.categories"> <value index="vDEF">4</value> </field> <field index="settings.includeSubCategories"> <value index="vDEF">1</value> </field> <field index="settings.archiveRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestrictionHigh"> <value index="vDEF"></value> </field> <field index="settings.topNewsRestriction"> <value index="vDEF"></value> </field> <field index="settings.startingpoint"> <value index="vDEF">243</value> </field> <field index="settings.recursive"> <value index="vDEF"></value> </field> <field index="switchableControllerActions"> <value index="vDEF">News-&gt;list;News-&gt;detail</value> </field> </language> </sheet> <sheet index="additional"> <language index="lDEF"> <field index="settings.detailPid"> <value index="vDEF">256</value> </field> <field index="settings.listPid"> <value index="vDEF">255</value> </field> <field index="settings.backPid"> <value index="vDEF">255</value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.offset"> <value index="vDEF"></value> </field> <field index="settings.tags"> <value index="vDEF"></value> </field> <field index="settings.hidePagination"> <value index="vDEF">0</value> </field> <field index="settings.list.paginate.itemsPerPage"> <value index="vDEF">12</value> </field> <field index="settings.topNewsFirst"> <value index="vDEF">0</value> </field> <field index="settings.excludeAlreadyDisplayedNews"> <value index="vDEF">0</value> </field> <field index="settings.disableOverrideDemand"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="template"> <language index="lDEF"> <field index="settings.media.maxWidth"> <value index="vDEF"></value> </field> <field index="settings.media.maxHeight"> <value index="vDEF"></value> </field> <field index="settings.cropMaxCharacters"> <value index="vDEF"></value> </field> <field index="settings.templateLayout"> <value index="vDEF">73</value> </field> </language> </sheet> </data></T3FlexForms>";s:6:"layout";i:0;s:12:"sectionIndex";i:1;s:6:"hidden";i:0;s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"fe_group";s:0:"";s:8:"editlock";i:0;s:10:"categories";i:0;s:25:"tx_gridelements_container";s:1:"0";s:24:"tx_t3sbootstrap_flexform";s:2081:"<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="frame"> <value index="vDEF">0</value> </field> <field index="hiddenXs"> <value index="vDEF">0</value> </field> <field index="hiddenSm"> <value index="vDEF">0</value> </field> <field index="hiddenMd"> <value index="vDEF">0</value> </field> <field index="hiddenLg"> <value index="vDEF">0</value> </field> <field index="hiddenPrint"> <value index="vDEF">0</value> </field> <field index="rulerBefore"> <value index="vDEF">0</value> </field> <field index="rulerAfter"> <value index="vDEF">0</value> </field> <field index="indent"> <value index="vDEF">0</value> </field> <field index="topMargin"> <value index="vDEF">0</value> </field> <field index="bottomMargin"> <value index="vDEF">0</value> </field> <field index="containerOverride"> <value index="vDEF">0</value> </field> <field index="extraClass"> <value index="vDEF"></value> </field> <field index="hidden"> <value index="vDEF">0</value> </field> <field index="float"> <value index="vDEF">0</value> </field> <field index="border"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>";s:11:"l18n_parent";i:0;s:19:"tx_container_parent";i:0;s:15:"header_position";s:0:"";s:29:"tx_t3sbootstrap_header_celink";i:0;s:30:"tx_t3sbootstrap_header_display";s:0:"";s:28:"tx_t3sbootstrap_header_class";s:0:"";s:34:"tx_t3sbootstrap_header_fontawesome";s:0:"";s:11:"frame_class";s:7:"default";s:29:"tx_t3sbootstrap_padding_sides";s:0:"";s:28:"tx_t3sbootstrap_padding_size";s:1:"0";s:28:"tx_t3sbootstrap_margin_sides";s:0:"";s:27:"tx_t3sbootstrap_margin_size";s:1:"0";s:27:"tx_t3sbootstrap_extra_class";s:0:"";s:25:"tx_t3sbootstrap_container";s:9:"container";s:28:"tx_t3sbootstrap_contextcolor";s:0:"";s:23:"tx_t3sbootstrap_bgcolor";s:0:"";s:25:"tx_t3sbootstrap_bgopacity";s:1:"0";s:25:"tx_t3sbootstrap_textcolor";s:0:"";s:34:"tx_t3sbootstrap_header_sectionMenu";s:0:"";}', 'selected_categories' => '', 'category_field' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'categories' => 0, 'tx_dce_dce' => 0, 'tx_dce_index' => null, 'tx_dce_new_container' => 0, 'tx_t3sbootstrap_header_position' => '', 'tx_t3sbootstrap_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="frame"> <value index="vDEF">0</value> </field> <field index="hiddenXs"> <value index="vDEF">0</value> </field> <field index="hiddenSm"> <value index="vDEF">0</value> </field> <field index="hiddenMd"> <value index="vDEF">0</value> </field> <field index="hiddenLg"> <value index="vDEF">0</value> </field> <field index="hiddenPrint"> <value index="vDEF">0</value> </field> <field index="rulerBefore"> <value index="vDEF">0</value> </field> <field index="rulerAfter"> <value index="vDEF">0</value> </field> <field index="indent"> <value index="vDEF">0</value> </field> <field index="topMargin"> <value index="vDEF">0</value> </field> <field index="bottomMargin"> <value index="vDEF">0</value> </field> <field index="containerOverride"> <value index="vDEF">0</value> </field> <field index="extraClass"> <value index="vDEF"></value> </field> <field index="hidden"> <value index="vDEF">0</value> </field> <field index="float"> <value index="vDEF">0</value> </field> <field index="border"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>', 'tx_t3sbootstrap_animateCss' => '', 'tx_t3sbootstrap_animateCssRepeat' => 1, 'tx_t3sbootstrap_animateCssDuration' => '0', 'tx_news_related_news' => 0, 'tx_t3sbootstrap_header_display' => '', 'tx_t3sbootstrap_header_class' => '', 'tx_t3sbootstrap_padding_sides' => '', 'tx_t3sbootstrap_padding_size' => '0', 'tx_t3sbootstrap_margin_sides' => '', 'tx_t3sbootstrap_margin_size' => '0', 'tx_t3sbootstrap_flexbox_columns' => '', 'tx_t3sbootstrap_flexbox_prefix' => '', 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_extra_class' => '', 'tx_t3sbootstrap_bgcolor' => '', 'tx_t3sbootstrap_contextcolor' => '', 'tx_t3sbootstrap_textcolor' => '', 'l10n_source' => 4124, 'l10n_state' => null, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'table_class' => '', 'tx_t3sbootstrap_header_fontawesome' => '', 'tx_t3sbootstrap_inTextImgRowWidth' => '', 'tx_t3sbootstrap_bordercolor' => '', 'tx_t3sbootstrap_image_ratio' => '', 'tx_t3sbootstrap_header_celink' => 0, 'filelink_sorting_direction' => '', 'tx_t3sbootstrap_header_sectionMenu' => '', 'tx_t3sbootstrap_sectionOrder' => '', 'tx_t3sbootstrap_bgopacity' => '0', 'tx_t3sbootstrap_animateCssDelay' => '', 'tx_container_parent' => 0, 'tx_t3sbootstrap_extra_style' => '', 'tx_dce_slug' => '', 'tx_t3sbootstrap_image_orig' => '', 'tx_content_animations_animation' => null, 'tx_content_animations_duration' => 800, 'tx_content_animations_delay' => 0, 'tx_content_animations_offset' => 0, 'tx_content_animations_once' => 1, 'tx_content_animations_mirror' => 0, 'tx_content_animations_easing' => null, 'tx_content_animations_anchor_placement' => null, 'tx_t3sbootstrap_inTextImgColumns' => 0, 'tx_t3sbootstrap_galleryGutters' => 0, '_LOCALIZED_UID' => 4125, 'currentValue_kidjls9dksoje' => 'OneCol', 'configuid' => 3), 'current' => 'OneCol', 'dataAnimate' => false, 'isAnimateCss' => false, 'animateCssRepeat' => false, 'class' => '', 'header' => array('class' => '', 'hClass' => '', 'hColorVar' => '', 'hLine' => '', 'default' => '2'), 'style' => '', 'isTxContainer' => false, 'codesnippet' => false, 'containerError' => false, 'containerPre' => '<div class="container">', 'containerPost' => '</div>', 'container' => 'container', 'typoLinkParts' => array('url' => '', 'target' => '', 'class' => '', 'title' => '', 'additionalParams' => '')), false)
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 143
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => 'Main', 'partial' => null, 'delegate' => null, 'renderable' => null, 'arguments' => array('settings' => array('defaultHeaderType' => '2', 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'media' => array('lazyLoading' => 'lazy', 'popup' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '0'), '_typoScriptNodeValue' => '0'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('stdWrap' => array('cObject' => array(array('data' => 'file:current:description // file:current:title', 'wrap' => 'data-caption="|"', 'required' => '1', 'stdWrap' => array('htmlSpecialChars' => '1'), '_typoScriptNodeValue' => 'TEXT'), array('data' => 'file:current:description // file:current:title', 'wrap' => 'title="|"', 'required' => '1', 'stdWrap' => array('htmlSpecialChars' => '1'), '_typoScriptNodeValue' => 'TEXT'), '_typoScriptNodeValue' => 'COA'))))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')), 'config' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'be_layout' => 'OneCol', 'data' => array('header_position' => '', 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'uid' => 4124, 'pid' => 255, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 1542, 'tstamp' => 1626116885, 'crdate' => 1519071277, 'cruser_id' => 4, 'editlock' => 0, 'hidden' => 0, 'sorting' => 5632, 'CType' => 'list', 'header' => '', 'rowDescription' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '0', 'list_type' => 'news_pi1', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 1, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.orderBy"> <value index="vDEF"></value> </field> <field index="settings.orderDirection"> <value index="vDEF"></value> </field> <field index="settings.categoryConjunction"> <value index="vDEF">or</value> </field> <field index="settings.categories"> <value index="vDEF">4</value> </field> <field index="settings.includeSubCategories"> <value index="vDEF">1</value> </field> <field index="settings.archiveRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestrictionHigh"> <value index="vDEF"></value> </field> <field index="settings.topNewsRestriction"> <value index="vDEF"></value> </field> <field index="settings.startingpoint"> <value index="vDEF">243</value> </field> <field index="settings.recursive"> <value index="vDEF"></value> </field> <field index="switchableControllerActions"> <value index="vDEF">News-&gt;list;News-&gt;detail</value> </field> </language> </sheet> <sheet index="additional"> <language index="lDEF"> <field index="settings.detailPid"> <value index="vDEF">256</value> </field> <field index="settings.listPid"> <value index="vDEF">255</value> </field> <field index="settings.backPid"> <value index="vDEF">255</value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.offset"> <value index="vDEF"></value> </field> <field index="settings.tags"> <value index="vDEF"></value> </field> <field index="settings.hidePagination"> <value index="vDEF">0</value> </field> <field index="settings.list.paginate.itemsPerPage"> <value index="vDEF">12</value> </field> <field index="settings.topNewsFirst"> <value index="vDEF">0</value> </field> <field index="settings.excludeAlreadyDisplayedNews"> <value index="vDEF">0</value> </field> <field index="settings.disableOverrideDemand"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="template"> <language index="lDEF"> <field index="settings.media.maxWidth"> <value index="vDEF"></value> </field> <field index="settings.media.maxHeight"> <value index="vDEF"></value> </field> <field index="settings.cropMaxCharacters"> <value index="vDEF"></value> </field> <field index="settings.templateLayout"> <value index="vDEF">73</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 4124, 'l18n_diffsource' => 'a:42:{s:5:"CType";s:4:"list";s:6:"colPos";i:0;s:16:"sys_language_uid";i:0;s:6:"header";s:0:"";s:9:"subheader";s:0:"";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:13:"header_layout";s:1:"0";s:31:"tx_t3sbootstrap_header_position";s:0:"";s:4:"date";i:0;s:11:"header_link";s:0:"";s:14:"rowDescription";s:0:"";s:9:"list_type";s:8:"news_pi1";s:11:"pi_flexform";s:4011:"<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.orderBy"> <value index="vDEF">datetime</value> </field> <field index="settings.orderDirection"> <value index="vDEF">desc</value> </field> <field index="settings.categoryConjunction"> <value index="vDEF">or</value> </field> <field index="settings.categories"> <value index="vDEF">4</value> </field> <field index="settings.includeSubCategories"> <value index="vDEF">1</value> </field> <field index="settings.archiveRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestrictionHigh"> <value index="vDEF"></value> </field> <field index="settings.topNewsRestriction"> <value index="vDEF"></value> </field> <field index="settings.startingpoint"> <value index="vDEF">243</value> </field> <field index="settings.recursive"> <value index="vDEF"></value> </field> <field index="switchableControllerActions"> <value index="vDEF">News-&gt;list;News-&gt;detail</value> </field> </language> </sheet> <sheet index="additional"> <language index="lDEF"> <field index="settings.detailPid"> <value index="vDEF">256</value> </field> <field index="settings.listPid"> <value index="vDEF">255</value> </field> <field index="settings.backPid"> <value index="vDEF">255</value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.offset"> <value index="vDEF"></value> </field> <field index="settings.tags"> <value index="vDEF"></value> </field> <field index="settings.hidePagination"> <value index="vDEF">0</value> </field> <field index="settings.list.paginate.itemsPerPage"> <value index="vDEF">12</value> </field> <field index="settings.topNewsFirst"> <value index="vDEF">0</value> </field> <field index="settings.excludeAlreadyDisplayedNews"> <value index="vDEF">0</value> </field> <field index="settings.disableOverrideDemand"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="template"> <language index="lDEF"> <field index="settings.media.maxWidth"> <value index="vDEF"></value> </field> <field index="settings.media.maxHeight"> <value index="vDEF"></value> </field> <field index="settings.cropMaxCharacters"> <value index="vDEF"></value> </field> <field index="settings.templateLayout"> <value index="vDEF">73</value> </field> </language> </sheet> </data></T3FlexForms>";s:6:"layout";i:0;s:12:"sectionIndex";i:1;s:6:"hidden";i:0;s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"fe_group";s:0:"";s:8:"editlock";i:0;s:10:"categories";i:0;s:25:"tx_gridelements_container";s:1:"0";s:24:"tx_t3sbootstrap_flexform";s:2081:"<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="frame"> <value index="vDEF">0</value> </field> <field index="hiddenXs"> <value index="vDEF">0</value> </field> <field index="hiddenSm"> <value index="vDEF">0</value> </field> <field index="hiddenMd"> <value index="vDEF">0</value> </field> <field index="hiddenLg"> <value index="vDEF">0</value> </field> <field index="hiddenPrint"> <value index="vDEF">0</value> </field> <field index="rulerBefore"> <value index="vDEF">0</value> </field> <field index="rulerAfter"> <value index="vDEF">0</value> </field> <field index="indent"> <value index="vDEF">0</value> </field> <field index="topMargin"> <value index="vDEF">0</value> </field> <field index="bottomMargin"> <value index="vDEF">0</value> </field> <field index="containerOverride"> <value index="vDEF">0</value> </field> <field index="extraClass"> <value index="vDEF"></value> </field> <field index="hidden"> <value index="vDEF">0</value> </field> <field index="float"> <value index="vDEF">0</value> </field> <field index="border"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>";s:11:"l18n_parent";i:0;s:19:"tx_container_parent";i:0;s:15:"header_position";s:0:"";s:29:"tx_t3sbootstrap_header_celink";i:0;s:30:"tx_t3sbootstrap_header_display";s:0:"";s:28:"tx_t3sbootstrap_header_class";s:0:"";s:34:"tx_t3sbootstrap_header_fontawesome";s:0:"";s:11:"frame_class";s:7:"default";s:29:"tx_t3sbootstrap_padding_sides";s:0:"";s:28:"tx_t3sbootstrap_padding_size";s:1:"0";s:28:"tx_t3sbootstrap_margin_sides";s:0:"";s:27:"tx_t3sbootstrap_margin_size";s:1:"0";s:27:"tx_t3sbootstrap_extra_class";s:0:"";s:25:"tx_t3sbootstrap_container";s:9:"container";s:28:"tx_t3sbootstrap_contextcolor";s:0:"";s:23:"tx_t3sbootstrap_bgcolor";s:0:"";s:25:"tx_t3sbootstrap_bgopacity";s:1:"0";s:25:"tx_t3sbootstrap_textcolor";s:0:"";s:34:"tx_t3sbootstrap_header_sectionMenu";s:0:"";}', 'selected_categories' => '', 'category_field' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'categories' => 0, 'tx_dce_dce' => 0, 'tx_dce_index' => null, 'tx_dce_new_container' => 0, 'tx_t3sbootstrap_header_position' => '', 'tx_t3sbootstrap_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="frame"> <value index="vDEF">0</value> </field> <field index="hiddenXs"> <value index="vDEF">0</value> </field> <field index="hiddenSm"> <value index="vDEF">0</value> </field> <field index="hiddenMd"> <value index="vDEF">0</value> </field> <field index="hiddenLg"> <value index="vDEF">0</value> </field> <field index="hiddenPrint"> <value index="vDEF">0</value> </field> <field index="rulerBefore"> <value index="vDEF">0</value> </field> <field index="rulerAfter"> <value index="vDEF">0</value> </field> <field index="indent"> <value index="vDEF">0</value> </field> <field index="topMargin"> <value index="vDEF">0</value> </field> <field index="bottomMargin"> <value index="vDEF">0</value> </field> <field index="containerOverride"> <value index="vDEF">0</value> </field> <field index="extraClass"> <value index="vDEF"></value> </field> <field index="hidden"> <value index="vDEF">0</value> </field> <field index="float"> <value index="vDEF">0</value> </field> <field index="border"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>', 'tx_t3sbootstrap_animateCss' => '', 'tx_t3sbootstrap_animateCssRepeat' => 1, 'tx_t3sbootstrap_animateCssDuration' => '0', 'tx_news_related_news' => 0, 'tx_t3sbootstrap_header_display' => '', 'tx_t3sbootstrap_header_class' => '', 'tx_t3sbootstrap_padding_sides' => '', 'tx_t3sbootstrap_padding_size' => '0', 'tx_t3sbootstrap_margin_sides' => '', 'tx_t3sbootstrap_margin_size' => '0', 'tx_t3sbootstrap_flexbox_columns' => '', 'tx_t3sbootstrap_flexbox_prefix' => '', 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_extra_class' => '', 'tx_t3sbootstrap_bgcolor' => '', 'tx_t3sbootstrap_contextcolor' => '', 'tx_t3sbootstrap_textcolor' => '', 'l10n_source' => 4124, 'l10n_state' => null, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'table_class' => '', 'tx_t3sbootstrap_header_fontawesome' => '', 'tx_t3sbootstrap_inTextImgRowWidth' => '', 'tx_t3sbootstrap_bordercolor' => '', 'tx_t3sbootstrap_image_ratio' => '', 'tx_t3sbootstrap_header_celink' => 0, 'filelink_sorting_direction' => '', 'tx_t3sbootstrap_header_sectionMenu' => '', 'tx_t3sbootstrap_sectionOrder' => '', 'tx_t3sbootstrap_bgopacity' => '0', 'tx_t3sbootstrap_animateCssDelay' => '', 'tx_container_parent' => 0, 'tx_t3sbootstrap_extra_style' => '', 'tx_dce_slug' => '', 'tx_t3sbootstrap_image_orig' => '', 'tx_content_animations_animation' => null, 'tx_content_animations_duration' => 800, 'tx_content_animations_delay' => 0, 'tx_content_animations_offset' => 0, 'tx_content_animations_once' => 1, 'tx_content_animations_mirror' => 0, 'tx_content_animations_easing' => null, 'tx_content_animations_anchor_placement' => null, 'tx_t3sbootstrap_inTextImgColumns' => 0, 'tx_t3sbootstrap_galleryGutters' => 0, '_LOCALIZED_UID' => 4125, 'currentValue_kidjls9dksoje' => 'OneCol', 'configuid' => 3), 'current' => 'OneCol', 'dataAnimate' => false, 'isAnimateCss' => false, 'animateCssRepeat' => false, 'class' => '', 'header' => array('class' => '', 'hClass' => '', 'hColorVar' => '', 'hLine' => '', 'default' => '2'), 'style' => '', 'isTxContainer' => false, 'codesnippet' => false, 'containerError' => false, 'containerPre' => '<div class="container">', 'containerPost' => '</div>', 'container' => 'container', 'typoLinkParts' => array('url' => '', 'target' => '', 'class' => '', 'title' => '', 'additionalParams' => '')), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/layout_Default_html_71ac26bafdf8adeef4d9a2eb9c85bc44bb6c0e9c.php line 430
$arguments76['debug'] = true;
$arguments76['section'] = 'Main';
$arguments76['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output19 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments76, $renderChildrenClosure77, $renderingContext);

$output19 .= '
 </div>
';
at layout_Default_html_71ac26bafdf8adeef4d9a2eb9c85bc44bb6c0e9c->{closure}()
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/fluid/Classes/ViewHelpers/Link/TypolinkViewHelper.php line 136
        // expose internal typoLink configuration to Fluid child context
        $variableProvider = $renderingContext->getVariableProvider();
        $variableProvider->add($partsAs, $typoLinkConfiguration);
        // If no link has to be rendered, the inner content will be returned as such
        $content = (string)$renderChildrenClosure();
        // clean up exposed variables
        $variableProvider->remove($partsAs);

        if ($parameter) {
at TYPO3\CMS\Fluid\ViewHelpers\Link\TypolinkViewHelper::renderStatic(array('parameter' => null, 'target' => '', 'class' => 'ce-link', 'title' => '', 'language' => null, 'additionalParams' => '', 'additionalAttributes' => array(), 'useCacheHash' => null, 'addQueryString' => false, 'addQueryStringMethod' => 'GET', 'addQueryStringExclude' => '', 'absolute' => false, 'parts-as' => 'typoLinkParts'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/layout_Default_html_71ac26bafdf8adeef4d9a2eb9c85bc44bb6c0e9c.php line 456
$array18 = array (
);$arguments16['parameter'] = $renderingContext->getVariableProvider()->getByPath('celink', $array18);
$arguments16['class'] = 'ce-link';

$output3 .= TYPO3\CMS\Fluid\ViewHelpers\Link\TypolinkViewHelper::renderStatic($arguments16, $renderChildrenClosure17, $renderingContext);

$output3 .= '
';
// Rendering ViewHelper TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper
at layout_Default_html_71ac26bafdf8adeef4d9a2eb9c85bc44bb6c0e9c->{closure}()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/ViewHelpers/SpacelessViewHelper.php line 55
     * @return string
     */
    public static function renderStatic(array $arguments, \Closure $childClosure, RenderingContextInterface $renderingContext)
    {
        return trim(preg_replace('/\\>\\s+\\</', '><', $childClosure()));
    }
}
at TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic(array(), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/layout_Default_html_71ac26bafdf8adeef4d9a2eb9c85bc44bb6c0e9c.php line 551
return $output3;
};
$arguments1 = array();

$output0 .= TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '

';
at layout_Default_html_71ac26bafdf8adeef4d9a2eb9c85bc44bb6c0e9c->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 201
            } catch (PassthroughSourceException $error) {
                return $error->getSource();
            }
            $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedLayout->render($this->baseRenderingContext);
            $this->stopRendering();
        }

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 358
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 108

        $this->view->assignMultiple($variables);

        $this->renderFluidTemplateAssetsIntoPageRenderer();
        $content = $this->renderFluidView();
        $content = $this->applyStandardWrapToRenderedContent($content, $conf);

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'List', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:dce/Resources/Private/Templates', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 't3sbootstrap_pi1' => 'USER', 't3sbootstrap_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'T3sbootstrap', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'nsyoutube_youtube' => 'USER', 'nsyoutube_youtube.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'NsYoutube', 'pluginName' => 'Youtube'), 'tostv_tostv' => 'USER', 'tostv_tostv.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Tostv', 'pluginName' => 'Tostv'))))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 828
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'List', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:dce/Resources/Private/Templates', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 't3sbootstrap_pi1' => 'USER', 't3sbootstrap_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'T3sbootstrap', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'nsyoutube_youtube' => 'USER', 'nsyoutube_youtube.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'NsYoutube', 'pluginName' => 'Youtube'), 'tostv_tostv' => 'USER', 'tostv_tostv.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Tostv', 'pluginName' => 'Tostv'))))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 742
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:dce/Resources/Private/Templates', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 't3sbootstrap_pi1' => 'USER', 't3sbootstrap_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'T3sbootstrap', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'nsyoutube_youtube' => 'USER', 'nsyoutube_youtube.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'NsYoutube', 'pluginName' => 'Youtube'), 'tostv_tostv' => 'USER', 'tostv_tostv.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Tostv', 'pluginName' => 'Tostv'))), 'lib.contentElement')
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 723
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:dce/Resources/Private/Templates', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 't3sbootstrap_pi1' => 'USER', 't3sbootstrap_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'T3sbootstrap', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'nsyoutube_youtube' => 'USER', 'nsyoutube_youtube.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'NsYoutube', 'pluginName' => 'Youtube'), 'tostv_tostv' => 'USER', 'tostv_tostv.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Tostv', 'pluginName' => 'Tostv'))), 'list')
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 47
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject.' => array('default.' => array('stdWrap.' => array('if.' => array('value' => 'dce_dceuid0', 'isInList.' => array('field' => 'CType'), 'negate' => '1'))))), 'if.' => array('isInList.' => array('field' => 'uid'), 'value' => '{$live},{$live_loggedin},{$live_notloggedin},{$notlive},{$notlive_notloggedin},{$notlive_loggedin},{$only_tdd}', 'value.' => array('insertData' => '1'), 'negate' => '1')), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '5', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '5', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '3')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 't3sbootstrap_pi1' => 'USER', 't3sbootstrap_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'T3sbootstrap', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'nsyoutube_youtube' => 'USER', 'nsyoutube_youtube.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'NsYoutube', 'pluginName' => 'Youtube'), 'tostv_tostv' => 'USER', 'tostv_tostv.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Tostv', 'pluginName' => 'Tostv'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '3')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '3')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'dce_sidebar' => 'USER', 'dce_sidebar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'sidebar'), 'dce_login_salutation2' => 'USER', 'dce_login_salutation2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'login_salutation2'), 'dce_audio' => 'USER', 'dce_audio.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'audio'), 'dce_login_salutation' => 'USER', 'dce_login_salutation.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'login_salutation'), 'dce_youtube' => 'USER', 'dce_youtube.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'youtube'), 'dce_dce_royalslider' => 'USER', 'dce_dce_royalslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dce_royalslider'), 't3sbs_fluidtemplate' => 'COA', 't3sbs_fluidtemplate.' => array('FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'subheader', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'EXT:t3sbootstrap/Resources/Private/Templates/Content/FluidTemplate.html'))))), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'navbar.' => array('image.' => array('defaultPath' => '/typo3conf/ext/t3sbootstrap/Resources/Public/Images/bootstrap-logo-white.svg', 'width' => '30', 'height' => '24', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '3', 'company' => '0', 'homepageUid' => '242', 'pageTitle' => 'jumbotron', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '4', 'navbarBrand' => 'imgText', 'navbarbrandAlignment' => '{$bootstrap.config.navbarbrandAlignment}', 'navbarImage' => '0', 'navbarColor' => 'dark', 'navbarBackground' => 'transparent', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarInnercontainer' => '{$bootstrap.config.navbarInnercontainer}', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'left', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'md', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => '0', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '0', 'breadcrumbFaicon' => '0', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => '0', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '99', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '1', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-white text-light', 'footerPid' => '244', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => 'pt-5', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '2', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '0', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '')))), 't3sbs_button' => '< lib.contentElement', 't3sbs_button.' => array('templateName' => 'Button', 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_card' => '< lib.contentElement', 't3sbs_card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'overrideSmallColumns' => '', 'configuid' => '1'), 'T3SBS\\T3sbootstrap\\DataProcessing\\CardProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_carousel' => '< lib.contentElement', 't3sbs_carousel.' => array('templateName' => 'Carousel', 'settings.' => array('defaultHeaderType' => '3'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_mediaobject' => '< lib.contentElement', 't3sbs_mediaobject.' => array('templateName' => 'Mediaobject', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_gallery' => '< lib.contentElement', 't3sbs_gallery.' => array('templateName' => 'ImageGallery', 'settings.' => array('defaultHeaderType' => '2'), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\BsImageGalleryProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'files', 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_toast' => '< lib.contentElement', 't3sbs_toast.' => array('templateName' => 'Toast', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 'two_columns' => 'FLUIDTEMPLATE', 'two_columns.' => array('templateName' => 'TwoColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '221.' => array('colPos' => '221', 'as' => 'col_221'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '222.' => array('colPos' => '222', 'as' => 'col_222'))), 'three_columns' => 'FLUIDTEMPLATE', 'three_columns.' => array('templateName' => 'ThreeColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '231.' => array('colPos' => '231', 'as' => 'col_231'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '232.' => array('colPos' => '232', 'as' => 'col_232'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '233.' => array('colPos' => '233', 'as' => 'col_233'))), 'four_columns' => 'FLUIDTEMPLATE', 'four_columns.' => array('templateName' => 'FourColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '241', 'as' => 'col_241'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '242', 'as' => 'col_242'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '243', 'as' => 'col_243'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '244', 'as' => 'col_244'))), 'six_columns' => 'FLUIDTEMPLATE', 'six_columns.' => array('templateName' => 'SixColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '261', 'as' => 'col_261'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '262', 'as' => 'col_262'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '263', 'as' => 'col_263'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '264', 'as' => 'col_264'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '245.' => array('colPos' => '265', 'as' => 'col_265'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '246.' => array('colPos' => '266', 'as' => 'col_266'))), 'card_wrapper' => 'FLUIDTEMPLATE', 'card_wrapper.' => array('templateName' => 'CardWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '270.' => array('colPos' => '270', 'as' => 'col_270'))), 'button_group' => 'FLUIDTEMPLATE', 'button_group.' => array('templateName' => 'Buttongroup', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '271.' => array('colPos' => '271', 'as' => 'col_271'))), 'background_wrapper' => 'FLUIDTEMPLATE', 'background_wrapper.' => array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), 'parallax_wrapper' => 'FLUIDTEMPLATE', 'parallax_wrapper.' => array('templateName' => 'ParallaxWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '274.' => array('colPos' => '274', 'as' => 'col_274'))), 'autoLayout_row' => 'FLUIDTEMPLATE', 'autoLayout_row.' => array('templateName' => 'AutoLayoutRow', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '272.' => array('colPos' => '272', 'as' => 'col_272'))), 'container' => 'FLUIDTEMPLATE', 'container.' => array('templateName' => 'Container', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '275.' => array('colPos' => '275', 'as' => 'col_275'))), 'carousel_container' => 'FLUIDTEMPLATE', 'carousel_container.' => array('templateName' => 'CarouselContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '276.' => array('colPos' => '276', 'as' => 'col_276'))), 'collapsible_container' => 'FLUIDTEMPLATE', 'collapsible_container.' => array('templateName' => 'CollapsibleContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '277.' => array('colPos' => '277', 'as' => 'col_277'))), 'collapsible_accordion' => 'FLUIDTEMPLATE', 'collapsible_accordion.' => array('templateName' => 'Collapsible', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '278.' => array('colPos' => '278', 'as' => 'col_278'))), 'modal' => 'FLUIDTEMPLATE', 'modal.' => array('templateName' => 'Modal', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '279.' => array('colPos' => '279', 'as' => 'col_279'))), 'tabs_container' => 'FLUIDTEMPLATE', 'tabs_container.' => array('templateName' => 'TabContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '280.' => array('colPos' => '280', 'as' => 'col_280'))), 'tabs_tab' => 'FLUIDTEMPLATE', 'tabs_tab.' => array('templateName' => 'Tab', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '281.' => array('colPos' => '281', 'as' => 'col_281'))), 'listGroup_wrapper' => 'FLUIDTEMPLATE', 'listGroup_wrapper.' => array('templateName' => 'ListGroupWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '282.' => array('colPos' => '282', 'as' => 'col_282'))), 'masonry_wrapper' => 'FLUIDTEMPLATE', 'masonry_wrapper.' => array('templateName' => 'MasonryWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '283.' => array('colPos' => '283', 'as' => 'col_283'))), 'swiper_container' => 'FLUIDTEMPLATE', 'swiper_container.' => array('templateName' => 'SwiperContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '300.' => array('colPos' => '300', 'as' => 'col_300'))), 'toast_container' => 'FLUIDTEMPLATE', 'toast_container.' => array('templateName' => 'ToastContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '310.' => array('colPos' => '310', 'as' => 'col_310')))))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 828
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject.' => array('default.' => array('stdWrap.' => array('if.' => array('value' => 'dce_dceuid0', 'isInList.' => array('field' => 'CType'), 'negate' => '1'))))), 'if.' => array('isInList.' => array('field' => 'uid'), 'value' => '{$live},{$live_loggedin},{$live_notloggedin},{$notlive},{$notlive_notloggedin},{$notlive_loggedin},{$only_tdd}', 'value.' => array('insertData' => '1'), 'negate' => '1')), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '5', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '5', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '3')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 't3sbootstrap_pi1' => 'USER', 't3sbootstrap_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'T3sbootstrap', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'nsyoutube_youtube' => 'USER', 'nsyoutube_youtube.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'NsYoutube', 'pluginName' => 'Youtube'), 'tostv_tostv' => 'USER', 'tostv_tostv.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Tostv', 'pluginName' => 'Tostv'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '3')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '3')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'dce_sidebar' => 'USER', 'dce_sidebar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'sidebar'), 'dce_login_salutation2' => 'USER', 'dce_login_salutation2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'login_salutation2'), 'dce_audio' => 'USER', 'dce_audio.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'audio'), 'dce_login_salutation' => 'USER', 'dce_login_salutation.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'login_salutation'), 'dce_youtube' => 'USER', 'dce_youtube.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'youtube'), 'dce_dce_royalslider' => 'USER', 'dce_dce_royalslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dce_royalslider'), 't3sbs_fluidtemplate' => 'COA', 't3sbs_fluidtemplate.' => array('FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'subheader', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'EXT:t3sbootstrap/Resources/Private/Templates/Content/FluidTemplate.html'))))), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'navbar.' => array('image.' => array('defaultPath' => '/typo3conf/ext/t3sbootstrap/Resources/Public/Images/bootstrap-logo-white.svg', 'width' => '30', 'height' => '24', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '3', 'company' => '0', 'homepageUid' => '242', 'pageTitle' => 'jumbotron', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '4', 'navbarBrand' => 'imgText', 'navbarbrandAlignment' => '{$bootstrap.config.navbarbrandAlignment}', 'navbarImage' => '0', 'navbarColor' => 'dark', 'navbarBackground' => 'transparent', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarInnercontainer' => '{$bootstrap.config.navbarInnercontainer}', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'left', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'md', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => '0', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '0', 'breadcrumbFaicon' => '0', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => '0', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '99', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '1', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-white text-light', 'footerPid' => '244', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => 'pt-5', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '2', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '0', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '')))), 't3sbs_button' => '< lib.contentElement', 't3sbs_button.' => array('templateName' => 'Button', 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_card' => '< lib.contentElement', 't3sbs_card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'overrideSmallColumns' => '', 'configuid' => '1'), 'T3SBS\\T3sbootstrap\\DataProcessing\\CardProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_carousel' => '< lib.contentElement', 't3sbs_carousel.' => array('templateName' => 'Carousel', 'settings.' => array('defaultHeaderType' => '3'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_mediaobject' => '< lib.contentElement', 't3sbs_mediaobject.' => array('templateName' => 'Mediaobject', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_gallery' => '< lib.contentElement', 't3sbs_gallery.' => array('templateName' => 'ImageGallery', 'settings.' => array('defaultHeaderType' => '2'), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\BsImageGalleryProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'files', 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_toast' => '< lib.contentElement', 't3sbs_toast.' => array('templateName' => 'Toast', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 'two_columns' => 'FLUIDTEMPLATE', 'two_columns.' => array('templateName' => 'TwoColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '221.' => array('colPos' => '221', 'as' => 'col_221'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '222.' => array('colPos' => '222', 'as' => 'col_222'))), 'three_columns' => 'FLUIDTEMPLATE', 'three_columns.' => array('templateName' => 'ThreeColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '231.' => array('colPos' => '231', 'as' => 'col_231'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '232.' => array('colPos' => '232', 'as' => 'col_232'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '233.' => array('colPos' => '233', 'as' => 'col_233'))), 'four_columns' => 'FLUIDTEMPLATE', 'four_columns.' => array('templateName' => 'FourColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '241', 'as' => 'col_241'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '242', 'as' => 'col_242'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '243', 'as' => 'col_243'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '244', 'as' => 'col_244'))), 'six_columns' => 'FLUIDTEMPLATE', 'six_columns.' => array('templateName' => 'SixColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '261', 'as' => 'col_261'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '262', 'as' => 'col_262'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '263', 'as' => 'col_263'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '264', 'as' => 'col_264'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '245.' => array('colPos' => '265', 'as' => 'col_265'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '246.' => array('colPos' => '266', 'as' => 'col_266'))), 'card_wrapper' => 'FLUIDTEMPLATE', 'card_wrapper.' => array('templateName' => 'CardWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '270.' => array('colPos' => '270', 'as' => 'col_270'))), 'button_group' => 'FLUIDTEMPLATE', 'button_group.' => array('templateName' => 'Buttongroup', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '271.' => array('colPos' => '271', 'as' => 'col_271'))), 'background_wrapper' => 'FLUIDTEMPLATE', 'background_wrapper.' => array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), 'parallax_wrapper' => 'FLUIDTEMPLATE', 'parallax_wrapper.' => array('templateName' => 'ParallaxWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '274.' => array('colPos' => '274', 'as' => 'col_274'))), 'autoLayout_row' => 'FLUIDTEMPLATE', 'autoLayout_row.' => array('templateName' => 'AutoLayoutRow', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '272.' => array('colPos' => '272', 'as' => 'col_272'))), 'container' => 'FLUIDTEMPLATE', 'container.' => array('templateName' => 'Container', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '275.' => array('colPos' => '275', 'as' => 'col_275'))), 'carousel_container' => 'FLUIDTEMPLATE', 'carousel_container.' => array('templateName' => 'CarouselContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '276.' => array('colPos' => '276', 'as' => 'col_276'))), 'collapsible_container' => 'FLUIDTEMPLATE', 'collapsible_container.' => array('templateName' => 'CollapsibleContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '277.' => array('colPos' => '277', 'as' => 'col_277'))), 'collapsible_accordion' => 'FLUIDTEMPLATE', 'collapsible_accordion.' => array('templateName' => 'Collapsible', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '278.' => array('colPos' => '278', 'as' => 'col_278'))), 'modal' => 'FLUIDTEMPLATE', 'modal.' => array('templateName' => 'Modal', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '279.' => array('colPos' => '279', 'as' => 'col_279'))), 'tabs_container' => 'FLUIDTEMPLATE', 'tabs_container.' => array('templateName' => 'TabContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '280.' => array('colPos' => '280', 'as' => 'col_280'))), 'tabs_tab' => 'FLUIDTEMPLATE', 'tabs_tab.' => array('templateName' => 'Tab', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '281.' => array('colPos' => '281', 'as' => 'col_281'))), 'listGroup_wrapper' => 'FLUIDTEMPLATE', 'listGroup_wrapper.' => array('templateName' => 'ListGroupWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '282.' => array('colPos' => '282', 'as' => 'col_282'))), 'masonry_wrapper' => 'FLUIDTEMPLATE', 'masonry_wrapper.' => array('templateName' => 'MasonryWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '283.' => array('colPos' => '283', 'as' => 'col_283'))), 'swiper_container' => 'FLUIDTEMPLATE', 'swiper_container.' => array('templateName' => 'SwiperContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '300.' => array('colPos' => '300', 'as' => 'col_300'))), 'toast_container' => 'FLUIDTEMPLATE', 'toast_container.' => array('templateName' => 'ToastContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '310.' => array('colPos' => '310', 'as' => 'col_310')))))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 742
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject.' => array('default.' => array('stdWrap.' => array('if.' => array('value' => 'dce_dceuid0', 'isInList.' => array('field' => 'CType'), 'negate' => '1'))))), 'if.' => array('isInList.' => array('field' => 'uid'), 'value' => '{$live},{$live_loggedin},{$live_notloggedin},{$notlive},{$notlive_notloggedin},{$notlive_loggedin},{$only_tdd}', 'value.' => array('insertData' => '1'), 'negate' => '1')), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '5', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '5', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '3')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 't3sbootstrap_pi1' => 'USER', 't3sbootstrap_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'T3sbootstrap', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'nsyoutube_youtube' => 'USER', 'nsyoutube_youtube.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'NsYoutube', 'pluginName' => 'Youtube'), 'tostv_tostv' => 'USER', 'tostv_tostv.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Tostv', 'pluginName' => 'Tostv'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '3')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '3')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'dce_sidebar' => 'USER', 'dce_sidebar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'sidebar'), 'dce_login_salutation2' => 'USER', 'dce_login_salutation2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'login_salutation2'), 'dce_audio' => 'USER', 'dce_audio.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'audio'), 'dce_login_salutation' => 'USER', 'dce_login_salutation.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'login_salutation'), 'dce_youtube' => 'USER', 'dce_youtube.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'youtube'), 'dce_dce_royalslider' => 'USER', 'dce_dce_royalslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dce_royalslider'), 't3sbs_fluidtemplate' => 'COA', 't3sbs_fluidtemplate.' => array('FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'subheader', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'EXT:t3sbootstrap/Resources/Private/Templates/Content/FluidTemplate.html'))))), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'navbar.' => array('image.' => array('defaultPath' => '/typo3conf/ext/t3sbootstrap/Resources/Public/Images/bootstrap-logo-white.svg', 'width' => '30', 'height' => '24', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '3', 'company' => '0', 'homepageUid' => '242', 'pageTitle' => 'jumbotron', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '4', 'navbarBrand' => 'imgText', 'navbarbrandAlignment' => '{$bootstrap.config.navbarbrandAlignment}', 'navbarImage' => '0', 'navbarColor' => 'dark', 'navbarBackground' => 'transparent', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarInnercontainer' => '{$bootstrap.config.navbarInnercontainer}', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'left', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'md', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => '0', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '0', 'breadcrumbFaicon' => '0', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => '0', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '99', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '1', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-white text-light', 'footerPid' => '244', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => 'pt-5', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '2', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '0', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '')))), 't3sbs_button' => '< lib.contentElement', 't3sbs_button.' => array('templateName' => 'Button', 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_card' => '< lib.contentElement', 't3sbs_card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'overrideSmallColumns' => '', 'configuid' => '1'), 'T3SBS\\T3sbootstrap\\DataProcessing\\CardProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_carousel' => '< lib.contentElement', 't3sbs_carousel.' => array('templateName' => 'Carousel', 'settings.' => array('defaultHeaderType' => '3'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_mediaobject' => '< lib.contentElement', 't3sbs_mediaobject.' => array('templateName' => 'Mediaobject', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_gallery' => '< lib.contentElement', 't3sbs_gallery.' => array('templateName' => 'ImageGallery', 'settings.' => array('defaultHeaderType' => '2'), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\BsImageGalleryProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'files', 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_toast' => '< lib.contentElement', 't3sbs_toast.' => array('templateName' => 'Toast', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 'two_columns' => 'FLUIDTEMPLATE', 'two_columns.' => array('templateName' => 'TwoColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '221.' => array('colPos' => '221', 'as' => 'col_221'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '222.' => array('colPos' => '222', 'as' => 'col_222'))), 'three_columns' => 'FLUIDTEMPLATE', 'three_columns.' => array('templateName' => 'ThreeColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '231.' => array('colPos' => '231', 'as' => 'col_231'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '232.' => array('colPos' => '232', 'as' => 'col_232'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '233.' => array('colPos' => '233', 'as' => 'col_233'))), 'four_columns' => 'FLUIDTEMPLATE', 'four_columns.' => array('templateName' => 'FourColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '241', 'as' => 'col_241'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '242', 'as' => 'col_242'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '243', 'as' => 'col_243'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '244', 'as' => 'col_244'))), 'six_columns' => 'FLUIDTEMPLATE', 'six_columns.' => array('templateName' => 'SixColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '261', 'as' => 'col_261'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '262', 'as' => 'col_262'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '263', 'as' => 'col_263'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '264', 'as' => 'col_264'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '245.' => array('colPos' => '265', 'as' => 'col_265'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '246.' => array('colPos' => '266', 'as' => 'col_266'))), 'card_wrapper' => 'FLUIDTEMPLATE', 'card_wrapper.' => array('templateName' => 'CardWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '270.' => array('colPos' => '270', 'as' => 'col_270'))), 'button_group' => 'FLUIDTEMPLATE', 'button_group.' => array('templateName' => 'Buttongroup', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '271.' => array('colPos' => '271', 'as' => 'col_271'))), 'background_wrapper' => 'FLUIDTEMPLATE', 'background_wrapper.' => array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), 'parallax_wrapper' => 'FLUIDTEMPLATE', 'parallax_wrapper.' => array('templateName' => 'ParallaxWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '274.' => array('colPos' => '274', 'as' => 'col_274'))), 'autoLayout_row' => 'FLUIDTEMPLATE', 'autoLayout_row.' => array('templateName' => 'AutoLayoutRow', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '272.' => array('colPos' => '272', 'as' => 'col_272'))), 'container' => 'FLUIDTEMPLATE', 'container.' => array('templateName' => 'Container', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '275.' => array('colPos' => '275', 'as' => 'col_275'))), 'carousel_container' => 'FLUIDTEMPLATE', 'carousel_container.' => array('templateName' => 'CarouselContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '276.' => array('colPos' => '276', 'as' => 'col_276'))), 'collapsible_container' => 'FLUIDTEMPLATE', 'collapsible_container.' => array('templateName' => 'CollapsibleContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '277.' => array('colPos' => '277', 'as' => 'col_277'))), 'collapsible_accordion' => 'FLUIDTEMPLATE', 'collapsible_accordion.' => array('templateName' => 'Collapsible', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '278.' => array('colPos' => '278', 'as' => 'col_278'))), 'modal' => 'FLUIDTEMPLATE', 'modal.' => array('templateName' => 'Modal', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '279.' => array('colPos' => '279', 'as' => 'col_279'))), 'tabs_container' => 'FLUIDTEMPLATE', 'tabs_container.' => array('templateName' => 'TabContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '280.' => array('colPos' => '280', 'as' => 'col_280'))), 'tabs_tab' => 'FLUIDTEMPLATE', 'tabs_tab.' => array('templateName' => 'Tab', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '281.' => array('colPos' => '281', 'as' => 'col_281'))), 'listGroup_wrapper' => 'FLUIDTEMPLATE', 'listGroup_wrapper.' => array('templateName' => 'ListGroupWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '282.' => array('colPos' => '282', 'as' => 'col_282'))), 'masonry_wrapper' => 'FLUIDTEMPLATE', 'masonry_wrapper.' => array('templateName' => 'MasonryWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '283.' => array('colPos' => '283', 'as' => 'col_283'))), 'swiper_container' => 'FLUIDTEMPLATE', 'swiper_container.' => array('templateName' => 'SwiperContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '300.' => array('colPos' => '300', 'as' => 'col_300'))), 'toast_container' => 'FLUIDTEMPLATE', 'toast_container.' => array('templateName' => 'ToastContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '310.' => array('colPos' => '310', 'as' => 'col_310')))), 'tt_content')
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 723
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject.' => array('default.' => array('stdWrap.' => array('if.' => array('value' => 'dce_dceuid0', 'isInList.' => array('field' => 'CType'), 'negate' => '1'))))), 'if.' => array('isInList.' => array('field' => 'uid'), 'value' => '{$live},{$live_loggedin},{$live_notloggedin},{$notlive},{$notlive_notloggedin},{$notlive_loggedin},{$only_tdd}', 'value.' => array('insertData' => '1'), 'negate' => '1')), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '5', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '5', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '3')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 't3sbootstrap_pi1' => 'USER', 't3sbootstrap_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'T3sbootstrap', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'nsyoutube_youtube' => 'USER', 'nsyoutube_youtube.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'NsYoutube', 'pluginName' => 'Youtube'), 'tostv_tostv' => 'USER', 'tostv_tostv.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Tostv', 'pluginName' => 'Tostv'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '3')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '3')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'dce_sidebar' => 'USER', 'dce_sidebar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'sidebar'), 'dce_login_salutation2' => 'USER', 'dce_login_salutation2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'login_salutation2'), 'dce_audio' => 'USER', 'dce_audio.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'audio'), 'dce_login_salutation' => 'USER', 'dce_login_salutation.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'login_salutation'), 'dce_youtube' => 'USER', 'dce_youtube.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'youtube'), 'dce_dce_royalslider' => 'USER', 'dce_dce_royalslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dce_royalslider'), 't3sbs_fluidtemplate' => 'COA', 't3sbs_fluidtemplate.' => array('FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'subheader', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'EXT:t3sbootstrap/Resources/Private/Templates/Content/FluidTemplate.html'))))), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'navbar.' => array('image.' => array('defaultPath' => '/typo3conf/ext/t3sbootstrap/Resources/Public/Images/bootstrap-logo-white.svg', 'width' => '30', 'height' => '24', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '3', 'company' => '0', 'homepageUid' => '242', 'pageTitle' => 'jumbotron', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '4', 'navbarBrand' => 'imgText', 'navbarbrandAlignment' => '{$bootstrap.config.navbarbrandAlignment}', 'navbarImage' => '0', 'navbarColor' => 'dark', 'navbarBackground' => 'transparent', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarInnercontainer' => '{$bootstrap.config.navbarInnercontainer}', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'left', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'md', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => '0', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '0', 'breadcrumbFaicon' => '0', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => '0', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '99', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '1', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-white text-light', 'footerPid' => '244', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => 'pt-5', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '2', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '0', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '')))), 't3sbs_button' => '< lib.contentElement', 't3sbs_button.' => array('templateName' => 'Button', 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_card' => '< lib.contentElement', 't3sbs_card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'overrideSmallColumns' => '', 'configuid' => '1'), 'T3SBS\\T3sbootstrap\\DataProcessing\\CardProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_carousel' => '< lib.contentElement', 't3sbs_carousel.' => array('templateName' => 'Carousel', 'settings.' => array('defaultHeaderType' => '3'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_mediaobject' => '< lib.contentElement', 't3sbs_mediaobject.' => array('templateName' => 'Mediaobject', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_gallery' => '< lib.contentElement', 't3sbs_gallery.' => array('templateName' => 'ImageGallery', 'settings.' => array('defaultHeaderType' => '2'), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\BsImageGalleryProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'files', 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_toast' => '< lib.contentElement', 't3sbs_toast.' => array('templateName' => 'Toast', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1200', 'minimumWidth' => '0', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 'two_columns' => 'FLUIDTEMPLATE', 'two_columns.' => array('templateName' => 'TwoColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '221.' => array('colPos' => '221', 'as' => 'col_221'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '222.' => array('colPos' => '222', 'as' => 'col_222'))), 'three_columns' => 'FLUIDTEMPLATE', 'three_columns.' => array('templateName' => 'ThreeColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '231.' => array('colPos' => '231', 'as' => 'col_231'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '232.' => array('colPos' => '232', 'as' => 'col_232'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '233.' => array('colPos' => '233', 'as' => 'col_233'))), 'four_columns' => 'FLUIDTEMPLATE', 'four_columns.' => array('templateName' => 'FourColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '241', 'as' => 'col_241'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '242', 'as' => 'col_242'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '243', 'as' => 'col_243'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '244', 'as' => 'col_244'))), 'six_columns' => 'FLUIDTEMPLATE', 'six_columns.' => array('templateName' => 'SixColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '261', 'as' => 'col_261'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '262', 'as' => 'col_262'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '263', 'as' => 'col_263'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '264', 'as' => 'col_264'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '245.' => array('colPos' => '265', 'as' => 'col_265'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '246.' => array('colPos' => '266', 'as' => 'col_266'))), 'card_wrapper' => 'FLUIDTEMPLATE', 'card_wrapper.' => array('templateName' => 'CardWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '270.' => array('colPos' => '270', 'as' => 'col_270'))), 'button_group' => 'FLUIDTEMPLATE', 'button_group.' => array('templateName' => 'Buttongroup', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '271.' => array('colPos' => '271', 'as' => 'col_271'))), 'background_wrapper' => 'FLUIDTEMPLATE', 'background_wrapper.' => array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), 'parallax_wrapper' => 'FLUIDTEMPLATE', 'parallax_wrapper.' => array('templateName' => 'ParallaxWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '274.' => array('colPos' => '274', 'as' => 'col_274'))), 'autoLayout_row' => 'FLUIDTEMPLATE', 'autoLayout_row.' => array('templateName' => 'AutoLayoutRow', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '272.' => array('colPos' => '272', 'as' => 'col_272'))), 'container' => 'FLUIDTEMPLATE', 'container.' => array('templateName' => 'Container', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '275.' => array('colPos' => '275', 'as' => 'col_275'))), 'carousel_container' => 'FLUIDTEMPLATE', 'carousel_container.' => array('templateName' => 'CarouselContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '276.' => array('colPos' => '276', 'as' => 'col_276'))), 'collapsible_container' => 'FLUIDTEMPLATE', 'collapsible_container.' => array('templateName' => 'CollapsibleContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '277.' => array('colPos' => '277', 'as' => 'col_277'))), 'collapsible_accordion' => 'FLUIDTEMPLATE', 'collapsible_accordion.' => array('templateName' => 'Collapsible', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '278.' => array('colPos' => '278', 'as' => 'col_278'))), 'modal' => 'FLUIDTEMPLATE', 'modal.' => array('templateName' => 'Modal', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '279.' => array('colPos' => '279', 'as' => 'col_279'))), 'tabs_container' => 'FLUIDTEMPLATE', 'tabs_container.' => array('templateName' => 'TabContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '280.' => array('colPos' => '280', 'as' => 'col_280'))), 'tabs_tab' => 'FLUIDTEMPLATE', 'tabs_tab.' => array('templateName' => 'Tab', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '281.' => array('colPos' => '281', 'as' => 'col_281'))), 'listGroup_wrapper' => 'FLUIDTEMPLATE', 'listGroup_wrapper.' => array('templateName' => 'ListGroupWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '282.' => array('colPos' => '282', 'as' => 'col_282'))), 'masonry_wrapper' => 'FLUIDTEMPLATE', 'masonry_wrapper.' => array('templateName' => 'MasonryWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '283.' => array('colPos' => '283', 'as' => 'col_283'))), 'swiper_container' => 'FLUIDTEMPLATE', 'swiper_container.' => array('templateName' => 'SwiperContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '300.' => array('colPos' => '300', 'as' => 'col_300'))), 'toast_container' => 'FLUIDTEMPLATE', 'toast_container.' => array('templateName' => 'ToastContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '310.' => array('colPos' => '310', 'as' => 'col_310')))), '')
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 95
                        $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                        $frontendController->currentRecord = $conf['table'] . ':' . $row['uid'];
                        $this->cObj->lastChanged($row['tstamp']);
                        $cObj->start($row, $conf['table']);
                        $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                        $cobjValue .= $tmpValue;
                    }
                }
            }
at TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render(array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid')), 'wrap' => '<!--TYPO3SEARCH_begin-->|<!--TYPO3SEARCH_end-->', 'renderObj.' => array('stdWrap.' => array('if.' => array('isInList.' => array('field' => 'uid'), 'value' => '{$live},{$live_loggedin},{$live_notloggedin},{$notlive},{$notlive_notloggedin},{$notlive_loggedin},{$only_tdd}', 'value.' => array('insertData' => '1'), 'negate' => '1')))))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 828
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentContentObject), array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid')), 'wrap' => '<!--TYPO3SEARCH_begin-->|<!--TYPO3SEARCH_end-->', 'renderObj.' => array('stdWrap.' => array('if.' => array('isInList.' => array('field' => 'uid'), 'value' => '{$live},{$live_loggedin},{$live_notloggedin},{$notlive},{$notlive_notloggedin},{$notlive_loggedin},{$only_tdd}', 'value.' => array('insertData' => '1'), 'negate' => '1')))))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 742
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CONTENT', array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid')), 'wrap' => '<!--TYPO3SEARCH_begin-->|<!--TYPO3SEARCH_end-->', 'renderObj.' => array('stdWrap.' => array('if.' => array('isInList.' => array('field' => 'uid'), 'value' => '{$live},{$live_loggedin},{$live_notloggedin},{$notlive},{$notlive_notloggedin},{$notlive_loggedin},{$only_tdd}', 'value.' => array('insertData' => '1'), 'negate' => '1')))), '10')
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 687
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id')))), 'CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid')), 'wrap' => '<!--TYPO3SEARCH_begin-->|<!--TYPO3SEARCH_end-->', 'renderObj.' => array('stdWrap.' => array('if.' => array('isInList.' => array('field' => 'uid'), 'value' => '{$live},{$live_loggedin},{$live_notloggedin},{$notlive},{$notlive_notloggedin},{$notlive_loggedin},{$only_tdd}', 'value.' => array('insertData' => '1'), 'negate' => '1')))), 'RESTORE_REGISTER'))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectArrayContentObject.php line 42
        if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
            return '';
        }

        $content = $this->cObj->cObjGet($conf);
        $wrap = isset($conf['wrap.']) ? $this->cObj->stdWrap($conf['wrap'], $conf['wrap.']) : $conf['wrap'];
        if ($wrap) {
            $content = $this->cObj->wrap($content, $wrap);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject->render(array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id')))), 'CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid')), 'wrap' => '<!--TYPO3SEARCH_begin-->|<!--TYPO3SEARCH_end-->', 'renderObj.' => array('stdWrap.' => array('if.' => array('isInList.' => array('field' => 'uid'), 'value' => '{$live},{$live_loggedin},{$live_notloggedin},{$notlive},{$notlive_notloggedin},{$notlive_loggedin},{$only_tdd}', 'value.' => array('insertData' => '1'), 'negate' => '1')))), 'RESTORE_REGISTER'))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 828
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject), array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id')))), 'CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid')), 'wrap' => '<!--TYPO3SEARCH_begin-->|<!--TYPO3SEARCH_end-->', 'renderObj.' => array('stdWrap.' => array('if.' => array('isInList.' => array('field' => 'uid'), 'value' => '{$live},{$live_loggedin},{$live_notloggedin},{$notlive},{$notlive_notloggedin},{$notlive_loggedin},{$only_tdd}', 'value.' => array('insertData' => '1'), 'negate' => '1')))), 'RESTORE_REGISTER'))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 742
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('COA', array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id')))), 'CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid')), 'wrap' => '<!--TYPO3SEARCH_begin-->|<!--TYPO3SEARCH_end-->', 'renderObj.' => array('stdWrap.' => array('if.' => array('isInList.' => array('field' => 'uid'), 'value' => '{$live},{$live_loggedin},{$live_notloggedin},{$notlive},{$notlive_notloggedin},{$notlive_loggedin},{$only_tdd}', 'value.' => array('insertData' => '1'), 'negate' => '1')))), 'RESTORE_REGISTER'), 'lib.dynamicContent')
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 193
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('contentElement' => 'FLUIDTEMPLATE', 'contentElement.' => array('templateName' => 'Default', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1400m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '1', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'ytPlayerVersion' => '3.3.9', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '576, 768, 992, 1200, 1440, 1920, 5000', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '385, 575', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'md', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:dce/Resources/Private/Templates', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '3', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')))), 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var, s, mark,s, mark', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1', 'tags' => 'mark'), 'parseFunc_RTE.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var, s, mark,s, mark', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var, s, mark', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('pre.' => array('fixAttrib.' => array('class.' => array('default' => 'rteContentList', 'always' => '1', 'list' => 'rteContentList')))), 'keepNonMatchedTags' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array('fixAttrib.' => array('class.' => array('default' => 'table', 'always' => '1')))), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => '', 'innerStdWrap_all.' => array('ifBlank' => '')))))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')), 'tags' => 'mark'), 'tx_news.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'leveltitle:-1'), 'newsTitle' => 'TEXT', 'newsTitle.' => array('data' => 'register:newsTitle', 'stdWrap.' => array('wrap' => '<li class="breadcrumb-item active">|</li>', 'required' => '1')), 'mathCeil' => 'TEXT', 'mathCeil.' => array('current' => '1', 'prioriCalc' => '1', 'round' => '1', 'round.' => array('roundType' => 'ceil')), 'currentDate' => 'TEXT', 'currentDate.' => array('data' => 'date : U', 'strftime' => '%A, %e. %B %Y'), 'currentDomain' => 'TEXT', 'currentDomain.' => array('dataWrap' => '{getIndpEnv:TYPO3_REQUEST_HOST}|', 'typolink.' => array('parameter.' => array('current' => '1'), 'returnLast' => 'url')), 'printButton' => 'COA', 'printButton.' => array('TEXT', '10.' => array('value' => '<i class="fas fa-print"></i>'), 'stdWrap.' => array('typolinkno_cache' => '1', 'typolink.' => array('title' => 'Open print version of this page in a new window', 'ATagParams' => 'target = _blank', 'parameter.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('data' => 'page:uid', 'wrap' => 'index.php?id=|', 'required' => '1'), 'TEXT', '10.' => array('value' => '&no_cache=1'), 'TEXT', '20.' => array('data' => 'GP:L', 'wrap' => '&L=|', 'required' => '1'), 'TEXT', '30.' => array('data' => 'GP:tx_news_pi1 | news', 'wrap' => '&tx_news_pi1[news]=|', 'required' => '1'), 'TEXT', '40.' => array('data' => 'GP:tx_news_pi1 | controller', 'wrap' => '&tx_news_pi1[controller]=|', 'required' => '1'), 'TEXT', '50.' => array('data' => 'GP:tx_news_pi1 | action', 'wrap' => '&tx_news_pi1[action]=|', 'required' => '1'), 'TEXT', '60.' => array('data' => 'GP:cHash', 'wrap' => '&cHash=|', 'required' => '1'), 'TEXT', '70.' => array('value' => '&type=98')))))), 'dynamicContent' => 'COA', 'dynamicContent.' => array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id')))), 'CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid')), 'wrap' => '<!--TYPO3SEARCH_begin-->|<!--TYPO3SEARCH_end-->', 'renderObj.' => array('stdWrap.' => array('if.' => array('isInList.' => array('field' => 'uid'), 'value' => '{$live},{$live_loggedin},{$live_notloggedin},{$notlive},{$notlive_notloggedin},{$notlive_loggedin},{$only_tdd}', 'value.' => array('insertData' => '1'), 'negate' => '1')))), 'RESTORE_REGISTER'), 'dynamicContentSlide' => '< lib.dynamicContent', 'dynamicContentSlide.' => array('10.' => array('slide' => '-1', 'wrap' => '<!--TYPO3SEARCH_begin-->|<!--TYPO3SEARCH_end-->')), 'contentByUid' => 'RECORDS', 'contentByUid.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1'), 'content.' => array('footerFromPid' => 'CONTENT', 'footerFromPid.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=0', 'pidInList' => '244'), 'if.' => array('isTrue' => '244'))), 'parseFunc_powermail.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target')), 'forceAbsoluteUrl' => '1')), 'link.' => array('typolink.' => array('forceAbsoluteUrl' => '1'))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var, s, mark,s, mark', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var, s, mark', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('pre.' => array('fixAttrib.' => array('class.' => array('default' => 'rteContentList', 'always' => '1', 'list' => 'rteContentList')))), 'keepNonMatchedTags' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array('fixAttrib.' => array('class.' => array('default' => 'table', 'always' => '1')))), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => '', 'innerStdWrap_all.' => array('ifBlank' => '')))))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')), 'tags' => 'mark'), 'math' => 'TEXT', 'math.' => array('current' => '1', 'prioriCalc' => '1'), 'navigation.' => array('socials' => 'COA', 'socials.' => array('HMENU', '5.' => array('special' => 'directory', 'special.' => array('value' => '{$plugin.t3sbootstrap_configuration.navigation.socials.pid}'), 'TMENU', '1.' => array('expAll' => '1', 'NO' => '1', 'NO.' => array('before.' => array('cObject' => 'LOAD_REGISTER', 'cObject.' => array('glyphicon.' => array('cObject' => 'TEXT', 'cObject.' => array('required' => '1', 'data.' => array('dataWrap' => 'DB:pages:{field:uid}:tx_t3sbootstrap_glyphicon'), 'wrap' => '<span class="glyphicon glyphicon-|"></span>', 'if.' => array('isFalse' => '{$plugin.t3sbootstrap_configuration.general.fontawesome}'))), 'fontawesome.' => array('cObject' => 'TEXT', 'cObject.' => array('required' => '1', 'data.' => array('dataWrap' => 'DB:pages:{field:uid}:tx_t3sbootstrap_fontawesome_icon'), 'noTrimWrap' => '| <i class="fa |"></i> |', 'if.' => array('isTrue' => '{$plugin.t3sbootstrap_configuration.general.fontawesome}'))))), 'ATagBeforeWrap' => '1', 'linkWrap' => '{register:glyphicon}{register:fontawesome}|', 'allStdWrap.' => array('insertData' => '1'), 'ATagParams' => 'target="_blank"', 'stdWrap.' => array('required' => '1', 'htmlSpecialChars' => '1'), 'wrapItemAndSub' => '<li>|</li>')), 'if.' => array('isTrue' => '{$plugin.t3sbootstrap_configuration.navigation.socials.pid}'), 'wrap' => '<ul class="text-center socials nav">|</ul>'))), 'userimage' => 'COA_INT', 'userimage.' => array('FILES', '300.' => array('references.' => array('table' => 'fe_users', 'fieldName' => 'image', 'uid.' => array('dataWrap' => '{TSFE:fe_user|user|uid}')), 'begin' => '0', 'maxItems' => '1', 'renderObj' => 'IMAGE', 'renderObj.' => array('file.' => array('import.' => array('dataWrap' => '{file:current:storage}:{file:current:identifier}'), 'width' => '50c', 'height' => '50'), 'wrap' => '|'))), 'userinfo' => 'COA_INT', 'userinfo.' => array('COA', '20.' => array('TEXT', '1.' => array('data' => 'TSFE:fe_user|user|first_name', 'required' => '1'), 'stdWrap.' => array('ifEmpty.' => array('data' => 'TSFE:fe_user|user|name'), 'wrap' => '|', 'required' => '1'))), 'useremail' => 'COA_INT', 'useremail.' => array('COA', '20.' => array('TEXT', '1.' => array('data' => 'TSFE:fe_user|user|username', 'required' => '1'), 'stdWrap.' => array('wrap' => '|', 'required' => '1'))), 'loginLogout' => 'COA', 'loginLogout.' => array('TEXT', '10.' => array('value' => '<span class="glyphicon glyphicon-user" aria-hidden="true"></span> Login', 'lang.' => array('de' => '<span class="glyphicon glyphicon-user" aria-hidden="true"></span> Einloggen'), 'typolink.' => array('parameter' => '{$plugin.t3sbootstrap_configuration.extensions.login.uid}', 'ATagParams' => 'class="dropdown-toggle" data-toggle="dropdown"'), 'if.' => array('isFalse.' => array('data' => 'TSFE:fe_user|user|username'))), 'TEXT', '20.' => array('value' => 'Logout', 'lang.' => array('de' => 'Ausloggen'), 'typolink.' => array('parameter' => '{$plugin.t3sbootstrap_configuration.extensions.login.uid}', 'ATagParams' => 'class="dropdown-toggle" data-toggle="dropdown"', 'additionalParams' => '&logintype=logout', 'wrap' => '<span class="badge">{TSFE:fe_user|user|username}</span> |', 'wrap.' => array('insertData' => '1'), 'ATagBeforeWrap' => '1'), 'if.' => array('isFalse.' => array('data' => 'TSFE:fe_user|user|username'), 'negate' => '1'))), 'loginForm' => 'COA', 'loginForm.' => array('TEXT', '1.' => array('value' => '<div class="modal-header"><button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button><h4 class="text-center modal-title">'), 'TEXT', '3.' => array('value' => 'Anmeldung'), 'TEXT', '5.' => array('value' => '</h4></div>'), 'TEXT', '7.' => array('value' => '<div class="modal-body">'), 'USER_INT', '10.' => array('userFunc' => 'TYPO3\\CMS\\Felogin\\Controller\\FrontendLoginController->main', 'storagePid' => '40', 'recursive' => '0', 'templateFile' => 'fileadmin/system/Resources/Private/Fluid/Extensions/felogin/old_login.html', 'feloginBaseURL' => '', 'dateFormat' => 'Y-m-d H:i', 'showForgotPasswordLink' => 'true', 'showPermaLogin' => 'true', 'showLogoutFormAfterLogin' => 'true', 'email_from' => 'noreply@tos.info', 'email_fromName' => 'TOS TV', 'replyTo' => 'accounts@tos.info', 'redirectMode' => '', 'redirectFirstMethod' => '0', 'redirectPageLogin' => '0', 'redirectPageLoginError' => '0', 'redirectPageLogout' => '0', 'redirectDisable' => '0', 'forgotLinkHashValidTime' => '12', 'newPasswordMinLength' => '6', 'domains' => '', 'exposeNonexistentUserInForgotPasswordDialog' => '0', 'wrapContentInBaseClass' => '1', 'linkConfig.' => array('target' => '', 'ATagParams' => 'rel="nofollow"'), 'preserveGETvars' => 'all', 'welcomeHeader_stdWrap.' => array('required' => '1', 'wrap' => '<div class="alert alert-info" role="alert"><h4>|</h4>', 'htmlSpecialChars' => '1'), 'successHeader_stdWrap.' => array('required' => '1', 'wrap' => '<h3>|</h3>', 'htmlSpecialChars' => '1'), 'logoutHeader_stdWrap.' => array('required' => '1', 'wrap' => '<div class="alert alert-success" role="alert"><h4>|</h4>', 'htmlSpecialChars' => '1'), 'errorHeader_stdWrap.' => array('required' => '1', 'wrap' => '<div class="alert alert-danger" role="alert"><h4>|</h4>', 'htmlSpecialChars' => '1'), 'forgotHeader_stdWrap.' => array('required' => '1', 'wrap' => '<div class="alert alert-warning" role="alert"><h4>|</h4>', 'htmlSpecialChars' => '1'), 'changePasswordHeader_stdWrap.' => array('required' => '1', 'wrap' => '<div class="alert alert-warning" role="alert"><h4>|</h4>', 'htmlSpecialChars' => '1'), 'welcomeMessage_stdWrap.' => array('required' => '1', 'wrap' => '<p>|</p></div>', 'htmlSpecialChars' => '1'), 'successMessage_stdWrap.' => array('required' => '1', 'wrap' => '<div>|</div>', 'htmlSpecialChars' => '1'), 'logoutMessage_stdWrap.' => array('required' => '1', 'wrap' => '<p>|</p></div>', 'htmlSpecialChars' => '1'), 'errorMessage_stdWrap.' => array('required' => '1', 'wrap' => '<p>|</p></div>', 'htmlSpecialChars' => '1'), 'forgotMessage_stdWrap.' => array('required' => '1', 'wrap' => '<p>|</p></div>', 'htmlSpecialChars' => '1'), 'forgotErrorMessage_stdWrap.' => array('required' => '1', 'wrap' => '<div>|</div>', 'htmlSpecialChars' => '1'), 'forgotResetMessageEmailSentMessage_stdWrap.' => array('required' => '1', 'wrap' => '<div>|</div>', 'htmlSpecialChars' => '1'), 'changePasswordNotValidMessage_stdWrap.' => array('required' => '1', 'wrap' => '<div>|</div>', 'htmlSpecialChars' => '1'), 'changePasswordTooShortMessage_stdWrap.' => array('required' => '1', 'wrap' => '<div>|</div>', 'htmlSpecialChars' => '1'), 'changePasswordNotEqualMessage_stdWrap.' => array('required' => '1', 'wrap' => '<div>|</div>', 'htmlSpecialChars' => '1'), 'changePasswordMessage_stdWrap.' => array('required' => '1', 'wrap' => '<p>|</p></div>', 'htmlSpecialChars' => '1'), 'changePasswordDoneMessage_stdWrap.' => array('required' => '1', 'wrap' => '<div>|</div>', 'htmlSpecialChars' => '1'), 'cookieWarning_stdWrap.' => array('required' => '1', 'wrap' => '<p style="color:red; font-weight:bold;">|</p>', 'htmlSpecialChars' => '1'), 'userfields.' => array('username.' => array('htmlSpecialChars' => '1', 'wrap' => '<strong>|</strong>'))), 'TEXT', '15.' => array('value' => '</div>'), 'wrap' => ' <div class="modal fade" id="mobile-login" tabindex="-1" role="dialog"> <div class="modal-dialog" role="document"> <div class="modal-content"> | </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> '), 'loginLogoutMobile' => 'COA', 'loginLogoutMobile.' => array('TEXT', '10.' => array('value' => '<span class="glyphicon glyphicon-user" aria-hidden="true"></span> Login', 'lang.' => array('de' => '<span class="glyphicon glyphicon-user" aria-hidden="true"></span> Einloggen'), '_typolink.' => array('ATagParams' => 'data-toggle="modal" data-target="#mobile-login"'), 'if.' => array('isFalse.' => array('data' => 'TSFE:fe_user|user|username')), 'wrap' => '<a href="#" data-toggle="modal" data-target="#mobile-login">|</a>'), 'TEXT', '20.' => array('value' => 'Logout', 'lang.' => array('de' => 'Ausloggen'), '_typolink.' => array('ATagParams' => 'data-toggle="modal" data-target="#mobile-login"'), 'if.' => array('isFalse.' => array('data' => 'TSFE:fe_user|user|username'), 'negate' => '1'), 'wrap' => '<a href="#" data-toggle="modal" data-target="#mobile-login">|</a>', 'typolink.' => array('ATagParams' => 'class="dropdown-toggle" data-toggle="dropdown"', 'additionalParams' => '&logintype=logout', 'wrap' => '|', 'wrap.' => array('insertData' => '1'), 'ATagBeforeWrap' => '1'))), 'loginLogoutModal' => 'COA', 'loginLogoutModal.' => array('TEXT', '10.' => array('value' => '<a href="#" data-toggle="modal" data-target="#mobile-login"><span class="fa fa-user-circle-o" aria-hidden="true"></span></a>', 'typolink.' => array('parameter' => '{$plugin.t3sbootstrap_configuration.extensions.login.uid}', 'ATagParams' => 'class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"'), 'if.' => array('isFalse.' => array('data' => 'TSFE:fe_user|user|username'))), 'TEXT', '20.' => array('value' => '<a href="#" data-toggle="modal" data-target="#mobile-login"><span class="fa fa-user-circle" aria-hidden="true"></span></a>', 'typolink.' => array('parameter' => '{$plugin.t3sbootstrap_configuration.extensions.login.uid}', 'ATagParams' => 'class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"'), 'if.' => array('isFalse.' => array('data' => 'TSFE:fe_user|user|username'), 'negate' => '1'), '_typolink.' => array('parameter' => '{$plugin.t3sbootstrap_configuration.extensions.login.uid}', 'additionalParams' => '&logintype=logout', 'wrap' => '<span class="fa fa-user-circle" aria-hidden="true">|</span>')), 'COA', '30.' => array())), 'lib.dynamicContent', 'dynamicContent')
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 170
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('pageUid' => 255, 'colPos' => 0), 'typoscriptObjectPath' => 'lib.dynamicContent', 'currentValueKey' => null, 'table' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/partial_BackendLayouts_OneCol_47147bcd67f5b19d870ec6c02bc1c3e74f797ba1.php line 306
);$array34['pageUid'] = $renderingContext->getVariableProvider()->getByPath('data.uid', $array35);
$array34['colPos'] = 0;
$arguments32['data'] = $array34;
$renderChildrenClosure33 = ($arguments32['data'] !== null) ? function() use ($arguments32) { return $arguments32['data']; } : $renderChildrenClosure33;
$output31 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments32, $renderChildrenClosure33, $renderingContext);

$output31 .= '
  ';
return $output31;
at partial_BackendLayouts_OneCol_47147bcd67f5b19d870ec6c02bc1c3e74f797ba1->{closure}()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => false, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/partial_BackendLayouts_OneCol_47147bcd67f5b19d870ec6c02bc1c3e74f797ba1.php line 313
  ';
return $output31;
};

$output0 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments24, $renderChildrenClosure25, $renderingContext);

$output0 .= '
</main>

at partial_BackendLayouts_OneCol_47147bcd67f5b19d870ec6c02bc1c3e74f797ba1->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 329
        $this->startRendering(self::RENDERING_PARTIAL, $parsedPartial, $renderingContext);
        if ($sectionName !== null) {
            $output = $this->renderSection($sectionName, $variables, $ignoreUnknown);
        } else {
            $output = $parsedPartial->render($renderingContext);
        }
        $this->stopRendering();
        return $output;
    }
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial('BackendLayouts/OneCol', null, array('settings' => array('expandedContent' => '0', 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'fontawesome' => array('pagetitle' => '1'), 'pagebrowser' => array('enable' => '0'), 'navbar' => array('searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'image' => array('defaultPath' => 'fileadmin/tos.info/images/allgemein/logo-tos.info.svg', 'width' => '50', 'height' => '28', 'altText' => 'Company Logo'), 'subdropdown' => array('twoColumns' => '30')), 'pages' => array('override' => array('smallColumns' => '', 'breakpoint' => '')), 'config' => array('uid' => '3', 'company' => '0', 'homepageUid' => '242', 'pageTitle' => 'jumbotron', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '4', 'navbarBrand' => 'imgText', 'navbarbrandAlignment' => '{$bootstrap.config.navbarbrandAlignment}', 'navbarImage' => '0', 'navbarColor' => 'dark', 'navbarBackground' => 'transparent', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarInnercontainer' => '{$bootstrap.config.navbarInnercontainer}', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'left', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'md', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => '0', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '0', 'breadcrumbFaicon' => '0', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => '0', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '99', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '1', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-white text-light', 'footerPid' => '244', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => 'pt-5', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '2', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '0', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch' => array('targetPid' => '')), 'be_layout' => 'OneCol', 'loginForm' => '<!--INT_SCRIPT.2cd4fe9e42876dcdd9957dee2ab41cb3-->', 'data' => array('uid' => 255, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 10, 'tstamp' => 1620931016, 'sorting' => 1272, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1519071277, 'cruser_id' => 4, 'hidden' => 0, 'title' => 'News', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'News from TOS Dienste International e.V., our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Welcome to our newsblog at TOS Dienste International e.V. Read about the latest developments in our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1626116885, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 255, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";N;s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/news', 'legacy_overlay_uid' => 218, 'l10n_parent' => 255, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1418, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'currentValue_kidjls9dksoje' => 'OneCol'), 'current' => 'OneCol', 'navbarMenu' => array(array('data' => array('uid' => 304, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621604846, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621604647, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'About us', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'work with children, social organizations, work with children south america, non-profit organization, children\'s charity, work with drug addicts, work with street children, christian charity, christian aid organization, rehabilitation center eastern europe, team, employees', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => ' ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621604846, 'abstract' => 'e are a Christian charity, and as part of TOS Ministries we are working among street children, drug addicts, and destitute, who are transformed through the love of God, enabling them to transform their societies from inside.', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 304, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:9:"Über uns";s:4:"slug";s:10:"/ueber-uns";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:282:"Die TOS Dienste International e.V. sind ein christliches Hilfswerk, das als Teil des TOS Werkes unter Straßenkindern, Drogenabhängigen und Bedürftigen arbeitet, die durch die Liebe Gottes verändert und befähigt worden sind, ihre Gesellschaft von innen heraus zu transformieren.";s:8:"keywords";s:282:"Arbeit mit Kindern, soziale Organisationen, Arbeit mit Kindern Südamerika, Non-profit-Organisation, Kinderhilfswerk, Arbeit mit Drogenabhängigen, Arbeit mit Straßenkindern, christliches Hilfswerk, christliche Hilfsorganisation, Rehabilitationszentrum Osteuropa, Team, Mitarbeiter";s:11:"description";s:315:"Wir sind eine internationale, christliche Hilfsorganisation für Straßenkinder und Drogenabhängige. Unsere Einrichtungen befinden sich Lateinamerika, Ost- und Südeuropa. Erfahren Sie, was uns antreibt und lernen Sie unsere Teams vor Ort kennen. Außerdem stellen wir Ihnen die Ansprechpartner in Deutschland vor.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-ueber-uns', 'legacy_overlay_uid' => 0, 'l10n_parent' => 304, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2154, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'About us', 'link' => '/en/translate-to-english-ueber-uns', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 305, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 768, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1530698399, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Branches', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a sponsor, humanitarian aid, rehabilitation centers, rehab center, rehabilitation center Eastern Europe, help in crisis areas, therapy for drug addicts, work with street children, humanitarian aid in crisis areas, street kids, help for children', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'We are developing social services for street children in South America and offering therapy to drug addicts in Belarus, Russia and Greece. Learn more about our work.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 305, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches', 'legacy_overlay_uid' => 306, 'l10n_parent' => 305, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1476, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Branches', 'link' => '/en/branches', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 310, 'pid' => 305, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1627651240, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623405941, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Street Children', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a sponsor, humanitarian aid, rehabilitation centers, rehab center, rehabilitation center Eastern Europe, help in crisis areas, therapy for drug addicts, work with street children, humanitarian aid in crisis areas, street kids, help for children, day care centers, Holy Spirit, volunteers, orphanages, homes for street children, transformation, mission, South America', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In order for street children in Latin America to break out of poverty and violence, they need a protected environment in which they can be supported. That is why we have built children\'s homes, a day care center and prevention programs in Argentina, Bolivia, Ecuador, Paraguay and Peru. We are looking for sponsors and donors for this work.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1627651240, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 310, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:42:{s:7:"doktype";i:1;s:5:"title";s:62:"Straßenkindern Zukunft geben - TOS Dienste International e.V.";s:4:"slug";s:15:"/strassenkinder";s:9:"nav_title";s:14:"Straßenkinder";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:338:"Pate werden, Straßenkinder, Hilfsangebote für Kinder, Präventionsarbeit, Kindertagesstätte in Südamerika, Patenschaft für Straßenkinder, Straßenkinder in Lateinamerika, Kinderheime in Lateinamerika, Hilfsangebote für Straßenkinder, Freiwilligenarbeit Kinderheim Südamerika, Transformation, Mission, Heiliger Geist, Veränderung";s:11:"description";s:161:"Straßenkinder in Lateinamerika brauchen Hilfe. Mit Kinderhäusern, KiTa und Präventionsarbeit eröffnen wir solchen Kindern eine Zukunft. Helfen Sie uns dabei.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:8:"editlock";i:0;s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/translate-to-english-strassenkindern-zukunft-geben-tos-dienste-international-ev', 'legacy_overlay_uid' => 0, 'l10n_parent' => 310, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2169, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Street Children', 'link' => '/en/branches/translate-to-english-strassenkindern-zukunft-geben-tos-dienste-international-ev', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 313, 'pid' => 310, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1620390703, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Transformation Houses', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '[Translate to English:] Straßenkinder, Hilfsangebote für Kinder, Kinderheime in Lateinamerika, Hilfsangebote für Straßenkinder, Freiwilligenarbeit, Kinderhäuser Lateinamerika, Kinderheim Südamerika, Peru, Paraguay, Ecuador, Argentinien, Bolivien, Slumkinder, arme Kinder, Mission, Hilfe für Kinder, Transformation', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '[Translate to English:] In Lateinamerika gibt es 40 Mio. Straßenkinder, für die wir 50 Kinderhäuser aufbauen wollen, damit sie aus dem Kreislauf von Armut, Gewalt und Hoffnungslosigkeit ausbrechen und zu Hoffnungsträgern ihrer Gesellschaft werden.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 313, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"custom","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:42:{s:7:"doktype";i:1;s:5:"title";s:22:"Transformatorenhäuser";s:4:"slug";s:52:"/arbeitszweige/strassenkinder/transformatorenhaeuser";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:296:"Straßenkinder, Hilfsangebote für Kinder, Kinderheime in Lateinamerika, Hilfsangebote für Straßenkinder, Freiwilligenarbeit, Kinderhäuser Lateinamerika, Kinderheim Südamerika, Peru, Paraguay, Ecuador, Argentinien, Bolivien, Slumkinder, arme Kinder, Mission, Hilfe für Kinder, Transformation";s:11:"description";s:227:"In Lateinamerika gibt es 40 Mio. Straßenkinder, für die wir 50 Kinderhäuser aufbauen wollen, damit sie aus dem Kreislauf von Armut, Gewalt und Hoffnungslosigkeit ausbrechen und zu Hoffnungsträgern ihrer Gesellschaft werden.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:9:"no_search";i:0;s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:8:"editlock";i:0;s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/strassenkinder/translate-to-english-transformatorenhaeuser', 'legacy_overlay_uid' => 0, 'l10n_parent' => 313, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1998, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Transformation Houses', 'link' => '/en/strassenkinder/translate-to-english-transformatorenhaeuser', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 315, 'pid' => 310, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623401646, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623401517, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Day Care Center', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'day care center, work with small children, day care centre in poor area, day care center in South America, street children, help for children, Argentina, street children, mission, transformation, poor children, slum children, children\'s charity, sponsorship, Salta, Jujuy', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Latin America, there are 40 million street children for whom we are building day care centers so that they can break out of the cycle of poverty, violence and hopelessness and become beacons of hope in their society.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623401646, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 315, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:18:"Kindertagesstätte";s:4:"slug";s:48:"/arbeitszweige/strassenkinder/kindertagesstaette";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:266:"Kindertagesstätte, Arbeit mit Kleinkindern, KiTa im Armenviertel, Kindertagesstätte in Südamerika, Straßenkinder, Hilfsangebote für Kinder, Argentinien, Straßenkinder, Mission, Transformation, arme Kinder, Slumkinder, Kinderhilfswerk, Patenschaft, Salta, Jujuy";s:11:"description";s:223:"In Lateinamerika gibt es 40 Mio. Straßenkinder, für die wir Kindertagesstätten aufbauen, damit sie aus dem Kreislauf von Armut, Gewalt und Hoffnungslosigkeit ausbrechen und zu Hoffnungsträgern ihrer Gesellschaft werden.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/strassenkinder/translate-to-english-kindertagesstaette', 'legacy_overlay_uid' => 0, 'l10n_parent' => 315, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2166, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Day Care Center', 'link' => '/en/strassenkinder/translate-to-english-kindertagesstaette', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 314, 'pid' => 310, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623415030, 'sorting' => 640, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623414824, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Drug and Crime Prevention', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Street children, creative workshops, aid for children, prevention work, sponsorship for street children, street children in Latin America, aid for street children, prevention work South America, educational workshops, slum children, transformation, mission, Holy Spirit, Ecuador, Bolivia, Peru, Paraguay, Guayaquil, Lima, Sucre, South America, sponsorship', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'There are 40 million street children in Latin America for whom we are building prevention work so that they can break out of the cycle of poverty, violence and hopelessness and become beacons of hope in their society.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623415030, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 314, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:18:"Präventionsarbeit";s:4:"slug";s:48:"/arbeitszweige/strassenkinder/praeventionsarbeit";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:371:"Straßenkinder, kreative Workshops, Hilfsangebote für Kinder, Präventionsarbeit, Patenschaft für Straßenkinder, Straßenkinder in Lateinamerika, Hilfsangebote für Straßenkinder, Präventionsarbeit Südamerika, Bildungsworkshops, Slumkinder, Transformation, Mission, Heiliger Geist, Ecuador, Bolivien, Peru, Paraguay, Guayaquil, Lima, Sucre, Südamerika, Patenschaft";s:11:"description";s:224:"In Lateinamerika gibt es 40 Mio. Straßenkinder, für die wir Präventionsarbeiten aufbauen, damit sie aus dem Kreislauf von Armut, Gewalt und Hoffnungslosigkeit ausbrechen und zu Hoffnungsträgern ihrer Gesellschaft werden.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/branches/translate-to-english-strassenkindern-zukunft-geben-tos-dienste-international-ev/translate-to-english-praeventionsarbeit', 'legacy_overlay_uid' => 0, 'l10n_parent' => 314, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2170, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Drug and Crime Prevention', 'link' => '/en/branches/translate-to-english-strassenkindern-zukunft-geben-tos-dienste-international-ev/translate-to-english-praeventionsarbeit', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 311, 'pid' => 305, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1530894157, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Rehab', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'free of drugs, becoming a sponsor, aftercare, sponsorship, outpatient rehabilitation, drug addiction, rehabilitation work in Eastern Europe, drug rehabilitation, therapy for drug addicts, inpatient drug rehabilitation, contact work, transformation, Belarus, Greece, Russia, mission, addicts changed, rehab center', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In order for drug addicts in Southern and Eastern Europe to be able to conquer their addiction, they need intensive and sustainable therapy. That is why we have set up an inpatient rehabilitation facility and outpatient rehabilitation services in Belarus, Russia and Greece. We are looking for sponsors and donors for this work.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 311, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/rehab', 'legacy_overlay_uid' => 316, 'l10n_parent' => 311, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1486, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Rehab', 'link' => '/en/branches/rehab', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 316, 'pid' => 311, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531150210, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Contact Stage', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 316, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/rehab/contact-stage', 'legacy_overlay_uid' => 317, 'l10n_parent' => 316, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1487, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Contact Stage', 'link' => '/en/branches/rehab/contact-stage', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 317, 'pid' => 311, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531150597, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Stationary Drug Rehab', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 317, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/rehab/stationary-drug-rehab', 'legacy_overlay_uid' => 318, 'l10n_parent' => 317, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1488, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Stationary Drug Rehab', 'link' => '/en/branches/rehab/stationary-drug-rehab', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 318, 'pid' => 311, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 768, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531150839, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Third Stage & Follow-Up', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 318, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/rehab/third-stage-follow-up', 'legacy_overlay_uid' => 319, 'l10n_parent' => 318, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1489, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Third Stage & Follow-Up', 'link' => '/en/branches/rehab/third-stage-follow-up', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 319, 'pid' => 305, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623416446, 'sorting' => 640, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623416241, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Humanitarian Aid', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'humanitarian aid, emergency aid, aid in crisis areas, humanitarian aid in crisis areas, relief operations, aid transport, refugee aid in crisis areas, mission, crisis, war zone, sustainable development, rapid intervention, Iraq, Eastern Europe, Israel, Belarus, Kosovo, Peru, earthquake, flood, Estonia, Paraguay, fire disaster, Haiti', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In addition to our long-term projects for street children and drug addicts, we get involved in humanitarian crisis situations. We organize aid transports and provide spontaneous humanitarian aid ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623416446, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 319, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:17:"Humanitäre Hilfe";s:4:"slug";s:32:"/arbeitszweige/humanitaere-hilfe";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:372:"humanitäre Hilfe, Soforthilfe, Hilfe in Krisengebieten, humanitäre Hilfe in Krisengebieten, Hilfseinsätze, Hilfsgütertransporte, Flüchtlingshilfe in Krisengebieten, Mission, Krise, Kriegsgebiet, nachhaltige Entwicklung, schnelle Intervention, Irak, Ost-Europa, Israel, Weißrussland, Kosovo, Peru, Erdbeben, Überschwemmung, Estland, Paraguay, Brandkatastrophe, Haiti";s:11:"description";s:221:"Zusätzlich zu unseren langfristigen Projekten für Straßenkinder und Drogenabhängige engagieren wir uns in humanitären Krisensituationen. Wir organisieren Hilfsgütertransporte und leisten spontane humanitäre Hilfe. ";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/branches/translate-to-english-humanitaere-hilfe', 'legacy_overlay_uid' => 0, 'l10n_parent' => 319, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2172, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Humanitarian Aid', 'link' => '/en/branches/translate-to-english-humanitaere-hilfe', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 320, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620992819, 'sorting' => 928, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1620992709, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Worldwide', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'social projects, year abroad, IJFD, international aid projects, voluntary service abroad, voluntary service Russia, voluntary service Peru, voluntary service Greece, voluntary service Belarus, voluntary service Ecuador', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1620992819, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 320, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:8:"Weltweit";s:4:"slug";s:9:"/weltweit";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:237:"soziale Projekte, Auslandsjahr, IJFD, internationale Hilfsprojekte, Freiwilligendienst ausland, Freiwilligendienst Russland, Freiwilligendienst Peru, Freiwilligendienst Griechenland, Freiwilligendienst Belarus, Freiwilligendienst Ecuador";s:11:"description";s:0:"";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit', 'legacy_overlay_uid' => 0, 'l10n_parent' => 320, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2130, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Worldwide', 'link' => '/en/translate-to-english-weltweit', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 321, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620998047, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1620997976, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Argentina', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'social projects, Argentina, day care center, work with small children KiTa in poor area, day care center in South America, street children, help for children, poor children, slum children', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Argentina, we provide daycare for children from Juju\'s poor neighborhoods.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620998047, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 321, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:11:"Argentinien";s:4:"slug";s:12:"/argentinien";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:198:"soziale Projekte, Argentinien, Kindertagesstätte, Arbeit mit Kleinkindern KiTa im Armenviertel, Kindertagesstätte in Südamerika, Straßenkinder, Hilfsangebote für Kinder, arme Kinder, Slumkinder";s:11:"description";s:99:"In Argentinien bieten wir Kindern aus den Armenvierteln Jujuys Betreuung in der Kindertagesstätte.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-argentinien', 'legacy_overlay_uid' => 0, 'l10n_parent' => 321, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2131, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Argentina', 'link' => '/en/translate-to-english-weltweit/translate-to-english-argentinien', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 322, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621000102, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621000039, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Bolivia', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'social projects, volunteer service in Bolivia, street children, aid for children, children\'s homes in Latin America, aid for street children, volunteer work, children\'s homes Latin America, children\'s home South America street children, prevention work, prevention work South America, poverty, child labor', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Bolivien bieten wir Straßenkindern ein neues Zuhause im Transformatorenhaus in Sucre.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621000102, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 322, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:8:"Bolivien";s:4:"slug";s:9:"/bolivien";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:317:"soziale Projekte, Freiwilligendienst in Bolivien, Straßenkinder, Hilfsangebote für Kinder, Kinderheime in Lateinamerika, Hilfsangebote für Straßenkinder, Freiwilligenarbeit, Kinderhäuser Lateinamerika, Kinderheim Südamerika Straßenkinder, Präventionsarbeit, Präventionsarbeit Südamerika, Armut, Kinderarbeit";s:11:"description";s:89:"In Bolivien bieten wir Straßenkindern ein neues Zuhause im Transformatorenhaus in Sucre.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-bolivien', 'legacy_overlay_uid' => 0, 'l10n_parent' => 322, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2132, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Bolivia', 'link' => '/en/translate-to-english-weltweit/translate-to-english-bolivien', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 323, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621001710, 'sorting' => 768, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621001656, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Ecuador', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'creative workshops, work with children, prevention work, volunteer service in Ecuador, humanitarian aid, mission, street children, slum, poor children, transformation, Guayaquil, Manabi, slums', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Ecuador, we offer creative recreational programs for slum children in Guayaquil and Abdón Calderón/Manabi.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621001710, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 323, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:7:"Ecuador";s:4:"slug";s:17:"/weltweit/ecuador";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:217:"kreative Workshops, Arbeit mit Kindern, Präventionsarbeit, Freiwilligendienst in Ecuador, humanitäre Hilfe, Mission, Straßenkinder, Slum, arme Kinder, Heiliger Geist, Transformation, Guayaquil, Manabi, Armenviertel";s:11:"description";s:109:"In Ecuador bieten wir in Guayaquil und Abdón Calderón/Manabi kreatives Freizeitprogramm für Slumkinder an.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-ecuador', 'legacy_overlay_uid' => 0, 'l10n_parent' => 323, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2133, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Ecuador', 'link' => '/en/translate-to-english-weltweit/translate-to-english-ecuador', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 324, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621003485, 'sorting' => 1024, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621002601, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Paraguay', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Volunteer service in Paraguay, prevention work, children\'s homes in Latin America, aid for children, street children, poor children, children\'s home Paraguay, change, transformation ', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Paraguay, we offer creative recreational programs for slum children in Ñemby.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621003485, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 324, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:8:"Paraguay";s:4:"slug";s:9:"/paraguay";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:221:"Freiwilligendienst in Paraguay, Präventionsarbeit, Kinderhäuser in Lateinamerika, Hilfsangebote für Kinder, Straßenkinder, arme Kinder, Kinderheim Paraguay, Veränderung, Transformation, Liebe Gottes, Heiliger Geist ";s:11:"description";s:90:"In Paraguay bieten wir Straßenkindern ein neues Zuhause im Transformatorenhaus in Ñemby.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-paraguay', 'legacy_overlay_uid' => 0, 'l10n_parent' => 324, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2134, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Paraguay', 'link' => '/en/translate-to-english-weltweit/translate-to-english-paraguay', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 325, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621003622, 'sorting' => 1280, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621003542, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Peru', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Volunteer service in Peru, prevention work, children\'s homes in Latin America, aid for children, street children, poor children, children\'s home Paraguay, change, transformation, Lima, Peru', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Peru we offer street children a new home in ourTransformation House in Lima', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621003622, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 325, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:4:"Peru";s:4:"slug";s:5:"/peru";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:212:"kreative Workshops, Freiwilligendienst Peru, Kinderhäuser in Südamerika, Straßenkinder, Hilfsangebote für Kinder, Präventionsarbeit, arme Kinder, Liebe Gottes, Mission, Heiliger Geist, Kinderheim, Lima, Peru";s:11:"description";s:84:"In Peru bieten wir Straßenkindern ein neues Zuhause im Transformatorenhaus in Lima.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-peru', 'legacy_overlay_uid' => 0, 'l10n_parent' => 325, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2135, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Peru', 'link' => '/en/translate-to-english-weltweit/translate-to-english-peru', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 327, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623418904, 'sorting' => 1344, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623418692, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Greece', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'free from drugs, outpatient therapy, defeat addiction, contact work in Greece, drug addicts in southern Europe, love of God, Holy Spirit, transformation, mission, edge of society, addiction', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Griechenland bieten wir Drogenabhängigen und armen Menschen in Thessaloniki ambulante Hilfe.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623418904, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 327, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:12:"Griechenland";s:4:"slug";s:13:"/griechenland";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:211:"frei von Drogen, ambulante Therapie, die Sucht besiegen, Kontaktarbeit in Griechenland, Drogenabhängige in Südeuropa, Liebe Gottes, Heiliger Geist, Transformation, Mission, Rand der Gesellschaft, Abhängigkeit";s:11:"description";s:96:"In Griechenland bieten wir Drogenabhängigen und armen Menschen in Thessaloniki ambulante Hilfe.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-griechenland', 'legacy_overlay_uid' => 0, 'l10n_parent' => 327, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2173, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Greece', 'link' => '/en/translate-to-english-weltweit/translate-to-english-griechenland', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 326, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623420578, 'sorting' => 1536, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623420525, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Russia', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'free from drugs, defeat addiction, outpatient rehab, drug addiction, drug rehab, therapy for drug addicts, inpatient drug rehab, contact work, outpatient therapy, contact work in Russia, outpatient counseling, rehab work in Eastern Europe, Holy Spirit, mission, transformation, love of God, addiction, ', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Russia, we provide outpatient help to drug addicts and those seeking help in Siberia.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623420578, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 326, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:8:"Russland";s:4:"slug";s:9:"/russland";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:319:"frei von Drogen, die Sucht besiegen, ambulante Reha, Drogenabhängigkeit, Drogenreha, Therapie für Drogenabhängige, stationäre Drogenreha, Kontaktarbeit, ambulante Therapie, Kontaktarbeit in Russland, ambulante Beratung, Rehaarbeit in Osteuropa, Heiliger Geist, Mission, Transformation, Liebe Gottes, Abhängigkeit, ";s:11:"description";s:88:"In Russland bieten wir Drogenabhängigen und Hilfesuchenden in Sibirien ambulante Hilfe.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-russland', 'legacy_overlay_uid' => 0, 'l10n_parent' => 326, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2174, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Russia', 'link' => '/en/translate-to-english-weltweit/translate-to-english-russland', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 328, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623998470, 'sorting' => 1792, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623998395, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Belarus', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'free from drugs, aftercare, defeat addiction, integration into society, drug addiction, rehab work in Eastern Europe, therapy for drug addicts, inpatient drug rehab, contact work, outpatient rehab in Belarus, rehabilitation center, rehab work in Eastern Europe, help for drug addicts, aftercare drug rehab, addicts, transformation, Holy Spirit,', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Belarus, we provide outpatient and inpatient drug rehabilitation to drug addicts from all over the country.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623998470, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 328, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:13:"Weißrussland";s:4:"slug";s:14:"/weissrussland";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:375:"frei von Drogen, Nachsorge, die Sucht besiegen, Integration in die Gesellschaft, Drogenabhängigkeit, Rehaarbeit in Osteuropa, Therapie für Drogenabhängige, stationäre Drogenreha, Kontaktarbeit, Ambulante Reha in Weißrussland, Rehabilitationszentrum, Rehaarbeit in Osteuropa, Hilfe für Drogenabhängige, Nachsorge Drogenreha, Abhängige, Transformation, Heiliger Geist, ";s:11:"description";s:113:"In Weißrussland bieten wir Drogenabhängigen aus dem ganzen Land ambulante und stationäre Drogenrehabilitation.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-weissrussland', 'legacy_overlay_uid' => 0, 'l10n_parent' => 328, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2184, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Belarus', 'link' => '/en/translate-to-english-weltweit/translate-to-english-weissrussland', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 329, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 1184, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1530700954, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Donate & Get Involved', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a sponsor, become a volunteer, donate, support needy persons, year abroad, Sponsorship, IJFD, volunteer service, street kids, compare child sponsorship, child sponsorship', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 329, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved', 'legacy_overlay_uid' => 308, 'l10n_parent' => 329, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1478, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Donate & Get Involved', 'link' => '/en/donate-get-involved', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 331, 'pid' => 329, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531408302, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Sponsorships', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 331, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/sponsorships', 'legacy_overlay_uid' => 331, 'l10n_parent' => 331, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1501, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Sponsorships', 'link' => '/en/donate-get-involved/sponsorships', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 332, 'pid' => 329, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1624021820, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1624021782, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Donate', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Donate, donate online, donation form, social organization, Christian relief organization, mission, do something good, donate easily, donate quickly, tax exempt', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Donate for sustainable long-term projects of your choice.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1624021820, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 332, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:7:"Spenden";s:4:"slug";s:26:"/spenden-mitmachen/spenden";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:152:"Spende, online spenden, Spendenformular, soziale Organisation, christliche Hilfsorganisation, Mission, etwas Gutes tun, einfach spenden, schnell spenden";s:11:"description";s:63:"Spenden Sie für nachhaltige, langfristige Projekte Ihrer Wahl.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/donate-get-involved/translate-to-english-spenden', 'legacy_overlay_uid' => 0, 'l10n_parent' => 332, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2188, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Donate', 'link' => '/en/donate-get-involved/translate-to-english-spenden', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 421, 'pid' => 332, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531900896, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Online Donations', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 421, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-2', 'legacy_overlay_uid' => 334, 'l10n_parent' => 421, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1504, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Online Donations', 'link' => '/en/donate-2', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 848, 'pid' => 329, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1625825985, 'sorting' => 640, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1624011381, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Scholarships', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Donate for study scholarship, career start, street children, future, study, university, non-profit, young talent development', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'TOS Ministries International e.V. is an international Christian aid organization working among street children, drug addicts and the needy. In Latin America, we build social ministries among street children; in Belarus, Russia and Greece, we provide therapies for drug addicts. For our charitable work we are looking for sponsors, donors and volunteers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1625825985, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 848, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:17:"Studienstipendium";s:4:"slug";s:36:"/spenden-mitmachen/studienstipendium";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:134:"Spenden für ein Studienstipendium, Berufseinstieg, Straßenkinder, Zukunft, Studium, Universität, gemeinnützig, Nachwuchsförderung";s:11:"description";s:395:"TOS Dienste International e.V. ist eine internationale christliche Hilfsorganisation, die unter Straßenkindern, Drogenabhängigen und Bedürftigen arbeitet. In Lateinamerika bauen wir soziale Dienste unter Straßenkindern auf; in Weißrussland, Russland und Griechenland bieten wir Therapien für Drogenabhängige an. Für unsere gemeinnützige Arbeit suchen wir Paten, Spender und Freiwillige.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/donate-get-involved/translate-to-english-studienstipendium', 'legacy_overlay_uid' => 0, 'l10n_parent' => 848, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2187, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Scholarships', 'link' => '/en/donate-get-involved/translate-to-english-studienstipendium', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 333, 'pid' => 329, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1624625103, 'sorting' => 768, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1624624951, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Volunteer', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a volunteer, support needy people, year abroad, IJFD, ijfd einsatzstellen, volunteer service, volunteer assignment, volunteer service israel, volunteer service latin america, volunteer service belarus, mission assignment, mission, change the world, street children, aid projects, drug addicts, disabled people, adi, adi Israel, people with disabilities, March of Life Israel, Pro Israel, young people, social service ', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '[Translate to English:] Gelegenheiten zum internationalen Mitarbeiten für Jung & Älter. Soziale Dienste unter Drogenabhängigen, Straßenkindern oder Menschen mit Behinderungen in Ost-Europa, Lateinamerika und Israel.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1624625103, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 333, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:19:"Freiwilligendienste";s:4:"slug";s:38:"/spenden-mitmachen/freiwilligendienste";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:456:"Freiwilliger werden, Unterstützung bedürftiger Personen, Auslandsjahr, IJFD, ijfd einsatzstellen, Freiwilligendienst, Freiwilligeneinsatz, freiwilligendienst israel, freiwilligendienst lateinamerika, freiwilligendienst weißrussland, Missionseinsatz, Mission, Welt verändern, Straßenkinder, Hilfsprojekte, Drogenabhängige, Behinderte, Aleh, Aleh Israel, Menschen mit Behinderungen, Marsch des Lebens Israel, Pro Israel, junge Menschen, sozialer Dienst";s:11:"description";s:195:"Gelegenheiten zum internationalen Mitarbeiten für Jung & Älter. Soziale Dienste unter Drogenabhängigen, Straßenkindern oder Menschen mit Behinderungen in Ost-Europa, Lateinamerika und Israel.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/donate-get-involved/translate-to-english-freiwilligendienste', 'legacy_overlay_uid' => 0, 'l10n_parent' => 333, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2189, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Volunteer', 'link' => '/en/donate-get-involved/translate-to-english-freiwilligendienste', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 414, 'pid' => 333, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 128, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531902498, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'South America', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 414, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/volunteer/south-america', 'legacy_overlay_uid' => 335, 'l10n_parent' => 414, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1505, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'South America', 'link' => '/en/donate-get-involved/volunteer/south-america', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 415, 'pid' => 333, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 192, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531914515, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Israel', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 415, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/volunteer/israel', 'legacy_overlay_uid' => 336, 'l10n_parent' => 415, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1506, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Israel', 'link' => '/en/donate-get-involved/volunteer/israel', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 416, 'pid' => 333, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 224, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531914679, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Belarus', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 416, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/volunteer/belarus', 'legacy_overlay_uid' => 337, 'l10n_parent' => 416, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1507, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Belarus', 'link' => '/en/donate-get-involved/volunteer/belarus', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 417, 'pid' => 333, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 384, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531914821, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Testimonials', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 417, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/volunteer/testimonials', 'legacy_overlay_uid' => 338, 'l10n_parent' => 417, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1508, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Testimonials', 'link' => '/en/donate-get-involved/volunteer/testimonials', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))))), array('data' => array('uid' => 255, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 10, 'tstamp' => 1620931016, 'sorting' => 1272, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1519071277, 'cruser_id' => 4, 'hidden' => 0, 'title' => 'News', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'News from TOS Dienste International e.V., our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Welcome to our newsblog at TOS Dienste International e.V. Read about the latest developments in our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1626116885, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 255, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";N;s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/news', 'legacy_overlay_uid' => 218, 'l10n_parent' => 255, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1418, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'News', 'link' => '/en/news', 'target' => '', 'active' => 1, 'current' => 1, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 259, 'pid' => 255, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1627636152, 'sorting' => 64, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1627635782, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Subscribe', 'doktype' => 3, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => 'en/news/#c30412', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 2, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 259, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"custom","url":"custom","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:3;s:5:"title";s:23:"Publikationen bestellen";s:4:"slug";s:29:"/news/publikationen-bestellen";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:3:"url";s:13:"/news/#c30411";s:8:"abstract";N;s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:2;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:8:"nav_hide";i:0;}', 'slug' => '/news/translate-to-english-publikationen-bestellen', 'legacy_overlay_uid' => 0, 'l10n_parent' => 259, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2195, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Subscribe', 'link' => 'https://dev.tos-ministries.tos.info/en/news/#c30412', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 330, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 1792, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1530706960, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Contact', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 330, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/contact', 'legacy_overlay_uid' => 309, 'l10n_parent' => 330, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1479, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Contact', 'link' => '/en/contact', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0)), 'breadcrumb' => array(array('data' => array('uid' => 242, 'pid' => 0, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1624005779, 'sorting' => 1088, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1624005681, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'TOS Ministries International are a Christian charity', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 1, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => null, 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a sponsor, humanitarian aid, rehabilitation centers, rehab center, rehabilitation center Eastern Europe, help in crisis areas, therapy for drug addicts, work with street children, humanitarian aid in crisis areas, street kids, help for children, work with children, social organization, aid work, work with children South America, non-profit organization, children\'s relief organization, work with drug addicts, work with street kids, Christian relief organization, rehabilitation center Eastern Europe', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'TOS Dienste International e.V. is an international Christian aid and relief organization working among street children, drug addicts and the needy. In South America we build social ministries among street children; in Belarus, Russia and Greece we offer therapy for drug addicts. For our charitable work we are looking for sponsors, donors and volunteers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1624005779, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 242, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:66:"Die TOS Dienste International e.V. sind ein christliches Hilfswerk";s:4:"slug";s:1:"/";s:9:"nav_title";s:18:"tos-ministries.org";s:8:"subtitle";s:0:"";s:8:"abstract";N;s:8:"keywords";s:261:"Arbeit mit Kindern, soziale Organisation, Arbeit mit Kindern Südamerika, Non-profit-Organisation, Kinderhilfswerk, Arbeit mit Drogenabhängigen, Arbeit mit Straßenkindern, christliches Hilfswerk, christliche Hilfsorganisation, Rehabilitationszentrum Osteuropa";s:11:"description";s:395:"TOS Dienste International e.V. ist eine internationale christliche Hilfsorganisation, die unter Straßenkindern, Drogenabhängigen und Bedürftigen arbeitet. In Lateinamerika bauen wir soziale Dienste unter Straßenkindern auf; in Weißrussland, Russland und Griechenland bieten wir Therapien für Drogenabhängige an. Für unsere gemeinnützige Arbeit suchen wir Paten, Spender und Freiwillige.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:1;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/', 'legacy_overlay_uid' => 0, 'l10n_parent' => 242, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2185, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, '_MP_PARAM' => '', 'isSpacer' => false), 'title' => 'TOS Ministries International are a Christian charity', 'link' => '/en/', 'target' => '', 'active' => 1, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 255, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 10, 'tstamp' => 1620931016, 'sorting' => 1272, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1519071277, 'cruser_id' => 4, 'hidden' => 0, 'title' => 'News', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => null, 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'News from TOS Dienste International e.V., our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Welcome to our newsblog at TOS Dienste International e.V. Read about the latest developments in our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1626116885, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 255, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";N;s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/news', 'legacy_overlay_uid' => 218, 'l10n_parent' => 255, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1418, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, '_MP_PARAM' => '', 'isSpacer' => false), 'title' => 'News', 'link' => '/en/news', 'target' => '', 'active' => 1, 'current' => 1, 'spacer' => 0)), 'languageNavigation' => array(array('languageId' => 0, 'locale' => 'de_DE.UTF-8', 'title' => 'Deutsch', 'navigationTitle' => 'Deutsch', 'twoLetterIsoCode' => 'de', 'hreflang' => 'de-DE', 'direction' => '', 'flag' => 'flags-de', 'link' => '/news?tx_news_pi1%5BoverwriteDemand%5D%5Bcategories%5D=78&cHash=5e4177c7b94d55fdbfaa7bd5a73d1c2f', 'active' => 0, 'current' => 0, 'available' => 1), array('languageId' => 1, 'locale' => 'en_US.UTF-8', 'title' => 'English', 'navigationTitle' => 'English', 'twoLetterIsoCode' => 'en', 'hreflang' => 'en-US', 'direction' => '', 'flag' => 'flags-us', 'link' => '/en/news?tx_news_pi1%5BoverwriteDemand%5D%5Bcategories%5D=78&cHash=5e4177c7b94d55fdbfaa7bd5a73d1c2f', 'active' => 1, 'current' => 0, 'available' => 1), array('languageId' => 3, 'locale' => 'es_ES.UTF-8', 'title' => 'español', 'navigationTitle' => 'español', 'twoLetterIsoCode' => 'es', 'hreflang' => 'es-ES', 'direction' => '', 'flag' => 'flags-es', 'link' => '', 'active' => 0, 'current' => 0, 'available' => 0), array('languageId' => 2, 'locale' => 'ru_RU.UTF-8', 'title' => 'русский', 'navigationTitle' => 'русский', 'twoLetterIsoCode' => 'ru', 'hreflang' => 'ru-RU', 'direction' => '', 'flag' => 'flags-ru', 'link' => '', 'active' => 0, 'current' => 0, 'available' => 0)), 'config' => array('general' => array('company' => '0', 'homepageUid' => '242', 'pageTitle' => 'jumbotron', 'pageTitlealign' => 'center', 'pageTitleclass' => ''), 'lang' => array('uid' => array(0, 1, 3, 2), 'hreflang' => array('de-DE', 'en-US', 'es-ES', 'ru-RU'), 'title' => array('Deutsch', 'English', 'español', 'русский'), 'flag' => array('flags-de', 'flags-us', 'flags-es', 'flags-ru')), 'navbar' => array('dropdownAnimate' => '', 'dropdownAnimateValue' => 4, 'enable' => 'light', 'sectionMenu' => '', 'brand' => 'imgText', 'brandAlignment' => '{$bootstrap.config.navbarbrandAlignment}', 'hover' => ' dropdown-hover', 'clickableparent' => '1', 'navbarPlusicon' => 0, 'image' => 'fileadmin/tos.info/images/allgemein/logo-tos.info.svg', 'toggler' => 'right', 'containerposition' => 'inside', 'container' => 'container', 'innercontainer' => '{$bootstrap.config.navbarInnercontainer}', 'breakpoint' => 'md', 'shrinkColorschemes' => 'bg-white', 'colorschemes' => 'bg-dark', 'shrinkColor' => 'navbar-light', 'color' => 'navbar-light', 'class' => 'navbar-light navbar-expand-md shrink py-2 bg-dark clickableparent navbarHover fixed-top', 'dropdown' => 'dropdown', 'spacer' => '0', 'megamenu' => '0', 'placement' => 'fixed-top', 'sticky' => false, 'alignment' => 'left', 'mauto' => ' me-auto', 'offcanvas' => '1', 'offcanvasBgColorClass' => 'bg-dark', 'offcanvasTitleColor' => 'rgba(0, 0, 0, 0.75)', 'offcanvasCross' => 'dark', 'navbarAlignment' => 'start', 'offcanvasAlign' => 'end', 'animatedToggler' => '0'), 'jumbotron' => array('enable' => '1', 'slide' => '0', 'position' => 'below', 'container' => 'container', 'containerposition' => 'Inside', 'class' => ' '), 'breadcrumb' => array('class' => ''), 'footer' => array('enable' => '1', 'sticky' => '0', 'fluid' => '1', 'slide' => '0', 'container' => 'container', 'containerposition' => 'Inside', 'class' => 'bg-white text-light')), 'colAside' => 3, 'colMain' => 9, 'gridBreakpoint' => 'md', 'navbarBreakpoint' => 'md'), false)
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 141
            $renderingContext = clone $renderingContext;
            $renderingContext->getVariableProvider()->setSource($variables);
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => null, 'partial' => 'BackendLayouts/OneCol', 'delegate' => null, 'renderable' => null, 'arguments' => array('settings' => array('expandedContent' => '0', 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'fontawesome' => array('pagetitle' => '1'), 'pagebrowser' => array('enable' => '0'), 'navbar' => array('searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'image' => array('defaultPath' => 'fileadmin/tos.info/images/allgemein/logo-tos.info.svg', 'width' => '50', 'height' => '28', 'altText' => 'Company Logo'), 'subdropdown' => array('twoColumns' => '30')), 'pages' => array('override' => array('smallColumns' => '', 'breakpoint' => '')), 'config' => array('uid' => '3', 'company' => '0', 'homepageUid' => '242', 'pageTitle' => 'jumbotron', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '4', 'navbarBrand' => 'imgText', 'navbarbrandAlignment' => '{$bootstrap.config.navbarbrandAlignment}', 'navbarImage' => '0', 'navbarColor' => 'dark', 'navbarBackground' => 'transparent', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarInnercontainer' => '{$bootstrap.config.navbarInnercontainer}', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'left', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'md', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => '0', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '0', 'breadcrumbFaicon' => '0', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => '0', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '99', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '1', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-white text-light', 'footerPid' => '244', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => 'pt-5', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '2', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '0', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch' => array('targetPid' => '')), 'be_layout' => 'OneCol', 'loginForm' => '<!--INT_SCRIPT.2cd4fe9e42876dcdd9957dee2ab41cb3-->', 'data' => array('uid' => 255, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 10, 'tstamp' => 1620931016, 'sorting' => 1272, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1519071277, 'cruser_id' => 4, 'hidden' => 0, 'title' => 'News', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'News from TOS Dienste International e.V., our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Welcome to our newsblog at TOS Dienste International e.V. Read about the latest developments in our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1626116885, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 255, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";N;s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/news', 'legacy_overlay_uid' => 218, 'l10n_parent' => 255, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1418, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'currentValue_kidjls9dksoje' => 'OneCol'), 'current' => 'OneCol', 'navbarMenu' => array(array('data' => array('uid' => 304, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621604846, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621604647, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'About us', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'work with children, social organizations, work with children south america, non-profit organization, children\'s charity, work with drug addicts, work with street children, christian charity, christian aid organization, rehabilitation center eastern europe, team, employees', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => ' ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621604846, 'abstract' => 'e are a Christian charity, and as part of TOS Ministries we are working among street children, drug addicts, and destitute, who are transformed through the love of God, enabling them to transform their societies from inside.', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 304, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:9:"Über uns";s:4:"slug";s:10:"/ueber-uns";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:282:"Die TOS Dienste International e.V. sind ein christliches Hilfswerk, das als Teil des TOS Werkes unter Straßenkindern, Drogenabhängigen und Bedürftigen arbeitet, die durch die Liebe Gottes verändert und befähigt worden sind, ihre Gesellschaft von innen heraus zu transformieren.";s:8:"keywords";s:282:"Arbeit mit Kindern, soziale Organisationen, Arbeit mit Kindern Südamerika, Non-profit-Organisation, Kinderhilfswerk, Arbeit mit Drogenabhängigen, Arbeit mit Straßenkindern, christliches Hilfswerk, christliche Hilfsorganisation, Rehabilitationszentrum Osteuropa, Team, Mitarbeiter";s:11:"description";s:315:"Wir sind eine internationale, christliche Hilfsorganisation für Straßenkinder und Drogenabhängige. Unsere Einrichtungen befinden sich Lateinamerika, Ost- und Südeuropa. Erfahren Sie, was uns antreibt und lernen Sie unsere Teams vor Ort kennen. Außerdem stellen wir Ihnen die Ansprechpartner in Deutschland vor.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-ueber-uns', 'legacy_overlay_uid' => 0, 'l10n_parent' => 304, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2154, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'About us', 'link' => '/en/translate-to-english-ueber-uns', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 305, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 768, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1530698399, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Branches', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a sponsor, humanitarian aid, rehabilitation centers, rehab center, rehabilitation center Eastern Europe, help in crisis areas, therapy for drug addicts, work with street children, humanitarian aid in crisis areas, street kids, help for children', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'We are developing social services for street children in South America and offering therapy to drug addicts in Belarus, Russia and Greece. Learn more about our work.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 305, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches', 'legacy_overlay_uid' => 306, 'l10n_parent' => 305, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1476, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Branches', 'link' => '/en/branches', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 310, 'pid' => 305, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1627651240, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623405941, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Street Children', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a sponsor, humanitarian aid, rehabilitation centers, rehab center, rehabilitation center Eastern Europe, help in crisis areas, therapy for drug addicts, work with street children, humanitarian aid in crisis areas, street kids, help for children, day care centers, Holy Spirit, volunteers, orphanages, homes for street children, transformation, mission, South America', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In order for street children in Latin America to break out of poverty and violence, they need a protected environment in which they can be supported. That is why we have built children\'s homes, a day care center and prevention programs in Argentina, Bolivia, Ecuador, Paraguay and Peru. We are looking for sponsors and donors for this work.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1627651240, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 310, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:42:{s:7:"doktype";i:1;s:5:"title";s:62:"Straßenkindern Zukunft geben - TOS Dienste International e.V.";s:4:"slug";s:15:"/strassenkinder";s:9:"nav_title";s:14:"Straßenkinder";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:338:"Pate werden, Straßenkinder, Hilfsangebote für Kinder, Präventionsarbeit, Kindertagesstätte in Südamerika, Patenschaft für Straßenkinder, Straßenkinder in Lateinamerika, Kinderheime in Lateinamerika, Hilfsangebote für Straßenkinder, Freiwilligenarbeit Kinderheim Südamerika, Transformation, Mission, Heiliger Geist, Veränderung";s:11:"description";s:161:"Straßenkinder in Lateinamerika brauchen Hilfe. Mit Kinderhäusern, KiTa und Präventionsarbeit eröffnen wir solchen Kindern eine Zukunft. Helfen Sie uns dabei.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:8:"editlock";i:0;s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/translate-to-english-strassenkindern-zukunft-geben-tos-dienste-international-ev', 'legacy_overlay_uid' => 0, 'l10n_parent' => 310, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2169, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Street Children', 'link' => '/en/branches/translate-to-english-strassenkindern-zukunft-geben-tos-dienste-international-ev', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 313, 'pid' => 310, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1620390703, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Transformation Houses', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '[Translate to English:] Straßenkinder, Hilfsangebote für Kinder, Kinderheime in Lateinamerika, Hilfsangebote für Straßenkinder, Freiwilligenarbeit, Kinderhäuser Lateinamerika, Kinderheim Südamerika, Peru, Paraguay, Ecuador, Argentinien, Bolivien, Slumkinder, arme Kinder, Mission, Hilfe für Kinder, Transformation', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '[Translate to English:] In Lateinamerika gibt es 40 Mio. Straßenkinder, für die wir 50 Kinderhäuser aufbauen wollen, damit sie aus dem Kreislauf von Armut, Gewalt und Hoffnungslosigkeit ausbrechen und zu Hoffnungsträgern ihrer Gesellschaft werden.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 313, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"custom","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:42:{s:7:"doktype";i:1;s:5:"title";s:22:"Transformatorenhäuser";s:4:"slug";s:52:"/arbeitszweige/strassenkinder/transformatorenhaeuser";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:296:"Straßenkinder, Hilfsangebote für Kinder, Kinderheime in Lateinamerika, Hilfsangebote für Straßenkinder, Freiwilligenarbeit, Kinderhäuser Lateinamerika, Kinderheim Südamerika, Peru, Paraguay, Ecuador, Argentinien, Bolivien, Slumkinder, arme Kinder, Mission, Hilfe für Kinder, Transformation";s:11:"description";s:227:"In Lateinamerika gibt es 40 Mio. Straßenkinder, für die wir 50 Kinderhäuser aufbauen wollen, damit sie aus dem Kreislauf von Armut, Gewalt und Hoffnungslosigkeit ausbrechen und zu Hoffnungsträgern ihrer Gesellschaft werden.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:9:"no_search";i:0;s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:8:"editlock";i:0;s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/strassenkinder/translate-to-english-transformatorenhaeuser', 'legacy_overlay_uid' => 0, 'l10n_parent' => 313, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1998, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Transformation Houses', 'link' => '/en/strassenkinder/translate-to-english-transformatorenhaeuser', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 315, 'pid' => 310, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623401646, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623401517, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Day Care Center', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'day care center, work with small children, day care centre in poor area, day care center in South America, street children, help for children, Argentina, street children, mission, transformation, poor children, slum children, children\'s charity, sponsorship, Salta, Jujuy', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Latin America, there are 40 million street children for whom we are building day care centers so that they can break out of the cycle of poverty, violence and hopelessness and become beacons of hope in their society.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623401646, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 315, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:18:"Kindertagesstätte";s:4:"slug";s:48:"/arbeitszweige/strassenkinder/kindertagesstaette";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:266:"Kindertagesstätte, Arbeit mit Kleinkindern, KiTa im Armenviertel, Kindertagesstätte in Südamerika, Straßenkinder, Hilfsangebote für Kinder, Argentinien, Straßenkinder, Mission, Transformation, arme Kinder, Slumkinder, Kinderhilfswerk, Patenschaft, Salta, Jujuy";s:11:"description";s:223:"In Lateinamerika gibt es 40 Mio. Straßenkinder, für die wir Kindertagesstätten aufbauen, damit sie aus dem Kreislauf von Armut, Gewalt und Hoffnungslosigkeit ausbrechen und zu Hoffnungsträgern ihrer Gesellschaft werden.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/strassenkinder/translate-to-english-kindertagesstaette', 'legacy_overlay_uid' => 0, 'l10n_parent' => 315, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2166, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Day Care Center', 'link' => '/en/strassenkinder/translate-to-english-kindertagesstaette', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 314, 'pid' => 310, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623415030, 'sorting' => 640, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623414824, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Drug and Crime Prevention', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Street children, creative workshops, aid for children, prevention work, sponsorship for street children, street children in Latin America, aid for street children, prevention work South America, educational workshops, slum children, transformation, mission, Holy Spirit, Ecuador, Bolivia, Peru, Paraguay, Guayaquil, Lima, Sucre, South America, sponsorship', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'There are 40 million street children in Latin America for whom we are building prevention work so that they can break out of the cycle of poverty, violence and hopelessness and become beacons of hope in their society.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623415030, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 314, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:18:"Präventionsarbeit";s:4:"slug";s:48:"/arbeitszweige/strassenkinder/praeventionsarbeit";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:371:"Straßenkinder, kreative Workshops, Hilfsangebote für Kinder, Präventionsarbeit, Patenschaft für Straßenkinder, Straßenkinder in Lateinamerika, Hilfsangebote für Straßenkinder, Präventionsarbeit Südamerika, Bildungsworkshops, Slumkinder, Transformation, Mission, Heiliger Geist, Ecuador, Bolivien, Peru, Paraguay, Guayaquil, Lima, Sucre, Südamerika, Patenschaft";s:11:"description";s:224:"In Lateinamerika gibt es 40 Mio. Straßenkinder, für die wir Präventionsarbeiten aufbauen, damit sie aus dem Kreislauf von Armut, Gewalt und Hoffnungslosigkeit ausbrechen und zu Hoffnungsträgern ihrer Gesellschaft werden.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/branches/translate-to-english-strassenkindern-zukunft-geben-tos-dienste-international-ev/translate-to-english-praeventionsarbeit', 'legacy_overlay_uid' => 0, 'l10n_parent' => 314, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2170, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Drug and Crime Prevention', 'link' => '/en/branches/translate-to-english-strassenkindern-zukunft-geben-tos-dienste-international-ev/translate-to-english-praeventionsarbeit', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 311, 'pid' => 305, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1530894157, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Rehab', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'free of drugs, becoming a sponsor, aftercare, sponsorship, outpatient rehabilitation, drug addiction, rehabilitation work in Eastern Europe, drug rehabilitation, therapy for drug addicts, inpatient drug rehabilitation, contact work, transformation, Belarus, Greece, Russia, mission, addicts changed, rehab center', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In order for drug addicts in Southern and Eastern Europe to be able to conquer their addiction, they need intensive and sustainable therapy. That is why we have set up an inpatient rehabilitation facility and outpatient rehabilitation services in Belarus, Russia and Greece. We are looking for sponsors and donors for this work.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 311, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/rehab', 'legacy_overlay_uid' => 316, 'l10n_parent' => 311, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1486, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Rehab', 'link' => '/en/branches/rehab', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 316, 'pid' => 311, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531150210, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Contact Stage', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 316, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/rehab/contact-stage', 'legacy_overlay_uid' => 317, 'l10n_parent' => 316, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1487, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Contact Stage', 'link' => '/en/branches/rehab/contact-stage', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 317, 'pid' => 311, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531150597, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Stationary Drug Rehab', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 317, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/rehab/stationary-drug-rehab', 'legacy_overlay_uid' => 318, 'l10n_parent' => 317, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1488, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Stationary Drug Rehab', 'link' => '/en/branches/rehab/stationary-drug-rehab', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 318, 'pid' => 311, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 768, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531150839, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Third Stage & Follow-Up', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 318, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/rehab/third-stage-follow-up', 'legacy_overlay_uid' => 319, 'l10n_parent' => 318, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1489, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Third Stage & Follow-Up', 'link' => '/en/branches/rehab/third-stage-follow-up', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 319, 'pid' => 305, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623416446, 'sorting' => 640, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623416241, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Humanitarian Aid', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'humanitarian aid, emergency aid, aid in crisis areas, humanitarian aid in crisis areas, relief operations, aid transport, refugee aid in crisis areas, mission, crisis, war zone, sustainable development, rapid intervention, Iraq, Eastern Europe, Israel, Belarus, Kosovo, Peru, earthquake, flood, Estonia, Paraguay, fire disaster, Haiti', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In addition to our long-term projects for street children and drug addicts, we get involved in humanitarian crisis situations. We organize aid transports and provide spontaneous humanitarian aid ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623416446, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 319, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:17:"Humanitäre Hilfe";s:4:"slug";s:32:"/arbeitszweige/humanitaere-hilfe";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:372:"humanitäre Hilfe, Soforthilfe, Hilfe in Krisengebieten, humanitäre Hilfe in Krisengebieten, Hilfseinsätze, Hilfsgütertransporte, Flüchtlingshilfe in Krisengebieten, Mission, Krise, Kriegsgebiet, nachhaltige Entwicklung, schnelle Intervention, Irak, Ost-Europa, Israel, Weißrussland, Kosovo, Peru, Erdbeben, Überschwemmung, Estland, Paraguay, Brandkatastrophe, Haiti";s:11:"description";s:221:"Zusätzlich zu unseren langfristigen Projekten für Straßenkinder und Drogenabhängige engagieren wir uns in humanitären Krisensituationen. Wir organisieren Hilfsgütertransporte und leisten spontane humanitäre Hilfe. ";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/branches/translate-to-english-humanitaere-hilfe', 'legacy_overlay_uid' => 0, 'l10n_parent' => 319, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2172, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Humanitarian Aid', 'link' => '/en/branches/translate-to-english-humanitaere-hilfe', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 320, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620992819, 'sorting' => 928, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1620992709, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Worldwide', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'social projects, year abroad, IJFD, international aid projects, voluntary service abroad, voluntary service Russia, voluntary service Peru, voluntary service Greece, voluntary service Belarus, voluntary service Ecuador', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1620992819, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 320, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:8:"Weltweit";s:4:"slug";s:9:"/weltweit";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:237:"soziale Projekte, Auslandsjahr, IJFD, internationale Hilfsprojekte, Freiwilligendienst ausland, Freiwilligendienst Russland, Freiwilligendienst Peru, Freiwilligendienst Griechenland, Freiwilligendienst Belarus, Freiwilligendienst Ecuador";s:11:"description";s:0:"";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit', 'legacy_overlay_uid' => 0, 'l10n_parent' => 320, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2130, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Worldwide', 'link' => '/en/translate-to-english-weltweit', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 321, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620998047, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1620997976, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Argentina', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'social projects, Argentina, day care center, work with small children KiTa in poor area, day care center in South America, street children, help for children, poor children, slum children', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Argentina, we provide daycare for children from Juju\'s poor neighborhoods.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620998047, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 321, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:11:"Argentinien";s:4:"slug";s:12:"/argentinien";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:198:"soziale Projekte, Argentinien, Kindertagesstätte, Arbeit mit Kleinkindern KiTa im Armenviertel, Kindertagesstätte in Südamerika, Straßenkinder, Hilfsangebote für Kinder, arme Kinder, Slumkinder";s:11:"description";s:99:"In Argentinien bieten wir Kindern aus den Armenvierteln Jujuys Betreuung in der Kindertagesstätte.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-argentinien', 'legacy_overlay_uid' => 0, 'l10n_parent' => 321, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2131, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Argentina', 'link' => '/en/translate-to-english-weltweit/translate-to-english-argentinien', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 322, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621000102, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621000039, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Bolivia', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'social projects, volunteer service in Bolivia, street children, aid for children, children\'s homes in Latin America, aid for street children, volunteer work, children\'s homes Latin America, children\'s home South America street children, prevention work, prevention work South America, poverty, child labor', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Bolivien bieten wir Straßenkindern ein neues Zuhause im Transformatorenhaus in Sucre.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621000102, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 322, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:8:"Bolivien";s:4:"slug";s:9:"/bolivien";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:317:"soziale Projekte, Freiwilligendienst in Bolivien, Straßenkinder, Hilfsangebote für Kinder, Kinderheime in Lateinamerika, Hilfsangebote für Straßenkinder, Freiwilligenarbeit, Kinderhäuser Lateinamerika, Kinderheim Südamerika Straßenkinder, Präventionsarbeit, Präventionsarbeit Südamerika, Armut, Kinderarbeit";s:11:"description";s:89:"In Bolivien bieten wir Straßenkindern ein neues Zuhause im Transformatorenhaus in Sucre.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-bolivien', 'legacy_overlay_uid' => 0, 'l10n_parent' => 322, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2132, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Bolivia', 'link' => '/en/translate-to-english-weltweit/translate-to-english-bolivien', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 323, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621001710, 'sorting' => 768, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621001656, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Ecuador', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'creative workshops, work with children, prevention work, volunteer service in Ecuador, humanitarian aid, mission, street children, slum, poor children, transformation, Guayaquil, Manabi, slums', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Ecuador, we offer creative recreational programs for slum children in Guayaquil and Abdón Calderón/Manabi.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621001710, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 323, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:7:"Ecuador";s:4:"slug";s:17:"/weltweit/ecuador";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:217:"kreative Workshops, Arbeit mit Kindern, Präventionsarbeit, Freiwilligendienst in Ecuador, humanitäre Hilfe, Mission, Straßenkinder, Slum, arme Kinder, Heiliger Geist, Transformation, Guayaquil, Manabi, Armenviertel";s:11:"description";s:109:"In Ecuador bieten wir in Guayaquil und Abdón Calderón/Manabi kreatives Freizeitprogramm für Slumkinder an.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-ecuador', 'legacy_overlay_uid' => 0, 'l10n_parent' => 323, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2133, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Ecuador', 'link' => '/en/translate-to-english-weltweit/translate-to-english-ecuador', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 324, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621003485, 'sorting' => 1024, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621002601, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Paraguay', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Volunteer service in Paraguay, prevention work, children\'s homes in Latin America, aid for children, street children, poor children, children\'s home Paraguay, change, transformation ', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Paraguay, we offer creative recreational programs for slum children in Ñemby.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621003485, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 324, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:8:"Paraguay";s:4:"slug";s:9:"/paraguay";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:221:"Freiwilligendienst in Paraguay, Präventionsarbeit, Kinderhäuser in Lateinamerika, Hilfsangebote für Kinder, Straßenkinder, arme Kinder, Kinderheim Paraguay, Veränderung, Transformation, Liebe Gottes, Heiliger Geist ";s:11:"description";s:90:"In Paraguay bieten wir Straßenkindern ein neues Zuhause im Transformatorenhaus in Ñemby.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-paraguay', 'legacy_overlay_uid' => 0, 'l10n_parent' => 324, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2134, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Paraguay', 'link' => '/en/translate-to-english-weltweit/translate-to-english-paraguay', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 325, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621003622, 'sorting' => 1280, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621003542, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Peru', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Volunteer service in Peru, prevention work, children\'s homes in Latin America, aid for children, street children, poor children, children\'s home Paraguay, change, transformation, Lima, Peru', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Peru we offer street children a new home in ourTransformation House in Lima', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621003622, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 325, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:4:"Peru";s:4:"slug";s:5:"/peru";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:212:"kreative Workshops, Freiwilligendienst Peru, Kinderhäuser in Südamerika, Straßenkinder, Hilfsangebote für Kinder, Präventionsarbeit, arme Kinder, Liebe Gottes, Mission, Heiliger Geist, Kinderheim, Lima, Peru";s:11:"description";s:84:"In Peru bieten wir Straßenkindern ein neues Zuhause im Transformatorenhaus in Lima.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-peru', 'legacy_overlay_uid' => 0, 'l10n_parent' => 325, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2135, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Peru', 'link' => '/en/translate-to-english-weltweit/translate-to-english-peru', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 327, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623418904, 'sorting' => 1344, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623418692, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Greece', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'free from drugs, outpatient therapy, defeat addiction, contact work in Greece, drug addicts in southern Europe, love of God, Holy Spirit, transformation, mission, edge of society, addiction', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Griechenland bieten wir Drogenabhängigen und armen Menschen in Thessaloniki ambulante Hilfe.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623418904, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 327, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:12:"Griechenland";s:4:"slug";s:13:"/griechenland";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:211:"frei von Drogen, ambulante Therapie, die Sucht besiegen, Kontaktarbeit in Griechenland, Drogenabhängige in Südeuropa, Liebe Gottes, Heiliger Geist, Transformation, Mission, Rand der Gesellschaft, Abhängigkeit";s:11:"description";s:96:"In Griechenland bieten wir Drogenabhängigen und armen Menschen in Thessaloniki ambulante Hilfe.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-griechenland', 'legacy_overlay_uid' => 0, 'l10n_parent' => 327, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2173, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Greece', 'link' => '/en/translate-to-english-weltweit/translate-to-english-griechenland', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 326, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623420578, 'sorting' => 1536, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623420525, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Russia', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'free from drugs, defeat addiction, outpatient rehab, drug addiction, drug rehab, therapy for drug addicts, inpatient drug rehab, contact work, outpatient therapy, contact work in Russia, outpatient counseling, rehab work in Eastern Europe, Holy Spirit, mission, transformation, love of God, addiction, ', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Russia, we provide outpatient help to drug addicts and those seeking help in Siberia.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623420578, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 326, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:8:"Russland";s:4:"slug";s:9:"/russland";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:319:"frei von Drogen, die Sucht besiegen, ambulante Reha, Drogenabhängigkeit, Drogenreha, Therapie für Drogenabhängige, stationäre Drogenreha, Kontaktarbeit, ambulante Therapie, Kontaktarbeit in Russland, ambulante Beratung, Rehaarbeit in Osteuropa, Heiliger Geist, Mission, Transformation, Liebe Gottes, Abhängigkeit, ";s:11:"description";s:88:"In Russland bieten wir Drogenabhängigen und Hilfesuchenden in Sibirien ambulante Hilfe.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-russland', 'legacy_overlay_uid' => 0, 'l10n_parent' => 326, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2174, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Russia', 'link' => '/en/translate-to-english-weltweit/translate-to-english-russland', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 328, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623998470, 'sorting' => 1792, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623998395, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Belarus', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'free from drugs, aftercare, defeat addiction, integration into society, drug addiction, rehab work in Eastern Europe, therapy for drug addicts, inpatient drug rehab, contact work, outpatient rehab in Belarus, rehabilitation center, rehab work in Eastern Europe, help for drug addicts, aftercare drug rehab, addicts, transformation, Holy Spirit,', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Belarus, we provide outpatient and inpatient drug rehabilitation to drug addicts from all over the country.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623998470, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 328, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:13:"Weißrussland";s:4:"slug";s:14:"/weissrussland";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:375:"frei von Drogen, Nachsorge, die Sucht besiegen, Integration in die Gesellschaft, Drogenabhängigkeit, Rehaarbeit in Osteuropa, Therapie für Drogenabhängige, stationäre Drogenreha, Kontaktarbeit, Ambulante Reha in Weißrussland, Rehabilitationszentrum, Rehaarbeit in Osteuropa, Hilfe für Drogenabhängige, Nachsorge Drogenreha, Abhängige, Transformation, Heiliger Geist, ";s:11:"description";s:113:"In Weißrussland bieten wir Drogenabhängigen aus dem ganzen Land ambulante und stationäre Drogenrehabilitation.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-weissrussland', 'legacy_overlay_uid' => 0, 'l10n_parent' => 328, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2184, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Belarus', 'link' => '/en/translate-to-english-weltweit/translate-to-english-weissrussland', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 329, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 1184, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1530700954, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Donate & Get Involved', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a sponsor, become a volunteer, donate, support needy persons, year abroad, Sponsorship, IJFD, volunteer service, street kids, compare child sponsorship, child sponsorship', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 329, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved', 'legacy_overlay_uid' => 308, 'l10n_parent' => 329, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1478, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Donate & Get Involved', 'link' => '/en/donate-get-involved', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 331, 'pid' => 329, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531408302, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Sponsorships', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 331, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/sponsorships', 'legacy_overlay_uid' => 331, 'l10n_parent' => 331, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1501, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Sponsorships', 'link' => '/en/donate-get-involved/sponsorships', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 332, 'pid' => 329, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1624021820, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1624021782, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Donate', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Donate, donate online, donation form, social organization, Christian relief organization, mission, do something good, donate easily, donate quickly, tax exempt', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Donate for sustainable long-term projects of your choice.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1624021820, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 332, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:7:"Spenden";s:4:"slug";s:26:"/spenden-mitmachen/spenden";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:152:"Spende, online spenden, Spendenformular, soziale Organisation, christliche Hilfsorganisation, Mission, etwas Gutes tun, einfach spenden, schnell spenden";s:11:"description";s:63:"Spenden Sie für nachhaltige, langfristige Projekte Ihrer Wahl.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/donate-get-involved/translate-to-english-spenden', 'legacy_overlay_uid' => 0, 'l10n_parent' => 332, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2188, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Donate', 'link' => '/en/donate-get-involved/translate-to-english-spenden', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 421, 'pid' => 332, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531900896, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Online Donations', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 421, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-2', 'legacy_overlay_uid' => 334, 'l10n_parent' => 421, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1504, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Online Donations', 'link' => '/en/donate-2', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 848, 'pid' => 329, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1625825985, 'sorting' => 640, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1624011381, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Scholarships', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Donate for study scholarship, career start, street children, future, study, university, non-profit, young talent development', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'TOS Ministries International e.V. is an international Christian aid organization working among street children, drug addicts and the needy. In Latin America, we build social ministries among street children; in Belarus, Russia and Greece, we provide therapies for drug addicts. For our charitable work we are looking for sponsors, donors and volunteers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1625825985, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 848, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:17:"Studienstipendium";s:4:"slug";s:36:"/spenden-mitmachen/studienstipendium";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:134:"Spenden für ein Studienstipendium, Berufseinstieg, Straßenkinder, Zukunft, Studium, Universität, gemeinnützig, Nachwuchsförderung";s:11:"description";s:395:"TOS Dienste International e.V. ist eine internationale christliche Hilfsorganisation, die unter Straßenkindern, Drogenabhängigen und Bedürftigen arbeitet. In Lateinamerika bauen wir soziale Dienste unter Straßenkindern auf; in Weißrussland, Russland und Griechenland bieten wir Therapien für Drogenabhängige an. Für unsere gemeinnützige Arbeit suchen wir Paten, Spender und Freiwillige.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/donate-get-involved/translate-to-english-studienstipendium', 'legacy_overlay_uid' => 0, 'l10n_parent' => 848, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2187, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Scholarships', 'link' => '/en/donate-get-involved/translate-to-english-studienstipendium', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 333, 'pid' => 329, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1624625103, 'sorting' => 768, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1624624951, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Volunteer', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a volunteer, support needy people, year abroad, IJFD, ijfd einsatzstellen, volunteer service, volunteer assignment, volunteer service israel, volunteer service latin america, volunteer service belarus, mission assignment, mission, change the world, street children, aid projects, drug addicts, disabled people, adi, adi Israel, people with disabilities, March of Life Israel, Pro Israel, young people, social service ', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '[Translate to English:] Gelegenheiten zum internationalen Mitarbeiten für Jung & Älter. Soziale Dienste unter Drogenabhängigen, Straßenkindern oder Menschen mit Behinderungen in Ost-Europa, Lateinamerika und Israel.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1624625103, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 333, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:19:"Freiwilligendienste";s:4:"slug";s:38:"/spenden-mitmachen/freiwilligendienste";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:456:"Freiwilliger werden, Unterstützung bedürftiger Personen, Auslandsjahr, IJFD, ijfd einsatzstellen, Freiwilligendienst, Freiwilligeneinsatz, freiwilligendienst israel, freiwilligendienst lateinamerika, freiwilligendienst weißrussland, Missionseinsatz, Mission, Welt verändern, Straßenkinder, Hilfsprojekte, Drogenabhängige, Behinderte, Aleh, Aleh Israel, Menschen mit Behinderungen, Marsch des Lebens Israel, Pro Israel, junge Menschen, sozialer Dienst";s:11:"description";s:195:"Gelegenheiten zum internationalen Mitarbeiten für Jung & Älter. Soziale Dienste unter Drogenabhängigen, Straßenkindern oder Menschen mit Behinderungen in Ost-Europa, Lateinamerika und Israel.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/donate-get-involved/translate-to-english-freiwilligendienste', 'legacy_overlay_uid' => 0, 'l10n_parent' => 333, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2189, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Volunteer', 'link' => '/en/donate-get-involved/translate-to-english-freiwilligendienste', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 414, 'pid' => 333, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 128, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531902498, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'South America', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 414, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/volunteer/south-america', 'legacy_overlay_uid' => 335, 'l10n_parent' => 414, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1505, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'South America', 'link' => '/en/donate-get-involved/volunteer/south-america', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 415, 'pid' => 333, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 192, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531914515, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Israel', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 415, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/volunteer/israel', 'legacy_overlay_uid' => 336, 'l10n_parent' => 415, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1506, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Israel', 'link' => '/en/donate-get-involved/volunteer/israel', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 416, 'pid' => 333, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 224, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531914679, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Belarus', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 416, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/volunteer/belarus', 'legacy_overlay_uid' => 337, 'l10n_parent' => 416, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1507, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Belarus', 'link' => '/en/donate-get-involved/volunteer/belarus', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 417, 'pid' => 333, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 384, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531914821, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Testimonials', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 417, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/volunteer/testimonials', 'legacy_overlay_uid' => 338, 'l10n_parent' => 417, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1508, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Testimonials', 'link' => '/en/donate-get-involved/volunteer/testimonials', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))))), array('data' => array('uid' => 255, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 10, 'tstamp' => 1620931016, 'sorting' => 1272, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1519071277, 'cruser_id' => 4, 'hidden' => 0, 'title' => 'News', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'News from TOS Dienste International e.V., our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Welcome to our newsblog at TOS Dienste International e.V. Read about the latest developments in our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1626116885, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 255, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";N;s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/news', 'legacy_overlay_uid' => 218, 'l10n_parent' => 255, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1418, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'News', 'link' => '/en/news', 'target' => '', 'active' => 1, 'current' => 1, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 259, 'pid' => 255, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1627636152, 'sorting' => 64, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1627635782, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Subscribe', 'doktype' => 3, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => 'en/news/#c30412', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 2, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 259, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"custom","url":"custom","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:3;s:5:"title";s:23:"Publikationen bestellen";s:4:"slug";s:29:"/news/publikationen-bestellen";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:3:"url";s:13:"/news/#c30411";s:8:"abstract";N;s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:2;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:8:"nav_hide";i:0;}', 'slug' => '/news/translate-to-english-publikationen-bestellen', 'legacy_overlay_uid' => 0, 'l10n_parent' => 259, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2195, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Subscribe', 'link' => 'https://dev.tos-ministries.tos.info/en/news/#c30412', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 330, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 1792, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1530706960, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Contact', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 330, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/contact', 'legacy_overlay_uid' => 309, 'l10n_parent' => 330, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1479, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Contact', 'link' => '/en/contact', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0)), 'breadcrumb' => array(array('data' => array('uid' => 242, 'pid' => 0, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1624005779, 'sorting' => 1088, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1624005681, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'TOS Ministries International are a Christian charity', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 1, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => null, 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a sponsor, humanitarian aid, rehabilitation centers, rehab center, rehabilitation center Eastern Europe, help in crisis areas, therapy for drug addicts, work with street children, humanitarian aid in crisis areas, street kids, help for children, work with children, social organization, aid work, work with children South America, non-profit organization, children\'s relief organization, work with drug addicts, work with street kids, Christian relief organization, rehabilitation center Eastern Europe', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'TOS Dienste International e.V. is an international Christian aid and relief organization working among street children, drug addicts and the needy. In South America we build social ministries among street children; in Belarus, Russia and Greece we offer therapy for drug addicts. For our charitable work we are looking for sponsors, donors and volunteers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1624005779, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 242, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:66:"Die TOS Dienste International e.V. sind ein christliches Hilfswerk";s:4:"slug";s:1:"/";s:9:"nav_title";s:18:"tos-ministries.org";s:8:"subtitle";s:0:"";s:8:"abstract";N;s:8:"keywords";s:261:"Arbeit mit Kindern, soziale Organisation, Arbeit mit Kindern Südamerika, Non-profit-Organisation, Kinderhilfswerk, Arbeit mit Drogenabhängigen, Arbeit mit Straßenkindern, christliches Hilfswerk, christliche Hilfsorganisation, Rehabilitationszentrum Osteuropa";s:11:"description";s:395:"TOS Dienste International e.V. ist eine internationale christliche Hilfsorganisation, die unter Straßenkindern, Drogenabhängigen und Bedürftigen arbeitet. In Lateinamerika bauen wir soziale Dienste unter Straßenkindern auf; in Weißrussland, Russland und Griechenland bieten wir Therapien für Drogenabhängige an. Für unsere gemeinnützige Arbeit suchen wir Paten, Spender und Freiwillige.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:1;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/', 'legacy_overlay_uid' => 0, 'l10n_parent' => 242, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2185, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, '_MP_PARAM' => '', 'isSpacer' => false), 'title' => 'TOS Ministries International are a Christian charity', 'link' => '/en/', 'target' => '', 'active' => 1, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 255, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 10, 'tstamp' => 1620931016, 'sorting' => 1272, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1519071277, 'cruser_id' => 4, 'hidden' => 0, 'title' => 'News', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => null, 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'News from TOS Dienste International e.V., our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Welcome to our newsblog at TOS Dienste International e.V. Read about the latest developments in our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1626116885, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 255, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";N;s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/news', 'legacy_overlay_uid' => 218, 'l10n_parent' => 255, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1418, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, '_MP_PARAM' => '', 'isSpacer' => false), 'title' => 'News', 'link' => '/en/news', 'target' => '', 'active' => 1, 'current' => 1, 'spacer' => 0)), 'languageNavigation' => array(array('languageId' => 0, 'locale' => 'de_DE.UTF-8', 'title' => 'Deutsch', 'navigationTitle' => 'Deutsch', 'twoLetterIsoCode' => 'de', 'hreflang' => 'de-DE', 'direction' => '', 'flag' => 'flags-de', 'link' => '/news?tx_news_pi1%5BoverwriteDemand%5D%5Bcategories%5D=78&cHash=5e4177c7b94d55fdbfaa7bd5a73d1c2f', 'active' => 0, 'current' => 0, 'available' => 1), array('languageId' => 1, 'locale' => 'en_US.UTF-8', 'title' => 'English', 'navigationTitle' => 'English', 'twoLetterIsoCode' => 'en', 'hreflang' => 'en-US', 'direction' => '', 'flag' => 'flags-us', 'link' => '/en/news?tx_news_pi1%5BoverwriteDemand%5D%5Bcategories%5D=78&cHash=5e4177c7b94d55fdbfaa7bd5a73d1c2f', 'active' => 1, 'current' => 0, 'available' => 1), array('languageId' => 3, 'locale' => 'es_ES.UTF-8', 'title' => 'español', 'navigationTitle' => 'español', 'twoLetterIsoCode' => 'es', 'hreflang' => 'es-ES', 'direction' => '', 'flag' => 'flags-es', 'link' => '', 'active' => 0, 'current' => 0, 'available' => 0), array('languageId' => 2, 'locale' => 'ru_RU.UTF-8', 'title' => 'русский', 'navigationTitle' => 'русский', 'twoLetterIsoCode' => 'ru', 'hreflang' => 'ru-RU', 'direction' => '', 'flag' => 'flags-ru', 'link' => '', 'active' => 0, 'current' => 0, 'available' => 0)), 'config' => array('general' => array('company' => '0', 'homepageUid' => '242', 'pageTitle' => 'jumbotron', 'pageTitlealign' => 'center', 'pageTitleclass' => ''), 'lang' => array('uid' => array(0, 1, 3, 2), 'hreflang' => array('de-DE', 'en-US', 'es-ES', 'ru-RU'), 'title' => array('Deutsch', 'English', 'español', 'русский'), 'flag' => array('flags-de', 'flags-us', 'flags-es', 'flags-ru')), 'navbar' => array('dropdownAnimate' => '', 'dropdownAnimateValue' => 4, 'enable' => 'light', 'sectionMenu' => '', 'brand' => 'imgText', 'brandAlignment' => '{$bootstrap.config.navbarbrandAlignment}', 'hover' => ' dropdown-hover', 'clickableparent' => '1', 'navbarPlusicon' => 0, 'image' => 'fileadmin/tos.info/images/allgemein/logo-tos.info.svg', 'toggler' => 'right', 'containerposition' => 'inside', 'container' => 'container', 'innercontainer' => '{$bootstrap.config.navbarInnercontainer}', 'breakpoint' => 'md', 'shrinkColorschemes' => 'bg-white', 'colorschemes' => 'bg-dark', 'shrinkColor' => 'navbar-light', 'color' => 'navbar-light', 'class' => 'navbar-light navbar-expand-md shrink py-2 bg-dark clickableparent navbarHover fixed-top', 'dropdown' => 'dropdown', 'spacer' => '0', 'megamenu' => '0', 'placement' => 'fixed-top', 'sticky' => false, 'alignment' => 'left', 'mauto' => ' me-auto', 'offcanvas' => '1', 'offcanvasBgColorClass' => 'bg-dark', 'offcanvasTitleColor' => 'rgba(0, 0, 0, 0.75)', 'offcanvasCross' => 'dark', 'navbarAlignment' => 'start', 'offcanvasAlign' => 'end', 'animatedToggler' => '0'), 'jumbotron' => array('enable' => '1', 'slide' => '0', 'position' => 'below', 'container' => 'container', 'containerposition' => 'Inside', 'class' => ' '), 'breadcrumb' => array('class' => ''), 'footer' => array('enable' => '1', 'sticky' => '0', 'fluid' => '1', 'slide' => '0', 'container' => 'container', 'containerposition' => 'Inside', 'class' => 'bg-white text-light')), 'colAside' => 3, 'colMain' => 9, 'gridBreakpoint' => 'md', 'navbarBreakpoint' => 'md'), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/Standard_action_index_db4f56a26aa330f2fef67a0c7d1e3358eef60fc7.php line 211
$output13 .= $renderingContext->getVariableProvider()->getByPath('be_layout', $array14);
$arguments11['partial'] = $output13;
$arguments11['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output10 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments11, $renderChildrenClosure12, $renderingContext);

$output10 .= '
  ';
return $output10;
at Standard_action_index_db4f56a26aa330f2fef67a0c7d1e3358eef60fc7->{closure}()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/Standard_action_index_db4f56a26aa330f2fef67a0c7d1e3358eef60fc7.php line 247
  ';
return $output16;
};

$output0 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments8, $renderChildrenClosure9, $renderingContext);

$output0 .= '
 </div>
';
at Standard_action_index_db4f56a26aa330f2fef67a0c7d1e3358eef60fc7->section_e435c89d5cba9b2846882f39f7c202e0769a44ad(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 260
                    );
                }
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('PageContent', array('settings' => array('expandedContent' => '0', 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'fontawesome' => array('pagetitle' => '1'), 'pagebrowser' => array('enable' => '0'), 'navbar' => array('searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'image' => array('defaultPath' => 'fileadmin/tos.info/images/allgemein/logo-tos.info.svg', 'width' => '50', 'height' => '28', 'altText' => 'Company Logo'), 'subdropdown' => array('twoColumns' => '30')), 'pages' => array('override' => array('smallColumns' => '', 'breakpoint' => '')), 'config' => array('uid' => '3', 'company' => '0', 'homepageUid' => '242', 'pageTitle' => 'jumbotron', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '4', 'navbarBrand' => 'imgText', 'navbarbrandAlignment' => '{$bootstrap.config.navbarbrandAlignment}', 'navbarImage' => '0', 'navbarColor' => 'dark', 'navbarBackground' => 'transparent', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarInnercontainer' => '{$bootstrap.config.navbarInnercontainer}', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'left', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'md', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => '0', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '0', 'breadcrumbFaicon' => '0', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => '0', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '99', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '1', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-white text-light', 'footerPid' => '244', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => 'pt-5', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '2', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '0', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch' => array('targetPid' => '')), 'be_layout' => 'OneCol', 'loginForm' => '<!--INT_SCRIPT.2cd4fe9e42876dcdd9957dee2ab41cb3-->', 'data' => array('uid' => 255, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 10, 'tstamp' => 1620931016, 'sorting' => 1272, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1519071277, 'cruser_id' => 4, 'hidden' => 0, 'title' => 'News', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'News from TOS Dienste International e.V., our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Welcome to our newsblog at TOS Dienste International e.V. Read about the latest developments in our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1626116885, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 255, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";N;s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/news', 'legacy_overlay_uid' => 218, 'l10n_parent' => 255, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1418, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'currentValue_kidjls9dksoje' => 'OneCol'), 'current' => 'OneCol', 'navbarMenu' => array(array('data' => array('uid' => 304, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621604846, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621604647, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'About us', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'work with children, social organizations, work with children south america, non-profit organization, children\'s charity, work with drug addicts, work with street children, christian charity, christian aid organization, rehabilitation center eastern europe, team, employees', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => ' ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621604846, 'abstract' => 'e are a Christian charity, and as part of TOS Ministries we are working among street children, drug addicts, and destitute, who are transformed through the love of God, enabling them to transform their societies from inside.', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 304, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:9:"Über uns";s:4:"slug";s:10:"/ueber-uns";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:282:"Die TOS Dienste International e.V. sind ein christliches Hilfswerk, das als Teil des TOS Werkes unter Straßenkindern, Drogenabhängigen und Bedürftigen arbeitet, die durch die Liebe Gottes verändert und befähigt worden sind, ihre Gesellschaft von innen heraus zu transformieren.";s:8:"keywords";s:282:"Arbeit mit Kindern, soziale Organisationen, Arbeit mit Kindern Südamerika, Non-profit-Organisation, Kinderhilfswerk, Arbeit mit Drogenabhängigen, Arbeit mit Straßenkindern, christliches Hilfswerk, christliche Hilfsorganisation, Rehabilitationszentrum Osteuropa, Team, Mitarbeiter";s:11:"description";s:315:"Wir sind eine internationale, christliche Hilfsorganisation für Straßenkinder und Drogenabhängige. Unsere Einrichtungen befinden sich Lateinamerika, Ost- und Südeuropa. Erfahren Sie, was uns antreibt und lernen Sie unsere Teams vor Ort kennen. Außerdem stellen wir Ihnen die Ansprechpartner in Deutschland vor.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-ueber-uns', 'legacy_overlay_uid' => 0, 'l10n_parent' => 304, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2154, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'About us', 'link' => '/en/translate-to-english-ueber-uns', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 305, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 768, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1530698399, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Branches', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a sponsor, humanitarian aid, rehabilitation centers, rehab center, rehabilitation center Eastern Europe, help in crisis areas, therapy for drug addicts, work with street children, humanitarian aid in crisis areas, street kids, help for children', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'We are developing social services for street children in South America and offering therapy to drug addicts in Belarus, Russia and Greece. Learn more about our work.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 305, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches', 'legacy_overlay_uid' => 306, 'l10n_parent' => 305, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1476, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Branches', 'link' => '/en/branches', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 310, 'pid' => 305, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1627651240, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623405941, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Street Children', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a sponsor, humanitarian aid, rehabilitation centers, rehab center, rehabilitation center Eastern Europe, help in crisis areas, therapy for drug addicts, work with street children, humanitarian aid in crisis areas, street kids, help for children, day care centers, Holy Spirit, volunteers, orphanages, homes for street children, transformation, mission, South America', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In order for street children in Latin America to break out of poverty and violence, they need a protected environment in which they can be supported. That is why we have built children\'s homes, a day care center and prevention programs in Argentina, Bolivia, Ecuador, Paraguay and Peru. We are looking for sponsors and donors for this work.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1627651240, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 310, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:42:{s:7:"doktype";i:1;s:5:"title";s:62:"Straßenkindern Zukunft geben - TOS Dienste International e.V.";s:4:"slug";s:15:"/strassenkinder";s:9:"nav_title";s:14:"Straßenkinder";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:338:"Pate werden, Straßenkinder, Hilfsangebote für Kinder, Präventionsarbeit, Kindertagesstätte in Südamerika, Patenschaft für Straßenkinder, Straßenkinder in Lateinamerika, Kinderheime in Lateinamerika, Hilfsangebote für Straßenkinder, Freiwilligenarbeit Kinderheim Südamerika, Transformation, Mission, Heiliger Geist, Veränderung";s:11:"description";s:161:"Straßenkinder in Lateinamerika brauchen Hilfe. Mit Kinderhäusern, KiTa und Präventionsarbeit eröffnen wir solchen Kindern eine Zukunft. Helfen Sie uns dabei.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:8:"editlock";i:0;s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/translate-to-english-strassenkindern-zukunft-geben-tos-dienste-international-ev', 'legacy_overlay_uid' => 0, 'l10n_parent' => 310, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2169, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Street Children', 'link' => '/en/branches/translate-to-english-strassenkindern-zukunft-geben-tos-dienste-international-ev', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 313, 'pid' => 310, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1620390703, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Transformation Houses', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '[Translate to English:] Straßenkinder, Hilfsangebote für Kinder, Kinderheime in Lateinamerika, Hilfsangebote für Straßenkinder, Freiwilligenarbeit, Kinderhäuser Lateinamerika, Kinderheim Südamerika, Peru, Paraguay, Ecuador, Argentinien, Bolivien, Slumkinder, arme Kinder, Mission, Hilfe für Kinder, Transformation', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '[Translate to English:] In Lateinamerika gibt es 40 Mio. Straßenkinder, für die wir 50 Kinderhäuser aufbauen wollen, damit sie aus dem Kreislauf von Armut, Gewalt und Hoffnungslosigkeit ausbrechen und zu Hoffnungsträgern ihrer Gesellschaft werden.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 313, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"custom","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:42:{s:7:"doktype";i:1;s:5:"title";s:22:"Transformatorenhäuser";s:4:"slug";s:52:"/arbeitszweige/strassenkinder/transformatorenhaeuser";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:296:"Straßenkinder, Hilfsangebote für Kinder, Kinderheime in Lateinamerika, Hilfsangebote für Straßenkinder, Freiwilligenarbeit, Kinderhäuser Lateinamerika, Kinderheim Südamerika, Peru, Paraguay, Ecuador, Argentinien, Bolivien, Slumkinder, arme Kinder, Mission, Hilfe für Kinder, Transformation";s:11:"description";s:227:"In Lateinamerika gibt es 40 Mio. Straßenkinder, für die wir 50 Kinderhäuser aufbauen wollen, damit sie aus dem Kreislauf von Armut, Gewalt und Hoffnungslosigkeit ausbrechen und zu Hoffnungsträgern ihrer Gesellschaft werden.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:9:"no_search";i:0;s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:8:"editlock";i:0;s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/strassenkinder/translate-to-english-transformatorenhaeuser', 'legacy_overlay_uid' => 0, 'l10n_parent' => 313, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1998, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Transformation Houses', 'link' => '/en/strassenkinder/translate-to-english-transformatorenhaeuser', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 315, 'pid' => 310, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623401646, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623401517, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Day Care Center', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'day care center, work with small children, day care centre in poor area, day care center in South America, street children, help for children, Argentina, street children, mission, transformation, poor children, slum children, children\'s charity, sponsorship, Salta, Jujuy', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Latin America, there are 40 million street children for whom we are building day care centers so that they can break out of the cycle of poverty, violence and hopelessness and become beacons of hope in their society.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623401646, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 315, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:18:"Kindertagesstätte";s:4:"slug";s:48:"/arbeitszweige/strassenkinder/kindertagesstaette";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:266:"Kindertagesstätte, Arbeit mit Kleinkindern, KiTa im Armenviertel, Kindertagesstätte in Südamerika, Straßenkinder, Hilfsangebote für Kinder, Argentinien, Straßenkinder, Mission, Transformation, arme Kinder, Slumkinder, Kinderhilfswerk, Patenschaft, Salta, Jujuy";s:11:"description";s:223:"In Lateinamerika gibt es 40 Mio. Straßenkinder, für die wir Kindertagesstätten aufbauen, damit sie aus dem Kreislauf von Armut, Gewalt und Hoffnungslosigkeit ausbrechen und zu Hoffnungsträgern ihrer Gesellschaft werden.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/strassenkinder/translate-to-english-kindertagesstaette', 'legacy_overlay_uid' => 0, 'l10n_parent' => 315, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2166, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Day Care Center', 'link' => '/en/strassenkinder/translate-to-english-kindertagesstaette', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 314, 'pid' => 310, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623415030, 'sorting' => 640, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623414824, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Drug and Crime Prevention', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Street children, creative workshops, aid for children, prevention work, sponsorship for street children, street children in Latin America, aid for street children, prevention work South America, educational workshops, slum children, transformation, mission, Holy Spirit, Ecuador, Bolivia, Peru, Paraguay, Guayaquil, Lima, Sucre, South America, sponsorship', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'There are 40 million street children in Latin America for whom we are building prevention work so that they can break out of the cycle of poverty, violence and hopelessness and become beacons of hope in their society.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623415030, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 314, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:18:"Präventionsarbeit";s:4:"slug";s:48:"/arbeitszweige/strassenkinder/praeventionsarbeit";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:371:"Straßenkinder, kreative Workshops, Hilfsangebote für Kinder, Präventionsarbeit, Patenschaft für Straßenkinder, Straßenkinder in Lateinamerika, Hilfsangebote für Straßenkinder, Präventionsarbeit Südamerika, Bildungsworkshops, Slumkinder, Transformation, Mission, Heiliger Geist, Ecuador, Bolivien, Peru, Paraguay, Guayaquil, Lima, Sucre, Südamerika, Patenschaft";s:11:"description";s:224:"In Lateinamerika gibt es 40 Mio. Straßenkinder, für die wir Präventionsarbeiten aufbauen, damit sie aus dem Kreislauf von Armut, Gewalt und Hoffnungslosigkeit ausbrechen und zu Hoffnungsträgern ihrer Gesellschaft werden.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/branches/translate-to-english-strassenkindern-zukunft-geben-tos-dienste-international-ev/translate-to-english-praeventionsarbeit', 'legacy_overlay_uid' => 0, 'l10n_parent' => 314, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2170, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Drug and Crime Prevention', 'link' => '/en/branches/translate-to-english-strassenkindern-zukunft-geben-tos-dienste-international-ev/translate-to-english-praeventionsarbeit', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 311, 'pid' => 305, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1530894157, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Rehab', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'free of drugs, becoming a sponsor, aftercare, sponsorship, outpatient rehabilitation, drug addiction, rehabilitation work in Eastern Europe, drug rehabilitation, therapy for drug addicts, inpatient drug rehabilitation, contact work, transformation, Belarus, Greece, Russia, mission, addicts changed, rehab center', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In order for drug addicts in Southern and Eastern Europe to be able to conquer their addiction, they need intensive and sustainable therapy. That is why we have set up an inpatient rehabilitation facility and outpatient rehabilitation services in Belarus, Russia and Greece. We are looking for sponsors and donors for this work.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 311, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/rehab', 'legacy_overlay_uid' => 316, 'l10n_parent' => 311, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1486, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Rehab', 'link' => '/en/branches/rehab', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 316, 'pid' => 311, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531150210, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Contact Stage', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 316, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/rehab/contact-stage', 'legacy_overlay_uid' => 317, 'l10n_parent' => 316, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1487, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Contact Stage', 'link' => '/en/branches/rehab/contact-stage', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 317, 'pid' => 311, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531150597, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Stationary Drug Rehab', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 317, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/rehab/stationary-drug-rehab', 'legacy_overlay_uid' => 318, 'l10n_parent' => 317, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1488, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Stationary Drug Rehab', 'link' => '/en/branches/rehab/stationary-drug-rehab', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 318, 'pid' => 311, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 768, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531150839, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Third Stage & Follow-Up', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 318, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/rehab/third-stage-follow-up', 'legacy_overlay_uid' => 319, 'l10n_parent' => 318, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1489, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Third Stage & Follow-Up', 'link' => '/en/branches/rehab/third-stage-follow-up', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 319, 'pid' => 305, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623416446, 'sorting' => 640, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623416241, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Humanitarian Aid', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'humanitarian aid, emergency aid, aid in crisis areas, humanitarian aid in crisis areas, relief operations, aid transport, refugee aid in crisis areas, mission, crisis, war zone, sustainable development, rapid intervention, Iraq, Eastern Europe, Israel, Belarus, Kosovo, Peru, earthquake, flood, Estonia, Paraguay, fire disaster, Haiti', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In addition to our long-term projects for street children and drug addicts, we get involved in humanitarian crisis situations. We organize aid transports and provide spontaneous humanitarian aid ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623416446, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 319, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:17:"Humanitäre Hilfe";s:4:"slug";s:32:"/arbeitszweige/humanitaere-hilfe";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:372:"humanitäre Hilfe, Soforthilfe, Hilfe in Krisengebieten, humanitäre Hilfe in Krisengebieten, Hilfseinsätze, Hilfsgütertransporte, Flüchtlingshilfe in Krisengebieten, Mission, Krise, Kriegsgebiet, nachhaltige Entwicklung, schnelle Intervention, Irak, Ost-Europa, Israel, Weißrussland, Kosovo, Peru, Erdbeben, Überschwemmung, Estland, Paraguay, Brandkatastrophe, Haiti";s:11:"description";s:221:"Zusätzlich zu unseren langfristigen Projekten für Straßenkinder und Drogenabhängige engagieren wir uns in humanitären Krisensituationen. Wir organisieren Hilfsgütertransporte und leisten spontane humanitäre Hilfe. ";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/branches/translate-to-english-humanitaere-hilfe', 'legacy_overlay_uid' => 0, 'l10n_parent' => 319, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2172, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Humanitarian Aid', 'link' => '/en/branches/translate-to-english-humanitaere-hilfe', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 320, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620992819, 'sorting' => 928, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1620992709, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Worldwide', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'social projects, year abroad, IJFD, international aid projects, voluntary service abroad, voluntary service Russia, voluntary service Peru, voluntary service Greece, voluntary service Belarus, voluntary service Ecuador', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1620992819, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 320, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:8:"Weltweit";s:4:"slug";s:9:"/weltweit";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:237:"soziale Projekte, Auslandsjahr, IJFD, internationale Hilfsprojekte, Freiwilligendienst ausland, Freiwilligendienst Russland, Freiwilligendienst Peru, Freiwilligendienst Griechenland, Freiwilligendienst Belarus, Freiwilligendienst Ecuador";s:11:"description";s:0:"";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit', 'legacy_overlay_uid' => 0, 'l10n_parent' => 320, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2130, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Worldwide', 'link' => '/en/translate-to-english-weltweit', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 321, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620998047, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1620997976, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Argentina', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'social projects, Argentina, day care center, work with small children KiTa in poor area, day care center in South America, street children, help for children, poor children, slum children', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Argentina, we provide daycare for children from Juju\'s poor neighborhoods.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620998047, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 321, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:11:"Argentinien";s:4:"slug";s:12:"/argentinien";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:198:"soziale Projekte, Argentinien, Kindertagesstätte, Arbeit mit Kleinkindern KiTa im Armenviertel, Kindertagesstätte in Südamerika, Straßenkinder, Hilfsangebote für Kinder, arme Kinder, Slumkinder";s:11:"description";s:99:"In Argentinien bieten wir Kindern aus den Armenvierteln Jujuys Betreuung in der Kindertagesstätte.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-argentinien', 'legacy_overlay_uid' => 0, 'l10n_parent' => 321, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2131, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Argentina', 'link' => '/en/translate-to-english-weltweit/translate-to-english-argentinien', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 322, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621000102, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621000039, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Bolivia', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'social projects, volunteer service in Bolivia, street children, aid for children, children\'s homes in Latin America, aid for street children, volunteer work, children\'s homes Latin America, children\'s home South America street children, prevention work, prevention work South America, poverty, child labor', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Bolivien bieten wir Straßenkindern ein neues Zuhause im Transformatorenhaus in Sucre.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621000102, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 322, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:8:"Bolivien";s:4:"slug";s:9:"/bolivien";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:317:"soziale Projekte, Freiwilligendienst in Bolivien, Straßenkinder, Hilfsangebote für Kinder, Kinderheime in Lateinamerika, Hilfsangebote für Straßenkinder, Freiwilligenarbeit, Kinderhäuser Lateinamerika, Kinderheim Südamerika Straßenkinder, Präventionsarbeit, Präventionsarbeit Südamerika, Armut, Kinderarbeit";s:11:"description";s:89:"In Bolivien bieten wir Straßenkindern ein neues Zuhause im Transformatorenhaus in Sucre.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-bolivien', 'legacy_overlay_uid' => 0, 'l10n_parent' => 322, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2132, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Bolivia', 'link' => '/en/translate-to-english-weltweit/translate-to-english-bolivien', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 323, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621001710, 'sorting' => 768, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621001656, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Ecuador', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'creative workshops, work with children, prevention work, volunteer service in Ecuador, humanitarian aid, mission, street children, slum, poor children, transformation, Guayaquil, Manabi, slums', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Ecuador, we offer creative recreational programs for slum children in Guayaquil and Abdón Calderón/Manabi.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621001710, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 323, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:7:"Ecuador";s:4:"slug";s:17:"/weltweit/ecuador";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:217:"kreative Workshops, Arbeit mit Kindern, Präventionsarbeit, Freiwilligendienst in Ecuador, humanitäre Hilfe, Mission, Straßenkinder, Slum, arme Kinder, Heiliger Geist, Transformation, Guayaquil, Manabi, Armenviertel";s:11:"description";s:109:"In Ecuador bieten wir in Guayaquil und Abdón Calderón/Manabi kreatives Freizeitprogramm für Slumkinder an.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-ecuador', 'legacy_overlay_uid' => 0, 'l10n_parent' => 323, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2133, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Ecuador', 'link' => '/en/translate-to-english-weltweit/translate-to-english-ecuador', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 324, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621003485, 'sorting' => 1024, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621002601, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Paraguay', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Volunteer service in Paraguay, prevention work, children\'s homes in Latin America, aid for children, street children, poor children, children\'s home Paraguay, change, transformation ', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Paraguay, we offer creative recreational programs for slum children in Ñemby.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621003485, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 324, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:8:"Paraguay";s:4:"slug";s:9:"/paraguay";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:221:"Freiwilligendienst in Paraguay, Präventionsarbeit, Kinderhäuser in Lateinamerika, Hilfsangebote für Kinder, Straßenkinder, arme Kinder, Kinderheim Paraguay, Veränderung, Transformation, Liebe Gottes, Heiliger Geist ";s:11:"description";s:90:"In Paraguay bieten wir Straßenkindern ein neues Zuhause im Transformatorenhaus in Ñemby.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-paraguay', 'legacy_overlay_uid' => 0, 'l10n_parent' => 324, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2134, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Paraguay', 'link' => '/en/translate-to-english-weltweit/translate-to-english-paraguay', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 325, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621003622, 'sorting' => 1280, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621003542, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Peru', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Volunteer service in Peru, prevention work, children\'s homes in Latin America, aid for children, street children, poor children, children\'s home Paraguay, change, transformation, Lima, Peru', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Peru we offer street children a new home in ourTransformation House in Lima', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621003622, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 325, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:4:"Peru";s:4:"slug";s:5:"/peru";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:212:"kreative Workshops, Freiwilligendienst Peru, Kinderhäuser in Südamerika, Straßenkinder, Hilfsangebote für Kinder, Präventionsarbeit, arme Kinder, Liebe Gottes, Mission, Heiliger Geist, Kinderheim, Lima, Peru";s:11:"description";s:84:"In Peru bieten wir Straßenkindern ein neues Zuhause im Transformatorenhaus in Lima.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-peru', 'legacy_overlay_uid' => 0, 'l10n_parent' => 325, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2135, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Peru', 'link' => '/en/translate-to-english-weltweit/translate-to-english-peru', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 327, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623418904, 'sorting' => 1344, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623418692, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Greece', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'free from drugs, outpatient therapy, defeat addiction, contact work in Greece, drug addicts in southern Europe, love of God, Holy Spirit, transformation, mission, edge of society, addiction', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Griechenland bieten wir Drogenabhängigen und armen Menschen in Thessaloniki ambulante Hilfe.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623418904, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 327, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:12:"Griechenland";s:4:"slug";s:13:"/griechenland";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:211:"frei von Drogen, ambulante Therapie, die Sucht besiegen, Kontaktarbeit in Griechenland, Drogenabhängige in Südeuropa, Liebe Gottes, Heiliger Geist, Transformation, Mission, Rand der Gesellschaft, Abhängigkeit";s:11:"description";s:96:"In Griechenland bieten wir Drogenabhängigen und armen Menschen in Thessaloniki ambulante Hilfe.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-griechenland', 'legacy_overlay_uid' => 0, 'l10n_parent' => 327, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2173, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Greece', 'link' => '/en/translate-to-english-weltweit/translate-to-english-griechenland', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 326, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623420578, 'sorting' => 1536, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623420525, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Russia', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'free from drugs, defeat addiction, outpatient rehab, drug addiction, drug rehab, therapy for drug addicts, inpatient drug rehab, contact work, outpatient therapy, contact work in Russia, outpatient counseling, rehab work in Eastern Europe, Holy Spirit, mission, transformation, love of God, addiction, ', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Russia, we provide outpatient help to drug addicts and those seeking help in Siberia.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623420578, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 326, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:8:"Russland";s:4:"slug";s:9:"/russland";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:319:"frei von Drogen, die Sucht besiegen, ambulante Reha, Drogenabhängigkeit, Drogenreha, Therapie für Drogenabhängige, stationäre Drogenreha, Kontaktarbeit, ambulante Therapie, Kontaktarbeit in Russland, ambulante Beratung, Rehaarbeit in Osteuropa, Heiliger Geist, Mission, Transformation, Liebe Gottes, Abhängigkeit, ";s:11:"description";s:88:"In Russland bieten wir Drogenabhängigen und Hilfesuchenden in Sibirien ambulante Hilfe.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-russland', 'legacy_overlay_uid' => 0, 'l10n_parent' => 326, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2174, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Russia', 'link' => '/en/translate-to-english-weltweit/translate-to-english-russland', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 328, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623998470, 'sorting' => 1792, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623998395, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Belarus', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'free from drugs, aftercare, defeat addiction, integration into society, drug addiction, rehab work in Eastern Europe, therapy for drug addicts, inpatient drug rehab, contact work, outpatient rehab in Belarus, rehabilitation center, rehab work in Eastern Europe, help for drug addicts, aftercare drug rehab, addicts, transformation, Holy Spirit,', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Belarus, we provide outpatient and inpatient drug rehabilitation to drug addicts from all over the country.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623998470, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 328, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:13:"Weißrussland";s:4:"slug";s:14:"/weissrussland";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:375:"frei von Drogen, Nachsorge, die Sucht besiegen, Integration in die Gesellschaft, Drogenabhängigkeit, Rehaarbeit in Osteuropa, Therapie für Drogenabhängige, stationäre Drogenreha, Kontaktarbeit, Ambulante Reha in Weißrussland, Rehabilitationszentrum, Rehaarbeit in Osteuropa, Hilfe für Drogenabhängige, Nachsorge Drogenreha, Abhängige, Transformation, Heiliger Geist, ";s:11:"description";s:113:"In Weißrussland bieten wir Drogenabhängigen aus dem ganzen Land ambulante und stationäre Drogenrehabilitation.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-weissrussland', 'legacy_overlay_uid' => 0, 'l10n_parent' => 328, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2184, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Belarus', 'link' => '/en/translate-to-english-weltweit/translate-to-english-weissrussland', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 329, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 1184, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1530700954, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Donate & Get Involved', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a sponsor, become a volunteer, donate, support needy persons, year abroad, Sponsorship, IJFD, volunteer service, street kids, compare child sponsorship, child sponsorship', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 329, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved', 'legacy_overlay_uid' => 308, 'l10n_parent' => 329, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1478, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Donate & Get Involved', 'link' => '/en/donate-get-involved', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 331, 'pid' => 329, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531408302, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Sponsorships', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 331, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/sponsorships', 'legacy_overlay_uid' => 331, 'l10n_parent' => 331, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1501, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Sponsorships', 'link' => '/en/donate-get-involved/sponsorships', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 332, 'pid' => 329, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1624021820, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1624021782, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Donate', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Donate, donate online, donation form, social organization, Christian relief organization, mission, do something good, donate easily, donate quickly, tax exempt', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Donate for sustainable long-term projects of your choice.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1624021820, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 332, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:7:"Spenden";s:4:"slug";s:26:"/spenden-mitmachen/spenden";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:152:"Spende, online spenden, Spendenformular, soziale Organisation, christliche Hilfsorganisation, Mission, etwas Gutes tun, einfach spenden, schnell spenden";s:11:"description";s:63:"Spenden Sie für nachhaltige, langfristige Projekte Ihrer Wahl.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/donate-get-involved/translate-to-english-spenden', 'legacy_overlay_uid' => 0, 'l10n_parent' => 332, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2188, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Donate', 'link' => '/en/donate-get-involved/translate-to-english-spenden', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 421, 'pid' => 332, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531900896, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Online Donations', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 421, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-2', 'legacy_overlay_uid' => 334, 'l10n_parent' => 421, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1504, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Online Donations', 'link' => '/en/donate-2', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 848, 'pid' => 329, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1625825985, 'sorting' => 640, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1624011381, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Scholarships', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Donate for study scholarship, career start, street children, future, study, university, non-profit, young talent development', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'TOS Ministries International e.V. is an international Christian aid organization working among street children, drug addicts and the needy. In Latin America, we build social ministries among street children; in Belarus, Russia and Greece, we provide therapies for drug addicts. For our charitable work we are looking for sponsors, donors and volunteers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1625825985, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 848, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:17:"Studienstipendium";s:4:"slug";s:36:"/spenden-mitmachen/studienstipendium";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:134:"Spenden für ein Studienstipendium, Berufseinstieg, Straßenkinder, Zukunft, Studium, Universität, gemeinnützig, Nachwuchsförderung";s:11:"description";s:395:"TOS Dienste International e.V. ist eine internationale christliche Hilfsorganisation, die unter Straßenkindern, Drogenabhängigen und Bedürftigen arbeitet. In Lateinamerika bauen wir soziale Dienste unter Straßenkindern auf; in Weißrussland, Russland und Griechenland bieten wir Therapien für Drogenabhängige an. Für unsere gemeinnützige Arbeit suchen wir Paten, Spender und Freiwillige.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/donate-get-involved/translate-to-english-studienstipendium', 'legacy_overlay_uid' => 0, 'l10n_parent' => 848, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2187, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Scholarships', 'link' => '/en/donate-get-involved/translate-to-english-studienstipendium', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 333, 'pid' => 329, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1624625103, 'sorting' => 768, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1624624951, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Volunteer', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a volunteer, support needy people, year abroad, IJFD, ijfd einsatzstellen, volunteer service, volunteer assignment, volunteer service israel, volunteer service latin america, volunteer service belarus, mission assignment, mission, change the world, street children, aid projects, drug addicts, disabled people, adi, adi Israel, people with disabilities, March of Life Israel, Pro Israel, young people, social service ', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '[Translate to English:] Gelegenheiten zum internationalen Mitarbeiten für Jung & Älter. Soziale Dienste unter Drogenabhängigen, Straßenkindern oder Menschen mit Behinderungen in Ost-Europa, Lateinamerika und Israel.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1624625103, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 333, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:19:"Freiwilligendienste";s:4:"slug";s:38:"/spenden-mitmachen/freiwilligendienste";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:456:"Freiwilliger werden, Unterstützung bedürftiger Personen, Auslandsjahr, IJFD, ijfd einsatzstellen, Freiwilligendienst, Freiwilligeneinsatz, freiwilligendienst israel, freiwilligendienst lateinamerika, freiwilligendienst weißrussland, Missionseinsatz, Mission, Welt verändern, Straßenkinder, Hilfsprojekte, Drogenabhängige, Behinderte, Aleh, Aleh Israel, Menschen mit Behinderungen, Marsch des Lebens Israel, Pro Israel, junge Menschen, sozialer Dienst";s:11:"description";s:195:"Gelegenheiten zum internationalen Mitarbeiten für Jung & Älter. Soziale Dienste unter Drogenabhängigen, Straßenkindern oder Menschen mit Behinderungen in Ost-Europa, Lateinamerika und Israel.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/donate-get-involved/translate-to-english-freiwilligendienste', 'legacy_overlay_uid' => 0, 'l10n_parent' => 333, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2189, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Volunteer', 'link' => '/en/donate-get-involved/translate-to-english-freiwilligendienste', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 414, 'pid' => 333, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 128, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531902498, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'South America', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 414, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/volunteer/south-america', 'legacy_overlay_uid' => 335, 'l10n_parent' => 414, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1505, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'South America', 'link' => '/en/donate-get-involved/volunteer/south-america', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 415, 'pid' => 333, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 192, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531914515, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Israel', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 415, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/volunteer/israel', 'legacy_overlay_uid' => 336, 'l10n_parent' => 415, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1506, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Israel', 'link' => '/en/donate-get-involved/volunteer/israel', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 416, 'pid' => 333, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 224, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531914679, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Belarus', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 416, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/volunteer/belarus', 'legacy_overlay_uid' => 337, 'l10n_parent' => 416, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1507, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Belarus', 'link' => '/en/donate-get-involved/volunteer/belarus', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 417, 'pid' => 333, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 384, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531914821, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Testimonials', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 417, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/volunteer/testimonials', 'legacy_overlay_uid' => 338, 'l10n_parent' => 417, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1508, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Testimonials', 'link' => '/en/donate-get-involved/volunteer/testimonials', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))))), array('data' => array('uid' => 255, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 10, 'tstamp' => 1620931016, 'sorting' => 1272, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1519071277, 'cruser_id' => 4, 'hidden' => 0, 'title' => 'News', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'News from TOS Dienste International e.V., our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Welcome to our newsblog at TOS Dienste International e.V. Read about the latest developments in our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1626116885, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 255, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";N;s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/news', 'legacy_overlay_uid' => 218, 'l10n_parent' => 255, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1418, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'News', 'link' => '/en/news', 'target' => '', 'active' => 1, 'current' => 1, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 259, 'pid' => 255, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1627636152, 'sorting' => 64, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1627635782, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Subscribe', 'doktype' => 3, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => 'en/news/#c30412', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 2, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 259, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"custom","url":"custom","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:3;s:5:"title";s:23:"Publikationen bestellen";s:4:"slug";s:29:"/news/publikationen-bestellen";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:3:"url";s:13:"/news/#c30411";s:8:"abstract";N;s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:2;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:8:"nav_hide";i:0;}', 'slug' => '/news/translate-to-english-publikationen-bestellen', 'legacy_overlay_uid' => 0, 'l10n_parent' => 259, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2195, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Subscribe', 'link' => 'https://dev.tos-ministries.tos.info/en/news/#c30412', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 330, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 1792, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1530706960, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Contact', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 330, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/contact', 'legacy_overlay_uid' => 309, 'l10n_parent' => 330, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1479, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Contact', 'link' => '/en/contact', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0)), 'breadcrumb' => array(array('data' => array('uid' => 242, 'pid' => 0, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1624005779, 'sorting' => 1088, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1624005681, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'TOS Ministries International are a Christian charity', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 1, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => null, 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a sponsor, humanitarian aid, rehabilitation centers, rehab center, rehabilitation center Eastern Europe, help in crisis areas, therapy for drug addicts, work with street children, humanitarian aid in crisis areas, street kids, help for children, work with children, social organization, aid work, work with children South America, non-profit organization, children\'s relief organization, work with drug addicts, work with street kids, Christian relief organization, rehabilitation center Eastern Europe', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'TOS Dienste International e.V. is an international Christian aid and relief organization working among street children, drug addicts and the needy. In South America we build social ministries among street children; in Belarus, Russia and Greece we offer therapy for drug addicts. For our charitable work we are looking for sponsors, donors and volunteers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1624005779, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 242, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:66:"Die TOS Dienste International e.V. sind ein christliches Hilfswerk";s:4:"slug";s:1:"/";s:9:"nav_title";s:18:"tos-ministries.org";s:8:"subtitle";s:0:"";s:8:"abstract";N;s:8:"keywords";s:261:"Arbeit mit Kindern, soziale Organisation, Arbeit mit Kindern Südamerika, Non-profit-Organisation, Kinderhilfswerk, Arbeit mit Drogenabhängigen, Arbeit mit Straßenkindern, christliches Hilfswerk, christliche Hilfsorganisation, Rehabilitationszentrum Osteuropa";s:11:"description";s:395:"TOS Dienste International e.V. ist eine internationale christliche Hilfsorganisation, die unter Straßenkindern, Drogenabhängigen und Bedürftigen arbeitet. In Lateinamerika bauen wir soziale Dienste unter Straßenkindern auf; in Weißrussland, Russland und Griechenland bieten wir Therapien für Drogenabhängige an. Für unsere gemeinnützige Arbeit suchen wir Paten, Spender und Freiwillige.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:1;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/', 'legacy_overlay_uid' => 0, 'l10n_parent' => 242, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2185, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, '_MP_PARAM' => '', 'isSpacer' => false), 'title' => 'TOS Ministries International are a Christian charity', 'link' => '/en/', 'target' => '', 'active' => 1, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 255, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 10, 'tstamp' => 1620931016, 'sorting' => 1272, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1519071277, 'cruser_id' => 4, 'hidden' => 0, 'title' => 'News', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => null, 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'News from TOS Dienste International e.V., our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Welcome to our newsblog at TOS Dienste International e.V. Read about the latest developments in our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1626116885, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 255, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";N;s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/news', 'legacy_overlay_uid' => 218, 'l10n_parent' => 255, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1418, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, '_MP_PARAM' => '', 'isSpacer' => false), 'title' => 'News', 'link' => '/en/news', 'target' => '', 'active' => 1, 'current' => 1, 'spacer' => 0)), 'languageNavigation' => array(array('languageId' => 0, 'locale' => 'de_DE.UTF-8', 'title' => 'Deutsch', 'navigationTitle' => 'Deutsch', 'twoLetterIsoCode' => 'de', 'hreflang' => 'de-DE', 'direction' => '', 'flag' => 'flags-de', 'link' => '/news?tx_news_pi1%5BoverwriteDemand%5D%5Bcategories%5D=78&cHash=5e4177c7b94d55fdbfaa7bd5a73d1c2f', 'active' => 0, 'current' => 0, 'available' => 1), array('languageId' => 1, 'locale' => 'en_US.UTF-8', 'title' => 'English', 'navigationTitle' => 'English', 'twoLetterIsoCode' => 'en', 'hreflang' => 'en-US', 'direction' => '', 'flag' => 'flags-us', 'link' => '/en/news?tx_news_pi1%5BoverwriteDemand%5D%5Bcategories%5D=78&cHash=5e4177c7b94d55fdbfaa7bd5a73d1c2f', 'active' => 1, 'current' => 0, 'available' => 1), array('languageId' => 3, 'locale' => 'es_ES.UTF-8', 'title' => 'español', 'navigationTitle' => 'español', 'twoLetterIsoCode' => 'es', 'hreflang' => 'es-ES', 'direction' => '', 'flag' => 'flags-es', 'link' => '', 'active' => 0, 'current' => 0, 'available' => 0), array('languageId' => 2, 'locale' => 'ru_RU.UTF-8', 'title' => 'русский', 'navigationTitle' => 'русский', 'twoLetterIsoCode' => 'ru', 'hreflang' => 'ru-RU', 'direction' => '', 'flag' => 'flags-ru', 'link' => '', 'active' => 0, 'current' => 0, 'available' => 0)), 'config' => array('general' => array('company' => '0', 'homepageUid' => '242', 'pageTitle' => 'jumbotron', 'pageTitlealign' => 'center', 'pageTitleclass' => ''), 'lang' => array('uid' => array(0, 1, 3, 2), 'hreflang' => array('de-DE', 'en-US', 'es-ES', 'ru-RU'), 'title' => array('Deutsch', 'English', 'español', 'русский'), 'flag' => array('flags-de', 'flags-us', 'flags-es', 'flags-ru')), 'navbar' => array('dropdownAnimate' => '', 'dropdownAnimateValue' => 4, 'enable' => 'light', 'sectionMenu' => '', 'brand' => 'imgText', 'brandAlignment' => '{$bootstrap.config.navbarbrandAlignment}', 'hover' => ' dropdown-hover', 'clickableparent' => '1', 'navbarPlusicon' => 0, 'image' => 'fileadmin/tos.info/images/allgemein/logo-tos.info.svg', 'toggler' => 'right', 'containerposition' => 'inside', 'container' => 'container', 'innercontainer' => '{$bootstrap.config.navbarInnercontainer}', 'breakpoint' => 'md', 'shrinkColorschemes' => 'bg-white', 'colorschemes' => 'bg-dark', 'shrinkColor' => 'navbar-light', 'color' => 'navbar-light', 'class' => 'navbar-light navbar-expand-md shrink py-2 bg-dark clickableparent navbarHover fixed-top', 'dropdown' => 'dropdown', 'spacer' => '0', 'megamenu' => '0', 'placement' => 'fixed-top', 'sticky' => false, 'alignment' => 'left', 'mauto' => ' me-auto', 'offcanvas' => '1', 'offcanvasBgColorClass' => 'bg-dark', 'offcanvasTitleColor' => 'rgba(0, 0, 0, 0.75)', 'offcanvasCross' => 'dark', 'navbarAlignment' => 'start', 'offcanvasAlign' => 'end', 'animatedToggler' => '0'), 'jumbotron' => array('enable' => '1', 'slide' => '0', 'position' => 'below', 'container' => 'container', 'containerposition' => 'Inside', 'class' => ' '), 'breadcrumb' => array('class' => ''), 'footer' => array('enable' => '1', 'sticky' => '0', 'fluid' => '1', 'slide' => '0', 'container' => 'container', 'containerposition' => 'Inside', 'class' => 'bg-white text-light')), 'colAside' => 3, 'colMain' => 9, 'gridBreakpoint' => 'md', 'navbarBreakpoint' => 'md'), false)
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 143
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => 'PageContent', 'partial' => null, 'delegate' => null, 'renderable' => null, 'arguments' => array('settings' => array('expandedContent' => '0', 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'fontawesome' => array('pagetitle' => '1'), 'pagebrowser' => array('enable' => '0'), 'navbar' => array('searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'image' => array('defaultPath' => 'fileadmin/tos.info/images/allgemein/logo-tos.info.svg', 'width' => '50', 'height' => '28', 'altText' => 'Company Logo'), 'subdropdown' => array('twoColumns' => '30')), 'pages' => array('override' => array('smallColumns' => '', 'breakpoint' => '')), 'config' => array('uid' => '3', 'company' => '0', 'homepageUid' => '242', 'pageTitle' => 'jumbotron', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '4', 'navbarBrand' => 'imgText', 'navbarbrandAlignment' => '{$bootstrap.config.navbarbrandAlignment}', 'navbarImage' => '0', 'navbarColor' => 'dark', 'navbarBackground' => 'transparent', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarInnercontainer' => '{$bootstrap.config.navbarInnercontainer}', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'left', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'md', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => '0', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '0', 'breadcrumbFaicon' => '0', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => '0', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '99', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '1', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-white text-light', 'footerPid' => '244', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => 'pt-5', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '2', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '0', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch' => array('targetPid' => '')), 'be_layout' => 'OneCol', 'loginForm' => '<!--INT_SCRIPT.2cd4fe9e42876dcdd9957dee2ab41cb3-->', 'data' => array('uid' => 255, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 10, 'tstamp' => 1620931016, 'sorting' => 1272, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1519071277, 'cruser_id' => 4, 'hidden' => 0, 'title' => 'News', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'News from TOS Dienste International e.V., our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Welcome to our newsblog at TOS Dienste International e.V. Read about the latest developments in our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1626116885, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 255, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";N;s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/news', 'legacy_overlay_uid' => 218, 'l10n_parent' => 255, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1418, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'currentValue_kidjls9dksoje' => 'OneCol'), 'current' => 'OneCol', 'navbarMenu' => array(array('data' => array('uid' => 304, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621604846, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621604647, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'About us', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'work with children, social organizations, work with children south america, non-profit organization, children\'s charity, work with drug addicts, work with street children, christian charity, christian aid organization, rehabilitation center eastern europe, team, employees', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => ' ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621604846, 'abstract' => 'e are a Christian charity, and as part of TOS Ministries we are working among street children, drug addicts, and destitute, who are transformed through the love of God, enabling them to transform their societies from inside.', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 304, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:9:"Über uns";s:4:"slug";s:10:"/ueber-uns";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:282:"Die TOS Dienste International e.V. sind ein christliches Hilfswerk, das als Teil des TOS Werkes unter Straßenkindern, Drogenabhängigen und Bedürftigen arbeitet, die durch die Liebe Gottes verändert und befähigt worden sind, ihre Gesellschaft von innen heraus zu transformieren.";s:8:"keywords";s:282:"Arbeit mit Kindern, soziale Organisationen, Arbeit mit Kindern Südamerika, Non-profit-Organisation, Kinderhilfswerk, Arbeit mit Drogenabhängigen, Arbeit mit Straßenkindern, christliches Hilfswerk, christliche Hilfsorganisation, Rehabilitationszentrum Osteuropa, Team, Mitarbeiter";s:11:"description";s:315:"Wir sind eine internationale, christliche Hilfsorganisation für Straßenkinder und Drogenabhängige. Unsere Einrichtungen befinden sich Lateinamerika, Ost- und Südeuropa. Erfahren Sie, was uns antreibt und lernen Sie unsere Teams vor Ort kennen. Außerdem stellen wir Ihnen die Ansprechpartner in Deutschland vor.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-ueber-uns', 'legacy_overlay_uid' => 0, 'l10n_parent' => 304, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2154, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'About us', 'link' => '/en/translate-to-english-ueber-uns', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 305, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 768, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1530698399, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Branches', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a sponsor, humanitarian aid, rehabilitation centers, rehab center, rehabilitation center Eastern Europe, help in crisis areas, therapy for drug addicts, work with street children, humanitarian aid in crisis areas, street kids, help for children', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'We are developing social services for street children in South America and offering therapy to drug addicts in Belarus, Russia and Greece. Learn more about our work.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 305, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches', 'legacy_overlay_uid' => 306, 'l10n_parent' => 305, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1476, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Branches', 'link' => '/en/branches', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 310, 'pid' => 305, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1627651240, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623405941, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Street Children', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a sponsor, humanitarian aid, rehabilitation centers, rehab center, rehabilitation center Eastern Europe, help in crisis areas, therapy for drug addicts, work with street children, humanitarian aid in crisis areas, street kids, help for children, day care centers, Holy Spirit, volunteers, orphanages, homes for street children, transformation, mission, South America', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In order for street children in Latin America to break out of poverty and violence, they need a protected environment in which they can be supported. That is why we have built children\'s homes, a day care center and prevention programs in Argentina, Bolivia, Ecuador, Paraguay and Peru. We are looking for sponsors and donors for this work.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1627651240, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 310, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:42:{s:7:"doktype";i:1;s:5:"title";s:62:"Straßenkindern Zukunft geben - TOS Dienste International e.V.";s:4:"slug";s:15:"/strassenkinder";s:9:"nav_title";s:14:"Straßenkinder";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:338:"Pate werden, Straßenkinder, Hilfsangebote für Kinder, Präventionsarbeit, Kindertagesstätte in Südamerika, Patenschaft für Straßenkinder, Straßenkinder in Lateinamerika, Kinderheime in Lateinamerika, Hilfsangebote für Straßenkinder, Freiwilligenarbeit Kinderheim Südamerika, Transformation, Mission, Heiliger Geist, Veränderung";s:11:"description";s:161:"Straßenkinder in Lateinamerika brauchen Hilfe. Mit Kinderhäusern, KiTa und Präventionsarbeit eröffnen wir solchen Kindern eine Zukunft. Helfen Sie uns dabei.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:8:"editlock";i:0;s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/translate-to-english-strassenkindern-zukunft-geben-tos-dienste-international-ev', 'legacy_overlay_uid' => 0, 'l10n_parent' => 310, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2169, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Street Children', 'link' => '/en/branches/translate-to-english-strassenkindern-zukunft-geben-tos-dienste-international-ev', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 313, 'pid' => 310, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1620390703, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Transformation Houses', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '[Translate to English:] Straßenkinder, Hilfsangebote für Kinder, Kinderheime in Lateinamerika, Hilfsangebote für Straßenkinder, Freiwilligenarbeit, Kinderhäuser Lateinamerika, Kinderheim Südamerika, Peru, Paraguay, Ecuador, Argentinien, Bolivien, Slumkinder, arme Kinder, Mission, Hilfe für Kinder, Transformation', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '[Translate to English:] In Lateinamerika gibt es 40 Mio. Straßenkinder, für die wir 50 Kinderhäuser aufbauen wollen, damit sie aus dem Kreislauf von Armut, Gewalt und Hoffnungslosigkeit ausbrechen und zu Hoffnungsträgern ihrer Gesellschaft werden.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 313, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"custom","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:42:{s:7:"doktype";i:1;s:5:"title";s:22:"Transformatorenhäuser";s:4:"slug";s:52:"/arbeitszweige/strassenkinder/transformatorenhaeuser";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:296:"Straßenkinder, Hilfsangebote für Kinder, Kinderheime in Lateinamerika, Hilfsangebote für Straßenkinder, Freiwilligenarbeit, Kinderhäuser Lateinamerika, Kinderheim Südamerika, Peru, Paraguay, Ecuador, Argentinien, Bolivien, Slumkinder, arme Kinder, Mission, Hilfe für Kinder, Transformation";s:11:"description";s:227:"In Lateinamerika gibt es 40 Mio. Straßenkinder, für die wir 50 Kinderhäuser aufbauen wollen, damit sie aus dem Kreislauf von Armut, Gewalt und Hoffnungslosigkeit ausbrechen und zu Hoffnungsträgern ihrer Gesellschaft werden.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:9:"no_search";i:0;s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:8:"editlock";i:0;s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/strassenkinder/translate-to-english-transformatorenhaeuser', 'legacy_overlay_uid' => 0, 'l10n_parent' => 313, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1998, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Transformation Houses', 'link' => '/en/strassenkinder/translate-to-english-transformatorenhaeuser', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 315, 'pid' => 310, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623401646, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623401517, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Day Care Center', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'day care center, work with small children, day care centre in poor area, day care center in South America, street children, help for children, Argentina, street children, mission, transformation, poor children, slum children, children\'s charity, sponsorship, Salta, Jujuy', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Latin America, there are 40 million street children for whom we are building day care centers so that they can break out of the cycle of poverty, violence and hopelessness and become beacons of hope in their society.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623401646, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 315, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:18:"Kindertagesstätte";s:4:"slug";s:48:"/arbeitszweige/strassenkinder/kindertagesstaette";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:266:"Kindertagesstätte, Arbeit mit Kleinkindern, KiTa im Armenviertel, Kindertagesstätte in Südamerika, Straßenkinder, Hilfsangebote für Kinder, Argentinien, Straßenkinder, Mission, Transformation, arme Kinder, Slumkinder, Kinderhilfswerk, Patenschaft, Salta, Jujuy";s:11:"description";s:223:"In Lateinamerika gibt es 40 Mio. Straßenkinder, für die wir Kindertagesstätten aufbauen, damit sie aus dem Kreislauf von Armut, Gewalt und Hoffnungslosigkeit ausbrechen und zu Hoffnungsträgern ihrer Gesellschaft werden.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/strassenkinder/translate-to-english-kindertagesstaette', 'legacy_overlay_uid' => 0, 'l10n_parent' => 315, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2166, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Day Care Center', 'link' => '/en/strassenkinder/translate-to-english-kindertagesstaette', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 314, 'pid' => 310, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623415030, 'sorting' => 640, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623414824, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Drug and Crime Prevention', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Street children, creative workshops, aid for children, prevention work, sponsorship for street children, street children in Latin America, aid for street children, prevention work South America, educational workshops, slum children, transformation, mission, Holy Spirit, Ecuador, Bolivia, Peru, Paraguay, Guayaquil, Lima, Sucre, South America, sponsorship', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'There are 40 million street children in Latin America for whom we are building prevention work so that they can break out of the cycle of poverty, violence and hopelessness and become beacons of hope in their society.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623415030, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 314, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:18:"Präventionsarbeit";s:4:"slug";s:48:"/arbeitszweige/strassenkinder/praeventionsarbeit";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:371:"Straßenkinder, kreative Workshops, Hilfsangebote für Kinder, Präventionsarbeit, Patenschaft für Straßenkinder, Straßenkinder in Lateinamerika, Hilfsangebote für Straßenkinder, Präventionsarbeit Südamerika, Bildungsworkshops, Slumkinder, Transformation, Mission, Heiliger Geist, Ecuador, Bolivien, Peru, Paraguay, Guayaquil, Lima, Sucre, Südamerika, Patenschaft";s:11:"description";s:224:"In Lateinamerika gibt es 40 Mio. Straßenkinder, für die wir Präventionsarbeiten aufbauen, damit sie aus dem Kreislauf von Armut, Gewalt und Hoffnungslosigkeit ausbrechen und zu Hoffnungsträgern ihrer Gesellschaft werden.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/branches/translate-to-english-strassenkindern-zukunft-geben-tos-dienste-international-ev/translate-to-english-praeventionsarbeit', 'legacy_overlay_uid' => 0, 'l10n_parent' => 314, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2170, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Drug and Crime Prevention', 'link' => '/en/branches/translate-to-english-strassenkindern-zukunft-geben-tos-dienste-international-ev/translate-to-english-praeventionsarbeit', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 311, 'pid' => 305, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1530894157, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Rehab', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'free of drugs, becoming a sponsor, aftercare, sponsorship, outpatient rehabilitation, drug addiction, rehabilitation work in Eastern Europe, drug rehabilitation, therapy for drug addicts, inpatient drug rehabilitation, contact work, transformation, Belarus, Greece, Russia, mission, addicts changed, rehab center', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In order for drug addicts in Southern and Eastern Europe to be able to conquer their addiction, they need intensive and sustainable therapy. That is why we have set up an inpatient rehabilitation facility and outpatient rehabilitation services in Belarus, Russia and Greece. We are looking for sponsors and donors for this work.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 311, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/rehab', 'legacy_overlay_uid' => 316, 'l10n_parent' => 311, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1486, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Rehab', 'link' => '/en/branches/rehab', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 316, 'pid' => 311, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531150210, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Contact Stage', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 316, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/rehab/contact-stage', 'legacy_overlay_uid' => 317, 'l10n_parent' => 316, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1487, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Contact Stage', 'link' => '/en/branches/rehab/contact-stage', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 317, 'pid' => 311, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531150597, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Stationary Drug Rehab', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 317, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/rehab/stationary-drug-rehab', 'legacy_overlay_uid' => 318, 'l10n_parent' => 317, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1488, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Stationary Drug Rehab', 'link' => '/en/branches/rehab/stationary-drug-rehab', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 318, 'pid' => 311, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 768, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531150839, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Third Stage & Follow-Up', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 318, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/branches/rehab/third-stage-follow-up', 'legacy_overlay_uid' => 319, 'l10n_parent' => 318, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1489, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Third Stage & Follow-Up', 'link' => '/en/branches/rehab/third-stage-follow-up', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 319, 'pid' => 305, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623416446, 'sorting' => 640, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623416241, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Humanitarian Aid', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'humanitarian aid, emergency aid, aid in crisis areas, humanitarian aid in crisis areas, relief operations, aid transport, refugee aid in crisis areas, mission, crisis, war zone, sustainable development, rapid intervention, Iraq, Eastern Europe, Israel, Belarus, Kosovo, Peru, earthquake, flood, Estonia, Paraguay, fire disaster, Haiti', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In addition to our long-term projects for street children and drug addicts, we get involved in humanitarian crisis situations. We organize aid transports and provide spontaneous humanitarian aid ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623416446, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 319, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:17:"Humanitäre Hilfe";s:4:"slug";s:32:"/arbeitszweige/humanitaere-hilfe";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:372:"humanitäre Hilfe, Soforthilfe, Hilfe in Krisengebieten, humanitäre Hilfe in Krisengebieten, Hilfseinsätze, Hilfsgütertransporte, Flüchtlingshilfe in Krisengebieten, Mission, Krise, Kriegsgebiet, nachhaltige Entwicklung, schnelle Intervention, Irak, Ost-Europa, Israel, Weißrussland, Kosovo, Peru, Erdbeben, Überschwemmung, Estland, Paraguay, Brandkatastrophe, Haiti";s:11:"description";s:221:"Zusätzlich zu unseren langfristigen Projekten für Straßenkinder und Drogenabhängige engagieren wir uns in humanitären Krisensituationen. Wir organisieren Hilfsgütertransporte und leisten spontane humanitäre Hilfe. ";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/branches/translate-to-english-humanitaere-hilfe', 'legacy_overlay_uid' => 0, 'l10n_parent' => 319, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2172, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Humanitarian Aid', 'link' => '/en/branches/translate-to-english-humanitaere-hilfe', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 320, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620992819, 'sorting' => 928, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1620992709, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Worldwide', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'social projects, year abroad, IJFD, international aid projects, voluntary service abroad, voluntary service Russia, voluntary service Peru, voluntary service Greece, voluntary service Belarus, voluntary service Ecuador', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1620992819, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 320, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:8:"Weltweit";s:4:"slug";s:9:"/weltweit";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:237:"soziale Projekte, Auslandsjahr, IJFD, internationale Hilfsprojekte, Freiwilligendienst ausland, Freiwilligendienst Russland, Freiwilligendienst Peru, Freiwilligendienst Griechenland, Freiwilligendienst Belarus, Freiwilligendienst Ecuador";s:11:"description";s:0:"";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit', 'legacy_overlay_uid' => 0, 'l10n_parent' => 320, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2130, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Worldwide', 'link' => '/en/translate-to-english-weltweit', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 321, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620998047, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1620997976, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Argentina', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'social projects, Argentina, day care center, work with small children KiTa in poor area, day care center in South America, street children, help for children, poor children, slum children', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Argentina, we provide daycare for children from Juju\'s poor neighborhoods.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620998047, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 321, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:11:"Argentinien";s:4:"slug";s:12:"/argentinien";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:198:"soziale Projekte, Argentinien, Kindertagesstätte, Arbeit mit Kleinkindern KiTa im Armenviertel, Kindertagesstätte in Südamerika, Straßenkinder, Hilfsangebote für Kinder, arme Kinder, Slumkinder";s:11:"description";s:99:"In Argentinien bieten wir Kindern aus den Armenvierteln Jujuys Betreuung in der Kindertagesstätte.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-argentinien', 'legacy_overlay_uid' => 0, 'l10n_parent' => 321, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2131, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Argentina', 'link' => '/en/translate-to-english-weltweit/translate-to-english-argentinien', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 322, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621000102, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621000039, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Bolivia', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'social projects, volunteer service in Bolivia, street children, aid for children, children\'s homes in Latin America, aid for street children, volunteer work, children\'s homes Latin America, children\'s home South America street children, prevention work, prevention work South America, poverty, child labor', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Bolivien bieten wir Straßenkindern ein neues Zuhause im Transformatorenhaus in Sucre.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621000102, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 322, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:8:"Bolivien";s:4:"slug";s:9:"/bolivien";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:317:"soziale Projekte, Freiwilligendienst in Bolivien, Straßenkinder, Hilfsangebote für Kinder, Kinderheime in Lateinamerika, Hilfsangebote für Straßenkinder, Freiwilligenarbeit, Kinderhäuser Lateinamerika, Kinderheim Südamerika Straßenkinder, Präventionsarbeit, Präventionsarbeit Südamerika, Armut, Kinderarbeit";s:11:"description";s:89:"In Bolivien bieten wir Straßenkindern ein neues Zuhause im Transformatorenhaus in Sucre.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-bolivien', 'legacy_overlay_uid' => 0, 'l10n_parent' => 322, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2132, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Bolivia', 'link' => '/en/translate-to-english-weltweit/translate-to-english-bolivien', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 323, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621001710, 'sorting' => 768, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621001656, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Ecuador', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'creative workshops, work with children, prevention work, volunteer service in Ecuador, humanitarian aid, mission, street children, slum, poor children, transformation, Guayaquil, Manabi, slums', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Ecuador, we offer creative recreational programs for slum children in Guayaquil and Abdón Calderón/Manabi.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621001710, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 323, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:7:"Ecuador";s:4:"slug";s:17:"/weltweit/ecuador";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:217:"kreative Workshops, Arbeit mit Kindern, Präventionsarbeit, Freiwilligendienst in Ecuador, humanitäre Hilfe, Mission, Straßenkinder, Slum, arme Kinder, Heiliger Geist, Transformation, Guayaquil, Manabi, Armenviertel";s:11:"description";s:109:"In Ecuador bieten wir in Guayaquil und Abdón Calderón/Manabi kreatives Freizeitprogramm für Slumkinder an.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-ecuador', 'legacy_overlay_uid' => 0, 'l10n_parent' => 323, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2133, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Ecuador', 'link' => '/en/translate-to-english-weltweit/translate-to-english-ecuador', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 324, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621003485, 'sorting' => 1024, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621002601, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Paraguay', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Volunteer service in Paraguay, prevention work, children\'s homes in Latin America, aid for children, street children, poor children, children\'s home Paraguay, change, transformation ', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Paraguay, we offer creative recreational programs for slum children in Ñemby.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621003485, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 324, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:8:"Paraguay";s:4:"slug";s:9:"/paraguay";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:221:"Freiwilligendienst in Paraguay, Präventionsarbeit, Kinderhäuser in Lateinamerika, Hilfsangebote für Kinder, Straßenkinder, arme Kinder, Kinderheim Paraguay, Veränderung, Transformation, Liebe Gottes, Heiliger Geist ";s:11:"description";s:90:"In Paraguay bieten wir Straßenkindern ein neues Zuhause im Transformatorenhaus in Ñemby.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-paraguay', 'legacy_overlay_uid' => 0, 'l10n_parent' => 324, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2134, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Paraguay', 'link' => '/en/translate-to-english-weltweit/translate-to-english-paraguay', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 325, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1621003622, 'sorting' => 1280, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1621003542, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Peru', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Volunteer service in Peru, prevention work, children\'s homes in Latin America, aid for children, street children, poor children, children\'s home Paraguay, change, transformation, Lima, Peru', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Peru we offer street children a new home in ourTransformation House in Lima', 'no_search' => 0, 'SYS_LASTCHANGED' => 1621003622, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 325, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:4:"Peru";s:4:"slug";s:5:"/peru";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:212:"kreative Workshops, Freiwilligendienst Peru, Kinderhäuser in Südamerika, Straßenkinder, Hilfsangebote für Kinder, Präventionsarbeit, arme Kinder, Liebe Gottes, Mission, Heiliger Geist, Kinderheim, Lima, Peru";s:11:"description";s:84:"In Peru bieten wir Straßenkindern ein neues Zuhause im Transformatorenhaus in Lima.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-peru', 'legacy_overlay_uid' => 0, 'l10n_parent' => 325, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2135, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Peru', 'link' => '/en/translate-to-english-weltweit/translate-to-english-peru', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 327, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623418904, 'sorting' => 1344, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623418692, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Greece', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'free from drugs, outpatient therapy, defeat addiction, contact work in Greece, drug addicts in southern Europe, love of God, Holy Spirit, transformation, mission, edge of society, addiction', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Griechenland bieten wir Drogenabhängigen und armen Menschen in Thessaloniki ambulante Hilfe.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623418904, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 327, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:12:"Griechenland";s:4:"slug";s:13:"/griechenland";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:211:"frei von Drogen, ambulante Therapie, die Sucht besiegen, Kontaktarbeit in Griechenland, Drogenabhängige in Südeuropa, Liebe Gottes, Heiliger Geist, Transformation, Mission, Rand der Gesellschaft, Abhängigkeit";s:11:"description";s:96:"In Griechenland bieten wir Drogenabhängigen und armen Menschen in Thessaloniki ambulante Hilfe.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-griechenland', 'legacy_overlay_uid' => 0, 'l10n_parent' => 327, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2173, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Greece', 'link' => '/en/translate-to-english-weltweit/translate-to-english-griechenland', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 326, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623420578, 'sorting' => 1536, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623420525, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Russia', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'free from drugs, defeat addiction, outpatient rehab, drug addiction, drug rehab, therapy for drug addicts, inpatient drug rehab, contact work, outpatient therapy, contact work in Russia, outpatient counseling, rehab work in Eastern Europe, Holy Spirit, mission, transformation, love of God, addiction, ', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Russia, we provide outpatient help to drug addicts and those seeking help in Siberia.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623420578, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 326, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:8:"Russland";s:4:"slug";s:9:"/russland";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:319:"frei von Drogen, die Sucht besiegen, ambulante Reha, Drogenabhängigkeit, Drogenreha, Therapie für Drogenabhängige, stationäre Drogenreha, Kontaktarbeit, ambulante Therapie, Kontaktarbeit in Russland, ambulante Beratung, Rehaarbeit in Osteuropa, Heiliger Geist, Mission, Transformation, Liebe Gottes, Abhängigkeit, ";s:11:"description";s:88:"In Russland bieten wir Drogenabhängigen und Hilfesuchenden in Sibirien ambulante Hilfe.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-russland', 'legacy_overlay_uid' => 0, 'l10n_parent' => 326, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2174, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Russia', 'link' => '/en/translate-to-english-weltweit/translate-to-english-russland', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 328, 'pid' => 320, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1623998470, 'sorting' => 1792, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1623998395, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Belarus', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'free from drugs, aftercare, defeat addiction, integration into society, drug addiction, rehab work in Eastern Europe, therapy for drug addicts, inpatient drug rehab, contact work, outpatient rehab in Belarus, rehabilitation center, rehab work in Eastern Europe, help for drug addicts, aftercare drug rehab, addicts, transformation, Holy Spirit,', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In Belarus, we provide outpatient and inpatient drug rehabilitation to drug addicts from all over the country.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1623998470, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 328, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:13:"Weißrussland";s:4:"slug";s:14:"/weissrussland";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:375:"frei von Drogen, Nachsorge, die Sucht besiegen, Integration in die Gesellschaft, Drogenabhängigkeit, Rehaarbeit in Osteuropa, Therapie für Drogenabhängige, stationäre Drogenreha, Kontaktarbeit, Ambulante Reha in Weißrussland, Rehabilitationszentrum, Rehaarbeit in Osteuropa, Hilfe für Drogenabhängige, Nachsorge Drogenreha, Abhängige, Transformation, Heiliger Geist, ";s:11:"description";s:113:"In Weißrussland bieten wir Drogenabhängigen aus dem ganzen Land ambulante und stationäre Drogenrehabilitation.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/translate-to-english-weltweit/translate-to-english-weissrussland', 'legacy_overlay_uid' => 0, 'l10n_parent' => 328, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2184, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Belarus', 'link' => '/en/translate-to-english-weltweit/translate-to-english-weissrussland', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 329, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 1184, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1530700954, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Donate & Get Involved', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a sponsor, become a volunteer, donate, support needy persons, year abroad, Sponsorship, IJFD, volunteer service, street kids, compare child sponsorship, child sponsorship', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 329, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved', 'legacy_overlay_uid' => 308, 'l10n_parent' => 329, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1478, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Donate & Get Involved', 'link' => '/en/donate-get-involved', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 331, 'pid' => 329, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531408302, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Sponsorships', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 331, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/sponsorships', 'legacy_overlay_uid' => 331, 'l10n_parent' => 331, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1501, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Sponsorships', 'link' => '/en/donate-get-involved/sponsorships', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 332, 'pid' => 329, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1624021820, 'sorting' => 512, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1624021782, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Donate', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Donate, donate online, donation form, social organization, Christian relief organization, mission, do something good, donate easily, donate quickly, tax exempt', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Donate for sustainable long-term projects of your choice.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1624021820, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 332, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:7:"Spenden";s:4:"slug";s:26:"/spenden-mitmachen/spenden";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:152:"Spende, online spenden, Spendenformular, soziale Organisation, christliche Hilfsorganisation, Mission, etwas Gutes tun, einfach spenden, schnell spenden";s:11:"description";s:63:"Spenden Sie für nachhaltige, langfristige Projekte Ihrer Wahl.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/donate-get-involved/translate-to-english-spenden', 'legacy_overlay_uid' => 0, 'l10n_parent' => 332, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2188, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Donate', 'link' => '/en/donate-get-involved/translate-to-english-spenden', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 421, 'pid' => 332, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531900896, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Online Donations', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 421, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-2', 'legacy_overlay_uid' => 334, 'l10n_parent' => 421, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1504, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Online Donations', 'link' => '/en/donate-2', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 848, 'pid' => 329, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1625825985, 'sorting' => 640, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1624011381, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Scholarships', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Donate for study scholarship, career start, street children, future, study, university, non-profit, young talent development', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'TOS Ministries International e.V. is an international Christian aid organization working among street children, drug addicts and the needy. In Latin America, we build social ministries among street children; in Belarus, Russia and Greece, we provide therapies for drug addicts. For our charitable work we are looking for sponsors, donors and volunteers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1625825985, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 848, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:17:"Studienstipendium";s:4:"slug";s:36:"/spenden-mitmachen/studienstipendium";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:134:"Spenden für ein Studienstipendium, Berufseinstieg, Straßenkinder, Zukunft, Studium, Universität, gemeinnützig, Nachwuchsförderung";s:11:"description";s:395:"TOS Dienste International e.V. ist eine internationale christliche Hilfsorganisation, die unter Straßenkindern, Drogenabhängigen und Bedürftigen arbeitet. In Lateinamerika bauen wir soziale Dienste unter Straßenkindern auf; in Weißrussland, Russland und Griechenland bieten wir Therapien für Drogenabhängige an. Für unsere gemeinnützige Arbeit suchen wir Paten, Spender und Freiwillige.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/donate-get-involved/translate-to-english-studienstipendium', 'legacy_overlay_uid' => 0, 'l10n_parent' => 848, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2187, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Scholarships', 'link' => '/en/donate-get-involved/translate-to-english-studienstipendium', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 333, 'pid' => 329, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1624625103, 'sorting' => 768, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1624624951, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Volunteer', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a volunteer, support needy people, year abroad, IJFD, ijfd einsatzstellen, volunteer service, volunteer assignment, volunteer service israel, volunteer service latin america, volunteer service belarus, mission assignment, mission, change the world, street children, aid projects, drug addicts, disabled people, adi, adi Israel, people with disabilities, March of Life Israel, Pro Israel, young people, social service ', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '[Translate to English:] Gelegenheiten zum internationalen Mitarbeiten für Jung & Älter. Soziale Dienste unter Drogenabhängigen, Straßenkindern oder Menschen mit Behinderungen in Ost-Europa, Lateinamerika und Israel.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1624625103, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 333, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:19:"Freiwilligendienste";s:4:"slug";s:38:"/spenden-mitmachen/freiwilligendienste";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:8:"abstract";s:0:"";s:8:"keywords";s:456:"Freiwilliger werden, Unterstützung bedürftiger Personen, Auslandsjahr, IJFD, ijfd einsatzstellen, Freiwilligendienst, Freiwilligeneinsatz, freiwilligendienst israel, freiwilligendienst lateinamerika, freiwilligendienst weißrussland, Missionseinsatz, Mission, Welt verändern, Straßenkinder, Hilfsprojekte, Drogenabhängige, Behinderte, Aleh, Aleh Israel, Menschen mit Behinderungen, Marsch des Lebens Israel, Pro Israel, junge Menschen, sozialer Dienst";s:11:"description";s:195:"Gelegenheiten zum internationalen Mitarbeiten für Jung & Älter. Soziale Dienste unter Drogenabhängigen, Straßenkindern oder Menschen mit Behinderungen in Ost-Europa, Lateinamerika und Israel.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/donate-get-involved/translate-to-english-freiwilligendienste', 'legacy_overlay_uid' => 0, 'l10n_parent' => 333, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2189, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Volunteer', 'link' => '/en/donate-get-involved/translate-to-english-freiwilligendienste', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 414, 'pid' => 333, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 128, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531902498, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'South America', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 414, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/volunteer/south-america', 'legacy_overlay_uid' => 335, 'l10n_parent' => 414, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1505, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'South America', 'link' => '/en/donate-get-involved/volunteer/south-america', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 415, 'pid' => 333, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 192, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531914515, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Israel', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 415, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/volunteer/israel', 'legacy_overlay_uid' => 336, 'l10n_parent' => 415, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1506, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Israel', 'link' => '/en/donate-get-involved/volunteer/israel', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 416, 'pid' => 333, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 224, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531914679, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Belarus', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 416, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/volunteer/belarus', 'legacy_overlay_uid' => 337, 'l10n_parent' => 416, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1507, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Belarus', 'link' => '/en/donate-get-involved/volunteer/belarus', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 417, 'pid' => 333, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 384, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1531914821, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Testimonials', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 417, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/donate-get-involved/volunteer/testimonials', 'legacy_overlay_uid' => 338, 'l10n_parent' => 417, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1508, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Testimonials', 'link' => '/en/donate-get-involved/volunteer/testimonials', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))))), array('data' => array('uid' => 255, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 10, 'tstamp' => 1620931016, 'sorting' => 1272, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1519071277, 'cruser_id' => 4, 'hidden' => 0, 'title' => 'News', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'News from TOS Dienste International e.V., our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Welcome to our newsblog at TOS Dienste International e.V. Read about the latest developments in our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1626116885, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 255, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";N;s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/news', 'legacy_overlay_uid' => 218, 'l10n_parent' => 255, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1418, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'News', 'link' => '/en/news', 'target' => '', 'active' => 1, 'current' => 1, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 259, 'pid' => 255, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1627636152, 'sorting' => 64, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1627635782, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'Subscribe', 'doktype' => 3, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => 'en/news/#c30412', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 2, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 259, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"custom","url":"custom","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:3;s:5:"title";s:23:"Publikationen bestellen";s:4:"slug";s:29:"/news/publikationen-bestellen";s:9:"nav_title";s:0:"";s:8:"subtitle";s:0:"";s:3:"url";s:13:"/news/#c30411";s:8:"abstract";N;s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:2;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:8:"nav_hide";i:0;}', 'slug' => '/news/translate-to-english-publikationen-bestellen', 'legacy_overlay_uid' => 0, 'l10n_parent' => 259, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2195, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Subscribe', 'link' => 'https://dev.tos-ministries.tos.info/en/news/#c30412', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))), array('data' => array('uid' => 330, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1620931016, 'sorting' => 1792, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1530706960, 'cruser_id' => 12, 'hidden' => 0, 'title' => 'Contact', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1620931016, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 330, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";s:0:"";s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/contact', 'legacy_overlay_uid' => 309, 'l10n_parent' => 330, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1479, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, 'isSpacer' => false), 'title' => 'Contact', 'link' => '/en/contact', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0)), 'breadcrumb' => array(array('data' => array('uid' => 242, 'pid' => 0, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1624005779, 'sorting' => 1088, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1624005681, 'cruser_id' => 16, 'hidden' => 0, 'title' => 'TOS Ministries International are a Christian charity', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 1, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => null, 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'Become a sponsor, humanitarian aid, rehabilitation centers, rehab center, rehabilitation center Eastern Europe, help in crisis areas, therapy for drug addicts, work with street children, humanitarian aid in crisis areas, street kids, help for children, work with children, social organization, aid work, work with children South America, non-profit organization, children\'s relief organization, work with drug addicts, work with street kids, Christian relief organization, rehabilitation center Eastern Europe', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'TOS Dienste International e.V. is an international Christian aid and relief organization working among street children, drug addicts and the needy. In South America we build social ministries among street children; in Belarus, Russia and Greece we offer therapy for drug addicts. For our charitable work we are looking for sponsors, donors and volunteers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1624005779, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 1, 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_smallColumns' => '3', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => 'default', 'tx_t3sbootstrap_breakpoint' => 'md', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 242, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:26:{s:7:"doktype";i:1;s:5:"title";s:66:"Die TOS Dienste International e.V. sind ein christliches Hilfswerk";s:4:"slug";s:1:"/";s:9:"nav_title";s:18:"tos-ministries.org";s:8:"subtitle";s:0:"";s:8:"abstract";N;s:8:"keywords";s:261:"Arbeit mit Kindern, soziale Organisation, Arbeit mit Kindern Südamerika, Non-profit-Organisation, Kinderhilfswerk, Arbeit mit Drogenabhängigen, Arbeit mit Straßenkindern, christliches Hilfswerk, christliche Hilfsorganisation, Rehabilitationszentrum Osteuropa";s:11:"description";s:395:"TOS Dienste International e.V. ist eine internationale christliche Hilfsorganisation, die unter Straßenkindern, Drogenabhängigen und Bedürftigen arbeitet. In Lateinamerika bauen wir soziale Dienste unter Straßenkindern auf; in Weißrussland, Russland und Griechenland bieten wir Therapien für Drogenabhängige an. Für unsere gemeinnützige Arbeit suchen wir Paten, Spender und Freiwillige.";s:32:"tx_t3sbootstrap_fontawesome_icon";s:0:"";s:6:"hidden";i:0;s:10:"categories";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:1;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";}', 'slug' => '/', 'legacy_overlay_uid' => 0, 'l10n_parent' => 242, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 2185, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, '_MP_PARAM' => '', 'isSpacer' => false), 'title' => 'TOS Ministries International are a Christian charity', 'link' => '/en/', 'target' => '', 'active' => 1, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 255, 'pid' => 242, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 10, 'tstamp' => 1620931016, 'sorting' => 1272, 'deleted' => 0, 'perms_userid' => 4, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1519071277, 'cruser_id' => 4, 'hidden' => 0, 'title' => 'News', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'shortcut' => 0, 'shortcut_mode' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => null, 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'News from TOS Dienste International e.V., our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Welcome to our newsblog at TOS Dienste International e.V. Read about the latest developments in our projects in Paraguay, Argentina, Peru, Ecuador, Belarus, Russia. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1626116885, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__OneCol', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'categories' => 0, 'tx_t3sbootstrap_fontawesome_icon' => '', 'tx_t3sbootstrap_linkToTop' => 0, 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_smallColumns' => '', 'tx_t3sbootstrap_dropdownRight' => 0, 'tx_t3sbootstrap_mobileOrder' => '', 'tx_t3sbootstrap_breakpoint' => '', 'tx_t3sbootstrap_icon_only' => 0, 'tx_t3sbootstrap_megamenu' => 0, 'rowDescription' => null, 'sys_language_uid' => 1, 'l10n_source' => 255, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent"}', 'l10n_diffsource' => 'a:31:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:8:"TSconfig";N;s:13:"php_tree_stop";i:0;s:8:"editlock";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:14:"pagets__OneCol";s:25:"backend_layout_next_level";s:0:"";s:17:"tsconfig_includes";s:0:"";}', 'slug' => '/news', 'legacy_overlay_uid' => 218, 'l10n_parent' => 255, 'tx_t3sbootstrap_titlecolor' => '', 'tx_t3sbootstrap_subtitlecolor' => '', 'tx_t3sbootstrap_navigationcolor' => '', 'tx_t3sbootstrap_navigationactivecolor' => '', 'tx_t3sbootstrap_navigationhover' => '', 'tx_t3sbootstrap_navigationbgcolor' => '', '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 1418, '_PAGES_OVERLAY_LANGUAGE' => 1, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 1, '_MP_PARAM' => '', 'isSpacer' => false), 'title' => 'News', 'link' => '/en/news', 'target' => '', 'active' => 1, 'current' => 1, 'spacer' => 0)), 'languageNavigation' => array(array('languageId' => 0, 'locale' => 'de_DE.UTF-8', 'title' => 'Deutsch', 'navigationTitle' => 'Deutsch', 'twoLetterIsoCode' => 'de', 'hreflang' => 'de-DE', 'direction' => '', 'flag' => 'flags-de', 'link' => '/news?tx_news_pi1%5BoverwriteDemand%5D%5Bcategories%5D=78&cHash=5e4177c7b94d55fdbfaa7bd5a73d1c2f', 'active' => 0, 'current' => 0, 'available' => 1), array('languageId' => 1, 'locale' => 'en_US.UTF-8', 'title' => 'English', 'navigationTitle' => 'English', 'twoLetterIsoCode' => 'en', 'hreflang' => 'en-US', 'direction' => '', 'flag' => 'flags-us', 'link' => '/en/news?tx_news_pi1%5BoverwriteDemand%5D%5Bcategories%5D=78&cHash=5e4177c7b94d55fdbfaa7bd5a73d1c2f', 'active' => 1, 'current' => 0, 'available' => 1), array('languageId' => 3, 'locale' => 'es_ES.UTF-8', 'title' => 'español', 'navigationTitle' => 'español', 'twoLetterIsoCode' => 'es', 'hreflang' => 'es-ES', 'direction' => '', 'flag' => 'flags-es', 'link' => '', 'active' => 0, 'current' => 0, 'available' => 0), array('languageId' => 2, 'locale' => 'ru_RU.UTF-8', 'title' => 'русский', 'navigationTitle' => 'русский', 'twoLetterIsoCode' => 'ru', 'hreflang' => 'ru-RU', 'direction' => '', 'flag' => 'flags-ru', 'link' => '', 'active' => 0, 'current' => 0, 'available' => 0)), 'config' => array('general' => array('company' => '0', 'homepageUid' => '242', 'pageTitle' => 'jumbotron', 'pageTitlealign' => 'center', 'pageTitleclass' => ''), 'lang' => array('uid' => array(0, 1, 3, 2), 'hreflang' => array('de-DE', 'en-US', 'es-ES', 'ru-RU'), 'title' => array('Deutsch', 'English', 'español', 'русский'), 'flag' => array('flags-de', 'flags-us', 'flags-es', 'flags-ru')), 'navbar' => array('dropdownAnimate' => '', 'dropdownAnimateValue' => 4, 'enable' => 'light', 'sectionMenu' => '', 'brand' => 'imgText', 'brandAlignment' => '{$bootstrap.config.navbarbrandAlignment}', 'hover' => ' dropdown-hover', 'clickableparent' => '1', 'navbarPlusicon' => 0, 'image' => 'fileadmin/tos.info/images/allgemein/logo-tos.info.svg', 'toggler' => 'right', 'containerposition' => 'inside', 'container' => 'container', 'innercontainer' => '{$bootstrap.config.navbarInnercontainer}', 'breakpoint' => 'md', 'shrinkColorschemes' => 'bg-white', 'colorschemes' => 'bg-dark', 'shrinkColor' => 'navbar-light', 'color' => 'navbar-light', 'class' => 'navbar-light navbar-expand-md shrink py-2 bg-dark clickableparent navbarHover fixed-top', 'dropdown' => 'dropdown', 'spacer' => '0', 'megamenu' => '0', 'placement' => 'fixed-top', 'sticky' => false, 'alignment' => 'left', 'mauto' => ' me-auto', 'offcanvas' => '1', 'offcanvasBgColorClass' => 'bg-dark', 'offcanvasTitleColor' => 'rgba(0, 0, 0, 0.75)', 'offcanvasCross' => 'dark', 'navbarAlignment' => 'start', 'offcanvasAlign' => 'end', 'animatedToggler' => '0'), 'jumbotron' => array('enable' => '1', 'slide' => '0', 'position' => 'below', 'container' => 'container', 'containerposition' => 'Inside', 'class' => ' '), 'breadcrumb' => array('class' => ''), 'footer' => array('enable' => '1', 'sticky' => '0', 'fluid' => '1', 'slide' => '0', 'container' => 'container', 'containerposition' => 'Inside', 'class' => 'bg-white text-light')), 'colAside' => 3, 'colMain' => 9, 'gridBreakpoint' => 'md', 'navbarBreakpoint' => 'md'), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/Standard_action_index_db4f56a26aa330f2fef67a0c7d1e3358eef60fc7.php line 3757
$arguments261['debug'] = true;
$arguments261['section'] = 'PageContent';
$arguments261['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output260 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments261, $renderChildrenClosure262, $renderingContext);

$output260 .= '
       ';
return $output260;
at Standard_action_index_db4f56a26aa330f2fef67a0c7d1e3358eef60fc7->{closure}()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/Standard_action_index_db4f56a26aa330f2fef67a0c7d1e3358eef60fc7.php line 3795
       ';
return $output264;
};

$output257 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments258, $renderChildrenClosure259, $renderingContext);

$output257 .= '
     ';
return $output257;
at Standard_action_index_db4f56a26aa330f2fef67a0c7d1e3358eef60fc7->{closure}()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => false, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/Standard_action_index_db4f56a26aa330f2fef67a0c7d1e3358eef60fc7.php line 3802
     ';
return $output257;
};

$output163 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments250, $renderChildrenClosure251, $renderingContext);

$output163 .= '
   </div>
   ';
at Standard_action_index_db4f56a26aa330f2fef67a0c7d1e3358eef60fc7->{closure}()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/ViewHelpers/SpacelessViewHelper.php line 55
     * @return string
     */
    public static function renderStatic(array $arguments, \Closure $childClosure, RenderingContextInterface $renderingContext)
    {
        return trim(preg_replace('/\\>\\s+\\</', '><', $childClosure()));
    }
}
at TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic(array(), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/Standard_action_index_db4f56a26aa330f2fef67a0c7d1e3358eef60fc7.php line 4288
return $output163;
};
$arguments161 = array();

$output160 .= TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic($arguments161, $renderChildrenClosure162, $renderingContext);

$output160 .= '
 ';
return $output160;
at Standard_action_index_db4f56a26aa330f2fef67a0c7d1e3358eef60fc7->{closure}()
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => false, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3temp/var/cache/code/fluid_template/Standard_action_index_db4f56a26aa330f2fef67a0c7d1e3358eef60fc7.php line 4295
 ';
return $output160;
};

$output157 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments158, $renderChildrenClosure159, $renderingContext);

$output157 .= '


at Standard_action_index_db4f56a26aa330f2fef67a0c7d1e3358eef60fc7->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/tos.info/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 186
        }

        if (!$parsedTemplate->hasLayout()) {
            $this->startRendering(self::RENDERING_TEMPLATE, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedTemplate->render($this->baseRenderingContext);
            $this->stopRendering();
        } else {
            $layoutName = $parsedTemplate->getLayoutName($this->baseRenderingContext);
            try {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 358
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 108

        $this->view->assignMultiple($variables);

        $this->renderFluidTemplateAssetsIntoPageRenderer();
        $content = $this->renderFluidView();
        $content = $this->applyStandardWrapToRenderedContent($content, $conf);

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('file' => 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Main.html', 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1')))), 'loginForm' => 'USER_INT', 'loginForm.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'controllerActionName' => 'login', 'controllerExtensionName' => 'Felogin', 'controllerName' => 'Login', 'pluginName' => 'Login', 'extensionName' => 'Felogin', 'vendorName' => 'TYPO3', 'view.' => array('layoutRootPaths.' => array('fileadmin/templates/assets/ext-templates/feuser/Layouts/'), 'templateRootPaths.' => array('fileadmin/templates/assets/ext-templates/feuser/Templates/'), 'partialRootPaths.' => array('fileadmin/templates/assets/ext-templates/feuser/Partials/')), 'settings.' => array('storagePid' => '40', 'showForgotPassword' => '1', 'showLogoutFormAfterLogin' => '0', 'redirectMode' => 'userLogin,groupLogin', 'redirectFirstMethod' => '1', 'redirectPageLogin' => '', 'redirectDisable' => '1', 'error_header' => 'Fehler', 'success_header' => 'Success', 'success_message' => 'Login erfolgreich', 'showPermaLogin' => '1'))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'navbar.' => array('image.' => array('defaultPath' => 'fileadmin/tos.info/images/allgemein/logo-tos.info.svg', 'width' => '50', 'height' => '28', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '3', 'company' => '0', 'homepageUid' => '242', 'pageTitle' => 'jumbotron', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '4', 'navbarBrand' => 'imgText', 'navbarbrandAlignment' => '{$bootstrap.config.navbarbrandAlignment}', 'navbarImage' => '0', 'navbarColor' => 'dark', 'navbarBackground' => 'transparent', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarInnercontainer' => '{$bootstrap.config.navbarInnercontainer}', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'left', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'md', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => '0', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '0', 'breadcrumbFaicon' => '0', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => '0', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '99', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '1', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-white text-light', 'footerPid' => '244', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => 'pt-5', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '2', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '0', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'navbarMenu', 'if.' => array('isFalse.' => array('value' => '0'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '11.' => array('special' => 'list', 'special.' => array('value' => '0'), 'as' => 'navbarMenuRight', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '12.' => array('special' => 'browse', 'special.' => array('items' => 'nextsection|next', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browseNext', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '13.' => array('special' => 'browse', 'special.' => array('items' => 'prev|prevsection', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browsePrev', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '99', 'override' => '-1', 'override.' => array('if.' => array('equals' => '99', 'value' => '99')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'subNavigation', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => '0')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'as' => 'breadcrumb', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '{$bootstrap.config.bottom}')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languageNavigation', 'if.' => array('isTrue' => '1')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'list', 'special.' => array('value.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0'))))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '242')), 'levels' => '1', 'as' => 'metaNavigation', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'as' => 'sectionMenu', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'as' => 'content')), 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => '0')), 'TEXT', '30.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => '0')), 'TEXT', '40.' => array('value' => '1', 'if.' => array('isTrue' => '0')))))), 'T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '70.' => array('lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0', 'if.' => array('value' => '0', 'equals' => '1'), 'isTrue' => '0'), 'T3SBS\\T3sbootstrap\\DataProcessing\\ConfigProcessor')))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 828
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('file' => 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Main.html', 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1')))), 'loginForm' => 'USER_INT', 'loginForm.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'controllerActionName' => 'login', 'controllerExtensionName' => 'Felogin', 'controllerName' => 'Login', 'pluginName' => 'Login', 'extensionName' => 'Felogin', 'vendorName' => 'TYPO3', 'view.' => array('layoutRootPaths.' => array('fileadmin/templates/assets/ext-templates/feuser/Layouts/'), 'templateRootPaths.' => array('fileadmin/templates/assets/ext-templates/feuser/Templates/'), 'partialRootPaths.' => array('fileadmin/templates/assets/ext-templates/feuser/Partials/')), 'settings.' => array('storagePid' => '40', 'showForgotPassword' => '1', 'showLogoutFormAfterLogin' => '0', 'redirectMode' => 'userLogin,groupLogin', 'redirectFirstMethod' => '1', 'redirectPageLogin' => '', 'redirectDisable' => '1', 'error_header' => 'Fehler', 'success_header' => 'Success', 'success_message' => 'Login erfolgreich', 'showPermaLogin' => '1'))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'navbar.' => array('image.' => array('defaultPath' => 'fileadmin/tos.info/images/allgemein/logo-tos.info.svg', 'width' => '50', 'height' => '28', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '3', 'company' => '0', 'homepageUid' => '242', 'pageTitle' => 'jumbotron', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '4', 'navbarBrand' => 'imgText', 'navbarbrandAlignment' => '{$bootstrap.config.navbarbrandAlignment}', 'navbarImage' => '0', 'navbarColor' => 'dark', 'navbarBackground' => 'transparent', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarInnercontainer' => '{$bootstrap.config.navbarInnercontainer}', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'left', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'md', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => '0', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '0', 'breadcrumbFaicon' => '0', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => '0', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '99', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '1', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-white text-light', 'footerPid' => '244', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => 'pt-5', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '2', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '0', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'navbarMenu', 'if.' => array('isFalse.' => array('value' => '0'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '11.' => array('special' => 'list', 'special.' => array('value' => '0'), 'as' => 'navbarMenuRight', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '12.' => array('special' => 'browse', 'special.' => array('items' => 'nextsection|next', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browseNext', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '13.' => array('special' => 'browse', 'special.' => array('items' => 'prev|prevsection', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browsePrev', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '99', 'override' => '-1', 'override.' => array('if.' => array('equals' => '99', 'value' => '99')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'subNavigation', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => '0')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'as' => 'breadcrumb', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '{$bootstrap.config.bottom}')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languageNavigation', 'if.' => array('isTrue' => '1')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'list', 'special.' => array('value.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0'))))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '242')), 'levels' => '1', 'as' => 'metaNavigation', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'as' => 'sectionMenu', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'as' => 'content')), 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => '0')), 'TEXT', '30.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => '0')), 'TEXT', '40.' => array('value' => '1', 'if.' => array('isTrue' => '0')))))), 'T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '70.' => array('lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0', 'if.' => array('value' => '0', 'equals' => '1'), 'isTrue' => '0'), 'T3SBS\\T3sbootstrap\\DataProcessing\\ConfigProcessor')))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 742
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('file' => 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Main.html', 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1')))), 'loginForm' => 'USER_INT', 'loginForm.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'controllerActionName' => 'login', 'controllerExtensionName' => 'Felogin', 'controllerName' => 'Login', 'pluginName' => 'Login', 'extensionName' => 'Felogin', 'vendorName' => 'TYPO3', 'view.' => array('layoutRootPaths.' => array('fileadmin/templates/assets/ext-templates/feuser/Layouts/'), 'templateRootPaths.' => array('fileadmin/templates/assets/ext-templates/feuser/Templates/'), 'partialRootPaths.' => array('fileadmin/templates/assets/ext-templates/feuser/Partials/')), 'settings.' => array('storagePid' => '40', 'showForgotPassword' => '1', 'showLogoutFormAfterLogin' => '0', 'redirectMode' => 'userLogin,groupLogin', 'redirectFirstMethod' => '1', 'redirectPageLogin' => '', 'redirectDisable' => '1', 'error_header' => 'Fehler', 'success_header' => 'Success', 'success_message' => 'Login erfolgreich', 'showPermaLogin' => '1'))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'navbar.' => array('image.' => array('defaultPath' => 'fileadmin/tos.info/images/allgemein/logo-tos.info.svg', 'width' => '50', 'height' => '28', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '3', 'company' => '0', 'homepageUid' => '242', 'pageTitle' => 'jumbotron', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '4', 'navbarBrand' => 'imgText', 'navbarbrandAlignment' => '{$bootstrap.config.navbarbrandAlignment}', 'navbarImage' => '0', 'navbarColor' => 'dark', 'navbarBackground' => 'transparent', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarInnercontainer' => '{$bootstrap.config.navbarInnercontainer}', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'left', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'md', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => '0', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '0', 'breadcrumbFaicon' => '0', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => '0', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '99', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '1', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-white text-light', 'footerPid' => '244', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => 'pt-5', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '2', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '0', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'navbarMenu', 'if.' => array('isFalse.' => array('value' => '0'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '11.' => array('special' => 'list', 'special.' => array('value' => '0'), 'as' => 'navbarMenuRight', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '12.' => array('special' => 'browse', 'special.' => array('items' => 'nextsection|next', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browseNext', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '13.' => array('special' => 'browse', 'special.' => array('items' => 'prev|prevsection', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browsePrev', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '99', 'override' => '-1', 'override.' => array('if.' => array('equals' => '99', 'value' => '99')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'subNavigation', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => '0')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'as' => 'breadcrumb', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '{$bootstrap.config.bottom}')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languageNavigation', 'if.' => array('isTrue' => '1')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'list', 'special.' => array('value.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0'))))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '242')), 'levels' => '1', 'as' => 'metaNavigation', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'as' => 'sectionMenu', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'as' => 'content')), 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => '0')), 'TEXT', '30.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => '0')), 'TEXT', '40.' => array('value' => '1', 'if.' => array('isTrue' => '0')))))), 'T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '70.' => array('lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0', 'if.' => array('value' => '0', 'equals' => '1'), 'isTrue' => '0'), 'T3SBS\\T3sbootstrap\\DataProcessing\\ConfigProcessor')), '10')
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 687
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('cssInline.' => array('FILECONTENT', '161113.' => array('file' => 'EXT:content_animations/Resources/Public/JavaScript/Vendor/AOS/aos.css')), 'jsFooterInline.' => array('FILECONTENT', '161113.' => array('file' => 'EXT:content_animations/Resources/Public/JavaScript/Vendor/AOS/aos-3.0.0-beta-6.min.js'), 'TEXT', '161114.' => array('value' => 'AOS.init();')), 'includeCSS.' => array('femanagerMain' => 'EXT:femanager/Resources/Public/Css/Main.min.css', 'bootstrapCustom' => 'uploads/tx_t3sbootstrap/bootstrap.scss', 'bootstrapCustom.' => array('forceOnTop' => '1'), 'cookieconsentCss' => '/fileadmin/T3SB/Resources/Public/CSS/cookieconsent.min.css', 'cookieconsentCss.' => array('if.' => array('isTrue' => '0')), 't3sbootstrap' => 'EXT:t3sbootstrap/Resources/Public/Styles/t3sbootstrap.css', 't3sfontawesomeLink' => 'EXT:t3sbootstrap/Resources/Public/Contrib/Fontawesome/css/fontawesomeLink.css', 't3sfontawesomeLink.' => array('if.' => array('value' => '1', 'equals' => '2')), 't3sfontawesomeProLink' => 'EXT:t3sbootstrap/Resources/Public/Contrib/Fontawesome/css/fontawesomeProLink.css', 't3sfontawesomeProLink.' => array('if.' => array('value' => '2', 'equals' => '2')), 't3sfontawesomeMinLink' => 'EXT:t3sbootstrap/Resources/Public/Contrib/Fontawesome/css/fontawesomeMinLink.css', 't3sfontawesomeMinLink.' => array('if.' => array('isFalse' => '2')), 'powermailBasicCss' => 'EXT:powermail/Resources/Public/Css/Basic.css', 'lazyYT' => 'EXT:tostv/Resources/Public/CSS/lazyYT.min.css', 'youtube' => 'EXT:ns_youtube/Resources/Public/Css/jquery.fancybox.css', 'youtube1' => 'EXT:ns_youtube/Resources/Public/Css/style.css', 'rs' => '/fileadmin/system/Resources/Public/Plugins/royalslider/royalslider.css', 'rs-default' => '/fileadmin/system/Resources//Public/Plugins/royalslider/skins/default/rs-default.css'), 'includeJSFooter.' => array('femanagerValidation' => 'EXT:femanager/Resources/Public/JavaScript/Validation.min.js', 'femanager' => 'EXT:femanager/Resources/Public/JavaScript/Femanager.min.js', 'cookieconsentJs' => '/fileadmin/T3SB/Resources/Public/JS/cookieconsent.min.js', 'cookieconsentJs.' => array('if.' => array('isTrue' => '0')), 't3sbjqueryeasing' => '/fileadmin/T3SB/Resources/Public/JS/jquery.easing.min.js', 't3sbjqueryeasing.' => array('forceOnTop' => '1', 'if.' => array('isFalse' => '1')), 'lazyload' => '/fileadmin/T3SB/Resources/Public/JS/lazyload.min.js', 'lazyload.' => array('if.' => array('isTrue' => '0')), 'picturefill' => '/fileadmin/T3SB/Resources/Public/JS/picturefill.min.js', 'picturefill.' => array('if.' => array('isTrue' => '0')), 'modernizr' => 'EXT:t3sbootstrap/Resources/Public/Contrib/Modernizr/modernizr.js', 'modernizr.' => array('if.' => array('isTrue' => '0')), 'navbarSlide' => 'EXT:t3sbootstrap/Resources/Public/Scripts/slideNavbar.js', 'navbarSlide.' => array('if.' => array('value' => 'slide', 'equals' => 'light')), 'powermailJQueryDatepicker' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/jquery.datetimepicker.min.js', 'powermailJQueryFormValidation' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/parsley.min.js', 'powermailJQueryTabs' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Tabs.min.js', 'powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'tostv_countdown' => 'EXT:tostv/Resources/Public/JS/tostv_countdown.js', 'tostv_islive' => 'EXT:tostv/Resources/Public/JS/tostv_islive.js', 'tostv_player' => 'EXT:tostv/Resources/Public/JS/tostv_player.js', 'youtube' => 'EXT:ns_youtube/Resources/Public/Js/jquery.fancybox.min.js', 'youtube1' => 'EXT:ns_youtube/Resources/Public/Js/script.js', 'royalslider' => '/fileadmin/system/Resources/Public/js/royalslider.js', 'objectfix' => '/fileadmin/system/Resources/Public/js/objectfitfix.js', 'login' => '/fileadmin/system/Resources/Public/js/sidebar.js', 'modal' => '/fileadmin/system/Resources/Public/js/modal.js'), 'meta.' => array('viewport' => 'width=device-width, initial-scale=1'), 'shortcutIcon' => '0', 'LOAD_REGISTER', '1.' => array('newsTitle.' => array('cObject' => 'RECORDS', 'cObject.' => array('source' => '{GP:tx_news_pi1|news}', 'source.' => array('insertData' => '1'), 'tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'TEXT', 'tx_news_domain_model_news.' => array('field' => 'title'))))), 'bodyTagCObject' => 'COA', 'bodyTagCObject.' => array('wrap' => '<body |>', 'TEXT', '10.' => array('data' => 'TSFE:id', 'noTrimWrap' => '| id="page-|"|'), 'COA', '20.' => array('stdWrap.' => array('noTrimWrap' => '| class="|"|'), 'TEXT', '10.' => array('noTrimWrap' => '|||', 'value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1')), 'case' => 'lower')), 'TEXT', '20.' => array('data' => 'page:layout', 'noTrimWrap' => '| layout-||', 'if.' => array('isTrue.' => array('data' => 'page:layout'))), 'TEXT', '30.' => array('value' => '0', 'noTrimWrap' => '| ||', 'if.' => array('isTrue' => '0')), 'TEXT', '40.' => array('value' => 'bgi', 'noTrimWrap' => '| ||', 'if.' => array('isTrue' => '0')), 'TEXT', '50.' => array('value' => 'md', 'noTrimWrap' => '| ||')), 'COA', '30.' => array('stdWrap.' => array('noTrimWrap' => '| style="|"|'), 'TEXT', '10.' => array('value' => '0', 'wrap' => 'padding-top:|px;'), 'if.' => array('isTrue' => '0'), 'TEXT', '20.' => array('value' => 'position:relative;', 'if.' => array('isTrue' => '0'))), 'TEXT', '40.' => array('value' => 'md', 'noTrimWrap' => '| data-navbar-breakpoint="|"|'), 'TEXT', '50.' => array('value' => '992', 'noTrimWrap' => '| data-navbar-breakpointWidth="|"|', 'if.' => array('isTrue' => '992')), 'TEXT', '60.' => array('value' => '130', 'noTrimWrap' => '| data-bs-spy="scroll" data-bs-target="#main-navbar" data-bs-offset="|" tabindex="0"|', 'if.' => array('isTrue' => '0')), 'TEXT', '70.' => array('value' => 'true', 'noTrimWrap' => '| data-bs-no-jquery="|"|', 'if.' => array('isTrue' => '1'))), 'includeJSFooterlibs.' => array('jquery' => '/fileadmin/T3SB/Resources/Public/JS/jquery.min.js', 'jquery.' => array('forceOnTop' => '1', 'if.' => array('isFalse' => '1')), 'popper' => '/fileadmin/T3SB/Resources/Public/JS/popper.js', 'bootstrap' => '/fileadmin/T3SB/Resources/Public/JS/bootstrap.min.js', 'lazyYT' => 'EXT:tostv/Resources/Public/JS/lazyYT.js', 'royalslider' => '/fileadmin/system/Resources/Public/Plugins/royalslider/jquery.royalslider.min.js', 'countdown' => '/fileadmin/system/Resources/Public/Plugins/countdown/jquery.countdown.min.js'), 'footerData.' => array('TEXT', '61.' => array('value' => '<script src="/fileadmin/T3SB/Resources/Public/JS/fontawesome.min.js" data-auto-replace-svg="nest"></script>', 'if.' => array('value' => '1', 'equals' => '2')), 'TEXT', '62.' => array('value' => '<script src="/fileadmin/T3SB/FA5Pro/js/all.min.js" data-auto-replace-svg="nest"></script>', 'if.' => array('value' => '2', 'equals' => '2'))), 'jsInline.' => array('5.' => array('if.' => array('isTrue' => '0'))), 'FLUIDTEMPLATE', '10.' => array('file' => 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Templates/Main.html', 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/', 'fileadmin/system/Resources/Private/Fluid/Extensions/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1')))), 'loginForm' => 'USER_INT', 'loginForm.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'controllerActionName' => 'login', 'controllerExtensionName' => 'Felogin', 'controllerName' => 'Login', 'pluginName' => 'Login', 'extensionName' => 'Felogin', 'vendorName' => 'TYPO3', 'view.' => array('layoutRootPaths.' => array('fileadmin/templates/assets/ext-templates/feuser/Layouts/'), 'templateRootPaths.' => array('fileadmin/templates/assets/ext-templates/feuser/Templates/'), 'partialRootPaths.' => array('fileadmin/templates/assets/ext-templates/feuser/Partials/')), 'settings.' => array('storagePid' => '40', 'showForgotPassword' => '1', 'showLogoutFormAfterLogin' => '0', 'redirectMode' => 'userLogin,groupLogin', 'redirectFirstMethod' => '1', 'redirectPageLogin' => '', 'redirectDisable' => '1', 'error_header' => 'Fehler', 'success_header' => 'Success', 'success_message' => 'Login erfolgreich', 'showPermaLogin' => '1'))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '5000, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '{$bootstrap.config.sectionmenuIcons}', 'navbar.' => array('image.' => array('defaultPath' => 'fileadmin/tos.info/images/allgemein/logo-tos.info.svg', 'width' => '50', 'height' => '28', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '3', 'company' => '0', 'homepageUid' => '242', 'pageTitle' => 'jumbotron', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '4', 'navbarBrand' => 'imgText', 'navbarbrandAlignment' => '{$bootstrap.config.navbarbrandAlignment}', 'navbarImage' => '0', 'navbarColor' => 'dark', 'navbarBackground' => 'transparent', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarInnercontainer' => '{$bootstrap.config.navbarInnercontainer}', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'left', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'md', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => '0', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '0', 'breadcrumbFaicon' => '0', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => '0', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '99', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '1', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-white text-light', 'footerPid' => '244', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => 'pt-5', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '2', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '0', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'navbarMenu', 'if.' => array('isFalse.' => array('value' => '0'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '11.' => array('special' => 'list', 'special.' => array('value' => '0'), 'as' => 'navbarMenuRight', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '12.' => array('special' => 'browse', 'special.' => array('items' => 'nextsection|next', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browseNext', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '13.' => array('special' => 'browse', 'special.' => array('items' => 'prev|prevsection', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browsePrev', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '99', 'override' => '-1', 'override.' => array('if.' => array('equals' => '99', 'value' => '99')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'subNavigation', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => '0')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'as' => 'breadcrumb', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '{$bootstrap.config.bottom}')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languageNavigation', 'if.' => array('isTrue' => '1')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'list', 'special.' => array('value.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0'))))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '242')), 'levels' => '1', 'as' => 'metaNavigation', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'as' => 'sectionMenu', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'as' => 'content')), 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => '0')), 'TEXT', '30.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => '0')), 'TEXT', '40.' => array('value' => '1', 'if.' => array('isTrue' => '0')))))), 'T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '70.' => array('lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0', 'if.' => array('value' => '0', 'equals' => '1'), 'isTrue' => '0'), 'T3SBS\\T3sbootstrap\\DataProcessing\\ConfigProcessor')), 'includeJS.' => array('jquery' => 'https://code.jquery.com/jquery-3.4.1.min.js', 'jquery.' => array('external' => '1')), 'headerData.' => array('TEXT', '10.' => array('value' => ' <!-- Global site tag (gtag.js) - Google Analytics --><script async src="https://www.googletagmanager.com/gtag/js?id=UA-7137065-1"></script><script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag(\'js\', new Date()); gtag(\'config\',\'UA-7137065-1\'); </script>'), 'TEXT', '20.' => array('value' => ' <link data-name="adobefonts" data-href="https://use.typekit.net/fsc2mba.css" rel="stylesheet"> <script defer type="text/javascript" src="/fileadmin/system/Resources/Public/Plugins/klaro/config.js"></script> <script defer type="text/javascript" src="/fileadmin/system/Resources/Public/Plugins/klaro/klaro.js"></script> <!-- Facebook Pixel Code --><script type="opt-in" data-type="application/javascript" data-name="facebookpixel">!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version=\'2.0\';n.queue=[];t=b.createElement(e);t.async=!0;t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window, document,\'script\',\'https://connect.facebook.net/en_US/fbevents.js\');fbq(\'init\', \'1632877570070607\');fbq(\'track\', \'PageView\');</script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=1632877570070607&ev=PageView&noscript=1"/></noscript><!-- End Facebook Pixel Code --><link rel="apple-touch-icon" sizes="57x57" href="fileadmin/system/Resources/Public/favicon/tos.info/apple-icon-57x57.png"><link rel="apple-touch-icon" sizes="60x60" href="fileadmin/system/Resources/Public/favicon/tos.info/apple-icon-60x60.png"><link rel="apple-touch-icon" sizes="72x72" href="fileadmin/system/Resources/Public/favicon/tos.info/apple-icon-72x72.png"><link rel="apple-touch-icon" sizes="76x76" href="fileadmin/system/Resources/Public/favicon/tos.info/apple-icon-76x76.png"><link rel="apple-touch-icon" sizes="114x114" href="fileadmin/system/Resources/Public/favicon/tos.info/apple-icon-114x114.png"><link rel="apple-touch-icon" sizes="120x120" href="fileadmin/system/Resources/Public/favicon/tos.info/apple-icon-120x120.png"><link rel="apple-touch-icon" sizes="144x144" href="fileadmin/system/Resources/Public/favicon/tos.info/apple-icon-144x144.png"><link rel="apple-touch-icon" sizes="152x152" href="fileadmin/system/Resources/Public/favicon/tos.info/apple-icon-152x152.png"><link rel="apple-touch-icon" sizes="180x180" href="fileadmin/system/Resources/Public/favicon/tos.info/apple-icon-180x180.png"><link rel="icon" type="image/png" sizes="192x192" href="fileadmin/system/Resources/Public/favicon/tos.info/android-icon-192x192.png"><link rel="icon" type="image/png" sizes="32x32" href="fileadmin/system/Resources/Public/favicon/tos.info/favicon-32x32.png"><link rel="icon" type="image/png" sizes="96x96" href="fileadmin/system/Resources/Public/favicon/tos.info/favicon-96x96.png"><link rel="icon" type="image/png" sizes="16x16" href="fileadmin/system/Resources/Public/favicon/tos.info/favicon-16x16.png"><link rel="manifest" href="fileadmin/system/Resources/Public/favicon/tos.info/manifest.json"><meta name="msapplication-TileColor" content="rgb(234, 105, 10)"><meta name="msapplication-TileImage" content="fileadmin/system/Resources/Public/favicon/tos.info/ms-icon-144x144.png"><meta name="theme-color" content="rgb(234, 105, 10)">', 'insertData' => '1'))))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 231
     * @return string
     */
    protected function generatePageBodyContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageBodyContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 197
    protected function generatePageContent(TypoScriptFrontendController $controller, ServerRequestInterface $request): string
    {
        // Generate the main content between the <body> tags
        // This has to be done first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageBodyContent($controller);
        // If 'disableAllHeaderCode' is set, all the pageRenderer settings are not evaluated
        if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
            return $pageContent;
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 133
            // Content generation
            $this->timeTracker->incStackPointer();
            $this->timeTracker->push($controller->sPre, 'PAGE');

            $controller->content = $this->generatePageContent($controller, $request);

            $this->timeTracker->pull($this->timeTracker->LR ? $controller->content : '');
            $this->timeTracker->decStackPointer();

at TYPO3\CMS\Frontend\Http\RequestHandler->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3conf/ext/site_language_redirection/Classes/Middleware/RedirectionMiddleware.php line 51
        /**
         * Do not redirect search engine bots.
         */
        if ($this->isBot($request)) {
            return $handler->handle($request);
        }

        $response = $this->setCookieOnLanguageChange($request, $handler, $cookieName);
        if ($response) {
at UrbanTrout\SiteLanguageRedirection\Middleware\RedirectionMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 48
        // Throw away all output that may have happened during bootstrapping by weird extensions
        ob_clean();
        // Initialize output compression if configured
        $this->initializeOutputCompression();
        return $handler->handle($request);
    }

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3conf/ext/typoscript_rendering/Classes/Middleware/TypoScriptRenderingMiddleware.php line 43
    {
        $frontendController = $GLOBALS['TSFE'];
        $requestedContentType = $frontendController->config['config']['contentType'] ?? self::defaultContentType;
        if (!$frontendController->isGeneratePage() || !isset($request->getQueryParams()[self::argumentNamespace])) {
            return $this->amendContentType($handler->handle($request), $requestedContentType);
        }
        $this->ensureRequiredEnvironment();

        $frontendController->config['config']['debug'] = 0;
at Helhum\TyposcriptRendering\Middleware\TypoScriptRenderingMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelDataPersister.php line 45
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelDataPersister->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelRenderer.php line 47
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelRenderer->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 47
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)) {
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 69
                return new RedirectResponse($externalUrl, 303);
            }
        }

        return $handler->handle($request);
    }

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 86
                $this->convertCharsetRecursivelyToUtf8($parsedBody, $this->controller->metaCharset);
                $request = $request->withParsedBody($parsedBody);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Small helper function to convert charsets for arrays to UTF-8
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 108
        }

        // Make TSFE globally available
        $GLOBALS['TSFE'] = $controller;
        return $handler->handle($request);
    }

    /**
     * Register the backend user as aspect
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 131
            }
        }

        $request = $request->withAttribute('noCache', $this->disableCache);
        return $handler->handle($request);
    }

    /**
     * Filters out the arguments that are necessary for calculating cHash
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Middleware/PreviewSimulator.php line 66
            $previewAspect = GeneralUtility::makeInstance(PreviewAspect::class, $isPreview);
            $this->context->setAspect('frontend.preview', $previewAspect);
        }

        return $handler->handle($request);
    }

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/adminpanel/Classes/Middleware/SqlLogging.php line 58
        if (StateUtility::isActivatedForUser() && StateUtility::isOpen()) {
            $connection = $this->connectionPool->getConnectionByName(ConnectionPool::DEFAULT_CONNECTION_NAME);
            $connection->getConfiguration()->setSQLLogger(GeneralUtility::makeInstance(DoctrineSqlLogger::class));
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\SqlLogging->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 106
        // merge the PageArguments with the request query parameters
        $queryParams = array_replace_recursive($request->getQueryParams(), $pageArguments->getArguments());
        $request = $request->withQueryParams($queryParams);

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 80

                return new HtmlResponse($content, 200, ['Content-Type' => $contentType]);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 94
                $uri = $requestedUri->withPath(rtrim($requestedUri->getPath(), '/'));
                return new RedirectResponse($uri, 307);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 81
                return $response;
            }
        }

        return $handler->handle($request);
    }

    /**
     * Creates a PSR-7 compatible Response object
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelInitiator.php line 55
                MainController::class
            );
            $request = $adminPanelController->initialize($request);
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelInitiator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 77
        // Register the frontend user as aspect and within the session
        $this->setFrontendUserAspect($frontendUser);
        $request = $request->withAttribute('frontend.user', $frontendUser);

        $response = $handler->handle($request);

        // Store session data for fe_users if it still exists
        if ($frontendUser instanceof FrontendUserAuthentication) {
            $frontendUser->storeSessionData();
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 66
            Bootstrap::loadExtTables();
            $this->setBackendUserAspect($GLOBALS['BE_USER']);
        }

        $response = $handler->handle($request);

        // If, when building the response, the user is still available, then ensure that the headers are sent properly
        if ($this->context->getAspect('backend.user')->isLoggedIn()) {
            return $this->applyHeadersToResponse($response);
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 55
        ) {
            return GeneralUtility::makeInstance(ErrorController::class)->unavailableAction($request, 'This page is temporarily unavailable.');
        }
        // Continue the regular stack if no maintenance mode is active
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\MaintenanceMode->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 65
        $request = $request->withAttribute('routing', $routeResult);
        if ($routeResult->getLanguage() instanceof SiteLanguage) {
            Locales::setSystemLocaleFromSiteLanguage($routeResult->getLanguage());
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\SiteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 64
    {
        $eID = $request->getParsedBody()['eID'] ?? $request->getQueryParams()['eID'] ?? null;

        if ($eID === null) {
            return $handler->handle($request);
        }

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 45
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $request = $request->withAttribute('normalizedParams', NormalizedParams::createFromRequest($request));
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 58
        $this->timeTracker->setEnabled($timeTrackingEnabled);
        $this->timeTracker->start(microtime(true));
        $this->timeTracker->push('');

        $response = $handler->handle($request);

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$279->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 78
     * @return ResponseInterface
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->tip->handle($request);
    }

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/AbstractApplication.php line 85
     * @return ResponseInterface
     */
    protected function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->requestHandler->handle($request);
    }

    /**
     * Set up the application and shut it down afterwards
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Http/Application.php line 69
        // Create new request object having applicationType "I am a frontend request" attribute.
        $request = $request->withAttribute('applicationType', SystemEnvironmentBuilder::REQUESTTYPE_FE);

        $this->initializeContext();
        return parent::handle($request);
    }

    /**
     * Check if LocalConfiguration.php and PackageStates.php exist
at TYPO3\CMS\Frontend\Http\Application->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/tos.info/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/AbstractApplication.php line 97
    final public function run(callable $execute = null)
    {
        try {
            $response = $this->handle(
                ServerRequestFactory::fromGlobals()
            );
            if ($execute !== null) {
                call_user_func($execute);
            }
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /html/tos.info/typo3_src-10.4.21/index.php line 25
// Set up the application for the frontend
call_user_func(function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /html/tos.info/typo3_src-10.4.21/index.php line 26
call_user_func(function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});