commit 111e94932b56c5f3a627ffe9355bb24fba3776fe Author: Egorka Date: Fri Feb 16 15:43:44 2018 +0300 init diff --git a/.bowerrc b/.bowerrc new file mode 100644 index 0000000..1669168 --- /dev/null +++ b/.bowerrc @@ -0,0 +1,3 @@ +{ + "directory" : "vendor/bower" +} diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..b58baa8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,51 @@ +[*] +charset=utf-8 +end_of_line=crlf +insert_final_newline=false +indent_style=space +indent_size=4 + +[{.babelrc,.stylelintrc,.eslintrc,jest.config,*.json,*.jsb3,*.jsb2,*.bowerrc}] +indent_style=space +indent_size=2 + +[*.feature] +indent_style=space +indent_size=2 + +[{jshint.json,*.jshintrc}] +indent_style=space +indent_size=2 + +[{*.jscs.json,*.jscsrc}] +indent_style=space +indent_size=2 + +[*.js.map] +indent_style=space +indent_size=2 + +[{*.ddl,*.sql}] +indent_style=space +indent_size=2 + +[*.coffee] +indent_style=space +indent_size=2 + +[{*.hphp,*.phtml,*.module,*.php,*.php5,*.php4,*.inc}] +indent_style=tab +tab_width=4 + +[*.less] +indent_style=space +indent_size=2 + +[*.scss] +indent_style=space +indent_size=2 + +[{*.yml,*.yaml}] +indent_style=space +indent_size=2 + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..09933d3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,37 @@ +# yii console commands +/yii +/yii_test +/yii_test.bat + +# phpstorm project files +.idea + +# netbeans project files +nbproject + +# zend studio for eclipse project files +.buildpath +.project +.settings + +# windows thumbnail cache +Thumbs.db + +# composer vendor dir +/vendor + +# composer itself is not needed +composer.phar + +# Mac DS_Store Files +.DS_Store + +# phpunit itself is not needed +phpunit.phar +# local phpunit config +/phpunit.xml + +# vagrant runtime +/.vagrant +composer.lock +todo.txt diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..e98f03d --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,32 @@ +The Yii framework is free software. It is released under the terms of +the following BSD License. + +Copyright © 2008 by Yii Software LLC (http://www.yiisoft.com) +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + * Neither the name of Yii Software LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..6acca0f --- /dev/null +++ b/README.md @@ -0,0 +1,60 @@ +

+ + + +

Yii 2 Advanced Project Template

+
+

+ +Yii 2 Advanced Project Template is a skeleton [Yii 2](http://www.yiiframework.com/) application best for +developing complex Web applications with multiple tiers. + +The template includes three tiers: front end, back end, and console, each of which +is a separate Yii application. + +The template is designed to work in a team development environment. It supports +deploying the application in different environments. + +Documentation is at [docs/guide/README.md](docs/guide/README.md). + +[![Latest Stable Version](https://poser.pugx.org/yiisoft/yii2-app-advanced/v/stable.png)](https://packagist.org/packages/yiisoft/yii2-app-advanced) +[![Total Downloads](https://poser.pugx.org/yiisoft/yii2-app-advanced/downloads.png)](https://packagist.org/packages/yiisoft/yii2-app-advanced) +[![Build Status](https://travis-ci.org/yiisoft/yii2-app-advanced.svg?branch=master)](https://travis-ci.org/yiisoft/yii2-app-advanced) + +DIRECTORY STRUCTURE +------------------- + +``` +common + config/ contains shared configurations + mail/ contains view files for e-mails + models/ contains model classes used in both backend and frontend + tests/ contains tests for common classes +console + config/ contains console configurations + controllers/ contains console controllers (commands) + migrations/ contains database migrations + models/ contains console-specific model classes + runtime/ contains files generated during runtime +backend + assets/ contains application assets such as JavaScript and CSS + config/ contains backend configurations + controllers/ contains Web controller classes + models/ contains backend-specific model classes + runtime/ contains files generated during runtime + tests/ contains tests for backend application + views/ contains view files for the Web application + web/ contains the entry script and Web resources +frontend + assets/ contains application assets such as JavaScript and CSS + config/ contains frontend configurations + controllers/ contains Web controller classes + models/ contains frontend-specific model classes + runtime/ contains files generated during runtime + tests/ contains tests for frontend application + views/ contains view files for the Web application + web/ contains the entry script and Web resources + widgets/ contains frontend widgets +vendor/ contains dependent 3rd-party packages +environments/ contains environment-based overrides +``` diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..cd33d60 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,78 @@ +require 'yaml' +require 'fileutils' + +required_plugins = %w( vagrant-hostmanager vagrant-vbguest ) +required_plugins.each do |plugin| + exec "vagrant plugin install #{plugin}" unless Vagrant.has_plugin? plugin +end + +domains = { + frontend: 'morework.local', + backend: 'admin.morework.local', + static: 'static.morework.local', +} + +config = { + local: './vagrant/config/vagrant-local.yml', + example: './vagrant/config/vagrant-local.example.yml' +} + +# copy config from example if local config not exists +FileUtils.cp config[:example], config[:local] unless File.exist?(config[:local]) +# read config +options = YAML.load_file config[:local] + +# check github token +if options['github_token'].nil? || options['github_token'].to_s.length != 40 + puts "You must place REAL GitHub token into configuration:\n/yii2-app-advanced/vagrant/config/vagrant-local.yml" + exit +end + +# vagrant configurate +Vagrant.configure(2) do |config| + # select the box + config.vm.box = 'bento/ubuntu-16.04' + + # should we ask about box updates? + config.vm.box_check_update = options['box_check_update'] + + config.vm.provider 'virtualbox' do |vb| + # machine cpus count + vb.cpus = options['cpus'] + # machine memory size + vb.memory = options['memory'] + # machine name (for VirtualBox UI) + vb.name = options['machine_name'] + end + + # machine name (for vagrant console) + config.vm.define options['machine_name'] + + # machine name (for guest machine console) + config.vm.hostname = options['machine_name'] + + # network settings + config.vm.network 'private_network', ip: options['ip'] + + # sync: folder 'yii2-app-advanced' (host machine) -> folder '/app' (guest machine) + config.vm.synced_folder './', '/app', owner: 'vagrant', group: 'vagrant' + + # disable folder '/vagrant' (guest machine) + config.vm.synced_folder '.', '/vagrant', disabled: true + + # hosts settings (host machine) + config.vm.provision :hostmanager + config.hostmanager.enabled = true + config.hostmanager.manage_host = true + config.hostmanager.ignore_private_ip = false + config.hostmanager.include_offline = true + config.hostmanager.aliases = domains.values + + # provisioners + config.vm.provision 'shell', path: './vagrant/provision/once-as-root.sh', args: [options['timezone']] + config.vm.provision 'shell', path: './vagrant/provision/once-as-vagrant.sh', args: [options['github_token']], privileged: false + config.vm.provision 'shell', path: './vagrant/provision/always-as-root.sh', run: 'always' + + # post-install message (vagrant console) + config.vm.post_up_message = "Frontend URL: http://#{domains[:frontend]}\nBackend URL: http://#{domains[:backend]}" +end diff --git a/backend/assets/AdminLteSkinAsset.php b/backend/assets/AdminLteSkinAsset.php new file mode 100644 index 0000000..9fed12c --- /dev/null +++ b/backend/assets/AdminLteSkinAsset.php @@ -0,0 +1,17 @@ +set(CKEditor::class, [ + 'editorOptions' => ElFinder::ckeditorOptions('elfinder', []), + ]); + } +} \ No newline at end of file diff --git a/backend/codeception.yml b/backend/codeception.yml new file mode 100644 index 0000000..703b518 --- /dev/null +++ b/backend/codeception.yml @@ -0,0 +1,15 @@ +namespace: backend\tests +actor: Tester +paths: + tests: tests + log: tests/_output + data: tests/_data + helpers: tests/_support +settings: + bootstrap: _bootstrap.php + colors: true + memory_limit: 1024M +modules: + config: + Yii2: + configFile: 'config/test-local.php' diff --git a/backend/config/.gitignore b/backend/config/.gitignore new file mode 100644 index 0000000..42799dd --- /dev/null +++ b/backend/config/.gitignore @@ -0,0 +1,3 @@ +main-local.php +params-local.php +test-local.php diff --git a/backend/config/bootstrap.php b/backend/config/bootstrap.php new file mode 100644 index 0000000..b3d9bbc --- /dev/null +++ b/backend/config/bootstrap.php @@ -0,0 +1 @@ + 'app-backend', + 'language' => 'ru', + 'basePath' => dirname(__DIR__), + 'aliases' => [ + '@staticRoot' => $params['staticPath'], + '@static' => $params['staticHostInfo'], + ], + 'controllerNamespace' => 'backend\controllers', + 'bootstrap' => [ + 'log', + 'common\bootstrap\SetUp', + 'backend\bootstrap\SetUp', + ], + 'modules' => [], + 'controllerMap' => [ + 'elfinder' => [ + 'class' => 'mihaildev\elfinder\Controller', + 'access' => ['@'], + 'plugin' => [ + [ + 'class'=>'\mihaildev\elfinder\plugin\Sluggable', + 'lowercase' => true, + 'replacement' => '-' + ] + ], + 'roots' => [ + [ + 'baseUrl'=>'@static', + 'basePath'=>'@staticRoot', + 'path' => 'files', + 'name' => 'Global' + ], + ], + ], + ], + 'components' => [ + 'request' => [ + 'csrfParam' => '_csrf-backend', + 'cookieValidationKey' => $params['cookieValidationKey'], + ], + 'user' => [ + 'identityClass' => 'common\auth\Identity', + 'enableAutoLogin' => true, + 'identityCookie' => [ + 'name' => '_identity', + 'httpOnly' => true, + 'domain' => $params['cookieDomain'], + ], + 'loginUrl' => ['auth/login'], + ], + 'session' => [ + 'name' => '_session', + 'class' => 'yii\web\DbSession', + 'writeCallback' => function($session){ + return [ + 'user_id' => Yii::$app->user->id + ]; + }, + 'cookieParams' => [ + 'domain' => $params['cookieDomain'], + 'httpOnly' => true, + ], + ], + 'log' => [ + 'traceLevel' => YII_DEBUG ? 3 : 0, + 'targets' => [ + [ + 'class' => 'yii\log\FileTarget', + 'levels' => ['error', 'warning'], + ], + ], + ], + 'errorHandler' => [ + 'errorAction' => 'site/error', + ], + 'backendUrlManager' => require __DIR__ . '/urlManager.php', + 'frontendUrlManager' => require __DIR__ . '/../../frontend/config/urlManager.php', + 'urlManager' => function () { + return Yii::$app->get('backendUrlManager'); + }, + 'i18n' => [ + 'translations' => [ + 'main' => [ + 'class' => 'yii\i18n\PhpMessageSource', + 'basePath' => '@backend/messages', + ], + 'dashboard' => [ + 'class' => 'yii\i18n\PhpMessageSource', + 'basePath' => '@backend/messages', + ], + 'page' => [ + 'class' => 'yii\i18n\PhpMessageSource', + 'basePath' => '@backend/messages', + ], + 'user' => [ + 'class' => 'yii\i18n\PhpMessageSource', + 'basePath' => '@backend/messages', + ], + 'post' => [ + 'class' => 'yii\i18n\PhpMessageSource', + 'basePath' => '@backend/messages', + ], + 'buttons' => [ + 'class' => 'yii\i18n\PhpMessageSource', + 'basePath' => '@backend/messages', + ], + 'slider' => [ + 'class' => 'yii\i18n\PhpMessageSource', + 'basePath' => '@backend/messages', + ], + ], + ], + ], + 'params' => $params, +]; diff --git a/backend/config/params.php b/backend/config/params.php new file mode 100644 index 0000000..7f754b9 --- /dev/null +++ b/backend/config/params.php @@ -0,0 +1,4 @@ + 'admin@example.com', +]; diff --git a/backend/config/test.php b/backend/config/test.php new file mode 100644 index 0000000..ec2e9a1 --- /dev/null +++ b/backend/config/test.php @@ -0,0 +1,12 @@ + 'app-backend-tests', + 'components' => [ + 'assetManager' => [ + 'basePath' => __DIR__ . '/../web/assets', + ], + 'urlManager' => [ + 'showScriptName' => true, + ], + ], +]; diff --git a/backend/config/urlManager.php b/backend/config/urlManager.php new file mode 100644 index 0000000..30a648e --- /dev/null +++ b/backend/config/urlManager.php @@ -0,0 +1,20 @@ + 'yii\web\UrlManager', + 'hostInfo' => $params['backendHostInfo'], + 'baseUrl' => '', + 'enablePrettyUrl' => true, + 'showScriptName' => false, + 'rules' => [ + '' => 'site/index', + '<_a:login|logout>' => 'auth/<_a>', + + '<_c:[\w\-]+>' => '<_c>/index', + '<_c:[\w\-]+>/' => '<_c>/view', + '<_c:[\w\-]+>/<_a:[\w-]+>' => '<_c>/<_a>', + '<_c:[\w\-]+>//<_a:[\w\-]+>' => '<_c>/<_a>', + ], +]; diff --git a/backend/controllers/AuthController.php b/backend/controllers/AuthController.php new file mode 100644 index 0000000..fd79029 --- /dev/null +++ b/backend/controllers/AuthController.php @@ -0,0 +1,93 @@ +authService = $service; + } + + /** + * @inheritdoc + */ + public function behaviors() + { + return [ + 'access' => [ + 'class' => AccessControl::className(), + 'rules' => [ + [ + 'actions' => ['login'], + 'allow' => true, + 'roles' => ['?'], + ], + [ + 'actions' => ['logout'], + 'allow' => true, + 'roles' => ['@'], + ], + [ // all the action are accessible to admin + 'allow' => true, + 'roles' => ['admin'], + ], + ], + ], + 'verbs' => [ + 'class' => VerbFilter::className(), + 'actions' => [ + 'logout' => ['post'], + ], + ], + ]; + } + + /** + * @return mixed + */ + public function actionLogin() + { + if (!Yii::$app->user->isGuest) { + return $this->goHome(); + } + + $this->layout = 'main-login'; + + $form = new LoginForm(); + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $user = $this->authService->auth($form); + Yii::$app->user->login(new Identity($user), $form->rememberMe ? 3600 * 24 * 30 : 0); + return $this->goBack(); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + + return $this->render('login', [ + 'model' => $form, + ]); + } + + /** + * @return mixed + */ + public function actionLogout() + { + Yii::$app->user->logout(); + + return $this->goHome(); + } +} diff --git a/backend/controllers/PageController.php b/backend/controllers/PageController.php new file mode 100644 index 0000000..77e09e4 --- /dev/null +++ b/backend/controllers/PageController.php @@ -0,0 +1,171 @@ +service = $service; + } + + public function behaviors(): array + { + return [ + 'access' => [ + 'class' => AccessControl::className(), + 'rules' => [ + [ + 'actions' => ['create', 'view', 'index', 'update', 'delete', 'move-up', 'move-down'], + 'allow' => true, + 'roles' => ['PagesManagement'], + ], + [ // all the action are accessible to admin + 'allow' => true, + 'roles' => ['admin'], + ], + ], + ], + 'verbs' => [ + 'class' => VerbFilter::className(), + 'actions' => [ + 'delete' => ['POST'], + ], + ], + ]; + } + + /** + * @return mixed + */ + public function actionIndex() + { + $searchModel = new PageSearch(); + $dataProvider = $searchModel->search(Yii::$app->request->queryParams); + + return $this->render('index', [ + 'searchModel' => $searchModel, + 'dataProvider' => $dataProvider, + ]); + } + + /** + * @param $id + * + * @return string + * @throws NotFoundHttpException + */ + public function actionView($id) + { + return $this->render('view', [ + 'page' => $this->findModel($id), + ]); + } + + /** + * @return mixed + */ + public function actionCreate() + { + $form = new PageForm(); + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $page = $this->service->create($form); + return $this->redirect(['view', 'id' => $page->id]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('create', [ + 'model' => $form, + ]); + } + + /** + * @param $id + * + * @return string|\yii\web\Response + * @throws NotFoundHttpException + */ + public function actionUpdate($id) + { + $page = $this->findModel($id); + + $form = new PageForm($page); + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $this->service->edit($page->id, $form); + return $this->redirect(['view', 'id' => $page->id]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('update', [ + 'model' => $form, + 'page' => $page, + ]); + } + + /** + * @param integer $id + * @return mixed + */ + public function actionDelete($id) + { + try { + $this->service->remove($id); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + return $this->redirect(['index']); + } + + /** + * @param integer $id + * @return mixed + */ + public function actionMoveUp($id) + { + $this->service->moveUp($id); + return $this->redirect(['index']); + } + + /** + * @param integer $id + * @return mixed + */ + public function actionMoveDown($id) + { + $this->service->moveDown($id); + return $this->redirect(['index']); + } + + /** + * @param integer $id + * @return Page the loaded model + * @throws NotFoundHttpException if the model cannot be found + */ + protected function findModel($id): Page + { + if (($model = Page::findOne($id)) !== null) { + return $model; + } + throw new NotFoundHttpException('The requested page does not exist.'); + } +} diff --git a/backend/controllers/PermissionController.php b/backend/controllers/PermissionController.php new file mode 100644 index 0000000..5d72a46 --- /dev/null +++ b/backend/controllers/PermissionController.php @@ -0,0 +1,137 @@ +permission = $permission; + } + + /** + * @inheritdoc + */ + public function behaviors() + { + return [ + [ + 'class' => TimestampBehavior::className(), + ], + 'access' => [ + 'class' => AccessControl::className(), + 'rules' => [ + [ + 'actions' => ['create','view','index', 'update', 'delete'], + 'allow' => true, + 'roles' => ['UserManagement'], + ], + [ // all the action are accessible to admin + 'allow' => true, + 'roles' => ['admin'], + ], + ], + ], + 'verbs' => [ + 'class' => VerbFilter::className(), + 'actions' => [ + 'delete' => ['POST'], + ], + ], + ]; + } + + public function actionIndex() + { + $data = array_map(function (Permission $permission){ + return [ + 'name' => $permission->name, + 'description' => $permission->description, + ]; + }, $this->permission->getPermissions()); + + $dataProvider = new ArrayDataProvider([ + 'allModels' => $data, + 'pagination' => [ + 'pageSize' => 20, + ], + 'sort' => [ + 'attributes' => ['name', 'description'], + ], + ]); + + return $this->render('index', ['dataProvider' => $dataProvider]); + } + + public function actionCreate() + { + $form = new RbacCreatePermissionForm(); + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $this->permission->create($form->name, $form->description, $form->rule_name, $form->data); + return $this->redirect(['view', 'id' => $form->name]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('create', [ + 'model' => $form, + ]); + } + + public function actionUpdate($id) + { + $permission = $this->findModel($id); + + $form = new RbacEditPermissionForm($permission); + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $this->permission->update($permission->name, $form->name, $form->description, $form->rule_name, $form->data); + return $this->redirect(['view', 'id' => $form->name]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('update', [ + 'model' => $form, + ]); + } + + public function actionDelete($id) + { + $this->permission->delete($id); + return $this->redirect(['index']); + } + + public function actionView($id) + { + return $this->render('view', [ + 'model' => $this->findModel($id), + ]); + } + + protected function findModel($id) + { + return $this->permission->getPermission($id); + } +} \ No newline at end of file diff --git a/backend/controllers/RoleController.php b/backend/controllers/RoleController.php new file mode 100644 index 0000000..c243c19 --- /dev/null +++ b/backend/controllers/RoleController.php @@ -0,0 +1,163 @@ +role = $role; + $this->permission = $permission; + } + + /** + * @inheritdoc + */ + public function behaviors() + { + return [ + [ + 'class' => TimestampBehavior::className(), + ], + 'access' => [ + 'class' => AccessControl::className(), + 'rules' => [ + [ + 'actions' => ['create','view','index', 'update', 'delete'], + 'allow' => true, + 'roles' => ['UserManagement'], + ], + [ // all the action are accessible to admin + 'allow' => true, + 'roles' => ['admin'], + ], + ], + ], + 'verbs' => [ + 'class' => VerbFilter::className(), + 'actions' => [ + 'delete' => ['POST'], + ], + ], + ]; + } + + public function actionIndex() + { + $data = $this->role->getRolesListArray(); + + $dataProvider = new ArrayDataProvider([ + 'allModels' => $data, + 'pagination' => [ + 'pageSize' => 20, + ], + 'sort' => [ + 'attributes' => ['name', 'description'], + ], + ]); + + return $this->render('index', ['dataProvider' => $dataProvider]); + } + + public function actionCreate() + { + $form = new RbacCreateRoleForm(); + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $this->role->create($form->name, $form->description, $form->rule_name, $form->data); + return $this->redirect(['view', 'id' => $form->name]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('create', [ + 'model' => $form, + ]); + } + + public function actionUpdate($id) + { + $role = $this->findModel($id); + + $form = new RbacEditRoleForm($role); + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $this->role->update($role->name, $form->name, $form->description, $form->rule_name, $form->data); + return $this->redirect(['view', 'id' => $form->name]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('update', [ + 'model' => $form, + ]); + } + + public function actionDelete($id) + { + try { + $this->role->delete($id); + } + catch (\DomainException $e) + { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + return $this->redirect(['index']); + } + + public function actionView($id) + { + $currentRole = $this->role->getRole($id); + $rolesSelectArray = array_diff_assoc($this->role->getRolesSelectArray(), [$currentRole->name => $currentRole->description]); + + $itemsForm = new RbacUpdateChildren(); + if ($itemsForm->load(Yii::$app->request->post()) && $itemsForm->validate()) { + $this->role->saveChildren($id, $itemsForm->roles, $itemsForm->permissions); + Yii::$app->session->setFlash('success', Yii::t('user', 'Children roles and permissions for "{role}" is updated.', ['role' => $currentRole->description])); + } + + $rolesSelected = $this->role->getRolesSelectArrayByRole($id); + + $permissionsSelectArray = $this->permission->getPermissionsSelectArray(); + $permissionsSelected = $this->permission->getPermissionsSelectArrayByRole($id); + + $itemsForm->roles = $rolesSelected; + $itemsForm->permissions = $permissionsSelected; + + return $this->render('view', [ + 'model' => $this->findModel($id), + 'roles' => $rolesSelectArray, + 'permissions' => $permissionsSelectArray, + 'permissionsSelected' => $permissionsSelected, + 'itemsForm' => $itemsForm, + ]); + } + + protected function findModel($id) + { + return $this->role->getRole($id); + } +} \ No newline at end of file diff --git a/backend/controllers/SiteController.php b/backend/controllers/SiteController.php new file mode 100644 index 0000000..cac991f --- /dev/null +++ b/backend/controllers/SiteController.php @@ -0,0 +1,77 @@ + [ + 'class' => AccessControl::className(), + 'rules' => [ + [ + 'actions' => ['error'], + 'allow' => true, + ], + [ + 'actions' => ['index'], + 'allow' => true, + 'roles' => ['Dashboard'], + ], + [ // all the action are accessible to admin + 'allow' => true, + 'roles' => ['admin'], + ], + ], + ], + 'verbs' => [ + 'class' => VerbFilter::className(), + 'actions' => [ + 'logout' => ['post'], + ], + ], + ]; + } + + /** + * @inheritdoc + */ + public function actions() + { + return [ + 'error' => [ + 'class' => 'yii\web\ErrorAction', + ], + ]; + } + + /** + * Displays homepage. + * + * @return string + */ + public function actionIndex() + { + return $this->render('index'); + } + + public function beforeAction($action) + { + if ($action->id === 'error') { + $this->layout = 'error'; + } + return parent::beforeAction($action); + } +} diff --git a/backend/controllers/SliderController.php b/backend/controllers/SliderController.php new file mode 100644 index 0000000..ee5762a --- /dev/null +++ b/backend/controllers/SliderController.php @@ -0,0 +1,160 @@ +service = $service; + } + + /** + * @inheritdoc + */ + public function behaviors() + { + return [ + 'access' => [ + 'class' => AccessControl::className(), + 'rules' => [ + [ + 'actions' => ['create', 'view', 'index', 'update', 'delete'], + 'allow' => true, + 'roles' => ['SliderManagement'], + ], + [ // all the action are accessible to admin + 'allow' => true, + 'roles' => ['admin'], + ], + ], + ], + 'verbs' => [ + 'class' => VerbFilter::className(), + 'actions' => [ + 'delete' => ['POST'], + ], + ], + ]; + } + + public function actionIndex() + { + //$searchModel = new UserSearch(); + //$dataProvider = $searchModel->search(Yii::$app->request->queryParams); + $query = Slider::find(); + $dataProvider = new ActiveDataProvider([ + 'query' => $query, + 'pagination' => [ + 'pageSize' => 20, + ], + 'sort' => [ + 'defaultOrder' => [ + 'id' => SORT_ASC, + ] + ], + ]); + + return $this->render('index', [ + 'dataProvider' => $dataProvider, + ]); + } + + /** + * @param $id + * + * @return string + * @throws NotFoundHttpException + */ + public function actionView($id) + { + return $this->render('view', [ + 'model' => $this->findModel($id), + ]); + } + + /** + * Creates a new User model. + * If creation is successful, the browser will be redirected to the 'view' page. + * @return mixed + */ + public function actionCreate() + { + $form = new SliderForm(); + $form->scenario = Slider::SCENARIO_CREATE; + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $slider = $this->service->create($form); + return $this->redirect(['view', 'id' => $slider->id]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('create', [ + 'model' => $form, + ]); + } + + /** + * @param $id + * + * @return string|\yii\web\Response + * @throws NotFoundHttpException + */ + public function actionUpdate($id) + { + $slider = $this->findModel($id); + + $form = new SliderForm($slider); + $form->scenario = Slider::SCENARIO_UPDATE; + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $this->service->edit($slider->id, $form); + return $this->redirect(['view', 'id' => $slider->id]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('update', [ + 'model' => $form, + 'slider' => $slider, + ]); + } + + /** + * @param $id + * + * @return \yii\web\Response + */ + public function actionDelete($id) + { + $this->service->remove($id); + return $this->redirect(['index']); + } + + + protected function findModel($id): ?Slider + { + if (($model = Slider::findOne($id)) !== null) { + return $model; + } else { + throw new NotFoundHttpException('The requested page does not exist.'); + } + } +} diff --git a/backend/controllers/UserController.php b/backend/controllers/UserController.php new file mode 100644 index 0000000..ea4c4d4 --- /dev/null +++ b/backend/controllers/UserController.php @@ -0,0 +1,160 @@ +service = $service; + } + + /** + * @inheritdoc + */ + public function behaviors() + { + return [ + 'access' => [ + 'class' => AccessControl::className(), + 'rules' => [ + [ + 'actions' => ['create','view','index', 'update', 'delete'], + 'allow' => true, + 'roles' => ['UserManagement'], + ], + [ // all the action are accessible to admin + 'allow' => true, + 'roles' => ['admin'], + ], + ], + ], + 'verbs' => [ + 'class' => VerbFilter::className(), + 'actions' => [ + 'delete' => ['POST'], + ], + ], + ]; + } + + /** + * Lists all User models. + * @return mixed + */ + public function actionIndex() + { + $searchModel = new UserSearch(); + $dataProvider = $searchModel->search(Yii::$app->request->queryParams); + + return $this->render('index', [ + 'searchModel' => $searchModel, + 'dataProvider' => $dataProvider, + ]); + } + + /** + * @param $id + * + * @return string + * @throws NotFoundHttpException + */ + public function actionView($id) + { + return $this->render('view', [ + 'model' => $this->findModel($id), + ]); + } + + /** + * Creates a new User model. + * If creation is successful, the browser will be redirected to the 'view' page. + * @return mixed + */ + public function actionCreate() + { + $form = new UserForm(); + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $user = $this->service->create($form); + return $this->redirect(['view', 'id' => $user->id]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('create', [ + 'model' => $form, + ]); + } + + /** + * @param $id + * + * @return string|\yii\web\Response + * @throws NotFoundHttpException + */ + public function actionUpdate($id) + { + $user = $this->findModel($id); + + $form = new UserForm($user); + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $this->service->edit($user->id, $form); + return $this->redirect(['view', 'id' => $user->id]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('update', [ + 'model' => $form, + 'user' => $user, + ]); + } + + /** + * Deletes an existing User model. + * If deletion is successful, the browser will be redirected to the 'index' page. + * @param integer $id + * @return mixed + */ + public function actionDelete($id) + { + $this->service->remove($id); + return $this->redirect(['index']); + } + + /** + * Finds the User model based on its primary key value. + * If the model is not found, a 404 HTTP exception will be thrown. + * @param integer $id + * @return User the loaded model + * @throws NotFoundHttpException if the model cannot be found + */ + protected function findModel($id) + { + if (($model = User::findOne($id)) !== null) { + return $model; + } else { + throw new NotFoundHttpException('The requested page does not exist.'); + } + } +} diff --git a/backend/controllers/post/CategoryController.php b/backend/controllers/post/CategoryController.php new file mode 100644 index 0000000..1d2963a --- /dev/null +++ b/backend/controllers/post/CategoryController.php @@ -0,0 +1,181 @@ +service = $service; + } + + public function behaviors(): array + { + return [ + 'access' => [ + 'class' => AccessControl::className(), + 'rules' => [ + [ + 'allow' => true, + 'roles' => ['PostManagement'], + ], + [ // all the action are accessible to admin + 'allow' => true, + 'roles' => ['admin'], + ], + ], + ], + 'verbs' => [ + 'class' => VerbFilter::className(), + 'actions' => [ + 'delete' => ['POST'], + ], + ], + ]; + } + + /** + * @param $tid + * + * @return string + * @throws NotFoundHttpException + */ + public function actionIndex($tid) + { + $type = $this->findType($tid); + + $searchModel = new PostCategorySearch(); + $dataProvider = $searchModel->search(Yii::$app->request->queryParams); + + return $this->render('index', [ + 'searchModel' => $searchModel, + 'dataProvider' => $dataProvider, + 'type' => $type, + ]); + } + + /** + * @param $id + * + * @return string + * @throws NotFoundHttpException + */ + public function actionView($id) + { + $category = $this->findModel($id); + $type = $this->findType($category->type_id); + return $this->render('view', [ + 'category' => $category, + 'type' => $type, + ]); + } + + /** + * @param $tid + * + * @return string|\yii\web\Response + * @throws NotFoundHttpException + */ + public function actionCreate($tid) + { + $type = $this->findType($tid); + $form = new PostCategoryForm(); + $form->type_id = $type->id; + $form->updateSort(); + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $category = $this->service->create($form); + return $this->redirect(['view', 'id' => $category->id]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('create', [ + 'model' => $form, + 'type' => $type, + ]); + } + + /** + * @param $id + * + * @return string|\yii\web\Response + * @throws NotFoundHttpException + */ + public function actionUpdate($id) + { + $category = $this->findModel($id); + $type = $this->findType($category->type_id); + $form = new PostCategoryForm($category); + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $this->service->edit($category->id, $form); + return $this->redirect(['view', 'id' => $category->id]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('update', [ + 'model' => $form, + 'category' => $category, + 'type' => $type, + ]); + } + + /** + * @param $id + * + * @return \yii\web\Response + * @throws NotFoundHttpException + */ + public function actionDelete($id) + { + $category = $this->findModel($id); + $type = $this->findType($category->type_id); + try { + $this->service->remove($id); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + return $this->redirect(['index', 'tid' => $type->id]); + } + + + /** + * @param integer $id + * @return PostCategory the loaded model + * @throws NotFoundHttpException if the model cannot be found + */ + protected function findModel($id): PostCategory + { + if (($model = PostCategory::findOne($id)) !== null) { + return $model; + } + throw new NotFoundHttpException('The requested page does not exist.'); + } + + protected function findType($id): PostType + { + if (($type = PostType::findOne($id)) !== null) { + return $type; + } + throw new NotFoundHttpException('The requested page does not exist.'); + } +} diff --git a/backend/controllers/post/CommentController.php b/backend/controllers/post/CommentController.php new file mode 100644 index 0000000..e5c861a --- /dev/null +++ b/backend/controllers/post/CommentController.php @@ -0,0 +1,159 @@ +service = $service; + } + + public function behaviors(): array + { + return [ + 'access' => [ + 'class' => AccessControl::className(), + 'rules' => [ + [ + 'allow' => true, + 'roles' => ['PostManagement'], + ], + [ // all the action are accessible to admin + 'allow' => true, + 'roles' => ['admin'], + ], + ], + ], + 'verbs' => [ + 'class' => VerbFilter::className(), + 'actions' => [ + 'delete' => ['POST'], + ], + ], + ]; + } + + /** + * @return mixed + */ + public function actionIndex() + { + $searchModel = new PostCommentSearch(); + $dataProvider = $searchModel->search(Yii::$app->request->queryParams); + + return $this->render('index', [ + 'searchModel' => $searchModel, + 'dataProvider' => $dataProvider, + ]); + } + + /** + * @param $post_id + * @param $id + * + * @return string|\yii\web\Response + * @throws NotFoundHttpException + */ + public function actionUpdate($post_id, $id) + { + $post = $this->findModel($post_id); + $comment = $post->getComment($id); + + $form = new PostCommentEditForm($comment); + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $this->service->edit($post->id, $comment->id, $form); + return $this->redirect(['view', 'post_id' => $post->id, 'id' => $comment->id]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('update', [ + 'post' => $post, + 'model' => $form, + 'comment' => $comment, + ]); + } + + /** + * @param $post_id + * @param $id + * + * @return string + * @throws NotFoundHttpException + */ + public function actionView($post_id, $id) + { + $post = $this->findModel($post_id); + $comment = $post->getComment($id); + + return $this->render('view', [ + 'post' => $post, + 'comment' => $comment, + ]); + } + + /** + * @param $post_id + * @param $id + * + * @return \yii\web\Response + * @throws NotFoundHttpException + */ + public function actionActivate($post_id, $id) + { + $post = $this->findModel($post_id); + try { + $this->service->activate($post->id, $id); + } catch (\DomainException $e) { + Yii::$app->session->setFlash('error', $e->getMessage()); + } + return $this->redirect(['view', 'post_id' => $post_id, 'id' => $id]); + } + + /** + * @param $post_id + * @param $id + * + * @return \yii\web\Response + * @throws NotFoundHttpException + */ + public function actionDelete($post_id, $id) + { + $post = $this->findModel($post_id); + try { + $this->service->remove($post->id, $id); + } catch (\DomainException $e) { + Yii::$app->session->setFlash('error', $e->getMessage()); + } + return $this->redirect(['index']); + } + + /** + * @param integer $id + * @return Post the loaded model + * @throws NotFoundHttpException if the model cannot be found + */ + protected function findModel($id): Post + { + if (($model = Post::findOne($id)) !== null) { + return $model; + } + throw new NotFoundHttpException('The requested page does not exist.'); + } +} diff --git a/backend/controllers/post/PostController.php b/backend/controllers/post/PostController.php new file mode 100644 index 0000000..1d79dc4 --- /dev/null +++ b/backend/controllers/post/PostController.php @@ -0,0 +1,232 @@ +service = $service; + } + + public function behaviors(): array + { + return [ + 'access' => [ + 'class' => AccessControl::className(), + 'rules' => [ + [ + 'allow' => true, + 'roles' => ['PostManagement'], + ], + [ // all the action are accessible to admin + 'allow' => true, + 'roles' => ['admin'], + ], + ], + ], + 'verbs' => [ + 'class' => VerbFilter::className(), + 'actions' => [ + 'delete' => ['POST'], + 'activate' => ['POST'], + 'draft' => ['POST'], + 'delete-photo' => ['POST'], + 'move-photo-up' => ['POST'], + 'move-photo-down' => ['POST'], + ], + ], + ]; + } + + /** + * @param $tid + * + * @return string + * @throws NotFoundHttpException + */ + public function actionIndex($tid) + { + $type = $this->findType($tid); + + $searchModel = new PostSearch(); + $dataProvider = $searchModel->search(Yii::$app->request->queryParams); + + return $this->render( '/post/' . $type->name . '/index', [ + 'searchModel' => $searchModel, + 'dataProvider' => $dataProvider, + 'type' => $type, + ]); + } + + /** + * @param $id + * + * @return string + * @throws NotFoundHttpException + */ + public function actionView($id) + { + $post = $this->findModel($id); + $type = $this->findType($post->type_id); + return $this->render('/post/' . $type->name . '/view', [ + 'post' => $post, + 'type' => $type, + ]); + } + + /** + * @param $tid + * + * @return string|\yii\web\Response + * @throws NotFoundHttpException + */ + public function actionCreate($tid) + { + $type = $this->findType($tid); + $form = new PostForm(); + $form->type_id = $type->id; + $form->published_at = date('d.m.Y H:i:s'); + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $post = $this->service->create($form); + return $this->redirect(['view', 'id' => $post->id, 'tid' => $post->type_id]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('/post/' . $type->name . '/create', [ + 'model' => $form, + 'type' => $type, + ]); + } + + /** + * @param $id + * + * @return string|\yii\web\Response + * @throws NotFoundHttpException + */ + public function actionUpdate($id) + { + $post = $this->findModel($id); + $type = $this->findType($post->type_id); + $form = new PostForm($post); + $form->published_at = date('d.m.Y H:i:s', $form->published_at); + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $this->service->edit($post->id, $form); + return $this->redirect(['view', 'id' => $post->id, 'tid' => $post->type_id]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('/post/' . $type->name . '/update', [ + 'model' => $form, + 'post' => $post, + 'type' => $type, + ]); + } + + /** + * @param $id + * + * @return \yii\web\Response + * @throws NotFoundHttpException + */ + public function actionDelete($id) + { + $post = $this->findModel($id); + $type = $this->findType($post->type_id); + try { + $this->service->remove($id); + } catch (\DomainException $e) { + Yii::$app->session->setFlash('error', $e->getMessage()); + } + return $this->redirect(['index', 'tid' => $type->id]); + } + + /** + * @param integer $id + * @return mixed + */ + public function actionActivate($id) + { + try { + $this->service->activate($id); + } catch (\DomainException $e) { + Yii::$app->session->setFlash('error', $e->getMessage()); + } + return $this->redirect(['view', 'id' => $id]); + } + + /** + * @param integer $id + * @return mixed + */ + public function actionDraft($id) + { + try { + $this->service->draft($id); + } catch (\DomainException $e) { + Yii::$app->session->setFlash('error', $e->getMessage()); + } + return $this->redirect(['view', 'id' => $id]); + } + + public function actionTagSearch($type_id, $q = null, $id = null) + { + \Yii::$app->response->format = Response::FORMAT_JSON; + $out = ['results' => ['id' => '', 'text' => '']]; + if (!is_null($q)) { + $data = PostTag::find()->select('name as id, name as text')->andWhere(['type_id' => $type_id])->andWhere(['like', 'name', $q])->orderBy('name')->limit(20)->asArray()->all(); + $out['results'] = array_values($data); + } + elseif ($id > 0) { + $tag_name = PostTag::findOne($id)->name; + $out['results'] = ['id' => $tag_name, 'text' => $tag_name]; + } + return $out; + } + + /** + * @param integer $id + * @return Post the loaded model + * @throws NotFoundHttpException if the model cannot be found + */ + protected function findModel($id): Post + { + if (($model = Post::findOne($id)) !== null) { + return $model; + } + throw new NotFoundHttpException('The requested page does not exist.'); + } + + protected function findType($id): PostType + { + if (($type = PostType::findOne($id)) !== null) { + return $type; + } + throw new NotFoundHttpException('The requested page does not exist.'); + } +} diff --git a/backend/controllers/post/TagController.php b/backend/controllers/post/TagController.php new file mode 100644 index 0000000..2c9a5c0 --- /dev/null +++ b/backend/controllers/post/TagController.php @@ -0,0 +1,179 @@ +service = $service; + } + + public function behaviors(): array + { + return [ + 'access' => [ + 'class' => AccessControl::className(), + 'rules' => [ + [ + 'allow' => true, + 'roles' => ['PostManagement'], + ], + [ // all the action are accessible to admin + 'allow' => true, + 'roles' => ['admin'], + ], + ], + ], + 'verbs' => [ + 'class' => VerbFilter::className(), + 'actions' => [ + 'delete' => ['POST'], + ], + ], + ]; + } + + /** + * @param $tid + * + * @return string + * @throws NotFoundHttpException + */ + public function actionIndex($tid) + { + $type = $this->findType($tid); + + $searchModel = new PostTagSearch(); + $dataProvider = $searchModel->search(Yii::$app->request->queryParams); + + return $this->render('index', [ + 'searchModel' => $searchModel, + 'dataProvider' => $dataProvider, + 'type' => $type, + ]); + } + + /** + * @param $id + * + * @return string + * @throws NotFoundHttpException + */ + public function actionView($id) + { + $tag = $this->findModel($id); + $type = $this->findType($tag->type_id); + return $this->render('view', [ + 'tag' => $tag, + 'type' => $type, + ]); + } + + /** + * @param $tid + * + * @return string|\yii\web\Response + * @throws NotFoundHttpException + */ + public function actionCreate($tid) + { + $type = $this->findType($tid); + $form = new PostTagSingleForm(); + $form->type_id = $type->id; + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $tag = $this->service->create($form); + return $this->redirect(['view', 'id' => $tag->id]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('create', [ + 'model' => $form, + 'type' => $type, + ]); + } + + /** + * @param $id + * + * @return string|\yii\web\Response + * @throws NotFoundHttpException + */ + public function actionUpdate($id) + { + $tag = $this->findModel($id); + $type = $this->findType($tag->type_id); + $form = new PostTagSingleForm($tag); + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $this->service->edit($tag->id, $form); + return $this->redirect(['view', 'id' => $tag->id]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('update', [ + 'model' => $form, + 'tag' => $tag, + 'type' => $type, + ]); + } + + /** + * @param $id + * + * @return \yii\web\Response + * @throws NotFoundHttpException + */ + public function actionDelete($id) + { + $tag = $this->findModel($id); + $type = $this->findType($tag->type_id); + try { + $this->service->remove($id); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + return $this->redirect(['index', 'tid' => $type->id]); + } + + /** + * @param integer $id + * @return PostTag the loaded model + * @throws NotFoundHttpException if the model cannot be found + */ + protected function findModel($id): PostTag + { + if (($model = PostTag::findOne($id)) !== null) { + return $model; + } + throw new NotFoundHttpException('The requested page does not exist.'); + } + + protected function findType($id): PostType + { + if (($type = PostType::findOne($id)) !== null) { + return $type; + } + throw new NotFoundHttpException('The requested page does not exist.'); + } +} diff --git a/backend/controllers/post/TypeController.php b/backend/controllers/post/TypeController.php new file mode 100644 index 0000000..c1b9b90 --- /dev/null +++ b/backend/controllers/post/TypeController.php @@ -0,0 +1,156 @@ +service = $service; + } + + public function behaviors(): array + { + return [ + 'access' => [ + 'class' => AccessControl::className(), + 'rules' => [ + [ + 'allow' => true, + 'roles' => ['PostManagement'], + ], + [ // all the action are accessible to admin + 'allow' => true, + 'roles' => ['admin'], + ], + ], + ], + 'verbs' => [ + 'class' => VerbFilter::className(), + 'actions' => [ + 'delete' => ['POST'], + ], + ], + ]; + } + + /** + * @return string + */ + public function actionIndex() + { + $searchModel = new PostTypeSearch(); + $dataProvider = $searchModel->search(Yii::$app->request->queryParams); + + return $this->render('index', [ + 'searchModel' => $searchModel, + 'dataProvider' => $dataProvider, + ]); + } + + /** + * @param $id + * + * @return string + * @throws NotFoundHttpException + */ + public function actionView($id) + { + $type = $this->findModel($id); + return $this->render('view', [ + 'type' => $type, + ]); + } + + /** + * @return string|\yii\web\Response + */ + public function actionCreate() + { + $form = new PostTypeForm(); + + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $type = $this->service->create($form); + return $this->redirect(['view', 'id' => $type->id]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('create', [ + 'model' => $form, + ]); + } + + /** + * @param $id + * + * @return string|\yii\web\Response + * @throws NotFoundHttpException + */ + public function actionUpdate($id) + { + $type = $this->findModel($id); + + $form = new PostTypeForm($type); + if ($form->load(Yii::$app->request->post()) && $form->validate()) { + try { + $this->service->edit($type->id, $form); + return $this->redirect(['view', 'id' => $type->id]); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + } + return $this->render('update', [ + 'model' => $form, + ]); + } + + /** + * @param $id + * + * @return \yii\web\Response + * @throws NotFoundHttpException + */ + public function actionDelete($id) + { + $type = $this->findModel($id); + + try { + $this->service->remove($id); + } catch (\DomainException $e) { + Yii::$app->errorHandler->logException($e); + Yii::$app->session->setFlash('error', $e->getMessage()); + } + return $this->redirect(['index']); + } + + /** + * @param $id + * + * @return PostType + * @throws NotFoundHttpException + */ + protected function findModel($id): PostType + { + if (($type = PostType::findOne($id)) !== null) { + return $type; + } + throw new NotFoundHttpException('The requested page does not exist.'); + } +} diff --git a/backend/forms/PageSearch.php b/backend/forms/PageSearch.php new file mode 100644 index 0000000..05aa7ff --- /dev/null +++ b/backend/forms/PageSearch.php @@ -0,0 +1,57 @@ +andWhere(['>', 'depth', 0]); + + $dataProvider = new ActiveDataProvider([ + 'query' => $query, + 'sort' => [ + 'defaultOrder' => ['lft' => SORT_ASC] + ] + ]); + + $this->load($params); + + if (!$this->validate()) { + $query->where('0=1'); + return $dataProvider; + } + + $query->andFilterWhere([ + 'id' => $this->id, + ]); + + $query + ->andFilterWhere(['like', 'name', $this->name]) + ->andFilterWhere(['like', 'slug', $this->slug]) + ->andFilterWhere(['like', 'title', $this->title]); + + return $dataProvider; + } +} diff --git a/backend/forms/UserSearch.php b/backend/forms/UserSearch.php new file mode 100644 index 0000000..23ce1ca --- /dev/null +++ b/backend/forms/UserSearch.php @@ -0,0 +1,71 @@ + 'php:Y-m-d'], + ]; + } + + /** + * @param array $params + * @return ActiveDataProvider + */ + public function search(array $params): ActiveDataProvider + { + $query = User::find()->alias('u'); + + $dataProvider = new ActiveDataProvider([ + 'query' => $query, + ]); + + $this->load($params); + + if (!$this->validate()) { + $query->where('0=1'); + return $dataProvider; + } + + $query->andFilterWhere([ + 'u.id' => $this->id, + 'u.status' => $this->status, + ]); + + if (!empty($this->role)) { + $query->innerJoin('{{%auth_assignments}} a', 'a.user_id = u.id'); + $query->andWhere(['a.item_name' => $this->role]); + } + + $query + ->andFilterWhere(['like', 'u.username', $this->username]) + ->andFilterWhere(['like', 'u.email', $this->email]) + ->andFilterWhere(['>=', 'u.created_at', $this->date_from ? strtotime($this->date_from . ' 00:00:00') : null]) + ->andFilterWhere(['<=', 'u.created_at', $this->date_to ? strtotime($this->date_to . ' 23:59:59') : null]); + + return $dataProvider; + } + + public function rolesList(): array + { + return ArrayHelper::map(\Yii::$app->authManager->getRoles(), 'name', 'description'); + } +} diff --git a/backend/forms/rbac/RbacCreatePermissionForm.php b/backend/forms/rbac/RbacCreatePermissionForm.php new file mode 100644 index 0000000..eab1234 --- /dev/null +++ b/backend/forms/rbac/RbacCreatePermissionForm.php @@ -0,0 +1,43 @@ + 64], + [['created_at', 'updated_at'], 'integer'], + ]; + } + + public function attributeLabels() + { + return [ + 'name' => Yii::t('user', 'Permission Name'), + 'description' => Yii::t('user', 'Permission Description'), + 'rule_name' => Yii::t('user', 'Rule Name'), + 'data' => Yii::t('user', 'Permission Data'), + ]; + } +} \ No newline at end of file diff --git a/backend/forms/rbac/RbacCreateRoleForm.php b/backend/forms/rbac/RbacCreateRoleForm.php new file mode 100644 index 0000000..2427daa --- /dev/null +++ b/backend/forms/rbac/RbacCreateRoleForm.php @@ -0,0 +1,43 @@ + 64], + [['created_at', 'updated_at'], 'integer'], + ]; + } + + public function attributeLabels() + { + return [ + 'name' => Yii::t('user', 'Role Name'), + 'description' => Yii::t('user', 'Role Description'), + 'rule_name' => Yii::t('user', 'Rule Name'), + 'data' => Yii::t('user', 'Role Data'), + ]; + } +} \ No newline at end of file diff --git a/backend/forms/rbac/RbacEditPermissionForm.php b/backend/forms/rbac/RbacEditPermissionForm.php new file mode 100644 index 0000000..c9caad9 --- /dev/null +++ b/backend/forms/rbac/RbacEditPermissionForm.php @@ -0,0 +1,53 @@ +name = $permission->name; + $this->description = $permission->description; + $this->rule_name = $permission->ruleName; + $this->data = $permission->data; + parent::__construct($config); + } + + public function rules() + { + return [ + [['name'], 'required'], + [['name', 'description', 'rule_name'], 'trim'], + + [['description', 'data'], 'string'], + [['rule_name'], 'string', 'max' => 64], + [['created_at', 'updated_at'], 'integer'], + ]; + } + + public function attributeLabels() + { + return [ + 'name' => Yii::t('user', 'Permission Name'), + 'description' => Yii::t('user', 'Permission Description'), + 'rule_name' => Yii::t('user', 'Rule Name'), + 'data' => Yii::t('user', 'Permission Data'), + ]; + } +} \ No newline at end of file diff --git a/backend/forms/rbac/RbacEditRoleForm.php b/backend/forms/rbac/RbacEditRoleForm.php new file mode 100644 index 0000000..fa7b5e2 --- /dev/null +++ b/backend/forms/rbac/RbacEditRoleForm.php @@ -0,0 +1,53 @@ +name = $role->name; + $this->description = $role->description; + $this->rule_name = $role->ruleName; + $this->data = $role->data; + parent::__construct($config); + } + + public function rules() + { + return [ + [['name'], 'required'], + [['name', 'description', 'rule_name'], 'trim'], + + [['description', 'data'], 'string'], + [['rule_name'], 'string', 'max' => 64], + [['created_at', 'updated_at'], 'integer'], + ]; + } + + public function attributeLabels() + { + return [ + 'name' => Yii::t('user', 'Role Name'), + 'description' => Yii::t('user', 'Role Description'), + 'rule_name' => Yii::t('user', 'Rule Name'), + 'data' => Yii::t('user', 'Role Data'), + ]; + } +} \ No newline at end of file diff --git a/backend/forms/rbac/RbacUpdateChildren.php b/backend/forms/rbac/RbacUpdateChildren.php new file mode 100644 index 0000000..c87f26c --- /dev/null +++ b/backend/forms/rbac/RbacUpdateChildren.php @@ -0,0 +1,23 @@ + ['string']], + ]; + } +} \ No newline at end of file diff --git a/backend/messages/ru/buttons.php b/backend/messages/ru/buttons.php new file mode 100644 index 0000000..8038f70 --- /dev/null +++ b/backend/messages/ru/buttons.php @@ -0,0 +1,10 @@ + 'Вы уверены, что хотите удалить эту запись', + 'Update' => 'Обновить', + 'Save' => 'Сохранить', + 'Create' => 'Создать', + 'Delete' => 'Удалить', + 'Edit' => 'Изменить', + 'Editing' => 'Редактирование', +]; \ No newline at end of file diff --git a/backend/messages/ru/dashboard.php b/backend/messages/ru/dashboard.php new file mode 100644 index 0000000..97f2730 --- /dev/null +++ b/backend/messages/ru/dashboard.php @@ -0,0 +1,4 @@ + 'Панель управления', +]; \ No newline at end of file diff --git a/backend/messages/ru/main.php b/backend/messages/ru/main.php new file mode 100644 index 0000000..0071bde --- /dev/null +++ b/backend/messages/ru/main.php @@ -0,0 +1,11 @@ + 'Меню', + 'Title' => 'Заголовок', + 'Description' => 'Описание', + 'Keywords' => 'Ключевые слова', + 'Sign out' => 'Выход', + 'Profile' => 'Профиль', + 'Error' => 'Ошибка', + 'Return to back or login page please.' => 'Вернитесь назад или авторизуйтесь снова.', +]; \ No newline at end of file diff --git a/backend/messages/ru/page.php b/backend/messages/ru/page.php new file mode 100644 index 0000000..5b1bb29 --- /dev/null +++ b/backend/messages/ru/page.php @@ -0,0 +1,13 @@ + 'Новая страница', + 'Pages' => 'Страницы', + 'Common' => 'Основное', + 'Content' => 'Содержание', + 'SEO' => 'META теги', + 'Title' => 'Заголовок', + 'Slug' => 'ЧПУ ссылка', + 'ID' => '№', + 'Parent Page' => 'Родительская страница', + 'Update Page: {name}' => 'Редактирование страницы: {name}', +]; \ No newline at end of file diff --git a/backend/messages/ru/post.php b/backend/messages/ru/post.php new file mode 100644 index 0000000..5e26d81 --- /dev/null +++ b/backend/messages/ru/post.php @@ -0,0 +1,61 @@ + 'Все записи', + 'Posts' => 'Записи', + 'Categories' => 'Категории', + 'Tags' => 'Теги', + 'News' => 'Новости', + 'Comments' => 'Комментарии', + 'Articles' => 'Статьи', + 'Blog' => 'Блог', + 'Blogs' => 'Блоги', + 'Events' => 'События', + 'Gallery' => 'Фотогалерея', + 'Create Post' => 'Новая запись', + 'Create Category' => 'Новая категория', + 'Create Tag' => 'Новый тег', + 'Common' => 'Основное', + 'Title' => 'Заголовок', + 'Description' => 'Описание', + 'Content' => 'Содержание', + 'Image' => 'Изображение', + 'Existing' => 'Существующие', + 'New tag' => 'Новый тег', + 'Category' => 'Категория', + 'Post is already active.' => 'Запись уже опубликована.', + 'Published At' => 'Опубликовано', + 'Created At' => 'Создано', + 'Updated At' => 'Обновлено', + 'Status' => 'Статус', + 'ID' => '№', + 'SEO' => 'МЕТА теги', + 'Tag Name' => 'Тег', + 'SEO link' => 'ЧПУ ссылка', + 'Draft' => 'Черновик', + 'Active' => 'Опубликовано', + 'Activate' => 'Опубликовать', + 'Meta Title' => 'Заголовок', + 'Meta Description' => 'Описание', + 'Meta Keywords' => 'Ключевые слова', + 'Name' => 'Название', + 'Sort' => 'Позиция', + 'Update: {name}' => 'Редактирование: {name}', + 'Types' => 'Типы', + 'Create Type' => 'Новый тип', + 'Singular' => 'Единственное число', + 'Plural' => 'Множественное число', + 'Slug' => 'ЧПУ ссылка', + 'Update Post: {name}' => 'Редактирование: {name}', + 'Update Post Comment: {name}' => 'Редактирование комментария: {name}', + 'Update Tag: {name}' => 'Редактирование тега: {name}', + 'Parent Comment ID' => 'Родительский комментарий', + 'Comment' => 'Комментарий', + 'Published' => 'Опубликовано', + 'User' => 'Пользователь', + 'Post' => 'Запись', + 'YouTube URL' => 'Ссылка YouTube', + 'Add Image' => 'Новое изображение', + 'Video' => 'Видео', + 'If a video link is specified, the image will be used as a preview image' => 'Если указана ссылка на видео, то изображение будет рассматриваться как картинка для предварительного просмотра', + 'Reset Image' => 'Сбросить изображение', +]; \ No newline at end of file diff --git a/backend/messages/ru/slider.php b/backend/messages/ru/slider.php new file mode 100644 index 0000000..c1ecd67 --- /dev/null +++ b/backend/messages/ru/slider.php @@ -0,0 +1,15 @@ + 'Заголовок', + 'Tagline' => 'Слоган', + 'Image' => 'Изображение', + 'URL' => 'Ссылка', + 'Sort' => 'Сортировка', + 'Slider' => 'Карусель', + 'Slide' => 'Слайд', + 'Create Slide' => 'Новый слайд', + 'Update Slide' => 'Редактирование слайда', + 'ID' => '№', + 'Background Image' => 'Фоновое изображение', +]; \ No newline at end of file diff --git a/backend/messages/ru/user.php b/backend/messages/ru/user.php new file mode 100644 index 0000000..68241ed --- /dev/null +++ b/backend/messages/ru/user.php @@ -0,0 +1,35 @@ + 'Пользователи', + 'Create User' => 'Новый пользователь', + 'Username' => 'Имя пользователя', + 'Password' => 'Пароль', + 'E-mail' => 'E-mail', + 'Created At' => 'Создан', + 'Status' => 'Статус', + 'Role' => 'Роль', + 'Updated At' => 'Изменен', + 'ID' => '№', + 'Update User: {user}' => 'Редактирование пользователя: {user}', + 'Wait' => 'Не подтвержден', + 'Active' => 'Активен', + 'Access Rules' => 'Права доступа', + 'Roles' => 'Роли', + 'Permissions' => 'Разрешения', + 'Create Role' => 'Новая роль', + 'Create Permission' => 'Новое разрешение', + 'Role Name' => 'Название роли', + 'Rule Name' => 'Название правила', + 'Role Description' => 'Описание роли', + 'Role Data' => 'Данные роли', + 'Permission Name' => 'Название разрешения', + 'Permission Description' => 'Описание разрешения', + 'Permission Data' => 'Данные разрешения', + 'Update Role: {role}' => 'Редактирование роли: {role}', + 'Select role...' => 'Укажите роль...', + 'Select permission...' => 'Укажите разрешение...', + 'Contains roles' => 'Содержит роли', + 'Update Permission: {permission}' => 'Редактирование разрешения: {permission}', + 'Administrator has full access rules' => 'Администратор обладает всеми правами доступа', + 'Children roles and permissions for "{role}" is updated.' => 'Дочерние роли и разрешения для роли "{role}" обновлены.', +]; \ No newline at end of file diff --git a/backend/models/.gitkeep b/backend/models/.gitkeep new file mode 100644 index 0000000..72e8ffc --- /dev/null +++ b/backend/models/.gitkeep @@ -0,0 +1 @@ +* diff --git a/backend/runtime/.gitignore b/backend/runtime/.gitignore new file mode 100644 index 0000000..c96a04f --- /dev/null +++ b/backend/runtime/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file diff --git a/backend/tests/_bootstrap.php b/backend/tests/_bootstrap.php new file mode 100644 index 0000000..44f5e81 --- /dev/null +++ b/backend/tests/_bootstrap.php @@ -0,0 +1,9 @@ + 'erau', + 'auth_key' => 'tUu1qHcde0diwUol3xeI-18MuHkkprQI', + // password_0 + 'password_hash' => '$2y$13$nJ1WDlBaGcbCdbNC5.5l4.sgy.OMEKCqtDQOdQ2OWpgiKRWYyzzne', + 'password_reset_token' => 'RkD_Jw0_8HEedzLk7MM-ZKEFfYR7VbMr_1392559490', + 'created_at' => '1392559490', + 'updated_at' => '1392559490', + 'email' => 'sfriesen@jenkins.info', + ], +]; diff --git a/backend/tests/_output/.gitignore b/backend/tests/_output/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/backend/tests/_output/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/backend/tests/_support/.gitignore b/backend/tests/_support/.gitignore new file mode 100644 index 0000000..36e264c --- /dev/null +++ b/backend/tests/_support/.gitignore @@ -0,0 +1 @@ +_generated diff --git a/backend/tests/_support/FunctionalTester.php b/backend/tests/_support/FunctionalTester.php new file mode 100644 index 0000000..80a79ed --- /dev/null +++ b/backend/tests/_support/FunctionalTester.php @@ -0,0 +1,25 @@ + [ + 'class' => UserFixture::className(), + 'dataFile' => codecept_data_dir() . 'login_data.php' + ] + ]; + } + + /** + * @param FunctionalTester $I + */ + public function loginUser(FunctionalTester $I) + { + $I->amOnPage('/site/login'); + $I->fillField('Username', 'erau'); + $I->fillField('Password', 'password_0'); + $I->click('login-button'); + + $I->see('Logout (erau)', 'form button[type=submit]'); + $I->dontSeeLink('Login'); + $I->dontSeeLink('Signup'); + } +} diff --git a/backend/tests/functional/_bootstrap.php b/backend/tests/functional/_bootstrap.php new file mode 100644 index 0000000..30ed54b --- /dev/null +++ b/backend/tests/functional/_bootstrap.php @@ -0,0 +1,16 @@ + 'davert']); + * ``` + * + * In Cests + * + * ```php + * \Codeception\Util\Fixtures::get('user1'); + * ``` + */ \ No newline at end of file diff --git a/backend/tests/unit.suite.yml b/backend/tests/unit.suite.yml new file mode 100644 index 0000000..1ba1eb4 --- /dev/null +++ b/backend/tests/unit.suite.yml @@ -0,0 +1 @@ +class_name: UnitTester diff --git a/backend/tests/unit/_bootstrap.php b/backend/tests/unit/_bootstrap.php new file mode 100644 index 0000000..e432ce5 --- /dev/null +++ b/backend/tests/unit/_bootstrap.php @@ -0,0 +1,16 @@ + 'davert']); + * ``` + * + * In Tests + * + * ```php + * \Codeception\Util\Fixtures::get('user1'); + * ``` + */ diff --git a/backend/views/auth/login.php b/backend/views/auth/login.php new file mode 100644 index 0000000..950d86b --- /dev/null +++ b/backend/views/auth/login.php @@ -0,0 +1,60 @@ +title = 'Sign In'; + +$fieldOptions1 = [ + 'options' => ['class' => 'form-group has-feedback'], + 'inputTemplate' => "{input}" +]; + +$fieldOptions2 = [ + 'options' => ['class' => 'form-group has-feedback'], + 'inputTemplate' => "{input}" +]; +?> + + diff --git a/backend/views/layouts/content.php b/backend/views/layouts/content.php new file mode 100644 index 0000000..54e296b --- /dev/null +++ b/backend/views/layouts/content.php @@ -0,0 +1,235 @@ + +
+
+ blocks['content-header'])) { ?> +

blocks['content-header'] ?>

+ +

+ title !== null) { + echo \yii\helpers\Html::encode($this->title); + } else { + echo \yii\helpers\Inflector::camel2words( + \yii\helpers\Inflector::id2camel($this->context->module->id) + ); + echo ($this->context->module->id !== \Yii::$app->id) ? 'Module' : ''; + } ?> +

+ + + isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : [], + ] + ) ?> +
+ +
+ + +
+
+ + + + + + +
\ No newline at end of file diff --git a/backend/views/layouts/error.php b/backend/views/layouts/error.php new file mode 100644 index 0000000..d737c6c --- /dev/null +++ b/backend/views/layouts/error.php @@ -0,0 +1,30 @@ + +beginPage() ?> + + + + + + + <?= Html::encode($this->title) ?> + head() ?> + + + +beginBody() ?> + + + +endBody() ?> + + +endPage() ?> diff --git a/backend/views/layouts/header.php b/backend/views/layouts/header.php new file mode 100644 index 0000000..9fc4146 --- /dev/null +++ b/backend/views/layouts/header.php @@ -0,0 +1,281 @@ + + +
+ + APP' . Yii::$app->name . '', Yii::$app->homeUrl, ['class' => 'logo']) ?> + + +
diff --git a/backend/views/layouts/left.php b/backend/views/layouts/left.php new file mode 100644 index 0000000..fe31327 --- /dev/null +++ b/backend/views/layouts/left.php @@ -0,0 +1,86 @@ + diff --git a/backend/views/layouts/main-login.php b/backend/views/layouts/main-login.php new file mode 100644 index 0000000..c39c79e --- /dev/null +++ b/backend/views/layouts/main-login.php @@ -0,0 +1,30 @@ + +beginPage() ?> + + + + + + + <?= Html::encode($this->title) ?> + head() ?> + + + +beginBody() ?> + + + +endBody() ?> + + +endPage() ?> diff --git a/backend/views/layouts/main.php b/backend/views/layouts/main.php new file mode 100644 index 0000000..550a3b9 --- /dev/null +++ b/backend/views/layouts/main.php @@ -0,0 +1,65 @@ +controller->action->id === 'login') { +/** + * Do not use this code in your template. Remove it. + * Instead, use the code $this->layout = '//main-login'; in your controller. + */ + echo $this->render( + 'main-login', + ['content' => $content] + ); +} else { + + if (class_exists('backend\assets\AppAsset')) { + backend\assets\AppAsset::register($this); + } else { + app\assets\AppAsset::register($this); + } + + dmstr\web\AdminLteAsset::register($this); + \backend\assets\AdminLteSkinAsset::register($this); + $directoryAsset = Yii::$app->assetManager->getPublishedUrl('@vendor/almasaeed2010/adminlte/dist'); + ?> + beginPage() ?> + + + + + + + <?= Html::encode($this->title) ?> + head() ?> + + + beginBody() ?> +
+ + render( + 'header.php', + ['directoryAsset' => $directoryAsset] + ) ?> + + render( + 'left.php', + ['directoryAsset' => $directoryAsset] + ) + ?> + + render( + 'content.php', + ['content' => $content, 'directoryAsset' => $directoryAsset] + ) ?> + +
+ + endBody() ?> + + + endPage() ?> + diff --git a/backend/views/page/_form.php b/backend/views/page/_form.php new file mode 100644 index 0000000..7f0adcc --- /dev/null +++ b/backend/views/page/_form.php @@ -0,0 +1,42 @@ + + +
+ + + +
+
+
+ field($model, 'parentId')->dropDownList($model->parentsList()) ?> + field($model, 'title')->textInput(['maxlength' => true]) ?> + field($model, 'slug')->textInput(['maxlength' => true]) ?> + field($model, 'content')->widget(CKEditor::className()) ?> + +
+
+ +
+
+
+ field($model->meta, 'title')->textInput() ?> + field($model->meta, 'description')->textarea(['rows' => 2]) ?> + field($model->meta, 'keywords')->textInput() ?> +
+
+ +
+ 'btn btn-success']) ?> +
+ + + +
diff --git a/backend/views/page/create.php b/backend/views/page/create.php new file mode 100644 index 0000000..5be1319 --- /dev/null +++ b/backend/views/page/create.php @@ -0,0 +1,16 @@ +title = Yii::t('page', 'Create Page'); +$this->params['breadcrumbs'][] = ['label' => Yii::t('page', 'Pages'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = $this->title; +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/page/index.php b/backend/views/page/index.php new file mode 100644 index 0000000..a1a873f --- /dev/null +++ b/backend/views/page/index.php @@ -0,0 +1,55 @@ +title = Yii::t('page', 'Pages'); +$this->params['breadcrumbs'][] = $this->title; +?> +
+ +

+ 'btn btn-success']) ?> +

+ +
+
+ $dataProvider, + 'filterModel' => $searchModel, + 'columns' => [ + [ + 'attribute' => 'title', + 'value' => function (Page $model) { + $indent = ($model->depth > 1 ? str_repeat('  ', $model->depth - 1) . ' ' : ''); + return $indent . Html::a(Html::encode($model->title), ['view', 'id' => $model->id]); + }, + 'format' => 'raw', + ], + [ + 'value' => function (Page $model) { + return + Html::a('', ['move-up', 'id' => $model->id]) . + Html::a('', ['move-down', 'id' => $model->id]); + }, + 'format' => 'raw', + 'options' => ['style' => 'width: 100px;'], + 'contentOptions' => ['style' => 'text-align: center'], + ], + 'slug', + [ + 'class' => ActionColumn::class, + 'options' => ['style' => 'width: 100px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + ], + ]); ?> +
+
+
diff --git a/backend/views/page/update.php b/backend/views/page/update.php new file mode 100644 index 0000000..ea93140 --- /dev/null +++ b/backend/views/page/update.php @@ -0,0 +1,18 @@ +title = Yii::t('page', 'Update Page: {name}', ['name' => $page->title]); +$this->params['breadcrumbs'][] = ['label' => Yii::t('page', 'Pages'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = ['label' => $page->title, 'url' => ['view', 'id' => $page->id]]; +$this->params['breadcrumbs'][] = Yii::t('buttons', 'Editing'); +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/page/view.php b/backend/views/page/view.php new file mode 100644 index 0000000..0532100 --- /dev/null +++ b/backend/views/page/view.php @@ -0,0 +1,76 @@ +title = $page->title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('page', 'Pages'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = $this->title; +?> +
+ +

+ 'btn btn-default']) ?> + $page->id], ['class' => 'btn btn-primary']) ?> + $page->id], [ + 'class' => 'btn btn-danger', + 'data' => [ + 'confirm' => Yii::t('buttons', 'Are you sure you want to delete this item?'), + 'method' => 'post', + ], + ]) ?> +

+ +
+
+
+ $page, + 'attributes' => [ + 'id', + 'title', + 'slug', + ], + ]) ?> +
+
+ +
+
+
+ formatter->asHtml($page->content, [ + 'Attr.AllowedRel' => array('nofollow'), + 'HTML.SafeObject' => true, + 'Output.FlashCompat' => true, + 'HTML.SafeIframe' => true, + 'URI.SafeIframeRegexp'=>'%^(https?:)?//(www\.youtube(?:-nocookie)?\.com/embed/|player\.vimeo\.com/video/)%', + ]) ?> +
+
+ +
+
+
+ $page, + 'attributes' => [ + [ + 'attribute' => 'meta.title', + 'label' => Yii::t('main', 'Title'), + ], + [ + 'attribute' => 'meta.description', + 'label' => Yii::t('main', 'Description'), + ], + [ + 'attribute' => 'meta.keywords', + 'label' => Yii::t('main', 'Keywords'), + ], + ], + ]) ?> +
+
+
diff --git a/backend/views/permission/create.php b/backend/views/permission/create.php new file mode 100644 index 0000000..bf80bc4 --- /dev/null +++ b/backend/views/permission/create.php @@ -0,0 +1,33 @@ +title = Yii::t('user', 'Create Permission'); +$this->params['breadcrumbs'][] = ['label' => Yii::t('user', 'Permissions'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = $this->title; +?> +
+ + + + +
+
+ field($model, 'name')->textInput(['maxLength' => true]) ?> + field($model, 'description')->textarea() ?> + field($model, 'rule_name')->textInput(['maxLength' => true]) ?> + field($model, 'data')->textarea() ?> +
+
+ +
+ 'btn btn-primary']) ?> +
+ + + +
\ No newline at end of file diff --git a/backend/views/permission/index.php b/backend/views/permission/index.php new file mode 100644 index 0000000..db46bd0 --- /dev/null +++ b/backend/views/permission/index.php @@ -0,0 +1,42 @@ +title = Yii::t('user', 'Permissions'); +$this->params['breadcrumbs'][] = $this->title; +?> +
+ +

+ 'btn btn-success']) ?> +

+ +
+
+ $dataProvider, + 'columns' => [ + [ + 'attribute' => 'name', + 'label' => Yii::t('user', 'Permission Name'), + ], + [ + 'attribute' => 'description', + 'label' => Yii::t('user', 'Permission Description'), + ], + [ + 'class' => ActionColumn::class, + 'options' => ['style' => 'width: 100px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + ], + ]); ?> +
+
+ +
diff --git a/backend/views/permission/update.php b/backend/views/permission/update.php new file mode 100644 index 0000000..17ef66f --- /dev/null +++ b/backend/views/permission/update.php @@ -0,0 +1,33 @@ +title = Yii::t('user', 'Update Permission: {permission}', ['permission' => $model->name]); +$this->params['breadcrumbs'][] = ['label' => Yii::t('user', 'Permissions'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->name]]; +$this->params['breadcrumbs'][] = Yii::t('user', 'Editing'); +?> +
+ + + +
+
+ field($model, 'name')->textInput(['maxLength' => true]) ?> + field($model, 'description')->textarea() ?> + field($model, 'rule_name')->textInput(['maxLength' => true]) ?> + field($model, 'data')->textarea() ?> +
+
+ +
+ 'btn btn-primary']) ?> +
+ + + +
\ No newline at end of file diff --git a/backend/views/permission/view.php b/backend/views/permission/view.php new file mode 100644 index 0000000..8d58aa8 --- /dev/null +++ b/backend/views/permission/view.php @@ -0,0 +1,50 @@ +title = $model->name; +$this->params['breadcrumbs'][] = ['label' => Yii::t('user', 'Permissions'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = $this->title; +?> +
+ +

+ 'btn btn-default']) ?> + $model->name], ['class' => 'btn btn-primary']) ?> + $model->name], [ + 'class' => 'btn btn-danger', + 'data' => [ + 'confirm' => Yii::t('buttons', 'Are you sure you want to delete this item?'), + 'method' => 'post', + ], + ]) ?> +

+ +
+
+ $model, + 'attributes' => [ + [ + 'attribute' => 'name', + 'label' => Yii::t('user', 'Role Name'), + ], + [ + 'attribute' => 'description', + 'label' => Yii::t('user', 'Role Description'), + ], + [ + 'attribute' => 'ruleName', + 'label' => Yii::t('user', 'Rule Name'), + ], + ], + ]) ?> +
+
+ +
diff --git a/backend/views/post/articles/_form.php b/backend/views/post/articles/_form.php new file mode 100644 index 0000000..740b8aa --- /dev/null +++ b/backend/views/post/articles/_form.php @@ -0,0 +1,139 @@ +_post)) { + $tagsJson = \yii\helpers\Json::encode( \yii\helpers\Json::encode( \yii\helpers\ArrayHelper::map( $model->_post->tags, 'id', 'name' ) ) ); + + $js = <<"+value+""); + }); + $('#posttagform-new_tags').trigger('change'); +JS; + $this->registerJs( $js, $this::POS_READY ); +} +?> + +
+ + ['enctype'=>'multipart/form-data'] + ]); ?> + +
+
+
+
+
+ field($model, 'category_id')->dropDownList($model->categoriesList($model->type_id), ['prompt' => '']) ?> + field($model, 'published_at')->widget(\kartik\widgets\DateTimePicker::classname(), [ + 'options' => [], + 'pluginOptions' => [ + 'autoclose' => true, + 'format' => 'dd.mm.yyyy hh:ii:ss', + ] + ]); ?> +
+
+
+
+
+
+
+ field($model->tags, 'new_tags')->widget(\kartik\widgets\Select2::classname(), [ + 'options' => [ + 'placeholder' => Yii::t('post','Set tags...'), + 'multiple' => true, + ], + 'pluginOptions' => [ + 'tags' => true, + 'tokenSeparators' => [',', ' '], + 'maximumInputLength' => 12, + 'ajax' => [ + 'url' => $fetchUrl, + 'dataType' => 'json', + 'data' => new JsExpression('function(params) { return {q:params.term, type_id:' . $model->type_id . '}; }') + ], + 'escapeMarkup' => new JsExpression('function (markup) { return markup; }'), + 'templateResult' => new JsExpression('function(tag) { return tag.text; }'), + 'templateSelection' => new JsExpression('function (tag) { return tag.text; }'), + ], + ])->label(false); ?> +
+
+
+
+ +
+
+ field($model, 'title')->textInput(['maxlength' => true]) ?> + field($model, 'slug')->textInput(['maxlength' => true]) ?> + field($model, 'description')->textarea(['rows' => 5]) ?> + field($model, 'content')->widget(CKEditor::className()) ?> +
+
+ +
+
+ + + +
+
+ field($model, 'image')->label(false)->widget(FileInput::class, [ + 'options' => [ + 'accept' => 'image/*', + ], + 'pluginOptions' => [ + 'showUpload' => false, + ], + ]) ?> + + _post) && $model->_post->image): ?> + _post->getThumbFileUrl('image', 'thumb_gallery_view'), [ + 'class' => 'thumbnail', + 'width' => 300, + ]) ?> + + field($model, 'reset_image')->checkbox() ?> + +
+
+ field($model, 'video')->textInput()->label(Yii::t('post', 'YouTube URL'))->hint(Yii::t('post', 'If a video link is specified, the image will be used as a preview image')) ?> +
+
+ +
+
+ +
+
+
+ field($model->meta, 'title')->textInput() ?> + field($model->meta, 'description')->textarea(['rows' => 2]) ?> + field($model->meta, 'keywords')->textInput() ?> +
+
+ +
+ 'btn btn-success']) ?> +
+ + + +
diff --git a/backend/views/post/articles/create.php b/backend/views/post/articles/create.php new file mode 100644 index 0000000..4720fde --- /dev/null +++ b/backend/views/post/articles/create.php @@ -0,0 +1,18 @@ +title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', $type->plural), 'url' => ['index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = $title; +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/post/articles/index.php b/backend/views/post/articles/index.php new file mode 100644 index 0000000..f371c20 --- /dev/null +++ b/backend/views/post/articles/index.php @@ -0,0 +1,83 @@ +title = $type->plural .' > '. $title; +$this->params['breadcrumbs'][] = $title; +?> +
+ +

+ $type->id], ['class' => 'btn btn-success']) ?> +

+ +
+
+ $dataProvider, + 'filterModel' => $searchModel, + 'columns' => [ + /*[ + 'value' => function (Post $model) { + return $model->image ? Html::img($model->getThumbFileUrl('image', 'admin')) : null; + }, + 'format' => 'raw', + 'contentOptions' => ['style' => 'width: 100px'], + ],*/ + [ + 'attribute' => 'id', + 'options' => ['style' => 'width: 40px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'attribute' => 'title', + 'value' => function (Post $model) { + return Html::a(Html::encode($model->title), ['view', 'id' => $model->id]); + }, + 'format' => 'raw', + ], + [ + 'attribute' => 'category_id', + 'filter' => $searchModel->categoriesList(), + 'value' => 'category.name', + ], + [ + 'attribute' => 'published_at', + 'format' => ['datetime', 'php:d.m.Y H:i'], + 'options' => ['style' => 'width: 60px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'attribute' => 'status', + 'filter' => $searchModel->statusList(), + 'value' => function (Post $model) { + return PostHelper::statusLabel($model->status); + }, + 'format' => 'raw', + 'options' => ['style' => 'width: 120px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'class' => \yii\grid\ActionColumn::class, + 'urlCreator' => function($action, Post $model, $key, $index, $column) { + $params = is_array($key) ? $key : ['id' => (string) $key, 'tid' => $model->type_id]; + $params[0] = $column->controller ? $column->controller . '/' . $action : $action; + return \yii\helpers\Url::toRoute($params); + }, + 'options' => ['style' => 'width: 100px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + ], + ]); ?> +
+
+
diff --git a/backend/views/post/articles/update.php b/backend/views/post/articles/update.php new file mode 100644 index 0000000..68c9542 --- /dev/null +++ b/backend/views/post/articles/update.php @@ -0,0 +1,20 @@ + \yii\helpers\StringHelper::truncateWords($post->title, 6, '...')]); +$this->title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', $type->plural), 'url' => ['index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = ['label' => $type->singular, 'url' => ['view', 'id' => $post->id]]; +$this->params['breadcrumbs'][] = Yii::t('buttons', 'Editing'); +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/post/articles/view.php b/backend/views/post/articles/view.php new file mode 100644 index 0000000..e566461 --- /dev/null +++ b/backend/views/post/articles/view.php @@ -0,0 +1,139 @@ +title; +$this->title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', $type->plural), 'url' => ['index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = $type->singular; +?> +
+ +

+ $type->id], ['class' => 'btn btn-default']) ?> + isActive()): ?> + $post->id], ['class' => 'btn btn-primary', 'data-method' => 'post']) ?> + + $post->id], ['class' => 'btn btn-success', 'data-method' => 'post']) ?> + + $post->id], ['class' => 'btn btn-primary']) ?> + $post->id], [ + 'class' => 'btn btn-danger', + 'data' => [ + 'confirm' => Yii::t('buttons', 'Are you sure you want to delete this item?'), + 'method' => 'post', + ], + ]) ?> +

+ +
+
+
+ $post, + 'attributes' => [ + 'id', + [ + 'attribute' => 'status', + 'value' => PostHelper::statusLabel($post->status), + 'format' => 'raw', + ], + 'title', + [ + 'attribute' => 'category_id', + 'value' => ArrayHelper::getValue($post, 'category.name'), + ], + [ + 'label' => Yii::t('post', 'Tags'), + 'value' => implode(', ', ArrayHelper::getColumn($post->tags, 'name')), + ], + ], + ]) ?> +
+
+ + image): ?> +
+
+
+ getThumbFileUrl('image', 'thumb_gallery_view'), [ + 'class' => 'thumbnail', + 'width' => 300, + ]) ?> +
+
+ + + image && $post->video): ?> +
+
+
+ video) . '/maxresdefault.jpg', [ + 'width' => 300, + 'class' => 'thumbnail', + ]) ?> +
+
+ + + video): ?> +
+
+
+ +
+
+ + +
+
+
+ formatter->asNtext($post->description) ?> +
+
+ +
+
+
+ formatter->asHtml($post->content, [ + 'Attr.AllowedRel' => array('nofollow'), + 'HTML.SafeObject' => true, + 'Output.FlashCompat' => true, + 'HTML.SafeIframe' => true, + 'URI.SafeIframeRegexp'=>'%^(https?:)?//(www\.youtube(?:-nocookie)?\.com/embed/|player\.vimeo\.com/video/)%', + ]) ?> +
+
+ +
+
+
+ $post, + 'attributes' => [ + [ + 'attribute' => 'meta.title', + 'value' => $post->meta->title, + ], + [ + 'attribute' => 'meta.description', + 'value' => $post->meta->description, + ], + [ + 'attribute' => 'meta.keywords', + 'value' => $post->meta->keywords, + ], + ], + ]) ?> +
+
+ +
diff --git a/backend/views/post/blog/_form.php b/backend/views/post/blog/_form.php new file mode 100644 index 0000000..740b8aa --- /dev/null +++ b/backend/views/post/blog/_form.php @@ -0,0 +1,139 @@ +_post)) { + $tagsJson = \yii\helpers\Json::encode( \yii\helpers\Json::encode( \yii\helpers\ArrayHelper::map( $model->_post->tags, 'id', 'name' ) ) ); + + $js = <<"+value+""); + }); + $('#posttagform-new_tags').trigger('change'); +JS; + $this->registerJs( $js, $this::POS_READY ); +} +?> + +
+ + ['enctype'=>'multipart/form-data'] + ]); ?> + +
+
+
+
+
+ field($model, 'category_id')->dropDownList($model->categoriesList($model->type_id), ['prompt' => '']) ?> + field($model, 'published_at')->widget(\kartik\widgets\DateTimePicker::classname(), [ + 'options' => [], + 'pluginOptions' => [ + 'autoclose' => true, + 'format' => 'dd.mm.yyyy hh:ii:ss', + ] + ]); ?> +
+
+
+
+
+
+
+ field($model->tags, 'new_tags')->widget(\kartik\widgets\Select2::classname(), [ + 'options' => [ + 'placeholder' => Yii::t('post','Set tags...'), + 'multiple' => true, + ], + 'pluginOptions' => [ + 'tags' => true, + 'tokenSeparators' => [',', ' '], + 'maximumInputLength' => 12, + 'ajax' => [ + 'url' => $fetchUrl, + 'dataType' => 'json', + 'data' => new JsExpression('function(params) { return {q:params.term, type_id:' . $model->type_id . '}; }') + ], + 'escapeMarkup' => new JsExpression('function (markup) { return markup; }'), + 'templateResult' => new JsExpression('function(tag) { return tag.text; }'), + 'templateSelection' => new JsExpression('function (tag) { return tag.text; }'), + ], + ])->label(false); ?> +
+
+
+
+ +
+
+ field($model, 'title')->textInput(['maxlength' => true]) ?> + field($model, 'slug')->textInput(['maxlength' => true]) ?> + field($model, 'description')->textarea(['rows' => 5]) ?> + field($model, 'content')->widget(CKEditor::className()) ?> +
+
+ +
+
+ + + +
+
+ field($model, 'image')->label(false)->widget(FileInput::class, [ + 'options' => [ + 'accept' => 'image/*', + ], + 'pluginOptions' => [ + 'showUpload' => false, + ], + ]) ?> + + _post) && $model->_post->image): ?> + _post->getThumbFileUrl('image', 'thumb_gallery_view'), [ + 'class' => 'thumbnail', + 'width' => 300, + ]) ?> + + field($model, 'reset_image')->checkbox() ?> + +
+
+ field($model, 'video')->textInput()->label(Yii::t('post', 'YouTube URL'))->hint(Yii::t('post', 'If a video link is specified, the image will be used as a preview image')) ?> +
+
+ +
+
+ +
+
+
+ field($model->meta, 'title')->textInput() ?> + field($model->meta, 'description')->textarea(['rows' => 2]) ?> + field($model->meta, 'keywords')->textInput() ?> +
+
+ +
+ 'btn btn-success']) ?> +
+ + + +
diff --git a/backend/views/post/blog/create.php b/backend/views/post/blog/create.php new file mode 100644 index 0000000..4720fde --- /dev/null +++ b/backend/views/post/blog/create.php @@ -0,0 +1,18 @@ +title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', $type->plural), 'url' => ['index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = $title; +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/post/blog/index.php b/backend/views/post/blog/index.php new file mode 100644 index 0000000..f371c20 --- /dev/null +++ b/backend/views/post/blog/index.php @@ -0,0 +1,83 @@ +title = $type->plural .' > '. $title; +$this->params['breadcrumbs'][] = $title; +?> +
+ +

+ $type->id], ['class' => 'btn btn-success']) ?> +

+ +
+
+ $dataProvider, + 'filterModel' => $searchModel, + 'columns' => [ + /*[ + 'value' => function (Post $model) { + return $model->image ? Html::img($model->getThumbFileUrl('image', 'admin')) : null; + }, + 'format' => 'raw', + 'contentOptions' => ['style' => 'width: 100px'], + ],*/ + [ + 'attribute' => 'id', + 'options' => ['style' => 'width: 40px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'attribute' => 'title', + 'value' => function (Post $model) { + return Html::a(Html::encode($model->title), ['view', 'id' => $model->id]); + }, + 'format' => 'raw', + ], + [ + 'attribute' => 'category_id', + 'filter' => $searchModel->categoriesList(), + 'value' => 'category.name', + ], + [ + 'attribute' => 'published_at', + 'format' => ['datetime', 'php:d.m.Y H:i'], + 'options' => ['style' => 'width: 60px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'attribute' => 'status', + 'filter' => $searchModel->statusList(), + 'value' => function (Post $model) { + return PostHelper::statusLabel($model->status); + }, + 'format' => 'raw', + 'options' => ['style' => 'width: 120px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'class' => \yii\grid\ActionColumn::class, + 'urlCreator' => function($action, Post $model, $key, $index, $column) { + $params = is_array($key) ? $key : ['id' => (string) $key, 'tid' => $model->type_id]; + $params[0] = $column->controller ? $column->controller . '/' . $action : $action; + return \yii\helpers\Url::toRoute($params); + }, + 'options' => ['style' => 'width: 100px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + ], + ]); ?> +
+
+
diff --git a/backend/views/post/blog/update.php b/backend/views/post/blog/update.php new file mode 100644 index 0000000..68c9542 --- /dev/null +++ b/backend/views/post/blog/update.php @@ -0,0 +1,20 @@ + \yii\helpers\StringHelper::truncateWords($post->title, 6, '...')]); +$this->title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', $type->plural), 'url' => ['index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = ['label' => $type->singular, 'url' => ['view', 'id' => $post->id]]; +$this->params['breadcrumbs'][] = Yii::t('buttons', 'Editing'); +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/post/blog/view.php b/backend/views/post/blog/view.php new file mode 100644 index 0000000..e566461 --- /dev/null +++ b/backend/views/post/blog/view.php @@ -0,0 +1,139 @@ +title; +$this->title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', $type->plural), 'url' => ['index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = $type->singular; +?> +
+ +

+ $type->id], ['class' => 'btn btn-default']) ?> + isActive()): ?> + $post->id], ['class' => 'btn btn-primary', 'data-method' => 'post']) ?> + + $post->id], ['class' => 'btn btn-success', 'data-method' => 'post']) ?> + + $post->id], ['class' => 'btn btn-primary']) ?> + $post->id], [ + 'class' => 'btn btn-danger', + 'data' => [ + 'confirm' => Yii::t('buttons', 'Are you sure you want to delete this item?'), + 'method' => 'post', + ], + ]) ?> +

+ +
+
+
+ $post, + 'attributes' => [ + 'id', + [ + 'attribute' => 'status', + 'value' => PostHelper::statusLabel($post->status), + 'format' => 'raw', + ], + 'title', + [ + 'attribute' => 'category_id', + 'value' => ArrayHelper::getValue($post, 'category.name'), + ], + [ + 'label' => Yii::t('post', 'Tags'), + 'value' => implode(', ', ArrayHelper::getColumn($post->tags, 'name')), + ], + ], + ]) ?> +
+
+ + image): ?> +
+
+
+ getThumbFileUrl('image', 'thumb_gallery_view'), [ + 'class' => 'thumbnail', + 'width' => 300, + ]) ?> +
+
+ + + image && $post->video): ?> +
+
+
+ video) . '/maxresdefault.jpg', [ + 'width' => 300, + 'class' => 'thumbnail', + ]) ?> +
+
+ + + video): ?> +
+
+
+ +
+
+ + +
+
+
+ formatter->asNtext($post->description) ?> +
+
+ +
+
+
+ formatter->asHtml($post->content, [ + 'Attr.AllowedRel' => array('nofollow'), + 'HTML.SafeObject' => true, + 'Output.FlashCompat' => true, + 'HTML.SafeIframe' => true, + 'URI.SafeIframeRegexp'=>'%^(https?:)?//(www\.youtube(?:-nocookie)?\.com/embed/|player\.vimeo\.com/video/)%', + ]) ?> +
+
+ +
+
+
+ $post, + 'attributes' => [ + [ + 'attribute' => 'meta.title', + 'value' => $post->meta->title, + ], + [ + 'attribute' => 'meta.description', + 'value' => $post->meta->description, + ], + [ + 'attribute' => 'meta.keywords', + 'value' => $post->meta->keywords, + ], + ], + ]) ?> +
+
+ +
diff --git a/backend/views/post/category/_form.php b/backend/views/post/category/_form.php new file mode 100644 index 0000000..e629333 --- /dev/null +++ b/backend/views/post/category/_form.php @@ -0,0 +1,54 @@ + + +
+ + + +
+
+
+ +
+
+ field($model, 'sort')->textInput(['maxlength' => true]) ?> +
+
+ field($model, 'name')->textInput(['maxlength' => true]) ?> +
+
+ field($model, 'slug')->textInput(['maxlength' => true]) ?> +
+
+ + + field($model, 'title')->textInput(['maxlength' => true]) ?> + field($model, 'description')->widget(CKEditor::className()) ?> + +
+
+ +
+
+
+ field($model->meta, 'title')->textInput() ?> + field($model->meta, 'description')->textarea(['rows' => 2]) ?> + field($model->meta, 'keywords')->textInput() ?> +
+
+ +
+ 'btn btn-success']) ?> +
+ + + +
diff --git a/backend/views/post/category/create.php b/backend/views/post/category/create.php new file mode 100644 index 0000000..b1e5c91 --- /dev/null +++ b/backend/views/post/category/create.php @@ -0,0 +1,18 @@ +title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', 'Categories'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = $title; +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/post/category/index.php b/backend/views/post/category/index.php new file mode 100644 index 0000000..74744e4 --- /dev/null +++ b/backend/views/post/category/index.php @@ -0,0 +1,55 @@ +title = $type->plural .' > '. $title; +$this->params['breadcrumbs'][] = $title; +?> +
+ +

+ $type->id], ['class' => 'btn btn-success']) ?> +

+ +
+
+ $dataProvider, + 'filterModel' => $searchModel, + 'columns' => [ + [ + 'attribute' => 'sort', + 'options' => ['style' => 'width: 100px;'], + ], + [ + 'attribute' => 'name', + 'value' => function (PostCategory $model) { + return Html::a(Html::encode($model->name), ['view', 'id' => $model->id]); + }, + 'format' => 'raw', + ], + [ + 'attribute' => 'slug', + ], + [ + 'attribute' => 'title', + ], + [ + 'class' => ActionColumn::class, + 'options' => ['style' => 'width: 100px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + ], + ]); ?> +
+
+
diff --git a/backend/views/post/category/update.php b/backend/views/post/category/update.php new file mode 100644 index 0000000..822f9bb --- /dev/null +++ b/backend/views/post/category/update.php @@ -0,0 +1,20 @@ + $category->name]); +$this->title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', 'Categories'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = ['label' => $category->name, 'url' => ['view', 'id' => $category->id]]; +$this->params['breadcrumbs'][] = Yii::t('buttons', 'Editing'); +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/post/category/view.php b/backend/views/post/category/view.php new file mode 100644 index 0000000..c0832ff --- /dev/null +++ b/backend/views/post/category/view.php @@ -0,0 +1,71 @@ +name; +$this->title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', 'Categories'), 'url' => ['index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = $title; +?> +
+ +

+ $type->id], ['class' => 'btn btn-default']) ?> + $category->id], ['class' => 'btn btn-primary']) ?> + $category->id], [ + 'class' => 'btn btn-danger', + 'data' => [ + 'confirm' => Yii::t('buttons', 'Are you sure you want to delete this item?'), + 'method' => 'post', + ], + ]) ?> +

+ +
+
+
+ $category, + 'attributes' => [ + 'id', + 'name', + 'slug', + 'title', + 'sort', + ], + ]) ?> +
+
+ +
+
+
+ formatter->asHtml($category->description, [ + 'Attr.AllowedRel' => array('nofollow'), + 'HTML.SafeObject' => true, + 'Output.FlashCompat' => true, + 'HTML.SafeIframe' => true, + 'URI.SafeIframeRegexp'=>'%^(https?:)?//(www\.youtube(?:-nocookie)?\.com/embed/|player\.vimeo\.com/video/)%', + ]) ?> +
+
+ +
+
+
+ $category, + 'attributes' => [ + 'meta.title', + 'meta.description', + 'meta.keywords', + ], + ]) ?> +
+
+
diff --git a/backend/views/post/comment/index.php b/backend/views/post/comment/index.php new file mode 100644 index 0000000..5c9bee6 --- /dev/null +++ b/backend/views/post/comment/index.php @@ -0,0 +1,54 @@ +title = Yii::t('post', 'Comments'); +$this->params['breadcrumbs'][] = $this->title; +?> +
+
+
+ $dataProvider, + 'filterModel' => $searchModel, + 'columns' => [ + [ + 'attribute' => 'id', + 'options' => ['style' => 'width: 40px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'attribute' => 'text', + 'value' => function (PostComment $model) { + return StringHelper::truncate(strip_tags($model->text), 100); + }, + ], + [ + 'attribute' => 'created_at', + 'format' => ['datetime', 'php:d.m.Y H:i'], + 'options' => ['style' => 'width: 60px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'attribute' => 'active', + 'filter' => $searchModel->activeList(), + 'format' => 'boolean', + 'contentOptions' => ['style' => 'width: 150px'], + ], + [ + 'class' => ActionColumn::class, + 'options' => ['style' => 'width: 100px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + ], + ]); ?> +
+
+
diff --git a/backend/views/post/comment/update.php b/backend/views/post/comment/update.php new file mode 100644 index 0000000..6d5463f --- /dev/null +++ b/backend/views/post/comment/update.php @@ -0,0 +1,34 @@ +title = Yii::t('post', 'Update Post Comment: {name}', ['name' => $post->title]); +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', 'Comment'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = ['label' => $post->title, 'url' => ['view', 'id' => $post->id]]; +$this->params['breadcrumbs'][] = Yii::t('buttons', 'Editing'); +?> +
+ + ['enctype'=>'multipart/form-data'] + ]); ?> + +
+
+
+ field($model, 'parentId')->textInput() ?> + field($model, 'text')->textarea(['rows' => 20]) ?> +
+
+ +
+ 'btn btn-success']) ?> +
+ + +
diff --git a/backend/views/post/comment/view.php b/backend/views/post/comment/view.php new file mode 100644 index 0000000..cb58b5e --- /dev/null +++ b/backend/views/post/comment/view.php @@ -0,0 +1,70 @@ +title = $post->title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', 'Comments'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = $this->title; +?> +
+ +

+ 'btn btn-default']) ?> + $post->id, 'id' => $comment->id], ['class' => 'btn btn-primary']) ?> + isActive()): ?> + $post->id, 'id' => $comment->id], [ + 'class' => 'btn btn-danger', + 'data' => [ + 'confirm' => Yii::t('buttons', 'Are you sure you want to delete this item?'), + 'method' => 'post', + ], + ]) ?> + + $post->id, 'id' => $comment->id], [ + 'class' => 'btn btn-success', + 'data' => [ + 'confirm' => Yii::t('buttons', 'Are you sure you want to activate this item?'), + 'method' => 'post', + ], + ]) ?> + +

+ +
+
+ $comment, + 'attributes' => [ + 'id', + 'created_at:boolean', + 'active:boolean', + [ + 'attribute' => 'user_id', + 'value' => function(\core\entities\post\PostComment $comment) { + return User::findOne($comment->user_id)->username; + }, + ], + 'parent_id', + [ + 'attribute' => 'post_id', + 'value' => $post->title, + ], + ], + ]) ?> +
+
+ +
+
+ formatter->asNtext($comment->text) ?> +
+
+ +
diff --git a/backend/views/post/gallery/_form.php b/backend/views/post/gallery/_form.php new file mode 100644 index 0000000..f0dc7cf --- /dev/null +++ b/backend/views/post/gallery/_form.php @@ -0,0 +1,139 @@ +_post)) { + $tagsJson = \yii\helpers\Json::encode( \yii\helpers\Json::encode( \yii\helpers\ArrayHelper::map( $model->_post->tags, 'id', 'name' ) ) ); + + $js = <<"+value+""); + }); + $('#posttagform-new_tags').trigger('change'); +JS; + $this->registerJs( $js, $this::POS_READY ); +} +?> + +
+ + ['enctype'=>'multipart/form-data'] + ]); ?> + +
+
+
+
+
+ field($model, 'category_id')->dropDownList($model->categoriesList($model->type_id), ['prompt' => '']) ?> + field($model, 'published_at')->widget(\kartik\widgets\DateTimePicker::classname(), [ + 'options' => [], + 'pluginOptions' => [ + 'autoclose' => true, + 'format' => 'dd.mm.yyyy hh:ii:ss', + ] + ]); ?> +
+
+
+
+
+
+
+ field($model->tags, 'new_tags')->widget(\kartik\widgets\Select2::classname(), [ + 'options' => [ + 'placeholder' => Yii::t('post','Set tags...'), + 'multiple' => true, + ], + 'pluginOptions' => [ + 'tags' => true, + 'tokenSeparators' => [',', ' '], + 'maximumInputLength' => 12, + 'ajax' => [ + 'url' => $fetchUrl, + 'dataType' => 'json', + 'data' => new JsExpression('function(params) { return {q:params.term, type_id:' . $model->type_id . '}; }') + ], + 'escapeMarkup' => new JsExpression('function (markup) { return markup; }'), + 'templateResult' => new JsExpression('function(tag) { return tag.text; }'), + 'templateSelection' => new JsExpression('function (tag) { return tag.text; }'), + ], + ])->label(false); ?> +
+
+
+
+ + +
+
+ + + +
+
+ field($model, 'image')->label(false)->widget(FileInput::class, [ + 'options' => [ + 'accept' => 'image/*', + ], + 'pluginOptions' => [ + 'showUpload' => false, + ], + ]) ?> + + _post) && $model->_post->image): ?> + _post->getThumbFileUrl('image', 'thumb_gallery_view'), [ + 'class' => 'thumbnail', + 'width' => 300, + ]) ?> + + field($model, 'reset_image')->checkbox() ?> + +
+
+ field($model, 'video')->textInput()->label(Yii::t('post', 'YouTube URL'))->hint(Yii::t('post', 'If a video link is specified, the image will be used as a preview image')) ?> +
+
+ +
+
+ + +
+
+ field($model, 'title')->textInput(['maxlength' => true]) ?> + field($model, 'slug')->textInput(['maxlength' => true]) ?> + field($model, 'description')->textarea(['rows' => 5]) ?> +
+
+ +
+
+
+ field($model->meta, 'title')->textInput() ?> + field($model->meta, 'description')->textarea(['rows' => 2]) ?> + field($model->meta, 'keywords')->textInput() ?> +
+
+ +
+ 'btn btn-success']) ?> +
+ + + +
diff --git a/backend/views/post/gallery/create.php b/backend/views/post/gallery/create.php new file mode 100644 index 0000000..e27fe92 --- /dev/null +++ b/backend/views/post/gallery/create.php @@ -0,0 +1,18 @@ +title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', 'Gallery'), 'url' => ['index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = $title; +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/post/gallery/index.php b/backend/views/post/gallery/index.php new file mode 100644 index 0000000..f371c20 --- /dev/null +++ b/backend/views/post/gallery/index.php @@ -0,0 +1,83 @@ +title = $type->plural .' > '. $title; +$this->params['breadcrumbs'][] = $title; +?> +
+ +

+ $type->id], ['class' => 'btn btn-success']) ?> +

+ +
+
+ $dataProvider, + 'filterModel' => $searchModel, + 'columns' => [ + /*[ + 'value' => function (Post $model) { + return $model->image ? Html::img($model->getThumbFileUrl('image', 'admin')) : null; + }, + 'format' => 'raw', + 'contentOptions' => ['style' => 'width: 100px'], + ],*/ + [ + 'attribute' => 'id', + 'options' => ['style' => 'width: 40px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'attribute' => 'title', + 'value' => function (Post $model) { + return Html::a(Html::encode($model->title), ['view', 'id' => $model->id]); + }, + 'format' => 'raw', + ], + [ + 'attribute' => 'category_id', + 'filter' => $searchModel->categoriesList(), + 'value' => 'category.name', + ], + [ + 'attribute' => 'published_at', + 'format' => ['datetime', 'php:d.m.Y H:i'], + 'options' => ['style' => 'width: 60px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'attribute' => 'status', + 'filter' => $searchModel->statusList(), + 'value' => function (Post $model) { + return PostHelper::statusLabel($model->status); + }, + 'format' => 'raw', + 'options' => ['style' => 'width: 120px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'class' => \yii\grid\ActionColumn::class, + 'urlCreator' => function($action, Post $model, $key, $index, $column) { + $params = is_array($key) ? $key : ['id' => (string) $key, 'tid' => $model->type_id]; + $params[0] = $column->controller ? $column->controller . '/' . $action : $action; + return \yii\helpers\Url::toRoute($params); + }, + 'options' => ['style' => 'width: 100px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + ], + ]); ?> +
+
+
diff --git a/backend/views/post/gallery/update.php b/backend/views/post/gallery/update.php new file mode 100644 index 0000000..690eec0 --- /dev/null +++ b/backend/views/post/gallery/update.php @@ -0,0 +1,20 @@ + \yii\helpers\StringHelper::truncateWords($post->title, 6, '...')]); +$this->title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', $type->plural), 'url' => ['index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = ['label' => $post->title, 'url' => ['view', 'id' => $post->id]]; +$this->params['breadcrumbs'][] = Yii::t('buttons', 'Editing'); +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/post/gallery/view.php b/backend/views/post/gallery/view.php new file mode 100644 index 0000000..827a69e --- /dev/null +++ b/backend/views/post/gallery/view.php @@ -0,0 +1,126 @@ +title; +$this->title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', 'Gallery'), 'url' => ['index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = $title; +?> +
+ +

+ $type->id], ['class' => 'btn btn-default']) ?> + isActive()): ?> + $post->id], ['class' => 'btn btn-primary', 'data-method' => 'post']) ?> + + $post->id], ['class' => 'btn btn-success', 'data-method' => 'post']) ?> + + $post->id], ['class' => 'btn btn-primary']) ?> + $post->id], [ + 'class' => 'btn btn-danger', + 'data' => [ + 'confirm' => Yii::t('buttons', 'Are you sure you want to delete this item?'), + 'method' => 'post', + ], + ]) ?> +

+ +
+
+
+ $post, + 'attributes' => [ + 'id', + [ + 'attribute' => 'status', + 'value' => PostHelper::statusLabel($post->status), + 'format' => 'raw', + ], + 'title', + [ + 'attribute' => 'category_id', + 'value' => ArrayHelper::getValue($post, 'category.name'), + ], + [ + 'label' => Yii::t('post', 'Tags'), + 'value' => implode(', ', ArrayHelper::getColumn($post->tags, 'name')), + ], + ], + ]) ?> +
+
+ + image): ?> +
+
+
+ getThumbFileUrl('image', 'thumb_gallery_view'), [ + 'class' => 'thumbnail', + 'width' => 300, + ]) ?> +
+
+ + + image && $post->video): ?> +
+
+
+ video) . '/maxresdefault.jpg', [ + 'width' => 300, + 'class' => 'thumbnail', + ]) ?> +
+
+ + + video): ?> +
+
+
+ +
+
+ + +
+
+
+ formatter->asNtext($post->description) ?> +
+
+ +
+
+
+ $post, + 'attributes' => [ + [ + 'attribute' => 'meta.title', + 'value' => $post->meta->title, + ], + [ + 'attribute' => 'meta.description', + 'value' => $post->meta->description, + ], + [ + 'attribute' => 'meta.keywords', + 'value' => $post->meta->keywords, + ], + ], + ]) ?> +
+
+ +
diff --git a/backend/views/post/news/_form.php b/backend/views/post/news/_form.php new file mode 100644 index 0000000..81e597d --- /dev/null +++ b/backend/views/post/news/_form.php @@ -0,0 +1,140 @@ +_post)) { + $tagsJson = \yii\helpers\Json::encode( \yii\helpers\Json::encode( \yii\helpers\ArrayHelper::map( $model->_post->tags, 'id', 'name' ) ) ); + + $js = <<"+value+""); + }); + $('#posttagform-new_tags').trigger('change'); +JS; + $this->registerJs( $js, $this::POS_READY ); +} +?> + +
+ + ['enctype'=>'multipart/form-data'] + ]); ?> + +
+
+
+
+
+ field($model, 'category_id')->dropDownList($model->categoriesList($model->type_id), ['prompt' => '']) ?> + field($model, 'published_at')->widget(\kartik\widgets\DateTimePicker::classname(), [ + 'options' => [], + 'pluginOptions' => [ + 'autoclose' => true, + 'format' => 'dd.mm.yyyy hh:ii:ss', + ] + ]); ?> +
+
+
+
+
+
+
+ field($model->tags, 'new_tags')->widget(\kartik\widgets\Select2::classname(), [ + 'options' => [ + 'placeholder' => Yii::t('post','Set tags...'), + 'multiple' => true, + ], + 'pluginOptions' => [ + 'tags' => true, + 'tokenSeparators' => [',', ' '], + 'maximumInputLength' => 12, + 'ajax' => [ + 'url' => $fetchUrl, + 'dataType' => 'json', + 'data' => new JsExpression('function(params) { return {q:params.term, type_id:' . $model->type_id . '}; }') + ], + 'escapeMarkup' => new JsExpression('function (markup) { return markup; }'), + 'templateResult' => new JsExpression('function(tag) { return tag.text; }'), + 'templateSelection' => new JsExpression('function (tag) { return tag.text; }'), + ], + ])->label(false); ?> +
+
+
+
+ +
+
+ field($model, 'title')->textInput(['maxlength' => true]) ?> + field($model, 'slug')->textInput(['maxlength' => true]) ?> + field($model, 'description')->textarea(['rows' => 5]) ?> + field($model, 'content')->widget(CKEditor::className()) ?> +
+
+ +
+
+ + + +
+
+ field($model, 'image')->label(false)->widget(FileInput::class, [ + 'options' => [ + 'accept' => 'image/*', + ], + 'pluginOptions' => [ + 'showUpload' => false, + ], + ]) ?> + + _post) && $model->_post->image): ?> + _post->getThumbFileUrl('image', 'thumb_gallery_view'), [ + 'class' => 'thumbnail', + 'width' => 300, + ]) ?> + + field($model, 'reset_image')->checkbox() ?> + +
+
+ field($model, 'video')->textInput()->label(Yii::t('post', 'YouTube URL'))->hint(Yii::t('post', 'If a video link is specified, the image will be used as a preview image')) ?> +
+
+ +
+
+ +
+
+
+ field($model->meta, 'title')->textInput() ?> + field($model->meta, 'description')->textarea(['rows' => 2]) ?> + field($model->meta, 'keywords')->textInput() ?> +
+
+ +
+ 'btn btn-success']) ?> +
+ + + +
diff --git a/backend/views/post/news/create.php b/backend/views/post/news/create.php new file mode 100644 index 0000000..4720fde --- /dev/null +++ b/backend/views/post/news/create.php @@ -0,0 +1,18 @@ +title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', $type->plural), 'url' => ['index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = $title; +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/post/news/index.php b/backend/views/post/news/index.php new file mode 100644 index 0000000..f371c20 --- /dev/null +++ b/backend/views/post/news/index.php @@ -0,0 +1,83 @@ +title = $type->plural .' > '. $title; +$this->params['breadcrumbs'][] = $title; +?> +
+ +

+ $type->id], ['class' => 'btn btn-success']) ?> +

+ +
+
+ $dataProvider, + 'filterModel' => $searchModel, + 'columns' => [ + /*[ + 'value' => function (Post $model) { + return $model->image ? Html::img($model->getThumbFileUrl('image', 'admin')) : null; + }, + 'format' => 'raw', + 'contentOptions' => ['style' => 'width: 100px'], + ],*/ + [ + 'attribute' => 'id', + 'options' => ['style' => 'width: 40px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'attribute' => 'title', + 'value' => function (Post $model) { + return Html::a(Html::encode($model->title), ['view', 'id' => $model->id]); + }, + 'format' => 'raw', + ], + [ + 'attribute' => 'category_id', + 'filter' => $searchModel->categoriesList(), + 'value' => 'category.name', + ], + [ + 'attribute' => 'published_at', + 'format' => ['datetime', 'php:d.m.Y H:i'], + 'options' => ['style' => 'width: 60px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'attribute' => 'status', + 'filter' => $searchModel->statusList(), + 'value' => function (Post $model) { + return PostHelper::statusLabel($model->status); + }, + 'format' => 'raw', + 'options' => ['style' => 'width: 120px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'class' => \yii\grid\ActionColumn::class, + 'urlCreator' => function($action, Post $model, $key, $index, $column) { + $params = is_array($key) ? $key : ['id' => (string) $key, 'tid' => $model->type_id]; + $params[0] = $column->controller ? $column->controller . '/' . $action : $action; + return \yii\helpers\Url::toRoute($params); + }, + 'options' => ['style' => 'width: 100px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + ], + ]); ?> +
+
+
diff --git a/backend/views/post/news/update.php b/backend/views/post/news/update.php new file mode 100644 index 0000000..68c9542 --- /dev/null +++ b/backend/views/post/news/update.php @@ -0,0 +1,20 @@ + \yii\helpers\StringHelper::truncateWords($post->title, 6, '...')]); +$this->title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', $type->plural), 'url' => ['index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = ['label' => $type->singular, 'url' => ['view', 'id' => $post->id]]; +$this->params['breadcrumbs'][] = Yii::t('buttons', 'Editing'); +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/post/news/view.php b/backend/views/post/news/view.php new file mode 100644 index 0000000..e566461 --- /dev/null +++ b/backend/views/post/news/view.php @@ -0,0 +1,139 @@ +title; +$this->title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', $type->plural), 'url' => ['index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = $type->singular; +?> +
+ +

+ $type->id], ['class' => 'btn btn-default']) ?> + isActive()): ?> + $post->id], ['class' => 'btn btn-primary', 'data-method' => 'post']) ?> + + $post->id], ['class' => 'btn btn-success', 'data-method' => 'post']) ?> + + $post->id], ['class' => 'btn btn-primary']) ?> + $post->id], [ + 'class' => 'btn btn-danger', + 'data' => [ + 'confirm' => Yii::t('buttons', 'Are you sure you want to delete this item?'), + 'method' => 'post', + ], + ]) ?> +

+ +
+
+
+ $post, + 'attributes' => [ + 'id', + [ + 'attribute' => 'status', + 'value' => PostHelper::statusLabel($post->status), + 'format' => 'raw', + ], + 'title', + [ + 'attribute' => 'category_id', + 'value' => ArrayHelper::getValue($post, 'category.name'), + ], + [ + 'label' => Yii::t('post', 'Tags'), + 'value' => implode(', ', ArrayHelper::getColumn($post->tags, 'name')), + ], + ], + ]) ?> +
+
+ + image): ?> +
+
+
+ getThumbFileUrl('image', 'thumb_gallery_view'), [ + 'class' => 'thumbnail', + 'width' => 300, + ]) ?> +
+
+ + + image && $post->video): ?> +
+
+
+ video) . '/maxresdefault.jpg', [ + 'width' => 300, + 'class' => 'thumbnail', + ]) ?> +
+
+ + + video): ?> +
+
+
+ +
+
+ + +
+
+
+ formatter->asNtext($post->description) ?> +
+
+ +
+
+
+ formatter->asHtml($post->content, [ + 'Attr.AllowedRel' => array('nofollow'), + 'HTML.SafeObject' => true, + 'Output.FlashCompat' => true, + 'HTML.SafeIframe' => true, + 'URI.SafeIframeRegexp'=>'%^(https?:)?//(www\.youtube(?:-nocookie)?\.com/embed/|player\.vimeo\.com/video/)%', + ]) ?> +
+
+ +
+
+
+ $post, + 'attributes' => [ + [ + 'attribute' => 'meta.title', + 'value' => $post->meta->title, + ], + [ + 'attribute' => 'meta.description', + 'value' => $post->meta->description, + ], + [ + 'attribute' => 'meta.keywords', + 'value' => $post->meta->keywords, + ], + ], + ]) ?> +
+
+ +
diff --git a/backend/views/post/post/_form.php b/backend/views/post/post/_form.php new file mode 100644 index 0000000..740b8aa --- /dev/null +++ b/backend/views/post/post/_form.php @@ -0,0 +1,139 @@ +_post)) { + $tagsJson = \yii\helpers\Json::encode( \yii\helpers\Json::encode( \yii\helpers\ArrayHelper::map( $model->_post->tags, 'id', 'name' ) ) ); + + $js = <<"+value+""); + }); + $('#posttagform-new_tags').trigger('change'); +JS; + $this->registerJs( $js, $this::POS_READY ); +} +?> + +
+ + ['enctype'=>'multipart/form-data'] + ]); ?> + +
+
+
+
+
+ field($model, 'category_id')->dropDownList($model->categoriesList($model->type_id), ['prompt' => '']) ?> + field($model, 'published_at')->widget(\kartik\widgets\DateTimePicker::classname(), [ + 'options' => [], + 'pluginOptions' => [ + 'autoclose' => true, + 'format' => 'dd.mm.yyyy hh:ii:ss', + ] + ]); ?> +
+
+
+
+
+
+
+ field($model->tags, 'new_tags')->widget(\kartik\widgets\Select2::classname(), [ + 'options' => [ + 'placeholder' => Yii::t('post','Set tags...'), + 'multiple' => true, + ], + 'pluginOptions' => [ + 'tags' => true, + 'tokenSeparators' => [',', ' '], + 'maximumInputLength' => 12, + 'ajax' => [ + 'url' => $fetchUrl, + 'dataType' => 'json', + 'data' => new JsExpression('function(params) { return {q:params.term, type_id:' . $model->type_id . '}; }') + ], + 'escapeMarkup' => new JsExpression('function (markup) { return markup; }'), + 'templateResult' => new JsExpression('function(tag) { return tag.text; }'), + 'templateSelection' => new JsExpression('function (tag) { return tag.text; }'), + ], + ])->label(false); ?> +
+
+
+
+ +
+
+ field($model, 'title')->textInput(['maxlength' => true]) ?> + field($model, 'slug')->textInput(['maxlength' => true]) ?> + field($model, 'description')->textarea(['rows' => 5]) ?> + field($model, 'content')->widget(CKEditor::className()) ?> +
+
+ +
+
+ + + +
+
+ field($model, 'image')->label(false)->widget(FileInput::class, [ + 'options' => [ + 'accept' => 'image/*', + ], + 'pluginOptions' => [ + 'showUpload' => false, + ], + ]) ?> + + _post) && $model->_post->image): ?> + _post->getThumbFileUrl('image', 'thumb_gallery_view'), [ + 'class' => 'thumbnail', + 'width' => 300, + ]) ?> + + field($model, 'reset_image')->checkbox() ?> + +
+
+ field($model, 'video')->textInput()->label(Yii::t('post', 'YouTube URL'))->hint(Yii::t('post', 'If a video link is specified, the image will be used as a preview image')) ?> +
+
+ +
+
+ +
+
+
+ field($model->meta, 'title')->textInput() ?> + field($model->meta, 'description')->textarea(['rows' => 2]) ?> + field($model->meta, 'keywords')->textInput() ?> +
+
+ +
+ 'btn btn-success']) ?> +
+ + + +
diff --git a/backend/views/post/post/create.php b/backend/views/post/post/create.php new file mode 100644 index 0000000..4720fde --- /dev/null +++ b/backend/views/post/post/create.php @@ -0,0 +1,18 @@ +title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', $type->plural), 'url' => ['index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = $title; +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/post/post/index.php b/backend/views/post/post/index.php new file mode 100644 index 0000000..f371c20 --- /dev/null +++ b/backend/views/post/post/index.php @@ -0,0 +1,83 @@ +title = $type->plural .' > '. $title; +$this->params['breadcrumbs'][] = $title; +?> +
+ +

+ $type->id], ['class' => 'btn btn-success']) ?> +

+ +
+
+ $dataProvider, + 'filterModel' => $searchModel, + 'columns' => [ + /*[ + 'value' => function (Post $model) { + return $model->image ? Html::img($model->getThumbFileUrl('image', 'admin')) : null; + }, + 'format' => 'raw', + 'contentOptions' => ['style' => 'width: 100px'], + ],*/ + [ + 'attribute' => 'id', + 'options' => ['style' => 'width: 40px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'attribute' => 'title', + 'value' => function (Post $model) { + return Html::a(Html::encode($model->title), ['view', 'id' => $model->id]); + }, + 'format' => 'raw', + ], + [ + 'attribute' => 'category_id', + 'filter' => $searchModel->categoriesList(), + 'value' => 'category.name', + ], + [ + 'attribute' => 'published_at', + 'format' => ['datetime', 'php:d.m.Y H:i'], + 'options' => ['style' => 'width: 60px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'attribute' => 'status', + 'filter' => $searchModel->statusList(), + 'value' => function (Post $model) { + return PostHelper::statusLabel($model->status); + }, + 'format' => 'raw', + 'options' => ['style' => 'width: 120px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'class' => \yii\grid\ActionColumn::class, + 'urlCreator' => function($action, Post $model, $key, $index, $column) { + $params = is_array($key) ? $key : ['id' => (string) $key, 'tid' => $model->type_id]; + $params[0] = $column->controller ? $column->controller . '/' . $action : $action; + return \yii\helpers\Url::toRoute($params); + }, + 'options' => ['style' => 'width: 100px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + ], + ]); ?> +
+
+
diff --git a/backend/views/post/post/update.php b/backend/views/post/post/update.php new file mode 100644 index 0000000..68c9542 --- /dev/null +++ b/backend/views/post/post/update.php @@ -0,0 +1,20 @@ + \yii\helpers\StringHelper::truncateWords($post->title, 6, '...')]); +$this->title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', $type->plural), 'url' => ['index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = ['label' => $type->singular, 'url' => ['view', 'id' => $post->id]]; +$this->params['breadcrumbs'][] = Yii::t('buttons', 'Editing'); +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/post/post/view.php b/backend/views/post/post/view.php new file mode 100644 index 0000000..e566461 --- /dev/null +++ b/backend/views/post/post/view.php @@ -0,0 +1,139 @@ +title; +$this->title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', $type->plural), 'url' => ['index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = $type->singular; +?> +
+ +

+ $type->id], ['class' => 'btn btn-default']) ?> + isActive()): ?> + $post->id], ['class' => 'btn btn-primary', 'data-method' => 'post']) ?> + + $post->id], ['class' => 'btn btn-success', 'data-method' => 'post']) ?> + + $post->id], ['class' => 'btn btn-primary']) ?> + $post->id], [ + 'class' => 'btn btn-danger', + 'data' => [ + 'confirm' => Yii::t('buttons', 'Are you sure you want to delete this item?'), + 'method' => 'post', + ], + ]) ?> +

+ +
+
+
+ $post, + 'attributes' => [ + 'id', + [ + 'attribute' => 'status', + 'value' => PostHelper::statusLabel($post->status), + 'format' => 'raw', + ], + 'title', + [ + 'attribute' => 'category_id', + 'value' => ArrayHelper::getValue($post, 'category.name'), + ], + [ + 'label' => Yii::t('post', 'Tags'), + 'value' => implode(', ', ArrayHelper::getColumn($post->tags, 'name')), + ], + ], + ]) ?> +
+
+ + image): ?> +
+
+
+ getThumbFileUrl('image', 'thumb_gallery_view'), [ + 'class' => 'thumbnail', + 'width' => 300, + ]) ?> +
+
+ + + image && $post->video): ?> +
+
+
+ video) . '/maxresdefault.jpg', [ + 'width' => 300, + 'class' => 'thumbnail', + ]) ?> +
+
+ + + video): ?> +
+
+
+ +
+
+ + +
+
+
+ formatter->asNtext($post->description) ?> +
+
+ +
+
+
+ formatter->asHtml($post->content, [ + 'Attr.AllowedRel' => array('nofollow'), + 'HTML.SafeObject' => true, + 'Output.FlashCompat' => true, + 'HTML.SafeIframe' => true, + 'URI.SafeIframeRegexp'=>'%^(https?:)?//(www\.youtube(?:-nocookie)?\.com/embed/|player\.vimeo\.com/video/)%', + ]) ?> +
+
+ +
+
+
+ $post, + 'attributes' => [ + [ + 'attribute' => 'meta.title', + 'value' => $post->meta->title, + ], + [ + 'attribute' => 'meta.description', + 'value' => $post->meta->description, + ], + [ + 'attribute' => 'meta.keywords', + 'value' => $post->meta->keywords, + ], + ], + ]) ?> +
+
+ +
diff --git a/backend/views/post/tag/_form.php b/backend/views/post/tag/_form.php new file mode 100644 index 0000000..0a180ae --- /dev/null +++ b/backend/views/post/tag/_form.php @@ -0,0 +1,29 @@ + + +
+ + + +
+
+ field($model, 'name')->textInput(['maxlength' => true]) ?> + field($model, 'slug')->textInput(['maxlength' => true]) ?> + +
+
+ +
+ 'btn btn-success']) ?> +
+ + + +
diff --git a/backend/views/post/tag/create.php b/backend/views/post/tag/create.php new file mode 100644 index 0000000..2b5cf7d --- /dev/null +++ b/backend/views/post/tag/create.php @@ -0,0 +1,18 @@ +title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', 'Tags'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = $this->title; +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/post/tag/index.php b/backend/views/post/tag/index.php new file mode 100644 index 0000000..9a4d7c6 --- /dev/null +++ b/backend/views/post/tag/index.php @@ -0,0 +1,48 @@ +title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = $title; +?> +
+ +

+ $type->id], ['class' => 'btn btn-success']) ?> +

+ +
+
+ $dataProvider, + 'filterModel' => $searchModel, + 'columns' => [ + [ + 'attribute' => 'name', + 'value' => function (PostTag $model) { + return Html::a(Html::encode($model->name), ['view', 'id' => $model->id]); + }, + 'format' => 'raw', + ], + [ + 'attribute' => 'slug', + ], + [ + 'class' => ActionColumn::class, + 'options' => ['style' => 'width: 100px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + ], + ]); ?> +
+
+
diff --git a/backend/views/post/tag/update.php b/backend/views/post/tag/update.php new file mode 100644 index 0000000..52eae90 --- /dev/null +++ b/backend/views/post/tag/update.php @@ -0,0 +1,20 @@ + $tag->name]); +$this->title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', 'Tags'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = ['label' => $tag->name, 'url' => ['view', 'id' => $tag->id]]; +$this->params['breadcrumbs'][] = Yii::t('buttons', 'Editing'); +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/post/tag/view.php b/backend/views/post/tag/view.php new file mode 100644 index 0000000..df5c684 --- /dev/null +++ b/backend/views/post/tag/view.php @@ -0,0 +1,40 @@ +name; +$this->title = $type->plural . ' > ' . $title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', 'Tags'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = $title; +?> +
+ +

+ $type->id], ['class' => 'btn btn-default']) ?> + $tag->id], ['class' => 'btn btn-primary']) ?> + $tag->id], [ + 'class' => 'btn btn-danger', + 'data' => [ + 'confirm' => Yii::t('buttons', 'Are you sure you want to delete this item?'), + 'method' => 'post', + ], + ]) ?> +

+ +
+
+ $tag, + 'attributes' => [ + 'name', + 'slug', + ], + ]) ?> +
+
+
diff --git a/backend/views/post/type/_form.php b/backend/views/post/type/_form.php new file mode 100644 index 0000000..fd4fa17 --- /dev/null +++ b/backend/views/post/type/_form.php @@ -0,0 +1,38 @@ + + +
+ + + +
+
+ +
+
+ field($model, 'name')->textInput(['maxlength' => true]) ?> +
+
+ field($model, 'singular')->textInput(['maxlength' => true]) ?> +
+
+ field($model, 'plural')->textInput(['maxlength' => true]) ?> +
+
+
+
+ +
+ 'btn btn-success']) ?> +
+ + + +
diff --git a/backend/views/post/type/create.php b/backend/views/post/type/create.php new file mode 100644 index 0000000..5486987 --- /dev/null +++ b/backend/views/post/type/create.php @@ -0,0 +1,16 @@ +title = Yii::t('post', 'Create Type'); +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', 'Types'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = $this->title; +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/post/type/index.php b/backend/views/post/type/index.php new file mode 100644 index 0000000..d1f7075 --- /dev/null +++ b/backend/views/post/type/index.php @@ -0,0 +1,49 @@ +title = Yii::t('post', 'Types'); +$this->params['breadcrumbs'][] = $this->title; +?> +
+ +

+ 'btn btn-success']) ?> +

+ +
+
+ $dataProvider, + 'filterModel' => $searchModel, + 'columns' => [ + [ + 'attribute' => 'name', + 'value' => function (PostType $model) { + return Html::a(Html::encode($model->name), ['view', 'id' => $model->id]); + }, + 'format' => 'raw', + ], + [ + 'attribute' => 'singular', + ], + [ + 'attribute' => 'plural', + ], + [ + 'class' => ActionColumn::class, + 'options' => ['style' => 'width: 100px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + ], + ]); ?> +
+
+
diff --git a/backend/views/post/type/update.php b/backend/views/post/type/update.php new file mode 100644 index 0000000..e0ab680 --- /dev/null +++ b/backend/views/post/type/update.php @@ -0,0 +1,18 @@ +title = Yii::t('post', 'Update type: {name}', ['name' => $type->plural]); +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', 'Types'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = ['label' => $type->plural, 'url' => ['view', 'id' => $type->id]]; +$this->params['breadcrumbs'][] = Yii::t('buttons', 'Editing'); +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/post/type/view.php b/backend/views/post/type/view.php new file mode 100644 index 0000000..ca717d6 --- /dev/null +++ b/backend/views/post/type/view.php @@ -0,0 +1,41 @@ +title = $type->plural; +$this->params['breadcrumbs'][] = ['label' => Yii::t('post', 'Types'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = $this->title +?> +
+ +

+ 'btn btn-default']) ?> + $type->id], ['class' => 'btn btn-primary']) ?> + $type->id], [ + 'class' => 'btn btn-danger', + 'data' => [ + 'confirm' => Yii::t('buttons', 'Are you sure you want to delete this item?'), + 'method' => 'post', + ], + ]) ?> +

+ +
+
+ $type, + 'attributes' => [ + 'id', + 'name', + 'singular', + 'plural', + ], + ]) ?> +
+
+ +
diff --git a/backend/views/role/create.php b/backend/views/role/create.php new file mode 100644 index 0000000..6004538 --- /dev/null +++ b/backend/views/role/create.php @@ -0,0 +1,32 @@ +title = Yii::t('user', 'Create Role'); +$this->params['breadcrumbs'][] = ['label' => Yii::t('user', 'Roles'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = $this->title; +?> +
+ + + +
+
+ field($model, 'name')->textInput(['maxLength' => true]) ?> + field($model, 'description')->textarea() ?> + field($model, 'rule_name')->textInput(['maxLength' => true]) ?> + field($model, 'data')->textarea() ?> +
+
+ +
+ 'btn btn-primary']) ?> +
+ + + +
\ No newline at end of file diff --git a/backend/views/role/index.php b/backend/views/role/index.php new file mode 100644 index 0000000..d6b8dd3 --- /dev/null +++ b/backend/views/role/index.php @@ -0,0 +1,42 @@ +title = Yii::t('user', 'Roles'); +$this->params['breadcrumbs'][] = $this->title; +?> +
+ +

+ 'btn btn-success']) ?> +

+ +
+
+ $dataProvider, + 'columns' => [ + [ + 'attribute' => 'name', + 'label' => Yii::t('user', 'Role Name'), + ], + [ + 'attribute' => 'description', + 'label' => Yii::t('user', 'Role Description'), + ], + [ + 'class' => ActionColumn::class, + 'options' => ['style' => 'width: 100px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + ], + ]); ?> +
+
+ +
diff --git a/backend/views/role/update.php b/backend/views/role/update.php new file mode 100644 index 0000000..591b45a --- /dev/null +++ b/backend/views/role/update.php @@ -0,0 +1,33 @@ +title = Yii::t('user', 'Update Role: {role}', ['role' => $model->name]); +$this->params['breadcrumbs'][] = ['label' => Yii::t('user', 'Roles'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->name]]; +$this->params['breadcrumbs'][] = Yii::t('buttons', 'Editing'); +?> +
+ + + +
+
+ field($model, 'name')->textInput(['maxLength' => true]) ?> + field($model, 'description')->textarea() ?> + field($model, 'rule_name')->textInput(['maxLength' => true]) ?> + field($model, 'data')->textarea() ?> +
+
+ +
+ 'btn btn-primary']) ?> +
+ + + +
\ No newline at end of file diff --git a/backend/views/role/view.php b/backend/views/role/view.php new file mode 100644 index 0000000..60fea59 --- /dev/null +++ b/backend/views/role/view.php @@ -0,0 +1,98 @@ +title = $model->name; +$this->params['breadcrumbs'][] = ['label' => Yii::t('user', 'Roles'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = $this->title; +?> +
+ +

+ 'btn btn-default']) ?> + $model->name], ['class' => 'btn btn-primary']) ?> + $model->name], [ + 'class' => 'btn btn-danger', + 'data' => [ + 'confirm' => Yii::t('buttons', 'Are you sure you want to delete this item?'), + 'method' => 'post', + ], + ]) ?> +

+ +
+
+ $model, + 'attributes' => [ + [ + 'attribute' => 'name', + 'label' => Yii::t('user', 'Role Name'), + ], + [ + 'attribute' => 'description', + 'label' => Yii::t('user', 'Role Description'), + ], + [ + 'attribute' => 'ruleName', + 'label' => Yii::t('user', 'Rule Name'), + ], + ], + ]) ?> +
+
+ + + name !== 'admin'): ?> + +

+ + + field($itemsForm, 'roles')->widget( + Select2::classname(), [ + 'name' => 'childrenRoles', + 'data' => $roles, + 'size' => Select2::SMALL, + 'options' => ['placeholder' => Yii::t('user', 'Select role...'), 'multiple' => true], + 'pluginOptions' => [ + 'allowClear' => true + ], + ])->label(false); + ?> + +

+ + field($itemsForm, 'permissions')->widget( + Select2::classname(), [ + 'name' => 'childrenPermissions', + 'data' => $permissions, + 'size' => Select2::SMALL, + 'options' => ['placeholder' => Yii::t('user', 'Select permission...'), 'multiple' => true], + 'pluginOptions' => [ + 'allowClear' => true + ], + ])->label(false); + ?> + +
+ 'btn btn-primary']) ?> +
+ + + + +
+ +
+ +
diff --git a/backend/views/site/error.php b/backend/views/site/error.php new file mode 100644 index 0000000..0ee5230 --- /dev/null +++ b/backend/views/site/error.php @@ -0,0 +1,34 @@ +title = $name; +?> +
+ +
+

+ +
+

+ +

+ +

+ +

+ +

+

+ 'POST']) ?> +

+ +
+
+ +
diff --git a/backend/views/site/index.php b/backend/views/site/index.php new file mode 100644 index 0000000..5829cf7 --- /dev/null +++ b/backend/views/site/index.php @@ -0,0 +1,10 @@ +title = Yii::t('dashboard', 'Dashboard'); +?> +
+ + +
diff --git a/backend/views/site/login.php b/backend/views/site/login.php new file mode 100644 index 0000000..bbe2136 --- /dev/null +++ b/backend/views/site/login.php @@ -0,0 +1,70 @@ +title = 'Sign In'; + +$fieldOptions1 = [ + 'options' => ['class' => 'form-group has-feedback'], + 'inputTemplate' => "{input}" +]; + +$fieldOptions2 = [ + 'options' => ['class' => 'form-group has-feedback'], + 'inputTemplate' => "{input}" +]; +?> + + diff --git a/backend/views/slider/_form.php b/backend/views/slider/_form.php new file mode 100644 index 0000000..e546964 --- /dev/null +++ b/backend/views/slider/_form.php @@ -0,0 +1,44 @@ + + +
+ + + +
+
+ field($model, 'title')->textarea(['maxLength' => true, 'rows' => 2]) ?> + field($model, 'tagline')->textarea(['maxLength' => true, 'rows' => 2]) ?> + +
+
+ field($model, 'sort')->textInput(['maxLength' => true]) ?> +
+
+ field($model, 'url')->textInput(['maxLength' => true]) ?> +
+
+ + field($model, 'image')->widget(\kartik\widgets\FileInput::classname(), [ + 'pluginOptions' => [ + 'showUpload' => false, + ], + ])->label(Yii::t('slider', 'Background Image')) ?> +
+
+ +
+ 'btn btn-primary']) ?> +
+ + + +
+ diff --git a/backend/views/slider/create.php b/backend/views/slider/create.php new file mode 100644 index 0000000..c79f614 --- /dev/null +++ b/backend/views/slider/create.php @@ -0,0 +1,17 @@ +title = Yii::t('slider', 'Create Slide'); +$this->params['breadcrumbs'][] = ['label' => Yii::t('slider', 'Slider'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = $this->title; +?> +
+ + render('_form', [ + 'model' => $model, + 'slider' => null, + ]) ?> + +
diff --git a/backend/views/slider/index.php b/backend/views/slider/index.php new file mode 100644 index 0000000..7010b6c --- /dev/null +++ b/backend/views/slider/index.php @@ -0,0 +1,46 @@ +title = Yii::t('slider', 'Slider'); +$this->params['breadcrumbs'][] = $this->title; +?> +
+ +

+ 'btn btn-success']) ?> +

+ +
+
+ $dataProvider, + 'columns' => [ + [ + 'attribute' => 'id', + 'options' => ['style' => 'width: 100px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'attribute' => 'title', + 'value' => function (Slider $model) { + return Html::a(Html::encode($model->title), ['view', 'id' => $model->id]); + }, + 'format' => 'raw', + ], + [ + 'class' => ActionColumn::class, + 'options' => ['style' => 'width: 100px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + ], + ]); ?> +
+
+
diff --git a/backend/views/slider/update.php b/backend/views/slider/update.php new file mode 100644 index 0000000..63bd7da --- /dev/null +++ b/backend/views/slider/update.php @@ -0,0 +1,19 @@ +title = Yii::t('slider', 'Update Slide'); +$this->params['breadcrumbs'][] = ['label' => Yii::t('slider', 'Slider'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = ['label' => $slider->title, 'url' => ['view', 'id' => $slider->id]]; +$this->params['breadcrumbs'][] = Yii::t('buttons', 'Editing'); +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/slider/view.php b/backend/views/slider/view.php new file mode 100644 index 0000000..8a6a8ae --- /dev/null +++ b/backend/views/slider/view.php @@ -0,0 +1,61 @@ +title = $model->title; +$this->params['breadcrumbs'][] = ['label' => Yii::t('slider', 'Slider'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = $this->title; +?> +
+ +

+ 'btn btn-default']) ?> + $model->id], ['class' => 'btn btn-primary']) ?> + $model->id], [ + 'class' => 'btn btn-danger', + 'data' => [ + 'confirm' => Yii::t('buttons', 'Are you sure you want to delete this item?'), + 'method' => 'post', + ], + ]) ?> +

+ + +
+
+
+
+ image): ?> +
+ getThumbFileUrl('image', 'thumb')) ?> +
+ +
+
+
+
+
+
+ $model, + 'attributes' => [ + 'id', + 'title', + 'tagline', + 'url', + ], + ]) ?> +
+
+
+
+ + + +
diff --git a/backend/views/user/_form.php b/backend/views/user/_form.php new file mode 100644 index 0000000..81d5b3d --- /dev/null +++ b/backend/views/user/_form.php @@ -0,0 +1,32 @@ + + +
+ + + +
+
+ field($model, 'username')->textInput(['maxLength' => true]) ?> + field($model, 'email')->textInput(['maxLength' => true]) ?> + field($model, 'password')->passwordInput(['maxLength' => true]) ?> + field($model, 'role')->dropDownList($model->rolesList()) ?> +
+
+ +
+ 'btn btn-primary']) ?> +
+ + + +
+ diff --git a/backend/views/user/create.php b/backend/views/user/create.php new file mode 100644 index 0000000..f5c71dd --- /dev/null +++ b/backend/views/user/create.php @@ -0,0 +1,16 @@ +title = Yii::t('user', 'Create User'); +$this->params['breadcrumbs'][] = ['label' => Yii::t('user', 'Users'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = $this->title; +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/user/index.php b/backend/views/user/index.php new file mode 100644 index 0000000..443d2e8 --- /dev/null +++ b/backend/views/user/index.php @@ -0,0 +1,88 @@ +title = Yii::t('user', 'Users'); +$this->params['breadcrumbs'][] = $this->title; +?> +
+ +

+ 'btn btn-success']) ?> +

+ +
+
+ $dataProvider, + 'filterModel' => $searchModel, + 'columns' => [ + [ + 'attribute' => 'id', + 'options' => ['style' => 'width: 100px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'attribute' => 'username', + 'value' => function (User $model) { + return Html::a(Html::encode($model->username), ['view', 'id' => $model->id]); + }, + 'format' => 'raw', + ], + 'email:email', + [ + 'attribute' => 'created_at', + 'filter' => DatePicker::widget([ + 'model' => $searchModel, + 'attribute' => 'date_from', + 'attribute2' => 'date_to', + 'type' => DatePicker::TYPE_RANGE, + 'separator' => '-', + 'pluginOptions' => [ + 'todayHighlight' => true, + 'autoclose'=>true, + 'format' => 'yyyy-mm-dd', + ], + ]), + 'format' => ['datetime', 'php:d.m.Y H:i'], + 'options' => ['style' => 'width: 250px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'attribute' => 'role', + 'label' => Yii::t('user', 'Role'), + 'class' => RoleColumn::class, + 'filter' => $searchModel->rolesList(), + 'options' => ['style' => 'width: 130px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'attribute' => 'status', + 'filter' => UserHelper::statusList(), + 'value' => function (User $model) { + return UserHelper::statusLabel($model->status); + }, + 'format' => 'raw', + 'options' => ['style' => 'width: 130px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + [ + 'class' => ActionColumn::class, + 'options' => ['style' => 'width: 100px;'], + 'contentOptions' => ['class' => 'text-center'], + ], + ], + ]); ?> +
+
+
diff --git a/backend/views/user/update.php b/backend/views/user/update.php new file mode 100644 index 0000000..b9f865f --- /dev/null +++ b/backend/views/user/update.php @@ -0,0 +1,19 @@ +title = Yii::t('user', 'Update User: {user}', ['user' => $user->username]); +$this->params['breadcrumbs'][] = ['label' => Yii::t('user', 'Users'), 'url' => ['index']]; +$this->params['breadcrumbs'][] = ['label' => $user->username, 'url' => ['view', 'id' => $user->id]]; +$this->params['breadcrumbs'][] = Yii::t('buttons', 'Editing'); +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/views/user/view.php b/backend/views/user/view.php new file mode 100644 index 0000000..32ddfd8 --- /dev/null +++ b/backend/views/user/view.php @@ -0,0 +1,59 @@ +title = $model->username; +$this->params['breadcrumbs'][] = ['label' => 'Users', 'url' => ['index']]; +$this->params['breadcrumbs'][] = $this->title; +?> +
+ +

+ 'btn btn-default']) ?> + $model->id], ['class' => 'btn btn-primary']) ?> + $model->id], [ + 'class' => 'btn btn-danger', + 'data' => [ + 'confirm' => Yii::t('buttons', 'Are you sure you want to delete this item?'), + 'method' => 'post', + ], + ]) ?> +

+ +
+
+ $model, + 'attributes' => [ + 'id', + 'username', + 'email:email', + [ + 'attribute' => 'status', + 'value' => UserHelper::statusLabel($model->status), + 'format' => 'raw', + ], + [ + 'label' => Yii::t('user', 'Role'), + 'value' => implode(', ', ArrayHelper::getColumn(Yii::$app->authManager->getRolesByUser($model->id), 'description')), + 'format' => 'raw', + ], + [ + 'attribute' => 'created_at', + 'format' => ['datetime', 'php:d.m.Y H:i'], + ], + [ + 'attribute' => 'updated_at', + 'format' => ['datetime', 'php:d.m.Y H:i'], + ], + ], + ]) ?> +
+
+
diff --git a/backend/web/.gitignore b/backend/web/.gitignore new file mode 100644 index 0000000..d94a089 --- /dev/null +++ b/backend/web/.gitignore @@ -0,0 +1,3 @@ +/index.php +/index-test.php +/robots.txt diff --git a/backend/web/assets/.gitignore b/backend/web/assets/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/backend/web/assets/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/backend/web/css/site.css b/backend/web/css/site.css new file mode 100644 index 0000000..e90b810 --- /dev/null +++ b/backend/web/css/site.css @@ -0,0 +1,125 @@ +html, +body { + height: 100%; +} + +.wrap { + min-height: 100%; + height: auto; + margin: 0 auto -60px; + padding: 0 0 60px; +} + +.wrap > .container { + padding: 70px 15px 20px; +} + +.footer { + height: 60px; + background-color: #f5f5f5; + border-top: 1px solid #ddd; + padding-top: 20px; +} + +.jumbotron { + text-align: center; + background-color: transparent; +} + +.jumbotron .btn { + font-size: 21px; + padding: 14px 24px; +} + +.not-set { + color: #c55; + font-style: italic; +} + +/* add sorting icons to gridview sort links */ +a.asc:after, a.desc:after { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + font-style: normal; + font-weight: normal; + line-height: 1; + padding-left: 5px; +} + +a.asc:after { + content: /*"\e113"*/ "\e151"; +} + +a.desc:after { + content: /*"\e114"*/ "\e152"; +} + +.sort-numerical a.asc:after { + content: "\e153"; +} + +.sort-numerical a.desc:after { + content: "\e154"; +} + +.sort-ordinal a.asc:after { + content: "\e155"; +} + +.sort-ordinal a.desc:after { + content: "\e156"; +} + +.grid-view td { + white-space: nowrap; +} + +.grid-view .filters input, +.grid-view .filters select { + min-width: 50px; +} + +.hint-block { + display: block; + margin-top: 5px; + color: #999; +} + +.error-summary { + color: #a94442; + background: #fdf7f7; + border-left: 3px solid #eed3d7; + padding: 10px 20px; + margin: 0 0 15px 0; +} + +/* align the logout "link" (button in form) of the navbar */ +.nav li > form > button.logout { + padding: 15px; + border: none; +} + +@media(max-width:767px) { + .nav li > form > button.logout { + display:block; + text-align: left; + width: 100%; + padding: 10px 15px; + } +} + +.nav > li > form > button.logout:focus, +.nav > li > form > button.logout:hover { + text-decoration: none; +} + +.nav > li > form > button.logout:focus { + outline: none; +} + +div.required label.control-label:after { + content: " *"; + color: red; +} \ No newline at end of file diff --git a/backend/web/css/skin.css b/backend/web/css/skin.css new file mode 100644 index 0000000..18abc56 --- /dev/null +++ b/backend/web/css/skin.css @@ -0,0 +1,13 @@ +@import url('https://fonts.googleapis.com/css?family=Play:400,700&subset=cyrillic,cyrillic-ext,latin-ext'); +/* + * Skin: Light + * ---------- + */ +body, +h1, +h2, +h3, +h4, +h5 { + font-family: "Play", "Helvetica Neue", Helvetica, Arial, sans-serif; +} \ No newline at end of file diff --git a/backend/web/favicon.ico b/backend/web/favicon.ico new file mode 100644 index 0000000..580ed73 Binary files /dev/null and b/backend/web/favicon.ico differ diff --git a/backend/widgets/grid/RoleColumn.php b/backend/widgets/grid/RoleColumn.php new file mode 100644 index 0000000..951276b --- /dev/null +++ b/backend/widgets/grid/RoleColumn.php @@ -0,0 +1,26 @@ +authManager->getRolesByUser($model->id); + return $roles === [] ? $this->grid->emptyCell : implode(', ', array_map(function (Item $role) { + return $this->getRoleLabel($role); + }, $roles)); + } + + private function getRoleLabel(Item $role): string + { + $class = $role->name == Rbac::ROLE_USER ? 'primary' : 'danger'; + return Html::tag('span', Html::encode($role->description), ['class' => 'label label-' . $class]); + } +} \ No newline at end of file diff --git a/codeception.yml b/codeception.yml new file mode 100644 index 0000000..0d9d920 --- /dev/null +++ b/codeception.yml @@ -0,0 +1,10 @@ +# global codeception file to run tests from all apps +include: + - core + - common + - frontend + - backend +paths: + log: console/runtime/logs +settings: + colors: true \ No newline at end of file diff --git a/common/auth/Identity.php b/common/auth/Identity.php new file mode 100644 index 0000000..bb61d4d --- /dev/null +++ b/common/auth/Identity.php @@ -0,0 +1,71 @@ +user = $user; + } + + public static function findIdentity($id) + { + $user = self::getRepository()->findActiveById($id); + return $user ? new self($user): null; + } + + public static function findIdentityByAccessToken($token, $type = null) + { + $data = self::getOauth()->getServer()->getResourceController()->getToken(); + return !empty($data['user_id']) ? static::findIdentity($data['user_id']) : null; + } + + public function getId(): int + { + return $this->user->id; + } + + public function getAuthKey(): string + { + return $this->user->auth_key; + } + + public function validateAuthKey($authKey): bool + { + return $this->getAuthKey() === $authKey; + } + + public function checkUserCredentials($username, $password): bool + { + if (!$user = self::getRepository()->findActiveByUsername($username)) { + return false; + } + return $user->validatePassword($password); + } + + public function getUserDetails($username): array + { + $user = self::getRepository()->findActiveByUsername($username); + return ['user_id' => $user->id]; + } + + private static function getRepository(): UserReadRepository + { + return \Yii::$container->get(UserReadRepository::class); + } + + private static function getOauth(): Module + { + return Yii::$app->getModule('oauth2'); + } +} \ No newline at end of file diff --git a/common/bootstrap/SetUp.php b/common/bootstrap/SetUp.php new file mode 100644 index 0000000..7e36cb8 --- /dev/null +++ b/common/bootstrap/SetUp.php @@ -0,0 +1,141 @@ +setSingleton(Client::class, function () { + return ClientBuilder::create()->build(); + });*/ + + $container->setSingleton(MailerInterface::class, function () use ($app) { + return $app->mailer; + }); + + $container->setSingleton(ErrorHandler::class, function () use ($app) { + return $app->errorHandler; + }); + + $container->setSingleton(Queue::class, function () use ($app) { + return $app->get('queue'); + }); + + $container->setSingleton(Cache::class, function () use ($app) { + return $app->cache; + }); + + $container->setSingleton(ManagerInterface::class, function () use ($app) { + return $app->authManager; + }); + + $container->setSingleton(ContactService::class, [], [ + $app->params['adminEmail'] + ]); + + /*$container->setSingleton(Cart::class, function () use ($app) { + return new Cart( + new HybridStorage($app->get('user'), 'cart', 3600 * 24, $app->db), + new DynamicCost(new SimpleCost()) + ); + }); + + $container->setSingleton(YandexMarket::class, [], [ + new ShopInfo($app->name, $app->name, $app->params['frontendHostInfo']), + ]);*/ + + $container->setSingleton(Newsletter::class, function () use ($app) { + return new MailChimp( + new \DrewM\MailChimp\MailChimp($app->params['mailChimpKey']), + $app->params['mailChimpListId'] + ); + }); + + /*$container->setSingleton(SmsSender::class, function () use ($app) { + return new LoggedSender( + new SmsRu($app->params['smsRuKey']), + \Yii::getLogger() + ); + });*/ + + $container->setSingleton(EventDispatcher::class, DeferredEventDispatcher::class); + + $container->setSingleton(DeferredEventDispatcher::class, function (Container $container) { + return new DeferredEventDispatcher(new AsyncEventDispatcher($container->get(Queue::class))); + }); + + $container->setSingleton(SimpleEventDispatcher::class, function (Container $container) { + return new SimpleEventDispatcher($container, [ + UserSignUpRequested::class => [UserSignupRequestedListener::class], + UserSignUpConfirmed::class => [UserSignupConfirmedListener::class], + //ProductAppearedInStock::class => [ProductAppearedInStockListener::class], + //EntityPersisted::class => [ + // ProductSearchPersistListener::class, + // CategoryPersistenceListener::class, + //], + //EntityRemoved::class => [ + // ProductSearchRemoveListener::class, + // CategoryPersistenceListener::class, + //], + ]); + }); + + $container->setSingleton(AsyncEventJobHandler::class, [], [ + Instance::of(SimpleEventDispatcher::class) + ]); + + /* + $container->setSingleton(Filesystem::class, function () use ($app) { + return new Filesystem(new Ftp($app->params['ftp'])); + }); + + $container->set(ImageUploadBehavior::class, FlySystemImageUploadBehavior::class); + */ + } +} \ No newline at end of file diff --git a/common/codeception.yml b/common/codeception.yml new file mode 100644 index 0000000..de5d76a --- /dev/null +++ b/common/codeception.yml @@ -0,0 +1,15 @@ +namespace: common\tests +actor: Tester +paths: + tests: tests + log: tests/_output + data: tests/_data + helpers: tests/_support +settings: + bootstrap: _bootstrap.php + colors: true + memory_limit: 1024M +modules: + config: + Yii2: + configFile: 'config/test-local.php' diff --git a/common/config/.gitignore b/common/config/.gitignore new file mode 100644 index 0000000..42799dd --- /dev/null +++ b/common/config/.gitignore @@ -0,0 +1,3 @@ +main-local.php +params-local.php +test-local.php diff --git a/common/config/bootstrap.php b/common/config/bootstrap.php new file mode 100644 index 0000000..a58602a --- /dev/null +++ b/common/config/bootstrap.php @@ -0,0 +1,7 @@ + [ + '@bower' => '@vendor/bower-asset', + '@npm' => '@vendor/npm-asset', + ], + 'vendorPath' => dirname(dirname(__DIR__)) . '/vendor', + 'components' => [ + 'cache' => [ + 'class' => 'yii\caching\FileCache', + 'cachePath' => '@common/runtime/cache', + ], + 'authManager' => [ + 'class' => 'yii\rbac\DbManager', + 'itemTable' => '{{%auth_items}}', + 'itemChildTable' => '{{%auth_item_children}}', + 'assignmentTable' => '{{%auth_assignments}}', + 'ruleTable' => '{{%auth_rules}}', + ], + 'queue' => [ + //'class' => 'yii\queue\redis\Queue', + //'as log' => 'yii\queue\LogBehavior', + 'class' => \yii\queue\file\Queue::class, + //'path' => '@runtime/queue', + 'path' => '@common/runtime/queue', + ], + ], +]; diff --git a/common/config/params.php b/common/config/params.php new file mode 100644 index 0000000..b812b69 --- /dev/null +++ b/common/config/params.php @@ -0,0 +1,12 @@ + 'info@zertex.ru', + 'adminEmail' => 'info@zertex.ru', + 'user.passwordResetTokenExpire' => 3600, + 'user.rememberMeDuration' => 3600 * 24 * 30, + //'cookieDomain' => '.example.com', + //'frontendHostInfo' => 'http://example.com', + //'backendHostInfo' => 'http://backend.example.com', + //'staticHostInfo' => 'http://static.example.com', + 'staticPath' => dirname(__DIR__, 2) . '/static', +]; diff --git a/common/config/test.php b/common/config/test.php new file mode 100644 index 0000000..732f796 --- /dev/null +++ b/common/config/test.php @@ -0,0 +1,22 @@ + 'app-common-tests', + 'basePath' => dirname(__DIR__), + 'components' => [ + 'user' => [ + 'class' => 'yii\web\User', + //'identityClass' => 'common\models\User', + 'identityClass' => 'common\auth\Identity', + ], + /*'user' => [ + 'identityClass' => 'common\auth\Identity', + 'enableAutoLogin' => true, + 'identityCookie' => [ + 'name' => '_identity', + 'httpOnly' => true, + 'domain' => $params['cookieDomain'], + ], + 'loginUrl' => ['auth/login'], + ],*/ + ], +]; diff --git a/common/fixtures/UserFixture.php b/common/fixtures/UserFixture.php new file mode 100644 index 0000000..017ab00 --- /dev/null +++ b/common/fixtures/UserFixture.php @@ -0,0 +1,9 @@ +get('frontendUrlManager')->createAbsoluteUrl(['auth/reset/confirm', 'token' => $user->password_reset_token]); +?> +
+

Hello username) ?>,

+ +

Follow the link below to reset your password:

+ +

+
diff --git a/common/mail/auth/reset/confirm-text.php b/common/mail/auth/reset/confirm-text.php new file mode 100644 index 0000000..7e8d9a8 --- /dev/null +++ b/common/mail/auth/reset/confirm-text.php @@ -0,0 +1,12 @@ +get('frontendUrlManager')->createAbsoluteUrl(['auth/reset/confirm', 'token' => $user->password_reset_token]); +?> +Hello username ?>, + +Follow the link below to reset your password: + + diff --git a/common/mail/auth/signup/confirm-html.php b/common/mail/auth/signup/confirm-html.php new file mode 100644 index 0000000..7607ee7 --- /dev/null +++ b/common/mail/auth/signup/confirm-html.php @@ -0,0 +1,15 @@ +get('frontendUrlManager')->createAbsoluteUrl(['auth/signup/confirm', 'token' => $user->email_confirm_token]); +?> +
+

Hello username) ?>,

+ +

Follow the link below to confirm your email:

+ +

+
diff --git a/common/mail/auth/signup/confirm-text.php b/common/mail/auth/signup/confirm-text.php new file mode 100644 index 0000000..bce9c05 --- /dev/null +++ b/common/mail/auth/signup/confirm-text.php @@ -0,0 +1,12 @@ +get('frontendUrlManager')->createAbsoluteUrl(['auth/signup/confirm', 'token' => $user->email_confirm_token]); +?> +Hello username ?>, + +Follow the link below to confirm your email: + + diff --git a/common/mail/layouts/html.php b/common/mail/layouts/html.php new file mode 100644 index 0000000..bddbc61 --- /dev/null +++ b/common/mail/layouts/html.php @@ -0,0 +1,22 @@ + +beginPage() ?> + + + + + <?= Html::encode($this->title) ?> + head() ?> + + + beginBody() ?> + + endBody() ?> + + +endPage() ?> diff --git a/common/mail/layouts/text.php b/common/mail/layouts/text.php new file mode 100644 index 0000000..aab1d5d --- /dev/null +++ b/common/mail/layouts/text.php @@ -0,0 +1,14 @@ + + +beginPage() ?> +beginBody() ?> + +endBody() ?> +endPage() ?> diff --git a/common/mail/passwordResetToken-html.php b/common/mail/passwordResetToken-html.php new file mode 100644 index 0000000..f3daf49 --- /dev/null +++ b/common/mail/passwordResetToken-html.php @@ -0,0 +1,15 @@ +urlManager->createAbsoluteUrl(['site/reset-password', 'token' => $user->password_reset_token]); +?> +
+

Hello username) ?>,

+ +

Follow the link below to reset your password:

+ +

+
diff --git a/common/mail/passwordResetToken-text.php b/common/mail/passwordResetToken-text.php new file mode 100644 index 0000000..244c0cb --- /dev/null +++ b/common/mail/passwordResetToken-text.php @@ -0,0 +1,12 @@ +urlManager->createAbsoluteUrl(['site/reset-password', 'token' => $user->password_reset_token]); +?> +Hello username ?>, + +Follow the link below to reset your password: + + diff --git a/common/models/LoginForm.php b/common/models/LoginForm.php new file mode 100644 index 0000000..f1f5073 --- /dev/null +++ b/common/models/LoginForm.php @@ -0,0 +1,78 @@ +hasErrors()) { + $user = $this->getUser(); + if (!$user || !$user->validatePassword($this->password)) { + $this->addError($attribute, 'Incorrect username or password.'); + } + } + } + + /** + * Logs in a user using the provided username and password. + * + * @return bool whether the user is logged in successfully + */ + public function login() + { + if ($this->validate()) { + return Yii::$app->user->login($this->getUser(), $this->rememberMe ? 3600 * 24 * 30 : 0); + } + + return false; + } + + /** + * Finds user by [[username]] + * + * @return User|null + */ + protected function getUser() + { + if ($this->_user === null) { + $this->_user = User::findByUsername($this->username); + } + + return $this->_user; + } +} diff --git a/common/models/User.php b/common/models/User.php new file mode 100644 index 0000000..2f4508f --- /dev/null +++ b/common/models/User.php @@ -0,0 +1,189 @@ + self::STATUS_ACTIVE], + ['status', 'in', 'range' => [self::STATUS_ACTIVE, self::STATUS_DELETED]], + ]; + } + + /** + * @inheritdoc + */ + public static function findIdentity($id) + { + return static::findOne(['id' => $id, 'status' => self::STATUS_ACTIVE]); + } + + /** + * @inheritdoc + */ + public static function findIdentityByAccessToken($token, $type = null) + { + throw new NotSupportedException('"findIdentityByAccessToken" is not implemented.'); + } + + /** + * Finds user by username + * + * @param string $username + * @return static|null + */ + public static function findByUsername($username) + { + return static::findOne(['username' => $username, 'status' => self::STATUS_ACTIVE]); + } + + /** + * Finds user by password reset token + * + * @param string $token password reset token + * @return static|null + */ + public static function findByPasswordResetToken($token) + { + if (!static::isPasswordResetTokenValid($token)) { + return null; + } + + return static::findOne([ + 'password_reset_token' => $token, + 'status' => self::STATUS_ACTIVE, + ]); + } + + /** + * Finds out if password reset token is valid + * + * @param string $token password reset token + * @return bool + */ + public static function isPasswordResetTokenValid($token) + { + if (empty($token)) { + return false; + } + + $timestamp = (int) substr($token, strrpos($token, '_') + 1); + $expire = Yii::$app->params['user.passwordResetTokenExpire']; + return $timestamp + $expire >= time(); + } + + /** + * @inheritdoc + */ + public function getId() + { + return $this->getPrimaryKey(); + } + + /** + * @inheritdoc + */ + public function getAuthKey() + { + return $this->auth_key; + } + + /** + * @inheritdoc + */ + public function validateAuthKey($authKey) + { + return $this->getAuthKey() === $authKey; + } + + /** + * Validates password + * + * @param string $password password to validate + * @return bool if password provided is valid for current user + */ + public function validatePassword($password) + { + return Yii::$app->security->validatePassword($password, $this->password_hash); + } + + /** + * Generates password hash from password and sets it to the model + * + * @param string $password + */ + public function setPassword($password) + { + $this->password_hash = Yii::$app->security->generatePasswordHash($password); + } + + /** + * Generates "remember me" authentication key + */ + public function generateAuthKey() + { + $this->auth_key = Yii::$app->security->generateRandomString(); + } + + /** + * Generates new password reset token + */ + public function generatePasswordResetToken() + { + $this->password_reset_token = Yii::$app->security->generateRandomString() . '_' . time(); + } + + /** + * Removes password reset token + */ + public function removePasswordResetToken() + { + $this->password_reset_token = null; + } +} diff --git a/common/runtime/cache/00/003d3baedc022e4d084a532960a55cc3.bin b/common/runtime/cache/00/003d3baedc022e4d084a532960a55cc3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/00/003d3baedc022e4d084a532960a55cc3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/00/00431a2d632e2abcfe7139037442a6ef.bin b/common/runtime/cache/00/00431a2d632e2abcfe7139037442a6ef.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/00/00431a2d632e2abcfe7139037442a6ef.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/00/0045808e17fdda07b6043f2858e01289.bin b/common/runtime/cache/00/0045808e17fdda07b6043f2858e01289.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/00/0045808e17fdda07b6043f2858e01289.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/00/005ab8900f97feeb9ab462ab8b45a4b2.bin b/common/runtime/cache/00/005ab8900f97feeb9ab462ab8b45a4b2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/00/005ab8900f97feeb9ab462ab8b45a4b2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/00/00801d77ce9e1840e34273b5bbd23fe9.bin b/common/runtime/cache/00/00801d77ce9e1840e34273b5bbd23fe9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/00/00801d77ce9e1840e34273b5bbd23fe9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/00/00aa94a5574997ea635a1b06d18c6be2.bin b/common/runtime/cache/00/00aa94a5574997ea635a1b06d18c6be2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/00/00aa94a5574997ea635a1b06d18c6be2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/00/00b60fb0fa60b8787d31809082f53c58.bin b/common/runtime/cache/00/00b60fb0fa60b8787d31809082f53c58.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/00/00b60fb0fa60b8787d31809082f53c58.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/00/00b909a8d231c5b8e79d981ba41c6fef.bin b/common/runtime/cache/00/00b909a8d231c5b8e79d981ba41c6fef.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/00/00b909a8d231c5b8e79d981ba41c6fef.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/00/00f0473f92d165b92230b8060ab941fb.bin b/common/runtime/cache/00/00f0473f92d165b92230b8060ab941fb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/00/00f0473f92d165b92230b8060ab941fb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/00/00f27a3c9280b7e3abc225c3807f082b.bin b/common/runtime/cache/00/00f27a3c9280b7e3abc225c3807f082b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/00/00f27a3c9280b7e3abc225c3807f082b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/01/0101e28a47dbccdcff067ff23d9a436f.bin b/common/runtime/cache/01/0101e28a47dbccdcff067ff23d9a436f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/01/0101e28a47dbccdcff067ff23d9a436f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/01/011dfdc643b316f72e43fd4f1774a224.bin b/common/runtime/cache/01/011dfdc643b316f72e43fd4f1774a224.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/01/011dfdc643b316f72e43fd4f1774a224.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/01/011ee6a676e7ab629a02bbd76a420420.bin b/common/runtime/cache/01/011ee6a676e7ab629a02bbd76a420420.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/01/011ee6a676e7ab629a02bbd76a420420.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/01/013f471ce9942005e703d7f14f2eb3ce.bin b/common/runtime/cache/01/013f471ce9942005e703d7f14f2eb3ce.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/01/013f471ce9942005e703d7f14f2eb3ce.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/01/0147b3f5f8c408797c489105647d3c30.bin b/common/runtime/cache/01/0147b3f5f8c408797c489105647d3c30.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/01/0147b3f5f8c408797c489105647d3c30.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/01/018297a24c76845190ac9a4ad4ffb928.bin b/common/runtime/cache/01/018297a24c76845190ac9a4ad4ffb928.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/01/018297a24c76845190ac9a4ad4ffb928.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/01/018e1965390531cf82dae833de13880e.bin b/common/runtime/cache/01/018e1965390531cf82dae833de13880e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/01/018e1965390531cf82dae833de13880e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/01/0193961ea421a6aad25ba4de4185c9c7.bin b/common/runtime/cache/01/0193961ea421a6aad25ba4de4185c9c7.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/01/0193961ea421a6aad25ba4de4185c9c7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/01/01a46738e6eb995d65a7d2d54947e781.bin b/common/runtime/cache/01/01a46738e6eb995d65a7d2d54947e781.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/01/01a46738e6eb995d65a7d2d54947e781.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/01/01abd3860ddf9529b9de069d267682eb.bin b/common/runtime/cache/01/01abd3860ddf9529b9de069d267682eb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/01/01abd3860ddf9529b9de069d267682eb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/01/01b0cc99aac8904cb1412dc9b823e395.bin b/common/runtime/cache/01/01b0cc99aac8904cb1412dc9b823e395.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/01/01b0cc99aac8904cb1412dc9b823e395.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/01/01bace216f5af1fca302142dd0c96692.bin b/common/runtime/cache/01/01bace216f5af1fca302142dd0c96692.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/01/01bace216f5af1fca302142dd0c96692.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/01/01bc9494de6906d9824edc16d4fd6383.bin b/common/runtime/cache/01/01bc9494de6906d9824edc16d4fd6383.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/01/01bc9494de6906d9824edc16d4fd6383.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/01/01be1c2024f1129299bbd6fc0132984c.bin b/common/runtime/cache/01/01be1c2024f1129299bbd6fc0132984c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/01/01be1c2024f1129299bbd6fc0132984c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/01/01d5365c41df12292612ce8818edbc79.bin b/common/runtime/cache/01/01d5365c41df12292612ce8818edbc79.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/01/01d5365c41df12292612ce8818edbc79.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/01/01e97e7bd86e4576ce5af5c90147acb1.bin b/common/runtime/cache/01/01e97e7bd86e4576ce5af5c90147acb1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/01/01e97e7bd86e4576ce5af5c90147acb1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/01/01fc1a2f74b6597733476535e9fa65f5.bin b/common/runtime/cache/01/01fc1a2f74b6597733476535e9fa65f5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/01/01fc1a2f74b6597733476535e9fa65f5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/02/0207db953cd8e0be797572f841485ec9.bin b/common/runtime/cache/02/0207db953cd8e0be797572f841485ec9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/02/0207db953cd8e0be797572f841485ec9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/02/020ab020984011c2cb008d1ffd23fdb8.bin b/common/runtime/cache/02/020ab020984011c2cb008d1ffd23fdb8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/02/020ab020984011c2cb008d1ffd23fdb8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/02/023965c87f8842a2a45598c383f027ea.bin b/common/runtime/cache/02/023965c87f8842a2a45598c383f027ea.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/02/023965c87f8842a2a45598c383f027ea.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/02/02559fbe82168ee9ac48a2eb8441c7d6.bin b/common/runtime/cache/02/02559fbe82168ee9ac48a2eb8441c7d6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/02/02559fbe82168ee9ac48a2eb8441c7d6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/02/0258c5d4d74bba3592aaaa3a7e6d22e8.bin b/common/runtime/cache/02/0258c5d4d74bba3592aaaa3a7e6d22e8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/02/0258c5d4d74bba3592aaaa3a7e6d22e8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/02/027712d54d4dbfd34a7a1b7d14f82405.bin b/common/runtime/cache/02/027712d54d4dbfd34a7a1b7d14f82405.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/02/027712d54d4dbfd34a7a1b7d14f82405.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/02/02a75bdd51927e37d69d779696b4e21a.bin b/common/runtime/cache/02/02a75bdd51927e37d69d779696b4e21a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/02/02a75bdd51927e37d69d779696b4e21a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/02/02bb33f7d05741fc7f224fc34c724b27.bin b/common/runtime/cache/02/02bb33f7d05741fc7f224fc34c724b27.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/02/02bb33f7d05741fc7f224fc34c724b27.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/02/02cfd5fc7fcf911babf51335a8d8bdb2.bin b/common/runtime/cache/02/02cfd5fc7fcf911babf51335a8d8bdb2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/02/02cfd5fc7fcf911babf51335a8d8bdb2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/02/02d73d52cac6207450b0ebbf9a6fc69b.bin b/common/runtime/cache/02/02d73d52cac6207450b0ebbf9a6fc69b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/02/02d73d52cac6207450b0ebbf9a6fc69b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/03/030d096dd830bfd1d28408c7a581d0d6.bin b/common/runtime/cache/03/030d096dd830bfd1d28408c7a581d0d6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/03/030d096dd830bfd1d28408c7a581d0d6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/03/0310faaecfe721cb3b7a5203088d49bb.bin b/common/runtime/cache/03/0310faaecfe721cb3b7a5203088d49bb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/03/0310faaecfe721cb3b7a5203088d49bb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/03/031549ec6289907ed9d943866feb7bcb.bin b/common/runtime/cache/03/031549ec6289907ed9d943866feb7bcb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/03/031549ec6289907ed9d943866feb7bcb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/03/031844b800282775c0d18251ad0de811.bin b/common/runtime/cache/03/031844b800282775c0d18251ad0de811.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/03/031844b800282775c0d18251ad0de811.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/03/0318b2c6ce7917c9770dadae7b03b96f.bin b/common/runtime/cache/03/0318b2c6ce7917c9770dadae7b03b96f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/03/0318b2c6ce7917c9770dadae7b03b96f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/03/03285a04012049f203883998fdb14764.bin b/common/runtime/cache/03/03285a04012049f203883998fdb14764.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/03/03285a04012049f203883998fdb14764.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/03/033f05475104184afa7d5eed037b8b77.bin b/common/runtime/cache/03/033f05475104184afa7d5eed037b8b77.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/03/033f05475104184afa7d5eed037b8b77.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/03/03407997fb2b1dba3a6a2ff3037f075e.bin b/common/runtime/cache/03/03407997fb2b1dba3a6a2ff3037f075e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/03/03407997fb2b1dba3a6a2ff3037f075e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/03/0344e2e2124991f9bb5521c91ee2ec39.bin b/common/runtime/cache/03/0344e2e2124991f9bb5521c91ee2ec39.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/03/0344e2e2124991f9bb5521c91ee2ec39.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/03/03485a1c556ec7195ccd8bcd7e2ea013.bin b/common/runtime/cache/03/03485a1c556ec7195ccd8bcd7e2ea013.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/03/03485a1c556ec7195ccd8bcd7e2ea013.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/03/03a1764ff6b29c6ec8783098814b9a66.bin b/common/runtime/cache/03/03a1764ff6b29c6ec8783098814b9a66.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/03/03a1764ff6b29c6ec8783098814b9a66.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/03/03b6d6bd69b7a8d3e7af52138e3e1cf6.bin b/common/runtime/cache/03/03b6d6bd69b7a8d3e7af52138e3e1cf6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/03/03b6d6bd69b7a8d3e7af52138e3e1cf6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/03/03d45ab9702f03cceeaaaa7ec3b14beb.bin b/common/runtime/cache/03/03d45ab9702f03cceeaaaa7ec3b14beb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/03/03d45ab9702f03cceeaaaa7ec3b14beb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/03/03d74798ae3018158ad30deb1045c6db.bin b/common/runtime/cache/03/03d74798ae3018158ad30deb1045c6db.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/03/03d74798ae3018158ad30deb1045c6db.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/03/03dbbc477734b2132cba7629a81ba5b7.bin b/common/runtime/cache/03/03dbbc477734b2132cba7629a81ba5b7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/03/03dbbc477734b2132cba7629a81ba5b7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/03/03f19843cc0aae7ce3a36c6cb3f202d7.bin b/common/runtime/cache/03/03f19843cc0aae7ce3a36c6cb3f202d7.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/03/03f19843cc0aae7ce3a36c6cb3f202d7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/03/03f7e3ec583e45276e18b38ef6d7b488.bin b/common/runtime/cache/03/03f7e3ec583e45276e18b38ef6d7b488.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/03/03f7e3ec583e45276e18b38ef6d7b488.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/04/0423af9b1e73d38e70d079ced88d1075.bin b/common/runtime/cache/04/0423af9b1e73d38e70d079ced88d1075.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/04/0423af9b1e73d38e70d079ced88d1075.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/04/043bfd43ccecb168b13cc817a9c585e9.bin b/common/runtime/cache/04/043bfd43ccecb168b13cc817a9c585e9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/04/043bfd43ccecb168b13cc817a9c585e9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/04/04486a02c4f75663dbd08e514ee8bee2.bin b/common/runtime/cache/04/04486a02c4f75663dbd08e514ee8bee2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/04/04486a02c4f75663dbd08e514ee8bee2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/04/04580f813dc39003ae9be099dbc9267c.bin b/common/runtime/cache/04/04580f813dc39003ae9be099dbc9267c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/04/04580f813dc39003ae9be099dbc9267c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/04/045a74c379e636371d0a07ca52ce2d8f.bin b/common/runtime/cache/04/045a74c379e636371d0a07ca52ce2d8f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/04/045a74c379e636371d0a07ca52ce2d8f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/04/04df6f33c544d4bb83bed5e89bae1f93.bin b/common/runtime/cache/04/04df6f33c544d4bb83bed5e89bae1f93.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/04/04df6f33c544d4bb83bed5e89bae1f93.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/04/04ee4a77a84f723ec4f0e7ba4d598383.bin b/common/runtime/cache/04/04ee4a77a84f723ec4f0e7ba4d598383.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/04/04ee4a77a84f723ec4f0e7ba4d598383.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/04/04f66d96be7684f58210474e7d8bdfc3.bin b/common/runtime/cache/04/04f66d96be7684f58210474e7d8bdfc3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/04/04f66d96be7684f58210474e7d8bdfc3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/04/04faa150055ea0cd34480d58de7805c3.bin b/common/runtime/cache/04/04faa150055ea0cd34480d58de7805c3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/04/04faa150055ea0cd34480d58de7805c3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/05/0505855d7f69b9e991cec423a2a8d492.bin b/common/runtime/cache/05/0505855d7f69b9e991cec423a2a8d492.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/05/0505855d7f69b9e991cec423a2a8d492.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/05/0508d609d373b7068cce18daf8df4d97.bin b/common/runtime/cache/05/0508d609d373b7068cce18daf8df4d97.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/05/0508d609d373b7068cce18daf8df4d97.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/05/0513577e47055a65b63520225f4a2888.bin b/common/runtime/cache/05/0513577e47055a65b63520225f4a2888.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/05/0513577e47055a65b63520225f4a2888.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/05/052afc62abc1b43b75d02dd44e724815.bin b/common/runtime/cache/05/052afc62abc1b43b75d02dd44e724815.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/05/052afc62abc1b43b75d02dd44e724815.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/05/053151613f96cc73bc0de23808dd9a86.bin b/common/runtime/cache/05/053151613f96cc73bc0de23808dd9a86.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/05/053151613f96cc73bc0de23808dd9a86.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/05/053b35393a46239d81c56821f8c178b9.bin b/common/runtime/cache/05/053b35393a46239d81c56821f8c178b9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/05/053b35393a46239d81c56821f8c178b9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/05/0541032651e35897a2dfeb1168067d7c.bin b/common/runtime/cache/05/0541032651e35897a2dfeb1168067d7c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/05/0541032651e35897a2dfeb1168067d7c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/05/054a595cf4b069b36adbe65f124be6df.bin b/common/runtime/cache/05/054a595cf4b069b36adbe65f124be6df.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/05/054a595cf4b069b36adbe65f124be6df.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/05/057622d25f4bed8a096ce59fae4e32b0.bin b/common/runtime/cache/05/057622d25f4bed8a096ce59fae4e32b0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/05/057622d25f4bed8a096ce59fae4e32b0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/05/057789a1b4e0b7ed537f6b3b86dd380e.bin b/common/runtime/cache/05/057789a1b4e0b7ed537f6b3b86dd380e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/05/057789a1b4e0b7ed537f6b3b86dd380e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/05/057eceeda1070eb711421b6958d7db41.bin b/common/runtime/cache/05/057eceeda1070eb711421b6958d7db41.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/05/057eceeda1070eb711421b6958d7db41.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/05/0585b097767a35952e8ba0d3bf4a933d.bin b/common/runtime/cache/05/0585b097767a35952e8ba0d3bf4a933d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/05/0585b097767a35952e8ba0d3bf4a933d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/05/0590dc3c020e4f420920af57e42f85d3.bin b/common/runtime/cache/05/0590dc3c020e4f420920af57e42f85d3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/05/0590dc3c020e4f420920af57e42f85d3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/05/05e20aed59d423881053a0a0e8ddf7b2.bin b/common/runtime/cache/05/05e20aed59d423881053a0a0e8ddf7b2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/05/05e20aed59d423881053a0a0e8ddf7b2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/05/05e88a8dfb4cdbad22251d1088951f02.bin b/common/runtime/cache/05/05e88a8dfb4cdbad22251d1088951f02.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/05/05e88a8dfb4cdbad22251d1088951f02.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/06/06007d98bfcdb69bf781d954e6eed562.bin b/common/runtime/cache/06/06007d98bfcdb69bf781d954e6eed562.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/06/06007d98bfcdb69bf781d954e6eed562.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/06/0602ee37c1d7924de5fc16e8f622df44.bin b/common/runtime/cache/06/0602ee37c1d7924de5fc16e8f622df44.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/06/0602ee37c1d7924de5fc16e8f622df44.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/06/0650d23c26fdf80c019236d27b275436.bin b/common/runtime/cache/06/0650d23c26fdf80c019236d27b275436.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/06/0650d23c26fdf80c019236d27b275436.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/06/06511a81b97f1f14ca64ae029555c646.bin b/common/runtime/cache/06/06511a81b97f1f14ca64ae029555c646.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/06/06511a81b97f1f14ca64ae029555c646.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/06/0655c1c540c75daf7d78a651431ef75c.bin b/common/runtime/cache/06/0655c1c540c75daf7d78a651431ef75c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/06/0655c1c540c75daf7d78a651431ef75c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/06/065682c46a84f0a199cf229acebf5311.bin b/common/runtime/cache/06/065682c46a84f0a199cf229acebf5311.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/06/065682c46a84f0a199cf229acebf5311.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/06/0661db7dc3b2dd39f9201133dcc22200.bin b/common/runtime/cache/06/0661db7dc3b2dd39f9201133dcc22200.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/06/0661db7dc3b2dd39f9201133dcc22200.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/06/0671f65daadbd03c9d4b4007051e3642.bin b/common/runtime/cache/06/0671f65daadbd03c9d4b4007051e3642.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/06/0671f65daadbd03c9d4b4007051e3642.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/06/0673ee85819e7e66eac5de8de99f45c6.bin b/common/runtime/cache/06/0673ee85819e7e66eac5de8de99f45c6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/06/0673ee85819e7e66eac5de8de99f45c6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/06/069bf6fca6a830ecfc136e287b73fd9e.bin b/common/runtime/cache/06/069bf6fca6a830ecfc136e287b73fd9e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/06/069bf6fca6a830ecfc136e287b73fd9e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/06/06e71eda6a478101b156c27fb56c0218.bin b/common/runtime/cache/06/06e71eda6a478101b156c27fb56c0218.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/06/06e71eda6a478101b156c27fb56c0218.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/06/06eb80e8d6ce5b3d65004215d1b9cac3.bin b/common/runtime/cache/06/06eb80e8d6ce5b3d65004215d1b9cac3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/06/06eb80e8d6ce5b3d65004215d1b9cac3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/07/07102f17693cde49d2107f33700b3773.bin b/common/runtime/cache/07/07102f17693cde49d2107f33700b3773.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/07/07102f17693cde49d2107f33700b3773.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/07/074a00335f6c5d1f8bb94722bb636a34.bin b/common/runtime/cache/07/074a00335f6c5d1f8bb94722bb636a34.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/07/074a00335f6c5d1f8bb94722bb636a34.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/07/07510151184c228c4caa48bb4b67d170.bin b/common/runtime/cache/07/07510151184c228c4caa48bb4b67d170.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/07/07510151184c228c4caa48bb4b67d170.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/07/0752640207e58de5e949dff4c99e226d.bin b/common/runtime/cache/07/0752640207e58de5e949dff4c99e226d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/07/0752640207e58de5e949dff4c99e226d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/07/077586eb0c48837bf3e6a68f3f51bbf0.bin b/common/runtime/cache/07/077586eb0c48837bf3e6a68f3f51bbf0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/07/077586eb0c48837bf3e6a68f3f51bbf0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/07/079a34db49f355c686359c7101521b03.bin b/common/runtime/cache/07/079a34db49f355c686359c7101521b03.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/07/079a34db49f355c686359c7101521b03.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/07/07e0f54887025a4ac4fb57c6aa955d21.bin b/common/runtime/cache/07/07e0f54887025a4ac4fb57c6aa955d21.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/07/07e0f54887025a4ac4fb57c6aa955d21.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/07/07ea1695ebee7593e6b0f96ea834d404.bin b/common/runtime/cache/07/07ea1695ebee7593e6b0f96ea834d404.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/07/07ea1695ebee7593e6b0f96ea834d404.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/08/0800a63c95b7365c148ebad4fc08364f.bin b/common/runtime/cache/08/0800a63c95b7365c148ebad4fc08364f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/08/0800a63c95b7365c148ebad4fc08364f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/08/0803e647383c7e94a9ddc70c50c9d4bf.bin b/common/runtime/cache/08/0803e647383c7e94a9ddc70c50c9d4bf.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/08/0803e647383c7e94a9ddc70c50c9d4bf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/08/08138b03ea340433ce80e2c636ba3af0.bin b/common/runtime/cache/08/08138b03ea340433ce80e2c636ba3af0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/08/08138b03ea340433ce80e2c636ba3af0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/08/0840095047c2fb96e4c0fa443d28a6a0.bin b/common/runtime/cache/08/0840095047c2fb96e4c0fa443d28a6a0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/08/0840095047c2fb96e4c0fa443d28a6a0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/08/084e08185590fb2cfac9aa1bf2bbb5dc.bin b/common/runtime/cache/08/084e08185590fb2cfac9aa1bf2bbb5dc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/08/084e08185590fb2cfac9aa1bf2bbb5dc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/08/085059e594cbb055cbbcd6f36930fdd8.bin b/common/runtime/cache/08/085059e594cbb055cbbcd6f36930fdd8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/08/085059e594cbb055cbbcd6f36930fdd8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/08/08601efdce368bfe86fec1effd524caf.bin b/common/runtime/cache/08/08601efdce368bfe86fec1effd524caf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/08/08601efdce368bfe86fec1effd524caf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/08/08d6c9958f05a90ef3dd4e4a45cffee0.bin b/common/runtime/cache/08/08d6c9958f05a90ef3dd4e4a45cffee0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/08/08d6c9958f05a90ef3dd4e4a45cffee0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/08/08f0fa23bf440ca3fabbeace8d3b2c2c.bin b/common/runtime/cache/08/08f0fa23bf440ca3fabbeace8d3b2c2c.bin new file mode 100644 index 0000000..674ccca --- /dev/null +++ b/common/runtime/cache/08/08f0fa23bf440ca3fabbeace8d3b2c2c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";i:8;s:4:"path";s:10:"news/putin";}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/09/091a6f2fc2681f503b2b7115015848b5.bin b/common/runtime/cache/09/091a6f2fc2681f503b2b7115015848b5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/09/091a6f2fc2681f503b2b7115015848b5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/09/092003ffa45f8b806f447216045dc613.bin b/common/runtime/cache/09/092003ffa45f8b806f447216045dc613.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/09/092003ffa45f8b806f447216045dc613.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/09/0929f827bf5c610af1be3393ab6dd93a.bin b/common/runtime/cache/09/0929f827bf5c610af1be3393ab6dd93a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/09/0929f827bf5c610af1be3393ab6dd93a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/09/092a69f5f9d400404be867f74b3b5e35.bin b/common/runtime/cache/09/092a69f5f9d400404be867f74b3b5e35.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/09/092a69f5f9d400404be867f74b3b5e35.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/09/094de45c793fd41cbfb4f2de0793d130.bin b/common/runtime/cache/09/094de45c793fd41cbfb4f2de0793d130.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/09/094de45c793fd41cbfb4f2de0793d130.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/09/095b186cd745ae998f29fccfb452d013.bin b/common/runtime/cache/09/095b186cd745ae998f29fccfb452d013.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/09/095b186cd745ae998f29fccfb452d013.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/09/096aa4457955b194902158cb85011d0f.bin b/common/runtime/cache/09/096aa4457955b194902158cb85011d0f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/09/096aa4457955b194902158cb85011d0f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/09/096b2fc39a3578deb06b1a6bba1b16aa.bin b/common/runtime/cache/09/096b2fc39a3578deb06b1a6bba1b16aa.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/09/096b2fc39a3578deb06b1a6bba1b16aa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/09/0999f2f151cdd8e1b80938e69e5d2be2.bin b/common/runtime/cache/09/0999f2f151cdd8e1b80938e69e5d2be2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/09/0999f2f151cdd8e1b80938e69e5d2be2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/09/09b4c67e84e862d676e0a43cc0565a46.bin b/common/runtime/cache/09/09b4c67e84e862d676e0a43cc0565a46.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/09/09b4c67e84e862d676e0a43cc0565a46.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/09/09d882d7b9b74340906af6a8d06f7262.bin b/common/runtime/cache/09/09d882d7b9b74340906af6a8d06f7262.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/09/09d882d7b9b74340906af6a8d06f7262.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0a/0a04692e6cd6baccb6dc7eb0264bfab7.bin b/common/runtime/cache/0a/0a04692e6cd6baccb6dc7eb0264bfab7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0a/0a04692e6cd6baccb6dc7eb0264bfab7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0a/0a0d45bb5333a6861a24a888926cd64d.bin b/common/runtime/cache/0a/0a0d45bb5333a6861a24a888926cd64d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0a/0a0d45bb5333a6861a24a888926cd64d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0a/0a0ee87d5f67a0286cc24a95ca2fb739.bin b/common/runtime/cache/0a/0a0ee87d5f67a0286cc24a95ca2fb739.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0a/0a0ee87d5f67a0286cc24a95ca2fb739.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0a/0a1b41456806c1bd69f3beb62dde7ec7.bin b/common/runtime/cache/0a/0a1b41456806c1bd69f3beb62dde7ec7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0a/0a1b41456806c1bd69f3beb62dde7ec7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0a/0a499437d30bfd0493bddffb984b2823.bin b/common/runtime/cache/0a/0a499437d30bfd0493bddffb984b2823.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0a/0a499437d30bfd0493bddffb984b2823.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0a/0a4f5e8645f38c668180aef4b4a4a351.bin b/common/runtime/cache/0a/0a4f5e8645f38c668180aef4b4a4a351.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0a/0a4f5e8645f38c668180aef4b4a4a351.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0a/0a56d6d04d6610df39bae9ef952c3a9d.bin b/common/runtime/cache/0a/0a56d6d04d6610df39bae9ef952c3a9d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0a/0a56d6d04d6610df39bae9ef952c3a9d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0a/0a6e4b7f2b81f922251549500abfcbc5.bin b/common/runtime/cache/0a/0a6e4b7f2b81f922251549500abfcbc5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0a/0a6e4b7f2b81f922251549500abfcbc5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0a/0a98ae7d266b99e4462f2bf984d9b270.bin b/common/runtime/cache/0a/0a98ae7d266b99e4462f2bf984d9b270.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0a/0a98ae7d266b99e4462f2bf984d9b270.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0a/0abe3fcb91192b00458e186c3debcb62.bin b/common/runtime/cache/0a/0abe3fcb91192b00458e186c3debcb62.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0a/0abe3fcb91192b00458e186c3debcb62.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0a/0aca1d1354ec73087e1fd5a79db1edca.bin b/common/runtime/cache/0a/0aca1d1354ec73087e1fd5a79db1edca.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/0a/0aca1d1354ec73087e1fd5a79db1edca.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0a/0aed291675b11f2e312d434f9d5d7e9e.bin b/common/runtime/cache/0a/0aed291675b11f2e312d434f9d5d7e9e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/0a/0aed291675b11f2e312d434f9d5d7e9e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0a/0aeed54ccaf10a2b764bcee8317611fd.bin b/common/runtime/cache/0a/0aeed54ccaf10a2b764bcee8317611fd.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/0a/0aeed54ccaf10a2b764bcee8317611fd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0a/0aff6a052c30bbc02bf30d729935048a.bin b/common/runtime/cache/0a/0aff6a052c30bbc02bf30d729935048a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0a/0aff6a052c30bbc02bf30d729935048a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0a/0aff9ee6c73a0bd242daa6794209fd40.bin b/common/runtime/cache/0a/0aff9ee6c73a0bd242daa6794209fd40.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0a/0aff9ee6c73a0bd242daa6794209fd40.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0b/0b0bf3d558a4a52297eb12e13b9ae050.bin b/common/runtime/cache/0b/0b0bf3d558a4a52297eb12e13b9ae050.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0b/0b0bf3d558a4a52297eb12e13b9ae050.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0b/0b207e1c7d6d41f093ca60b7bb89a767.bin b/common/runtime/cache/0b/0b207e1c7d6d41f093ca60b7bb89a767.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0b/0b207e1c7d6d41f093ca60b7bb89a767.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0b/0b220b091977f92bf01d01db9b6251ca.bin b/common/runtime/cache/0b/0b220b091977f92bf01d01db9b6251ca.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0b/0b220b091977f92bf01d01db9b6251ca.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0b/0b382a7fef6754b1470b1f4b3dbb1f51.bin b/common/runtime/cache/0b/0b382a7fef6754b1470b1f4b3dbb1f51.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/0b/0b382a7fef6754b1470b1f4b3dbb1f51.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0b/0b6e0de3aa541e2a424650b044aecd5d.bin b/common/runtime/cache/0b/0b6e0de3aa541e2a424650b044aecd5d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0b/0b6e0de3aa541e2a424650b044aecd5d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0b/0b723a788664d6de67122a541ec0d73d.bin b/common/runtime/cache/0b/0b723a788664d6de67122a541ec0d73d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0b/0b723a788664d6de67122a541ec0d73d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0b/0b7db069e50e9d60b52aa93aa92ad7f0.bin b/common/runtime/cache/0b/0b7db069e50e9d60b52aa93aa92ad7f0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0b/0b7db069e50e9d60b52aa93aa92ad7f0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0b/0b8b844c44bd8a3c4eaa20a6c1a1a48c.bin b/common/runtime/cache/0b/0b8b844c44bd8a3c4eaa20a6c1a1a48c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0b/0b8b844c44bd8a3c4eaa20a6c1a1a48c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0b/0bbb879623f7de23a7b6c700c1b1eb51.bin b/common/runtime/cache/0b/0bbb879623f7de23a7b6c700c1b1eb51.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0b/0bbb879623f7de23a7b6c700c1b1eb51.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0b/0bc2020961d588ba77bf858d91c8e08c.bin b/common/runtime/cache/0b/0bc2020961d588ba77bf858d91c8e08c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/0b/0bc2020961d588ba77bf858d91c8e08c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0b/0bc6926b4c9a3cfcda39c203464c28d2.bin b/common/runtime/cache/0b/0bc6926b4c9a3cfcda39c203464c28d2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0b/0bc6926b4c9a3cfcda39c203464c28d2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0b/0bd24eff437fcfd9b6993ab72d5a64b6.bin b/common/runtime/cache/0b/0bd24eff437fcfd9b6993ab72d5a64b6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0b/0bd24eff437fcfd9b6993ab72d5a64b6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0b/0bd4156e504a6ed34514129e756c6040.bin b/common/runtime/cache/0b/0bd4156e504a6ed34514129e756c6040.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0b/0bd4156e504a6ed34514129e756c6040.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0b/0bdf61a3ea8f55f2bbcd64b7668309d2.bin b/common/runtime/cache/0b/0bdf61a3ea8f55f2bbcd64b7668309d2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0b/0bdf61a3ea8f55f2bbcd64b7668309d2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0c/0c0be77024663fc83fca28e833297a74.bin b/common/runtime/cache/0c/0c0be77024663fc83fca28e833297a74.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/0c/0c0be77024663fc83fca28e833297a74.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0c/0c0f6810c6c482d164dbe310dd9f51cd.bin b/common/runtime/cache/0c/0c0f6810c6c482d164dbe310dd9f51cd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0c/0c0f6810c6c482d164dbe310dd9f51cd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0c/0c1496361e3d47de4c09783090c98154.bin b/common/runtime/cache/0c/0c1496361e3d47de4c09783090c98154.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/0c/0c1496361e3d47de4c09783090c98154.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0c/0c228762a667327cd3d4519fb7ba4585.bin b/common/runtime/cache/0c/0c228762a667327cd3d4519fb7ba4585.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/0c/0c228762a667327cd3d4519fb7ba4585.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0c/0c3e959425cb83257fe7ee195d0b03a9.bin b/common/runtime/cache/0c/0c3e959425cb83257fe7ee195d0b03a9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0c/0c3e959425cb83257fe7ee195d0b03a9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0c/0c482d54aaff6833c93d93f76aa5f349.bin b/common/runtime/cache/0c/0c482d54aaff6833c93d93f76aa5f349.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/0c/0c482d54aaff6833c93d93f76aa5f349.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0c/0c497f84b15a3a393abe7a7f3dfb179c.bin b/common/runtime/cache/0c/0c497f84b15a3a393abe7a7f3dfb179c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0c/0c497f84b15a3a393abe7a7f3dfb179c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0c/0c55cbe560da92f67c7ed100bb7621fe.bin b/common/runtime/cache/0c/0c55cbe560da92f67c7ed100bb7621fe.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0c/0c55cbe560da92f67c7ed100bb7621fe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0c/0c5d8e44657067c8167afdbabc2f9630.bin b/common/runtime/cache/0c/0c5d8e44657067c8167afdbabc2f9630.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0c/0c5d8e44657067c8167afdbabc2f9630.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0c/0c65ffbba2654ee423175d16e4591f59.bin b/common/runtime/cache/0c/0c65ffbba2654ee423175d16e4591f59.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0c/0c65ffbba2654ee423175d16e4591f59.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0c/0c78a0bb889a14c2a69001487206c734.bin b/common/runtime/cache/0c/0c78a0bb889a14c2a69001487206c734.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0c/0c78a0bb889a14c2a69001487206c734.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0c/0cb94887fb68d7a375fcb2814333634d.bin b/common/runtime/cache/0c/0cb94887fb68d7a375fcb2814333634d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/0c/0cb94887fb68d7a375fcb2814333634d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0c/0ccd962c52fdc5cfc96935765fa195ea.bin b/common/runtime/cache/0c/0ccd962c52fdc5cfc96935765fa195ea.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0c/0ccd962c52fdc5cfc96935765fa195ea.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0c/0cd86a3636f46e1405d942088de2f129.bin b/common/runtime/cache/0c/0cd86a3636f46e1405d942088de2f129.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0c/0cd86a3636f46e1405d942088de2f129.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0c/0ce16c93936fad517e5ab4d083e60e7b.bin b/common/runtime/cache/0c/0ce16c93936fad517e5ab4d083e60e7b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0c/0ce16c93936fad517e5ab4d083e60e7b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0c/0cf019311ff4d7b608bc3428bcc107a4.bin b/common/runtime/cache/0c/0cf019311ff4d7b608bc3428bcc107a4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0c/0cf019311ff4d7b608bc3428bcc107a4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0d/0d00ac5833a3e879c1751370d23bac9e.bin b/common/runtime/cache/0d/0d00ac5833a3e879c1751370d23bac9e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/0d/0d00ac5833a3e879c1751370d23bac9e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0d/0d303ff82060e425aa562befdc54f937.bin b/common/runtime/cache/0d/0d303ff82060e425aa562befdc54f937.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0d/0d303ff82060e425aa562befdc54f937.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0d/0d521a65ac857b707dc9df39cc518fad.bin b/common/runtime/cache/0d/0d521a65ac857b707dc9df39cc518fad.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0d/0d521a65ac857b707dc9df39cc518fad.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0d/0d7207267faa160735d1dead6a2afed7.bin b/common/runtime/cache/0d/0d7207267faa160735d1dead6a2afed7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0d/0d7207267faa160735d1dead6a2afed7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0d/0d78e79dc07c823d40b9021950db6c80.bin b/common/runtime/cache/0d/0d78e79dc07c823d40b9021950db6c80.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0d/0d78e79dc07c823d40b9021950db6c80.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0d/0d957ffdb1689febaf06fd8f956aeb62.bin b/common/runtime/cache/0d/0d957ffdb1689febaf06fd8f956aeb62.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0d/0d957ffdb1689febaf06fd8f956aeb62.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0d/0daeb896d97c72b96c8b2fae882da610.bin b/common/runtime/cache/0d/0daeb896d97c72b96c8b2fae882da610.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0d/0daeb896d97c72b96c8b2fae882da610.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0d/0dafb844114133cfca5b15a68cd57513.bin b/common/runtime/cache/0d/0dafb844114133cfca5b15a68cd57513.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0d/0dafb844114133cfca5b15a68cd57513.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0d/0dd3f8fa991ab101453442ffc42bf6c6.bin b/common/runtime/cache/0d/0dd3f8fa991ab101453442ffc42bf6c6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0d/0dd3f8fa991ab101453442ffc42bf6c6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0e/0e2a44fcc7b5df68e8327040e8b55914.bin b/common/runtime/cache/0e/0e2a44fcc7b5df68e8327040e8b55914.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0e/0e2a44fcc7b5df68e8327040e8b55914.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0e/0e43eac3f7a8e0eb94d1514b90a3725e.bin b/common/runtime/cache/0e/0e43eac3f7a8e0eb94d1514b90a3725e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/0e/0e43eac3f7a8e0eb94d1514b90a3725e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0e/0e530552fdeaa581fe61d6406bcdc95d.bin b/common/runtime/cache/0e/0e530552fdeaa581fe61d6406bcdc95d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0e/0e530552fdeaa581fe61d6406bcdc95d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0e/0ea4bd9943c1e7b5ed2d4ff71174c74a.bin b/common/runtime/cache/0e/0ea4bd9943c1e7b5ed2d4ff71174c74a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0e/0ea4bd9943c1e7b5ed2d4ff71174c74a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0e/0eb5aa49a95d34a3963cf5b88313d898.bin b/common/runtime/cache/0e/0eb5aa49a95d34a3963cf5b88313d898.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0e/0eb5aa49a95d34a3963cf5b88313d898.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0e/0ecf0c60a4ebeabefca1f089fee5ffd3.bin b/common/runtime/cache/0e/0ecf0c60a4ebeabefca1f089fee5ffd3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/0e/0ecf0c60a4ebeabefca1f089fee5ffd3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0e/0ed1a03e24c030de36cf9e9ca6070607.bin b/common/runtime/cache/0e/0ed1a03e24c030de36cf9e9ca6070607.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0e/0ed1a03e24c030de36cf9e9ca6070607.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0e/0ed59273040e922faf118b2f76499745.bin b/common/runtime/cache/0e/0ed59273040e922faf118b2f76499745.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/0e/0ed59273040e922faf118b2f76499745.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0e/0ede23b943b30de467d0a73251f183d2.bin b/common/runtime/cache/0e/0ede23b943b30de467d0a73251f183d2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0e/0ede23b943b30de467d0a73251f183d2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0e/0eec905f2e70ee365a44853aa07ba840.bin b/common/runtime/cache/0e/0eec905f2e70ee365a44853aa07ba840.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0e/0eec905f2e70ee365a44853aa07ba840.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0e/0ef234b9f9be2ebc34f2d6547ae0382a.bin b/common/runtime/cache/0e/0ef234b9f9be2ebc34f2d6547ae0382a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0e/0ef234b9f9be2ebc34f2d6547ae0382a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0f/0f6e55b740d62c58a138f406845e97c0.bin b/common/runtime/cache/0f/0f6e55b740d62c58a138f406845e97c0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0f/0f6e55b740d62c58a138f406845e97c0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0f/0f860e44397e9fd42f71101a072a06a0.bin b/common/runtime/cache/0f/0f860e44397e9fd42f71101a072a06a0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0f/0f860e44397e9fd42f71101a072a06a0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0f/0f8c4e2b93a1f809eaf5e14128af825c.bin b/common/runtime/cache/0f/0f8c4e2b93a1f809eaf5e14128af825c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0f/0f8c4e2b93a1f809eaf5e14128af825c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0f/0f8d8ce28bcbf2c9a93cccfd490df6ee.bin b/common/runtime/cache/0f/0f8d8ce28bcbf2c9a93cccfd490df6ee.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0f/0f8d8ce28bcbf2c9a93cccfd490df6ee.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0f/0f9b785fe60e2df21ab95de4fcaa2300.bin b/common/runtime/cache/0f/0f9b785fe60e2df21ab95de4fcaa2300.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0f/0f9b785fe60e2df21ab95de4fcaa2300.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0f/0fc3019f67d44055b22a4b7503fc574f.bin b/common/runtime/cache/0f/0fc3019f67d44055b22a4b7503fc574f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0f/0fc3019f67d44055b22a4b7503fc574f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0f/0fd95e7ed00142741efacd977565bc82.bin b/common/runtime/cache/0f/0fd95e7ed00142741efacd977565bc82.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0f/0fd95e7ed00142741efacd977565bc82.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0f/0fd9630c0ae88c315eb66535b7f42cb9.bin b/common/runtime/cache/0f/0fd9630c0ae88c315eb66535b7f42cb9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/0f/0fd9630c0ae88c315eb66535b7f42cb9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/0f/0fdda0eb972d7f574d52fb2cd3c2c59d.bin b/common/runtime/cache/0f/0fdda0eb972d7f574d52fb2cd3c2c59d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/0f/0fdda0eb972d7f574d52fb2cd3c2c59d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/10/1000bcfb612204fd4e3c07c914834343.bin b/common/runtime/cache/10/1000bcfb612204fd4e3c07c914834343.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/10/1000bcfb612204fd4e3c07c914834343.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/10/101b458f85363bde329aa80dff0aa2ae.bin b/common/runtime/cache/10/101b458f85363bde329aa80dff0aa2ae.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/10/101b458f85363bde329aa80dff0aa2ae.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/10/103d8fa682144e97a4a80d36aa90eb5a.bin b/common/runtime/cache/10/103d8fa682144e97a4a80d36aa90eb5a.bin new file mode 100644 index 0000000..7ce20ce --- /dev/null +++ b/common/runtime/cache/10/103d8fa682144e97a4a80d36aa90eb5a.bin @@ -0,0 +1 @@ +a:2:{i:0;s:13:"news/grizmann";i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/10/104de904bcb933b863e4d866b8dd41a1.bin b/common/runtime/cache/10/104de904bcb933b863e4d866b8dd41a1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/10/104de904bcb933b863e4d866b8dd41a1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/10/105c13b21097ab1c6d9f55bc36dfddbe.bin b/common/runtime/cache/10/105c13b21097ab1c6d9f55bc36dfddbe.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/10/105c13b21097ab1c6d9f55bc36dfddbe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/10/1084fadbb04d29aebff54575efbd6083.bin b/common/runtime/cache/10/1084fadbb04d29aebff54575efbd6083.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/10/1084fadbb04d29aebff54575efbd6083.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/10/10940fbf339daed30ecd677df3a061c5.bin b/common/runtime/cache/10/10940fbf339daed30ecd677df3a061c5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/10/10940fbf339daed30ecd677df3a061c5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/10/1095ad0f40198c8af1cfec829cc694da.bin b/common/runtime/cache/10/1095ad0f40198c8af1cfec829cc694da.bin new file mode 100644 index 0000000..23abbdf --- /dev/null +++ b/common/runtime/cache/10/1095ad0f40198c8af1cfec829cc694da.bin @@ -0,0 +1 @@ +a:2:{i:0;s:9:"post/news";i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/10/109824866897a2b0e4bd3ce62652c218.bin b/common/runtime/cache/10/109824866897a2b0e4bd3ce62652c218.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/10/109824866897a2b0e4bd3ce62652c218.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/10/10dae8628fd24e71bd4d8e53edd18ecf.bin b/common/runtime/cache/10/10dae8628fd24e71bd4d8e53edd18ecf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/10/10dae8628fd24e71bd4d8e53edd18ecf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/11/1126cf69eb69f1056411b44e19e574d3.bin b/common/runtime/cache/11/1126cf69eb69f1056411b44e19e574d3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/11/1126cf69eb69f1056411b44e19e574d3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/11/1135788181d59de2366b5405711a3144.bin b/common/runtime/cache/11/1135788181d59de2366b5405711a3144.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/11/1135788181d59de2366b5405711a3144.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/11/113a524c7dd67066d971403acbecf4bd.bin b/common/runtime/cache/11/113a524c7dd67066d971403acbecf4bd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/11/113a524c7dd67066d971403acbecf4bd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/11/1144711fd536f8159066c8417c8d3f76.bin b/common/runtime/cache/11/1144711fd536f8159066c8417c8d3f76.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/11/1144711fd536f8159066c8417c8d3f76.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/11/1156d09d9901e78e8ebf7a47b2a6cf8b.bin b/common/runtime/cache/11/1156d09d9901e78e8ebf7a47b2a6cf8b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/11/1156d09d9901e78e8ebf7a47b2a6cf8b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/11/11573882dc7c4d38db1706fb4df49037.bin b/common/runtime/cache/11/11573882dc7c4d38db1706fb4df49037.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/11/11573882dc7c4d38db1706fb4df49037.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/11/1160c38a53469a0643d2165b33356e50.bin b/common/runtime/cache/11/1160c38a53469a0643d2165b33356e50.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/11/1160c38a53469a0643d2165b33356e50.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/11/1162b37fbdad3063bb33237d9b1005d7.bin b/common/runtime/cache/11/1162b37fbdad3063bb33237d9b1005d7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/11/1162b37fbdad3063bb33237d9b1005d7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/11/11652fac8e90dcd833f6b7dedd0b3b8a.bin b/common/runtime/cache/11/11652fac8e90dcd833f6b7dedd0b3b8a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/11/11652fac8e90dcd833f6b7dedd0b3b8a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/11/116e82805c399ec246ab8ea3e0b670eb.bin b/common/runtime/cache/11/116e82805c399ec246ab8ea3e0b670eb.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/11/116e82805c399ec246ab8ea3e0b670eb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/11/117f94c9e37a350a5e430b1079f4d2db.bin b/common/runtime/cache/11/117f94c9e37a350a5e430b1079f4d2db.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/11/117f94c9e37a350a5e430b1079f4d2db.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/11/1196383e61d91f0446d5b3232a55342c.bin b/common/runtime/cache/11/1196383e61d91f0446d5b3232a55342c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/11/1196383e61d91f0446d5b3232a55342c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/11/11e0654e0f2502d5182fbdd46bd31941.bin b/common/runtime/cache/11/11e0654e0f2502d5182fbdd46bd31941.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/11/11e0654e0f2502d5182fbdd46bd31941.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/12/124dc508695af7f55205fff9823db812.bin b/common/runtime/cache/12/124dc508695af7f55205fff9823db812.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/12/124dc508695af7f55205fff9823db812.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/12/125aa0238350d692e4e5324e4a1e44ad.bin b/common/runtime/cache/12/125aa0238350d692e4e5324e4a1e44ad.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/12/125aa0238350d692e4e5324e4a1e44ad.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/12/128ad8b3da7224c966a6a3d129583edf.bin b/common/runtime/cache/12/128ad8b3da7224c966a6a3d129583edf.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/12/128ad8b3da7224c966a6a3d129583edf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/12/12a50bad18130d6e06f5e38500364d41.bin b/common/runtime/cache/12/12a50bad18130d6e06f5e38500364d41.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/12/12a50bad18130d6e06f5e38500364d41.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/12/12a6800d36e97293b9da53dd156a527d.bin b/common/runtime/cache/12/12a6800d36e97293b9da53dd156a527d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/12/12a6800d36e97293b9da53dd156a527d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/13/1314ecf225c79c7ade8d35d8e509ea2a.bin b/common/runtime/cache/13/1314ecf225c79c7ade8d35d8e509ea2a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/13/1314ecf225c79c7ade8d35d8e509ea2a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/13/1316cda578bc5d8aed883febd71048c5.bin b/common/runtime/cache/13/1316cda578bc5d8aed883febd71048c5.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/13/1316cda578bc5d8aed883febd71048c5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/13/1328cd5f2ba3af501ea4fcf9e2f1f721.bin b/common/runtime/cache/13/1328cd5f2ba3af501ea4fcf9e2f1f721.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/13/1328cd5f2ba3af501ea4fcf9e2f1f721.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/13/1332f728bb57917daf66a75bdbd4b991.bin b/common/runtime/cache/13/1332f728bb57917daf66a75bdbd4b991.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/13/1332f728bb57917daf66a75bdbd4b991.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/13/13337b562f4c70cb24c73c0613a06307.bin b/common/runtime/cache/13/13337b562f4c70cb24c73c0613a06307.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/13/13337b562f4c70cb24c73c0613a06307.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/13/1340888022732214c8ced339221f33ee.bin b/common/runtime/cache/13/1340888022732214c8ced339221f33ee.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/13/1340888022732214c8ced339221f33ee.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/13/13499f2f3d6836816d5ea19cbfd68aed.bin b/common/runtime/cache/13/13499f2f3d6836816d5ea19cbfd68aed.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/13/13499f2f3d6836816d5ea19cbfd68aed.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/13/136947158305b6dffd0e4230c8452694.bin b/common/runtime/cache/13/136947158305b6dffd0e4230c8452694.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/13/136947158305b6dffd0e4230c8452694.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/13/13aac04d1b5de0f1b9776e5d20110a4d.bin b/common/runtime/cache/13/13aac04d1b5de0f1b9776e5d20110a4d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/13/13aac04d1b5de0f1b9776e5d20110a4d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/13/13ad77427f62ebfcce51a9d9c3156d97.bin b/common/runtime/cache/13/13ad77427f62ebfcce51a9d9c3156d97.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/13/13ad77427f62ebfcce51a9d9c3156d97.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/13/13bd2786c791f1a4de9288dbaa902e0e.bin b/common/runtime/cache/13/13bd2786c791f1a4de9288dbaa902e0e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/13/13bd2786c791f1a4de9288dbaa902e0e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/14/142a1422be320aad50931e7652bd91bc.bin b/common/runtime/cache/14/142a1422be320aad50931e7652bd91bc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/14/142a1422be320aad50931e7652bd91bc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/14/1434421700c2f19dbdc3b4e728c325d8.bin b/common/runtime/cache/14/1434421700c2f19dbdc3b4e728c325d8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/14/1434421700c2f19dbdc3b4e728c325d8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/14/146300c1e1be08fb7f7d9f30b5e4bdd9.bin b/common/runtime/cache/14/146300c1e1be08fb7f7d9f30b5e4bdd9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/14/146300c1e1be08fb7f7d9f30b5e4bdd9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/14/1471becbf11f6fc3b473e90fa77ae80b.bin b/common/runtime/cache/14/1471becbf11f6fc3b473e90fa77ae80b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/14/1471becbf11f6fc3b473e90fa77ae80b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/14/14b5271834a0a75fc0122881b1d73d15.bin b/common/runtime/cache/14/14b5271834a0a75fc0122881b1d73d15.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/14/14b5271834a0a75fc0122881b1d73d15.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/14/14d9da614766915742f7da7517fab0e0.bin b/common/runtime/cache/14/14d9da614766915742f7da7517fab0e0.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/14/14d9da614766915742f7da7517fab0e0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/14/14e90cb02f08dcbb6af4ba6a6c993946.bin b/common/runtime/cache/14/14e90cb02f08dcbb6af4ba6a6c993946.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/14/14e90cb02f08dcbb6af4ba6a6c993946.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/15/152ed6729a70febce192e0dfd743b923.bin b/common/runtime/cache/15/152ed6729a70febce192e0dfd743b923.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/15/152ed6729a70febce192e0dfd743b923.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/15/1535c1e53254b7e5af3c0d55969e5aaa.bin b/common/runtime/cache/15/1535c1e53254b7e5af3c0d55969e5aaa.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/15/1535c1e53254b7e5af3c0d55969e5aaa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/15/156ff626b97a9e73c6c09b7357b8a18d.bin b/common/runtime/cache/15/156ff626b97a9e73c6c09b7357b8a18d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/15/156ff626b97a9e73c6c09b7357b8a18d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/15/1589b00ea24821fe11d8cf225eb510b8.bin b/common/runtime/cache/15/1589b00ea24821fe11d8cf225eb510b8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/15/1589b00ea24821fe11d8cf225eb510b8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/15/15af5a831d707854c99745c7b5cd007a.bin b/common/runtime/cache/15/15af5a831d707854c99745c7b5cd007a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/15/15af5a831d707854c99745c7b5cd007a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/15/15b2eaab43c75c311dd256ff288a557c.bin b/common/runtime/cache/15/15b2eaab43c75c311dd256ff288a557c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/15/15b2eaab43c75c311dd256ff288a557c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/15/15d5a60de3f4a7d896b70cb2d4c6bbb4.bin b/common/runtime/cache/15/15d5a60de3f4a7d896b70cb2d4c6bbb4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/15/15d5a60de3f4a7d896b70cb2d4c6bbb4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/15/15d62f981d30a63b1982dd4c19e97ca3.bin b/common/runtime/cache/15/15d62f981d30a63b1982dd4c19e97ca3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/15/15d62f981d30a63b1982dd4c19e97ca3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/15/15d89677579feb6acab4f2957f124210.bin b/common/runtime/cache/15/15d89677579feb6acab4f2957f124210.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/15/15d89677579feb6acab4f2957f124210.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/15/15deb636211a5ee94fc1d1d6ff08f6fe.bin b/common/runtime/cache/15/15deb636211a5ee94fc1d1d6ff08f6fe.bin new file mode 100644 index 0000000..3284c13 --- /dev/null +++ b/common/runtime/cache/15/15deb636211a5ee94fc1d1d6ff08f6fe.bin @@ -0,0 +1 @@ +a:2:{i:0;s:27:"post/category/news/politics";i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/15/15e6031bfa749d8704565aebecee117c.bin b/common/runtime/cache/15/15e6031bfa749d8704565aebecee117c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/15/15e6031bfa749d8704565aebecee117c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/15/15f3fe21f61548127cbb1f7ce9ca439f.bin b/common/runtime/cache/15/15f3fe21f61548127cbb1f7ce9ca439f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/15/15f3fe21f61548127cbb1f7ce9ca439f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/15/15ffe6afa9e8d5a745b823b9b3b682e8.bin b/common/runtime/cache/15/15ffe6afa9e8d5a745b823b9b3b682e8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/15/15ffe6afa9e8d5a745b823b9b3b682e8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/16/16106500e235317a2468c93da00d79f2.bin b/common/runtime/cache/16/16106500e235317a2468c93da00d79f2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/16/16106500e235317a2468c93da00d79f2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/16/1612b969f0ef258cf76bc765837038c7.bin b/common/runtime/cache/16/1612b969f0ef258cf76bc765837038c7.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/16/1612b969f0ef258cf76bc765837038c7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/16/164f2877abbc2eddf42d4dfe98222eed.bin b/common/runtime/cache/16/164f2877abbc2eddf42d4dfe98222eed.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/16/164f2877abbc2eddf42d4dfe98222eed.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/16/1653d20a01a32091eec2a1715352d73d.bin b/common/runtime/cache/16/1653d20a01a32091eec2a1715352d73d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/16/1653d20a01a32091eec2a1715352d73d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/16/165ee92106880b0fd008b37ebf05eaa4.bin b/common/runtime/cache/16/165ee92106880b0fd008b37ebf05eaa4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/16/165ee92106880b0fd008b37ebf05eaa4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/16/1666e83eecd548eb7b50a64dfc9bf08b.bin b/common/runtime/cache/16/1666e83eecd548eb7b50a64dfc9bf08b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/16/1666e83eecd548eb7b50a64dfc9bf08b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/16/166b97736b1e98de79bc95022492576c.bin b/common/runtime/cache/16/166b97736b1e98de79bc95022492576c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/16/166b97736b1e98de79bc95022492576c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/16/1689e4f49eb8f9eace2afb37d2948f98.bin b/common/runtime/cache/16/1689e4f49eb8f9eace2afb37d2948f98.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/16/1689e4f49eb8f9eace2afb37d2948f98.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/16/168fb1739988d1ddb63b6201245bc6cc.bin b/common/runtime/cache/16/168fb1739988d1ddb63b6201245bc6cc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/16/168fb1739988d1ddb63b6201245bc6cc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/16/16964dfce509ba0f9d2d40437a9b33e2.bin b/common/runtime/cache/16/16964dfce509ba0f9d2d40437a9b33e2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/16/16964dfce509ba0f9d2d40437a9b33e2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/16/16b679a7728b282f1ab2ec71176331e4.bin b/common/runtime/cache/16/16b679a7728b282f1ab2ec71176331e4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/16/16b679a7728b282f1ab2ec71176331e4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/16/16d9982b11ac6390083df13c76f2ed91.bin b/common/runtime/cache/16/16d9982b11ac6390083df13c76f2ed91.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/16/16d9982b11ac6390083df13c76f2ed91.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/17/17183f94f38a238e090935deae005e92.bin b/common/runtime/cache/17/17183f94f38a238e090935deae005e92.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/17/17183f94f38a238e090935deae005e92.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/17/171d796300069d5ce38534998d3346b9.bin b/common/runtime/cache/17/171d796300069d5ce38534998d3346b9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/17/171d796300069d5ce38534998d3346b9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/17/175d29bca8730047ab257c893d907cd7.bin b/common/runtime/cache/17/175d29bca8730047ab257c893d907cd7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/17/175d29bca8730047ab257c893d907cd7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/17/175d79e6c81ab6bb4c46d636a435c07e.bin b/common/runtime/cache/17/175d79e6c81ab6bb4c46d636a435c07e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/17/175d79e6c81ab6bb4c46d636a435c07e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/17/176b22041e39326f1448d723a2a30c3e.bin b/common/runtime/cache/17/176b22041e39326f1448d723a2a30c3e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/17/176b22041e39326f1448d723a2a30c3e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/17/176cc85f12292b278eff287733ec4030.bin b/common/runtime/cache/17/176cc85f12292b278eff287733ec4030.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/17/176cc85f12292b278eff287733ec4030.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/17/177238e490c100f815a3a0a34fe2f7fb.bin b/common/runtime/cache/17/177238e490c100f815a3a0a34fe2f7fb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/17/177238e490c100f815a3a0a34fe2f7fb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/17/17820bf4f53eea9811a92a624f75d7b2.bin b/common/runtime/cache/17/17820bf4f53eea9811a92a624f75d7b2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/17/17820bf4f53eea9811a92a624f75d7b2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/17/17a293b48a35ae197a364a4afef9ff8b.bin b/common/runtime/cache/17/17a293b48a35ae197a364a4afef9ff8b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/17/17a293b48a35ae197a364a4afef9ff8b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/17/17a42b326d69e2737fa3e1e2ef917d2a.bin b/common/runtime/cache/17/17a42b326d69e2737fa3e1e2ef917d2a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/17/17a42b326d69e2737fa3e1e2ef917d2a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/17/17b2a343f76cc242255f171b5e2b7ecb.bin b/common/runtime/cache/17/17b2a343f76cc242255f171b5e2b7ecb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/17/17b2a343f76cc242255f171b5e2b7ecb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/17/17c26d74efb30d42af8f724afbb3334b.bin b/common/runtime/cache/17/17c26d74efb30d42af8f724afbb3334b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/17/17c26d74efb30d42af8f724afbb3334b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/17/17f2a5e6d6f49c67324cc4d7df7e7de0.bin b/common/runtime/cache/17/17f2a5e6d6f49c67324cc4d7df7e7de0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/17/17f2a5e6d6f49c67324cc4d7df7e7de0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/18/1814dc707baeb5d0cb928e1be2ad2ba1.bin b/common/runtime/cache/18/1814dc707baeb5d0cb928e1be2ad2ba1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/18/1814dc707baeb5d0cb928e1be2ad2ba1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/18/18283a74b731bef9011adf1943c0f5eb.bin b/common/runtime/cache/18/18283a74b731bef9011adf1943c0f5eb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/18/18283a74b731bef9011adf1943c0f5eb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/18/182885ab50c8b7fef09b0cc49d20f3f3.bin b/common/runtime/cache/18/182885ab50c8b7fef09b0cc49d20f3f3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/18/182885ab50c8b7fef09b0cc49d20f3f3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/18/182c054b7b23921e98e267ceca4944ba.bin b/common/runtime/cache/18/182c054b7b23921e98e267ceca4944ba.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/18/182c054b7b23921e98e267ceca4944ba.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/18/1831d02f4aad4a607eff4432e2f9c3b9.bin b/common/runtime/cache/18/1831d02f4aad4a607eff4432e2f9c3b9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/18/1831d02f4aad4a607eff4432e2f9c3b9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/18/1837c4c9122b72542b3394ed699c932b.bin b/common/runtime/cache/18/1837c4c9122b72542b3394ed699c932b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/18/1837c4c9122b72542b3394ed699c932b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/18/185a44639f3ddba86a5686b07b8f9d04.bin b/common/runtime/cache/18/185a44639f3ddba86a5686b07b8f9d04.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/18/185a44639f3ddba86a5686b07b8f9d04.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/18/185c86c834e60b9f15e75509dfc0cade.bin b/common/runtime/cache/18/185c86c834e60b9f15e75509dfc0cade.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/18/185c86c834e60b9f15e75509dfc0cade.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/18/186228b35e8644e58ca478689bc97774.bin b/common/runtime/cache/18/186228b35e8644e58ca478689bc97774.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/18/186228b35e8644e58ca478689bc97774.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/18/1866c38e6efd12ecfffc9b846e73ea44.bin b/common/runtime/cache/18/1866c38e6efd12ecfffc9b846e73ea44.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/18/1866c38e6efd12ecfffc9b846e73ea44.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/18/18911267895ca8a324b0598600b5c54f.bin b/common/runtime/cache/18/18911267895ca8a324b0598600b5c54f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/18/18911267895ca8a324b0598600b5c54f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/18/18962305f074b71aa302a8df93a8df15.bin b/common/runtime/cache/18/18962305f074b71aa302a8df93a8df15.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/18/18962305f074b71aa302a8df93a8df15.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/18/189f64ceca99fe59f55064d9a196ce1a.bin b/common/runtime/cache/18/189f64ceca99fe59f55064d9a196ce1a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/18/189f64ceca99fe59f55064d9a196ce1a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/18/18aae51b96e940505d2fd056a2d5cd6c.bin b/common/runtime/cache/18/18aae51b96e940505d2fd056a2d5cd6c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/18/18aae51b96e940505d2fd056a2d5cd6c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/18/18d2fe4ffc19227f13e1f7178940d6e2.bin b/common/runtime/cache/18/18d2fe4ffc19227f13e1f7178940d6e2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/18/18d2fe4ffc19227f13e1f7178940d6e2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/190d4198f2f7657062cd9568cb3a4179.bin b/common/runtime/cache/19/190d4198f2f7657062cd9568cb3a4179.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/19/190d4198f2f7657062cd9568cb3a4179.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/1915421effbdf2895d36c0c1861ef92a.bin b/common/runtime/cache/19/1915421effbdf2895d36c0c1861ef92a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/19/1915421effbdf2895d36c0c1861ef92a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/1919a9373f37d2243b209a3c76366b8e.bin b/common/runtime/cache/19/1919a9373f37d2243b209a3c76366b8e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/19/1919a9373f37d2243b209a3c76366b8e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/1922f2b96f55ffee654dbe9d120a233b.bin b/common/runtime/cache/19/1922f2b96f55ffee654dbe9d120a233b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/19/1922f2b96f55ffee654dbe9d120a233b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/1927e8c7ca5a4a3788ab3ee53e7c7c50.bin b/common/runtime/cache/19/1927e8c7ca5a4a3788ab3ee53e7c7c50.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/19/1927e8c7ca5a4a3788ab3ee53e7c7c50.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/19479922a61f5b3e687a70138bdbad43.bin b/common/runtime/cache/19/19479922a61f5b3e687a70138bdbad43.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/19/19479922a61f5b3e687a70138bdbad43.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/194fff8cfd5f9a12291518d25eb34375.bin b/common/runtime/cache/19/194fff8cfd5f9a12291518d25eb34375.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/19/194fff8cfd5f9a12291518d25eb34375.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/19638f35b235cf3395c199db50d4cfe6.bin b/common/runtime/cache/19/19638f35b235cf3395c199db50d4cfe6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/19/19638f35b235cf3395c199db50d4cfe6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/19666cb915bfbb1e0ba750151e5dea3e.bin b/common/runtime/cache/19/19666cb915bfbb1e0ba750151e5dea3e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/19/19666cb915bfbb1e0ba750151e5dea3e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/19685aa6ab61cc6b04bab30328291ab1.bin b/common/runtime/cache/19/19685aa6ab61cc6b04bab30328291ab1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/19/19685aa6ab61cc6b04bab30328291ab1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/198d0fb6c4749472291ef279dd79bd18.bin b/common/runtime/cache/19/198d0fb6c4749472291ef279dd79bd18.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/19/198d0fb6c4749472291ef279dd79bd18.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/199cbe1f8affcd6f6fc28acf896a7ce4.bin b/common/runtime/cache/19/199cbe1f8affcd6f6fc28acf896a7ce4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/19/199cbe1f8affcd6f6fc28acf896a7ce4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/199f5f372ccb7b5bd59dd0446f081320.bin b/common/runtime/cache/19/199f5f372ccb7b5bd59dd0446f081320.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/19/199f5f372ccb7b5bd59dd0446f081320.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/19c8ff9b315c9f9746c3e177233976a6.bin b/common/runtime/cache/19/19c8ff9b315c9f9746c3e177233976a6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/19/19c8ff9b315c9f9746c3e177233976a6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/19cac5aa4957c13189b71388b59cdff9.bin b/common/runtime/cache/19/19cac5aa4957c13189b71388b59cdff9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/19/19cac5aa4957c13189b71388b59cdff9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/19d850a01922a1615d3fee8345afa8e0.bin b/common/runtime/cache/19/19d850a01922a1615d3fee8345afa8e0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/19/19d850a01922a1615d3fee8345afa8e0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/19daac080a8a5b271fd4d73818bd49d1.bin b/common/runtime/cache/19/19daac080a8a5b271fd4d73818bd49d1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/19/19daac080a8a5b271fd4d73818bd49d1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/19/19e78d5354688d66ebd0668817c40b0e.bin b/common/runtime/cache/19/19e78d5354688d66ebd0668817c40b0e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/19/19e78d5354688d66ebd0668817c40b0e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1a/1a4bbd9873890705cd2ab03a657e9fa5.bin b/common/runtime/cache/1a/1a4bbd9873890705cd2ab03a657e9fa5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1a/1a4bbd9873890705cd2ab03a657e9fa5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1a/1a65848d5bd11db88c90d564229cd26e.bin b/common/runtime/cache/1a/1a65848d5bd11db88c90d564229cd26e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1a/1a65848d5bd11db88c90d564229cd26e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1a/1a82d685a5414bfa3f8c9a7a639ef004.bin b/common/runtime/cache/1a/1a82d685a5414bfa3f8c9a7a639ef004.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1a/1a82d685a5414bfa3f8c9a7a639ef004.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1a/1ab0e9f5bfbd2bed883e5297f5533f4d.bin b/common/runtime/cache/1a/1ab0e9f5bfbd2bed883e5297f5533f4d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1a/1ab0e9f5bfbd2bed883e5297f5533f4d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1a/1ac85b618261eed92107bbba25b97951.bin b/common/runtime/cache/1a/1ac85b618261eed92107bbba25b97951.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1a/1ac85b618261eed92107bbba25b97951.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1a/1ae683abb7a4d0a9d77dd0e0bdc64e18.bin b/common/runtime/cache/1a/1ae683abb7a4d0a9d77dd0e0bdc64e18.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/1a/1ae683abb7a4d0a9d77dd0e0bdc64e18.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1b/1b18af2b2c231cc6b8f2feb75e43eb0b.bin b/common/runtime/cache/1b/1b18af2b2c231cc6b8f2feb75e43eb0b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1b/1b18af2b2c231cc6b8f2feb75e43eb0b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1b/1b38ba112023bc503c6b33d65bea8ee1.bin b/common/runtime/cache/1b/1b38ba112023bc503c6b33d65bea8ee1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1b/1b38ba112023bc503c6b33d65bea8ee1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1b/1b652e59a0ef8bdceca1f7a791c83a7d.bin b/common/runtime/cache/1b/1b652e59a0ef8bdceca1f7a791c83a7d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1b/1b652e59a0ef8bdceca1f7a791c83a7d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1b/1b76c7fd12f01a1160e90a9e5ff377cf.bin b/common/runtime/cache/1b/1b76c7fd12f01a1160e90a9e5ff377cf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1b/1b76c7fd12f01a1160e90a9e5ff377cf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1b/1b84602e4b9213269b499b8ae42516a1.bin b/common/runtime/cache/1b/1b84602e4b9213269b499b8ae42516a1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1b/1b84602e4b9213269b499b8ae42516a1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1b/1b895c675528530b164379d4616a6453.bin b/common/runtime/cache/1b/1b895c675528530b164379d4616a6453.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1b/1b895c675528530b164379d4616a6453.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1b/1b8acdae477fecfb6da6396ba52c54fe.bin b/common/runtime/cache/1b/1b8acdae477fecfb6da6396ba52c54fe.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1b/1b8acdae477fecfb6da6396ba52c54fe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1b/1b8c0cc47ab0a5e0eea384c0113e2222.bin b/common/runtime/cache/1b/1b8c0cc47ab0a5e0eea384c0113e2222.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1b/1b8c0cc47ab0a5e0eea384c0113e2222.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1b/1be087f435332832d28742a03a1b4501.bin b/common/runtime/cache/1b/1be087f435332832d28742a03a1b4501.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1b/1be087f435332832d28742a03a1b4501.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1b/1bf91f20b2bc2a49e50b1dc5f68da686.bin b/common/runtime/cache/1b/1bf91f20b2bc2a49e50b1dc5f68da686.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1b/1bf91f20b2bc2a49e50b1dc5f68da686.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1b/1bfa73efbef6ac519fc5d6fd5c6dab6f.bin b/common/runtime/cache/1b/1bfa73efbef6ac519fc5d6fd5c6dab6f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1b/1bfa73efbef6ac519fc5d6fd5c6dab6f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1c/1c029f73d6b67e42e895c081615cc177.bin b/common/runtime/cache/1c/1c029f73d6b67e42e895c081615cc177.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1c/1c029f73d6b67e42e895c081615cc177.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1c/1c3899c8464b82082165ffc9d38e981e.bin b/common/runtime/cache/1c/1c3899c8464b82082165ffc9d38e981e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/1c/1c3899c8464b82082165ffc9d38e981e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1c/1c43db3a2f1377a69c07b5fad2947235.bin b/common/runtime/cache/1c/1c43db3a2f1377a69c07b5fad2947235.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1c/1c43db3a2f1377a69c07b5fad2947235.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1c/1c486bde400ed8ca70ebcb30f2abbcda.bin b/common/runtime/cache/1c/1c486bde400ed8ca70ebcb30f2abbcda.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1c/1c486bde400ed8ca70ebcb30f2abbcda.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1c/1c84c8da0ccc0ea6e213f60189ec8d72.bin b/common/runtime/cache/1c/1c84c8da0ccc0ea6e213f60189ec8d72.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1c/1c84c8da0ccc0ea6e213f60189ec8d72.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1c/1c9cd56ab4c01e5f910218a8e9292e72.bin b/common/runtime/cache/1c/1c9cd56ab4c01e5f910218a8e9292e72.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1c/1c9cd56ab4c01e5f910218a8e9292e72.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1c/1ca48a6d6011e11ccd0b3bf6cf28d1c6.bin b/common/runtime/cache/1c/1ca48a6d6011e11ccd0b3bf6cf28d1c6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1c/1ca48a6d6011e11ccd0b3bf6cf28d1c6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1c/1ca4be59ace87ae12ee9ffab25d81f59.bin b/common/runtime/cache/1c/1ca4be59ace87ae12ee9ffab25d81f59.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1c/1ca4be59ace87ae12ee9ffab25d81f59.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1c/1cac77921e4733a18ed115e7519bde5a.bin b/common/runtime/cache/1c/1cac77921e4733a18ed115e7519bde5a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1c/1cac77921e4733a18ed115e7519bde5a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1c/1cad4291eb37d365d5d1c0a7d4315efe.bin b/common/runtime/cache/1c/1cad4291eb37d365d5d1c0a7d4315efe.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1c/1cad4291eb37d365d5d1c0a7d4315efe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1c/1cb49b5714df8ce72c17727005fd62a0.bin b/common/runtime/cache/1c/1cb49b5714df8ce72c17727005fd62a0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1c/1cb49b5714df8ce72c17727005fd62a0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1c/1cc4af56a6be8ca034b9f174fa3b5116.bin b/common/runtime/cache/1c/1cc4af56a6be8ca034b9f174fa3b5116.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1c/1cc4af56a6be8ca034b9f174fa3b5116.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1d/1d09cf0b1af9e181ea235c36f361db75.bin b/common/runtime/cache/1d/1d09cf0b1af9e181ea235c36f361db75.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/1d/1d09cf0b1af9e181ea235c36f361db75.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1d/1d17e16e079a644bf37946428c6dd3ec.bin b/common/runtime/cache/1d/1d17e16e079a644bf37946428c6dd3ec.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1d/1d17e16e079a644bf37946428c6dd3ec.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1d/1d215adde2f9849e0452884d55e70da4.bin b/common/runtime/cache/1d/1d215adde2f9849e0452884d55e70da4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/1d/1d215adde2f9849e0452884d55e70da4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1d/1d350c67005ace41a100ffff4a178969.bin b/common/runtime/cache/1d/1d350c67005ace41a100ffff4a178969.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1d/1d350c67005ace41a100ffff4a178969.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1d/1d4600fcbbc6b1b3a4203aeaaee52f8b.bin b/common/runtime/cache/1d/1d4600fcbbc6b1b3a4203aeaaee52f8b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/1d/1d4600fcbbc6b1b3a4203aeaaee52f8b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1d/1d7c527778d4aa14af76c344c0c8175f.bin b/common/runtime/cache/1d/1d7c527778d4aa14af76c344c0c8175f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1d/1d7c527778d4aa14af76c344c0c8175f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1d/1d8f4f2fb32994678819d20efed4dd17.bin b/common/runtime/cache/1d/1d8f4f2fb32994678819d20efed4dd17.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1d/1d8f4f2fb32994678819d20efed4dd17.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1d/1d9617ce47be4fe360b11a78b2672be4.bin b/common/runtime/cache/1d/1d9617ce47be4fe360b11a78b2672be4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1d/1d9617ce47be4fe360b11a78b2672be4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1d/1dce839c72b404ffd57b009e48870dd4.bin b/common/runtime/cache/1d/1dce839c72b404ffd57b009e48870dd4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1d/1dce839c72b404ffd57b009e48870dd4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1d/1dd893a2607236cdd622b099d64b6ac4.bin b/common/runtime/cache/1d/1dd893a2607236cdd622b099d64b6ac4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1d/1dd893a2607236cdd622b099d64b6ac4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1d/1df8d86c6341e1ddcc798b099f053175.bin b/common/runtime/cache/1d/1df8d86c6341e1ddcc798b099f053175.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/1d/1df8d86c6341e1ddcc798b099f053175.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1e/1e06fb04c7afe8060743f0a146889bcc.bin b/common/runtime/cache/1e/1e06fb04c7afe8060743f0a146889bcc.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/1e/1e06fb04c7afe8060743f0a146889bcc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1e/1e131ab18a214c55173071548c93875f.bin b/common/runtime/cache/1e/1e131ab18a214c55173071548c93875f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1e/1e131ab18a214c55173071548c93875f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1e/1e2d350bc6daf14dfaeabdfe20101885.bin b/common/runtime/cache/1e/1e2d350bc6daf14dfaeabdfe20101885.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1e/1e2d350bc6daf14dfaeabdfe20101885.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1e/1e597d463369d6f490e297af1d7be0c1.bin b/common/runtime/cache/1e/1e597d463369d6f490e297af1d7be0c1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1e/1e597d463369d6f490e297af1d7be0c1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1e/1e598f1f55e33c4c5cb2796e8515e91a.bin b/common/runtime/cache/1e/1e598f1f55e33c4c5cb2796e8515e91a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1e/1e598f1f55e33c4c5cb2796e8515e91a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1e/1e5abbbb0c9d04192db70ed951f7059a.bin b/common/runtime/cache/1e/1e5abbbb0c9d04192db70ed951f7059a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1e/1e5abbbb0c9d04192db70ed951f7059a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1e/1e603c06b7d2d2c198fce6a6e98c221f.bin b/common/runtime/cache/1e/1e603c06b7d2d2c198fce6a6e98c221f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/1e/1e603c06b7d2d2c198fce6a6e98c221f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1e/1e7c69875ba7147f2dc52f3d6cb5c87c.bin b/common/runtime/cache/1e/1e7c69875ba7147f2dc52f3d6cb5c87c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1e/1e7c69875ba7147f2dc52f3d6cb5c87c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1e/1ec393eb27ed27889998a846195c4b94.bin b/common/runtime/cache/1e/1ec393eb27ed27889998a846195c4b94.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1e/1ec393eb27ed27889998a846195c4b94.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1e/1edab4b279346a9c1ad9326b583fe9fe.bin b/common/runtime/cache/1e/1edab4b279346a9c1ad9326b583fe9fe.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1e/1edab4b279346a9c1ad9326b583fe9fe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1e/1ef07f0f9008ded07001f53d52892121.bin b/common/runtime/cache/1e/1ef07f0f9008ded07001f53d52892121.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1e/1ef07f0f9008ded07001f53d52892121.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1e/1ef2b8ef14fc3e336d43f8f5f9ace465.bin b/common/runtime/cache/1e/1ef2b8ef14fc3e336d43f8f5f9ace465.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/1e/1ef2b8ef14fc3e336d43f8f5f9ace465.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1e/1ef721dd4c7f087ec8c1d2ff6adfa451.bin b/common/runtime/cache/1e/1ef721dd4c7f087ec8c1d2ff6adfa451.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/1e/1ef721dd4c7f087ec8c1d2ff6adfa451.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1f/1f617d81cbdb7b24c745ef09211722f2.bin b/common/runtime/cache/1f/1f617d81cbdb7b24c745ef09211722f2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1f/1f617d81cbdb7b24c745ef09211722f2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1f/1fa72a830ddd6e8a83ba57b72d9169a0.bin b/common/runtime/cache/1f/1fa72a830ddd6e8a83ba57b72d9169a0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1f/1fa72a830ddd6e8a83ba57b72d9169a0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1f/1fa892dfb719eb434a4df26e705ee2df.bin b/common/runtime/cache/1f/1fa892dfb719eb434a4df26e705ee2df.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1f/1fa892dfb719eb434a4df26e705ee2df.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1f/1fc52fcba18a9ea7a5f431a05ed76859.bin b/common/runtime/cache/1f/1fc52fcba18a9ea7a5f431a05ed76859.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1f/1fc52fcba18a9ea7a5f431a05ed76859.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1f/1fd1d8c89f25a34716d5146920377280.bin b/common/runtime/cache/1f/1fd1d8c89f25a34716d5146920377280.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1f/1fd1d8c89f25a34716d5146920377280.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1f/1fd7b4d7d9f4e98b3235d9c424077904.bin b/common/runtime/cache/1f/1fd7b4d7d9f4e98b3235d9c424077904.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1f/1fd7b4d7d9f4e98b3235d9c424077904.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1f/1fda9ef9426d064489647f8fab4cc7d1.bin b/common/runtime/cache/1f/1fda9ef9426d064489647f8fab4cc7d1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1f/1fda9ef9426d064489647f8fab4cc7d1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/1f/1fdeb763d04dc4439f8aa901841c6570.bin b/common/runtime/cache/1f/1fdeb763d04dc4439f8aa901841c6570.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/1f/1fdeb763d04dc4439f8aa901841c6570.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/20/2002d2da54640a6488ca43f980c400cd.bin b/common/runtime/cache/20/2002d2da54640a6488ca43f980c400cd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/20/2002d2da54640a6488ca43f980c400cd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/20/2003863c91318abd6e8cf742b1fbc454.bin b/common/runtime/cache/20/2003863c91318abd6e8cf742b1fbc454.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/20/2003863c91318abd6e8cf742b1fbc454.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/20/2023e1c17893b3769e8b54d99aebdd41.bin b/common/runtime/cache/20/2023e1c17893b3769e8b54d99aebdd41.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/20/2023e1c17893b3769e8b54d99aebdd41.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/20/202eb08150742e1a11d8dd88b98163e9.bin b/common/runtime/cache/20/202eb08150742e1a11d8dd88b98163e9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/20/202eb08150742e1a11d8dd88b98163e9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/20/2044d97a5211ef975dca1047126d8ff2.bin b/common/runtime/cache/20/2044d97a5211ef975dca1047126d8ff2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/20/2044d97a5211ef975dca1047126d8ff2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/20/20567a837fae93a393f823b6c23c5845.bin b/common/runtime/cache/20/20567a837fae93a393f823b6c23c5845.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/20/20567a837fae93a393f823b6c23c5845.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/20/2068bd0e69f22bfc70f51fd850a7e8f6.bin b/common/runtime/cache/20/2068bd0e69f22bfc70f51fd850a7e8f6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/20/2068bd0e69f22bfc70f51fd850a7e8f6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/20/2098166b0d893681fee603a333200478.bin b/common/runtime/cache/20/2098166b0d893681fee603a333200478.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/20/2098166b0d893681fee603a333200478.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/20/20b7030e3a51bdcab0eb35280ee00499.bin b/common/runtime/cache/20/20b7030e3a51bdcab0eb35280ee00499.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/20/20b7030e3a51bdcab0eb35280ee00499.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/20/20d520189beaa2c4f48ec8347ac38d9f.bin b/common/runtime/cache/20/20d520189beaa2c4f48ec8347ac38d9f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/20/20d520189beaa2c4f48ec8347ac38d9f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/20/20d771645d1c6205ee1793097e998459.bin b/common/runtime/cache/20/20d771645d1c6205ee1793097e998459.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/20/20d771645d1c6205ee1793097e998459.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/20/20e030d7311cd37b44bb23d7a7009737.bin b/common/runtime/cache/20/20e030d7311cd37b44bb23d7a7009737.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/20/20e030d7311cd37b44bb23d7a7009737.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/20/20e8f0d99e1e92b16cce075342f5b550.bin b/common/runtime/cache/20/20e8f0d99e1e92b16cce075342f5b550.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/20/20e8f0d99e1e92b16cce075342f5b550.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/20/20ffac438eb5d641f95b82e96c3dd790.bin b/common/runtime/cache/20/20ffac438eb5d641f95b82e96c3dd790.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/20/20ffac438eb5d641f95b82e96c3dd790.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/21/2103332dd2a5114018ccce62f716843e.bin b/common/runtime/cache/21/2103332dd2a5114018ccce62f716843e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/21/2103332dd2a5114018ccce62f716843e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/21/211641ceb2fb5b2982d9f491f24f06e7.bin b/common/runtime/cache/21/211641ceb2fb5b2982d9f491f24f06e7.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/21/211641ceb2fb5b2982d9f491f24f06e7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/21/211f80b21fe9174989704e3868cc8a92.bin b/common/runtime/cache/21/211f80b21fe9174989704e3868cc8a92.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/21/211f80b21fe9174989704e3868cc8a92.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/21/2122ce927d5ee60f405b7e5969fa27b6.bin b/common/runtime/cache/21/2122ce927d5ee60f405b7e5969fa27b6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/21/2122ce927d5ee60f405b7e5969fa27b6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/21/21465953eec1b29eb0a2dfbfb1b46a1a.bin b/common/runtime/cache/21/21465953eec1b29eb0a2dfbfb1b46a1a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/21/21465953eec1b29eb0a2dfbfb1b46a1a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/21/2176f199c7610c9beec15aac392b257d.bin b/common/runtime/cache/21/2176f199c7610c9beec15aac392b257d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/21/2176f199c7610c9beec15aac392b257d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/21/21b43f54906c203866725997c315f820.bin b/common/runtime/cache/21/21b43f54906c203866725997c315f820.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/21/21b43f54906c203866725997c315f820.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/21/21b8b3d93956aed9b9a589121fcb8369.bin b/common/runtime/cache/21/21b8b3d93956aed9b9a589121fcb8369.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/21/21b8b3d93956aed9b9a589121fcb8369.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/21/21bf5bf3cf083aafe14ad9c99cf2036d.bin b/common/runtime/cache/21/21bf5bf3cf083aafe14ad9c99cf2036d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/21/21bf5bf3cf083aafe14ad9c99cf2036d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/21/21c2685091ff7d4591528db78d0882f2.bin b/common/runtime/cache/21/21c2685091ff7d4591528db78d0882f2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/21/21c2685091ff7d4591528db78d0882f2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/21/21e18a71b718bf76a5d8ce829483a76c.bin b/common/runtime/cache/21/21e18a71b718bf76a5d8ce829483a76c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/21/21e18a71b718bf76a5d8ce829483a76c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/21/21e488cbf71091e390ca4ba6ac0fdfff.bin b/common/runtime/cache/21/21e488cbf71091e390ca4ba6ac0fdfff.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/21/21e488cbf71091e390ca4ba6ac0fdfff.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/21/21f089f4d82d023235660367372215bf.bin b/common/runtime/cache/21/21f089f4d82d023235660367372215bf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/21/21f089f4d82d023235660367372215bf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/22/220c1070ac0df84bca3383b22e7f61fb.bin b/common/runtime/cache/22/220c1070ac0df84bca3383b22e7f61fb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/22/220c1070ac0df84bca3383b22e7f61fb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/22/220e3de920bbc890ca8e82c0ea6a900e.bin b/common/runtime/cache/22/220e3de920bbc890ca8e82c0ea6a900e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/22/220e3de920bbc890ca8e82c0ea6a900e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/22/221870d5e83001f144ce2d238d269bb2.bin b/common/runtime/cache/22/221870d5e83001f144ce2d238d269bb2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/22/221870d5e83001f144ce2d238d269bb2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/22/222225ccdf30c10733a324b95c2fde97.bin b/common/runtime/cache/22/222225ccdf30c10733a324b95c2fde97.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/22/222225ccdf30c10733a324b95c2fde97.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/22/222ff87e298ff6aa0792685316793cc6.bin b/common/runtime/cache/22/222ff87e298ff6aa0792685316793cc6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/22/222ff87e298ff6aa0792685316793cc6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/22/22371ac0b7432de4b29e3b750f95e703.bin b/common/runtime/cache/22/22371ac0b7432de4b29e3b750f95e703.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/22/22371ac0b7432de4b29e3b750f95e703.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/22/2240dfee0397bf62ec70da3443b9cb0d.bin b/common/runtime/cache/22/2240dfee0397bf62ec70da3443b9cb0d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/22/2240dfee0397bf62ec70da3443b9cb0d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/22/225ae6ee9aeb5271a16db1cfa1fc0729.bin b/common/runtime/cache/22/225ae6ee9aeb5271a16db1cfa1fc0729.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/22/225ae6ee9aeb5271a16db1cfa1fc0729.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/22/2266ec94bae33b791ec7f3ae238ee00f.bin b/common/runtime/cache/22/2266ec94bae33b791ec7f3ae238ee00f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/22/2266ec94bae33b791ec7f3ae238ee00f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/22/2272bbe1b99aaba72ec14c5d3199987c.bin b/common/runtime/cache/22/2272bbe1b99aaba72ec14c5d3199987c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/22/2272bbe1b99aaba72ec14c5d3199987c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/22/2294dd0b3e38b453713bfc03518a39d8.bin b/common/runtime/cache/22/2294dd0b3e38b453713bfc03518a39d8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/22/2294dd0b3e38b453713bfc03518a39d8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/22/22968be193b200280cf4abc68696b3ea.bin b/common/runtime/cache/22/22968be193b200280cf4abc68696b3ea.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/22/22968be193b200280cf4abc68696b3ea.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/22/22b0a5387556d07c3bd2bafc31758033.bin b/common/runtime/cache/22/22b0a5387556d07c3bd2bafc31758033.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/22/22b0a5387556d07c3bd2bafc31758033.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/22/22b899a5efb60dfe815ef6d4249c88c2.bin b/common/runtime/cache/22/22b899a5efb60dfe815ef6d4249c88c2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/22/22b899a5efb60dfe815ef6d4249c88c2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/22/22be2273057606bc9b7a97ab79e8afcb.bin b/common/runtime/cache/22/22be2273057606bc9b7a97ab79e8afcb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/22/22be2273057606bc9b7a97ab79e8afcb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/22/22f6296c52b599fc4d26be331483474f.bin b/common/runtime/cache/22/22f6296c52b599fc4d26be331483474f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/22/22f6296c52b599fc4d26be331483474f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/22/22fab6a37ad68e5c62be4e485971d453.bin b/common/runtime/cache/22/22fab6a37ad68e5c62be4e485971d453.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/22/22fab6a37ad68e5c62be4e485971d453.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/23/231ecb2fb420b8b1dc86096dc904c3f3.bin b/common/runtime/cache/23/231ecb2fb420b8b1dc86096dc904c3f3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/23/231ecb2fb420b8b1dc86096dc904c3f3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/23/2334d9080769e807efadc425e140ad26.bin b/common/runtime/cache/23/2334d9080769e807efadc425e140ad26.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/23/2334d9080769e807efadc425e140ad26.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/23/23399656b040ba275644db4267dab8c3.bin b/common/runtime/cache/23/23399656b040ba275644db4267dab8c3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/23/23399656b040ba275644db4267dab8c3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/23/2344f3a9ff52583a1b847236f0d28d9c.bin b/common/runtime/cache/23/2344f3a9ff52583a1b847236f0d28d9c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/23/2344f3a9ff52583a1b847236f0d28d9c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/23/236ce16b96b15823a65a8016c0065e17.bin b/common/runtime/cache/23/236ce16b96b15823a65a8016c0065e17.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/23/236ce16b96b15823a65a8016c0065e17.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/23/23706a865c84a2e606ec140ec93f9cc7.bin b/common/runtime/cache/23/23706a865c84a2e606ec140ec93f9cc7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/23/23706a865c84a2e606ec140ec93f9cc7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/23/237541b511c554215d1d49e1af4c7492.bin b/common/runtime/cache/23/237541b511c554215d1d49e1af4c7492.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/23/237541b511c554215d1d49e1af4c7492.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/23/237aa86acf7337f1fe9016e906c0d76e.bin b/common/runtime/cache/23/237aa86acf7337f1fe9016e906c0d76e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/23/237aa86acf7337f1fe9016e906c0d76e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/23/238ee7c20a86bb4e504c2d878144f380.bin b/common/runtime/cache/23/238ee7c20a86bb4e504c2d878144f380.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/23/238ee7c20a86bb4e504c2d878144f380.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/23/23908bcb2f0528a8cf3cc68163476bc8.bin b/common/runtime/cache/23/23908bcb2f0528a8cf3cc68163476bc8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/23/23908bcb2f0528a8cf3cc68163476bc8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/23/23a41585111d9b2a50aa97f7c8aa255a.bin b/common/runtime/cache/23/23a41585111d9b2a50aa97f7c8aa255a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/23/23a41585111d9b2a50aa97f7c8aa255a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/23/23a9de4c1ce56bec734f25d46ec9c79e.bin b/common/runtime/cache/23/23a9de4c1ce56bec734f25d46ec9c79e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/23/23a9de4c1ce56bec734f25d46ec9c79e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/23/23b209e07020dfe79340e3c30e5e2729.bin b/common/runtime/cache/23/23b209e07020dfe79340e3c30e5e2729.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/23/23b209e07020dfe79340e3c30e5e2729.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/23/23ceb202022c8da9cc5af5cd09f3c883.bin b/common/runtime/cache/23/23ceb202022c8da9cc5af5cd09f3c883.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/23/23ceb202022c8da9cc5af5cd09f3c883.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/23/23f38cb3ed2cc70cacfc72c454cd88df.bin b/common/runtime/cache/23/23f38cb3ed2cc70cacfc72c454cd88df.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/23/23f38cb3ed2cc70cacfc72c454cd88df.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/24/2411369a2d4d0ff27b67f7871bd6f897.bin b/common/runtime/cache/24/2411369a2d4d0ff27b67f7871bd6f897.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/24/2411369a2d4d0ff27b67f7871bd6f897.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/24/24194c3ced6072e5b28c996cd61491cb.bin b/common/runtime/cache/24/24194c3ced6072e5b28c996cd61491cb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/24/24194c3ced6072e5b28c996cd61491cb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/24/2448a9593b55f86f007cd6949d7a4855.bin b/common/runtime/cache/24/2448a9593b55f86f007cd6949d7a4855.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/24/2448a9593b55f86f007cd6949d7a4855.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/24/245034fb611ab40c243eb79ad75e1cbe.bin b/common/runtime/cache/24/245034fb611ab40c243eb79ad75e1cbe.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/24/245034fb611ab40c243eb79ad75e1cbe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/24/247102e5bad1d08a6ee0440cfb563aad.bin b/common/runtime/cache/24/247102e5bad1d08a6ee0440cfb563aad.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/24/247102e5bad1d08a6ee0440cfb563aad.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/24/2475448667ec06cf90bea5723cde558a.bin b/common/runtime/cache/24/2475448667ec06cf90bea5723cde558a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/24/2475448667ec06cf90bea5723cde558a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/24/2479a8663a7e4fc7aca6460420864dce.bin b/common/runtime/cache/24/2479a8663a7e4fc7aca6460420864dce.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/24/2479a8663a7e4fc7aca6460420864dce.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/24/24866ef61effec315609dfce55d9fcb1.bin b/common/runtime/cache/24/24866ef61effec315609dfce55d9fcb1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/24/24866ef61effec315609dfce55d9fcb1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/24/249282a9dcdf416b3cf2c52fbdfae0fa.bin b/common/runtime/cache/24/249282a9dcdf416b3cf2c52fbdfae0fa.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/24/249282a9dcdf416b3cf2c52fbdfae0fa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/24/249d04ddb476fc26bb2e614969b219b8.bin b/common/runtime/cache/24/249d04ddb476fc26bb2e614969b219b8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/24/249d04ddb476fc26bb2e614969b219b8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/24/24a6cbc095fb85455a006cffef4fefa3.bin b/common/runtime/cache/24/24a6cbc095fb85455a006cffef4fefa3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/24/24a6cbc095fb85455a006cffef4fefa3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/24/24a9d0c74339ae8fa69a76b6ebc0448b.bin b/common/runtime/cache/24/24a9d0c74339ae8fa69a76b6ebc0448b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/24/24a9d0c74339ae8fa69a76b6ebc0448b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/24/24abcfb1837f8e1d67e7703bc639b645.bin b/common/runtime/cache/24/24abcfb1837f8e1d67e7703bc639b645.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/24/24abcfb1837f8e1d67e7703bc639b645.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/24/24b25d52f31ded39b571d93df7f26726.bin b/common/runtime/cache/24/24b25d52f31ded39b571d93df7f26726.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/24/24b25d52f31ded39b571d93df7f26726.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/24/24b38f55a868cfa51f6241a72f17a864.bin b/common/runtime/cache/24/24b38f55a868cfa51f6241a72f17a864.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/24/24b38f55a868cfa51f6241a72f17a864.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/24/24d8f0f3bc84ed3db5a0a7d1251d23ff.bin b/common/runtime/cache/24/24d8f0f3bc84ed3db5a0a7d1251d23ff.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/24/24d8f0f3bc84ed3db5a0a7d1251d23ff.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/24/24e7156c16172bec98c7c01df7f3077b.bin b/common/runtime/cache/24/24e7156c16172bec98c7c01df7f3077b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/24/24e7156c16172bec98c7c01df7f3077b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/25/2517280ce63c7ffa34238faaafcb265d.bin b/common/runtime/cache/25/2517280ce63c7ffa34238faaafcb265d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/25/2517280ce63c7ffa34238faaafcb265d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/25/253481a04b787e1b41ed79010d17d18f.bin b/common/runtime/cache/25/253481a04b787e1b41ed79010d17d18f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/25/253481a04b787e1b41ed79010d17d18f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/25/2547fc5aef9153478c57214be25deb58.bin b/common/runtime/cache/25/2547fc5aef9153478c57214be25deb58.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/25/2547fc5aef9153478c57214be25deb58.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/25/2558aab354785c29b9aa4608398ac504.bin b/common/runtime/cache/25/2558aab354785c29b9aa4608398ac504.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/25/2558aab354785c29b9aa4608398ac504.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/25/25722cdcfad1acc7c5aa5603e4d73a7e.bin b/common/runtime/cache/25/25722cdcfad1acc7c5aa5603e4d73a7e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/25/25722cdcfad1acc7c5aa5603e4d73a7e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/25/257ca0d453cefe1c88b4ec9c2a5b5c9f.bin b/common/runtime/cache/25/257ca0d453cefe1c88b4ec9c2a5b5c9f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/25/257ca0d453cefe1c88b4ec9c2a5b5c9f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/25/257d237f3365fb02346bc0c90cc9a7b3.bin b/common/runtime/cache/25/257d237f3365fb02346bc0c90cc9a7b3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/25/257d237f3365fb02346bc0c90cc9a7b3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/25/257e191bb81fbb62dde12f2da9e071bf.bin b/common/runtime/cache/25/257e191bb81fbb62dde12f2da9e071bf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/25/257e191bb81fbb62dde12f2da9e071bf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/25/258aad309fe239ff547c1338b902e128.bin b/common/runtime/cache/25/258aad309fe239ff547c1338b902e128.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/25/258aad309fe239ff547c1338b902e128.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/25/259c8b9f3cbeb4c762f37d3701da0921.bin b/common/runtime/cache/25/259c8b9f3cbeb4c762f37d3701da0921.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/25/259c8b9f3cbeb4c762f37d3701da0921.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/25/25afd05e091a53400294b434a8cd31f0.bin b/common/runtime/cache/25/25afd05e091a53400294b434a8cd31f0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/25/25afd05e091a53400294b434a8cd31f0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/25/25ceb5c6855bf2390e07b0fafba970b9.bin b/common/runtime/cache/25/25ceb5c6855bf2390e07b0fafba970b9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/25/25ceb5c6855bf2390e07b0fafba970b9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/26/261540fde451800a5e57a046c6dca0fb.bin b/common/runtime/cache/26/261540fde451800a5e57a046c6dca0fb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/26/261540fde451800a5e57a046c6dca0fb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/26/2624d919d4a8a361d513cc056ccd731b.bin b/common/runtime/cache/26/2624d919d4a8a361d513cc056ccd731b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/26/2624d919d4a8a361d513cc056ccd731b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/26/264a5cf855dd3e085c3c4627558ca07e.bin b/common/runtime/cache/26/264a5cf855dd3e085c3c4627558ca07e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/26/264a5cf855dd3e085c3c4627558ca07e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/26/26a954b374430064e1e36353838c7443.bin b/common/runtime/cache/26/26a954b374430064e1e36353838c7443.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/26/26a954b374430064e1e36353838c7443.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/26/26d502cef4725225215fc2c979f190b6.bin b/common/runtime/cache/26/26d502cef4725225215fc2c979f190b6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/26/26d502cef4725225215fc2c979f190b6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/27/2704cb642db11386f07d6a6d3f7c8f3b.bin b/common/runtime/cache/27/2704cb642db11386f07d6a6d3f7c8f3b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/27/2704cb642db11386f07d6a6d3f7c8f3b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/27/271362b51a1e27cbaa696839b0d499ef.bin b/common/runtime/cache/27/271362b51a1e27cbaa696839b0d499ef.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/27/271362b51a1e27cbaa696839b0d499ef.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/27/2728d27cc163502f4d59d49cc3b1c4ac.bin b/common/runtime/cache/27/2728d27cc163502f4d59d49cc3b1c4ac.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/27/2728d27cc163502f4d59d49cc3b1c4ac.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/27/273dfe8ceff1a540c55a4578ecebc7f6.bin b/common/runtime/cache/27/273dfe8ceff1a540c55a4578ecebc7f6.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/27/273dfe8ceff1a540c55a4578ecebc7f6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/27/2759ec914fd4c431da192466bdf28541.bin b/common/runtime/cache/27/2759ec914fd4c431da192466bdf28541.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/27/2759ec914fd4c431da192466bdf28541.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/27/2760522645173115b9460bab39ed16a3.bin b/common/runtime/cache/27/2760522645173115b9460bab39ed16a3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/27/2760522645173115b9460bab39ed16a3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/27/27a99052aed6525f7019e5fe24c4f8d6.bin b/common/runtime/cache/27/27a99052aed6525f7019e5fe24c4f8d6.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/27/27a99052aed6525f7019e5fe24c4f8d6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/28/2809624a23f59cfdff989e53f7a52cdd.bin b/common/runtime/cache/28/2809624a23f59cfdff989e53f7a52cdd.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/28/2809624a23f59cfdff989e53f7a52cdd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/28/281fdaeacc634a1e2fea8cfe61e85f64.bin b/common/runtime/cache/28/281fdaeacc634a1e2fea8cfe61e85f64.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/28/281fdaeacc634a1e2fea8cfe61e85f64.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/28/28462fa0556de29d71d22926325ea529.bin b/common/runtime/cache/28/28462fa0556de29d71d22926325ea529.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/28/28462fa0556de29d71d22926325ea529.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/28/2847384c4c98a8ee9aec9d2148e85769.bin b/common/runtime/cache/28/2847384c4c98a8ee9aec9d2148e85769.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/28/2847384c4c98a8ee9aec9d2148e85769.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/28/285f9e7164818e29763d3ab6ef478dd7.bin b/common/runtime/cache/28/285f9e7164818e29763d3ab6ef478dd7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/28/285f9e7164818e29763d3ab6ef478dd7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/28/2866888703443dc1c0b84343a154b471.bin b/common/runtime/cache/28/2866888703443dc1c0b84343a154b471.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/28/2866888703443dc1c0b84343a154b471.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/28/287aae97f260da609bb9a56d423c0ce9.bin b/common/runtime/cache/28/287aae97f260da609bb9a56d423c0ce9.bin new file mode 100644 index 0000000..9fd0652 --- /dev/null +++ b/common/runtime/cache/28/287aae97f260da609bb9a56d423c0ce9.bin @@ -0,0 +1 @@ +a:2:{i:0;s:13:"news/manchini";i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/28/2885c3e76a28f950810565becb6a563f.bin b/common/runtime/cache/28/2885c3e76a28f950810565becb6a563f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/28/2885c3e76a28f950810565becb6a563f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/28/288839bd9cb4e4cbc87611e64b6d2bed.bin b/common/runtime/cache/28/288839bd9cb4e4cbc87611e64b6d2bed.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/28/288839bd9cb4e4cbc87611e64b6d2bed.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/28/2894ba03f6201893de86ae110e15da4d.bin b/common/runtime/cache/28/2894ba03f6201893de86ae110e15da4d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/28/2894ba03f6201893de86ae110e15da4d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/28/2897c7dc8a0baf435eaa31431231d8e0.bin b/common/runtime/cache/28/2897c7dc8a0baf435eaa31431231d8e0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/28/2897c7dc8a0baf435eaa31431231d8e0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/28/28a6a45bec8d255d3c3502a863b82c57.bin b/common/runtime/cache/28/28a6a45bec8d255d3c3502a863b82c57.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/28/28a6a45bec8d255d3c3502a863b82c57.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/28/28b2f41d684549e087806a7b6d33e348.bin b/common/runtime/cache/28/28b2f41d684549e087806a7b6d33e348.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/28/28b2f41d684549e087806a7b6d33e348.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/28/28cc16a6724ea09d30374476d3ce08a3.bin b/common/runtime/cache/28/28cc16a6724ea09d30374476d3ce08a3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/28/28cc16a6724ea09d30374476d3ce08a3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/28/28e2714e37da2da3d900c37fc4a04e8b.bin b/common/runtime/cache/28/28e2714e37da2da3d900c37fc4a04e8b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/28/28e2714e37da2da3d900c37fc4a04e8b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/29/2905db69e88a3ad159832618e4e0b26c.bin b/common/runtime/cache/29/2905db69e88a3ad159832618e4e0b26c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/29/2905db69e88a3ad159832618e4e0b26c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/29/290fb3f00f7f54c1679f6f5445ae9270.bin b/common/runtime/cache/29/290fb3f00f7f54c1679f6f5445ae9270.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/29/290fb3f00f7f54c1679f6f5445ae9270.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/29/292c4f258c9d977eabbafa18dce224e1.bin b/common/runtime/cache/29/292c4f258c9d977eabbafa18dce224e1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/29/292c4f258c9d977eabbafa18dce224e1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/29/29318e6abdae1db4f065c634999309f0.bin b/common/runtime/cache/29/29318e6abdae1db4f065c634999309f0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/29/29318e6abdae1db4f065c634999309f0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/29/295d05ebb46d398c4b15bae10955f995.bin b/common/runtime/cache/29/295d05ebb46d398c4b15bae10955f995.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/29/295d05ebb46d398c4b15bae10955f995.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/29/29690b62df84dde42c9543952c2e543d.bin b/common/runtime/cache/29/29690b62df84dde42c9543952c2e543d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/29/29690b62df84dde42c9543952c2e543d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/29/2997007c5f93d492b3d5a2515dd55691.bin b/common/runtime/cache/29/2997007c5f93d492b3d5a2515dd55691.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/29/2997007c5f93d492b3d5a2515dd55691.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/29/29a663e5697a15a99cc3314d523cb2ad.bin b/common/runtime/cache/29/29a663e5697a15a99cc3314d523cb2ad.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/29/29a663e5697a15a99cc3314d523cb2ad.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/29/29d9205e48fa0fa6bd6453ec6862435e.bin b/common/runtime/cache/29/29d9205e48fa0fa6bd6453ec6862435e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/29/29d9205e48fa0fa6bd6453ec6862435e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/29/29faebe3d45487cd49d42f9924f13236.bin b/common/runtime/cache/29/29faebe3d45487cd49d42f9924f13236.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/29/29faebe3d45487cd49d42f9924f13236.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2a/2a0ce79d212bc420126b67a412a79f17.bin b/common/runtime/cache/2a/2a0ce79d212bc420126b67a412a79f17.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2a/2a0ce79d212bc420126b67a412a79f17.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2a/2a165a01602188da5ef447e571f18348.bin b/common/runtime/cache/2a/2a165a01602188da5ef447e571f18348.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2a/2a165a01602188da5ef447e571f18348.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2a/2a41a32ef6bb3e4610f8e1e59a9ec231.bin b/common/runtime/cache/2a/2a41a32ef6bb3e4610f8e1e59a9ec231.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2a/2a41a32ef6bb3e4610f8e1e59a9ec231.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2a/2a72883692b392c687e04a3347ec0b6b.bin b/common/runtime/cache/2a/2a72883692b392c687e04a3347ec0b6b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2a/2a72883692b392c687e04a3347ec0b6b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2a/2a89dc69b1edd8346c5fdff6c605e212.bin b/common/runtime/cache/2a/2a89dc69b1edd8346c5fdff6c605e212.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2a/2a89dc69b1edd8346c5fdff6c605e212.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2a/2aa3373e9f4c3e20f7317b053abb7b83.bin b/common/runtime/cache/2a/2aa3373e9f4c3e20f7317b053abb7b83.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2a/2aa3373e9f4c3e20f7317b053abb7b83.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2a/2aa87b7bc6255bb791710453cffe5043.bin b/common/runtime/cache/2a/2aa87b7bc6255bb791710453cffe5043.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2a/2aa87b7bc6255bb791710453cffe5043.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2a/2aba4a73b3237fd69aeb2e433625fa9e.bin b/common/runtime/cache/2a/2aba4a73b3237fd69aeb2e433625fa9e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2a/2aba4a73b3237fd69aeb2e433625fa9e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2a/2acfd0ec77d8631833e37a45f42b208f.bin b/common/runtime/cache/2a/2acfd0ec77d8631833e37a45f42b208f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2a/2acfd0ec77d8631833e37a45f42b208f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2a/2ad1a599e546a1428014bdc2187858d3.bin b/common/runtime/cache/2a/2ad1a599e546a1428014bdc2187858d3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2a/2ad1a599e546a1428014bdc2187858d3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2a/2ae0eb011c3f7210a9bf66ac00b15ccb.bin b/common/runtime/cache/2a/2ae0eb011c3f7210a9bf66ac00b15ccb.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2a/2ae0eb011c3f7210a9bf66ac00b15ccb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2a/2ae729d9b519e77278b37ad3ceddce8a.bin b/common/runtime/cache/2a/2ae729d9b519e77278b37ad3ceddce8a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2a/2ae729d9b519e77278b37ad3ceddce8a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2a/2aeb6dfdcad62fd51eb64b119e0d2c25.bin b/common/runtime/cache/2a/2aeb6dfdcad62fd51eb64b119e0d2c25.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2a/2aeb6dfdcad62fd51eb64b119e0d2c25.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2a/2af5b0953ce0a346eae566606079b999.bin b/common/runtime/cache/2a/2af5b0953ce0a346eae566606079b999.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2a/2af5b0953ce0a346eae566606079b999.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2a/2afb1e0b2b14265fcfa24854275f6628.bin b/common/runtime/cache/2a/2afb1e0b2b14265fcfa24854275f6628.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2a/2afb1e0b2b14265fcfa24854275f6628.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2a/2afc617c9ce203a89b24bfaedcadc2e8.bin b/common/runtime/cache/2a/2afc617c9ce203a89b24bfaedcadc2e8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2a/2afc617c9ce203a89b24bfaedcadc2e8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2a/2afe7d94f6500e7be517591fb3d826e7.bin b/common/runtime/cache/2a/2afe7d94f6500e7be517591fb3d826e7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2a/2afe7d94f6500e7be517591fb3d826e7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2b/2b047633f398894442b21040c79d0aa5.bin b/common/runtime/cache/2b/2b047633f398894442b21040c79d0aa5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2b/2b047633f398894442b21040c79d0aa5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2b/2b1a23cc7ddb20df97d737c951192191.bin b/common/runtime/cache/2b/2b1a23cc7ddb20df97d737c951192191.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2b/2b1a23cc7ddb20df97d737c951192191.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2b/2b2745bbef61937256c553dcb0ae2290.bin b/common/runtime/cache/2b/2b2745bbef61937256c553dcb0ae2290.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2b/2b2745bbef61937256c553dcb0ae2290.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2b/2b2d43ceff084f6cfe6b85f7db78fe6d.bin b/common/runtime/cache/2b/2b2d43ceff084f6cfe6b85f7db78fe6d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2b/2b2d43ceff084f6cfe6b85f7db78fe6d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2b/2b3f9229a105ed80f0bc653ad901caee.bin b/common/runtime/cache/2b/2b3f9229a105ed80f0bc653ad901caee.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2b/2b3f9229a105ed80f0bc653ad901caee.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2b/2b89cee74c19e94c6f0c31277373ec63.bin b/common/runtime/cache/2b/2b89cee74c19e94c6f0c31277373ec63.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2b/2b89cee74c19e94c6f0c31277373ec63.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2b/2ba705bd56460793dfa9026f8a030c98.bin b/common/runtime/cache/2b/2ba705bd56460793dfa9026f8a030c98.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2b/2ba705bd56460793dfa9026f8a030c98.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2b/2bbb9d19980d72ed5a79e9b6d7228325.bin b/common/runtime/cache/2b/2bbb9d19980d72ed5a79e9b6d7228325.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2b/2bbb9d19980d72ed5a79e9b6d7228325.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2b/2bc39e4adc100be3ff126d838eb76bf9.bin b/common/runtime/cache/2b/2bc39e4adc100be3ff126d838eb76bf9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2b/2bc39e4adc100be3ff126d838eb76bf9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2b/2bcd15e8a7e19c02d48d556e494e4454.bin b/common/runtime/cache/2b/2bcd15e8a7e19c02d48d556e494e4454.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2b/2bcd15e8a7e19c02d48d556e494e4454.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2b/2bd69a75867b02ee48cc11ae3e24b5a7.bin b/common/runtime/cache/2b/2bd69a75867b02ee48cc11ae3e24b5a7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2b/2bd69a75867b02ee48cc11ae3e24b5a7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2b/2bd7c411cc29913c5d7b0b8c432b7ab8.bin b/common/runtime/cache/2b/2bd7c411cc29913c5d7b0b8c432b7ab8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2b/2bd7c411cc29913c5d7b0b8c432b7ab8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2b/2be932608172d0e4e6e8c64a11b21e2d.bin b/common/runtime/cache/2b/2be932608172d0e4e6e8c64a11b21e2d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2b/2be932608172d0e4e6e8c64a11b21e2d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2b/2bffdfed931fd4c40f2807db147c2c4e.bin b/common/runtime/cache/2b/2bffdfed931fd4c40f2807db147c2c4e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2b/2bffdfed931fd4c40f2807db147c2c4e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2c/2c01eff7c71ef7586d22078e89e01c3d.bin b/common/runtime/cache/2c/2c01eff7c71ef7586d22078e89e01c3d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2c/2c01eff7c71ef7586d22078e89e01c3d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2c/2c1cbd91eee18d3837c9b08a40126276.bin b/common/runtime/cache/2c/2c1cbd91eee18d3837c9b08a40126276.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2c/2c1cbd91eee18d3837c9b08a40126276.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2c/2c7dee9dbeadc2d21e583302d44c7798.bin b/common/runtime/cache/2c/2c7dee9dbeadc2d21e583302d44c7798.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2c/2c7dee9dbeadc2d21e583302d44c7798.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2c/2c81fe823e512c533218f0ad4d1d452f.bin b/common/runtime/cache/2c/2c81fe823e512c533218f0ad4d1d452f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2c/2c81fe823e512c533218f0ad4d1d452f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2c/2c85b93de8ba8c164178eedd03ad4082.bin b/common/runtime/cache/2c/2c85b93de8ba8c164178eedd03ad4082.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2c/2c85b93de8ba8c164178eedd03ad4082.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2c/2c91870b587dcb1e2ead580ea2e26063.bin b/common/runtime/cache/2c/2c91870b587dcb1e2ead580ea2e26063.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2c/2c91870b587dcb1e2ead580ea2e26063.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2c/2c9bdb1509861e86872e547bc4024a8c.bin b/common/runtime/cache/2c/2c9bdb1509861e86872e547bc4024a8c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2c/2c9bdb1509861e86872e547bc4024a8c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2c/2cca592b3b961f64221a7503c6cbd4dc.bin b/common/runtime/cache/2c/2cca592b3b961f64221a7503c6cbd4dc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2c/2cca592b3b961f64221a7503c6cbd4dc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2c/2ce03f6673902578b51e8e306cb4c76d.bin b/common/runtime/cache/2c/2ce03f6673902578b51e8e306cb4c76d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2c/2ce03f6673902578b51e8e306cb4c76d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2c/2cea7da6f9619099e7d5eb30648a64c6.bin b/common/runtime/cache/2c/2cea7da6f9619099e7d5eb30648a64c6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2c/2cea7da6f9619099e7d5eb30648a64c6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2c/2cff9c859d179c112aae326339c00936.bin b/common/runtime/cache/2c/2cff9c859d179c112aae326339c00936.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2c/2cff9c859d179c112aae326339c00936.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2d/2d0e2e6175011160869df75e83382e53.bin b/common/runtime/cache/2d/2d0e2e6175011160869df75e83382e53.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2d/2d0e2e6175011160869df75e83382e53.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2d/2d7920e4750b4b97854f390de49617d4.bin b/common/runtime/cache/2d/2d7920e4750b4b97854f390de49617d4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2d/2d7920e4750b4b97854f390de49617d4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2d/2dd1f9adb9bdb24c0acdc2ef7b65750d.bin b/common/runtime/cache/2d/2dd1f9adb9bdb24c0acdc2ef7b65750d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2d/2dd1f9adb9bdb24c0acdc2ef7b65750d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2d/2dd76e9392fcb5ee0bf1f7859da0b69a.bin b/common/runtime/cache/2d/2dd76e9392fcb5ee0bf1f7859da0b69a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2d/2dd76e9392fcb5ee0bf1f7859da0b69a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2d/2de0be488d2eeeba47ac896673781414.bin b/common/runtime/cache/2d/2de0be488d2eeeba47ac896673781414.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2d/2de0be488d2eeeba47ac896673781414.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2d/2deee281f7958a148592f36b4b6279ff.bin b/common/runtime/cache/2d/2deee281f7958a148592f36b4b6279ff.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2d/2deee281f7958a148592f36b4b6279ff.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2d/2df0b49048c0f7d5834e34711aee0eee.bin b/common/runtime/cache/2d/2df0b49048c0f7d5834e34711aee0eee.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2d/2df0b49048c0f7d5834e34711aee0eee.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2e/2e1b3b119896601f02f3f9c854ce2b1b.bin b/common/runtime/cache/2e/2e1b3b119896601f02f3f9c854ce2b1b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2e/2e1b3b119896601f02f3f9c854ce2b1b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2e/2e1b9c49c18e3ac13d49058eb9d07a0d.bin b/common/runtime/cache/2e/2e1b9c49c18e3ac13d49058eb9d07a0d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2e/2e1b9c49c18e3ac13d49058eb9d07a0d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2e/2e1c5de0d2fbe663d679084e8cdbf941.bin b/common/runtime/cache/2e/2e1c5de0d2fbe663d679084e8cdbf941.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2e/2e1c5de0d2fbe663d679084e8cdbf941.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2e/2e5c334c3cb19a3effbd99067d556566.bin b/common/runtime/cache/2e/2e5c334c3cb19a3effbd99067d556566.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2e/2e5c334c3cb19a3effbd99067d556566.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2e/2e6995960a9e54d32a4b1c981c6b9015.bin b/common/runtime/cache/2e/2e6995960a9e54d32a4b1c981c6b9015.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2e/2e6995960a9e54d32a4b1c981c6b9015.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2e/2e8058b1c0e46feffeb63747463a757a.bin b/common/runtime/cache/2e/2e8058b1c0e46feffeb63747463a757a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2e/2e8058b1c0e46feffeb63747463a757a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2e/2e839224c1ba5be734339c789835c174.bin b/common/runtime/cache/2e/2e839224c1ba5be734339c789835c174.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2e/2e839224c1ba5be734339c789835c174.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2e/2e8ec9f6b8cf6b1f07022e7eeed27621.bin b/common/runtime/cache/2e/2e8ec9f6b8cf6b1f07022e7eeed27621.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2e/2e8ec9f6b8cf6b1f07022e7eeed27621.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2e/2e8ed444107560afebf3b38415cac6b2.bin b/common/runtime/cache/2e/2e8ed444107560afebf3b38415cac6b2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2e/2e8ed444107560afebf3b38415cac6b2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2e/2ea3d6adf3871735909e77e71cb976de.bin b/common/runtime/cache/2e/2ea3d6adf3871735909e77e71cb976de.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2e/2ea3d6adf3871735909e77e71cb976de.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2e/2eb4f9efeccea832758d2425f813461e.bin b/common/runtime/cache/2e/2eb4f9efeccea832758d2425f813461e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2e/2eb4f9efeccea832758d2425f813461e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2e/2ed4dc025afa49e1ef786029568d3d1e.bin b/common/runtime/cache/2e/2ed4dc025afa49e1ef786029568d3d1e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2e/2ed4dc025afa49e1ef786029568d3d1e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2e/2ed6ebc12e6dcf99f77f092e250db14c.bin b/common/runtime/cache/2e/2ed6ebc12e6dcf99f77f092e250db14c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2e/2ed6ebc12e6dcf99f77f092e250db14c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2e/2edbf5ccdd612dd86e155a2f2f89a26f.bin b/common/runtime/cache/2e/2edbf5ccdd612dd86e155a2f2f89a26f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2e/2edbf5ccdd612dd86e155a2f2f89a26f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2e/2ee058090a6b31ac4ecfeb5f424bfe0d.bin b/common/runtime/cache/2e/2ee058090a6b31ac4ecfeb5f424bfe0d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2e/2ee058090a6b31ac4ecfeb5f424bfe0d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2e/2ee0f84d0aea7ff3e0697d1d9825974a.bin b/common/runtime/cache/2e/2ee0f84d0aea7ff3e0697d1d9825974a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2e/2ee0f84d0aea7ff3e0697d1d9825974a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2e/2efe385e9a8ec200a5cb5d2ac2eb5ade.bin b/common/runtime/cache/2e/2efe385e9a8ec200a5cb5d2ac2eb5ade.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2e/2efe385e9a8ec200a5cb5d2ac2eb5ade.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2f/2f05923687fac9fe253323aa3e05a096.bin b/common/runtime/cache/2f/2f05923687fac9fe253323aa3e05a096.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2f/2f05923687fac9fe253323aa3e05a096.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2f/2f097763e398831cd727dd6f24cfc40e.bin b/common/runtime/cache/2f/2f097763e398831cd727dd6f24cfc40e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2f/2f097763e398831cd727dd6f24cfc40e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2f/2f3b7cf09c56db11c78d36d6ea531bbc.bin b/common/runtime/cache/2f/2f3b7cf09c56db11c78d36d6ea531bbc.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2f/2f3b7cf09c56db11c78d36d6ea531bbc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2f/2f448a119ca0e2043fb8c22ea1a9efb8.bin b/common/runtime/cache/2f/2f448a119ca0e2043fb8c22ea1a9efb8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2f/2f448a119ca0e2043fb8c22ea1a9efb8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2f/2f53c33039af890d0710100ebbab3bb0.bin b/common/runtime/cache/2f/2f53c33039af890d0710100ebbab3bb0.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2f/2f53c33039af890d0710100ebbab3bb0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2f/2f60bf840b44af9835dac90d4b89c2f2.bin b/common/runtime/cache/2f/2f60bf840b44af9835dac90d4b89c2f2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2f/2f60bf840b44af9835dac90d4b89c2f2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2f/2f79025812cb88b41dd26f507868102f.bin b/common/runtime/cache/2f/2f79025812cb88b41dd26f507868102f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2f/2f79025812cb88b41dd26f507868102f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2f/2f8829095319430a93bc42b5357bab86.bin b/common/runtime/cache/2f/2f8829095319430a93bc42b5357bab86.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2f/2f8829095319430a93bc42b5357bab86.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2f/2f91b3028427bf95060c37d171a09401.bin b/common/runtime/cache/2f/2f91b3028427bf95060c37d171a09401.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2f/2f91b3028427bf95060c37d171a09401.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2f/2fa7dfd4fb496a6d0afff75e5f095da1.bin b/common/runtime/cache/2f/2fa7dfd4fb496a6d0afff75e5f095da1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2f/2fa7dfd4fb496a6d0afff75e5f095da1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2f/2fb11e3a134e2a3aa78fe60e2901e3e8.bin b/common/runtime/cache/2f/2fb11e3a134e2a3aa78fe60e2901e3e8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2f/2fb11e3a134e2a3aa78fe60e2901e3e8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2f/2fc063e2b1aace765ec071484e03de47.bin b/common/runtime/cache/2f/2fc063e2b1aace765ec071484e03de47.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2f/2fc063e2b1aace765ec071484e03de47.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2f/2fdaa3a2dc65dbb353cae6dd5ade4985.bin b/common/runtime/cache/2f/2fdaa3a2dc65dbb353cae6dd5ade4985.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2f/2fdaa3a2dc65dbb353cae6dd5ade4985.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2f/2fea9716626b3c979a604b5ee9ea5723.bin b/common/runtime/cache/2f/2fea9716626b3c979a604b5ee9ea5723.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/2f/2fea9716626b3c979a604b5ee9ea5723.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/2f/2ffe2d6da51e5e0ab6d3a908b7a13020.bin b/common/runtime/cache/2f/2ffe2d6da51e5e0ab6d3a908b7a13020.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/2f/2ffe2d6da51e5e0ab6d3a908b7a13020.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/30/300737039d9ed0f3acf8168e3a750315.bin b/common/runtime/cache/30/300737039d9ed0f3acf8168e3a750315.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/30/300737039d9ed0f3acf8168e3a750315.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/30/3040d9447752dfac32fcce209c5647fc.bin b/common/runtime/cache/30/3040d9447752dfac32fcce209c5647fc.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/30/3040d9447752dfac32fcce209c5647fc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/30/3074ef481fb32888ddc833850fdec0bf.bin b/common/runtime/cache/30/3074ef481fb32888ddc833850fdec0bf.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/30/3074ef481fb32888ddc833850fdec0bf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/30/309a0b306fc9b4661745b4258d285437.bin b/common/runtime/cache/30/309a0b306fc9b4661745b4258d285437.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/30/309a0b306fc9b4661745b4258d285437.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/30/30cbc42dc207f869859b1092e7a5c589.bin b/common/runtime/cache/30/30cbc42dc207f869859b1092e7a5c589.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/30/30cbc42dc207f869859b1092e7a5c589.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/30/30dd9e4f4dc34416066b0485dc893fc5.bin b/common/runtime/cache/30/30dd9e4f4dc34416066b0485dc893fc5.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/30/30dd9e4f4dc34416066b0485dc893fc5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/30/30f942e72ee20d50ee836690c5cdad41.bin b/common/runtime/cache/30/30f942e72ee20d50ee836690c5cdad41.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/30/30f942e72ee20d50ee836690c5cdad41.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/31/312d946a9d644f96f89d8ed8ee1a2fa2.bin b/common/runtime/cache/31/312d946a9d644f96f89d8ed8ee1a2fa2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/31/312d946a9d644f96f89d8ed8ee1a2fa2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/31/314208bf0d1c4d1cb56d586d13d21489.bin b/common/runtime/cache/31/314208bf0d1c4d1cb56d586d13d21489.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/31/314208bf0d1c4d1cb56d586d13d21489.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/31/3148f93f7daa1d832ce88aea61bc17e7.bin b/common/runtime/cache/31/3148f93f7daa1d832ce88aea61bc17e7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/31/3148f93f7daa1d832ce88aea61bc17e7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/31/31d2544311f26fc8e6be96569c884e8e.bin b/common/runtime/cache/31/31d2544311f26fc8e6be96569c884e8e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/31/31d2544311f26fc8e6be96569c884e8e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/31/31f8ec59e5b55576b478e596f81d1990.bin b/common/runtime/cache/31/31f8ec59e5b55576b478e596f81d1990.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/31/31f8ec59e5b55576b478e596f81d1990.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/32/3208a52e7c1b6ef33978404742db10bb.bin b/common/runtime/cache/32/3208a52e7c1b6ef33978404742db10bb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/32/3208a52e7c1b6ef33978404742db10bb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/32/3224bad370688e43b449ce7853827b97.bin b/common/runtime/cache/32/3224bad370688e43b449ce7853827b97.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/32/3224bad370688e43b449ce7853827b97.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/32/3231ceea2b327487deec78a5afb4fa6d.bin b/common/runtime/cache/32/3231ceea2b327487deec78a5afb4fa6d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/32/3231ceea2b327487deec78a5afb4fa6d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/32/3251df5d7fcd10dfd0506901e1bcbb5a.bin b/common/runtime/cache/32/3251df5d7fcd10dfd0506901e1bcbb5a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/32/3251df5d7fcd10dfd0506901e1bcbb5a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/32/3251f85e523224cfa772e49889195d34.bin b/common/runtime/cache/32/3251f85e523224cfa772e49889195d34.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/32/3251f85e523224cfa772e49889195d34.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/32/3263a853cc95b782e26c224a43ea4a9a.bin b/common/runtime/cache/32/3263a853cc95b782e26c224a43ea4a9a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/32/3263a853cc95b782e26c224a43ea4a9a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/32/327f5ea0e9b6acdde43f4dc81acd6116.bin b/common/runtime/cache/32/327f5ea0e9b6acdde43f4dc81acd6116.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/32/327f5ea0e9b6acdde43f4dc81acd6116.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/32/328a48e2dd639efb686679bd56a9df04.bin b/common/runtime/cache/32/328a48e2dd639efb686679bd56a9df04.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/32/328a48e2dd639efb686679bd56a9df04.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/32/32993b6de2e03d1764d4f308cee24294.bin b/common/runtime/cache/32/32993b6de2e03d1764d4f308cee24294.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/32/32993b6de2e03d1764d4f308cee24294.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/32/32a0fadecb6404b602ae80950d3f2424.bin b/common/runtime/cache/32/32a0fadecb6404b602ae80950d3f2424.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/32/32a0fadecb6404b602ae80950d3f2424.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/32/32ac010fd072848736ac3073e289b6d0.bin b/common/runtime/cache/32/32ac010fd072848736ac3073e289b6d0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/32/32ac010fd072848736ac3073e289b6d0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/32/32c25a295d75990a352fd3f6b638bad9.bin b/common/runtime/cache/32/32c25a295d75990a352fd3f6b638bad9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/32/32c25a295d75990a352fd3f6b638bad9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/32/32e87e8e79b22596a8368f885904b2ca.bin b/common/runtime/cache/32/32e87e8e79b22596a8368f885904b2ca.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/32/32e87e8e79b22596a8368f885904b2ca.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/32/32ec1e2097180475b0af964e38d66377.bin b/common/runtime/cache/32/32ec1e2097180475b0af964e38d66377.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/32/32ec1e2097180475b0af964e38d66377.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/33/330fd1dcf50aa9f31dbc4cdd62c88601.bin b/common/runtime/cache/33/330fd1dcf50aa9f31dbc4cdd62c88601.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/33/330fd1dcf50aa9f31dbc4cdd62c88601.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/33/3311af560ce868ea4fa5307252d17a27.bin b/common/runtime/cache/33/3311af560ce868ea4fa5307252d17a27.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/33/3311af560ce868ea4fa5307252d17a27.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/33/331502e98a59486acbb68a745193dddc.bin b/common/runtime/cache/33/331502e98a59486acbb68a745193dddc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/33/331502e98a59486acbb68a745193dddc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/33/335181ed005938778200cbf3d941a398.bin b/common/runtime/cache/33/335181ed005938778200cbf3d941a398.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/33/335181ed005938778200cbf3d941a398.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/33/3378a0da3c7eed9335747cf629fa2944.bin b/common/runtime/cache/33/3378a0da3c7eed9335747cf629fa2944.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/33/3378a0da3c7eed9335747cf629fa2944.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/33/338b63e1a754cf7d0ea9e24bb2ca1b50.bin b/common/runtime/cache/33/338b63e1a754cf7d0ea9e24bb2ca1b50.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/33/338b63e1a754cf7d0ea9e24bb2ca1b50.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/33/33917e94ecd2ab98199376622a7014ea.bin b/common/runtime/cache/33/33917e94ecd2ab98199376622a7014ea.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/33/33917e94ecd2ab98199376622a7014ea.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/33/33a850705b4d3ca68c7e86a89645bf3f.bin b/common/runtime/cache/33/33a850705b4d3ca68c7e86a89645bf3f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/33/33a850705b4d3ca68c7e86a89645bf3f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/33/33bbbc0dfe1c721651e363633d0a6bf6.bin b/common/runtime/cache/33/33bbbc0dfe1c721651e363633d0a6bf6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/33/33bbbc0dfe1c721651e363633d0a6bf6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/33/33bc1b191f4fc9ec396f05edf9575add.bin b/common/runtime/cache/33/33bc1b191f4fc9ec396f05edf9575add.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/33/33bc1b191f4fc9ec396f05edf9575add.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/33/33db9d0a2dec183f528f5a2e2bbba793.bin b/common/runtime/cache/33/33db9d0a2dec183f528f5a2e2bbba793.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/33/33db9d0a2dec183f528f5a2e2bbba793.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/33/33eb1c97574d91c5fd22e68897ff5ac8.bin b/common/runtime/cache/33/33eb1c97574d91c5fd22e68897ff5ac8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/33/33eb1c97574d91c5fd22e68897ff5ac8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/34/3421eadd2d1b25bd416f9a621797a796.bin b/common/runtime/cache/34/3421eadd2d1b25bd416f9a621797a796.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/34/3421eadd2d1b25bd416f9a621797a796.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/34/34393a90d699205a2395732af2dbfd20.bin b/common/runtime/cache/34/34393a90d699205a2395732af2dbfd20.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/34/34393a90d699205a2395732af2dbfd20.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/34/345b53ad117edcfad4d4e865ce82ef16.bin b/common/runtime/cache/34/345b53ad117edcfad4d4e865ce82ef16.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/34/345b53ad117edcfad4d4e865ce82ef16.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/34/34af266dd8baca43ff6acedf803b5e48.bin b/common/runtime/cache/34/34af266dd8baca43ff6acedf803b5e48.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/34/34af266dd8baca43ff6acedf803b5e48.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/34/34afe5113cf7a86214678283bce5826a.bin b/common/runtime/cache/34/34afe5113cf7a86214678283bce5826a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/34/34afe5113cf7a86214678283bce5826a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/34/34b84f41f0f91f82ddcd21f86c610dea.bin b/common/runtime/cache/34/34b84f41f0f91f82ddcd21f86c610dea.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/34/34b84f41f0f91f82ddcd21f86c610dea.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/34/34b9e8c0ddf699b34b6a76b65710a381.bin b/common/runtime/cache/34/34b9e8c0ddf699b34b6a76b65710a381.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/34/34b9e8c0ddf699b34b6a76b65710a381.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/35/350fd584217e31d82c4a0f73b1114380.bin b/common/runtime/cache/35/350fd584217e31d82c4a0f73b1114380.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/35/350fd584217e31d82c4a0f73b1114380.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/35/3513f44c688ca174f383808e83e47699.bin b/common/runtime/cache/35/3513f44c688ca174f383808e83e47699.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/35/3513f44c688ca174f383808e83e47699.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/35/351923b34647f753461f23b9794023d4.bin b/common/runtime/cache/35/351923b34647f753461f23b9794023d4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/35/351923b34647f753461f23b9794023d4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/35/353b84c4e8cbfeae55b0acc5663bb7c4.bin b/common/runtime/cache/35/353b84c4e8cbfeae55b0acc5663bb7c4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/35/353b84c4e8cbfeae55b0acc5663bb7c4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/35/355978fbb7e1d4472af5243d4f137142.bin b/common/runtime/cache/35/355978fbb7e1d4472af5243d4f137142.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/35/355978fbb7e1d4472af5243d4f137142.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/35/355e411a3da8bdaab7179756571b28d6.bin b/common/runtime/cache/35/355e411a3da8bdaab7179756571b28d6.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/35/355e411a3da8bdaab7179756571b28d6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/35/3571fc24e3b558ba7259daca369726c2.bin b/common/runtime/cache/35/3571fc24e3b558ba7259daca369726c2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/35/3571fc24e3b558ba7259daca369726c2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/35/358454fc89c59e890105d516560d07d8.bin b/common/runtime/cache/35/358454fc89c59e890105d516560d07d8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/35/358454fc89c59e890105d516560d07d8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/35/358aa84647592680dc7b1472c6922faf.bin b/common/runtime/cache/35/358aa84647592680dc7b1472c6922faf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/35/358aa84647592680dc7b1472c6922faf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/35/3597688ef2f69030c553e182d7d144a4.bin b/common/runtime/cache/35/3597688ef2f69030c553e182d7d144a4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/35/3597688ef2f69030c553e182d7d144a4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/35/35abb1e14e5902ec6b27e96323716882.bin b/common/runtime/cache/35/35abb1e14e5902ec6b27e96323716882.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/35/35abb1e14e5902ec6b27e96323716882.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/35/35cf494622b87d6292f988c7287ac865.bin b/common/runtime/cache/35/35cf494622b87d6292f988c7287ac865.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/35/35cf494622b87d6292f988c7287ac865.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/35/35d19abcc9ef4178b7347dd16b4a868d.bin b/common/runtime/cache/35/35d19abcc9ef4178b7347dd16b4a868d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/35/35d19abcc9ef4178b7347dd16b4a868d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/35/35e214ceaed90894a4f1013b2e586f0e.bin b/common/runtime/cache/35/35e214ceaed90894a4f1013b2e586f0e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/35/35e214ceaed90894a4f1013b2e586f0e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/35/35ef0086cc50047ac4afc239ca0cb0ee.bin b/common/runtime/cache/35/35ef0086cc50047ac4afc239ca0cb0ee.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/35/35ef0086cc50047ac4afc239ca0cb0ee.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/36/3614479053fcf34f17a86d71ad773fc0.bin b/common/runtime/cache/36/3614479053fcf34f17a86d71ad773fc0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/36/3614479053fcf34f17a86d71ad773fc0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/36/363fd7717f8774d83e57dc44cc85cb4e.bin b/common/runtime/cache/36/363fd7717f8774d83e57dc44cc85cb4e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/36/363fd7717f8774d83e57dc44cc85cb4e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/36/36581cd5fbb07cbc48c18541e3743760.bin b/common/runtime/cache/36/36581cd5fbb07cbc48c18541e3743760.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/36/36581cd5fbb07cbc48c18541e3743760.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/36/367f350c2ff36974e5c35c779599de1b.bin b/common/runtime/cache/36/367f350c2ff36974e5c35c779599de1b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/36/367f350c2ff36974e5c35c779599de1b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/36/368b26b17af2a730e2beb45b1bf2fe19.bin b/common/runtime/cache/36/368b26b17af2a730e2beb45b1bf2fe19.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/36/368b26b17af2a730e2beb45b1bf2fe19.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/36/36a65f8e3d52bcfdf5ba243b7882316d.bin b/common/runtime/cache/36/36a65f8e3d52bcfdf5ba243b7882316d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/36/36a65f8e3d52bcfdf5ba243b7882316d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/36/36a8c51fe95fdc94e1bf619be75b1066.bin b/common/runtime/cache/36/36a8c51fe95fdc94e1bf619be75b1066.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/36/36a8c51fe95fdc94e1bf619be75b1066.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/36/36ce0de33997f3b284d56860cc2f199d.bin b/common/runtime/cache/36/36ce0de33997f3b284d56860cc2f199d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/36/36ce0de33997f3b284d56860cc2f199d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/36/36d243ae69ba6ec322793d60220880af.bin b/common/runtime/cache/36/36d243ae69ba6ec322793d60220880af.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/36/36d243ae69ba6ec322793d60220880af.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/36/36d26cd59771ad222cf5a58210685d93.bin b/common/runtime/cache/36/36d26cd59771ad222cf5a58210685d93.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/36/36d26cd59771ad222cf5a58210685d93.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/36/36d3b079c26d14b7b4ceb1895c41e4f2.bin b/common/runtime/cache/36/36d3b079c26d14b7b4ceb1895c41e4f2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/36/36d3b079c26d14b7b4ceb1895c41e4f2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/36/36e0b797e6e09e250be5a49e8b6642c4.bin b/common/runtime/cache/36/36e0b797e6e09e250be5a49e8b6642c4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/36/36e0b797e6e09e250be5a49e8b6642c4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/36/36e35f9e3a7b7db438b814af05e9917f.bin b/common/runtime/cache/36/36e35f9e3a7b7db438b814af05e9917f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/36/36e35f9e3a7b7db438b814af05e9917f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/37/37006d9879863735e9f980852bd49f2d.bin b/common/runtime/cache/37/37006d9879863735e9f980852bd49f2d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/37/37006d9879863735e9f980852bd49f2d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/37/3704c1453ed36b7ddb54e9406d075d15.bin b/common/runtime/cache/37/3704c1453ed36b7ddb54e9406d075d15.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/37/3704c1453ed36b7ddb54e9406d075d15.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/37/37141143037803f12307f864c24ebd97.bin b/common/runtime/cache/37/37141143037803f12307f864c24ebd97.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/37/37141143037803f12307f864c24ebd97.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/37/3717699537e182ef5cef1405e1ffec22.bin b/common/runtime/cache/37/3717699537e182ef5cef1405e1ffec22.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/37/3717699537e182ef5cef1405e1ffec22.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/37/371abf53bc6d16b91bbda7461fe76493.bin b/common/runtime/cache/37/371abf53bc6d16b91bbda7461fe76493.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/37/371abf53bc6d16b91bbda7461fe76493.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/37/372848ae6b42c689b20e5e8dd5265fcf.bin b/common/runtime/cache/37/372848ae6b42c689b20e5e8dd5265fcf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/37/372848ae6b42c689b20e5e8dd5265fcf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/37/3740d11d24621eb2ee6cfc5f5cb12667.bin b/common/runtime/cache/37/3740d11d24621eb2ee6cfc5f5cb12667.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/37/3740d11d24621eb2ee6cfc5f5cb12667.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/37/37449c8ed127ad57c54ff3df21e0d304.bin b/common/runtime/cache/37/37449c8ed127ad57c54ff3df21e0d304.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/37/37449c8ed127ad57c54ff3df21e0d304.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/37/37611255ae8ddc39049af3d423bb0e08.bin b/common/runtime/cache/37/37611255ae8ddc39049af3d423bb0e08.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/37/37611255ae8ddc39049af3d423bb0e08.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/37/378ea34fb234982b3528a2a1c03e5a0f.bin b/common/runtime/cache/37/378ea34fb234982b3528a2a1c03e5a0f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/37/378ea34fb234982b3528a2a1c03e5a0f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/37/37900ee626e5260f13682463a34d436b.bin b/common/runtime/cache/37/37900ee626e5260f13682463a34d436b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/37/37900ee626e5260f13682463a34d436b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/37/37b8e5aa407feb6cd2101238a30f9c04.bin b/common/runtime/cache/37/37b8e5aa407feb6cd2101238a30f9c04.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/37/37b8e5aa407feb6cd2101238a30f9c04.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/37/37c161d5c3678fccc597c33b01437b24.bin b/common/runtime/cache/37/37c161d5c3678fccc597c33b01437b24.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/37/37c161d5c3678fccc597c33b01437b24.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/37/37e0d7a320e90823024fec0dc40a6b6a.bin b/common/runtime/cache/37/37e0d7a320e90823024fec0dc40a6b6a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/37/37e0d7a320e90823024fec0dc40a6b6a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/37/37e86fa77b09a80f6f4f83e48a955d3d.bin b/common/runtime/cache/37/37e86fa77b09a80f6f4f83e48a955d3d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/37/37e86fa77b09a80f6f4f83e48a955d3d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/37/37f33117b777d27bd9e41f4d80745b53.bin b/common/runtime/cache/37/37f33117b777d27bd9e41f4d80745b53.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/37/37f33117b777d27bd9e41f4d80745b53.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/38/380f801d525657945f226c1abb42df5b.bin b/common/runtime/cache/38/380f801d525657945f226c1abb42df5b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/38/380f801d525657945f226c1abb42df5b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/38/381315dd0126689244135f601ee73084.bin b/common/runtime/cache/38/381315dd0126689244135f601ee73084.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/38/381315dd0126689244135f601ee73084.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/38/381f5f0c89680862779a3efc92870495.bin b/common/runtime/cache/38/381f5f0c89680862779a3efc92870495.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/38/381f5f0c89680862779a3efc92870495.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/38/3845a8b523410f6b611d75b496b59f0c.bin b/common/runtime/cache/38/3845a8b523410f6b611d75b496b59f0c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/38/3845a8b523410f6b611d75b496b59f0c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/38/385fdd169233f99043ed7bb151fff4c0.bin b/common/runtime/cache/38/385fdd169233f99043ed7bb151fff4c0.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/38/385fdd169233f99043ed7bb151fff4c0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/38/3895b5c86cef3c4464034f2f71ce5b96.bin b/common/runtime/cache/38/3895b5c86cef3c4464034f2f71ce5b96.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/38/3895b5c86cef3c4464034f2f71ce5b96.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/38/38ab167c17f1e90adc9f9be57275dead.bin b/common/runtime/cache/38/38ab167c17f1e90adc9f9be57275dead.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/38/38ab167c17f1e90adc9f9be57275dead.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/38/38abd1771d1b0c70809debd5180a3ad9.bin b/common/runtime/cache/38/38abd1771d1b0c70809debd5180a3ad9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/38/38abd1771d1b0c70809debd5180a3ad9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/38/38e8ff438be98bf4e160aa155b6be15f.bin b/common/runtime/cache/38/38e8ff438be98bf4e160aa155b6be15f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/38/38e8ff438be98bf4e160aa155b6be15f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/39/39109bf54fbf32b33e158fc821f72961.bin b/common/runtime/cache/39/39109bf54fbf32b33e158fc821f72961.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/39/39109bf54fbf32b33e158fc821f72961.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/39/392519fb804641d43de28ede145a06de.bin b/common/runtime/cache/39/392519fb804641d43de28ede145a06de.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/39/392519fb804641d43de28ede145a06de.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/39/3931f32dff403ec2b2dece1bed7205b0.bin b/common/runtime/cache/39/3931f32dff403ec2b2dece1bed7205b0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/39/3931f32dff403ec2b2dece1bed7205b0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/39/394ba589de2d706b66626ee47c324893.bin b/common/runtime/cache/39/394ba589de2d706b66626ee47c324893.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/39/394ba589de2d706b66626ee47c324893.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/39/39afac1dbe8c30c87bc50c712725d0e4.bin b/common/runtime/cache/39/39afac1dbe8c30c87bc50c712725d0e4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/39/39afac1dbe8c30c87bc50c712725d0e4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/39/39e85056864ae747dadea781c182857e.bin b/common/runtime/cache/39/39e85056864ae747dadea781c182857e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/39/39e85056864ae747dadea781c182857e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/39/39e89038687e2e0d63fa2e35d0bb1dd0.bin b/common/runtime/cache/39/39e89038687e2e0d63fa2e35d0bb1dd0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/39/39e89038687e2e0d63fa2e35d0bb1dd0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/39/39f6e0ae700c2af7d98d23503af0995a.bin b/common/runtime/cache/39/39f6e0ae700c2af7d98d23503af0995a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/39/39f6e0ae700c2af7d98d23503af0995a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/39/39f7e650d2b7e8fc78914cfcc65ea24a.bin b/common/runtime/cache/39/39f7e650d2b7e8fc78914cfcc65ea24a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/39/39f7e650d2b7e8fc78914cfcc65ea24a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3a/3a4c7c8a870b684f176a7c234315a385.bin b/common/runtime/cache/3a/3a4c7c8a870b684f176a7c234315a385.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3a/3a4c7c8a870b684f176a7c234315a385.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3a/3a58d4a2d75751200d7d512e31a773bf.bin b/common/runtime/cache/3a/3a58d4a2d75751200d7d512e31a773bf.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3a/3a58d4a2d75751200d7d512e31a773bf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3a/3a74f079dc153b3cdece5f6a836eb509.bin b/common/runtime/cache/3a/3a74f079dc153b3cdece5f6a836eb509.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3a/3a74f079dc153b3cdece5f6a836eb509.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3a/3a800b47c26b867e600d1206d6768120.bin b/common/runtime/cache/3a/3a800b47c26b867e600d1206d6768120.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3a/3a800b47c26b867e600d1206d6768120.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3a/3a91724b5362ebbcade05dc5b3568857.bin b/common/runtime/cache/3a/3a91724b5362ebbcade05dc5b3568857.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3a/3a91724b5362ebbcade05dc5b3568857.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3a/3a988b375dadac045b15ad5964ae1874.bin b/common/runtime/cache/3a/3a988b375dadac045b15ad5964ae1874.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3a/3a988b375dadac045b15ad5964ae1874.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3a/3a9bd41bfe971acca0c1c433810b701f.bin b/common/runtime/cache/3a/3a9bd41bfe971acca0c1c433810b701f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3a/3a9bd41bfe971acca0c1c433810b701f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3a/3aa1f128553fce1946fc4c52a2d923ae.bin b/common/runtime/cache/3a/3aa1f128553fce1946fc4c52a2d923ae.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3a/3aa1f128553fce1946fc4c52a2d923ae.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3a/3ac2a89e481554387fa96af48a48d35e.bin b/common/runtime/cache/3a/3ac2a89e481554387fa96af48a48d35e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3a/3ac2a89e481554387fa96af48a48d35e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3a/3acb872fe7b8410722e17c24d77cd936.bin b/common/runtime/cache/3a/3acb872fe7b8410722e17c24d77cd936.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3a/3acb872fe7b8410722e17c24d77cd936.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3a/3adcde8fd83636ad08ec4ce03648bc0c.bin b/common/runtime/cache/3a/3adcde8fd83636ad08ec4ce03648bc0c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3a/3adcde8fd83636ad08ec4ce03648bc0c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3a/3ae90e2088d6fa36e7032eadb96ddc11.bin b/common/runtime/cache/3a/3ae90e2088d6fa36e7032eadb96ddc11.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3a/3ae90e2088d6fa36e7032eadb96ddc11.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3a/3af3dbdc8bdcd0dd040439077f69d4a2.bin b/common/runtime/cache/3a/3af3dbdc8bdcd0dd040439077f69d4a2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3a/3af3dbdc8bdcd0dd040439077f69d4a2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3a/3afb59dc7f744e750c23acf7286cce70.bin b/common/runtime/cache/3a/3afb59dc7f744e750c23acf7286cce70.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3a/3afb59dc7f744e750c23acf7286cce70.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3a/3afd592f71bc180ee517dbfff7a660c4.bin b/common/runtime/cache/3a/3afd592f71bc180ee517dbfff7a660c4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3a/3afd592f71bc180ee517dbfff7a660c4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3a/3aff605d85deefa1fc072f269bd5a83c.bin b/common/runtime/cache/3a/3aff605d85deefa1fc072f269bd5a83c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3a/3aff605d85deefa1fc072f269bd5a83c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3b/3b39d1ed885fdc60fa0dfbbb8b3683fd.bin b/common/runtime/cache/3b/3b39d1ed885fdc60fa0dfbbb8b3683fd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3b/3b39d1ed885fdc60fa0dfbbb8b3683fd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3b/3b4fb28fa1d61866658ede5f6b8626c9.bin b/common/runtime/cache/3b/3b4fb28fa1d61866658ede5f6b8626c9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3b/3b4fb28fa1d61866658ede5f6b8626c9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3b/3b64f06036ee5e287d42062813ae6367.bin b/common/runtime/cache/3b/3b64f06036ee5e287d42062813ae6367.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3b/3b64f06036ee5e287d42062813ae6367.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3b/3b65a19fb10980790c2de589eced06a4.bin b/common/runtime/cache/3b/3b65a19fb10980790c2de589eced06a4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3b/3b65a19fb10980790c2de589eced06a4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3b/3b69686b42b2472b9b08b70372f85b09.bin b/common/runtime/cache/3b/3b69686b42b2472b9b08b70372f85b09.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3b/3b69686b42b2472b9b08b70372f85b09.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3b/3b75a6e420e92993d42caa81b7745836.bin b/common/runtime/cache/3b/3b75a6e420e92993d42caa81b7745836.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3b/3b75a6e420e92993d42caa81b7745836.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3b/3b77e24269e61fbf47ab7d19c2523166.bin b/common/runtime/cache/3b/3b77e24269e61fbf47ab7d19c2523166.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3b/3b77e24269e61fbf47ab7d19c2523166.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3b/3b874b323b4423a42b6d3d984f476c25.bin b/common/runtime/cache/3b/3b874b323b4423a42b6d3d984f476c25.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3b/3b874b323b4423a42b6d3d984f476c25.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3b/3b96e8586d1f2ef607a304d045958ce1.bin b/common/runtime/cache/3b/3b96e8586d1f2ef607a304d045958ce1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3b/3b96e8586d1f2ef607a304d045958ce1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3b/3bfbb8b8b75fad4bbc968c0ff1a7ce6b.bin b/common/runtime/cache/3b/3bfbb8b8b75fad4bbc968c0ff1a7ce6b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3b/3bfbb8b8b75fad4bbc968c0ff1a7ce6b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3c/3c01ac1d5100423dbcb68103cc824cc5.bin b/common/runtime/cache/3c/3c01ac1d5100423dbcb68103cc824cc5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3c/3c01ac1d5100423dbcb68103cc824cc5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3c/3c030cd4f18bfd13b1c631fe41cd6068.bin b/common/runtime/cache/3c/3c030cd4f18bfd13b1c631fe41cd6068.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3c/3c030cd4f18bfd13b1c631fe41cd6068.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3c/3c03a668a864defa20fdb80d2424b3ec.bin b/common/runtime/cache/3c/3c03a668a864defa20fdb80d2424b3ec.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3c/3c03a668a864defa20fdb80d2424b3ec.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3c/3c11557c8e79ecdc7a9c2e3f7a2d6950.bin b/common/runtime/cache/3c/3c11557c8e79ecdc7a9c2e3f7a2d6950.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3c/3c11557c8e79ecdc7a9c2e3f7a2d6950.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3c/3c12f382f82c7097780c86b7d0a440fd.bin b/common/runtime/cache/3c/3c12f382f82c7097780c86b7d0a440fd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3c/3c12f382f82c7097780c86b7d0a440fd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3c/3c335d4620feed6c7eb61735598cdd5f.bin b/common/runtime/cache/3c/3c335d4620feed6c7eb61735598cdd5f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3c/3c335d4620feed6c7eb61735598cdd5f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3c/3c51dc55efb0ce9312affa39f60db22e.bin b/common/runtime/cache/3c/3c51dc55efb0ce9312affa39f60db22e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3c/3c51dc55efb0ce9312affa39f60db22e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3c/3c78f25125bd4e3a7db6d917c6ffabdd.bin b/common/runtime/cache/3c/3c78f25125bd4e3a7db6d917c6ffabdd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3c/3c78f25125bd4e3a7db6d917c6ffabdd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3c/3c832fba7165ae5a4cf5f6125bf2ee83.bin b/common/runtime/cache/3c/3c832fba7165ae5a4cf5f6125bf2ee83.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3c/3c832fba7165ae5a4cf5f6125bf2ee83.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3c/3c8c1f6388ac072e8887b90b7a2bd066.bin b/common/runtime/cache/3c/3c8c1f6388ac072e8887b90b7a2bd066.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3c/3c8c1f6388ac072e8887b90b7a2bd066.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3c/3c9aad9009533d24390d9ff570164d75.bin b/common/runtime/cache/3c/3c9aad9009533d24390d9ff570164d75.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3c/3c9aad9009533d24390d9ff570164d75.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3c/3cc8cdc86651ae95414eaed47f1d0def.bin b/common/runtime/cache/3c/3cc8cdc86651ae95414eaed47f1d0def.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3c/3cc8cdc86651ae95414eaed47f1d0def.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3c/3cd9840157fb390efd31241ffe10fc8b.bin b/common/runtime/cache/3c/3cd9840157fb390efd31241ffe10fc8b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3c/3cd9840157fb390efd31241ffe10fc8b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3c/3cdf9a7ae66c125e48bbdc6d8b57ffba.bin b/common/runtime/cache/3c/3cdf9a7ae66c125e48bbdc6d8b57ffba.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3c/3cdf9a7ae66c125e48bbdc6d8b57ffba.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3c/3cfbde7de5077e0c13c47878e09ff741.bin b/common/runtime/cache/3c/3cfbde7de5077e0c13c47878e09ff741.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3c/3cfbde7de5077e0c13c47878e09ff741.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3d/3d0e1c8e31a579fc22c773d440b6f620.bin b/common/runtime/cache/3d/3d0e1c8e31a579fc22c773d440b6f620.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3d/3d0e1c8e31a579fc22c773d440b6f620.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3d/3d16a154200c930a8d40de3ec5979c20.bin b/common/runtime/cache/3d/3d16a154200c930a8d40de3ec5979c20.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3d/3d16a154200c930a8d40de3ec5979c20.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3d/3d2887d7ffb688cb1f071298ad0267a3.bin b/common/runtime/cache/3d/3d2887d7ffb688cb1f071298ad0267a3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3d/3d2887d7ffb688cb1f071298ad0267a3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3d/3d4bbaaa50c2429d54e55d830270685d.bin b/common/runtime/cache/3d/3d4bbaaa50c2429d54e55d830270685d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3d/3d4bbaaa50c2429d54e55d830270685d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3d/3d658b107791c4ede585e906e26c28a1.bin b/common/runtime/cache/3d/3d658b107791c4ede585e906e26c28a1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3d/3d658b107791c4ede585e906e26c28a1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3d/3d9e3a679ea332bd94644747d1a352b6.bin b/common/runtime/cache/3d/3d9e3a679ea332bd94644747d1a352b6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3d/3d9e3a679ea332bd94644747d1a352b6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3d/3da186d38aee5830dd30758a5b082089.bin b/common/runtime/cache/3d/3da186d38aee5830dd30758a5b082089.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3d/3da186d38aee5830dd30758a5b082089.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3d/3dab8133ebbe4e421297c348e9462edb.bin b/common/runtime/cache/3d/3dab8133ebbe4e421297c348e9462edb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3d/3dab8133ebbe4e421297c348e9462edb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3d/3db61f7a621438af8273810b1dcff42b.bin b/common/runtime/cache/3d/3db61f7a621438af8273810b1dcff42b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3d/3db61f7a621438af8273810b1dcff42b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3d/3de2b5bfb9fbe60100f4116733d897cc.bin b/common/runtime/cache/3d/3de2b5bfb9fbe60100f4116733d897cc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3d/3de2b5bfb9fbe60100f4116733d897cc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3d/3de399cae9a84d5191a20987732298be.bin b/common/runtime/cache/3d/3de399cae9a84d5191a20987732298be.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3d/3de399cae9a84d5191a20987732298be.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3e/3e030b0e9031a9cb4d4ffd541273439b.bin b/common/runtime/cache/3e/3e030b0e9031a9cb4d4ffd541273439b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3e/3e030b0e9031a9cb4d4ffd541273439b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3e/3e0c416351d38881f22432618335b360.bin b/common/runtime/cache/3e/3e0c416351d38881f22432618335b360.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3e/3e0c416351d38881f22432618335b360.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3e/3e1d7e7cf38e03f983631a396f126c24.bin b/common/runtime/cache/3e/3e1d7e7cf38e03f983631a396f126c24.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3e/3e1d7e7cf38e03f983631a396f126c24.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3e/3e488f1fb92c9f4d5caf7ef48c347484.bin b/common/runtime/cache/3e/3e488f1fb92c9f4d5caf7ef48c347484.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3e/3e488f1fb92c9f4d5caf7ef48c347484.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3e/3e4fc304af2456731b65a37580e43fe3.bin b/common/runtime/cache/3e/3e4fc304af2456731b65a37580e43fe3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3e/3e4fc304af2456731b65a37580e43fe3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3e/3e8052d377f1cb41dbccae30d622e86a.bin b/common/runtime/cache/3e/3e8052d377f1cb41dbccae30d622e86a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3e/3e8052d377f1cb41dbccae30d622e86a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3e/3e85cfc97d25f3f3bbc186b193197825.bin b/common/runtime/cache/3e/3e85cfc97d25f3f3bbc186b193197825.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3e/3e85cfc97d25f3f3bbc186b193197825.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3e/3ead187e684c347653ca748671ca2cdb.bin b/common/runtime/cache/3e/3ead187e684c347653ca748671ca2cdb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3e/3ead187e684c347653ca748671ca2cdb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3e/3eba535c34fed8e9f9d1240fe6b52012.bin b/common/runtime/cache/3e/3eba535c34fed8e9f9d1240fe6b52012.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3e/3eba535c34fed8e9f9d1240fe6b52012.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3e/3ebc1c437a4209e80e4829694f201adf.bin b/common/runtime/cache/3e/3ebc1c437a4209e80e4829694f201adf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3e/3ebc1c437a4209e80e4829694f201adf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3e/3ebff6a1afbaab5497b603ea9b72fa36.bin b/common/runtime/cache/3e/3ebff6a1afbaab5497b603ea9b72fa36.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3e/3ebff6a1afbaab5497b603ea9b72fa36.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3e/3ec3e8127fe84c8d7d21d52f15c07c93.bin b/common/runtime/cache/3e/3ec3e8127fe84c8d7d21d52f15c07c93.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3e/3ec3e8127fe84c8d7d21d52f15c07c93.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3e/3ed15a37797590e0b0e7ebf49ba17ed8.bin b/common/runtime/cache/3e/3ed15a37797590e0b0e7ebf49ba17ed8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3e/3ed15a37797590e0b0e7ebf49ba17ed8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3e/3edb43941043e92f7ec166bfcf11f8af.bin b/common/runtime/cache/3e/3edb43941043e92f7ec166bfcf11f8af.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3e/3edb43941043e92f7ec166bfcf11f8af.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3e/3eeafa1979499f5a440d5d1f0edd5874.bin b/common/runtime/cache/3e/3eeafa1979499f5a440d5d1f0edd5874.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3e/3eeafa1979499f5a440d5d1f0edd5874.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3f/3f10344302c89421ca06fdbac7a4169b.bin b/common/runtime/cache/3f/3f10344302c89421ca06fdbac7a4169b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3f/3f10344302c89421ca06fdbac7a4169b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3f/3f23f4a4451ba1230466052314235c18.bin b/common/runtime/cache/3f/3f23f4a4451ba1230466052314235c18.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3f/3f23f4a4451ba1230466052314235c18.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3f/3f4c4ffd057db676c8399fddf8b350a4.bin b/common/runtime/cache/3f/3f4c4ffd057db676c8399fddf8b350a4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3f/3f4c4ffd057db676c8399fddf8b350a4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3f/3f4e61cf6900647b20cdcaacaa00b743.bin b/common/runtime/cache/3f/3f4e61cf6900647b20cdcaacaa00b743.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/3f/3f4e61cf6900647b20cdcaacaa00b743.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3f/3f5b60c1af91f00d4a9ce4ece5bb3b92.bin b/common/runtime/cache/3f/3f5b60c1af91f00d4a9ce4ece5bb3b92.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3f/3f5b60c1af91f00d4a9ce4ece5bb3b92.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3f/3f70b3f3d5f0e8e7cca257d1c9c08974.bin b/common/runtime/cache/3f/3f70b3f3d5f0e8e7cca257d1c9c08974.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3f/3f70b3f3d5f0e8e7cca257d1c9c08974.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3f/3f71f30613b8eeb0971bc5baada2890c.bin b/common/runtime/cache/3f/3f71f30613b8eeb0971bc5baada2890c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3f/3f71f30613b8eeb0971bc5baada2890c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3f/3f87490147b46f55d610f9be8015270f.bin b/common/runtime/cache/3f/3f87490147b46f55d610f9be8015270f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3f/3f87490147b46f55d610f9be8015270f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3f/3f8f665a1e87161bc131994dde840882.bin b/common/runtime/cache/3f/3f8f665a1e87161bc131994dde840882.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3f/3f8f665a1e87161bc131994dde840882.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3f/3fb5ba17ed9ad2c346227d136adc6f00.bin b/common/runtime/cache/3f/3fb5ba17ed9ad2c346227d136adc6f00.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3f/3fb5ba17ed9ad2c346227d136adc6f00.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3f/3fbb7141a98f8b510f892124962a723b.bin b/common/runtime/cache/3f/3fbb7141a98f8b510f892124962a723b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3f/3fbb7141a98f8b510f892124962a723b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3f/3fec200ee1e2d813fdc4c7cc4ca83c9f.bin b/common/runtime/cache/3f/3fec200ee1e2d813fdc4c7cc4ca83c9f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3f/3fec200ee1e2d813fdc4c7cc4ca83c9f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/3f/3ffcacb6ce2ea579517ff373185e463c.bin b/common/runtime/cache/3f/3ffcacb6ce2ea579517ff373185e463c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/3f/3ffcacb6ce2ea579517ff373185e463c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/40/40011f0e1e80965720d123fa1f911f23.bin b/common/runtime/cache/40/40011f0e1e80965720d123fa1f911f23.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/40/40011f0e1e80965720d123fa1f911f23.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/40/401e04ad026463d66ac4d47e06b49ef2.bin b/common/runtime/cache/40/401e04ad026463d66ac4d47e06b49ef2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/40/401e04ad026463d66ac4d47e06b49ef2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/40/408c9a23e0e2190f845431e8008ed047.bin b/common/runtime/cache/40/408c9a23e0e2190f845431e8008ed047.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/40/408c9a23e0e2190f845431e8008ed047.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/40/408f461b867a832792adb302e881001c.bin b/common/runtime/cache/40/408f461b867a832792adb302e881001c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/40/408f461b867a832792adb302e881001c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/40/408ffd5c68a4610357b0399da3e1417e.bin b/common/runtime/cache/40/408ffd5c68a4610357b0399da3e1417e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/40/408ffd5c68a4610357b0399da3e1417e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/40/4097841c5f4694037e4aed4b16d7ca59.bin b/common/runtime/cache/40/4097841c5f4694037e4aed4b16d7ca59.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/40/4097841c5f4694037e4aed4b16d7ca59.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/40/40a001d745989071e7eea2d48d486f7b.bin b/common/runtime/cache/40/40a001d745989071e7eea2d48d486f7b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/40/40a001d745989071e7eea2d48d486f7b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/40/40c0bc0e6e9bfbe9bcb39d9fdd5832a4.bin b/common/runtime/cache/40/40c0bc0e6e9bfbe9bcb39d9fdd5832a4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/40/40c0bc0e6e9bfbe9bcb39d9fdd5832a4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/40/40c677680796a1e38316323442b2bcf6.bin b/common/runtime/cache/40/40c677680796a1e38316323442b2bcf6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/40/40c677680796a1e38316323442b2bcf6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/40/40c94218731bb4776022d3d100f1e3ba.bin b/common/runtime/cache/40/40c94218731bb4776022d3d100f1e3ba.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/40/40c94218731bb4776022d3d100f1e3ba.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/40/40cd4497a6a5a135cc6ce52f9ca5dd2d.bin b/common/runtime/cache/40/40cd4497a6a5a135cc6ce52f9ca5dd2d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/40/40cd4497a6a5a135cc6ce52f9ca5dd2d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/40/40d807dbbb68d92ffe8a8c163d6ccfb4.bin b/common/runtime/cache/40/40d807dbbb68d92ffe8a8c163d6ccfb4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/40/40d807dbbb68d92ffe8a8c163d6ccfb4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/40/40e18def51dbd973a6438c6344426758.bin b/common/runtime/cache/40/40e18def51dbd973a6438c6344426758.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/40/40e18def51dbd973a6438c6344426758.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/40/40fae29edf2cd8a0b75dedf7106ba86e.bin b/common/runtime/cache/40/40fae29edf2cd8a0b75dedf7106ba86e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/40/40fae29edf2cd8a0b75dedf7106ba86e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/40/40ffad06b970509070e91a6445a533c0.bin b/common/runtime/cache/40/40ffad06b970509070e91a6445a533c0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/40/40ffad06b970509070e91a6445a533c0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/41/4123c7a604b070d9e4cd8558f80da4b7.bin b/common/runtime/cache/41/4123c7a604b070d9e4cd8558f80da4b7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/41/4123c7a604b070d9e4cd8558f80da4b7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/41/412d7933b1e35e7be5e1e5457ae8c2cf.bin b/common/runtime/cache/41/412d7933b1e35e7be5e1e5457ae8c2cf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/41/412d7933b1e35e7be5e1e5457ae8c2cf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/41/413a71d9c7ecbe2506e48cd21a5a1f24.bin b/common/runtime/cache/41/413a71d9c7ecbe2506e48cd21a5a1f24.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/41/413a71d9c7ecbe2506e48cd21a5a1f24.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/41/41a33ff307fbe2a6cf2cdc08385f9d95.bin b/common/runtime/cache/41/41a33ff307fbe2a6cf2cdc08385f9d95.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/41/41a33ff307fbe2a6cf2cdc08385f9d95.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/41/41a99071921247bf5010f7157a5a8ac7.bin b/common/runtime/cache/41/41a99071921247bf5010f7157a5a8ac7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/41/41a99071921247bf5010f7157a5a8ac7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/41/41bd9f860f3a29d1195ba2ab151d7280.bin b/common/runtime/cache/41/41bd9f860f3a29d1195ba2ab151d7280.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/41/41bd9f860f3a29d1195ba2ab151d7280.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/41/41c542394f3afa5e72f56004cb342269.bin b/common/runtime/cache/41/41c542394f3afa5e72f56004cb342269.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/41/41c542394f3afa5e72f56004cb342269.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/41/41e503ac5a220f128a710de0aaa2622a.bin b/common/runtime/cache/41/41e503ac5a220f128a710de0aaa2622a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/41/41e503ac5a220f128a710de0aaa2622a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/42/420a8883a90a682a9c3ea9a57f3f7521.bin b/common/runtime/cache/42/420a8883a90a682a9c3ea9a57f3f7521.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/42/420a8883a90a682a9c3ea9a57f3f7521.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/42/422d138e3668674223cfbe31eef2ba25.bin b/common/runtime/cache/42/422d138e3668674223cfbe31eef2ba25.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/42/422d138e3668674223cfbe31eef2ba25.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/42/4230b6ab7046c39e18fcc14019033fbe.bin b/common/runtime/cache/42/4230b6ab7046c39e18fcc14019033fbe.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/42/4230b6ab7046c39e18fcc14019033fbe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/42/42352fb2c806fca2eaab4230fb86c441.bin b/common/runtime/cache/42/42352fb2c806fca2eaab4230fb86c441.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/42/42352fb2c806fca2eaab4230fb86c441.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/42/424baf59a74f069d114cccf37a76c8c4.bin b/common/runtime/cache/42/424baf59a74f069d114cccf37a76c8c4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/42/424baf59a74f069d114cccf37a76c8c4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/42/424fb0b7261595c3f0b41d4c717be694.bin b/common/runtime/cache/42/424fb0b7261595c3f0b41d4c717be694.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/42/424fb0b7261595c3f0b41d4c717be694.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/42/4294a9b290d3beb179746b2b09ce457c.bin b/common/runtime/cache/42/4294a9b290d3beb179746b2b09ce457c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/42/4294a9b290d3beb179746b2b09ce457c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/43/430a60f67178b1cb21fd10358ccc073f.bin b/common/runtime/cache/43/430a60f67178b1cb21fd10358ccc073f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/43/430a60f67178b1cb21fd10358ccc073f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/43/436da3ea1a7d07e690bac29a5a30f540.bin b/common/runtime/cache/43/436da3ea1a7d07e690bac29a5a30f540.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/43/436da3ea1a7d07e690bac29a5a30f540.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/43/439c8eef4f779e2e3ca11f2c7293f248.bin b/common/runtime/cache/43/439c8eef4f779e2e3ca11f2c7293f248.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/43/439c8eef4f779e2e3ca11f2c7293f248.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/43/439fa13146ba320d0c3ebed60c106c09.bin b/common/runtime/cache/43/439fa13146ba320d0c3ebed60c106c09.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/43/439fa13146ba320d0c3ebed60c106c09.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/43/43b6b93d7aec043ebf62225f33104608.bin b/common/runtime/cache/43/43b6b93d7aec043ebf62225f33104608.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/43/43b6b93d7aec043ebf62225f33104608.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/43/43c3ea618a26e6413eee6db9bd857954.bin b/common/runtime/cache/43/43c3ea618a26e6413eee6db9bd857954.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/43/43c3ea618a26e6413eee6db9bd857954.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/43/43cc6ff38f90dd843d74b8cc8b38d3c0.bin b/common/runtime/cache/43/43cc6ff38f90dd843d74b8cc8b38d3c0.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/43/43cc6ff38f90dd843d74b8cc8b38d3c0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/43/43cea6bb97909387aa79a46e673fc4a7.bin b/common/runtime/cache/43/43cea6bb97909387aa79a46e673fc4a7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/43/43cea6bb97909387aa79a46e673fc4a7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/43/43d4ddcc92ef5f34676f3647fa0cd069.bin b/common/runtime/cache/43/43d4ddcc92ef5f34676f3647fa0cd069.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/43/43d4ddcc92ef5f34676f3647fa0cd069.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/44/44234d491a03ec59b43b26f2e8e143c2.bin b/common/runtime/cache/44/44234d491a03ec59b43b26f2e8e143c2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/44/44234d491a03ec59b43b26f2e8e143c2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/44/444efe4ee1919f5043da710091735d61.bin b/common/runtime/cache/44/444efe4ee1919f5043da710091735d61.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/44/444efe4ee1919f5043da710091735d61.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/44/445f22f520297e2c5eb605cf963be4c0.bin b/common/runtime/cache/44/445f22f520297e2c5eb605cf963be4c0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/44/445f22f520297e2c5eb605cf963be4c0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/44/44a8fd849047c0457e54ba7eeedd56f6.bin b/common/runtime/cache/44/44a8fd849047c0457e54ba7eeedd56f6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/44/44a8fd849047c0457e54ba7eeedd56f6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/44/44d0082973fe0a8e82dcd727f2d52d53.bin b/common/runtime/cache/44/44d0082973fe0a8e82dcd727f2d52d53.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/44/44d0082973fe0a8e82dcd727f2d52d53.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/44/44d9944e2e72bafa8d2b018c28040c94.bin b/common/runtime/cache/44/44d9944e2e72bafa8d2b018c28040c94.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/44/44d9944e2e72bafa8d2b018c28040c94.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/44/44da8c1f5708589b96cab334a5fa171f.bin b/common/runtime/cache/44/44da8c1f5708589b96cab334a5fa171f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/44/44da8c1f5708589b96cab334a5fa171f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/44/44e1059c4d16ddbc84b4d48ae2d0e620.bin b/common/runtime/cache/44/44e1059c4d16ddbc84b4d48ae2d0e620.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/44/44e1059c4d16ddbc84b4d48ae2d0e620.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/44/44f0f8bfd5a99a755bfd7a897f622b0e.bin b/common/runtime/cache/44/44f0f8bfd5a99a755bfd7a897f622b0e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/44/44f0f8bfd5a99a755bfd7a897f622b0e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/45/45434264e7672a08bf9d4e14c12d8d5c.bin b/common/runtime/cache/45/45434264e7672a08bf9d4e14c12d8d5c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/45/45434264e7672a08bf9d4e14c12d8d5c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/45/45c98431269e3c7f682222bd840bfd5d.bin b/common/runtime/cache/45/45c98431269e3c7f682222bd840bfd5d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/45/45c98431269e3c7f682222bd840bfd5d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/45/45e71245bab5cfc8338cc32701cc64eb.bin b/common/runtime/cache/45/45e71245bab5cfc8338cc32701cc64eb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/45/45e71245bab5cfc8338cc32701cc64eb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/46/4624e093fea0354f221187f1ed2603f1.bin b/common/runtime/cache/46/4624e093fea0354f221187f1ed2603f1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/46/4624e093fea0354f221187f1ed2603f1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/46/46282695ee56d98f7e572032369aabab.bin b/common/runtime/cache/46/46282695ee56d98f7e572032369aabab.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/46/46282695ee56d98f7e572032369aabab.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/46/462a454c39d1de8c612c8d3d2c92d2c5.bin b/common/runtime/cache/46/462a454c39d1de8c612c8d3d2c92d2c5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/46/462a454c39d1de8c612c8d3d2c92d2c5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/46/464fc6fc1ad12e912609bf4d48d44ff2.bin b/common/runtime/cache/46/464fc6fc1ad12e912609bf4d48d44ff2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/46/464fc6fc1ad12e912609bf4d48d44ff2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/46/46735590ec0445b43e77ffb469c57a51.bin b/common/runtime/cache/46/46735590ec0445b43e77ffb469c57a51.bin new file mode 100644 index 0000000..edb38bd --- /dev/null +++ b/common/runtime/cache/46/46735590ec0445b43e77ffb469c57a51.bin @@ -0,0 +1 @@ +a:2:{i:0;s:12:"news/bazeluk";i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/46/467a2f40eef8d0959906512c7044d763.bin b/common/runtime/cache/46/467a2f40eef8d0959906512c7044d763.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/46/467a2f40eef8d0959906512c7044d763.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/46/468b9f643feddaec16fad725dfd2487c.bin b/common/runtime/cache/46/468b9f643feddaec16fad725dfd2487c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/46/468b9f643feddaec16fad725dfd2487c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/46/46c34d6e7cc371125bf7146ce13fe9bc.bin b/common/runtime/cache/46/46c34d6e7cc371125bf7146ce13fe9bc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/46/46c34d6e7cc371125bf7146ce13fe9bc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/470595896d387a3bf51d9f7fa2a0cf48.bin b/common/runtime/cache/47/470595896d387a3bf51d9f7fa2a0cf48.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/47/470595896d387a3bf51d9f7fa2a0cf48.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/470d010cf2cd0508700904c503b5c709.bin b/common/runtime/cache/47/470d010cf2cd0508700904c503b5c709.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/47/470d010cf2cd0508700904c503b5c709.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/4710f7fc1ea1aad562b7fc723ade4201.bin b/common/runtime/cache/47/4710f7fc1ea1aad562b7fc723ade4201.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/47/4710f7fc1ea1aad562b7fc723ade4201.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/4711e5f90c23ad44d41140c15b025fe8.bin b/common/runtime/cache/47/4711e5f90c23ad44d41140c15b025fe8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/47/4711e5f90c23ad44d41140c15b025fe8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/47125640467d3e124b6ca2fc0e4f10fe.bin b/common/runtime/cache/47/47125640467d3e124b6ca2fc0e4f10fe.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/47/47125640467d3e124b6ca2fc0e4f10fe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/47145279a720af8473d226757a94d6cf.bin b/common/runtime/cache/47/47145279a720af8473d226757a94d6cf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/47/47145279a720af8473d226757a94d6cf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/471814607371d39800dcc73429f5f5df.bin b/common/runtime/cache/47/471814607371d39800dcc73429f5f5df.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/47/471814607371d39800dcc73429f5f5df.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/4723fded204b8ddd25b21e7e588170a8.bin b/common/runtime/cache/47/4723fded204b8ddd25b21e7e588170a8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/47/4723fded204b8ddd25b21e7e588170a8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/472e8adcd7bdd9eb29ce0a0e24102be2.bin b/common/runtime/cache/47/472e8adcd7bdd9eb29ce0a0e24102be2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/47/472e8adcd7bdd9eb29ce0a0e24102be2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/4750564cdbf8d4464e0766218639fcd4.bin b/common/runtime/cache/47/4750564cdbf8d4464e0766218639fcd4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/47/4750564cdbf8d4464e0766218639fcd4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/47509e1f19c9241ce7b4bb7a583f8aba.bin b/common/runtime/cache/47/47509e1f19c9241ce7b4bb7a583f8aba.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/47/47509e1f19c9241ce7b4bb7a583f8aba.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/477ba271504fa7707a387298e9b09cca.bin b/common/runtime/cache/47/477ba271504fa7707a387298e9b09cca.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/47/477ba271504fa7707a387298e9b09cca.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/4782f4b6b02553d7f5cf3b0abb27560d.bin b/common/runtime/cache/47/4782f4b6b02553d7f5cf3b0abb27560d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/47/4782f4b6b02553d7f5cf3b0abb27560d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/47ad8173c4817d2667e8175094313ea7.bin b/common/runtime/cache/47/47ad8173c4817d2667e8175094313ea7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/47/47ad8173c4817d2667e8175094313ea7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/47b4b87c5ca5578125917da2c21a9133.bin b/common/runtime/cache/47/47b4b87c5ca5578125917da2c21a9133.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/47/47b4b87c5ca5578125917da2c21a9133.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/47bab41c887759df4f19392c06ca3e81.bin b/common/runtime/cache/47/47bab41c887759df4f19392c06ca3e81.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/47/47bab41c887759df4f19392c06ca3e81.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/47c0a6c8a79675725abd3bd96fc20f97.bin b/common/runtime/cache/47/47c0a6c8a79675725abd3bd96fc20f97.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/47/47c0a6c8a79675725abd3bd96fc20f97.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/47c479f655603100b0e1bb7e85698b2d.bin b/common/runtime/cache/47/47c479f655603100b0e1bb7e85698b2d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/47/47c479f655603100b0e1bb7e85698b2d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/47dc2e57226b8b0786cd3501540d6380.bin b/common/runtime/cache/47/47dc2e57226b8b0786cd3501540d6380.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/47/47dc2e57226b8b0786cd3501540d6380.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/47e03b8b9dde23ae36e4e0acc6586c73.bin b/common/runtime/cache/47/47e03b8b9dde23ae36e4e0acc6586c73.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/47/47e03b8b9dde23ae36e4e0acc6586c73.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/47/47f240fbd58973edab6ba5fd05186531.bin b/common/runtime/cache/47/47f240fbd58973edab6ba5fd05186531.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/47/47f240fbd58973edab6ba5fd05186531.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/48/4807525f56f66affdbe2139ba37f7f9c.bin b/common/runtime/cache/48/4807525f56f66affdbe2139ba37f7f9c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/48/4807525f56f66affdbe2139ba37f7f9c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/48/481624feb66fe15ee0312a7acfc1f2f1.bin b/common/runtime/cache/48/481624feb66fe15ee0312a7acfc1f2f1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/48/481624feb66fe15ee0312a7acfc1f2f1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/48/481e2912c11a190a57b52ecfa9f5a8cf.bin b/common/runtime/cache/48/481e2912c11a190a57b52ecfa9f5a8cf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/48/481e2912c11a190a57b52ecfa9f5a8cf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/48/48225e4569f26631050914e0b09d4774.bin b/common/runtime/cache/48/48225e4569f26631050914e0b09d4774.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/48/48225e4569f26631050914e0b09d4774.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/48/48377843636247dd49e35ca6f4bd2937.bin b/common/runtime/cache/48/48377843636247dd49e35ca6f4bd2937.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/48/48377843636247dd49e35ca6f4bd2937.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/48/484c9d61b2a4cc678bcb637ec703a847.bin b/common/runtime/cache/48/484c9d61b2a4cc678bcb637ec703a847.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/48/484c9d61b2a4cc678bcb637ec703a847.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/48/4864ae6b5bc12d00e37e45f038963f0a.bin b/common/runtime/cache/48/4864ae6b5bc12d00e37e45f038963f0a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/48/4864ae6b5bc12d00e37e45f038963f0a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/48/4866a58038aa9b265de840122022b28c.bin b/common/runtime/cache/48/4866a58038aa9b265de840122022b28c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/48/4866a58038aa9b265de840122022b28c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/48/489403b41c4016932d4680f48b772b0a.bin b/common/runtime/cache/48/489403b41c4016932d4680f48b772b0a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/48/489403b41c4016932d4680f48b772b0a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/48/4895e3c6be87ac8a58ff29b8afef0660.bin b/common/runtime/cache/48/4895e3c6be87ac8a58ff29b8afef0660.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/48/4895e3c6be87ac8a58ff29b8afef0660.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/48/489a3ad714efe0d7bd8bb2c5fcba05fb.bin b/common/runtime/cache/48/489a3ad714efe0d7bd8bb2c5fcba05fb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/48/489a3ad714efe0d7bd8bb2c5fcba05fb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/48/48b749a53ac34a145cff40063f493bcc.bin b/common/runtime/cache/48/48b749a53ac34a145cff40063f493bcc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/48/48b749a53ac34a145cff40063f493bcc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/48/48cb30862651b3109633867441e6345c.bin b/common/runtime/cache/48/48cb30862651b3109633867441e6345c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/48/48cb30862651b3109633867441e6345c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/48/48d0d8c228b7c25ed4f46db4bca208ae.bin b/common/runtime/cache/48/48d0d8c228b7c25ed4f46db4bca208ae.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/48/48d0d8c228b7c25ed4f46db4bca208ae.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/48/48f13fae15b4a4da7216d8445a02f13d.bin b/common/runtime/cache/48/48f13fae15b4a4da7216d8445a02f13d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/48/48f13fae15b4a4da7216d8445a02f13d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/49/49064498bd359db7d58c18eac182ad44.bin b/common/runtime/cache/49/49064498bd359db7d58c18eac182ad44.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/49/49064498bd359db7d58c18eac182ad44.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/49/4916fee908e5fb1f4018e6065eb7090f.bin b/common/runtime/cache/49/4916fee908e5fb1f4018e6065eb7090f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/49/4916fee908e5fb1f4018e6065eb7090f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/49/49518df162c57a75d06d4f273e8157a1.bin b/common/runtime/cache/49/49518df162c57a75d06d4f273e8157a1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/49/49518df162c57a75d06d4f273e8157a1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/49/497e140fe4a18d974680bf5e42fad23a.bin b/common/runtime/cache/49/497e140fe4a18d974680bf5e42fad23a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/49/497e140fe4a18d974680bf5e42fad23a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/49/4980e58b9643d71890d37d897441381a.bin b/common/runtime/cache/49/4980e58b9643d71890d37d897441381a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/49/4980e58b9643d71890d37d897441381a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/49/4988f4e594e41df10fd488eb4cc9fc10.bin b/common/runtime/cache/49/4988f4e594e41df10fd488eb4cc9fc10.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/49/4988f4e594e41df10fd488eb4cc9fc10.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/49/49a3a46bb7b2d3bcb70c45a599fd1113.bin b/common/runtime/cache/49/49a3a46bb7b2d3bcb70c45a599fd1113.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/49/49a3a46bb7b2d3bcb70c45a599fd1113.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/49/49af5c41901b21815a2e6d116cc4e24d.bin b/common/runtime/cache/49/49af5c41901b21815a2e6d116cc4e24d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/49/49af5c41901b21815a2e6d116cc4e24d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/49/49b01ba02bfe7f0a9961e8d4a4fc17f3.bin b/common/runtime/cache/49/49b01ba02bfe7f0a9961e8d4a4fc17f3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/49/49b01ba02bfe7f0a9961e8d4a4fc17f3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/49/49d65f5f6e9ad3d64a995e5bb2a861c7.bin b/common/runtime/cache/49/49d65f5f6e9ad3d64a995e5bb2a861c7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/49/49d65f5f6e9ad3d64a995e5bb2a861c7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/49/49f91e2b5d96be79e254f0bf91f81539.bin b/common/runtime/cache/49/49f91e2b5d96be79e254f0bf91f81539.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/49/49f91e2b5d96be79e254f0bf91f81539.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/49/49fd80d010b9e72821a008d1a11ab59b.bin b/common/runtime/cache/49/49fd80d010b9e72821a008d1a11ab59b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/49/49fd80d010b9e72821a008d1a11ab59b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4a/4a0006ab55b91246814a7d9b24801d86.bin b/common/runtime/cache/4a/4a0006ab55b91246814a7d9b24801d86.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4a/4a0006ab55b91246814a7d9b24801d86.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4a/4a0b7fc4fe0b97ad03e3d9db40bd4b35.bin b/common/runtime/cache/4a/4a0b7fc4fe0b97ad03e3d9db40bd4b35.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4a/4a0b7fc4fe0b97ad03e3d9db40bd4b35.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4a/4a134cb9d21efaf82fb615df000d653f.bin b/common/runtime/cache/4a/4a134cb9d21efaf82fb615df000d653f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4a/4a134cb9d21efaf82fb615df000d653f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4a/4a3836be486610862b6fbcff8eda7b9f.bin b/common/runtime/cache/4a/4a3836be486610862b6fbcff8eda7b9f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4a/4a3836be486610862b6fbcff8eda7b9f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4a/4a62ab9ce7043b2bdadb726d41c7fc38.bin b/common/runtime/cache/4a/4a62ab9ce7043b2bdadb726d41c7fc38.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4a/4a62ab9ce7043b2bdadb726d41c7fc38.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4a/4a9f7923a20668a5d961ee8c89ad9244.bin b/common/runtime/cache/4a/4a9f7923a20668a5d961ee8c89ad9244.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4a/4a9f7923a20668a5d961ee8c89ad9244.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4a/4ad4154ec98d8aa218a90d56f7497126.bin b/common/runtime/cache/4a/4ad4154ec98d8aa218a90d56f7497126.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4a/4ad4154ec98d8aa218a90d56f7497126.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4a/4adb5ac731645ae5ba71038fb974f40e.bin b/common/runtime/cache/4a/4adb5ac731645ae5ba71038fb974f40e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4a/4adb5ac731645ae5ba71038fb974f40e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4b/4b09acb7d7d55cf5c261a3ac044ace4f.bin b/common/runtime/cache/4b/4b09acb7d7d55cf5c261a3ac044ace4f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4b/4b09acb7d7d55cf5c261a3ac044ace4f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4b/4b0a4c47dd5c0037dd611b59c09bbee7.bin b/common/runtime/cache/4b/4b0a4c47dd5c0037dd611b59c09bbee7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4b/4b0a4c47dd5c0037dd611b59c09bbee7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4b/4b16844268aa8e96b7c5f271e52b2742.bin b/common/runtime/cache/4b/4b16844268aa8e96b7c5f271e52b2742.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4b/4b16844268aa8e96b7c5f271e52b2742.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4b/4b24763f7ff0c6603b8559fa5eb68158.bin b/common/runtime/cache/4b/4b24763f7ff0c6603b8559fa5eb68158.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4b/4b24763f7ff0c6603b8559fa5eb68158.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4b/4b2f4caabf3ed7a1740ceb853a5556c7.bin b/common/runtime/cache/4b/4b2f4caabf3ed7a1740ceb853a5556c7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4b/4b2f4caabf3ed7a1740ceb853a5556c7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4b/4b54ebb477f35c21855ab4bfe79e6867.bin b/common/runtime/cache/4b/4b54ebb477f35c21855ab4bfe79e6867.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4b/4b54ebb477f35c21855ab4bfe79e6867.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4b/4b5fc3e2a7b435b10aaee5889b6d29c2.bin b/common/runtime/cache/4b/4b5fc3e2a7b435b10aaee5889b6d29c2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4b/4b5fc3e2a7b435b10aaee5889b6d29c2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4b/4b5fe24ae0a8b73f8ee12c42fd2b3915.bin b/common/runtime/cache/4b/4b5fe24ae0a8b73f8ee12c42fd2b3915.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4b/4b5fe24ae0a8b73f8ee12c42fd2b3915.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4b/4b6ff999dccad5d5e063c376bf7e27aa.bin b/common/runtime/cache/4b/4b6ff999dccad5d5e063c376bf7e27aa.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4b/4b6ff999dccad5d5e063c376bf7e27aa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4b/4b7517481fc9e4d733e1a62fad521874.bin b/common/runtime/cache/4b/4b7517481fc9e4d733e1a62fad521874.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4b/4b7517481fc9e4d733e1a62fad521874.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4b/4b8acbc84cda86ceecd5c8247ae1042f.bin b/common/runtime/cache/4b/4b8acbc84cda86ceecd5c8247ae1042f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4b/4b8acbc84cda86ceecd5c8247ae1042f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4b/4b8e0241b015ad5d2d696042037829ba.bin b/common/runtime/cache/4b/4b8e0241b015ad5d2d696042037829ba.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4b/4b8e0241b015ad5d2d696042037829ba.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4b/4bd36ebead4dafcdd68cab76d32e18b6.bin b/common/runtime/cache/4b/4bd36ebead4dafcdd68cab76d32e18b6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4b/4bd36ebead4dafcdd68cab76d32e18b6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4b/4bdbc769e557c3e6528908a978cb8d91.bin b/common/runtime/cache/4b/4bdbc769e557c3e6528908a978cb8d91.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4b/4bdbc769e557c3e6528908a978cb8d91.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4b/4bdbfb6903352c43cbf5ee095d4b8822.bin b/common/runtime/cache/4b/4bdbfb6903352c43cbf5ee095d4b8822.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4b/4bdbfb6903352c43cbf5ee095d4b8822.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4b/4bf2411c07ec9e57dbb62dc1210629d6.bin b/common/runtime/cache/4b/4bf2411c07ec9e57dbb62dc1210629d6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4b/4bf2411c07ec9e57dbb62dc1210629d6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4b/4bff07d5a2bd2a81f27715f74009de3f.bin b/common/runtime/cache/4b/4bff07d5a2bd2a81f27715f74009de3f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4b/4bff07d5a2bd2a81f27715f74009de3f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4c/4c06632e0aa01092bbc0b31b6f4da336.bin b/common/runtime/cache/4c/4c06632e0aa01092bbc0b31b6f4da336.bin new file mode 100644 index 0000000..90adbb6 --- /dev/null +++ b/common/runtime/cache/4c/4c06632e0aa01092bbc0b31b6f4da336.bin @@ -0,0 +1 @@ +a:2:{i:0;s:17:"news/always-first";i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4c/4c38ef8c5fe9eb1f724504ae6f27d899.bin b/common/runtime/cache/4c/4c38ef8c5fe9eb1f724504ae6f27d899.bin new file mode 100644 index 0000000..a29eb99 --- /dev/null +++ b/common/runtime/cache/4c/4c38ef8c5fe9eb1f724504ae6f27d899.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";i:2;s:4:"path";s:9:"post/news";}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4c/4c3a0d2954047c660d6845c846672ec8.bin b/common/runtime/cache/4c/4c3a0d2954047c660d6845c846672ec8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4c/4c3a0d2954047c660d6845c846672ec8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4c/4c3b7a8e846a65d848d80a0a5803b69e.bin b/common/runtime/cache/4c/4c3b7a8e846a65d848d80a0a5803b69e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4c/4c3b7a8e846a65d848d80a0a5803b69e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4c/4c4537aeac15582b3e0a9cc0a1f17d42.bin b/common/runtime/cache/4c/4c4537aeac15582b3e0a9cc0a1f17d42.bin new file mode 100644 index 0000000..bef5ed0 --- /dev/null +++ b/common/runtime/cache/4c/4c4537aeac15582b3e0a9cc0a1f17d42.bin @@ -0,0 +1 @@ +a:2:{i:0;s:14:"news/mid_italy";i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4c/4c498b1ae5f0a4e4f71a646405ee9026.bin b/common/runtime/cache/4c/4c498b1ae5f0a4e4f71a646405ee9026.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4c/4c498b1ae5f0a4e4f71a646405ee9026.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4c/4c5c8a5cb1338d877137f5866769c6d9.bin b/common/runtime/cache/4c/4c5c8a5cb1338d877137f5866769c6d9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4c/4c5c8a5cb1338d877137f5866769c6d9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4c/4c862ef998d52171f67247512c4ab811.bin b/common/runtime/cache/4c/4c862ef998d52171f67247512c4ab811.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4c/4c862ef998d52171f67247512c4ab811.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4c/4ca7765af5e0b5a3cab8ccb513b79075.bin b/common/runtime/cache/4c/4ca7765af5e0b5a3cab8ccb513b79075.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4c/4ca7765af5e0b5a3cab8ccb513b79075.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4c/4cc5a8760d5b231a6afeee9f037e23ab.bin b/common/runtime/cache/4c/4cc5a8760d5b231a6afeee9f037e23ab.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4c/4cc5a8760d5b231a6afeee9f037e23ab.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4c/4ccee83e46f8b4b59552fbec95d18060.bin b/common/runtime/cache/4c/4ccee83e46f8b4b59552fbec95d18060.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4c/4ccee83e46f8b4b59552fbec95d18060.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4c/4ccf20b53039c8a12d035d6c036d5790.bin b/common/runtime/cache/4c/4ccf20b53039c8a12d035d6c036d5790.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4c/4ccf20b53039c8a12d035d6c036d5790.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4d/4d15911753a7a7c0699489b4b2c80779.bin b/common/runtime/cache/4d/4d15911753a7a7c0699489b4b2c80779.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4d/4d15911753a7a7c0699489b4b2c80779.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4d/4d3ac88ca7a3608f6a6813e62cd8a898.bin b/common/runtime/cache/4d/4d3ac88ca7a3608f6a6813e62cd8a898.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4d/4d3ac88ca7a3608f6a6813e62cd8a898.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4d/4d5e24ec634663721843eb6496c12fcb.bin b/common/runtime/cache/4d/4d5e24ec634663721843eb6496c12fcb.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4d/4d5e24ec634663721843eb6496c12fcb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4d/4d6335876b5811bb2feef22b6d2f9126.bin b/common/runtime/cache/4d/4d6335876b5811bb2feef22b6d2f9126.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4d/4d6335876b5811bb2feef22b6d2f9126.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4d/4d68f41a2d89b539171de89980c4dca7.bin b/common/runtime/cache/4d/4d68f41a2d89b539171de89980c4dca7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4d/4d68f41a2d89b539171de89980c4dca7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4d/4d7d84d259ddac82440fe6bb692bd545.bin b/common/runtime/cache/4d/4d7d84d259ddac82440fe6bb692bd545.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4d/4d7d84d259ddac82440fe6bb692bd545.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4d/4dad5b62f7b6bf1d81c3491ab8797fd3.bin b/common/runtime/cache/4d/4dad5b62f7b6bf1d81c3491ab8797fd3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4d/4dad5b62f7b6bf1d81c3491ab8797fd3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4d/4db7f1506feabb91449ed17e78995257.bin b/common/runtime/cache/4d/4db7f1506feabb91449ed17e78995257.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4d/4db7f1506feabb91449ed17e78995257.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4d/4dc05b3b61b95f123cb12e073e3e065b.bin b/common/runtime/cache/4d/4dc05b3b61b95f123cb12e073e3e065b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4d/4dc05b3b61b95f123cb12e073e3e065b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4d/4ddc9f22228663d00403da858548c5e0.bin b/common/runtime/cache/4d/4ddc9f22228663d00403da858548c5e0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4d/4ddc9f22228663d00403da858548c5e0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4e/4e042853eef3ed917ea1605a78f25fa2.bin b/common/runtime/cache/4e/4e042853eef3ed917ea1605a78f25fa2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4e/4e042853eef3ed917ea1605a78f25fa2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4e/4e24bbac1dd5439fd616959e80dc2271.bin b/common/runtime/cache/4e/4e24bbac1dd5439fd616959e80dc2271.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4e/4e24bbac1dd5439fd616959e80dc2271.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4e/4e2b41701c4103b964e47ad0880b9941.bin b/common/runtime/cache/4e/4e2b41701c4103b964e47ad0880b9941.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4e/4e2b41701c4103b964e47ad0880b9941.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4e/4e7061fbb2bfad2f49c0ddae29198d2f.bin b/common/runtime/cache/4e/4e7061fbb2bfad2f49c0ddae29198d2f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4e/4e7061fbb2bfad2f49c0ddae29198d2f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4e/4ea7eb4d93e7245812541dae77f6565b.bin b/common/runtime/cache/4e/4ea7eb4d93e7245812541dae77f6565b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4e/4ea7eb4d93e7245812541dae77f6565b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4e/4ebc0e3663bd13b7499340bec3bcb975.bin b/common/runtime/cache/4e/4ebc0e3663bd13b7499340bec3bcb975.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4e/4ebc0e3663bd13b7499340bec3bcb975.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4e/4ebc800a6d8c3995bb403e915eb4c045.bin b/common/runtime/cache/4e/4ebc800a6d8c3995bb403e915eb4c045.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4e/4ebc800a6d8c3995bb403e915eb4c045.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4e/4ecbf8e1e76f5d07cf6210cb3eb201cb.bin b/common/runtime/cache/4e/4ecbf8e1e76f5d07cf6210cb3eb201cb.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4e/4ecbf8e1e76f5d07cf6210cb3eb201cb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4e/4ed6bc880c0ef5abd2a522b81ade9f71.bin b/common/runtime/cache/4e/4ed6bc880c0ef5abd2a522b81ade9f71.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4e/4ed6bc880c0ef5abd2a522b81ade9f71.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4e/4ee65e7cd2bf7965c8240421891114fb.bin b/common/runtime/cache/4e/4ee65e7cd2bf7965c8240421891114fb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4e/4ee65e7cd2bf7965c8240421891114fb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4e/4ef271bab7d869d76dcacc6798f6dc7a.bin b/common/runtime/cache/4e/4ef271bab7d869d76dcacc6798f6dc7a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4e/4ef271bab7d869d76dcacc6798f6dc7a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4f09cb2672a7cce027afbc2687790153.bin b/common/runtime/cache/4f/4f09cb2672a7cce027afbc2687790153.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4f/4f09cb2672a7cce027afbc2687790153.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4f11b5a7af2467b22a43a1c4217003f5.bin b/common/runtime/cache/4f/4f11b5a7af2467b22a43a1c4217003f5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4f/4f11b5a7af2467b22a43a1c4217003f5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4f1f4a2d3e29d492e323637f964be078.bin b/common/runtime/cache/4f/4f1f4a2d3e29d492e323637f964be078.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4f/4f1f4a2d3e29d492e323637f964be078.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4f1fc20850c83a4fcbf8a4bc121c230b.bin b/common/runtime/cache/4f/4f1fc20850c83a4fcbf8a4bc121c230b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4f/4f1fc20850c83a4fcbf8a4bc121c230b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4f2b856b3c563195c262e54dc79dcce6.bin b/common/runtime/cache/4f/4f2b856b3c563195c262e54dc79dcce6.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4f/4f2b856b3c563195c262e54dc79dcce6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4f4ca9bd3581875b948e50d6169e8abe.bin b/common/runtime/cache/4f/4f4ca9bd3581875b948e50d6169e8abe.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4f/4f4ca9bd3581875b948e50d6169e8abe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4f5ddb7815c4f3b5c1e4c710b14ae2c0.bin b/common/runtime/cache/4f/4f5ddb7815c4f3b5c1e4c710b14ae2c0.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4f/4f5ddb7815c4f3b5c1e4c710b14ae2c0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4f751791895e11d175cae01723032fed.bin b/common/runtime/cache/4f/4f751791895e11d175cae01723032fed.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4f/4f751791895e11d175cae01723032fed.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4f7d18c21e232a39fed3db5f8e0bbcc9.bin b/common/runtime/cache/4f/4f7d18c21e232a39fed3db5f8e0bbcc9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4f/4f7d18c21e232a39fed3db5f8e0bbcc9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4f815b8d1a672192249f3731ac7ab645.bin b/common/runtime/cache/4f/4f815b8d1a672192249f3731ac7ab645.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4f/4f815b8d1a672192249f3731ac7ab645.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4f98705371b2c41c974a1a5f5752db1d.bin b/common/runtime/cache/4f/4f98705371b2c41c974a1a5f5752db1d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4f/4f98705371b2c41c974a1a5f5752db1d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4fa4411b7646cc006af94b4b48af1e7e.bin b/common/runtime/cache/4f/4fa4411b7646cc006af94b4b48af1e7e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4f/4fa4411b7646cc006af94b4b48af1e7e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4faa050c55424fe818071ecee5be9dbc.bin b/common/runtime/cache/4f/4faa050c55424fe818071ecee5be9dbc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4f/4faa050c55424fe818071ecee5be9dbc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4fb6b07a0376337cb5301d35b735d9ed.bin b/common/runtime/cache/4f/4fb6b07a0376337cb5301d35b735d9ed.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4f/4fb6b07a0376337cb5301d35b735d9ed.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4fc21cdd672919ec2e6c3ff6d928a9ea.bin b/common/runtime/cache/4f/4fc21cdd672919ec2e6c3ff6d928a9ea.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4f/4fc21cdd672919ec2e6c3ff6d928a9ea.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4fc45e9b04a7ae9e4937152f1cb2375b.bin b/common/runtime/cache/4f/4fc45e9b04a7ae9e4937152f1cb2375b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4f/4fc45e9b04a7ae9e4937152f1cb2375b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4ff8d375bb22288f7e6d1eea64e02f3b.bin b/common/runtime/cache/4f/4ff8d375bb22288f7e6d1eea64e02f3b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4f/4ff8d375bb22288f7e6d1eea64e02f3b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4ffa56cb94167936ba20010e47a761ad.bin b/common/runtime/cache/4f/4ffa56cb94167936ba20010e47a761ad.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/4f/4ffa56cb94167936ba20010e47a761ad.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/4f/4ffaab510cda38f690c4d9df72d58861.bin b/common/runtime/cache/4f/4ffaab510cda38f690c4d9df72d58861.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/4f/4ffaab510cda38f690c4d9df72d58861.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/50003b7f5f9432b3d9ed82276b63b7df.bin b/common/runtime/cache/50/50003b7f5f9432b3d9ed82276b63b7df.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/50/50003b7f5f9432b3d9ed82276b63b7df.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/500062b0265effea9d3aef4c1d088461.bin b/common/runtime/cache/50/500062b0265effea9d3aef4c1d088461.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/50/500062b0265effea9d3aef4c1d088461.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/501a9751943384917711e41069457e0e.bin b/common/runtime/cache/50/501a9751943384917711e41069457e0e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/50/501a9751943384917711e41069457e0e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/501fea9f8d556033687c7c2925d2d38f.bin b/common/runtime/cache/50/501fea9f8d556033687c7c2925d2d38f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/50/501fea9f8d556033687c7c2925d2d38f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/50202307e0a04aa024eec75226d0b804.bin b/common/runtime/cache/50/50202307e0a04aa024eec75226d0b804.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/50/50202307e0a04aa024eec75226d0b804.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/5028c07d622e91ceb283ac6746e1dda4.bin b/common/runtime/cache/50/5028c07d622e91ceb283ac6746e1dda4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/50/5028c07d622e91ceb283ac6746e1dda4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/502dc06f092fa06a378ee2b476cd43b0.bin b/common/runtime/cache/50/502dc06f092fa06a378ee2b476cd43b0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/50/502dc06f092fa06a378ee2b476cd43b0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/502ea28002d23c196206336c86686239.bin b/common/runtime/cache/50/502ea28002d23c196206336c86686239.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/50/502ea28002d23c196206336c86686239.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/503434b4a7d44cbc6be9be5cddc6aad5.bin b/common/runtime/cache/50/503434b4a7d44cbc6be9be5cddc6aad5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/50/503434b4a7d44cbc6be9be5cddc6aad5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/5038b69e3d02b30911d316e9c379d711.bin b/common/runtime/cache/50/5038b69e3d02b30911d316e9c379d711.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/50/5038b69e3d02b30911d316e9c379d711.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/5040afdb1c4c2f4f8ea943794cdcfd42.bin b/common/runtime/cache/50/5040afdb1c4c2f4f8ea943794cdcfd42.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/50/5040afdb1c4c2f4f8ea943794cdcfd42.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/5065639475f39509e0727b0577df7a23.bin b/common/runtime/cache/50/5065639475f39509e0727b0577df7a23.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/50/5065639475f39509e0727b0577df7a23.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/506b10104c7cf848823e65376732c3c9.bin b/common/runtime/cache/50/506b10104c7cf848823e65376732c3c9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/50/506b10104c7cf848823e65376732c3c9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/50a67997684f1961b51d084943a51358.bin b/common/runtime/cache/50/50a67997684f1961b51d084943a51358.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/50/50a67997684f1961b51d084943a51358.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/50a7582cd062010e5e164b6167af8cdc.bin b/common/runtime/cache/50/50a7582cd062010e5e164b6167af8cdc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/50/50a7582cd062010e5e164b6167af8cdc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/50d0878890cb3d9c42ddc6efd5b55cb5.bin b/common/runtime/cache/50/50d0878890cb3d9c42ddc6efd5b55cb5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/50/50d0878890cb3d9c42ddc6efd5b55cb5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/50daf93623d96ceaee03f30d509210e1.bin b/common/runtime/cache/50/50daf93623d96ceaee03f30d509210e1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/50/50daf93623d96ceaee03f30d509210e1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/50e4abfe3381c31e85a11ad6cb80b64e.bin b/common/runtime/cache/50/50e4abfe3381c31e85a11ad6cb80b64e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/50/50e4abfe3381c31e85a11ad6cb80b64e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/50/50f7d7845f599dc55751121822fe0d18.bin b/common/runtime/cache/50/50f7d7845f599dc55751121822fe0d18.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/50/50f7d7845f599dc55751121822fe0d18.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/51/51071976b4b4646b4233f7247432eb8d.bin b/common/runtime/cache/51/51071976b4b4646b4233f7247432eb8d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/51/51071976b4b4646b4233f7247432eb8d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/51/510ad815523dc0d95629f173b9fbd65e.bin b/common/runtime/cache/51/510ad815523dc0d95629f173b9fbd65e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/51/510ad815523dc0d95629f173b9fbd65e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/51/513121d11b001d810d0c7bfa89487994.bin b/common/runtime/cache/51/513121d11b001d810d0c7bfa89487994.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/51/513121d11b001d810d0c7bfa89487994.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/51/5141a499013eccf180e82ad750ff190d.bin b/common/runtime/cache/51/5141a499013eccf180e82ad750ff190d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/51/5141a499013eccf180e82ad750ff190d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/51/514354ea251b6a6669ae4e21e4f3aa4d.bin b/common/runtime/cache/51/514354ea251b6a6669ae4e21e4f3aa4d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/51/514354ea251b6a6669ae4e21e4f3aa4d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/51/5147bde4a5c13a00650c772a65438e7b.bin b/common/runtime/cache/51/5147bde4a5c13a00650c772a65438e7b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/51/5147bde4a5c13a00650c772a65438e7b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/51/515fe57324c98131d679ec50cfefcd85.bin b/common/runtime/cache/51/515fe57324c98131d679ec50cfefcd85.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/51/515fe57324c98131d679ec50cfefcd85.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/51/5165e79a7776fbe2c314c651ab16be5a.bin b/common/runtime/cache/51/5165e79a7776fbe2c314c651ab16be5a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/51/5165e79a7776fbe2c314c651ab16be5a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/51/518432acf375eac19ad47a2540d84201.bin b/common/runtime/cache/51/518432acf375eac19ad47a2540d84201.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/51/518432acf375eac19ad47a2540d84201.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/51/518f043e6bca92614d7280c73a334079.bin b/common/runtime/cache/51/518f043e6bca92614d7280c73a334079.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/51/518f043e6bca92614d7280c73a334079.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/51/51aa7e52cfa55dc4e9388a459ff81b6f.bin b/common/runtime/cache/51/51aa7e52cfa55dc4e9388a459ff81b6f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/51/51aa7e52cfa55dc4e9388a459ff81b6f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/51/51c9ed210604d006f29aa82076dc49df.bin b/common/runtime/cache/51/51c9ed210604d006f29aa82076dc49df.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/51/51c9ed210604d006f29aa82076dc49df.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/52/521dc94d5b6a3dfee3de54adea88ad93.bin b/common/runtime/cache/52/521dc94d5b6a3dfee3de54adea88ad93.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/52/521dc94d5b6a3dfee3de54adea88ad93.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/52/522475455bd0306e6804e6fd59bf1886.bin b/common/runtime/cache/52/522475455bd0306e6804e6fd59bf1886.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/52/522475455bd0306e6804e6fd59bf1886.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/52/525ccae63ea56d76d0c93d434c8627e2.bin b/common/runtime/cache/52/525ccae63ea56d76d0c93d434c8627e2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/52/525ccae63ea56d76d0c93d434c8627e2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/52/527071dc2afcf8e8e599d79d8c8f0057.bin b/common/runtime/cache/52/527071dc2afcf8e8e599d79d8c8f0057.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/52/527071dc2afcf8e8e599d79d8c8f0057.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/52/528807a37165010f1217a37cc9789b32.bin b/common/runtime/cache/52/528807a37165010f1217a37cc9789b32.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/52/528807a37165010f1217a37cc9789b32.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/52/528bb5312e80ecc070b4a85a865be344.bin b/common/runtime/cache/52/528bb5312e80ecc070b4a85a865be344.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/52/528bb5312e80ecc070b4a85a865be344.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/52/529dc28b9390a8ab92ef1f5c8d9a5cc3.bin b/common/runtime/cache/52/529dc28b9390a8ab92ef1f5c8d9a5cc3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/52/529dc28b9390a8ab92ef1f5c8d9a5cc3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/52/52a335ab363e9e42636d91d72113ecd2.bin b/common/runtime/cache/52/52a335ab363e9e42636d91d72113ecd2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/52/52a335ab363e9e42636d91d72113ecd2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/52/52a4b74bd60a6c0bba418349c22c9f2a.bin b/common/runtime/cache/52/52a4b74bd60a6c0bba418349c22c9f2a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/52/52a4b74bd60a6c0bba418349c22c9f2a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/52/52c191c5fbe0be1db3e0c275bea48424.bin b/common/runtime/cache/52/52c191c5fbe0be1db3e0c275bea48424.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/52/52c191c5fbe0be1db3e0c275bea48424.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/52/52c94ac0356fd1ebd39e51eeb50569e2.bin b/common/runtime/cache/52/52c94ac0356fd1ebd39e51eeb50569e2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/52/52c94ac0356fd1ebd39e51eeb50569e2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/52/52f880579cc0ed957fc0f68302b10864.bin b/common/runtime/cache/52/52f880579cc0ed957fc0f68302b10864.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/52/52f880579cc0ed957fc0f68302b10864.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/53/5303fdeb7b6bc1a153a529af96fae0d5.bin b/common/runtime/cache/53/5303fdeb7b6bc1a153a529af96fae0d5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/53/5303fdeb7b6bc1a153a529af96fae0d5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/53/531c7321e9a23f7e53c2f1a966af6fc1.bin b/common/runtime/cache/53/531c7321e9a23f7e53c2f1a966af6fc1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/53/531c7321e9a23f7e53c2f1a966af6fc1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/53/533438d149ab0b0873731e0a3cd063f8.bin b/common/runtime/cache/53/533438d149ab0b0873731e0a3cd063f8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/53/533438d149ab0b0873731e0a3cd063f8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/53/5357ba4b86c688bc3b5bfb37e39a3831.bin b/common/runtime/cache/53/5357ba4b86c688bc3b5bfb37e39a3831.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/53/5357ba4b86c688bc3b5bfb37e39a3831.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/53/537b20230073d09d3dd9a0b0b4fee5e5.bin b/common/runtime/cache/53/537b20230073d09d3dd9a0b0b4fee5e5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/53/537b20230073d09d3dd9a0b0b4fee5e5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/53/53a72792dd5dbe194f93adc3fe5fe099.bin b/common/runtime/cache/53/53a72792dd5dbe194f93adc3fe5fe099.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/53/53a72792dd5dbe194f93adc3fe5fe099.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/53/53b4e85e5210579d3ca9d232b51dc666.bin b/common/runtime/cache/53/53b4e85e5210579d3ca9d232b51dc666.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/53/53b4e85e5210579d3ca9d232b51dc666.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/53/53b8c539c37867a3faa16943bf3fce8c.bin b/common/runtime/cache/53/53b8c539c37867a3faa16943bf3fce8c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/53/53b8c539c37867a3faa16943bf3fce8c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/53/53c53f60a076cb00db400e53b91f9e0f.bin b/common/runtime/cache/53/53c53f60a076cb00db400e53b91f9e0f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/53/53c53f60a076cb00db400e53b91f9e0f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/53/53c6b8c132ea30c025a09fe9a6414a06.bin b/common/runtime/cache/53/53c6b8c132ea30c025a09fe9a6414a06.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/53/53c6b8c132ea30c025a09fe9a6414a06.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/53/53dabf7ade80a81667d8e2784832350d.bin b/common/runtime/cache/53/53dabf7ade80a81667d8e2784832350d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/53/53dabf7ade80a81667d8e2784832350d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/53/53de82e262cb64cf679460556dfc9dda.bin b/common/runtime/cache/53/53de82e262cb64cf679460556dfc9dda.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/53/53de82e262cb64cf679460556dfc9dda.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/53/53ee28b2cea9800252199191eebc4064.bin b/common/runtime/cache/53/53ee28b2cea9800252199191eebc4064.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/53/53ee28b2cea9800252199191eebc4064.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/53/53f8d5b80be75d877060f0c73191517a.bin b/common/runtime/cache/53/53f8d5b80be75d877060f0c73191517a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/53/53f8d5b80be75d877060f0c73191517a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/54/541fd4b22bf98f1670777d52615c866c.bin b/common/runtime/cache/54/541fd4b22bf98f1670777d52615c866c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/54/541fd4b22bf98f1670777d52615c866c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/54/54266944ad5df44c9cc48dae1547d25e.bin b/common/runtime/cache/54/54266944ad5df44c9cc48dae1547d25e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/54/54266944ad5df44c9cc48dae1547d25e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/54/543474f219e6aa650f912b0ee7571213.bin b/common/runtime/cache/54/543474f219e6aa650f912b0ee7571213.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/54/543474f219e6aa650f912b0ee7571213.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/54/545eb9933b86e9193045afc04987c400.bin b/common/runtime/cache/54/545eb9933b86e9193045afc04987c400.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/54/545eb9933b86e9193045afc04987c400.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/54/547eb1f9a7d7586a719c8ae3bac9ef96.bin b/common/runtime/cache/54/547eb1f9a7d7586a719c8ae3bac9ef96.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/54/547eb1f9a7d7586a719c8ae3bac9ef96.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/54/5485be4eef98edb6e31cd49f8af5b2d6.bin b/common/runtime/cache/54/5485be4eef98edb6e31cd49f8af5b2d6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/54/5485be4eef98edb6e31cd49f8af5b2d6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/54/54a97b01e689809bb676a07d608286d6.bin b/common/runtime/cache/54/54a97b01e689809bb676a07d608286d6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/54/54a97b01e689809bb676a07d608286d6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/54/54bedb5e66fc3b840d7032b98ad61f87.bin b/common/runtime/cache/54/54bedb5e66fc3b840d7032b98ad61f87.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/54/54bedb5e66fc3b840d7032b98ad61f87.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/54/54c2ee8a0ed11cc55a867056e68ac8a0.bin b/common/runtime/cache/54/54c2ee8a0ed11cc55a867056e68ac8a0.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/54/54c2ee8a0ed11cc55a867056e68ac8a0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/54/54c713c8ce3a2cfbafa6683bf98a60e1.bin b/common/runtime/cache/54/54c713c8ce3a2cfbafa6683bf98a60e1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/54/54c713c8ce3a2cfbafa6683bf98a60e1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/54/54ca13b59057d1e72e2bd6e8dd1ad0d6.bin b/common/runtime/cache/54/54ca13b59057d1e72e2bd6e8dd1ad0d6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/54/54ca13b59057d1e72e2bd6e8dd1ad0d6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/54/54d0e7adfba68b5e2060f5a521198441.bin b/common/runtime/cache/54/54d0e7adfba68b5e2060f5a521198441.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/54/54d0e7adfba68b5e2060f5a521198441.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/54/54e9711829506e2db74372ea853347d4.bin b/common/runtime/cache/54/54e9711829506e2db74372ea853347d4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/54/54e9711829506e2db74372ea853347d4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/54/54e9eba16d134c64a14c3143aedc96d3.bin b/common/runtime/cache/54/54e9eba16d134c64a14c3143aedc96d3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/54/54e9eba16d134c64a14c3143aedc96d3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/55/5569b8db496b8fe1a2696bce0bbeaed2.bin b/common/runtime/cache/55/5569b8db496b8fe1a2696bce0bbeaed2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/55/5569b8db496b8fe1a2696bce0bbeaed2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/55/556a62cdf96548327487ad7d90e856b4.bin b/common/runtime/cache/55/556a62cdf96548327487ad7d90e856b4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/55/556a62cdf96548327487ad7d90e856b4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/55/556cc14e30513772713172d19030b1b6.bin b/common/runtime/cache/55/556cc14e30513772713172d19030b1b6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/55/556cc14e30513772713172d19030b1b6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/55/55a1c01b3359a58d40a12d6ee46731e4.bin b/common/runtime/cache/55/55a1c01b3359a58d40a12d6ee46731e4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/55/55a1c01b3359a58d40a12d6ee46731e4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/55/55c9a89a7a78428013c3c6d081def2b3.bin b/common/runtime/cache/55/55c9a89a7a78428013c3c6d081def2b3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/55/55c9a89a7a78428013c3c6d081def2b3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/55/55de0495665ce2e675557c6dbcefe27e.bin b/common/runtime/cache/55/55de0495665ce2e675557c6dbcefe27e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/55/55de0495665ce2e675557c6dbcefe27e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/55/55e7a6b689a6a2daf5bfc196b15a05cf.bin b/common/runtime/cache/55/55e7a6b689a6a2daf5bfc196b15a05cf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/55/55e7a6b689a6a2daf5bfc196b15a05cf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/55/55fdb6d2ba6298d30e06d5558364c478.bin b/common/runtime/cache/55/55fdb6d2ba6298d30e06d5558364c478.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/55/55fdb6d2ba6298d30e06d5558364c478.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/56/562bae6579134eaacc18d3fd11024ac4.bin b/common/runtime/cache/56/562bae6579134eaacc18d3fd11024ac4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/56/562bae6579134eaacc18d3fd11024ac4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/56/562dc49e72b1e67bf9b79fb4ff5f8f91.bin b/common/runtime/cache/56/562dc49e72b1e67bf9b79fb4ff5f8f91.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/56/562dc49e72b1e67bf9b79fb4ff5f8f91.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/56/563efca69ef5fefb9b9e2edfa8d43220.bin b/common/runtime/cache/56/563efca69ef5fefb9b9e2edfa8d43220.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/56/563efca69ef5fefb9b9e2edfa8d43220.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/56/5654ea7daf8b2b75e1a04a5a73e980a5.bin b/common/runtime/cache/56/5654ea7daf8b2b75e1a04a5a73e980a5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/56/5654ea7daf8b2b75e1a04a5a73e980a5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/56/5656e5fb2cfdaca1bbc28e3a4e51528f.bin b/common/runtime/cache/56/5656e5fb2cfdaca1bbc28e3a4e51528f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/56/5656e5fb2cfdaca1bbc28e3a4e51528f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/56/56732132d28c47f45239a21e0a419904.bin b/common/runtime/cache/56/56732132d28c47f45239a21e0a419904.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/56/56732132d28c47f45239a21e0a419904.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/56/567fc3fc2a6100ef83d05b9613b870ff.bin b/common/runtime/cache/56/567fc3fc2a6100ef83d05b9613b870ff.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/56/567fc3fc2a6100ef83d05b9613b870ff.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/56/56916382e24b765ebc95e935cfa0c21b.bin b/common/runtime/cache/56/56916382e24b765ebc95e935cfa0c21b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/56/56916382e24b765ebc95e935cfa0c21b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/56/569586556358436dda4e6c18f7e4cc7b.bin b/common/runtime/cache/56/569586556358436dda4e6c18f7e4cc7b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/56/569586556358436dda4e6c18f7e4cc7b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/56/56f71a114f9ef64725849f7cc05d103e.bin b/common/runtime/cache/56/56f71a114f9ef64725849f7cc05d103e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/56/56f71a114f9ef64725849f7cc05d103e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/57/5707e64d20d9b3ccc2860e7aae521879.bin b/common/runtime/cache/57/5707e64d20d9b3ccc2860e7aae521879.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/57/5707e64d20d9b3ccc2860e7aae521879.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/57/570eb0847b67b87ded9da7fa2eef1492.bin b/common/runtime/cache/57/570eb0847b67b87ded9da7fa2eef1492.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/57/570eb0847b67b87ded9da7fa2eef1492.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/57/571ebe3601d078cd2c88e73e7f51125d.bin b/common/runtime/cache/57/571ebe3601d078cd2c88e73e7f51125d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/57/571ebe3601d078cd2c88e73e7f51125d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/57/57447463fb28b943af41a31d76bd8671.bin b/common/runtime/cache/57/57447463fb28b943af41a31d76bd8671.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/57/57447463fb28b943af41a31d76bd8671.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/57/579d308897038819287df859976e1ad7.bin b/common/runtime/cache/57/579d308897038819287df859976e1ad7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/57/579d308897038819287df859976e1ad7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/57/579e6e78f2d87110cd4b2b10c91e11fa.bin b/common/runtime/cache/57/579e6e78f2d87110cd4b2b10c91e11fa.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/57/579e6e78f2d87110cd4b2b10c91e11fa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/57/57e85aed0d95595239ba699f1573a22c.bin b/common/runtime/cache/57/57e85aed0d95595239ba699f1573a22c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/57/57e85aed0d95595239ba699f1573a22c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/57/57f537bec78fc28e7502548773932b8e.bin b/common/runtime/cache/57/57f537bec78fc28e7502548773932b8e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/57/57f537bec78fc28e7502548773932b8e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/58/58071c8a97690e6d708b942957b96755.bin b/common/runtime/cache/58/58071c8a97690e6d708b942957b96755.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/58/58071c8a97690e6d708b942957b96755.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/58/58145ab825fdfe2673dd6bbccabe86d8.bin b/common/runtime/cache/58/58145ab825fdfe2673dd6bbccabe86d8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/58/58145ab825fdfe2673dd6bbccabe86d8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/58/5818935d3e6ea9227cd7ff667c22176d.bin b/common/runtime/cache/58/5818935d3e6ea9227cd7ff667c22176d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/58/5818935d3e6ea9227cd7ff667c22176d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/58/5853c751eb953187ec897dd938aedffc.bin b/common/runtime/cache/58/5853c751eb953187ec897dd938aedffc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/58/5853c751eb953187ec897dd938aedffc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/58/585639adeb1fa8b5aebb479276736c12.bin b/common/runtime/cache/58/585639adeb1fa8b5aebb479276736c12.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/58/585639adeb1fa8b5aebb479276736c12.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/58/5881df1f7c3aac5aa11dba2c91ae24eb.bin b/common/runtime/cache/58/5881df1f7c3aac5aa11dba2c91ae24eb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/58/5881df1f7c3aac5aa11dba2c91ae24eb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/58/58953d7588aa145c11a1bd4c659c084d.bin b/common/runtime/cache/58/58953d7588aa145c11a1bd4c659c084d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/58/58953d7588aa145c11a1bd4c659c084d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/58/58b2e360cb3e758162f6ab8a3550a412.bin b/common/runtime/cache/58/58b2e360cb3e758162f6ab8a3550a412.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/58/58b2e360cb3e758162f6ab8a3550a412.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/58/58bca5891ae5f8170430a631df095fc4.bin b/common/runtime/cache/58/58bca5891ae5f8170430a631df095fc4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/58/58bca5891ae5f8170430a631df095fc4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/58/58beb176d0ad4e5a33ee6ce066593999.bin b/common/runtime/cache/58/58beb176d0ad4e5a33ee6ce066593999.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/58/58beb176d0ad4e5a33ee6ce066593999.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/58/58d541a868e65f2b881d5254fefd61b6.bin b/common/runtime/cache/58/58d541a868e65f2b881d5254fefd61b6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/58/58d541a868e65f2b881d5254fefd61b6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/58/58f0e98c6f4ce909932172a61f015b3c.bin b/common/runtime/cache/58/58f0e98c6f4ce909932172a61f015b3c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/58/58f0e98c6f4ce909932172a61f015b3c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/59/59056a3815a22211101fbc7f6cacdb32.bin b/common/runtime/cache/59/59056a3815a22211101fbc7f6cacdb32.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/59/59056a3815a22211101fbc7f6cacdb32.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/59/5917c6894ef006410a930ea9c6b8cf67.bin b/common/runtime/cache/59/5917c6894ef006410a930ea9c6b8cf67.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/59/5917c6894ef006410a930ea9c6b8cf67.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/59/5923f127e1b086ca7db6bcfa280ca88b.bin b/common/runtime/cache/59/5923f127e1b086ca7db6bcfa280ca88b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/59/5923f127e1b086ca7db6bcfa280ca88b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/59/59461ecf8062431530f73fd6073a49b4.bin b/common/runtime/cache/59/59461ecf8062431530f73fd6073a49b4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/59/59461ecf8062431530f73fd6073a49b4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/59/595615004a2f5d560667b29a23faff24.bin b/common/runtime/cache/59/595615004a2f5d560667b29a23faff24.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/59/595615004a2f5d560667b29a23faff24.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/59/59680c8bba4cf8f36b113506722947fe.bin b/common/runtime/cache/59/59680c8bba4cf8f36b113506722947fe.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/59/59680c8bba4cf8f36b113506722947fe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/59/59684f5dc92e9932615c79d6a66b4fa7.bin b/common/runtime/cache/59/59684f5dc92e9932615c79d6a66b4fa7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/59/59684f5dc92e9932615c79d6a66b4fa7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/59/596cd44eceebb5ca50dc464b1fb0b28e.bin b/common/runtime/cache/59/596cd44eceebb5ca50dc464b1fb0b28e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/59/596cd44eceebb5ca50dc464b1fb0b28e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/59/59911ebb9df9a00fec0ee8694e5063ab.bin b/common/runtime/cache/59/59911ebb9df9a00fec0ee8694e5063ab.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/59/59911ebb9df9a00fec0ee8694e5063ab.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/59/5995680be7920cfc86a3152b732757fe.bin b/common/runtime/cache/59/5995680be7920cfc86a3152b732757fe.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/59/5995680be7920cfc86a3152b732757fe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/59/59ed4062232f8c373d8eae053881e2d6.bin b/common/runtime/cache/59/59ed4062232f8c373d8eae053881e2d6.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/59/59ed4062232f8c373d8eae053881e2d6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/59/59f746772a98b148aae3a5bd8f69bb70.bin b/common/runtime/cache/59/59f746772a98b148aae3a5bd8f69bb70.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/59/59f746772a98b148aae3a5bd8f69bb70.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/59/59f8c5da6fffacf6cf869fc92b2eb052.bin b/common/runtime/cache/59/59f8c5da6fffacf6cf869fc92b2eb052.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/59/59f8c5da6fffacf6cf869fc92b2eb052.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/59/59faba88491162955563a23d9dbe60bd.bin b/common/runtime/cache/59/59faba88491162955563a23d9dbe60bd.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/59/59faba88491162955563a23d9dbe60bd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5a/5a0927aad8955be1de305567a9de8e20.bin b/common/runtime/cache/5a/5a0927aad8955be1de305567a9de8e20.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5a/5a0927aad8955be1de305567a9de8e20.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5a/5a12fc3117e3c86c8b8cd2100f58b8a9.bin b/common/runtime/cache/5a/5a12fc3117e3c86c8b8cd2100f58b8a9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5a/5a12fc3117e3c86c8b8cd2100f58b8a9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5a/5a35f625c688f6d2159e54a95c15b42a.bin b/common/runtime/cache/5a/5a35f625c688f6d2159e54a95c15b42a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5a/5a35f625c688f6d2159e54a95c15b42a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5a/5a4881ab902ff9a25f06f79fb9ccf0f5.bin b/common/runtime/cache/5a/5a4881ab902ff9a25f06f79fb9ccf0f5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5a/5a4881ab902ff9a25f06f79fb9ccf0f5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5a/5ac1640a77997d93e9445f4ed601a12d.bin b/common/runtime/cache/5a/5ac1640a77997d93e9445f4ed601a12d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/5a/5ac1640a77997d93e9445f4ed601a12d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5a/5ad19f056315b4215ba956d84e6c3b63.bin b/common/runtime/cache/5a/5ad19f056315b4215ba956d84e6c3b63.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/5a/5ad19f056315b4215ba956d84e6c3b63.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5a/5ad399ee1b3982a7b1038493cdeace59.bin b/common/runtime/cache/5a/5ad399ee1b3982a7b1038493cdeace59.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5a/5ad399ee1b3982a7b1038493cdeace59.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5a/5aed310b4ba1aadb2f68b4938c654c84.bin b/common/runtime/cache/5a/5aed310b4ba1aadb2f68b4938c654c84.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5a/5aed310b4ba1aadb2f68b4938c654c84.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5b/5b03281d8fb57788fbf8bb65abbfad89.bin b/common/runtime/cache/5b/5b03281d8fb57788fbf8bb65abbfad89.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5b/5b03281d8fb57788fbf8bb65abbfad89.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5b/5b05c2c6d05dbbf6690e46b3224eb9c6.bin b/common/runtime/cache/5b/5b05c2c6d05dbbf6690e46b3224eb9c6.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/5b/5b05c2c6d05dbbf6690e46b3224eb9c6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5b/5b072579843b077a64af094dd08ba40a.bin b/common/runtime/cache/5b/5b072579843b077a64af094dd08ba40a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5b/5b072579843b077a64af094dd08ba40a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5b/5b176fcb5eddb5a2f0faeba14fde5063.bin b/common/runtime/cache/5b/5b176fcb5eddb5a2f0faeba14fde5063.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/5b/5b176fcb5eddb5a2f0faeba14fde5063.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5b/5b6933d46b13b3566887da73cdeab591.bin b/common/runtime/cache/5b/5b6933d46b13b3566887da73cdeab591.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5b/5b6933d46b13b3566887da73cdeab591.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5b/5bbeaf4d2f21c6f47fab084a589725f1.bin b/common/runtime/cache/5b/5bbeaf4d2f21c6f47fab084a589725f1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5b/5bbeaf4d2f21c6f47fab084a589725f1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5b/5bd6d36036096da1ad282e0cfbdb55ee.bin b/common/runtime/cache/5b/5bd6d36036096da1ad282e0cfbdb55ee.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/5b/5bd6d36036096da1ad282e0cfbdb55ee.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5c20d13a3ef91689b3279e0ad351e137.bin b/common/runtime/cache/5c/5c20d13a3ef91689b3279e0ad351e137.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5c/5c20d13a3ef91689b3279e0ad351e137.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5c2f0b7ae928519084258c36b868218d.bin b/common/runtime/cache/5c/5c2f0b7ae928519084258c36b868218d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5c/5c2f0b7ae928519084258c36b868218d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5c3a0414037835def3f24774c79c6f23.bin b/common/runtime/cache/5c/5c3a0414037835def3f24774c79c6f23.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5c/5c3a0414037835def3f24774c79c6f23.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5c46c4c3a76d007b71ae00793b5069f1.bin b/common/runtime/cache/5c/5c46c4c3a76d007b71ae00793b5069f1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5c/5c46c4c3a76d007b71ae00793b5069f1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5c4b155bdd84913ca6e7ab6fe0d6868f.bin b/common/runtime/cache/5c/5c4b155bdd84913ca6e7ab6fe0d6868f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/5c/5c4b155bdd84913ca6e7ab6fe0d6868f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5c4eb70ff02c022aec9830cce39a853b.bin b/common/runtime/cache/5c/5c4eb70ff02c022aec9830cce39a853b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5c/5c4eb70ff02c022aec9830cce39a853b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5c53ace78c45e7e85c927bb90aa47b63.bin b/common/runtime/cache/5c/5c53ace78c45e7e85c927bb90aa47b63.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/5c/5c53ace78c45e7e85c927bb90aa47b63.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5c61c56c5b47df609538f659fdee054e.bin b/common/runtime/cache/5c/5c61c56c5b47df609538f659fdee054e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5c/5c61c56c5b47df609538f659fdee054e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5c6a1a2193ee657c87dec77974821b01.bin b/common/runtime/cache/5c/5c6a1a2193ee657c87dec77974821b01.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/5c/5c6a1a2193ee657c87dec77974821b01.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5c801a53ebb27169e3c01232fb884777.bin b/common/runtime/cache/5c/5c801a53ebb27169e3c01232fb884777.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5c/5c801a53ebb27169e3c01232fb884777.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5c84bfdd77627b5dde15415bf0e395b2.bin b/common/runtime/cache/5c/5c84bfdd77627b5dde15415bf0e395b2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/5c/5c84bfdd77627b5dde15415bf0e395b2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5c8573c791eaf33d7f9923a797e5cf2a.bin b/common/runtime/cache/5c/5c8573c791eaf33d7f9923a797e5cf2a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/5c/5c8573c791eaf33d7f9923a797e5cf2a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5c860bcb78fec072792ad278ba956531.bin b/common/runtime/cache/5c/5c860bcb78fec072792ad278ba956531.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5c/5c860bcb78fec072792ad278ba956531.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5c923ffc54ca996d52946a0b292c9173.bin b/common/runtime/cache/5c/5c923ffc54ca996d52946a0b292c9173.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5c/5c923ffc54ca996d52946a0b292c9173.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5c92d33ab354113f0a2efab8cb7a889b.bin b/common/runtime/cache/5c/5c92d33ab354113f0a2efab8cb7a889b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5c/5c92d33ab354113f0a2efab8cb7a889b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5ca4b1175bcb44bbe8d8eba3ac0f1867.bin b/common/runtime/cache/5c/5ca4b1175bcb44bbe8d8eba3ac0f1867.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5c/5ca4b1175bcb44bbe8d8eba3ac0f1867.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5cb414efc566b063491222aabc615d25.bin b/common/runtime/cache/5c/5cb414efc566b063491222aabc615d25.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5c/5cb414efc566b063491222aabc615d25.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5cc8b818180d58f85058e90ad5e3dbcf.bin b/common/runtime/cache/5c/5cc8b818180d58f85058e90ad5e3dbcf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5c/5cc8b818180d58f85058e90ad5e3dbcf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5ce9e1248dd1b541efebd7c2a1119c48.bin b/common/runtime/cache/5c/5ce9e1248dd1b541efebd7c2a1119c48.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5c/5ce9e1248dd1b541efebd7c2a1119c48.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5cee30356856c10a0b104f80a5685555.bin b/common/runtime/cache/5c/5cee30356856c10a0b104f80a5685555.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/5c/5cee30356856c10a0b104f80a5685555.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5cf9d0cde87945221fc98cce257b69ef.bin b/common/runtime/cache/5c/5cf9d0cde87945221fc98cce257b69ef.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/5c/5cf9d0cde87945221fc98cce257b69ef.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5c/5cfce87ab5447695e41232b0ae1e1b50.bin b/common/runtime/cache/5c/5cfce87ab5447695e41232b0ae1e1b50.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5c/5cfce87ab5447695e41232b0ae1e1b50.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5d/5d164ae06b97bc8faebe1f1b3b5d965d.bin b/common/runtime/cache/5d/5d164ae06b97bc8faebe1f1b3b5d965d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5d/5d164ae06b97bc8faebe1f1b3b5d965d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5d/5d20eaf962ab7bd47a7da0d8dc603c1e.bin b/common/runtime/cache/5d/5d20eaf962ab7bd47a7da0d8dc603c1e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5d/5d20eaf962ab7bd47a7da0d8dc603c1e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5d/5d35e27d4698716f7764998033281e53.bin b/common/runtime/cache/5d/5d35e27d4698716f7764998033281e53.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/5d/5d35e27d4698716f7764998033281e53.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5d/5d6181e88ef31154707029d624df6a0f.bin b/common/runtime/cache/5d/5d6181e88ef31154707029d624df6a0f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5d/5d6181e88ef31154707029d624df6a0f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5d/5d721d57971f88443336a12e0ae6ddfd.bin b/common/runtime/cache/5d/5d721d57971f88443336a12e0ae6ddfd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5d/5d721d57971f88443336a12e0ae6ddfd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5d/5d80b065a2a3978ae9c5a3afdcfa537c.bin b/common/runtime/cache/5d/5d80b065a2a3978ae9c5a3afdcfa537c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5d/5d80b065a2a3978ae9c5a3afdcfa537c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5d/5db2231a8c23cae5691f78598b152d89.bin b/common/runtime/cache/5d/5db2231a8c23cae5691f78598b152d89.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5d/5db2231a8c23cae5691f78598b152d89.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5d/5db84eee29517361874c72d245de66eb.bin b/common/runtime/cache/5d/5db84eee29517361874c72d245de66eb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5d/5db84eee29517361874c72d245de66eb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5d/5dbe0ef2766001eaf48153255a046fdd.bin b/common/runtime/cache/5d/5dbe0ef2766001eaf48153255a046fdd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5d/5dbe0ef2766001eaf48153255a046fdd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5d/5dd1ea8605b7fdefd31cc3ff62a85a91.bin b/common/runtime/cache/5d/5dd1ea8605b7fdefd31cc3ff62a85a91.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5d/5dd1ea8605b7fdefd31cc3ff62a85a91.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5d/5dd79c029481be8ae948ddc04016fc53.bin b/common/runtime/cache/5d/5dd79c029481be8ae948ddc04016fc53.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/5d/5dd79c029481be8ae948ddc04016fc53.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5d/5dd8c33650b9ff215519377a7a4207dc.bin b/common/runtime/cache/5d/5dd8c33650b9ff215519377a7a4207dc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5d/5dd8c33650b9ff215519377a7a4207dc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5d/5ddd9f81fde1c55743acf6e751cf2ac5.bin b/common/runtime/cache/5d/5ddd9f81fde1c55743acf6e751cf2ac5.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/5d/5ddd9f81fde1c55743acf6e751cf2ac5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5d/5ddf12fbd56239f1826c59e173520e5b.bin b/common/runtime/cache/5d/5ddf12fbd56239f1826c59e173520e5b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5d/5ddf12fbd56239f1826c59e173520e5b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5e/5e3dad3c81ebe988d1f90fbd2010dcfc.bin b/common/runtime/cache/5e/5e3dad3c81ebe988d1f90fbd2010dcfc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5e/5e3dad3c81ebe988d1f90fbd2010dcfc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5e/5e572a9feb6e736e3b9fcd495eb1cf7d.bin b/common/runtime/cache/5e/5e572a9feb6e736e3b9fcd495eb1cf7d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5e/5e572a9feb6e736e3b9fcd495eb1cf7d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5f/5f0572457095387e42186a98ffe5f168.bin b/common/runtime/cache/5f/5f0572457095387e42186a98ffe5f168.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5f/5f0572457095387e42186a98ffe5f168.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5f/5f0f93c61bdd711ffdb31d976ee9804b.bin b/common/runtime/cache/5f/5f0f93c61bdd711ffdb31d976ee9804b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5f/5f0f93c61bdd711ffdb31d976ee9804b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5f/5f32c15cf5e99f67155e41898514d3e1.bin b/common/runtime/cache/5f/5f32c15cf5e99f67155e41898514d3e1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5f/5f32c15cf5e99f67155e41898514d3e1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5f/5f4b0fd630d15c7e5cb40545626559fc.bin b/common/runtime/cache/5f/5f4b0fd630d15c7e5cb40545626559fc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5f/5f4b0fd630d15c7e5cb40545626559fc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5f/5f53290d0b96177bb5f02633ed45b44d.bin b/common/runtime/cache/5f/5f53290d0b96177bb5f02633ed45b44d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5f/5f53290d0b96177bb5f02633ed45b44d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5f/5f5e27bcb6e75beb3ef229cc82183be6.bin b/common/runtime/cache/5f/5f5e27bcb6e75beb3ef229cc82183be6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5f/5f5e27bcb6e75beb3ef229cc82183be6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5f/5f828f4de874a6b7f1c036cc976eb628.bin b/common/runtime/cache/5f/5f828f4de874a6b7f1c036cc976eb628.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5f/5f828f4de874a6b7f1c036cc976eb628.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5f/5f87ab55b6c91a29ae4c4436b505f8b5.bin b/common/runtime/cache/5f/5f87ab55b6c91a29ae4c4436b505f8b5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5f/5f87ab55b6c91a29ae4c4436b505f8b5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5f/5f9fb387cf8d8e550204c73267b10940.bin b/common/runtime/cache/5f/5f9fb387cf8d8e550204c73267b10940.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5f/5f9fb387cf8d8e550204c73267b10940.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5f/5fa331acda823a19c3bbb7980b8702f6.bin b/common/runtime/cache/5f/5fa331acda823a19c3bbb7980b8702f6.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/5f/5fa331acda823a19c3bbb7980b8702f6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5f/5fa9e474a6e075d5c0e5cded043e82b9.bin b/common/runtime/cache/5f/5fa9e474a6e075d5c0e5cded043e82b9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5f/5fa9e474a6e075d5c0e5cded043e82b9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5f/5fc481c425e3f5c30099dc1cc31ac7ec.bin b/common/runtime/cache/5f/5fc481c425e3f5c30099dc1cc31ac7ec.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5f/5fc481c425e3f5c30099dc1cc31ac7ec.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5f/5fcf38ea77f59fd5cdce0770673e89ca.bin b/common/runtime/cache/5f/5fcf38ea77f59fd5cdce0770673e89ca.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/5f/5fcf38ea77f59fd5cdce0770673e89ca.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/5f/5fe2f26b8b9de5ce0d24de23faa5d6c4.bin b/common/runtime/cache/5f/5fe2f26b8b9de5ce0d24de23faa5d6c4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/5f/5fe2f26b8b9de5ce0d24de23faa5d6c4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/60/603db0f1ea69b558b80ac15c9eb261f9.bin b/common/runtime/cache/60/603db0f1ea69b558b80ac15c9eb261f9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/60/603db0f1ea69b558b80ac15c9eb261f9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/60/6040617b948dc8bdf7cf1134e5e3527a.bin b/common/runtime/cache/60/6040617b948dc8bdf7cf1134e5e3527a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/60/6040617b948dc8bdf7cf1134e5e3527a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/60/60428b63beca0559c0eba1633c225d21.bin b/common/runtime/cache/60/60428b63beca0559c0eba1633c225d21.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/60/60428b63beca0559c0eba1633c225d21.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/60/6045e89f04b146d9d34a0de54b00a66a.bin b/common/runtime/cache/60/6045e89f04b146d9d34a0de54b00a66a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/60/6045e89f04b146d9d34a0de54b00a66a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/60/604a0a7e919cec07fe454c6aa5016874.bin b/common/runtime/cache/60/604a0a7e919cec07fe454c6aa5016874.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/60/604a0a7e919cec07fe454c6aa5016874.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/60/6075ed29e9939f2bbab923e7d3d27073.bin b/common/runtime/cache/60/6075ed29e9939f2bbab923e7d3d27073.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/60/6075ed29e9939f2bbab923e7d3d27073.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/60/6078291b9a0b317afc4010f70950c40e.bin b/common/runtime/cache/60/6078291b9a0b317afc4010f70950c40e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/60/6078291b9a0b317afc4010f70950c40e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/60/60937da1969b59ff163ae6b106673dd1.bin b/common/runtime/cache/60/60937da1969b59ff163ae6b106673dd1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/60/60937da1969b59ff163ae6b106673dd1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/60/609db2b6d210747ff3e024147e9defa1.bin b/common/runtime/cache/60/609db2b6d210747ff3e024147e9defa1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/60/609db2b6d210747ff3e024147e9defa1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/60/60c45453b8ead411df6ee84228a416a7.bin b/common/runtime/cache/60/60c45453b8ead411df6ee84228a416a7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/60/60c45453b8ead411df6ee84228a416a7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/60/60cf6ee39047b3c41192f0b076cc3c6b.bin b/common/runtime/cache/60/60cf6ee39047b3c41192f0b076cc3c6b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/60/60cf6ee39047b3c41192f0b076cc3c6b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/60/60ee5c44a8296496ee18484e59a7f25a.bin b/common/runtime/cache/60/60ee5c44a8296496ee18484e59a7f25a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/60/60ee5c44a8296496ee18484e59a7f25a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/60/60f6b0035bf52b5cbb540ec2bcd4578f.bin b/common/runtime/cache/60/60f6b0035bf52b5cbb540ec2bcd4578f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/60/60f6b0035bf52b5cbb540ec2bcd4578f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/61/61045817a04fa0783bdcf244e8c7f49f.bin b/common/runtime/cache/61/61045817a04fa0783bdcf244e8c7f49f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/61/61045817a04fa0783bdcf244e8c7f49f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/61/612282c71ba6c06b69c9ae0eb920a9b6.bin b/common/runtime/cache/61/612282c71ba6c06b69c9ae0eb920a9b6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/61/612282c71ba6c06b69c9ae0eb920a9b6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/61/614f36cc764bb21af235a4c8c1f21d26.bin b/common/runtime/cache/61/614f36cc764bb21af235a4c8c1f21d26.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/61/614f36cc764bb21af235a4c8c1f21d26.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/61/6151843d88fe1026735edc3fe3b65880.bin b/common/runtime/cache/61/6151843d88fe1026735edc3fe3b65880.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/61/6151843d88fe1026735edc3fe3b65880.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/61/61626c9035a65ff00e6599c5292e15e1.bin b/common/runtime/cache/61/61626c9035a65ff00e6599c5292e15e1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/61/61626c9035a65ff00e6599c5292e15e1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/61/61743d54fe7c884f9c107fff3e67fc95.bin b/common/runtime/cache/61/61743d54fe7c884f9c107fff3e67fc95.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/61/61743d54fe7c884f9c107fff3e67fc95.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/61/61808c5407df266b7ace1d581532c49d.bin b/common/runtime/cache/61/61808c5407df266b7ace1d581532c49d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/61/61808c5407df266b7ace1d581532c49d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/61/61a143d73c8860796faee810fe362dd6.bin b/common/runtime/cache/61/61a143d73c8860796faee810fe362dd6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/61/61a143d73c8860796faee810fe362dd6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/61/61ceb0f24db5ac505a208d6e0f17e371.bin b/common/runtime/cache/61/61ceb0f24db5ac505a208d6e0f17e371.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/61/61ceb0f24db5ac505a208d6e0f17e371.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/61/61dd78a3be9828edaa0d78092cd38a14.bin b/common/runtime/cache/61/61dd78a3be9828edaa0d78092cd38a14.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/61/61dd78a3be9828edaa0d78092cd38a14.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/61/61e79b248d7edc6a1c33aa9cf3071c5b.bin b/common/runtime/cache/61/61e79b248d7edc6a1c33aa9cf3071c5b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/61/61e79b248d7edc6a1c33aa9cf3071c5b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/62/62077813a0d0b4f4223ef38168588cf3.bin b/common/runtime/cache/62/62077813a0d0b4f4223ef38168588cf3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/62/62077813a0d0b4f4223ef38168588cf3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/62/62675559082df7834283c6376f712c9e.bin b/common/runtime/cache/62/62675559082df7834283c6376f712c9e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/62/62675559082df7834283c6376f712c9e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/62/626ea7617c62337023c0e72e7539ab1a.bin b/common/runtime/cache/62/626ea7617c62337023c0e72e7539ab1a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/62/626ea7617c62337023c0e72e7539ab1a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/62/62ae45c434146ef1742220dbe4807b16.bin b/common/runtime/cache/62/62ae45c434146ef1742220dbe4807b16.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/62/62ae45c434146ef1742220dbe4807b16.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/62/62c273969ba1b091c6482cffc5fc5e69.bin b/common/runtime/cache/62/62c273969ba1b091c6482cffc5fc5e69.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/62/62c273969ba1b091c6482cffc5fc5e69.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/62/62c4689a8697579c26b78100159c085a.bin b/common/runtime/cache/62/62c4689a8697579c26b78100159c085a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/62/62c4689a8697579c26b78100159c085a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/62/62cbf66b772b319cd635f3191767d5ce.bin b/common/runtime/cache/62/62cbf66b772b319cd635f3191767d5ce.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/62/62cbf66b772b319cd635f3191767d5ce.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/62/62ea1529fa5ca53372aace8d6aaabb8e.bin b/common/runtime/cache/62/62ea1529fa5ca53372aace8d6aaabb8e.bin new file mode 100644 index 0000000..a29eb99 --- /dev/null +++ b/common/runtime/cache/62/62ea1529fa5ca53372aace8d6aaabb8e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";i:2;s:4:"path";s:9:"post/news";}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/63/6333582cc45f698105485c4fd6890d95.bin b/common/runtime/cache/63/6333582cc45f698105485c4fd6890d95.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/63/6333582cc45f698105485c4fd6890d95.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/63/634278c1b7f17bab1f43086d8580c433.bin b/common/runtime/cache/63/634278c1b7f17bab1f43086d8580c433.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/63/634278c1b7f17bab1f43086d8580c433.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/63/634a1d127b907cd0cecd0f2f97a4ecea.bin b/common/runtime/cache/63/634a1d127b907cd0cecd0f2f97a4ecea.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/63/634a1d127b907cd0cecd0f2f97a4ecea.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/63/637037c763a79703141919bb1ff5cbae.bin b/common/runtime/cache/63/637037c763a79703141919bb1ff5cbae.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/63/637037c763a79703141919bb1ff5cbae.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/63/637e6a3edf81498ab5651eb0ed6f212d.bin b/common/runtime/cache/63/637e6a3edf81498ab5651eb0ed6f212d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/63/637e6a3edf81498ab5651eb0ed6f212d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/63/6382e2e480ed9199ff8ddacaeb8ce1bf.bin b/common/runtime/cache/63/6382e2e480ed9199ff8ddacaeb8ce1bf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/63/6382e2e480ed9199ff8ddacaeb8ce1bf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/63/6386b5921c43756581aeb78b6642416d.bin b/common/runtime/cache/63/6386b5921c43756581aeb78b6642416d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/63/6386b5921c43756581aeb78b6642416d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/63/638ef6756fd87af48dc6b8e5a88793da.bin b/common/runtime/cache/63/638ef6756fd87af48dc6b8e5a88793da.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/63/638ef6756fd87af48dc6b8e5a88793da.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/63/639d175bf10e80b8dfe29d45889f2f23.bin b/common/runtime/cache/63/639d175bf10e80b8dfe29d45889f2f23.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/63/639d175bf10e80b8dfe29d45889f2f23.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/63/63ba9b9d6a4b9d3d32a5e28185db46d7.bin b/common/runtime/cache/63/63ba9b9d6a4b9d3d32a5e28185db46d7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/63/63ba9b9d6a4b9d3d32a5e28185db46d7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/63/63be5c44ac6727875d057d4959aef1d4.bin b/common/runtime/cache/63/63be5c44ac6727875d057d4959aef1d4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/63/63be5c44ac6727875d057d4959aef1d4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/63/63c2f53314220b3df6dc2db1f82bb1a0.bin b/common/runtime/cache/63/63c2f53314220b3df6dc2db1f82bb1a0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/63/63c2f53314220b3df6dc2db1f82bb1a0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/63/63e2c163d2a795823c3edc6dbd463c6a.bin b/common/runtime/cache/63/63e2c163d2a795823c3edc6dbd463c6a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/63/63e2c163d2a795823c3edc6dbd463c6a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/64/6406574cda9f799c9c4e1572b468dd1c.bin b/common/runtime/cache/64/6406574cda9f799c9c4e1572b468dd1c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/64/6406574cda9f799c9c4e1572b468dd1c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/64/642825d2312cf109a547dc36c9f761ce.bin b/common/runtime/cache/64/642825d2312cf109a547dc36c9f761ce.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/64/642825d2312cf109a547dc36c9f761ce.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/64/642869a7c4458b64ec296eb55faef9f6.bin b/common/runtime/cache/64/642869a7c4458b64ec296eb55faef9f6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/64/642869a7c4458b64ec296eb55faef9f6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/64/643fec65da7ce964df63e11239dd6cc1.bin b/common/runtime/cache/64/643fec65da7ce964df63e11239dd6cc1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/64/643fec65da7ce964df63e11239dd6cc1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/64/644ceb9212718478af9c518449729bf4.bin b/common/runtime/cache/64/644ceb9212718478af9c518449729bf4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/64/644ceb9212718478af9c518449729bf4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/64/644d033c1831e5a00c8b446d73e7efea.bin b/common/runtime/cache/64/644d033c1831e5a00c8b446d73e7efea.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/64/644d033c1831e5a00c8b446d73e7efea.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/64/647e2022f8d79a69f3602554347f4793.bin b/common/runtime/cache/64/647e2022f8d79a69f3602554347f4793.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/64/647e2022f8d79a69f3602554347f4793.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/64/6493c9617db34e662b7497c24c396f6a.bin b/common/runtime/cache/64/6493c9617db34e662b7497c24c396f6a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/64/6493c9617db34e662b7497c24c396f6a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/64/64a3f42489c92d431f75acded40fcd7a.bin b/common/runtime/cache/64/64a3f42489c92d431f75acded40fcd7a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/64/64a3f42489c92d431f75acded40fcd7a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/64/64a4d1dcde731b311c87638444e76f8c.bin b/common/runtime/cache/64/64a4d1dcde731b311c87638444e76f8c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/64/64a4d1dcde731b311c87638444e76f8c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/64/64bac76090c8de8fd04c9a340539e101.bin b/common/runtime/cache/64/64bac76090c8de8fd04c9a340539e101.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/64/64bac76090c8de8fd04c9a340539e101.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/64/64d04a0bad8362b644417b64a7e1de2f.bin b/common/runtime/cache/64/64d04a0bad8362b644417b64a7e1de2f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/64/64d04a0bad8362b644417b64a7e1de2f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/64/64f20df87253f45818fae8d6b3b54da6.bin b/common/runtime/cache/64/64f20df87253f45818fae8d6b3b54da6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/64/64f20df87253f45818fae8d6b3b54da6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/65/6540e8e9627c7708ba6cd9871806e271.bin b/common/runtime/cache/65/6540e8e9627c7708ba6cd9871806e271.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/65/6540e8e9627c7708ba6cd9871806e271.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/65/65460d01652fc529e9b6153c5acff8b5.bin b/common/runtime/cache/65/65460d01652fc529e9b6153c5acff8b5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/65/65460d01652fc529e9b6153c5acff8b5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/65/6548e1d61fb2bec19be5552ca6a1ddc6.bin b/common/runtime/cache/65/6548e1d61fb2bec19be5552ca6a1ddc6.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/65/6548e1d61fb2bec19be5552ca6a1ddc6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/65/655f1edbb9fdedca36100c067c3b2991.bin b/common/runtime/cache/65/655f1edbb9fdedca36100c067c3b2991.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/65/655f1edbb9fdedca36100c067c3b2991.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/65/656f013bc6379ad3c9024206a2af5b5c.bin b/common/runtime/cache/65/656f013bc6379ad3c9024206a2af5b5c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/65/656f013bc6379ad3c9024206a2af5b5c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/65/6574fe3692c8e3b7d6aea000ac976ff2.bin b/common/runtime/cache/65/6574fe3692c8e3b7d6aea000ac976ff2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/65/6574fe3692c8e3b7d6aea000ac976ff2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/65/65825d058b67d27d947d07f88aa0558d.bin b/common/runtime/cache/65/65825d058b67d27d947d07f88aa0558d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/65/65825d058b67d27d947d07f88aa0558d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/65/65a3b01ecb57dd71678bda094845b3d8.bin b/common/runtime/cache/65/65a3b01ecb57dd71678bda094845b3d8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/65/65a3b01ecb57dd71678bda094845b3d8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/65/65a75059924c0af44a71378a2bb2f36b.bin b/common/runtime/cache/65/65a75059924c0af44a71378a2bb2f36b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/65/65a75059924c0af44a71378a2bb2f36b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/65/65a98818e651ad46d0eada26d702139c.bin b/common/runtime/cache/65/65a98818e651ad46d0eada26d702139c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/65/65a98818e651ad46d0eada26d702139c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/65/65ae19ecf3b6c7760c2bb970d58b5d4f.bin b/common/runtime/cache/65/65ae19ecf3b6c7760c2bb970d58b5d4f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/65/65ae19ecf3b6c7760c2bb970d58b5d4f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/65/65bf0757758de4416670ba06b69177ef.bin b/common/runtime/cache/65/65bf0757758de4416670ba06b69177ef.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/65/65bf0757758de4416670ba06b69177ef.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/65/65d83f27d5a17d9d5c3dfbc2bdbdfe3e.bin b/common/runtime/cache/65/65d83f27d5a17d9d5c3dfbc2bdbdfe3e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/65/65d83f27d5a17d9d5c3dfbc2bdbdfe3e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/65/65e3a08a559431b573a5c54a08fdada4.bin b/common/runtime/cache/65/65e3a08a559431b573a5c54a08fdada4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/65/65e3a08a559431b573a5c54a08fdada4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/65/65e9d964ff394e02214e3acd22abbb30.bin b/common/runtime/cache/65/65e9d964ff394e02214e3acd22abbb30.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/65/65e9d964ff394e02214e3acd22abbb30.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/65/65f1c62b2730cf73c17ccc5ee8e3f67d.bin b/common/runtime/cache/65/65f1c62b2730cf73c17ccc5ee8e3f67d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/65/65f1c62b2730cf73c17ccc5ee8e3f67d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/66/660f9c4ef43a3c1f56924578571dd5e7.bin b/common/runtime/cache/66/660f9c4ef43a3c1f56924578571dd5e7.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/66/660f9c4ef43a3c1f56924578571dd5e7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/66/6624cc1373b1f4ebc2ffad46dbae9cde.bin b/common/runtime/cache/66/6624cc1373b1f4ebc2ffad46dbae9cde.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/66/6624cc1373b1f4ebc2ffad46dbae9cde.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/66/6627188473b7eff96af125f13867f2a1.bin b/common/runtime/cache/66/6627188473b7eff96af125f13867f2a1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/66/6627188473b7eff96af125f13867f2a1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/66/664161dd215e852bf6fb8872657408bb.bin b/common/runtime/cache/66/664161dd215e852bf6fb8872657408bb.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/66/664161dd215e852bf6fb8872657408bb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/66/6647a7047faf17c8e7491ab9dfb6d333.bin b/common/runtime/cache/66/6647a7047faf17c8e7491ab9dfb6d333.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/66/6647a7047faf17c8e7491ab9dfb6d333.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/66/664d472d03f736b0dd7e036f62f19e6d.bin b/common/runtime/cache/66/664d472d03f736b0dd7e036f62f19e6d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/66/664d472d03f736b0dd7e036f62f19e6d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/66/6670c0127f864c1ba9c7a7fe64b1a244.bin b/common/runtime/cache/66/6670c0127f864c1ba9c7a7fe64b1a244.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/66/6670c0127f864c1ba9c7a7fe64b1a244.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/66/667827f42fac6e5319bae5029dabd45b.bin b/common/runtime/cache/66/667827f42fac6e5319bae5029dabd45b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/66/667827f42fac6e5319bae5029dabd45b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/66/6692c37a4f68b6fe77f76eb6a8aea9bb.bin b/common/runtime/cache/66/6692c37a4f68b6fe77f76eb6a8aea9bb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/66/6692c37a4f68b6fe77f76eb6a8aea9bb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/66/66d8ff8b9072a7dda614770e55dd9b61.bin b/common/runtime/cache/66/66d8ff8b9072a7dda614770e55dd9b61.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/66/66d8ff8b9072a7dda614770e55dd9b61.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/66/66ead68763eadfef165994996711d668.bin b/common/runtime/cache/66/66ead68763eadfef165994996711d668.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/66/66ead68763eadfef165994996711d668.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/66/66f07b3b747360a6e9871deb3251ce48.bin b/common/runtime/cache/66/66f07b3b747360a6e9871deb3251ce48.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/66/66f07b3b747360a6e9871deb3251ce48.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/67/6707d425179c4b19278943b749722d55.bin b/common/runtime/cache/67/6707d425179c4b19278943b749722d55.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/67/6707d425179c4b19278943b749722d55.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/67/671e9d179e2f2aecbccac6778c3842fc.bin b/common/runtime/cache/67/671e9d179e2f2aecbccac6778c3842fc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/67/671e9d179e2f2aecbccac6778c3842fc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/67/6720c8876aca73243c181b0dc2d993d7.bin b/common/runtime/cache/67/6720c8876aca73243c181b0dc2d993d7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/67/6720c8876aca73243c181b0dc2d993d7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/67/672b99f1f5f27f8db92e737d8d52bcf5.bin b/common/runtime/cache/67/672b99f1f5f27f8db92e737d8d52bcf5.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/67/672b99f1f5f27f8db92e737d8d52bcf5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/67/673a5b5f33384d75def2defecfe09ef7.bin b/common/runtime/cache/67/673a5b5f33384d75def2defecfe09ef7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/67/673a5b5f33384d75def2defecfe09ef7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/67/673b7d45f894b07261a7b75adda93ef9.bin b/common/runtime/cache/67/673b7d45f894b07261a7b75adda93ef9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/67/673b7d45f894b07261a7b75adda93ef9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/67/673bc2ae39911ecf783ec4d808d6651b.bin b/common/runtime/cache/67/673bc2ae39911ecf783ec4d808d6651b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/67/673bc2ae39911ecf783ec4d808d6651b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/67/673cdb4014c13c3a546b0b0f8876c0db.bin b/common/runtime/cache/67/673cdb4014c13c3a546b0b0f8876c0db.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/67/673cdb4014c13c3a546b0b0f8876c0db.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/67/674911fc412962b74ee9a236798990cc.bin b/common/runtime/cache/67/674911fc412962b74ee9a236798990cc.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/67/674911fc412962b74ee9a236798990cc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/67/674bf070b592b59f72f913f55f6dbd71.bin b/common/runtime/cache/67/674bf070b592b59f72f913f55f6dbd71.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/67/674bf070b592b59f72f913f55f6dbd71.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/67/6755eeb322d8a52bf08183a901a73caa.bin b/common/runtime/cache/67/6755eeb322d8a52bf08183a901a73caa.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/67/6755eeb322d8a52bf08183a901a73caa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/67/676541ab010fa83c4fd8162f1d472983.bin b/common/runtime/cache/67/676541ab010fa83c4fd8162f1d472983.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/67/676541ab010fa83c4fd8162f1d472983.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/67/67655fb4d98ecc73344f65088c7d2921.bin b/common/runtime/cache/67/67655fb4d98ecc73344f65088c7d2921.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/67/67655fb4d98ecc73344f65088c7d2921.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/67/67908fcf28162dff73b0c1051e013b5c.bin b/common/runtime/cache/67/67908fcf28162dff73b0c1051e013b5c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/67/67908fcf28162dff73b0c1051e013b5c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/67/67c929867c4d3d67c5d39ae7120f1628.bin b/common/runtime/cache/67/67c929867c4d3d67c5d39ae7120f1628.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/67/67c929867c4d3d67c5d39ae7120f1628.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/67/67d31bc0d6851aaea1e963b90b01a2b5.bin b/common/runtime/cache/67/67d31bc0d6851aaea1e963b90b01a2b5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/67/67d31bc0d6851aaea1e963b90b01a2b5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/67/67e7183841a29814f3dafe2f12e14fae.bin b/common/runtime/cache/67/67e7183841a29814f3dafe2f12e14fae.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/67/67e7183841a29814f3dafe2f12e14fae.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/68/6806cc922dce5ce1fbe273f17bee1113.bin b/common/runtime/cache/68/6806cc922dce5ce1fbe273f17bee1113.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/68/6806cc922dce5ce1fbe273f17bee1113.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/68/6821dbdd7f18a5078227cd9efde78055.bin b/common/runtime/cache/68/6821dbdd7f18a5078227cd9efde78055.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/68/6821dbdd7f18a5078227cd9efde78055.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/68/6825a57972399365d248c71a7ed1e428.bin b/common/runtime/cache/68/6825a57972399365d248c71a7ed1e428.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/68/6825a57972399365d248c71a7ed1e428.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/68/68342147c08d53e9a7eff74df8682b85.bin b/common/runtime/cache/68/68342147c08d53e9a7eff74df8682b85.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/68/68342147c08d53e9a7eff74df8682b85.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/68/6834ea94b5bbf4446c3b1f91bda1c3ed.bin b/common/runtime/cache/68/6834ea94b5bbf4446c3b1f91bda1c3ed.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/68/6834ea94b5bbf4446c3b1f91bda1c3ed.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/68/6846ea1a7751386d2feebf608d161b42.bin b/common/runtime/cache/68/6846ea1a7751386d2feebf608d161b42.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/68/6846ea1a7751386d2feebf608d161b42.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/68/685006de3dceefed90dccc8469feb5d4.bin b/common/runtime/cache/68/685006de3dceefed90dccc8469feb5d4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/68/685006de3dceefed90dccc8469feb5d4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/68/6858d7f6effc03a838c325ec0bf62ed8.bin b/common/runtime/cache/68/6858d7f6effc03a838c325ec0bf62ed8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/68/6858d7f6effc03a838c325ec0bf62ed8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/68/686a42734c96cf53504513bad90d9655.bin b/common/runtime/cache/68/686a42734c96cf53504513bad90d9655.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/68/686a42734c96cf53504513bad90d9655.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/68/68971ebdb32fc126c8cae03ccf7beac2.bin b/common/runtime/cache/68/68971ebdb32fc126c8cae03ccf7beac2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/68/68971ebdb32fc126c8cae03ccf7beac2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/68/68bbd5276b13b92f9e1017a668b65ebc.bin b/common/runtime/cache/68/68bbd5276b13b92f9e1017a668b65ebc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/68/68bbd5276b13b92f9e1017a668b65ebc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/68/68bd480a110ac1e0609041a6ab8673e9.bin b/common/runtime/cache/68/68bd480a110ac1e0609041a6ab8673e9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/68/68bd480a110ac1e0609041a6ab8673e9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/68/68c530c875169c762fed5bf637216d1b.bin b/common/runtime/cache/68/68c530c875169c762fed5bf637216d1b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/68/68c530c875169c762fed5bf637216d1b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/68/68ca7ecd4c092be8704223a12d667f2f.bin b/common/runtime/cache/68/68ca7ecd4c092be8704223a12d667f2f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/68/68ca7ecd4c092be8704223a12d667f2f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/68/68d2aaf0bc160e758cb1ba511e5ec9cc.bin b/common/runtime/cache/68/68d2aaf0bc160e758cb1ba511e5ec9cc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/68/68d2aaf0bc160e758cb1ba511e5ec9cc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/68/68db92de47404950e4b51986e46f5faf.bin b/common/runtime/cache/68/68db92de47404950e4b51986e46f5faf.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/68/68db92de47404950e4b51986e46f5faf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/68/68f889ec770ea70c3914efffa3270d8e.bin b/common/runtime/cache/68/68f889ec770ea70c3914efffa3270d8e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/68/68f889ec770ea70c3914efffa3270d8e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/69/6928251c3c5c5582d3a49a1094df786b.bin b/common/runtime/cache/69/6928251c3c5c5582d3a49a1094df786b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/69/6928251c3c5c5582d3a49a1094df786b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/69/6928fa7c47a032390ffbd2ebeadcca24.bin b/common/runtime/cache/69/6928fa7c47a032390ffbd2ebeadcca24.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/69/6928fa7c47a032390ffbd2ebeadcca24.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/69/6964ef41fc7d5d8f91427d9ac3cda739.bin b/common/runtime/cache/69/6964ef41fc7d5d8f91427d9ac3cda739.bin new file mode 100644 index 0000000..6016c37 --- /dev/null +++ b/common/runtime/cache/69/6964ef41fc7d5d8f91427d9ac3cda739.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";i:3;s:4:"path";s:13:"post/articles";}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/69/69738bde4558ddbb643d9a6683635db1.bin b/common/runtime/cache/69/69738bde4558ddbb643d9a6683635db1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/69/69738bde4558ddbb643d9a6683635db1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/69/6977684c004de46b02d4039478a4aceb.bin b/common/runtime/cache/69/6977684c004de46b02d4039478a4aceb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/69/6977684c004de46b02d4039478a4aceb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/69/69935e8490dbf2d60de64249c5cc1e09.bin b/common/runtime/cache/69/69935e8490dbf2d60de64249c5cc1e09.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/69/69935e8490dbf2d60de64249c5cc1e09.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/69/6993c230c9d768c55745e01b23faa1d7.bin b/common/runtime/cache/69/6993c230c9d768c55745e01b23faa1d7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/69/6993c230c9d768c55745e01b23faa1d7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/69/69ae253a63776d9954c8d3f8ff88f5df.bin b/common/runtime/cache/69/69ae253a63776d9954c8d3f8ff88f5df.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/69/69ae253a63776d9954c8d3f8ff88f5df.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/69/69ae62b2f9f9c8691e3f5e56faf4b7d0.bin b/common/runtime/cache/69/69ae62b2f9f9c8691e3f5e56faf4b7d0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/69/69ae62b2f9f9c8691e3f5e56faf4b7d0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/69/69bfdf6662da1bc09d7c2beb0d09b00f.bin b/common/runtime/cache/69/69bfdf6662da1bc09d7c2beb0d09b00f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/69/69bfdf6662da1bc09d7c2beb0d09b00f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/69/69c464358aa922cf9d4934cda77a70c4.bin b/common/runtime/cache/69/69c464358aa922cf9d4934cda77a70c4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/69/69c464358aa922cf9d4934cda77a70c4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/69/69f2768bbbfff800bc3377a4f4a970e1.bin b/common/runtime/cache/69/69f2768bbbfff800bc3377a4f4a970e1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/69/69f2768bbbfff800bc3377a4f4a970e1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/69/69fd438a7c97454ca7b2be296a9c3fae.bin b/common/runtime/cache/69/69fd438a7c97454ca7b2be296a9c3fae.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/69/69fd438a7c97454ca7b2be296a9c3fae.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6a/6a496111a199a7aca70979cb1b7a07aa.bin b/common/runtime/cache/6a/6a496111a199a7aca70979cb1b7a07aa.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/6a/6a496111a199a7aca70979cb1b7a07aa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6a/6a51c93c55461dc1abcab4236550bf92.bin b/common/runtime/cache/6a/6a51c93c55461dc1abcab4236550bf92.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6a/6a51c93c55461dc1abcab4236550bf92.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6a/6a666c53d54d28eee5b8670bc0f9e5a3.bin b/common/runtime/cache/6a/6a666c53d54d28eee5b8670bc0f9e5a3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/6a/6a666c53d54d28eee5b8670bc0f9e5a3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6a/6a7fa4f73bf3a4ed09e660e56bb25dab.bin b/common/runtime/cache/6a/6a7fa4f73bf3a4ed09e660e56bb25dab.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6a/6a7fa4f73bf3a4ed09e660e56bb25dab.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6a/6ab910991cc777057bf532daaa55237f.bin b/common/runtime/cache/6a/6ab910991cc777057bf532daaa55237f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6a/6ab910991cc777057bf532daaa55237f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6a/6af0b16f11cba25180373f9f8392c399.bin b/common/runtime/cache/6a/6af0b16f11cba25180373f9f8392c399.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/6a/6af0b16f11cba25180373f9f8392c399.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6b/6b18cb724b3241cd4afa44ae79f4d8fd.bin b/common/runtime/cache/6b/6b18cb724b3241cd4afa44ae79f4d8fd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6b/6b18cb724b3241cd4afa44ae79f4d8fd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6b/6b4d78e0c70c2c6dd8748202474b6908.bin b/common/runtime/cache/6b/6b4d78e0c70c2c6dd8748202474b6908.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6b/6b4d78e0c70c2c6dd8748202474b6908.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6b/6b50cb0cad401f52141774cdda2fd8de.bin b/common/runtime/cache/6b/6b50cb0cad401f52141774cdda2fd8de.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6b/6b50cb0cad401f52141774cdda2fd8de.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6b/6b6fd45238b36cc1d6f6a901e1fa2702.bin b/common/runtime/cache/6b/6b6fd45238b36cc1d6f6a901e1fa2702.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6b/6b6fd45238b36cc1d6f6a901e1fa2702.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6b/6b748314f4850297163de6f0f6d284f6.bin b/common/runtime/cache/6b/6b748314f4850297163de6f0f6d284f6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6b/6b748314f4850297163de6f0f6d284f6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6b/6b883070a1981a452a0d6ca0280ed7c8.bin b/common/runtime/cache/6b/6b883070a1981a452a0d6ca0280ed7c8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6b/6b883070a1981a452a0d6ca0280ed7c8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6b/6b89b7088f57efc60dec7e6586db39a1.bin b/common/runtime/cache/6b/6b89b7088f57efc60dec7e6586db39a1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6b/6b89b7088f57efc60dec7e6586db39a1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6b/6b8c533c37fb45a16fc320f4709ce792.bin b/common/runtime/cache/6b/6b8c533c37fb45a16fc320f4709ce792.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6b/6b8c533c37fb45a16fc320f4709ce792.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6b/6ba92b14175ed9242ed13c3fa0b87b39.bin b/common/runtime/cache/6b/6ba92b14175ed9242ed13c3fa0b87b39.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6b/6ba92b14175ed9242ed13c3fa0b87b39.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6b/6bb083b1a33cf63ff12159247429f0cc.bin b/common/runtime/cache/6b/6bb083b1a33cf63ff12159247429f0cc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6b/6bb083b1a33cf63ff12159247429f0cc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6b/6bb17bcf911cf6c131bc63f91984c94e.bin b/common/runtime/cache/6b/6bb17bcf911cf6c131bc63f91984c94e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6b/6bb17bcf911cf6c131bc63f91984c94e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6b/6bc36cf3c2235e62bf16283ec80c1a69.bin b/common/runtime/cache/6b/6bc36cf3c2235e62bf16283ec80c1a69.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/6b/6bc36cf3c2235e62bf16283ec80c1a69.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6b/6bcd5a651659a7d76f67a52722a35ccf.bin b/common/runtime/cache/6b/6bcd5a651659a7d76f67a52722a35ccf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6b/6bcd5a651659a7d76f67a52722a35ccf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6b/6bd388e889c7d3f5aa938c176859fb6b.bin b/common/runtime/cache/6b/6bd388e889c7d3f5aa938c176859fb6b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/6b/6bd388e889c7d3f5aa938c176859fb6b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6c/6c3b24608db08f40d89c3dd055c868a1.bin b/common/runtime/cache/6c/6c3b24608db08f40d89c3dd055c868a1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6c/6c3b24608db08f40d89c3dd055c868a1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6c/6c52227367486180004998d4e93c9c86.bin b/common/runtime/cache/6c/6c52227367486180004998d4e93c9c86.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6c/6c52227367486180004998d4e93c9c86.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6c/6c80726d5172169ad083b9147cba68e0.bin b/common/runtime/cache/6c/6c80726d5172169ad083b9147cba68e0.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/6c/6c80726d5172169ad083b9147cba68e0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6c/6caf9fdf1d203d3d35a713325fa716e6.bin b/common/runtime/cache/6c/6caf9fdf1d203d3d35a713325fa716e6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6c/6caf9fdf1d203d3d35a713325fa716e6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6c/6cd589ac9554bf9b07fb748cda0c0a70.bin b/common/runtime/cache/6c/6cd589ac9554bf9b07fb748cda0c0a70.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6c/6cd589ac9554bf9b07fb748cda0c0a70.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6c/6ce0158fb587e07e6fde167309bf4627.bin b/common/runtime/cache/6c/6ce0158fb587e07e6fde167309bf4627.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6c/6ce0158fb587e07e6fde167309bf4627.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6c/6ce23173eba94eb042e3bd3be5d61226.bin b/common/runtime/cache/6c/6ce23173eba94eb042e3bd3be5d61226.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6c/6ce23173eba94eb042e3bd3be5d61226.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6d/6d137409be30a02ca39af78daf323d5b.bin b/common/runtime/cache/6d/6d137409be30a02ca39af78daf323d5b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6d/6d137409be30a02ca39af78daf323d5b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6d/6d15621070c26c687fc30383c1969999.bin b/common/runtime/cache/6d/6d15621070c26c687fc30383c1969999.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6d/6d15621070c26c687fc30383c1969999.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6d/6d20cb39d5f872762539c3ba3ff1716e.bin b/common/runtime/cache/6d/6d20cb39d5f872762539c3ba3ff1716e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6d/6d20cb39d5f872762539c3ba3ff1716e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6d/6d881cd75f085fcc4941090ba4d99cbb.bin b/common/runtime/cache/6d/6d881cd75f085fcc4941090ba4d99cbb.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/6d/6d881cd75f085fcc4941090ba4d99cbb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6d/6d8d294c86a75d104991b8647413a2ba.bin b/common/runtime/cache/6d/6d8d294c86a75d104991b8647413a2ba.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/6d/6d8d294c86a75d104991b8647413a2ba.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6d/6db2a03dfbe3a0f91a0c3772c95977ec.bin b/common/runtime/cache/6d/6db2a03dfbe3a0f91a0c3772c95977ec.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6d/6db2a03dfbe3a0f91a0c3772c95977ec.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6e/6e003a760a3b47e36a68e6cd5a396ccf.bin b/common/runtime/cache/6e/6e003a760a3b47e36a68e6cd5a396ccf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6e/6e003a760a3b47e36a68e6cd5a396ccf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6e/6e4ec10612a4e74422141d7748247ae2.bin b/common/runtime/cache/6e/6e4ec10612a4e74422141d7748247ae2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/6e/6e4ec10612a4e74422141d7748247ae2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6e/6e511a796f3bf4c83b9e04609dc047d2.bin b/common/runtime/cache/6e/6e511a796f3bf4c83b9e04609dc047d2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6e/6e511a796f3bf4c83b9e04609dc047d2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6e/6e6213af004a2e490d38c6f58222552a.bin b/common/runtime/cache/6e/6e6213af004a2e490d38c6f58222552a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6e/6e6213af004a2e490d38c6f58222552a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6e/6e81bfc26030bc600dacdc8e5594da99.bin b/common/runtime/cache/6e/6e81bfc26030bc600dacdc8e5594da99.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6e/6e81bfc26030bc600dacdc8e5594da99.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6e/6e8e593709dc1cfb861711e23c6d0f29.bin b/common/runtime/cache/6e/6e8e593709dc1cfb861711e23c6d0f29.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6e/6e8e593709dc1cfb861711e23c6d0f29.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6e/6e9f2a5c30f33946028f32819caff561.bin b/common/runtime/cache/6e/6e9f2a5c30f33946028f32819caff561.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6e/6e9f2a5c30f33946028f32819caff561.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6e/6ebd200aaa0deb897a196d4bfa952fdc.bin b/common/runtime/cache/6e/6ebd200aaa0deb897a196d4bfa952fdc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6e/6ebd200aaa0deb897a196d4bfa952fdc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6e/6ecb7cadbaf553131268b2af929d2a6e.bin b/common/runtime/cache/6e/6ecb7cadbaf553131268b2af929d2a6e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6e/6ecb7cadbaf553131268b2af929d2a6e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6e/6ef698d08c36001d60eac9771ea8be91.bin b/common/runtime/cache/6e/6ef698d08c36001d60eac9771ea8be91.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6e/6ef698d08c36001d60eac9771ea8be91.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6f/6f0d353ab15aa2b5aecbdf7d443c40f3.bin b/common/runtime/cache/6f/6f0d353ab15aa2b5aecbdf7d443c40f3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6f/6f0d353ab15aa2b5aecbdf7d443c40f3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6f/6f60e9996c1e10f00f9601c19ff5baa4.bin b/common/runtime/cache/6f/6f60e9996c1e10f00f9601c19ff5baa4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6f/6f60e9996c1e10f00f9601c19ff5baa4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6f/6f7e4d400569fa6895765832182e7a63.bin b/common/runtime/cache/6f/6f7e4d400569fa6895765832182e7a63.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6f/6f7e4d400569fa6895765832182e7a63.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6f/6f89e2c8230db93104727f5e0d2561ab.bin b/common/runtime/cache/6f/6f89e2c8230db93104727f5e0d2561ab.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6f/6f89e2c8230db93104727f5e0d2561ab.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6f/6f99479e1b9d2e5fddda1590b5b4d983.bin b/common/runtime/cache/6f/6f99479e1b9d2e5fddda1590b5b4d983.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/6f/6f99479e1b9d2e5fddda1590b5b4d983.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6f/6fd00add1dc7d928ddda3db8798fa1ba.bin b/common/runtime/cache/6f/6fd00add1dc7d928ddda3db8798fa1ba.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6f/6fd00add1dc7d928ddda3db8798fa1ba.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6f/6fd46fb932aeabb5c4a3728f2cc49c78.bin b/common/runtime/cache/6f/6fd46fb932aeabb5c4a3728f2cc49c78.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6f/6fd46fb932aeabb5c4a3728f2cc49c78.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6f/6fd77259b61f5f541acd108df2fba6ff.bin b/common/runtime/cache/6f/6fd77259b61f5f541acd108df2fba6ff.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6f/6fd77259b61f5f541acd108df2fba6ff.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/6f/6feae92694a995ec07010b6e576d2070.bin b/common/runtime/cache/6f/6feae92694a995ec07010b6e576d2070.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/6f/6feae92694a995ec07010b6e576d2070.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/70/7005668291c901a3574fa36e2cdf3a93.bin b/common/runtime/cache/70/7005668291c901a3574fa36e2cdf3a93.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/70/7005668291c901a3574fa36e2cdf3a93.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/70/704cbc84ea1fa91c1ba57349e617ddf4.bin b/common/runtime/cache/70/704cbc84ea1fa91c1ba57349e617ddf4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/70/704cbc84ea1fa91c1ba57349e617ddf4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/70/7075387e82e94d848ae9a3575d66f53d.bin b/common/runtime/cache/70/7075387e82e94d848ae9a3575d66f53d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/70/7075387e82e94d848ae9a3575d66f53d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/70/7089e8602a18e8d58d4c9e8f1ecea574.bin b/common/runtime/cache/70/7089e8602a18e8d58d4c9e8f1ecea574.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/70/7089e8602a18e8d58d4c9e8f1ecea574.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/70/709842488a82c74bbb2c4d3d2a296322.bin b/common/runtime/cache/70/709842488a82c74bbb2c4d3d2a296322.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/70/709842488a82c74bbb2c4d3d2a296322.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/70/70db03e10a0f962c31bef631bedad5d6.bin b/common/runtime/cache/70/70db03e10a0f962c31bef631bedad5d6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/70/70db03e10a0f962c31bef631bedad5d6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/70/70e2ed58e74daf462bee4016c117d318.bin b/common/runtime/cache/70/70e2ed58e74daf462bee4016c117d318.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/70/70e2ed58e74daf462bee4016c117d318.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/70/70ef6f3149d3e1a0d16670513229fe3f.bin b/common/runtime/cache/70/70ef6f3149d3e1a0d16670513229fe3f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/70/70ef6f3149d3e1a0d16670513229fe3f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/71/7121be31390107802e60352d22c50f61.bin b/common/runtime/cache/71/7121be31390107802e60352d22c50f61.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/71/7121be31390107802e60352d22c50f61.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/71/713aa15f97d1d16f03534b7e2a338294.bin b/common/runtime/cache/71/713aa15f97d1d16f03534b7e2a338294.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/71/713aa15f97d1d16f03534b7e2a338294.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/71/71520acb5820fab1526d6d59457c674e.bin b/common/runtime/cache/71/71520acb5820fab1526d6d59457c674e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/71/71520acb5820fab1526d6d59457c674e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/71/71558b881d805e202174b5ce5526d685.bin b/common/runtime/cache/71/71558b881d805e202174b5ce5526d685.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/71/71558b881d805e202174b5ce5526d685.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/71/71643fe77116c6d26172aaad34fac811.bin b/common/runtime/cache/71/71643fe77116c6d26172aaad34fac811.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/71/71643fe77116c6d26172aaad34fac811.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/71/7193764db67a35524b1651ef922acd2f.bin b/common/runtime/cache/71/7193764db67a35524b1651ef922acd2f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/71/7193764db67a35524b1651ef922acd2f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/71/719a181673f7a886aab7a9087d6a270f.bin b/common/runtime/cache/71/719a181673f7a886aab7a9087d6a270f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/71/719a181673f7a886aab7a9087d6a270f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/71/71c327d77f7bedabcf088940012a0bb2.bin b/common/runtime/cache/71/71c327d77f7bedabcf088940012a0bb2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/71/71c327d77f7bedabcf088940012a0bb2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/71/71d6844ad5fa8e81db492160da7167d9.bin b/common/runtime/cache/71/71d6844ad5fa8e81db492160da7167d9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/71/71d6844ad5fa8e81db492160da7167d9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/71/71db5374c38302d33097b620e652ae95.bin b/common/runtime/cache/71/71db5374c38302d33097b620e652ae95.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/71/71db5374c38302d33097b620e652ae95.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/71/71edd14b0510bcdd63c729136462d354.bin b/common/runtime/cache/71/71edd14b0510bcdd63c729136462d354.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/71/71edd14b0510bcdd63c729136462d354.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/71/71f41cb86b2575d36b1ddafda336a870.bin b/common/runtime/cache/71/71f41cb86b2575d36b1ddafda336a870.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/71/71f41cb86b2575d36b1ddafda336a870.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/71/71ffa1284344d9fd6aa2f84ba812ba0d.bin b/common/runtime/cache/71/71ffa1284344d9fd6aa2f84ba812ba0d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/71/71ffa1284344d9fd6aa2f84ba812ba0d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/72/725bd5cc1c32799db7c37779d9652bf5.bin b/common/runtime/cache/72/725bd5cc1c32799db7c37779d9652bf5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/72/725bd5cc1c32799db7c37779d9652bf5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/72/725e7ea051655644af560e70539ec7d7.bin b/common/runtime/cache/72/725e7ea051655644af560e70539ec7d7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/72/725e7ea051655644af560e70539ec7d7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/72/726041911227a791043040a22cd88576.bin b/common/runtime/cache/72/726041911227a791043040a22cd88576.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/72/726041911227a791043040a22cd88576.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/72/7266ff5cf99a02537b3216e9ff44e3a4.bin b/common/runtime/cache/72/7266ff5cf99a02537b3216e9ff44e3a4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/72/7266ff5cf99a02537b3216e9ff44e3a4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/72/72851b1eacf1a8ae34586185e097bd79.bin b/common/runtime/cache/72/72851b1eacf1a8ae34586185e097bd79.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/72/72851b1eacf1a8ae34586185e097bd79.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/72/72971404084454d75ece3e42ca211b56.bin b/common/runtime/cache/72/72971404084454d75ece3e42ca211b56.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/72/72971404084454d75ece3e42ca211b56.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/72/72b6ddea08069529526a94080f79cbe1.bin b/common/runtime/cache/72/72b6ddea08069529526a94080f79cbe1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/72/72b6ddea08069529526a94080f79cbe1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/72/72b8bb6fdf639a90b2aca15968df676d.bin b/common/runtime/cache/72/72b8bb6fdf639a90b2aca15968df676d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/72/72b8bb6fdf639a90b2aca15968df676d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/72/72cd4f321d03f2418aff85b88dbd6c57.bin b/common/runtime/cache/72/72cd4f321d03f2418aff85b88dbd6c57.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/72/72cd4f321d03f2418aff85b88dbd6c57.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/72/72cf6b071c44e71deafb5ece12759981.bin b/common/runtime/cache/72/72cf6b071c44e71deafb5ece12759981.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/72/72cf6b071c44e71deafb5ece12759981.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/72/72f3982b4b90627dae82c757bc225441.bin b/common/runtime/cache/72/72f3982b4b90627dae82c757bc225441.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/72/72f3982b4b90627dae82c757bc225441.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/72/72f905494265d0fa9d36123ac4a65b3a.bin b/common/runtime/cache/72/72f905494265d0fa9d36123ac4a65b3a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/72/72f905494265d0fa9d36123ac4a65b3a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/72/72fcb6a52dd2bed867535b4360d6aa92.bin b/common/runtime/cache/72/72fcb6a52dd2bed867535b4360d6aa92.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/72/72fcb6a52dd2bed867535b4360d6aa92.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/73/730252ca9030fa32a80ad54eb5bb4ac2.bin b/common/runtime/cache/73/730252ca9030fa32a80ad54eb5bb4ac2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/73/730252ca9030fa32a80ad54eb5bb4ac2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/73/7311c9da5690bdf6aafb683881c07ee4.bin b/common/runtime/cache/73/7311c9da5690bdf6aafb683881c07ee4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/73/7311c9da5690bdf6aafb683881c07ee4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/73/7315a5e7f630382d3002380dbae3d16e.bin b/common/runtime/cache/73/7315a5e7f630382d3002380dbae3d16e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/73/7315a5e7f630382d3002380dbae3d16e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/73/73673e5134c1aa573d185fd4d909e649.bin b/common/runtime/cache/73/73673e5134c1aa573d185fd4d909e649.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/73/73673e5134c1aa573d185fd4d909e649.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/73/7397524392d90e1b181eb17fc4552734.bin b/common/runtime/cache/73/7397524392d90e1b181eb17fc4552734.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/73/7397524392d90e1b181eb17fc4552734.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/73/7397dc7ce98237bd2cdcbb16bcd33887.bin b/common/runtime/cache/73/7397dc7ce98237bd2cdcbb16bcd33887.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/73/7397dc7ce98237bd2cdcbb16bcd33887.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/73/73ba7dbbf7b575686f7239b138bdb581.bin b/common/runtime/cache/73/73ba7dbbf7b575686f7239b138bdb581.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/73/73ba7dbbf7b575686f7239b138bdb581.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/73/73c31856b982dd5fa198b1a0d6072a35.bin b/common/runtime/cache/73/73c31856b982dd5fa198b1a0d6072a35.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/73/73c31856b982dd5fa198b1a0d6072a35.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/73/73ce54166c2fd7a6b3000418c0964cf9.bin b/common/runtime/cache/73/73ce54166c2fd7a6b3000418c0964cf9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/73/73ce54166c2fd7a6b3000418c0964cf9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/73/73d759c04277c7ef72591a80d8a734d1.bin b/common/runtime/cache/73/73d759c04277c7ef72591a80d8a734d1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/73/73d759c04277c7ef72591a80d8a734d1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/73/73def15a5b65af34f49a37b4e4f4cee7.bin b/common/runtime/cache/73/73def15a5b65af34f49a37b4e4f4cee7.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/73/73def15a5b65af34f49a37b4e4f4cee7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/73/73e69b07a202a506c259772eb79a7ecf.bin b/common/runtime/cache/73/73e69b07a202a506c259772eb79a7ecf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/73/73e69b07a202a506c259772eb79a7ecf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/73/73fff3f6e49c7e208217608038062bca.bin b/common/runtime/cache/73/73fff3f6e49c7e208217608038062bca.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/73/73fff3f6e49c7e208217608038062bca.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/74/740f01ee79a2eef1d3efb9f2bd9344e0.bin b/common/runtime/cache/74/740f01ee79a2eef1d3efb9f2bd9344e0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/74/740f01ee79a2eef1d3efb9f2bd9344e0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/74/741294156217cf52b4322d8bcafd0677.bin b/common/runtime/cache/74/741294156217cf52b4322d8bcafd0677.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/74/741294156217cf52b4322d8bcafd0677.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/74/747037c1b759d49a669c0c4d0d82ca7a.bin b/common/runtime/cache/74/747037c1b759d49a669c0c4d0d82ca7a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/74/747037c1b759d49a669c0c4d0d82ca7a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/74/7472d35221c0998da57d652497a32250.bin b/common/runtime/cache/74/7472d35221c0998da57d652497a32250.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/74/7472d35221c0998da57d652497a32250.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/74/748c6b92e1caf44dbfae94064ae41625.bin b/common/runtime/cache/74/748c6b92e1caf44dbfae94064ae41625.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/74/748c6b92e1caf44dbfae94064ae41625.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/74/749ce9e1229f6942e0f79c29232c55dd.bin b/common/runtime/cache/74/749ce9e1229f6942e0f79c29232c55dd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/74/749ce9e1229f6942e0f79c29232c55dd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/74/74ab3307d11ca6fa5871ecea308e17d5.bin b/common/runtime/cache/74/74ab3307d11ca6fa5871ecea308e17d5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/74/74ab3307d11ca6fa5871ecea308e17d5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/74/74b7688218664fe480897631460f87b9.bin b/common/runtime/cache/74/74b7688218664fe480897631460f87b9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/74/74b7688218664fe480897631460f87b9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/74/74d4f6105809213e631a2b2195cda823.bin b/common/runtime/cache/74/74d4f6105809213e631a2b2195cda823.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/74/74d4f6105809213e631a2b2195cda823.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/74/74ee34ccb6500db679f86db5f0a6fd0b.bin b/common/runtime/cache/74/74ee34ccb6500db679f86db5f0a6fd0b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/74/74ee34ccb6500db679f86db5f0a6fd0b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/75/75265bbb597be06713bb00b873168a0c.bin b/common/runtime/cache/75/75265bbb597be06713bb00b873168a0c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/75/75265bbb597be06713bb00b873168a0c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/75/75741a562b6926499a38f7f00a46a487.bin b/common/runtime/cache/75/75741a562b6926499a38f7f00a46a487.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/75/75741a562b6926499a38f7f00a46a487.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/75/7577897dc0774942888937b8385e58fa.bin b/common/runtime/cache/75/7577897dc0774942888937b8385e58fa.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/75/7577897dc0774942888937b8385e58fa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/75/7581943165cb542d7b2266535941da72.bin b/common/runtime/cache/75/7581943165cb542d7b2266535941da72.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/75/7581943165cb542d7b2266535941da72.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/76/760312a99e0eb89955871c0731c2df62.bin b/common/runtime/cache/76/760312a99e0eb89955871c0731c2df62.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/76/760312a99e0eb89955871c0731c2df62.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/76/762e45c3d365299ba92030ba7601ea66.bin b/common/runtime/cache/76/762e45c3d365299ba92030ba7601ea66.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/76/762e45c3d365299ba92030ba7601ea66.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/76/7639164f088161020e47d5d7c9eb28e6.bin b/common/runtime/cache/76/7639164f088161020e47d5d7c9eb28e6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/76/7639164f088161020e47d5d7c9eb28e6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/76/765106b30bf1078a42ac763bc3f71435.bin b/common/runtime/cache/76/765106b30bf1078a42ac763bc3f71435.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/76/765106b30bf1078a42ac763bc3f71435.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/76/7660a388250cfe70446d36b4ce3e4ebf.bin b/common/runtime/cache/76/7660a388250cfe70446d36b4ce3e4ebf.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/76/7660a388250cfe70446d36b4ce3e4ebf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/76/76b8d979aa7d9e729198c9041f8968ed.bin b/common/runtime/cache/76/76b8d979aa7d9e729198c9041f8968ed.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/76/76b8d979aa7d9e729198c9041f8968ed.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/76/76dc7d34c2507c556c830eb3d1b27ed6.bin b/common/runtime/cache/76/76dc7d34c2507c556c830eb3d1b27ed6.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/76/76dc7d34c2507c556c830eb3d1b27ed6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/76/76efc1cd090e7fd79330ce41d586494d.bin b/common/runtime/cache/76/76efc1cd090e7fd79330ce41d586494d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/76/76efc1cd090e7fd79330ce41d586494d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/77/77051e726b6f2d1daff46a45e61cba84.bin b/common/runtime/cache/77/77051e726b6f2d1daff46a45e61cba84.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/77/77051e726b6f2d1daff46a45e61cba84.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/77/77099f1cce532eea1386fc76170383a9.bin b/common/runtime/cache/77/77099f1cce532eea1386fc76170383a9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/77/77099f1cce532eea1386fc76170383a9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/77/77250a787ffab3b591d3b883b7dfbe96.bin b/common/runtime/cache/77/77250a787ffab3b591d3b883b7dfbe96.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/77/77250a787ffab3b591d3b883b7dfbe96.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/77/77397a3fedfe406c94dbb5239ab637a1.bin b/common/runtime/cache/77/77397a3fedfe406c94dbb5239ab637a1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/77/77397a3fedfe406c94dbb5239ab637a1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/77/774c1790441b9dd75c87cbd7e5bf543e.bin b/common/runtime/cache/77/774c1790441b9dd75c87cbd7e5bf543e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/77/774c1790441b9dd75c87cbd7e5bf543e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/77/776673e0507ab2d96b344e1bfe32338a.bin b/common/runtime/cache/77/776673e0507ab2d96b344e1bfe32338a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/77/776673e0507ab2d96b344e1bfe32338a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/77/7794d057d6809ffc296f1c72fbd38602.bin b/common/runtime/cache/77/7794d057d6809ffc296f1c72fbd38602.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/77/7794d057d6809ffc296f1c72fbd38602.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/77/77a4e55819cacc9a5fde995550d19836.bin b/common/runtime/cache/77/77a4e55819cacc9a5fde995550d19836.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/77/77a4e55819cacc9a5fde995550d19836.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/77/77b7c5c03065cc276e39b1a111496db8.bin b/common/runtime/cache/77/77b7c5c03065cc276e39b1a111496db8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/77/77b7c5c03065cc276e39b1a111496db8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/77/77c2e7cf5da065eedb76b7f10ff50daa.bin b/common/runtime/cache/77/77c2e7cf5da065eedb76b7f10ff50daa.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/77/77c2e7cf5da065eedb76b7f10ff50daa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/78/780081473a8cb5203d23367442e0d1c9.bin b/common/runtime/cache/78/780081473a8cb5203d23367442e0d1c9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/78/780081473a8cb5203d23367442e0d1c9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/78/7828ba13a604d3845fe397577c9a9a2c.bin b/common/runtime/cache/78/7828ba13a604d3845fe397577c9a9a2c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/78/7828ba13a604d3845fe397577c9a9a2c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/78/78380569e766a7536f96fb0cb8ddb91e.bin b/common/runtime/cache/78/78380569e766a7536f96fb0cb8ddb91e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/78/78380569e766a7536f96fb0cb8ddb91e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/78/785346139a1c790eaec859be7e8cf7db.bin b/common/runtime/cache/78/785346139a1c790eaec859be7e8cf7db.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/78/785346139a1c790eaec859be7e8cf7db.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/78/785a889c4c9c4daaf315345baf88f72e.bin b/common/runtime/cache/78/785a889c4c9c4daaf315345baf88f72e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/78/785a889c4c9c4daaf315345baf88f72e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/78/78796c42985ea6642436d0c5a416c33f.bin b/common/runtime/cache/78/78796c42985ea6642436d0c5a416c33f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/78/78796c42985ea6642436d0c5a416c33f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/78/787c72e9efa5b9af6a12fe7c745178b8.bin b/common/runtime/cache/78/787c72e9efa5b9af6a12fe7c745178b8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/78/787c72e9efa5b9af6a12fe7c745178b8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/78/7893c76edac1c37cdc0d2710f486b581.bin b/common/runtime/cache/78/7893c76edac1c37cdc0d2710f486b581.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/78/7893c76edac1c37cdc0d2710f486b581.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/78/789c506de4ab2227c1d552a94c292596.bin b/common/runtime/cache/78/789c506de4ab2227c1d552a94c292596.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/78/789c506de4ab2227c1d552a94c292596.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/78/78b458932c5c6ed1f80d49fffef0ffcd.bin b/common/runtime/cache/78/78b458932c5c6ed1f80d49fffef0ffcd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/78/78b458932c5c6ed1f80d49fffef0ffcd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/78/78f1a2a11d3cca868f1eece76c583183.bin b/common/runtime/cache/78/78f1a2a11d3cca868f1eece76c583183.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/78/78f1a2a11d3cca868f1eece76c583183.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/79/7902418b4ee2a97175f54170ad64898b.bin b/common/runtime/cache/79/7902418b4ee2a97175f54170ad64898b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/79/7902418b4ee2a97175f54170ad64898b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/79/790431835a997ca3183f9469d1d3f8a2.bin b/common/runtime/cache/79/790431835a997ca3183f9469d1d3f8a2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/79/790431835a997ca3183f9469d1d3f8a2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/79/790ba126f37b205412935076a485f53c.bin b/common/runtime/cache/79/790ba126f37b205412935076a485f53c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/79/790ba126f37b205412935076a485f53c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/79/79522ec1861d8a424260a5d7bdf21202.bin b/common/runtime/cache/79/79522ec1861d8a424260a5d7bdf21202.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/79/79522ec1861d8a424260a5d7bdf21202.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/79/7957d4ddf2d0805b293628b039959890.bin b/common/runtime/cache/79/7957d4ddf2d0805b293628b039959890.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/79/7957d4ddf2d0805b293628b039959890.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/79/7960daf3f60a4b872fc85cf9e7a779ac.bin b/common/runtime/cache/79/7960daf3f60a4b872fc85cf9e7a779ac.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/79/7960daf3f60a4b872fc85cf9e7a779ac.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/79/7966dc8691bbdd802c55978d39a88b80.bin b/common/runtime/cache/79/7966dc8691bbdd802c55978d39a88b80.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/79/7966dc8691bbdd802c55978d39a88b80.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/79/798e7e791571233fa7b2ff5fd000278e.bin b/common/runtime/cache/79/798e7e791571233fa7b2ff5fd000278e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/79/798e7e791571233fa7b2ff5fd000278e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/79/79abd53440bb61fed5205047b331d9eb.bin b/common/runtime/cache/79/79abd53440bb61fed5205047b331d9eb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/79/79abd53440bb61fed5205047b331d9eb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/79/79abdb98bb1f353906a3e5463a4d2438.bin b/common/runtime/cache/79/79abdb98bb1f353906a3e5463a4d2438.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/79/79abdb98bb1f353906a3e5463a4d2438.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/79/79b4094712a5949de8056608164b6937.bin b/common/runtime/cache/79/79b4094712a5949de8056608164b6937.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/79/79b4094712a5949de8056608164b6937.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/79/79b7218fb89233bcbd777093021fe18e.bin b/common/runtime/cache/79/79b7218fb89233bcbd777093021fe18e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/79/79b7218fb89233bcbd777093021fe18e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/79/79b7da24b5ca59884b4d9aed6b215321.bin b/common/runtime/cache/79/79b7da24b5ca59884b4d9aed6b215321.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/79/79b7da24b5ca59884b4d9aed6b215321.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/79/79cc96f517ca449fd4d72cf39a87b039.bin b/common/runtime/cache/79/79cc96f517ca449fd4d72cf39a87b039.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/79/79cc96f517ca449fd4d72cf39a87b039.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/79/79e3f8414c5133429b5260eb119c03c7.bin b/common/runtime/cache/79/79e3f8414c5133429b5260eb119c03c7.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/79/79e3f8414c5133429b5260eb119c03c7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/79/79eb4933ed5e0cd2622955e8c48652a5.bin b/common/runtime/cache/79/79eb4933ed5e0cd2622955e8c48652a5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/79/79eb4933ed5e0cd2622955e8c48652a5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/79/79f00b1771d547a953499256e1fec4bb.bin b/common/runtime/cache/79/79f00b1771d547a953499256e1fec4bb.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/79/79f00b1771d547a953499256e1fec4bb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7a/7a119f541e0eeff087a94687c393a7bc.bin b/common/runtime/cache/7a/7a119f541e0eeff087a94687c393a7bc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7a/7a119f541e0eeff087a94687c393a7bc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7a/7a1e7b31c1c95ddae3caa54aa59e411d.bin b/common/runtime/cache/7a/7a1e7b31c1c95ddae3caa54aa59e411d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7a/7a1e7b31c1c95ddae3caa54aa59e411d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7a/7a29f46774dfe2798a02c379ed6427ca.bin b/common/runtime/cache/7a/7a29f46774dfe2798a02c379ed6427ca.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7a/7a29f46774dfe2798a02c379ed6427ca.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7a/7a5cc8f8dd859eaa66ed8e9e1aa2078c.bin b/common/runtime/cache/7a/7a5cc8f8dd859eaa66ed8e9e1aa2078c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/7a/7a5cc8f8dd859eaa66ed8e9e1aa2078c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7a/7a643b5ebf4b6baf6fcc4bd9567efe0b.bin b/common/runtime/cache/7a/7a643b5ebf4b6baf6fcc4bd9567efe0b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7a/7a643b5ebf4b6baf6fcc4bd9567efe0b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7a/7a75f1b1f13004a268253ab04bb59795.bin b/common/runtime/cache/7a/7a75f1b1f13004a268253ab04bb59795.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/7a/7a75f1b1f13004a268253ab04bb59795.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7a/7ae209f44f5584f5eea1cdf1f1a6a994.bin b/common/runtime/cache/7a/7ae209f44f5584f5eea1cdf1f1a6a994.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7a/7ae209f44f5584f5eea1cdf1f1a6a994.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7a/7ae39645c6469d6cc9e2237a6c2b06b5.bin b/common/runtime/cache/7a/7ae39645c6469d6cc9e2237a6c2b06b5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7a/7ae39645c6469d6cc9e2237a6c2b06b5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7a/7aef3868ef03716630787d86ae08941b.bin b/common/runtime/cache/7a/7aef3868ef03716630787d86ae08941b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/7a/7aef3868ef03716630787d86ae08941b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7a/7af2ef2c7d8be259176d20202a1f6c34.bin b/common/runtime/cache/7a/7af2ef2c7d8be259176d20202a1f6c34.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7a/7af2ef2c7d8be259176d20202a1f6c34.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7b/7b16d229e5b6e8ac191a1af3f8dcee70.bin b/common/runtime/cache/7b/7b16d229e5b6e8ac191a1af3f8dcee70.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7b/7b16d229e5b6e8ac191a1af3f8dcee70.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7b/7b2ab31cf75e18d04341ab5df2dc0679.bin b/common/runtime/cache/7b/7b2ab31cf75e18d04341ab5df2dc0679.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7b/7b2ab31cf75e18d04341ab5df2dc0679.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7b/7b3f8d667e27e7d3266bf3803306c0ab.bin b/common/runtime/cache/7b/7b3f8d667e27e7d3266bf3803306c0ab.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/7b/7b3f8d667e27e7d3266bf3803306c0ab.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7b/7b93d631d6a5a6a98197153ea650d58a.bin b/common/runtime/cache/7b/7b93d631d6a5a6a98197153ea650d58a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7b/7b93d631d6a5a6a98197153ea650d58a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7b/7b96aa81cc3942364d10a8961f62b431.bin b/common/runtime/cache/7b/7b96aa81cc3942364d10a8961f62b431.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7b/7b96aa81cc3942364d10a8961f62b431.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7b/7b9ea60dc352931e80ad32ac424a898e.bin b/common/runtime/cache/7b/7b9ea60dc352931e80ad32ac424a898e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7b/7b9ea60dc352931e80ad32ac424a898e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7b/7be6dbadb2b6e04809022b468dc6ec59.bin b/common/runtime/cache/7b/7be6dbadb2b6e04809022b468dc6ec59.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/7b/7be6dbadb2b6e04809022b468dc6ec59.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7b/7beb93e5425b4e52dac755324f27c332.bin b/common/runtime/cache/7b/7beb93e5425b4e52dac755324f27c332.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7b/7beb93e5425b4e52dac755324f27c332.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7b/7bf1770b2fc11252d1e69eb235d1ac91.bin b/common/runtime/cache/7b/7bf1770b2fc11252d1e69eb235d1ac91.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/7b/7bf1770b2fc11252d1e69eb235d1ac91.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7b/7bf4ff2a3ba6332de96ef987134c65e9.bin b/common/runtime/cache/7b/7bf4ff2a3ba6332de96ef987134c65e9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7b/7bf4ff2a3ba6332de96ef987134c65e9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7b/7bfded6636ec119bf0bce7824653bb73.bin b/common/runtime/cache/7b/7bfded6636ec119bf0bce7824653bb73.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7b/7bfded6636ec119bf0bce7824653bb73.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7c/7c2d20a0640d59260d115eccf21deb48.bin b/common/runtime/cache/7c/7c2d20a0640d59260d115eccf21deb48.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7c/7c2d20a0640d59260d115eccf21deb48.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7c/7c32f6e91c0c94fc4936875a66571ba4.bin b/common/runtime/cache/7c/7c32f6e91c0c94fc4936875a66571ba4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/7c/7c32f6e91c0c94fc4936875a66571ba4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7c/7c3b5cbdfcb0667be0a1124c365a2b62.bin b/common/runtime/cache/7c/7c3b5cbdfcb0667be0a1124c365a2b62.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7c/7c3b5cbdfcb0667be0a1124c365a2b62.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7c/7c438f5a814ae81864d3884fe5007d9f.bin b/common/runtime/cache/7c/7c438f5a814ae81864d3884fe5007d9f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7c/7c438f5a814ae81864d3884fe5007d9f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7c/7c4447188114b6318ddb4d92d2d1e009.bin b/common/runtime/cache/7c/7c4447188114b6318ddb4d92d2d1e009.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/7c/7c4447188114b6318ddb4d92d2d1e009.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7c/7c44b4f5734600844e4df42e6fb94c65.bin b/common/runtime/cache/7c/7c44b4f5734600844e4df42e6fb94c65.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7c/7c44b4f5734600844e4df42e6fb94c65.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7c/7c55ab33419b02881579ecab9aea28b1.bin b/common/runtime/cache/7c/7c55ab33419b02881579ecab9aea28b1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/7c/7c55ab33419b02881579ecab9aea28b1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7c/7c667dd0e0f20efc8524e00c00846035.bin b/common/runtime/cache/7c/7c667dd0e0f20efc8524e00c00846035.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/7c/7c667dd0e0f20efc8524e00c00846035.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7c/7c8ce614d579c60f6688001ee51407f5.bin b/common/runtime/cache/7c/7c8ce614d579c60f6688001ee51407f5.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/7c/7c8ce614d579c60f6688001ee51407f5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7c/7c94da55cea0f58be55f0dd2387f364a.bin b/common/runtime/cache/7c/7c94da55cea0f58be55f0dd2387f364a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/7c/7c94da55cea0f58be55f0dd2387f364a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7c/7cac4fff5323094ef07ec203959d3d00.bin b/common/runtime/cache/7c/7cac4fff5323094ef07ec203959d3d00.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7c/7cac4fff5323094ef07ec203959d3d00.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7c/7cd6d485077c39c7279c16a1ea828dd6.bin b/common/runtime/cache/7c/7cd6d485077c39c7279c16a1ea828dd6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7c/7cd6d485077c39c7279c16a1ea828dd6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7c/7cef02c5ccd23f2c578f8b29fc719734.bin b/common/runtime/cache/7c/7cef02c5ccd23f2c578f8b29fc719734.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7c/7cef02c5ccd23f2c578f8b29fc719734.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7c/7cfe5399a84363f60e139da03b8cb722.bin b/common/runtime/cache/7c/7cfe5399a84363f60e139da03b8cb722.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7c/7cfe5399a84363f60e139da03b8cb722.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7d/7d054864d7363ce3b6b489a25705ec54.bin b/common/runtime/cache/7d/7d054864d7363ce3b6b489a25705ec54.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7d/7d054864d7363ce3b6b489a25705ec54.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7d/7d169b4359d3d931307366b89dba263a.bin b/common/runtime/cache/7d/7d169b4359d3d931307366b89dba263a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7d/7d169b4359d3d931307366b89dba263a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7d/7d4003cd2048497759821490a862d1d1.bin b/common/runtime/cache/7d/7d4003cd2048497759821490a862d1d1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7d/7d4003cd2048497759821490a862d1d1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7d/7d72ad0e8efd92ce3499e0a6a6ab29c7.bin b/common/runtime/cache/7d/7d72ad0e8efd92ce3499e0a6a6ab29c7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7d/7d72ad0e8efd92ce3499e0a6a6ab29c7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7d/7d7ee63305d10b27bf88a28ded575559.bin b/common/runtime/cache/7d/7d7ee63305d10b27bf88a28ded575559.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7d/7d7ee63305d10b27bf88a28ded575559.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7d/7dd3daa9f21cb300fa10c91de42d0399.bin b/common/runtime/cache/7d/7dd3daa9f21cb300fa10c91de42d0399.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/7d/7dd3daa9f21cb300fa10c91de42d0399.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7d/7def1ad48d245ca5d75934c262b22bba.bin b/common/runtime/cache/7d/7def1ad48d245ca5d75934c262b22bba.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7d/7def1ad48d245ca5d75934c262b22bba.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7d/7df202a21638e9f9cb21f5370284fe29.bin b/common/runtime/cache/7d/7df202a21638e9f9cb21f5370284fe29.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7d/7df202a21638e9f9cb21f5370284fe29.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7d/7dff48a83cf7a4ae401345cf6a9b07a9.bin b/common/runtime/cache/7d/7dff48a83cf7a4ae401345cf6a9b07a9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7d/7dff48a83cf7a4ae401345cf6a9b07a9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7e/7e182b18cb7679f134433f49406265c5.bin b/common/runtime/cache/7e/7e182b18cb7679f134433f49406265c5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7e/7e182b18cb7679f134433f49406265c5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7e/7e309ae125855fecd2d37ee716c5145b.bin b/common/runtime/cache/7e/7e309ae125855fecd2d37ee716c5145b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/7e/7e309ae125855fecd2d37ee716c5145b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7e/7e3d1eb0d615e3b06343717e35386dfa.bin b/common/runtime/cache/7e/7e3d1eb0d615e3b06343717e35386dfa.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7e/7e3d1eb0d615e3b06343717e35386dfa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7e/7e4e9d730e12704353837b86a566abe9.bin b/common/runtime/cache/7e/7e4e9d730e12704353837b86a566abe9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/7e/7e4e9d730e12704353837b86a566abe9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7e/7e636ac5d3bdd9042bce66d377727b5c.bin b/common/runtime/cache/7e/7e636ac5d3bdd9042bce66d377727b5c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7e/7e636ac5d3bdd9042bce66d377727b5c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7e/7e63c79e0556c6965925cb95909af7e6.bin b/common/runtime/cache/7e/7e63c79e0556c6965925cb95909af7e6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7e/7e63c79e0556c6965925cb95909af7e6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7e/7e71e64229bb875f84d03b6510258e78.bin b/common/runtime/cache/7e/7e71e64229bb875f84d03b6510258e78.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7e/7e71e64229bb875f84d03b6510258e78.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7e/7e7a3994ea428e74efd795a6e25c2429.bin b/common/runtime/cache/7e/7e7a3994ea428e74efd795a6e25c2429.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7e/7e7a3994ea428e74efd795a6e25c2429.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7e/7e822edc8aa7150b4e4c9728f6309fbc.bin b/common/runtime/cache/7e/7e822edc8aa7150b4e4c9728f6309fbc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7e/7e822edc8aa7150b4e4c9728f6309fbc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7e/7e8e167e8246808aa3a2d64744dab6ff.bin b/common/runtime/cache/7e/7e8e167e8246808aa3a2d64744dab6ff.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7e/7e8e167e8246808aa3a2d64744dab6ff.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7e/7ed74fd58bae44a33516ef54e5a822ef.bin b/common/runtime/cache/7e/7ed74fd58bae44a33516ef54e5a822ef.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7e/7ed74fd58bae44a33516ef54e5a822ef.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7e/7ee4b5b55a0d428699b38eea61d39c9b.bin b/common/runtime/cache/7e/7ee4b5b55a0d428699b38eea61d39c9b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7e/7ee4b5b55a0d428699b38eea61d39c9b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7e/7efb32ec8e293d887f6ca120fa5eee56.bin b/common/runtime/cache/7e/7efb32ec8e293d887f6ca120fa5eee56.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7e/7efb32ec8e293d887f6ca120fa5eee56.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7f/7f17716568ab9e870c74263898343d53.bin b/common/runtime/cache/7f/7f17716568ab9e870c74263898343d53.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7f/7f17716568ab9e870c74263898343d53.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7f/7f382a22f41499cd32c4eb14a6b51cd1.bin b/common/runtime/cache/7f/7f382a22f41499cd32c4eb14a6b51cd1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7f/7f382a22f41499cd32c4eb14a6b51cd1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7f/7f3947e1fc968179a52852ba39f6f140.bin b/common/runtime/cache/7f/7f3947e1fc968179a52852ba39f6f140.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7f/7f3947e1fc968179a52852ba39f6f140.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7f/7f7730201b7b0198987fb2ecaa36167a.bin b/common/runtime/cache/7f/7f7730201b7b0198987fb2ecaa36167a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7f/7f7730201b7b0198987fb2ecaa36167a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7f/7f86211e8298d69f068f51b858d95f5e.bin b/common/runtime/cache/7f/7f86211e8298d69f068f51b858d95f5e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/7f/7f86211e8298d69f068f51b858d95f5e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7f/7f95dc6b5bf1999b83f9f6f99ce8d047.bin b/common/runtime/cache/7f/7f95dc6b5bf1999b83f9f6f99ce8d047.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7f/7f95dc6b5bf1999b83f9f6f99ce8d047.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7f/7f968ac4e29465b607a2b406997cac4c.bin b/common/runtime/cache/7f/7f968ac4e29465b607a2b406997cac4c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7f/7f968ac4e29465b607a2b406997cac4c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7f/7fc2bcb9f3c83ed6e23feb005d75fe2b.bin b/common/runtime/cache/7f/7fc2bcb9f3c83ed6e23feb005d75fe2b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/7f/7fc2bcb9f3c83ed6e23feb005d75fe2b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/7f/7fd97e509515ec0e99fa467c03d8db63.bin b/common/runtime/cache/7f/7fd97e509515ec0e99fa467c03d8db63.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/7f/7fd97e509515ec0e99fa467c03d8db63.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/80/80137a4b9215c936b9e3538ca0131714.bin b/common/runtime/cache/80/80137a4b9215c936b9e3538ca0131714.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/80/80137a4b9215c936b9e3538ca0131714.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/80/80217f8a247d10b2f6a08c37528a264d.bin b/common/runtime/cache/80/80217f8a247d10b2f6a08c37528a264d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/80/80217f8a247d10b2f6a08c37528a264d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/80/80271b35d58f8710d031213e3fde5e61.bin b/common/runtime/cache/80/80271b35d58f8710d031213e3fde5e61.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/80/80271b35d58f8710d031213e3fde5e61.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/80/802bfe633a015e4af8196ad4aa4d8c31.bin b/common/runtime/cache/80/802bfe633a015e4af8196ad4aa4d8c31.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/80/802bfe633a015e4af8196ad4aa4d8c31.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/80/802eca6d5d8835f8d8b9aaeafdd6789a.bin b/common/runtime/cache/80/802eca6d5d8835f8d8b9aaeafdd6789a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/80/802eca6d5d8835f8d8b9aaeafdd6789a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/80/8058e967dbfa56ecbbba33e9751cf456.bin b/common/runtime/cache/80/8058e967dbfa56ecbbba33e9751cf456.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/80/8058e967dbfa56ecbbba33e9751cf456.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/80/8063fe2f8d07761f82029256a1925011.bin b/common/runtime/cache/80/8063fe2f8d07761f82029256a1925011.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/80/8063fe2f8d07761f82029256a1925011.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/80/806b0dea8be6c8c9ca492c4c4d583480.bin b/common/runtime/cache/80/806b0dea8be6c8c9ca492c4c4d583480.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/80/806b0dea8be6c8c9ca492c4c4d583480.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/80/806ceedc6050d79cad10ada777975bdb.bin b/common/runtime/cache/80/806ceedc6050d79cad10ada777975bdb.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/80/806ceedc6050d79cad10ada777975bdb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/80/8071d4fe2227daff91ec3fb5eb224385.bin b/common/runtime/cache/80/8071d4fe2227daff91ec3fb5eb224385.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/80/8071d4fe2227daff91ec3fb5eb224385.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/80/808317813f3f4c775934ec864d1abfc4.bin b/common/runtime/cache/80/808317813f3f4c775934ec864d1abfc4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/80/808317813f3f4c775934ec864d1abfc4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/80/8093eca5020a899c01aa6538f616a6ca.bin b/common/runtime/cache/80/8093eca5020a899c01aa6538f616a6ca.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/80/8093eca5020a899c01aa6538f616a6ca.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/80/809619068be3cd1b1d48d6d3a3833b2f.bin b/common/runtime/cache/80/809619068be3cd1b1d48d6d3a3833b2f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/80/809619068be3cd1b1d48d6d3a3833b2f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/80/80b2137baab27905e0d086a6d67c53f8.bin b/common/runtime/cache/80/80b2137baab27905e0d086a6d67c53f8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/80/80b2137baab27905e0d086a6d67c53f8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/80/80e85679616f4fe5a70fe2693e0823af.bin b/common/runtime/cache/80/80e85679616f4fe5a70fe2693e0823af.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/80/80e85679616f4fe5a70fe2693e0823af.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/80/80ec0679330be8c756f101824da4f7f0.bin b/common/runtime/cache/80/80ec0679330be8c756f101824da4f7f0.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/80/80ec0679330be8c756f101824da4f7f0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/81/810215018f5cc3fc93561d5d054e6f4e.bin b/common/runtime/cache/81/810215018f5cc3fc93561d5d054e6f4e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/81/810215018f5cc3fc93561d5d054e6f4e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/81/811b037bcb65adc8ce33c37436d61433.bin b/common/runtime/cache/81/811b037bcb65adc8ce33c37436d61433.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/81/811b037bcb65adc8ce33c37436d61433.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/81/81391f20dcbdcc7941f5b89c086b6d11.bin b/common/runtime/cache/81/81391f20dcbdcc7941f5b89c086b6d11.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/81/81391f20dcbdcc7941f5b89c086b6d11.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/81/8168bfbb02ac942e941159e09e6b8011.bin b/common/runtime/cache/81/8168bfbb02ac942e941159e09e6b8011.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/81/8168bfbb02ac942e941159e09e6b8011.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/81/8175fe89ba38f06240bd3a5ea4e0f03e.bin b/common/runtime/cache/81/8175fe89ba38f06240bd3a5ea4e0f03e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/81/8175fe89ba38f06240bd3a5ea4e0f03e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/81/818409bc1ab870a16bd69281fbeccf2d.bin b/common/runtime/cache/81/818409bc1ab870a16bd69281fbeccf2d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/81/818409bc1ab870a16bd69281fbeccf2d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/81/81b504ba732fed033202520803f823fb.bin b/common/runtime/cache/81/81b504ba732fed033202520803f823fb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/81/81b504ba732fed033202520803f823fb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/81/81bb876711b84717b8f42e12634b683a.bin b/common/runtime/cache/81/81bb876711b84717b8f42e12634b683a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/81/81bb876711b84717b8f42e12634b683a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/81/81cf5ce270629233f7826f18f8d4940d.bin b/common/runtime/cache/81/81cf5ce270629233f7826f18f8d4940d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/81/81cf5ce270629233f7826f18f8d4940d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/81/81dd55fec079946ba23e7bd349f5e87c.bin b/common/runtime/cache/81/81dd55fec079946ba23e7bd349f5e87c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/81/81dd55fec079946ba23e7bd349f5e87c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/81/81ef039977e124d7d91b068734b440ad.bin b/common/runtime/cache/81/81ef039977e124d7d91b068734b440ad.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/81/81ef039977e124d7d91b068734b440ad.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/81/81f3375f86fe469bde66f88d8d56c62a.bin b/common/runtime/cache/81/81f3375f86fe469bde66f88d8d56c62a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/81/81f3375f86fe469bde66f88d8d56c62a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/81/81faacfe7487b76e47a9ae4f9a34f0c1.bin b/common/runtime/cache/81/81faacfe7487b76e47a9ae4f9a34f0c1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/81/81faacfe7487b76e47a9ae4f9a34f0c1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/81/81fd2a6e64a3eeac48c8d581363c3fd5.bin b/common/runtime/cache/81/81fd2a6e64a3eeac48c8d581363c3fd5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/81/81fd2a6e64a3eeac48c8d581363c3fd5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/82/820268c892be719fa2dc607253e6db36.bin b/common/runtime/cache/82/820268c892be719fa2dc607253e6db36.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/82/820268c892be719fa2dc607253e6db36.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/82/820fdb209260dedc1ec4f4b61c4a85f6.bin b/common/runtime/cache/82/820fdb209260dedc1ec4f4b61c4a85f6.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/82/820fdb209260dedc1ec4f4b61c4a85f6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/82/821ee91b402fc62a60513a7e02dea493.bin b/common/runtime/cache/82/821ee91b402fc62a60513a7e02dea493.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/82/821ee91b402fc62a60513a7e02dea493.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/82/8222d6e47c0aa9a740b598dc7268cb64.bin b/common/runtime/cache/82/8222d6e47c0aa9a740b598dc7268cb64.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/82/8222d6e47c0aa9a740b598dc7268cb64.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/82/8236deadb5a3ed499f8a6072fe9a872d.bin b/common/runtime/cache/82/8236deadb5a3ed499f8a6072fe9a872d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/82/8236deadb5a3ed499f8a6072fe9a872d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/82/825a675e41aab67c4eaed16bd517487a.bin b/common/runtime/cache/82/825a675e41aab67c4eaed16bd517487a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/82/825a675e41aab67c4eaed16bd517487a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/82/82825020d6a241d203abb01c57477466.bin b/common/runtime/cache/82/82825020d6a241d203abb01c57477466.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/82/82825020d6a241d203abb01c57477466.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/82/8289e36db4f83177448386bdb25dfc0c.bin b/common/runtime/cache/82/8289e36db4f83177448386bdb25dfc0c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/82/8289e36db4f83177448386bdb25dfc0c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/82/82a2f7974b38ee650efe11d202ef83e0.bin b/common/runtime/cache/82/82a2f7974b38ee650efe11d202ef83e0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/82/82a2f7974b38ee650efe11d202ef83e0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/82/82a7d670e2ee865abcaed0c5e441f285.bin b/common/runtime/cache/82/82a7d670e2ee865abcaed0c5e441f285.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/82/82a7d670e2ee865abcaed0c5e441f285.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/82/82bc3327f0d525e24c1ee612387b9593.bin b/common/runtime/cache/82/82bc3327f0d525e24c1ee612387b9593.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/82/82bc3327f0d525e24c1ee612387b9593.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/82/82c5313e5201c896b0cd862dcb1056b6.bin b/common/runtime/cache/82/82c5313e5201c896b0cd862dcb1056b6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/82/82c5313e5201c896b0cd862dcb1056b6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/82/82e3bba48f2afdd75fbc63437b703e5a.bin b/common/runtime/cache/82/82e3bba48f2afdd75fbc63437b703e5a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/82/82e3bba48f2afdd75fbc63437b703e5a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/82/82e69fbbeee407344492297d0ee9d37a.bin b/common/runtime/cache/82/82e69fbbeee407344492297d0ee9d37a.bin new file mode 100644 index 0000000..2defa47 --- /dev/null +++ b/common/runtime/cache/82/82e69fbbeee407344492297d0ee9d37a.bin @@ -0,0 +1 @@ +a:2:{i:0;s:24:"post/category/news/sport";i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/82/82f68df7a3b1b7bd5bb71842e4cfbfbd.bin b/common/runtime/cache/82/82f68df7a3b1b7bd5bb71842e4cfbfbd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/82/82f68df7a3b1b7bd5bb71842e4cfbfbd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/83/8328f6a96b7a435d04dadd01ae224071.bin b/common/runtime/cache/83/8328f6a96b7a435d04dadd01ae224071.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/83/8328f6a96b7a435d04dadd01ae224071.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/83/83335f0aa5c524894ded5660737ba7f5.bin b/common/runtime/cache/83/83335f0aa5c524894ded5660737ba7f5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/83/83335f0aa5c524894ded5660737ba7f5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/83/83352ffa0fc1274fe31fcb0a5b670d55.bin b/common/runtime/cache/83/83352ffa0fc1274fe31fcb0a5b670d55.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/83/83352ffa0fc1274fe31fcb0a5b670d55.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/83/8337631fda1151d1760e015b60d943af.bin b/common/runtime/cache/83/8337631fda1151d1760e015b60d943af.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/83/8337631fda1151d1760e015b60d943af.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/83/834aa587064fe542adff0c475291cfdb.bin b/common/runtime/cache/83/834aa587064fe542adff0c475291cfdb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/83/834aa587064fe542adff0c475291cfdb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/83/8361fd889fd03f57369826bde60e1d13.bin b/common/runtime/cache/83/8361fd889fd03f57369826bde60e1d13.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/83/8361fd889fd03f57369826bde60e1d13.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/83/83647435d4b4af88debc5d079e4a0866.bin b/common/runtime/cache/83/83647435d4b4af88debc5d079e4a0866.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/83/83647435d4b4af88debc5d079e4a0866.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/83/838ca1e317c9ee27703b6b64b6c17fc2.bin b/common/runtime/cache/83/838ca1e317c9ee27703b6b64b6c17fc2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/83/838ca1e317c9ee27703b6b64b6c17fc2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/83/838e1611b42a9bc4812b3860c3aa9962.bin b/common/runtime/cache/83/838e1611b42a9bc4812b3860c3aa9962.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/83/838e1611b42a9bc4812b3860c3aa9962.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/83/8391a4483cd5486c5cf1101902c78ce2.bin b/common/runtime/cache/83/8391a4483cd5486c5cf1101902c78ce2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/83/8391a4483cd5486c5cf1101902c78ce2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/83/8393e4eaf11ff508ca373e89fbbe73a0.bin b/common/runtime/cache/83/8393e4eaf11ff508ca373e89fbbe73a0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/83/8393e4eaf11ff508ca373e89fbbe73a0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/83/83a24b2cf69e734efd0d291f75f61cf1.bin b/common/runtime/cache/83/83a24b2cf69e734efd0d291f75f61cf1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/83/83a24b2cf69e734efd0d291f75f61cf1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/83/83c5109d594e3a3094104b2eb689765d.bin b/common/runtime/cache/83/83c5109d594e3a3094104b2eb689765d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/83/83c5109d594e3a3094104b2eb689765d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/83/83cb2e640ec129f2893697ad3e73c5c4.bin b/common/runtime/cache/83/83cb2e640ec129f2893697ad3e73c5c4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/83/83cb2e640ec129f2893697ad3e73c5c4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/84/841b8d9d204bf8f7861cababe98303c7.bin b/common/runtime/cache/84/841b8d9d204bf8f7861cababe98303c7.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/84/841b8d9d204bf8f7861cababe98303c7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/84/8421f685b0cf38ad177bcd18de774d42.bin b/common/runtime/cache/84/8421f685b0cf38ad177bcd18de774d42.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/84/8421f685b0cf38ad177bcd18de774d42.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/84/8425ddf6cee9a7a5b2b0fa44bf679278.bin b/common/runtime/cache/84/8425ddf6cee9a7a5b2b0fa44bf679278.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/84/8425ddf6cee9a7a5b2b0fa44bf679278.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/84/84903deacc2065bf0d6f51df93eb7105.bin b/common/runtime/cache/84/84903deacc2065bf0d6f51df93eb7105.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/84/84903deacc2065bf0d6f51df93eb7105.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/84/84b995323ddd9c9a7fc5bfe524452b66.bin b/common/runtime/cache/84/84b995323ddd9c9a7fc5bfe524452b66.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/84/84b995323ddd9c9a7fc5bfe524452b66.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/84/84c4bcbb60f461f6eea5ad79f1ee8a9b.bin b/common/runtime/cache/84/84c4bcbb60f461f6eea5ad79f1ee8a9b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/84/84c4bcbb60f461f6eea5ad79f1ee8a9b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/84/84d6253a28873bf08aba04eaa19e706d.bin b/common/runtime/cache/84/84d6253a28873bf08aba04eaa19e706d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/84/84d6253a28873bf08aba04eaa19e706d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/84/84f2f46cf1f1af2829b7dc419e5ae6d1.bin b/common/runtime/cache/84/84f2f46cf1f1af2829b7dc419e5ae6d1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/84/84f2f46cf1f1af2829b7dc419e5ae6d1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/85/854270dfa4ed0c0984744967f3f2af1a.bin b/common/runtime/cache/85/854270dfa4ed0c0984744967f3f2af1a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/85/854270dfa4ed0c0984744967f3f2af1a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/85/85470130e7c9e19b279e46cb2542a4e3.bin b/common/runtime/cache/85/85470130e7c9e19b279e46cb2542a4e3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/85/85470130e7c9e19b279e46cb2542a4e3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/85/85571e67ddaf33112d95bc5c350116b8.bin b/common/runtime/cache/85/85571e67ddaf33112d95bc5c350116b8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/85/85571e67ddaf33112d95bc5c350116b8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/85/8578c536e684806050ded42994f2580a.bin b/common/runtime/cache/85/8578c536e684806050ded42994f2580a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/85/8578c536e684806050ded42994f2580a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/85/857a686c563ddeb4b461b3be0dd28792.bin b/common/runtime/cache/85/857a686c563ddeb4b461b3be0dd28792.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/85/857a686c563ddeb4b461b3be0dd28792.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/85/859b0bcb677132952deb72c23cfd8f84.bin b/common/runtime/cache/85/859b0bcb677132952deb72c23cfd8f84.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/85/859b0bcb677132952deb72c23cfd8f84.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/85/85be064be3c315f06c2843ece95f6f8a.bin b/common/runtime/cache/85/85be064be3c315f06c2843ece95f6f8a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/85/85be064be3c315f06c2843ece95f6f8a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/85/85d692126a6ccc065b197de3d6cd953e.bin b/common/runtime/cache/85/85d692126a6ccc065b197de3d6cd953e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/85/85d692126a6ccc065b197de3d6cd953e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/85/85e10ae10c27139c60885c17193719a5.bin b/common/runtime/cache/85/85e10ae10c27139c60885c17193719a5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/85/85e10ae10c27139c60885c17193719a5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/85/85eb9597093d29d702fe67e3c69d408a.bin b/common/runtime/cache/85/85eb9597093d29d702fe67e3c69d408a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/85/85eb9597093d29d702fe67e3c69d408a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/86/860f48f14cdc8c0374a35239ee0dcbde.bin b/common/runtime/cache/86/860f48f14cdc8c0374a35239ee0dcbde.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/86/860f48f14cdc8c0374a35239ee0dcbde.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/86/8625bd6a1416ed87698dd0e93f7b3b1a.bin b/common/runtime/cache/86/8625bd6a1416ed87698dd0e93f7b3b1a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/86/8625bd6a1416ed87698dd0e93f7b3b1a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/86/8632a227a8e42dffb07ae5d26a9e68f1.bin b/common/runtime/cache/86/8632a227a8e42dffb07ae5d26a9e68f1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/86/8632a227a8e42dffb07ae5d26a9e68f1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/86/8679d9957c7bb3f09be1d7b168e313a4.bin b/common/runtime/cache/86/8679d9957c7bb3f09be1d7b168e313a4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/86/8679d9957c7bb3f09be1d7b168e313a4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/86/867ddb8eac697d9c705d8b735c17f18b.bin b/common/runtime/cache/86/867ddb8eac697d9c705d8b735c17f18b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/86/867ddb8eac697d9c705d8b735c17f18b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/86/868111662916e86ea3776aad00699202.bin b/common/runtime/cache/86/868111662916e86ea3776aad00699202.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/86/868111662916e86ea3776aad00699202.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/86/869385150ff1b91d084bee26f0a91f9f.bin b/common/runtime/cache/86/869385150ff1b91d084bee26f0a91f9f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/86/869385150ff1b91d084bee26f0a91f9f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/86/86acec31a29c25df8fbb61046f70108b.bin b/common/runtime/cache/86/86acec31a29c25df8fbb61046f70108b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/86/86acec31a29c25df8fbb61046f70108b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/86/86b2cde297b63fede382952aad5e8eaa.bin b/common/runtime/cache/86/86b2cde297b63fede382952aad5e8eaa.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/86/86b2cde297b63fede382952aad5e8eaa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/86/86b710f2e1cf15a37be575488caaa514.bin b/common/runtime/cache/86/86b710f2e1cf15a37be575488caaa514.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/86/86b710f2e1cf15a37be575488caaa514.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/86/86e6515df31e3bf74e5d333877473cb1.bin b/common/runtime/cache/86/86e6515df31e3bf74e5d333877473cb1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/86/86e6515df31e3bf74e5d333877473cb1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/87/87039bed65b2c029004af19cb76a27b4.bin b/common/runtime/cache/87/87039bed65b2c029004af19cb76a27b4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/87/87039bed65b2c029004af19cb76a27b4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/87/8715a3b4dca03ad22de61495464eeb18.bin b/common/runtime/cache/87/8715a3b4dca03ad22de61495464eeb18.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/87/8715a3b4dca03ad22de61495464eeb18.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/87/872b28949be79bd6fea835e1c33e460d.bin b/common/runtime/cache/87/872b28949be79bd6fea835e1c33e460d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/87/872b28949be79bd6fea835e1c33e460d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/87/873065ba44447324eee9647fec39b3ea.bin b/common/runtime/cache/87/873065ba44447324eee9647fec39b3ea.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/87/873065ba44447324eee9647fec39b3ea.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/87/87508d36d2f53517a8b2a9d9aec65654.bin b/common/runtime/cache/87/87508d36d2f53517a8b2a9d9aec65654.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/87/87508d36d2f53517a8b2a9d9aec65654.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/87/8764a5b1ae26b43593782c45049d4cb5.bin b/common/runtime/cache/87/8764a5b1ae26b43593782c45049d4cb5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/87/8764a5b1ae26b43593782c45049d4cb5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/87/8767b02199662da3681a95d34ec5f991.bin b/common/runtime/cache/87/8767b02199662da3681a95d34ec5f991.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/87/8767b02199662da3681a95d34ec5f991.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/87/8781577198a2f9daa25ec07d5d64ea42.bin b/common/runtime/cache/87/8781577198a2f9daa25ec07d5d64ea42.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/87/8781577198a2f9daa25ec07d5d64ea42.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/87/87919442bf4a329e9fcaeb260799cff3.bin b/common/runtime/cache/87/87919442bf4a329e9fcaeb260799cff3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/87/87919442bf4a329e9fcaeb260799cff3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/87/87aa7bab36d098a7402cf91228d425a9.bin b/common/runtime/cache/87/87aa7bab36d098a7402cf91228d425a9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/87/87aa7bab36d098a7402cf91228d425a9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/87/87b6df728ad0cd43cfa2ccddf9b42d7f.bin b/common/runtime/cache/87/87b6df728ad0cd43cfa2ccddf9b42d7f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/87/87b6df728ad0cd43cfa2ccddf9b42d7f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/87/87d2ebdbcf8aa42b1416a3e73d3b088d.bin b/common/runtime/cache/87/87d2ebdbcf8aa42b1416a3e73d3b088d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/87/87d2ebdbcf8aa42b1416a3e73d3b088d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/87/87dda262c8ad09831d426345493d5d5e.bin b/common/runtime/cache/87/87dda262c8ad09831d426345493d5d5e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/87/87dda262c8ad09831d426345493d5d5e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/88/881a6fe360a7158102f54c6611e5779a.bin b/common/runtime/cache/88/881a6fe360a7158102f54c6611e5779a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/88/881a6fe360a7158102f54c6611e5779a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/88/88445e40a1b85a2a95653157b3751c88.bin b/common/runtime/cache/88/88445e40a1b85a2a95653157b3751c88.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/88/88445e40a1b85a2a95653157b3751c88.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/88/8865917008d0edfe8933893ec92b1395.bin b/common/runtime/cache/88/8865917008d0edfe8933893ec92b1395.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/88/8865917008d0edfe8933893ec92b1395.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/88/88b0be183d1ab06ea9a5f4c5d60d502e.bin b/common/runtime/cache/88/88b0be183d1ab06ea9a5f4c5d60d502e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/88/88b0be183d1ab06ea9a5f4c5d60d502e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/88/88cb5eb8cc3373124739f6da10523f6e.bin b/common/runtime/cache/88/88cb5eb8cc3373124739f6da10523f6e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/88/88cb5eb8cc3373124739f6da10523f6e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/88/88d89d2dbbf5ea2bfa03470bc988350a.bin b/common/runtime/cache/88/88d89d2dbbf5ea2bfa03470bc988350a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/88/88d89d2dbbf5ea2bfa03470bc988350a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/88/88e7775783ffc03c128899e44094fd84.bin b/common/runtime/cache/88/88e7775783ffc03c128899e44094fd84.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/88/88e7775783ffc03c128899e44094fd84.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/89/89328949bf0577c1168b8f0a95d44fa3.bin b/common/runtime/cache/89/89328949bf0577c1168b8f0a95d44fa3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/89/89328949bf0577c1168b8f0a95d44fa3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/89/895254fb8c78d9e8d42448e17ed6d206.bin b/common/runtime/cache/89/895254fb8c78d9e8d42448e17ed6d206.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/89/895254fb8c78d9e8d42448e17ed6d206.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/89/897cb0b6fa8ab93459cb267df1c4a7b8.bin b/common/runtime/cache/89/897cb0b6fa8ab93459cb267df1c4a7b8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/89/897cb0b6fa8ab93459cb267df1c4a7b8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/89/89b3d856f45f84e188639d3ee5784349.bin b/common/runtime/cache/89/89b3d856f45f84e188639d3ee5784349.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/89/89b3d856f45f84e188639d3ee5784349.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/89/89bd177af2376a05e9b3654977f2003c.bin b/common/runtime/cache/89/89bd177af2376a05e9b3654977f2003c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/89/89bd177af2376a05e9b3654977f2003c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/89/89c1a437332b295a44e314a8de19b1ba.bin b/common/runtime/cache/89/89c1a437332b295a44e314a8de19b1ba.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/89/89c1a437332b295a44e314a8de19b1ba.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/89/89cd4e07b52e513a5784f301e81a5eea.bin b/common/runtime/cache/89/89cd4e07b52e513a5784f301e81a5eea.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/89/89cd4e07b52e513a5784f301e81a5eea.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/89/89dd0eb9e4f25893ec13438a9aa5bff5.bin b/common/runtime/cache/89/89dd0eb9e4f25893ec13438a9aa5bff5.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/89/89dd0eb9e4f25893ec13438a9aa5bff5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/89/89e249371ed94aec5262b0444db803e1.bin b/common/runtime/cache/89/89e249371ed94aec5262b0444db803e1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/89/89e249371ed94aec5262b0444db803e1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/89/89e7a57b862009175cca68e890a2e7c7.bin b/common/runtime/cache/89/89e7a57b862009175cca68e890a2e7c7.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/89/89e7a57b862009175cca68e890a2e7c7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/89/89fbb4cf6629dd58a4bf4203bddea7e7.bin b/common/runtime/cache/89/89fbb4cf6629dd58a4bf4203bddea7e7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/89/89fbb4cf6629dd58a4bf4203bddea7e7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8a/8a0cb75f4977ed3f89fe46610ae191a6.bin b/common/runtime/cache/8a/8a0cb75f4977ed3f89fe46610ae191a6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8a/8a0cb75f4977ed3f89fe46610ae191a6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8a/8a5c6d7cd19b199013901e4d4ee7bb35.bin b/common/runtime/cache/8a/8a5c6d7cd19b199013901e4d4ee7bb35.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8a/8a5c6d7cd19b199013901e4d4ee7bb35.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8a/8a5ecf11b28e1c0ec34570e4c258bf7b.bin b/common/runtime/cache/8a/8a5ecf11b28e1c0ec34570e4c258bf7b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8a/8a5ecf11b28e1c0ec34570e4c258bf7b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8a/8a6550b22ba7ccd80c921dfd1fafb198.bin b/common/runtime/cache/8a/8a6550b22ba7ccd80c921dfd1fafb198.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8a/8a6550b22ba7ccd80c921dfd1fafb198.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8a/8a6b08dc3214bd9242dd91cdbc9dba85.bin b/common/runtime/cache/8a/8a6b08dc3214bd9242dd91cdbc9dba85.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8a/8a6b08dc3214bd9242dd91cdbc9dba85.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8a/8a8393fe1de8860994b0c818fa463621.bin b/common/runtime/cache/8a/8a8393fe1de8860994b0c818fa463621.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8a/8a8393fe1de8860994b0c818fa463621.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8a/8a9a8365d1b26babe1f2b34853afc33c.bin b/common/runtime/cache/8a/8a9a8365d1b26babe1f2b34853afc33c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8a/8a9a8365d1b26babe1f2b34853afc33c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8a/8a9ded6fa7a73619058f8d2d0886f6b2.bin b/common/runtime/cache/8a/8a9ded6fa7a73619058f8d2d0886f6b2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8a/8a9ded6fa7a73619058f8d2d0886f6b2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8a/8ab2210f76a7f2527a53d9fac4041acf.bin b/common/runtime/cache/8a/8ab2210f76a7f2527a53d9fac4041acf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8a/8ab2210f76a7f2527a53d9fac4041acf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8a/8ac1970e0caa0f43147ba12f7d9051ad.bin b/common/runtime/cache/8a/8ac1970e0caa0f43147ba12f7d9051ad.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8a/8ac1970e0caa0f43147ba12f7d9051ad.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8a/8ac6a992ddc00360919742121e1055de.bin b/common/runtime/cache/8a/8ac6a992ddc00360919742121e1055de.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8a/8ac6a992ddc00360919742121e1055de.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8a/8adc4ca03d9c7d9570224313c2fedb6c.bin b/common/runtime/cache/8a/8adc4ca03d9c7d9570224313c2fedb6c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8a/8adc4ca03d9c7d9570224313c2fedb6c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8a/8ae1e943ea5979f72060275e858d59d1.bin b/common/runtime/cache/8a/8ae1e943ea5979f72060275e858d59d1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/8a/8ae1e943ea5979f72060275e858d59d1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8a/8af8ed4bf66aee59beeec78df179ee0d.bin b/common/runtime/cache/8a/8af8ed4bf66aee59beeec78df179ee0d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8a/8af8ed4bf66aee59beeec78df179ee0d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8b/8b03186dd9d4584bf24909fada20234a.bin b/common/runtime/cache/8b/8b03186dd9d4584bf24909fada20234a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/8b/8b03186dd9d4584bf24909fada20234a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8b/8b11f60fd2359d03290624d6607625e8.bin b/common/runtime/cache/8b/8b11f60fd2359d03290624d6607625e8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8b/8b11f60fd2359d03290624d6607625e8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8b/8b1381eed0d9edacf0e913bb2b6da119.bin b/common/runtime/cache/8b/8b1381eed0d9edacf0e913bb2b6da119.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/8b/8b1381eed0d9edacf0e913bb2b6da119.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8b/8b1b2894d0b923f8335294aa6655d611.bin b/common/runtime/cache/8b/8b1b2894d0b923f8335294aa6655d611.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8b/8b1b2894d0b923f8335294aa6655d611.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8b/8b1d02717f26fab5be2e3a286623ab44.bin b/common/runtime/cache/8b/8b1d02717f26fab5be2e3a286623ab44.bin new file mode 100644 index 0000000..d780ece --- /dev/null +++ b/common/runtime/cache/8b/8b1d02717f26fab5be2e3a286623ab44.bin @@ -0,0 +1 @@ +a:2:{i:0;s:18:"articles/gold_ring";i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8b/8b2c04a446109578d7af10220f0b8d6f.bin b/common/runtime/cache/8b/8b2c04a446109578d7af10220f0b8d6f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/8b/8b2c04a446109578d7af10220f0b8d6f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8b/8b2c059a4bbc8e3afe00b94e067018dc.bin b/common/runtime/cache/8b/8b2c059a4bbc8e3afe00b94e067018dc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8b/8b2c059a4bbc8e3afe00b94e067018dc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8b/8b3bc21807d9658c554e37abda47f057.bin b/common/runtime/cache/8b/8b3bc21807d9658c554e37abda47f057.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8b/8b3bc21807d9658c554e37abda47f057.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8b/8b7733d0fb6b74790f39c95fae5ad746.bin b/common/runtime/cache/8b/8b7733d0fb6b74790f39c95fae5ad746.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/8b/8b7733d0fb6b74790f39c95fae5ad746.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8b/8b8c5d457bfc226c462970b21c59aa01.bin b/common/runtime/cache/8b/8b8c5d457bfc226c462970b21c59aa01.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8b/8b8c5d457bfc226c462970b21c59aa01.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8b/8b9a23c9fef0a17d6431c6518e3a4046.bin b/common/runtime/cache/8b/8b9a23c9fef0a17d6431c6518e3a4046.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8b/8b9a23c9fef0a17d6431c6518e3a4046.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8b/8bbca1c97b15bead932547df58d32ed0.bin b/common/runtime/cache/8b/8bbca1c97b15bead932547df58d32ed0.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/8b/8bbca1c97b15bead932547df58d32ed0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8b/8bf41106a33fc99adf17bb8e4d7ea142.bin b/common/runtime/cache/8b/8bf41106a33fc99adf17bb8e4d7ea142.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/8b/8bf41106a33fc99adf17bb8e4d7ea142.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8b/8bf889481a80f01cd54c41eb0fdce2f3.bin b/common/runtime/cache/8b/8bf889481a80f01cd54c41eb0fdce2f3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8b/8bf889481a80f01cd54c41eb0fdce2f3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8c/8c06ec084dbdddfbfbbeac1e7bbbdb4c.bin b/common/runtime/cache/8c/8c06ec084dbdddfbfbbeac1e7bbbdb4c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8c/8c06ec084dbdddfbfbbeac1e7bbbdb4c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8c/8c0ed60243fa3a55b737994de76406c6.bin b/common/runtime/cache/8c/8c0ed60243fa3a55b737994de76406c6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8c/8c0ed60243fa3a55b737994de76406c6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8c/8c1f3c154f0b3e72ac9b91ffbbdce9ee.bin b/common/runtime/cache/8c/8c1f3c154f0b3e72ac9b91ffbbdce9ee.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8c/8c1f3c154f0b3e72ac9b91ffbbdce9ee.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8c/8c219514070bf462ec2fb09f0ba31f48.bin b/common/runtime/cache/8c/8c219514070bf462ec2fb09f0ba31f48.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8c/8c219514070bf462ec2fb09f0ba31f48.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8c/8c27a6af2920bbdfc954cab1c98404e0.bin b/common/runtime/cache/8c/8c27a6af2920bbdfc954cab1c98404e0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8c/8c27a6af2920bbdfc954cab1c98404e0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8c/8c32b0ea9834f0c7220fee8a06a81616.bin b/common/runtime/cache/8c/8c32b0ea9834f0c7220fee8a06a81616.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8c/8c32b0ea9834f0c7220fee8a06a81616.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8c/8c3a1946d86295ac5180978b96b1a5e0.bin b/common/runtime/cache/8c/8c3a1946d86295ac5180978b96b1a5e0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8c/8c3a1946d86295ac5180978b96b1a5e0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8c/8c434f512a20ebc363cc23f103fbdca9.bin b/common/runtime/cache/8c/8c434f512a20ebc363cc23f103fbdca9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8c/8c434f512a20ebc363cc23f103fbdca9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8c/8c534c4deb7d07cf000dc62cfca38918.bin b/common/runtime/cache/8c/8c534c4deb7d07cf000dc62cfca38918.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/8c/8c534c4deb7d07cf000dc62cfca38918.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8c/8c535e8abf23e1e80d6f2de3c36bdb1e.bin b/common/runtime/cache/8c/8c535e8abf23e1e80d6f2de3c36bdb1e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8c/8c535e8abf23e1e80d6f2de3c36bdb1e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8c/8c671fa97e2035f57dccd97d504c3298.bin b/common/runtime/cache/8c/8c671fa97e2035f57dccd97d504c3298.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/8c/8c671fa97e2035f57dccd97d504c3298.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8c/8c86b0cd9b47a92b230db2a42d687d14.bin b/common/runtime/cache/8c/8c86b0cd9b47a92b230db2a42d687d14.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8c/8c86b0cd9b47a92b230db2a42d687d14.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8c/8cc3418854ee7e62b8cfa7c3384d3d9b.bin b/common/runtime/cache/8c/8cc3418854ee7e62b8cfa7c3384d3d9b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8c/8cc3418854ee7e62b8cfa7c3384d3d9b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8c/8cdde81c32cb3102a34a13fe4f379598.bin b/common/runtime/cache/8c/8cdde81c32cb3102a34a13fe4f379598.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8c/8cdde81c32cb3102a34a13fe4f379598.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8c/8cee3a2d2d7eacf6cca13aa192608d0a.bin b/common/runtime/cache/8c/8cee3a2d2d7eacf6cca13aa192608d0a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8c/8cee3a2d2d7eacf6cca13aa192608d0a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8c/8cf46cd18bb8f22bbc79c8c6a500a546.bin b/common/runtime/cache/8c/8cf46cd18bb8f22bbc79c8c6a500a546.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8c/8cf46cd18bb8f22bbc79c8c6a500a546.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8d/8d0cf41cb4f8a583963dd42a8e82a46f.bin b/common/runtime/cache/8d/8d0cf41cb4f8a583963dd42a8e82a46f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8d/8d0cf41cb4f8a583963dd42a8e82a46f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8d/8d2cf8bff85a39d0bd4aa4eb104b789f.bin b/common/runtime/cache/8d/8d2cf8bff85a39d0bd4aa4eb104b789f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8d/8d2cf8bff85a39d0bd4aa4eb104b789f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8d/8d4c775f936465070ea763308e1644b0.bin b/common/runtime/cache/8d/8d4c775f936465070ea763308e1644b0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8d/8d4c775f936465070ea763308e1644b0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8d/8d681319f96b6de5cbceca122dab5edd.bin b/common/runtime/cache/8d/8d681319f96b6de5cbceca122dab5edd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8d/8d681319f96b6de5cbceca122dab5edd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8d/8d684f3ad593a51e81d225e181a9b062.bin b/common/runtime/cache/8d/8d684f3ad593a51e81d225e181a9b062.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8d/8d684f3ad593a51e81d225e181a9b062.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8d/8d946d2661bde7d47c4683166fe8e0de.bin b/common/runtime/cache/8d/8d946d2661bde7d47c4683166fe8e0de.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8d/8d946d2661bde7d47c4683166fe8e0de.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8d/8da3b513becd2d3c07639dd2a6a55dc1.bin b/common/runtime/cache/8d/8da3b513becd2d3c07639dd2a6a55dc1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/8d/8da3b513becd2d3c07639dd2a6a55dc1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8d/8da8faf85bd1d4624c3cb7d9ae36c5be.bin b/common/runtime/cache/8d/8da8faf85bd1d4624c3cb7d9ae36c5be.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8d/8da8faf85bd1d4624c3cb7d9ae36c5be.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8d/8dab4a02b2d364396e0cfc659dbb289a.bin b/common/runtime/cache/8d/8dab4a02b2d364396e0cfc659dbb289a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8d/8dab4a02b2d364396e0cfc659dbb289a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8d/8dade0b7fb452e5f4ea2b0bedc42ca55.bin b/common/runtime/cache/8d/8dade0b7fb452e5f4ea2b0bedc42ca55.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8d/8dade0b7fb452e5f4ea2b0bedc42ca55.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8d/8dc25dc02883e5156482249f1e962fac.bin b/common/runtime/cache/8d/8dc25dc02883e5156482249f1e962fac.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8d/8dc25dc02883e5156482249f1e962fac.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8d/8dd1d7c8138f064bf77425ee245c9e5f.bin b/common/runtime/cache/8d/8dd1d7c8138f064bf77425ee245c9e5f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8d/8dd1d7c8138f064bf77425ee245c9e5f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8d/8de6ebc655f7bcdb392d7115de901b2f.bin b/common/runtime/cache/8d/8de6ebc655f7bcdb392d7115de901b2f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8d/8de6ebc655f7bcdb392d7115de901b2f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8d/8de9aafcbd2f68e433d497afe853919e.bin b/common/runtime/cache/8d/8de9aafcbd2f68e433d497afe853919e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8d/8de9aafcbd2f68e433d497afe853919e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8d/8dfa77eda8ae87179c2daea2245faf31.bin b/common/runtime/cache/8d/8dfa77eda8ae87179c2daea2245faf31.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8d/8dfa77eda8ae87179c2daea2245faf31.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8d/8dfeb2dcfe16d05b3bd360bf8338b173.bin b/common/runtime/cache/8d/8dfeb2dcfe16d05b3bd360bf8338b173.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8d/8dfeb2dcfe16d05b3bd360bf8338b173.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8e/8e1d4c5529debbc9d6390a8b6f2e92f6.bin b/common/runtime/cache/8e/8e1d4c5529debbc9d6390a8b6f2e92f6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8e/8e1d4c5529debbc9d6390a8b6f2e92f6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8e/8e23e7bd9197e688895cb515a517c4a5.bin b/common/runtime/cache/8e/8e23e7bd9197e688895cb515a517c4a5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8e/8e23e7bd9197e688895cb515a517c4a5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8e/8e2ae756aedd9e38b77a8cb92812c19b.bin b/common/runtime/cache/8e/8e2ae756aedd9e38b77a8cb92812c19b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8e/8e2ae756aedd9e38b77a8cb92812c19b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8e/8e2fca29a3210296e530bd0eb66a28d4.bin b/common/runtime/cache/8e/8e2fca29a3210296e530bd0eb66a28d4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8e/8e2fca29a3210296e530bd0eb66a28d4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8e/8e304c21139e7b0a05bf4430416ddd83.bin b/common/runtime/cache/8e/8e304c21139e7b0a05bf4430416ddd83.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8e/8e304c21139e7b0a05bf4430416ddd83.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8e/8e6507d6fdfa5970cabc009dbb687571.bin b/common/runtime/cache/8e/8e6507d6fdfa5970cabc009dbb687571.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8e/8e6507d6fdfa5970cabc009dbb687571.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8e/8e73ed2e60e1189c0082c6d48b652117.bin b/common/runtime/cache/8e/8e73ed2e60e1189c0082c6d48b652117.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8e/8e73ed2e60e1189c0082c6d48b652117.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8e/8e89dac7e9e75e02c04eeec771a76d7b.bin b/common/runtime/cache/8e/8e89dac7e9e75e02c04eeec771a76d7b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8e/8e89dac7e9e75e02c04eeec771a76d7b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8e/8e8abde31168a0f7adc96d2fd7e4d2ef.bin b/common/runtime/cache/8e/8e8abde31168a0f7adc96d2fd7e4d2ef.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/8e/8e8abde31168a0f7adc96d2fd7e4d2ef.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8e/8e9bd3e3d29129d1123eda8451951fa0.bin b/common/runtime/cache/8e/8e9bd3e3d29129d1123eda8451951fa0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8e/8e9bd3e3d29129d1123eda8451951fa0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8e/8e9f7c7890534c3f6b21478923bf8681.bin b/common/runtime/cache/8e/8e9f7c7890534c3f6b21478923bf8681.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8e/8e9f7c7890534c3f6b21478923bf8681.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8e/8eaeab6cd123daccc34e4ce7382fa005.bin b/common/runtime/cache/8e/8eaeab6cd123daccc34e4ce7382fa005.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/8e/8eaeab6cd123daccc34e4ce7382fa005.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8e/8eb654e5e14e3405a11bf1304a5e7415.bin b/common/runtime/cache/8e/8eb654e5e14e3405a11bf1304a5e7415.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8e/8eb654e5e14e3405a11bf1304a5e7415.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8e/8eb9e65fa533772a1caf76b49d70b5f1.bin b/common/runtime/cache/8e/8eb9e65fa533772a1caf76b49d70b5f1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/8e/8eb9e65fa533772a1caf76b49d70b5f1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8e/8ef0cf94d4d6455fadc05f5c2de331eb.bin b/common/runtime/cache/8e/8ef0cf94d4d6455fadc05f5c2de331eb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8e/8ef0cf94d4d6455fadc05f5c2de331eb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8f/8f01c4e71721c33f502a4667259c4f51.bin b/common/runtime/cache/8f/8f01c4e71721c33f502a4667259c4f51.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/8f/8f01c4e71721c33f502a4667259c4f51.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8f/8f0e29f8b1f01a2ad5cb3e5f13b0b6f6.bin b/common/runtime/cache/8f/8f0e29f8b1f01a2ad5cb3e5f13b0b6f6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8f/8f0e29f8b1f01a2ad5cb3e5f13b0b6f6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8f/8f1eeab8d33caa8416ec869ded033c67.bin b/common/runtime/cache/8f/8f1eeab8d33caa8416ec869ded033c67.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8f/8f1eeab8d33caa8416ec869ded033c67.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8f/8f251e7c24623517a933b014d8ce4315.bin b/common/runtime/cache/8f/8f251e7c24623517a933b014d8ce4315.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8f/8f251e7c24623517a933b014d8ce4315.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8f/8f2cde5da13f8f99f47311b2cfdf89d7.bin b/common/runtime/cache/8f/8f2cde5da13f8f99f47311b2cfdf89d7.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/8f/8f2cde5da13f8f99f47311b2cfdf89d7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8f/8f66f539a2e9ba4a7df0fa947e213e5b.bin b/common/runtime/cache/8f/8f66f539a2e9ba4a7df0fa947e213e5b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8f/8f66f539a2e9ba4a7df0fa947e213e5b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8f/8f98b9cdce02fe142f1f113ee2a7a2b7.bin b/common/runtime/cache/8f/8f98b9cdce02fe142f1f113ee2a7a2b7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8f/8f98b9cdce02fe142f1f113ee2a7a2b7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8f/8faf3ab36db5180371cfa2f9f7e02d49.bin b/common/runtime/cache/8f/8faf3ab36db5180371cfa2f9f7e02d49.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8f/8faf3ab36db5180371cfa2f9f7e02d49.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8f/8fb03bed38ce5049d52d6a5016ca00ca.bin b/common/runtime/cache/8f/8fb03bed38ce5049d52d6a5016ca00ca.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8f/8fb03bed38ce5049d52d6a5016ca00ca.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8f/8fb4ab8a1b6d820cb7c17977480e88f2.bin b/common/runtime/cache/8f/8fb4ab8a1b6d820cb7c17977480e88f2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8f/8fb4ab8a1b6d820cb7c17977480e88f2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8f/8fc17bb876b63e3a0fced6b90b9c213c.bin b/common/runtime/cache/8f/8fc17bb876b63e3a0fced6b90b9c213c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8f/8fc17bb876b63e3a0fced6b90b9c213c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8f/8fc561d04f208997d1e7b26a937f66df.bin b/common/runtime/cache/8f/8fc561d04f208997d1e7b26a937f66df.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8f/8fc561d04f208997d1e7b26a937f66df.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8f/8fda6aceb7cb6c6ec4befb7e7e122a7c.bin b/common/runtime/cache/8f/8fda6aceb7cb6c6ec4befb7e7e122a7c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8f/8fda6aceb7cb6c6ec4befb7e7e122a7c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/8f/8ff43a86d20bad115e27530f61f3f3a9.bin b/common/runtime/cache/8f/8ff43a86d20bad115e27530f61f3f3a9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/8f/8ff43a86d20bad115e27530f61f3f3a9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/90/9034f3241cdce17b8252c3b418a18f05.bin b/common/runtime/cache/90/9034f3241cdce17b8252c3b418a18f05.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/90/9034f3241cdce17b8252c3b418a18f05.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/90/904a19194bebf4ea474686d2bf79699c.bin b/common/runtime/cache/90/904a19194bebf4ea474686d2bf79699c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/90/904a19194bebf4ea474686d2bf79699c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/90/905b72db0d59c01801d7b6d8db67999d.bin b/common/runtime/cache/90/905b72db0d59c01801d7b6d8db67999d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/90/905b72db0d59c01801d7b6d8db67999d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/90/906a5cbe7559884fbec0b781047027c5.bin b/common/runtime/cache/90/906a5cbe7559884fbec0b781047027c5.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/90/906a5cbe7559884fbec0b781047027c5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/90/90af50469ba13bf4f5091d372212e828.bin b/common/runtime/cache/90/90af50469ba13bf4f5091d372212e828.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/90/90af50469ba13bf4f5091d372212e828.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/90/90dfc4622f6ee9e02b0f1f5cc7e6408d.bin b/common/runtime/cache/90/90dfc4622f6ee9e02b0f1f5cc7e6408d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/90/90dfc4622f6ee9e02b0f1f5cc7e6408d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/91/91287b20073e4d5391cc67833eb7dc58.bin b/common/runtime/cache/91/91287b20073e4d5391cc67833eb7dc58.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/91/91287b20073e4d5391cc67833eb7dc58.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/91/9149360cd47261c6ead1a8403707b5be.bin b/common/runtime/cache/91/9149360cd47261c6ead1a8403707b5be.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/91/9149360cd47261c6ead1a8403707b5be.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/91/916d367d4ef693dec422356121877037.bin b/common/runtime/cache/91/916d367d4ef693dec422356121877037.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/91/916d367d4ef693dec422356121877037.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/91/91b575b8ec514dc7afb2eb2d667d08a3.bin b/common/runtime/cache/91/91b575b8ec514dc7afb2eb2d667d08a3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/91/91b575b8ec514dc7afb2eb2d667d08a3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/91/91c8095aaaefd1aae2fc068053314f8f.bin b/common/runtime/cache/91/91c8095aaaefd1aae2fc068053314f8f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/91/91c8095aaaefd1aae2fc068053314f8f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/91/91d58f3f0166067c88c04a3cb14ff4c1.bin b/common/runtime/cache/91/91d58f3f0166067c88c04a3cb14ff4c1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/91/91d58f3f0166067c88c04a3cb14ff4c1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/91/91fe7470159c511897f0e262262de8b7.bin b/common/runtime/cache/91/91fe7470159c511897f0e262262de8b7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/91/91fe7470159c511897f0e262262de8b7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/92/9210a9faff034dc6902fef3559caf04a.bin b/common/runtime/cache/92/9210a9faff034dc6902fef3559caf04a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/92/9210a9faff034dc6902fef3559caf04a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/92/9232add4a724802739d90e5817af3165.bin b/common/runtime/cache/92/9232add4a724802739d90e5817af3165.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/92/9232add4a724802739d90e5817af3165.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/92/923444052036bfd77994606b1f795b3c.bin b/common/runtime/cache/92/923444052036bfd77994606b1f795b3c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/92/923444052036bfd77994606b1f795b3c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/92/9245cc40e334949880407b583238530c.bin b/common/runtime/cache/92/9245cc40e334949880407b583238530c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/92/9245cc40e334949880407b583238530c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/92/925d55377259efc2d14527497e1f7a15.bin b/common/runtime/cache/92/925d55377259efc2d14527497e1f7a15.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/92/925d55377259efc2d14527497e1f7a15.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/92/925e1d1acc1eb2c8e4e289c6b899f1bd.bin b/common/runtime/cache/92/925e1d1acc1eb2c8e4e289c6b899f1bd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/92/925e1d1acc1eb2c8e4e289c6b899f1bd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/92/9266f776becf4224dfb505dd81b99956.bin b/common/runtime/cache/92/9266f776becf4224dfb505dd81b99956.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/92/9266f776becf4224dfb505dd81b99956.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/92/928dbffdee47e0b40f87c816da563e6f.bin b/common/runtime/cache/92/928dbffdee47e0b40f87c816da563e6f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/92/928dbffdee47e0b40f87c816da563e6f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/92/92b9df3683bda7409209da7b597dd0fc.bin b/common/runtime/cache/92/92b9df3683bda7409209da7b597dd0fc.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/92/92b9df3683bda7409209da7b597dd0fc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/92/92d8f52f9521e9daab11fdb7fefc02fc.bin b/common/runtime/cache/92/92d8f52f9521e9daab11fdb7fefc02fc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/92/92d8f52f9521e9daab11fdb7fefc02fc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/92/92e2357c7d5b085c753b5917d3123567.bin b/common/runtime/cache/92/92e2357c7d5b085c753b5917d3123567.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/92/92e2357c7d5b085c753b5917d3123567.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/93/93048a90ffa8908a8d0cee16f44e61b7.bin b/common/runtime/cache/93/93048a90ffa8908a8d0cee16f44e61b7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/93/93048a90ffa8908a8d0cee16f44e61b7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/93/93111c40032419659f5256d0a18b4647.bin b/common/runtime/cache/93/93111c40032419659f5256d0a18b4647.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/93/93111c40032419659f5256d0a18b4647.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/93/932a234343768d72ee030677c21ecb17.bin b/common/runtime/cache/93/932a234343768d72ee030677c21ecb17.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/93/932a234343768d72ee030677c21ecb17.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/93/932cbb6e68702c4d99df20cfba80e6b2.bin b/common/runtime/cache/93/932cbb6e68702c4d99df20cfba80e6b2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/93/932cbb6e68702c4d99df20cfba80e6b2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/93/9339ab69ded0120f22b48551c7fba6cb.bin b/common/runtime/cache/93/9339ab69ded0120f22b48551c7fba6cb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/93/9339ab69ded0120f22b48551c7fba6cb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/93/934b2a03eeead3fe014c78a6b0f36fac.bin b/common/runtime/cache/93/934b2a03eeead3fe014c78a6b0f36fac.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/93/934b2a03eeead3fe014c78a6b0f36fac.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/93/936838a1d6f4f89551f6744b8f8f2d24.bin b/common/runtime/cache/93/936838a1d6f4f89551f6744b8f8f2d24.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/93/936838a1d6f4f89551f6744b8f8f2d24.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/93/938af38505cb57a7bc1d7fa265f4aa6f.bin b/common/runtime/cache/93/938af38505cb57a7bc1d7fa265f4aa6f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/93/938af38505cb57a7bc1d7fa265f4aa6f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/93/938c00fb3b1d26b8e2f18a8f4bec1c02.bin b/common/runtime/cache/93/938c00fb3b1d26b8e2f18a8f4bec1c02.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/93/938c00fb3b1d26b8e2f18a8f4bec1c02.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/93/939717c59614a5b44ecca0ed4f524f57.bin b/common/runtime/cache/93/939717c59614a5b44ecca0ed4f524f57.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/93/939717c59614a5b44ecca0ed4f524f57.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/93/939d029ff457d98e138d3b1c9a4f3523.bin b/common/runtime/cache/93/939d029ff457d98e138d3b1c9a4f3523.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/93/939d029ff457d98e138d3b1c9a4f3523.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/93/93bfc029784c4e9991a866bcc526099d.bin b/common/runtime/cache/93/93bfc029784c4e9991a866bcc526099d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/93/93bfc029784c4e9991a866bcc526099d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/93/93d2a860a78b19be30677cca71576d6c.bin b/common/runtime/cache/93/93d2a860a78b19be30677cca71576d6c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/93/93d2a860a78b19be30677cca71576d6c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/93/93e607475302c34d38c28b60025b4a6c.bin b/common/runtime/cache/93/93e607475302c34d38c28b60025b4a6c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/93/93e607475302c34d38c28b60025b4a6c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/93/93eb4fa3b0391605b49f6f3e199d2138.bin b/common/runtime/cache/93/93eb4fa3b0391605b49f6f3e199d2138.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/93/93eb4fa3b0391605b49f6f3e199d2138.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/93/93f796751e318fee70d3202ad242cef6.bin b/common/runtime/cache/93/93f796751e318fee70d3202ad242cef6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/93/93f796751e318fee70d3202ad242cef6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/93/93fcd7da7b413d9eb1d246c9fba0aab5.bin b/common/runtime/cache/93/93fcd7da7b413d9eb1d246c9fba0aab5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/93/93fcd7da7b413d9eb1d246c9fba0aab5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/94/94199760c9f15fee677eadfd5f26525d.bin b/common/runtime/cache/94/94199760c9f15fee677eadfd5f26525d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/94/94199760c9f15fee677eadfd5f26525d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/94/94391670eb07c3076503905f86a18aa3.bin b/common/runtime/cache/94/94391670eb07c3076503905f86a18aa3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/94/94391670eb07c3076503905f86a18aa3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/94/947604b04773b21d0a4de2c7d87780ab.bin b/common/runtime/cache/94/947604b04773b21d0a4de2c7d87780ab.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/94/947604b04773b21d0a4de2c7d87780ab.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/94/94940d7ac132c8f0e7a9de0746add233.bin b/common/runtime/cache/94/94940d7ac132c8f0e7a9de0746add233.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/94/94940d7ac132c8f0e7a9de0746add233.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/94/94d5241b0b05bfb456c0a6c4ada588e5.bin b/common/runtime/cache/94/94d5241b0b05bfb456c0a6c4ada588e5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/94/94d5241b0b05bfb456c0a6c4ada588e5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/94/94dd6b18d8e20b55d1fee4a880ad9b58.bin b/common/runtime/cache/94/94dd6b18d8e20b55d1fee4a880ad9b58.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/94/94dd6b18d8e20b55d1fee4a880ad9b58.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/95/951e9acdd552db2c3a6cfd32073c4cb5.bin b/common/runtime/cache/95/951e9acdd552db2c3a6cfd32073c4cb5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/95/951e9acdd552db2c3a6cfd32073c4cb5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/95/95210ed19c4c4710157b41b125c56d69.bin b/common/runtime/cache/95/95210ed19c4c4710157b41b125c56d69.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/95/95210ed19c4c4710157b41b125c56d69.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/95/952abdf0e1a6b84c975e9e1ee137e07a.bin b/common/runtime/cache/95/952abdf0e1a6b84c975e9e1ee137e07a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/95/952abdf0e1a6b84c975e9e1ee137e07a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/95/953747eefe271cce13a9db7f96f32e0b.bin b/common/runtime/cache/95/953747eefe271cce13a9db7f96f32e0b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/95/953747eefe271cce13a9db7f96f32e0b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/95/9546b39570d6b39bf19f5037fbf93038.bin b/common/runtime/cache/95/9546b39570d6b39bf19f5037fbf93038.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/95/9546b39570d6b39bf19f5037fbf93038.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/95/954935cffcd03b96b07a8cdd69ba70e0.bin b/common/runtime/cache/95/954935cffcd03b96b07a8cdd69ba70e0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/95/954935cffcd03b96b07a8cdd69ba70e0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/95/954fb49fa34942632401aecb60c6b4e7.bin b/common/runtime/cache/95/954fb49fa34942632401aecb60c6b4e7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/95/954fb49fa34942632401aecb60c6b4e7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/95/95597107d45b048e70e0fa4cec0e858f.bin b/common/runtime/cache/95/95597107d45b048e70e0fa4cec0e858f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/95/95597107d45b048e70e0fa4cec0e858f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/95/955d144fb431820824a44700666066c0.bin b/common/runtime/cache/95/955d144fb431820824a44700666066c0.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/95/955d144fb431820824a44700666066c0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/95/95708f47d7a82a0787522f56b15d3141.bin b/common/runtime/cache/95/95708f47d7a82a0787522f56b15d3141.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/95/95708f47d7a82a0787522f56b15d3141.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/95/958abeed2ad324b3a95777491c52a330.bin b/common/runtime/cache/95/958abeed2ad324b3a95777491c52a330.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/95/958abeed2ad324b3a95777491c52a330.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/95/958eac922a2bbad9421db38ea59744c9.bin b/common/runtime/cache/95/958eac922a2bbad9421db38ea59744c9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/95/958eac922a2bbad9421db38ea59744c9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/95/95926bd6a5f4bd9654f1d5caaf956259.bin b/common/runtime/cache/95/95926bd6a5f4bd9654f1d5caaf956259.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/95/95926bd6a5f4bd9654f1d5caaf956259.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/95/9595cf853948e9f9961c3579e2accf4b.bin b/common/runtime/cache/95/9595cf853948e9f9961c3579e2accf4b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/95/9595cf853948e9f9961c3579e2accf4b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/95/9596ebf02f071f2041edeecc3887ef99.bin b/common/runtime/cache/95/9596ebf02f071f2041edeecc3887ef99.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/95/9596ebf02f071f2041edeecc3887ef99.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/95/95a7aa9cb301dd8751dd99592dbea332.bin b/common/runtime/cache/95/95a7aa9cb301dd8751dd99592dbea332.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/95/95a7aa9cb301dd8751dd99592dbea332.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/95/95a9f7d0bbd2eac3a3013b19165bdee2.bin b/common/runtime/cache/95/95a9f7d0bbd2eac3a3013b19165bdee2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/95/95a9f7d0bbd2eac3a3013b19165bdee2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/96/9627d516bd74a85fdda9e4b0ffe5028f.bin b/common/runtime/cache/96/9627d516bd74a85fdda9e4b0ffe5028f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/96/9627d516bd74a85fdda9e4b0ffe5028f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/96/963454f612a8b5fb4a63ba1e97f028a1.bin b/common/runtime/cache/96/963454f612a8b5fb4a63ba1e97f028a1.bin new file mode 100644 index 0000000..08dce0c Binary files /dev/null and b/common/runtime/cache/96/963454f612a8b5fb4a63ba1e97f028a1.bin differ diff --git a/common/runtime/cache/96/963c38c95fe00c9c41230391fef470ab.bin b/common/runtime/cache/96/963c38c95fe00c9c41230391fef470ab.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/96/963c38c95fe00c9c41230391fef470ab.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/96/96675c245403c0d05a7543d385bbb89c.bin b/common/runtime/cache/96/96675c245403c0d05a7543d385bbb89c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/96/96675c245403c0d05a7543d385bbb89c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/96/968ac500d8b5aaf9d10206a1633bf002.bin b/common/runtime/cache/96/968ac500d8b5aaf9d10206a1633bf002.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/96/968ac500d8b5aaf9d10206a1633bf002.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/96/96a01d0293121312a14a189dfe85c427.bin b/common/runtime/cache/96/96a01d0293121312a14a189dfe85c427.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/96/96a01d0293121312a14a189dfe85c427.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/96/96b4e1520ebbf12a85455e9a38958da4.bin b/common/runtime/cache/96/96b4e1520ebbf12a85455e9a38958da4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/96/96b4e1520ebbf12a85455e9a38958da4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/96/96cf743bdb49b64e3e1f140bfcfa4251.bin b/common/runtime/cache/96/96cf743bdb49b64e3e1f140bfcfa4251.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/96/96cf743bdb49b64e3e1f140bfcfa4251.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/96/96cfe755edb2490d40c2d683915eb936.bin b/common/runtime/cache/96/96cfe755edb2490d40c2d683915eb936.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/96/96cfe755edb2490d40c2d683915eb936.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/96/96d3ddd528d873a7eb5cdf04538b1ac8.bin b/common/runtime/cache/96/96d3ddd528d873a7eb5cdf04538b1ac8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/96/96d3ddd528d873a7eb5cdf04538b1ac8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/96/96d98ff4ce2bdf11061b78543ac14765.bin b/common/runtime/cache/96/96d98ff4ce2bdf11061b78543ac14765.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/96/96d98ff4ce2bdf11061b78543ac14765.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/96/96e29fc86106d4142012576ec0aa93c0.bin b/common/runtime/cache/96/96e29fc86106d4142012576ec0aa93c0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/96/96e29fc86106d4142012576ec0aa93c0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/96/96fcac59e28aaa64e32066b3bbd28c37.bin b/common/runtime/cache/96/96fcac59e28aaa64e32066b3bbd28c37.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/96/96fcac59e28aaa64e32066b3bbd28c37.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/96/96ff208afda5ea0e002865a1156adf08.bin b/common/runtime/cache/96/96ff208afda5ea0e002865a1156adf08.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/96/96ff208afda5ea0e002865a1156adf08.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/97/970355bd2ea33885af3cd7e955cd7c52.bin b/common/runtime/cache/97/970355bd2ea33885af3cd7e955cd7c52.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/97/970355bd2ea33885af3cd7e955cd7c52.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/97/97110148ab351f949d8e11d41457d8b4.bin b/common/runtime/cache/97/97110148ab351f949d8e11d41457d8b4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/97/97110148ab351f949d8e11d41457d8b4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/97/9740a304320e67f0f63e059c8c40a0e3.bin b/common/runtime/cache/97/9740a304320e67f0f63e059c8c40a0e3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/97/9740a304320e67f0f63e059c8c40a0e3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/97/97420f6f3dcf88ba0398d4e267b5737c.bin b/common/runtime/cache/97/97420f6f3dcf88ba0398d4e267b5737c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/97/97420f6f3dcf88ba0398d4e267b5737c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/97/97491e964a11cd7216ca44b83e054594.bin b/common/runtime/cache/97/97491e964a11cd7216ca44b83e054594.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/97/97491e964a11cd7216ca44b83e054594.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/97/975332b600c48879ba107255c6d4baf8.bin b/common/runtime/cache/97/975332b600c48879ba107255c6d4baf8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/97/975332b600c48879ba107255c6d4baf8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/97/977cd17a06edb85703970c5922fff502.bin b/common/runtime/cache/97/977cd17a06edb85703970c5922fff502.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/97/977cd17a06edb85703970c5922fff502.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/97/9792215e06206fc03179c04479e72a89.bin b/common/runtime/cache/97/9792215e06206fc03179c04479e72a89.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/97/9792215e06206fc03179c04479e72a89.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/97/97960c92540a41a0a035edafe2c1d42e.bin b/common/runtime/cache/97/97960c92540a41a0a035edafe2c1d42e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/97/97960c92540a41a0a035edafe2c1d42e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/97/97c49d12b38dcfe9fcd7e50bf98b8ad6.bin b/common/runtime/cache/97/97c49d12b38dcfe9fcd7e50bf98b8ad6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/97/97c49d12b38dcfe9fcd7e50bf98b8ad6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/97/97fe92b5e85518ec87b6e43ae2221dba.bin b/common/runtime/cache/97/97fe92b5e85518ec87b6e43ae2221dba.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/97/97fe92b5e85518ec87b6e43ae2221dba.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/98/980fdf97e4062f23023090f04e3f09a1.bin b/common/runtime/cache/98/980fdf97e4062f23023090f04e3f09a1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/98/980fdf97e4062f23023090f04e3f09a1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/98/9819b960ebb44ab7c41bbf0566516170.bin b/common/runtime/cache/98/9819b960ebb44ab7c41bbf0566516170.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/98/9819b960ebb44ab7c41bbf0566516170.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/98/982ac56a792a2d2df5e5fe71a23459f2.bin b/common/runtime/cache/98/982ac56a792a2d2df5e5fe71a23459f2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/98/982ac56a792a2d2df5e5fe71a23459f2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/98/9833224c9c3ea95a27a970a379b12145.bin b/common/runtime/cache/98/9833224c9c3ea95a27a970a379b12145.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/98/9833224c9c3ea95a27a970a379b12145.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/98/9853486d0a63bd2293e0c95332f6a254.bin b/common/runtime/cache/98/9853486d0a63bd2293e0c95332f6a254.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/98/9853486d0a63bd2293e0c95332f6a254.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/98/986d18e89ad0b8f726f3da5d3051f7db.bin b/common/runtime/cache/98/986d18e89ad0b8f726f3da5d3051f7db.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/98/986d18e89ad0b8f726f3da5d3051f7db.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/98/9871621b79322fac007cc142299d5ee7.bin b/common/runtime/cache/98/9871621b79322fac007cc142299d5ee7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/98/9871621b79322fac007cc142299d5ee7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/98/988e0f735a9afbb43e1b2369c08be57a.bin b/common/runtime/cache/98/988e0f735a9afbb43e1b2369c08be57a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/98/988e0f735a9afbb43e1b2369c08be57a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/98/98925dcb969286e44c3b80c150e101df.bin b/common/runtime/cache/98/98925dcb969286e44c3b80c150e101df.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/98/98925dcb969286e44c3b80c150e101df.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/98/98a9debabfab3a22153d8684edd06c00.bin b/common/runtime/cache/98/98a9debabfab3a22153d8684edd06c00.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/98/98a9debabfab3a22153d8684edd06c00.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/98/98b024c0a58d020610355f5a59ba23d9.bin b/common/runtime/cache/98/98b024c0a58d020610355f5a59ba23d9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/98/98b024c0a58d020610355f5a59ba23d9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/98/98b28e626d3ecf02124a19772db7d3d8.bin b/common/runtime/cache/98/98b28e626d3ecf02124a19772db7d3d8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/98/98b28e626d3ecf02124a19772db7d3d8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/98/98b4be422eecf08834e11d14c6821de0.bin b/common/runtime/cache/98/98b4be422eecf08834e11d14c6821de0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/98/98b4be422eecf08834e11d14c6821de0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/98/98cdd068b35553053c7378926cef6c95.bin b/common/runtime/cache/98/98cdd068b35553053c7378926cef6c95.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/98/98cdd068b35553053c7378926cef6c95.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/990dfd9673c8d7fbe1f8a2a9a5eefec6.bin b/common/runtime/cache/99/990dfd9673c8d7fbe1f8a2a9a5eefec6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/99/990dfd9673c8d7fbe1f8a2a9a5eefec6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/9920f333cc96e7e52b8f152f606059a6.bin b/common/runtime/cache/99/9920f333cc96e7e52b8f152f606059a6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/99/9920f333cc96e7e52b8f152f606059a6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/99389f4c8b68db779574f7e23b2ecb9f.bin b/common/runtime/cache/99/99389f4c8b68db779574f7e23b2ecb9f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/99/99389f4c8b68db779574f7e23b2ecb9f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/993fde7beb1f7cc013fbc8c6b0386393.bin b/common/runtime/cache/99/993fde7beb1f7cc013fbc8c6b0386393.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/99/993fde7beb1f7cc013fbc8c6b0386393.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/9941605591f88574662a95ce1bce2b3b.bin b/common/runtime/cache/99/9941605591f88574662a95ce1bce2b3b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/99/9941605591f88574662a95ce1bce2b3b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/994160628a01c2e8096e1c5d398d3173.bin b/common/runtime/cache/99/994160628a01c2e8096e1c5d398d3173.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/99/994160628a01c2e8096e1c5d398d3173.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/995b98068a3590c79ce64e25c40669cc.bin b/common/runtime/cache/99/995b98068a3590c79ce64e25c40669cc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/99/995b98068a3590c79ce64e25c40669cc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/99735efa0b6b17238a3fa79ded79b245.bin b/common/runtime/cache/99/99735efa0b6b17238a3fa79ded79b245.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/99/99735efa0b6b17238a3fa79ded79b245.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/9988272a63d09fdbae3ae97f7a212c5a.bin b/common/runtime/cache/99/9988272a63d09fdbae3ae97f7a212c5a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/99/9988272a63d09fdbae3ae97f7a212c5a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/998dbc1d3ebc8f3b5610c8c51624882b.bin b/common/runtime/cache/99/998dbc1d3ebc8f3b5610c8c51624882b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/99/998dbc1d3ebc8f3b5610c8c51624882b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/999430093bebb92207070ae8767a4d63.bin b/common/runtime/cache/99/999430093bebb92207070ae8767a4d63.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/99/999430093bebb92207070ae8767a4d63.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/999b68a7ae37a04c25178ac646f2cefd.bin b/common/runtime/cache/99/999b68a7ae37a04c25178ac646f2cefd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/99/999b68a7ae37a04c25178ac646f2cefd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/999dc6721ba6f38bd563486938c957b4.bin b/common/runtime/cache/99/999dc6721ba6f38bd563486938c957b4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/99/999dc6721ba6f38bd563486938c957b4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/99aeec3c82939f148462f99e85d59c0c.bin b/common/runtime/cache/99/99aeec3c82939f148462f99e85d59c0c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/99/99aeec3c82939f148462f99e85d59c0c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/99badfb2f73bf7197b26ed0a698b9142.bin b/common/runtime/cache/99/99badfb2f73bf7197b26ed0a698b9142.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/99/99badfb2f73bf7197b26ed0a698b9142.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/99c93381d2ad39fc556f8d717bade0ac.bin b/common/runtime/cache/99/99c93381d2ad39fc556f8d717bade0ac.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/99/99c93381d2ad39fc556f8d717bade0ac.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/99cc66423ffe4c80ab2d91b3fbb4e099.bin b/common/runtime/cache/99/99cc66423ffe4c80ab2d91b3fbb4e099.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/99/99cc66423ffe4c80ab2d91b3fbb4e099.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/99d3161037949c49748afe3b78a368b5.bin b/common/runtime/cache/99/99d3161037949c49748afe3b78a368b5.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/99/99d3161037949c49748afe3b78a368b5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/99eebe6df4682216cb30c8e706d7fb3a.bin b/common/runtime/cache/99/99eebe6df4682216cb30c8e706d7fb3a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/99/99eebe6df4682216cb30c8e706d7fb3a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/99/99efdc4df7999ad83fcdeaff70498ea1.bin b/common/runtime/cache/99/99efdc4df7999ad83fcdeaff70498ea1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/99/99efdc4df7999ad83fcdeaff70498ea1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9a/9a01844a21bbc0b111c9624db76b1f35.bin b/common/runtime/cache/9a/9a01844a21bbc0b111c9624db76b1f35.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9a/9a01844a21bbc0b111c9624db76b1f35.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9a/9a1335c0ed0b29babc013d9ae7f4924e.bin b/common/runtime/cache/9a/9a1335c0ed0b29babc013d9ae7f4924e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9a/9a1335c0ed0b29babc013d9ae7f4924e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9a/9a4bd31589a0690594910a4b4ee1f778.bin b/common/runtime/cache/9a/9a4bd31589a0690594910a4b4ee1f778.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9a/9a4bd31589a0690594910a4b4ee1f778.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9a/9a55d90b96d8ca33e8245d752f68f9a4.bin b/common/runtime/cache/9a/9a55d90b96d8ca33e8245d752f68f9a4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9a/9a55d90b96d8ca33e8245d752f68f9a4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9a/9a61644d69ba9043c8f8ea79c961885e.bin b/common/runtime/cache/9a/9a61644d69ba9043c8f8ea79c961885e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9a/9a61644d69ba9043c8f8ea79c961885e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9a/9a8bd7135b94b8f99b9a5b20772f57cf.bin b/common/runtime/cache/9a/9a8bd7135b94b8f99b9a5b20772f57cf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9a/9a8bd7135b94b8f99b9a5b20772f57cf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9a/9a9ca655e2e8d91a1400b2cc1ef8d14d.bin b/common/runtime/cache/9a/9a9ca655e2e8d91a1400b2cc1ef8d14d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9a/9a9ca655e2e8d91a1400b2cc1ef8d14d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9a/9ad38c639061e1484afcea4bc625819c.bin b/common/runtime/cache/9a/9ad38c639061e1484afcea4bc625819c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9a/9ad38c639061e1484afcea4bc625819c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9a/9ae898f1172441fcc0eb1e8a2384430b.bin b/common/runtime/cache/9a/9ae898f1172441fcc0eb1e8a2384430b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9a/9ae898f1172441fcc0eb1e8a2384430b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9a/9af765599b9948fb39396721aa333497.bin b/common/runtime/cache/9a/9af765599b9948fb39396721aa333497.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9a/9af765599b9948fb39396721aa333497.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9b/9b1939cdde7ae154c9dc9b769b7b045e.bin b/common/runtime/cache/9b/9b1939cdde7ae154c9dc9b769b7b045e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9b/9b1939cdde7ae154c9dc9b769b7b045e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9b/9b439f3fdb4a1818b01a8e6637a5d786.bin b/common/runtime/cache/9b/9b439f3fdb4a1818b01a8e6637a5d786.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9b/9b439f3fdb4a1818b01a8e6637a5d786.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9b/9b45f8fbaf47b7fadd51107e46d8a370.bin b/common/runtime/cache/9b/9b45f8fbaf47b7fadd51107e46d8a370.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9b/9b45f8fbaf47b7fadd51107e46d8a370.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9b/9b493ecb7a7d40e955a307414262d039.bin b/common/runtime/cache/9b/9b493ecb7a7d40e955a307414262d039.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9b/9b493ecb7a7d40e955a307414262d039.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9b/9b58f5d8835e917cca82547582da1b3e.bin b/common/runtime/cache/9b/9b58f5d8835e917cca82547582da1b3e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9b/9b58f5d8835e917cca82547582da1b3e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9b/9b6f91875b97d2f8a88c6418edc802d7.bin b/common/runtime/cache/9b/9b6f91875b97d2f8a88c6418edc802d7.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9b/9b6f91875b97d2f8a88c6418edc802d7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9b/9b80138387d868c1fe9e1bb9335aaadb.bin b/common/runtime/cache/9b/9b80138387d868c1fe9e1bb9335aaadb.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9b/9b80138387d868c1fe9e1bb9335aaadb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9b/9b9c250557e312edb5d41d14a4717e5c.bin b/common/runtime/cache/9b/9b9c250557e312edb5d41d14a4717e5c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9b/9b9c250557e312edb5d41d14a4717e5c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9b/9bb259ba51a62dd783cf98a36f2c44bb.bin b/common/runtime/cache/9b/9bb259ba51a62dd783cf98a36f2c44bb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9b/9bb259ba51a62dd783cf98a36f2c44bb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9b/9bbae34c37e5da90bd81d73d5a2b495a.bin b/common/runtime/cache/9b/9bbae34c37e5da90bd81d73d5a2b495a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9b/9bbae34c37e5da90bd81d73d5a2b495a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9b/9bbb8513a4205c83c142df08cc20d303.bin b/common/runtime/cache/9b/9bbb8513a4205c83c142df08cc20d303.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9b/9bbb8513a4205c83c142df08cc20d303.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9b/9bbdbd01b56ae4fd995b43ab7f8d67cd.bin b/common/runtime/cache/9b/9bbdbd01b56ae4fd995b43ab7f8d67cd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9b/9bbdbd01b56ae4fd995b43ab7f8d67cd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9b/9bd9be562c394877eff6307e58c6411b.bin b/common/runtime/cache/9b/9bd9be562c394877eff6307e58c6411b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9b/9bd9be562c394877eff6307e58c6411b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9b/9beddbc74c049ec00fccb98ed799132e.bin b/common/runtime/cache/9b/9beddbc74c049ec00fccb98ed799132e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9b/9beddbc74c049ec00fccb98ed799132e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9c/9c0ff94a9c620a034350cc97ff9a8dbd.bin b/common/runtime/cache/9c/9c0ff94a9c620a034350cc97ff9a8dbd.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9c/9c0ff94a9c620a034350cc97ff9a8dbd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9c/9c321886a8b991cf94793e22b4fab1ed.bin b/common/runtime/cache/9c/9c321886a8b991cf94793e22b4fab1ed.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9c/9c321886a8b991cf94793e22b4fab1ed.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9c/9c3faf5aef3145576a79b392aa35cdd8.bin b/common/runtime/cache/9c/9c3faf5aef3145576a79b392aa35cdd8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9c/9c3faf5aef3145576a79b392aa35cdd8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9c/9c53ac2275d38b727cae9e7a0e73cae9.bin b/common/runtime/cache/9c/9c53ac2275d38b727cae9e7a0e73cae9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9c/9c53ac2275d38b727cae9e7a0e73cae9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9c/9c6573c10d7ff901f8a9c6026dec99d6.bin b/common/runtime/cache/9c/9c6573c10d7ff901f8a9c6026dec99d6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9c/9c6573c10d7ff901f8a9c6026dec99d6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9c/9c73cbe8cbfb13bcd1aedede4fffb4ee.bin b/common/runtime/cache/9c/9c73cbe8cbfb13bcd1aedede4fffb4ee.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9c/9c73cbe8cbfb13bcd1aedede4fffb4ee.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9c/9c7fb1b9cc077530d865e80a9fd472ab.bin b/common/runtime/cache/9c/9c7fb1b9cc077530d865e80a9fd472ab.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9c/9c7fb1b9cc077530d865e80a9fd472ab.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9c/9c848cb3dadd0ea5d8ea6964b01f1e23.bin b/common/runtime/cache/9c/9c848cb3dadd0ea5d8ea6964b01f1e23.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9c/9c848cb3dadd0ea5d8ea6964b01f1e23.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9c/9ca8892b2db503a6a43c6396cfcb0c41.bin b/common/runtime/cache/9c/9ca8892b2db503a6a43c6396cfcb0c41.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9c/9ca8892b2db503a6a43c6396cfcb0c41.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9c/9cb9fb488f5c8eb8e79269cc2531bdab.bin b/common/runtime/cache/9c/9cb9fb488f5c8eb8e79269cc2531bdab.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9c/9cb9fb488f5c8eb8e79269cc2531bdab.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9c/9ccdad560c6dabd4839f91b7952d58e9.bin b/common/runtime/cache/9c/9ccdad560c6dabd4839f91b7952d58e9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9c/9ccdad560c6dabd4839f91b7952d58e9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9c/9cd01b8da743212b96227848ed661ce6.bin b/common/runtime/cache/9c/9cd01b8da743212b96227848ed661ce6.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9c/9cd01b8da743212b96227848ed661ce6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9c/9cd27616838ee53304ff3ad532dae150.bin b/common/runtime/cache/9c/9cd27616838ee53304ff3ad532dae150.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9c/9cd27616838ee53304ff3ad532dae150.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9c/9ce94a1a9fac6bbcaea33856aa5f6236.bin b/common/runtime/cache/9c/9ce94a1a9fac6bbcaea33856aa5f6236.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9c/9ce94a1a9fac6bbcaea33856aa5f6236.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9c/9cf85642816cdeed0fd8ccf8199b6c3c.bin b/common/runtime/cache/9c/9cf85642816cdeed0fd8ccf8199b6c3c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9c/9cf85642816cdeed0fd8ccf8199b6c3c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9d/9d021e81150443fdd359c47aba9fc021.bin b/common/runtime/cache/9d/9d021e81150443fdd359c47aba9fc021.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9d/9d021e81150443fdd359c47aba9fc021.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9d/9d118faafebf125cd1676533f11841b5.bin b/common/runtime/cache/9d/9d118faafebf125cd1676533f11841b5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9d/9d118faafebf125cd1676533f11841b5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9d/9d371d057cd636ada523e76ed298536a.bin b/common/runtime/cache/9d/9d371d057cd636ada523e76ed298536a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9d/9d371d057cd636ada523e76ed298536a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9d/9d41171b29739a22f07198d13a8dcc3a.bin b/common/runtime/cache/9d/9d41171b29739a22f07198d13a8dcc3a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9d/9d41171b29739a22f07198d13a8dcc3a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9d/9d61a00d07ba3222954329317231958b.bin b/common/runtime/cache/9d/9d61a00d07ba3222954329317231958b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9d/9d61a00d07ba3222954329317231958b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9d/9d64ee7ff5806d4e4771630fbaf094db.bin b/common/runtime/cache/9d/9d64ee7ff5806d4e4771630fbaf094db.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9d/9d64ee7ff5806d4e4771630fbaf094db.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9d/9d78ab044cedf826bb6d12273eca1a44.bin b/common/runtime/cache/9d/9d78ab044cedf826bb6d12273eca1a44.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9d/9d78ab044cedf826bb6d12273eca1a44.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9d/9d7a6a4e605381977e003d3a00243a1d.bin b/common/runtime/cache/9d/9d7a6a4e605381977e003d3a00243a1d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9d/9d7a6a4e605381977e003d3a00243a1d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9d/9d8029d4e8f7310b57c078d947491d12.bin b/common/runtime/cache/9d/9d8029d4e8f7310b57c078d947491d12.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9d/9d8029d4e8f7310b57c078d947491d12.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9d/9d97c3c5b2bd65d05fabafea6384a63e.bin b/common/runtime/cache/9d/9d97c3c5b2bd65d05fabafea6384a63e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9d/9d97c3c5b2bd65d05fabafea6384a63e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9d/9da5879c62d1d984e48f2d4599ae9adf.bin b/common/runtime/cache/9d/9da5879c62d1d984e48f2d4599ae9adf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9d/9da5879c62d1d984e48f2d4599ae9adf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9d/9dbd733b891aa0a465f91aa88b0a4199.bin b/common/runtime/cache/9d/9dbd733b891aa0a465f91aa88b0a4199.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9d/9dbd733b891aa0a465f91aa88b0a4199.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9d/9ddd61f815933fc1f45100ed2d3206af.bin b/common/runtime/cache/9d/9ddd61f815933fc1f45100ed2d3206af.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9d/9ddd61f815933fc1f45100ed2d3206af.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9e/9e0d8c84bfd7bae5f51e12d5a1e2e120.bin b/common/runtime/cache/9e/9e0d8c84bfd7bae5f51e12d5a1e2e120.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9e/9e0d8c84bfd7bae5f51e12d5a1e2e120.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9e/9e2dd212eb6342027e19b4dc8d954bb3.bin b/common/runtime/cache/9e/9e2dd212eb6342027e19b4dc8d954bb3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9e/9e2dd212eb6342027e19b4dc8d954bb3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9e/9e4c20e61a6d749f1a72afb9764e251c.bin b/common/runtime/cache/9e/9e4c20e61a6d749f1a72afb9764e251c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9e/9e4c20e61a6d749f1a72afb9764e251c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9e/9e4e6b91d2506dc29011096f82a07a35.bin b/common/runtime/cache/9e/9e4e6b91d2506dc29011096f82a07a35.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9e/9e4e6b91d2506dc29011096f82a07a35.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9e/9e5fd468a84cc30cb037af8d05ecf3b7.bin b/common/runtime/cache/9e/9e5fd468a84cc30cb037af8d05ecf3b7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9e/9e5fd468a84cc30cb037af8d05ecf3b7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9e/9e7804d6eafe294520ad21f7a6a0e89a.bin b/common/runtime/cache/9e/9e7804d6eafe294520ad21f7a6a0e89a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9e/9e7804d6eafe294520ad21f7a6a0e89a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9e/9e79b78beafbda17a732a466d729937b.bin b/common/runtime/cache/9e/9e79b78beafbda17a732a466d729937b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9e/9e79b78beafbda17a732a466d729937b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9e/9e7c9ed322eae51cfee630b9278ff293.bin b/common/runtime/cache/9e/9e7c9ed322eae51cfee630b9278ff293.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9e/9e7c9ed322eae51cfee630b9278ff293.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9e/9e8447ee2fa8bc2b216221bab400ff39.bin b/common/runtime/cache/9e/9e8447ee2fa8bc2b216221bab400ff39.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9e/9e8447ee2fa8bc2b216221bab400ff39.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9e/9e920bdc8255c6aab5b9df5bd227822a.bin b/common/runtime/cache/9e/9e920bdc8255c6aab5b9df5bd227822a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9e/9e920bdc8255c6aab5b9df5bd227822a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9e/9ea0e48875ac5ccb1b98969d9bac0be0.bin b/common/runtime/cache/9e/9ea0e48875ac5ccb1b98969d9bac0be0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9e/9ea0e48875ac5ccb1b98969d9bac0be0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9e/9ed197766895d9a947f74824a493c80d.bin b/common/runtime/cache/9e/9ed197766895d9a947f74824a493c80d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9e/9ed197766895d9a947f74824a493c80d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9e/9ef0e7c362c0ff7ecca44b2b5fd29678.bin b/common/runtime/cache/9e/9ef0e7c362c0ff7ecca44b2b5fd29678.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9e/9ef0e7c362c0ff7ecca44b2b5fd29678.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9e/9efb4bb0193f91e09ba9c0abc90b267c.bin b/common/runtime/cache/9e/9efb4bb0193f91e09ba9c0abc90b267c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9e/9efb4bb0193f91e09ba9c0abc90b267c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9f/9f08e11f22b265586e0e3c9761291d0c.bin b/common/runtime/cache/9f/9f08e11f22b265586e0e3c9761291d0c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9f/9f08e11f22b265586e0e3c9761291d0c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9f/9f2198b057f80e69d93bbba7a7c78770.bin b/common/runtime/cache/9f/9f2198b057f80e69d93bbba7a7c78770.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9f/9f2198b057f80e69d93bbba7a7c78770.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9f/9f21d2e20bb3c56ed88158c24c88520c.bin b/common/runtime/cache/9f/9f21d2e20bb3c56ed88158c24c88520c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9f/9f21d2e20bb3c56ed88158c24c88520c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9f/9f436fc0e8f5186049c7e2ea2738e731.bin b/common/runtime/cache/9f/9f436fc0e8f5186049c7e2ea2738e731.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9f/9f436fc0e8f5186049c7e2ea2738e731.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9f/9f65f2064fb62bba740a12adb56bc9dc.bin b/common/runtime/cache/9f/9f65f2064fb62bba740a12adb56bc9dc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9f/9f65f2064fb62bba740a12adb56bc9dc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9f/9f6fc213eaf286519ae0612a35be5e65.bin b/common/runtime/cache/9f/9f6fc213eaf286519ae0612a35be5e65.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9f/9f6fc213eaf286519ae0612a35be5e65.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9f/9f748c2c6e65916cad8a493d8ec77a14.bin b/common/runtime/cache/9f/9f748c2c6e65916cad8a493d8ec77a14.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9f/9f748c2c6e65916cad8a493d8ec77a14.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9f/9f7b39aa391f2b758b1c6de395b81ae8.bin b/common/runtime/cache/9f/9f7b39aa391f2b758b1c6de395b81ae8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9f/9f7b39aa391f2b758b1c6de395b81ae8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9f/9f8c57f022f3bf8c2726238e978dfacb.bin b/common/runtime/cache/9f/9f8c57f022f3bf8c2726238e978dfacb.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9f/9f8c57f022f3bf8c2726238e978dfacb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9f/9f961fef11c296e44571964693014080.bin b/common/runtime/cache/9f/9f961fef11c296e44571964693014080.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9f/9f961fef11c296e44571964693014080.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9f/9fc0084fa7716e81ad3aaf989c4762fe.bin b/common/runtime/cache/9f/9fc0084fa7716e81ad3aaf989c4762fe.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9f/9fc0084fa7716e81ad3aaf989c4762fe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9f/9fc91028189d087333c61aa59d164852.bin b/common/runtime/cache/9f/9fc91028189d087333c61aa59d164852.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/9f/9fc91028189d087333c61aa59d164852.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9f/9fd5a3dc0197531c82b118401808c7d1.bin b/common/runtime/cache/9f/9fd5a3dc0197531c82b118401808c7d1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9f/9fd5a3dc0197531c82b118401808c7d1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9f/9fd9b3a48f982835d9876bf2b8535f94.bin b/common/runtime/cache/9f/9fd9b3a48f982835d9876bf2b8535f94.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9f/9fd9b3a48f982835d9876bf2b8535f94.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9f/9fe27ad46c04a9c734bf03f425090ded.bin b/common/runtime/cache/9f/9fe27ad46c04a9c734bf03f425090ded.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9f/9fe27ad46c04a9c734bf03f425090ded.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/9f/9ffb107980ee575d5cb55795b7cd3f4f.bin b/common/runtime/cache/9f/9ffb107980ee575d5cb55795b7cd3f4f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/9f/9ffb107980ee575d5cb55795b7cd3f4f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a0/a022cfd374ed74016b0e0a884de9a03b.bin b/common/runtime/cache/a0/a022cfd374ed74016b0e0a884de9a03b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a0/a022cfd374ed74016b0e0a884de9a03b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a0/a0722c0facb2376acacdfe031fc58812.bin b/common/runtime/cache/a0/a0722c0facb2376acacdfe031fc58812.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a0/a0722c0facb2376acacdfe031fc58812.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a0/a091ff63036968845ced3730aee66903.bin b/common/runtime/cache/a0/a091ff63036968845ced3730aee66903.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a0/a091ff63036968845ced3730aee66903.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a0/a094f411e9e43acbef6bb57e36f3c5cf.bin b/common/runtime/cache/a0/a094f411e9e43acbef6bb57e36f3c5cf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a0/a094f411e9e43acbef6bb57e36f3c5cf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a0/a099f12d3eae13144f4164453ecc7db3.bin b/common/runtime/cache/a0/a099f12d3eae13144f4164453ecc7db3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a0/a099f12d3eae13144f4164453ecc7db3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a0/a09bb566e75a2c5090e74db61ba8ff81.bin b/common/runtime/cache/a0/a09bb566e75a2c5090e74db61ba8ff81.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a0/a09bb566e75a2c5090e74db61ba8ff81.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a0/a09d765671dde8bf411ca21fdfacd5b8.bin b/common/runtime/cache/a0/a09d765671dde8bf411ca21fdfacd5b8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a0/a09d765671dde8bf411ca21fdfacd5b8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a0/a0a2fdf36b97d26180395b595f6c1831.bin b/common/runtime/cache/a0/a0a2fdf36b97d26180395b595f6c1831.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a0/a0a2fdf36b97d26180395b595f6c1831.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a0/a0b7c70a8b2f6870583b48f2b848226d.bin b/common/runtime/cache/a0/a0b7c70a8b2f6870583b48f2b848226d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a0/a0b7c70a8b2f6870583b48f2b848226d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a1/a1021410ff38a526df46a401583bfcda.bin b/common/runtime/cache/a1/a1021410ff38a526df46a401583bfcda.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a1/a1021410ff38a526df46a401583bfcda.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a1/a1065dd974e91ce1d2b5101f36f5b53a.bin b/common/runtime/cache/a1/a1065dd974e91ce1d2b5101f36f5b53a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a1/a1065dd974e91ce1d2b5101f36f5b53a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a1/a107fff8de5841488ef6f258b9f0a51b.bin b/common/runtime/cache/a1/a107fff8de5841488ef6f258b9f0a51b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a1/a107fff8de5841488ef6f258b9f0a51b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a1/a17228ab5bba73809389b57ea81e8439.bin b/common/runtime/cache/a1/a17228ab5bba73809389b57ea81e8439.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a1/a17228ab5bba73809389b57ea81e8439.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a1/a17be7588d2034f733693239be62d244.bin b/common/runtime/cache/a1/a17be7588d2034f733693239be62d244.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a1/a17be7588d2034f733693239be62d244.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a1/a18ea60d628814e463b48d9472bbf66f.bin b/common/runtime/cache/a1/a18ea60d628814e463b48d9472bbf66f.bin new file mode 100644 index 0000000..eb56e38 --- /dev/null +++ b/common/runtime/cache/a1/a18ea60d628814e463b48d9472bbf66f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:3:{s:2:"id";i:1;s:3:"tid";i:2;s:4:"path";s:27:"post/category/news/politics";}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a1/a1a196a1e8af3ec61d87b712ca295fc4.bin b/common/runtime/cache/a1/a1a196a1e8af3ec61d87b712ca295fc4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a1/a1a196a1e8af3ec61d87b712ca295fc4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a1/a1a93e193930a2fd6080a4b5d771ec69.bin b/common/runtime/cache/a1/a1a93e193930a2fd6080a4b5d771ec69.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a1/a1a93e193930a2fd6080a4b5d771ec69.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a1/a1cc0238b4182cb4f9672dbd112b087a.bin b/common/runtime/cache/a1/a1cc0238b4182cb4f9672dbd112b087a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a1/a1cc0238b4182cb4f9672dbd112b087a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a1/a1e889a84a885561d28de4f62a6e5acd.bin b/common/runtime/cache/a1/a1e889a84a885561d28de4f62a6e5acd.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a1/a1e889a84a885561d28de4f62a6e5acd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a2/a269178c50eacfef12bb00ec208278c1.bin b/common/runtime/cache/a2/a269178c50eacfef12bb00ec208278c1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a2/a269178c50eacfef12bb00ec208278c1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a2/a28a52e513c09b1b385330deabcf5be4.bin b/common/runtime/cache/a2/a28a52e513c09b1b385330deabcf5be4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a2/a28a52e513c09b1b385330deabcf5be4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a2/a297ed6e197f941ee850aa20c289593e.bin b/common/runtime/cache/a2/a297ed6e197f941ee850aa20c289593e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a2/a297ed6e197f941ee850aa20c289593e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a2/a2a12890e4780fbaec49b7b25f1e3c48.bin b/common/runtime/cache/a2/a2a12890e4780fbaec49b7b25f1e3c48.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a2/a2a12890e4780fbaec49b7b25f1e3c48.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a2/a2c8eabcda6eed53f70bf6b2fe4d8f69.bin b/common/runtime/cache/a2/a2c8eabcda6eed53f70bf6b2fe4d8f69.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a2/a2c8eabcda6eed53f70bf6b2fe4d8f69.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a302b4bb53d00349f52cec0be84dcdb9.bin b/common/runtime/cache/a3/a302b4bb53d00349f52cec0be84dcdb9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a3/a302b4bb53d00349f52cec0be84dcdb9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a309a628db93292f5d3e73ab78b4b7dd.bin b/common/runtime/cache/a3/a309a628db93292f5d3e73ab78b4b7dd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a3/a309a628db93292f5d3e73ab78b4b7dd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a3248dadc34c770eaf5b7e2d753f79ec.bin b/common/runtime/cache/a3/a3248dadc34c770eaf5b7e2d753f79ec.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a3/a3248dadc34c770eaf5b7e2d753f79ec.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a33e66a029fecc8a57f48b3bcd68edce.bin b/common/runtime/cache/a3/a33e66a029fecc8a57f48b3bcd68edce.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a3/a33e66a029fecc8a57f48b3bcd68edce.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a347761796a85830048b383ba91068dc.bin b/common/runtime/cache/a3/a347761796a85830048b383ba91068dc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a3/a347761796a85830048b383ba91068dc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a3583aae4164fc969fde434840bd7c34.bin b/common/runtime/cache/a3/a3583aae4164fc969fde434840bd7c34.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a3/a3583aae4164fc969fde434840bd7c34.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a3879754d1686ba1dc99c5dfdb5b3fa1.bin b/common/runtime/cache/a3/a3879754d1686ba1dc99c5dfdb5b3fa1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a3/a3879754d1686ba1dc99c5dfdb5b3fa1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a38da88408d00a9f28e0be394b83bd1c.bin b/common/runtime/cache/a3/a38da88408d00a9f28e0be394b83bd1c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a3/a38da88408d00a9f28e0be394b83bd1c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a3a0d28fe8d4abd841b38d8dea2cd296.bin b/common/runtime/cache/a3/a3a0d28fe8d4abd841b38d8dea2cd296.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a3/a3a0d28fe8d4abd841b38d8dea2cd296.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a3a1140caee48e71efcc547f99a5fe75.bin b/common/runtime/cache/a3/a3a1140caee48e71efcc547f99a5fe75.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a3/a3a1140caee48e71efcc547f99a5fe75.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a3aaff01259309fb7c403b0693cefbf6.bin b/common/runtime/cache/a3/a3aaff01259309fb7c403b0693cefbf6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a3/a3aaff01259309fb7c403b0693cefbf6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a3bf68080552798c604bfff0c07fa468.bin b/common/runtime/cache/a3/a3bf68080552798c604bfff0c07fa468.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a3/a3bf68080552798c604bfff0c07fa468.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a3cfb43abfd79f43145482ee56282fa7.bin b/common/runtime/cache/a3/a3cfb43abfd79f43145482ee56282fa7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a3/a3cfb43abfd79f43145482ee56282fa7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a3dcd6df6982f0cb5ed67d71bc917e2e.bin b/common/runtime/cache/a3/a3dcd6df6982f0cb5ed67d71bc917e2e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a3/a3dcd6df6982f0cb5ed67d71bc917e2e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a3e9d1f797d5a7a59d81bf4295c9ee1c.bin b/common/runtime/cache/a3/a3e9d1f797d5a7a59d81bf4295c9ee1c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a3/a3e9d1f797d5a7a59d81bf4295c9ee1c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a3f0945d06536ce99a23a7d561cc78cf.bin b/common/runtime/cache/a3/a3f0945d06536ce99a23a7d561cc78cf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a3/a3f0945d06536ce99a23a7d561cc78cf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a3f0e1a6690d5114a86f6efbe7462739.bin b/common/runtime/cache/a3/a3f0e1a6690d5114a86f6efbe7462739.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a3/a3f0e1a6690d5114a86f6efbe7462739.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a3/a3f9a5c4c0f65ca46bafe794750b6a83.bin b/common/runtime/cache/a3/a3f9a5c4c0f65ca46bafe794750b6a83.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a3/a3f9a5c4c0f65ca46bafe794750b6a83.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a4/a414944f392afed018515d3bc683f694.bin b/common/runtime/cache/a4/a414944f392afed018515d3bc683f694.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a4/a414944f392afed018515d3bc683f694.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a4/a42bca1e46fe331b8a7dc72910126a50.bin b/common/runtime/cache/a4/a42bca1e46fe331b8a7dc72910126a50.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a4/a42bca1e46fe331b8a7dc72910126a50.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a4/a432988d2efe136c55670e496cd72be8.bin b/common/runtime/cache/a4/a432988d2efe136c55670e496cd72be8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a4/a432988d2efe136c55670e496cd72be8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a4/a4438bb2c92dca91e36555ac7be5eb09.bin b/common/runtime/cache/a4/a4438bb2c92dca91e36555ac7be5eb09.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a4/a4438bb2c92dca91e36555ac7be5eb09.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a4/a44ea2a067f1dbda7042321fbc9da931.bin b/common/runtime/cache/a4/a44ea2a067f1dbda7042321fbc9da931.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a4/a44ea2a067f1dbda7042321fbc9da931.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a4/a49fdf2bb0cbdab95c52d0329e4b0d80.bin b/common/runtime/cache/a4/a49fdf2bb0cbdab95c52d0329e4b0d80.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a4/a49fdf2bb0cbdab95c52d0329e4b0d80.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a4/a4abdcdbca4eb268005c4f1fea07733a.bin b/common/runtime/cache/a4/a4abdcdbca4eb268005c4f1fea07733a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a4/a4abdcdbca4eb268005c4f1fea07733a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a4/a4c5c95c3553127f03088a11ab3a652e.bin b/common/runtime/cache/a4/a4c5c95c3553127f03088a11ab3a652e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a4/a4c5c95c3553127f03088a11ab3a652e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a4/a4d07c96cc0d0d5c89bd6c26e16f6c67.bin b/common/runtime/cache/a4/a4d07c96cc0d0d5c89bd6c26e16f6c67.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a4/a4d07c96cc0d0d5c89bd6c26e16f6c67.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a4/a4ed57f98c54a332d706ed8199cc42b4.bin b/common/runtime/cache/a4/a4ed57f98c54a332d706ed8199cc42b4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a4/a4ed57f98c54a332d706ed8199cc42b4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a4/a4f911cd4edaa58b00a89417a74938cb.bin b/common/runtime/cache/a4/a4f911cd4edaa58b00a89417a74938cb.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a4/a4f911cd4edaa58b00a89417a74938cb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a5/a50463253bb2d1700ed4ecc74a47a5e1.bin b/common/runtime/cache/a5/a50463253bb2d1700ed4ecc74a47a5e1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a5/a50463253bb2d1700ed4ecc74a47a5e1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a5/a5366005a4a2fe35ab2a85037bd9be2c.bin b/common/runtime/cache/a5/a5366005a4a2fe35ab2a85037bd9be2c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a5/a5366005a4a2fe35ab2a85037bd9be2c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a5/a55b452819cc4e00c43ead4088ed0303.bin b/common/runtime/cache/a5/a55b452819cc4e00c43ead4088ed0303.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a5/a55b452819cc4e00c43ead4088ed0303.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a5/a562d4803d5e3366e79931c1793752e0.bin b/common/runtime/cache/a5/a562d4803d5e3366e79931c1793752e0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a5/a562d4803d5e3366e79931c1793752e0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a5/a57f05ac887761494a7208a8ffd3aed7.bin b/common/runtime/cache/a5/a57f05ac887761494a7208a8ffd3aed7.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a5/a57f05ac887761494a7208a8ffd3aed7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a5/a589e06f2b01a0ca33cc70c9a752ffe2.bin b/common/runtime/cache/a5/a589e06f2b01a0ca33cc70c9a752ffe2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a5/a589e06f2b01a0ca33cc70c9a752ffe2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a5/a591bdb0c88676531181fa5cc257b8d7.bin b/common/runtime/cache/a5/a591bdb0c88676531181fa5cc257b8d7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a5/a591bdb0c88676531181fa5cc257b8d7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a5/a59441e2967d8bbaa239d8c8237e7f3d.bin b/common/runtime/cache/a5/a59441e2967d8bbaa239d8c8237e7f3d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a5/a59441e2967d8bbaa239d8c8237e7f3d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a5/a597d76d121d50f6339aaacf28751158.bin b/common/runtime/cache/a5/a597d76d121d50f6339aaacf28751158.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a5/a597d76d121d50f6339aaacf28751158.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a5/a5ba1acd3cf9a102cb9561bcf58d2f7f.bin b/common/runtime/cache/a5/a5ba1acd3cf9a102cb9561bcf58d2f7f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a5/a5ba1acd3cf9a102cb9561bcf58d2f7f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a5/a5cab687ffa0cf69639050258ec72804.bin b/common/runtime/cache/a5/a5cab687ffa0cf69639050258ec72804.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a5/a5cab687ffa0cf69639050258ec72804.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a5/a5eb43b09bc9d4b891134ef2deb7a8f6.bin b/common/runtime/cache/a5/a5eb43b09bc9d4b891134ef2deb7a8f6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a5/a5eb43b09bc9d4b891134ef2deb7a8f6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a5/a5efcf6d6efa635b905a27ae6f17e524.bin b/common/runtime/cache/a5/a5efcf6d6efa635b905a27ae6f17e524.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a5/a5efcf6d6efa635b905a27ae6f17e524.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a6/a60a2a474a9ec95a0dc63162e785685d.bin b/common/runtime/cache/a6/a60a2a474a9ec95a0dc63162e785685d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a6/a60a2a474a9ec95a0dc63162e785685d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a6/a6204eafaceefc95a2855d8cd9f9c5f6.bin b/common/runtime/cache/a6/a6204eafaceefc95a2855d8cd9f9c5f6.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a6/a6204eafaceefc95a2855d8cd9f9c5f6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a6/a628158ad93681768732b1930be512d0.bin b/common/runtime/cache/a6/a628158ad93681768732b1930be512d0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a6/a628158ad93681768732b1930be512d0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a6/a64ffefddec271e6dd6337dc71e8547c.bin b/common/runtime/cache/a6/a64ffefddec271e6dd6337dc71e8547c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a6/a64ffefddec271e6dd6337dc71e8547c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a6/a6588e7f6fcb1e36b07c4e521726a18c.bin b/common/runtime/cache/a6/a6588e7f6fcb1e36b07c4e521726a18c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a6/a6588e7f6fcb1e36b07c4e521726a18c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a6/a6638ce8b431d795a2c879eba4d1408a.bin b/common/runtime/cache/a6/a6638ce8b431d795a2c879eba4d1408a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a6/a6638ce8b431d795a2c879eba4d1408a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a6/a66feca67a3d3de5e714d4c4c074026f.bin b/common/runtime/cache/a6/a66feca67a3d3de5e714d4c4c074026f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a6/a66feca67a3d3de5e714d4c4c074026f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a6/a6bcd936e30bb014b9a511df30f0402d.bin b/common/runtime/cache/a6/a6bcd936e30bb014b9a511df30f0402d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a6/a6bcd936e30bb014b9a511df30f0402d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a6/a6f510dba5f316ad1ad448ba9ddc1701.bin b/common/runtime/cache/a6/a6f510dba5f316ad1ad448ba9ddc1701.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a6/a6f510dba5f316ad1ad448ba9ddc1701.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a7/a7215f63bde9ea5b26e1335228bb4544.bin b/common/runtime/cache/a7/a7215f63bde9ea5b26e1335228bb4544.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a7/a7215f63bde9ea5b26e1335228bb4544.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a7/a72206677e379806bc7a471dc15a0eaa.bin b/common/runtime/cache/a7/a72206677e379806bc7a471dc15a0eaa.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a7/a72206677e379806bc7a471dc15a0eaa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a7/a7411c4e756a6b7e7d849323c1df25b1.bin b/common/runtime/cache/a7/a7411c4e756a6b7e7d849323c1df25b1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a7/a7411c4e756a6b7e7d849323c1df25b1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a7/a79121634a76c3a86677d08ef374c40c.bin b/common/runtime/cache/a7/a79121634a76c3a86677d08ef374c40c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a7/a79121634a76c3a86677d08ef374c40c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a7/a7bf97bd1ef67cd839034e414a66f49f.bin b/common/runtime/cache/a7/a7bf97bd1ef67cd839034e414a66f49f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a7/a7bf97bd1ef67cd839034e414a66f49f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a7/a7e86253bfa243442b4fe59983cd66ad.bin b/common/runtime/cache/a7/a7e86253bfa243442b4fe59983cd66ad.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a7/a7e86253bfa243442b4fe59983cd66ad.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a8/a80248ab25dd0d9453aa3ae0c46555ef.bin b/common/runtime/cache/a8/a80248ab25dd0d9453aa3ae0c46555ef.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a8/a80248ab25dd0d9453aa3ae0c46555ef.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a8/a807ca11139b050b4cd191b4ffbc1b3a.bin b/common/runtime/cache/a8/a807ca11139b050b4cd191b4ffbc1b3a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a8/a807ca11139b050b4cd191b4ffbc1b3a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a8/a8135debf52bdc5898f1323ae61c4d23.bin b/common/runtime/cache/a8/a8135debf52bdc5898f1323ae61c4d23.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a8/a8135debf52bdc5898f1323ae61c4d23.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a8/a82b820facda3b4a17188c908f02ab64.bin b/common/runtime/cache/a8/a82b820facda3b4a17188c908f02ab64.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a8/a82b820facda3b4a17188c908f02ab64.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a8/a83e4fbff7a0322b59c9ed5051868f25.bin b/common/runtime/cache/a8/a83e4fbff7a0322b59c9ed5051868f25.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a8/a83e4fbff7a0322b59c9ed5051868f25.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a8/a846fcd7d976b15b91b61eabb5039f53.bin b/common/runtime/cache/a8/a846fcd7d976b15b91b61eabb5039f53.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a8/a846fcd7d976b15b91b61eabb5039f53.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a8/a84c984875688732da5f442a12e5c337.bin b/common/runtime/cache/a8/a84c984875688732da5f442a12e5c337.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a8/a84c984875688732da5f442a12e5c337.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a8/a87016129cadabc182a815a10d840707.bin b/common/runtime/cache/a8/a87016129cadabc182a815a10d840707.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a8/a87016129cadabc182a815a10d840707.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a8/a88eb30a11607571a4486de0f6eb694e.bin b/common/runtime/cache/a8/a88eb30a11607571a4486de0f6eb694e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a8/a88eb30a11607571a4486de0f6eb694e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a8/a8b54b7427abeea1c3584c7b84b14309.bin b/common/runtime/cache/a8/a8b54b7427abeea1c3584c7b84b14309.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a8/a8b54b7427abeea1c3584c7b84b14309.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a8/a8bfb8e54e3b2426100a81db8dbe0962.bin b/common/runtime/cache/a8/a8bfb8e54e3b2426100a81db8dbe0962.bin new file mode 100644 index 0000000..36b178a --- /dev/null +++ b/common/runtime/cache/a8/a8bfb8e54e3b2426100a81db8dbe0962.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";i:13;s:4:"path";s:11:"news/sharap";}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a8/a8dd54b964b61a7bd6273be3def55a05.bin b/common/runtime/cache/a8/a8dd54b964b61a7bd6273be3def55a05.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a8/a8dd54b964b61a7bd6273be3def55a05.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a8/a8f07eedc2550b6ee38ce7b6591d0d58.bin b/common/runtime/cache/a8/a8f07eedc2550b6ee38ce7b6591d0d58.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a8/a8f07eedc2550b6ee38ce7b6591d0d58.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a8/a8f55293ae3731522af0069ad686c51f.bin b/common/runtime/cache/a8/a8f55293ae3731522af0069ad686c51f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a8/a8f55293ae3731522af0069ad686c51f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a9/a932d396c75051eeffe60c84a47fbc73.bin b/common/runtime/cache/a9/a932d396c75051eeffe60c84a47fbc73.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a9/a932d396c75051eeffe60c84a47fbc73.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a9/a9368cfa662653f33423ce86ccd3fc0b.bin b/common/runtime/cache/a9/a9368cfa662653f33423ce86ccd3fc0b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a9/a9368cfa662653f33423ce86ccd3fc0b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a9/a938eef9219d06dc39439d1ae166e5c5.bin b/common/runtime/cache/a9/a938eef9219d06dc39439d1ae166e5c5.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a9/a938eef9219d06dc39439d1ae166e5c5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a9/a94a992dbd18bd0d2a0d57be354610a8.bin b/common/runtime/cache/a9/a94a992dbd18bd0d2a0d57be354610a8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a9/a94a992dbd18bd0d2a0d57be354610a8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a9/a94de9ab16887e299d4c4f8f162b6c4c.bin b/common/runtime/cache/a9/a94de9ab16887e299d4c4f8f162b6c4c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a9/a94de9ab16887e299d4c4f8f162b6c4c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a9/a968b02b78ecd4ef1525f653ec5e4641.bin b/common/runtime/cache/a9/a968b02b78ecd4ef1525f653ec5e4641.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a9/a968b02b78ecd4ef1525f653ec5e4641.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a9/a98f5625edaf7aadf748b372cab88854.bin b/common/runtime/cache/a9/a98f5625edaf7aadf748b372cab88854.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a9/a98f5625edaf7aadf748b372cab88854.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a9/a9949cb7cb906c0f058735f6b02138fd.bin b/common/runtime/cache/a9/a9949cb7cb906c0f058735f6b02138fd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a9/a9949cb7cb906c0f058735f6b02138fd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a9/a99780351ff50665f285c3fcf9057ab9.bin b/common/runtime/cache/a9/a99780351ff50665f285c3fcf9057ab9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a9/a99780351ff50665f285c3fcf9057ab9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a9/a9a5fbdd9c62098cb25d3748cce15712.bin b/common/runtime/cache/a9/a9a5fbdd9c62098cb25d3748cce15712.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a9/a9a5fbdd9c62098cb25d3748cce15712.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a9/a9b7f0bdc6d4505111462c3928ab94ac.bin b/common/runtime/cache/a9/a9b7f0bdc6d4505111462c3928ab94ac.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/a9/a9b7f0bdc6d4505111462c3928ab94ac.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a9/a9c5ea34d74b18a4f528c7041e2e90ef.bin b/common/runtime/cache/a9/a9c5ea34d74b18a4f528c7041e2e90ef.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a9/a9c5ea34d74b18a4f528c7041e2e90ef.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/a9/a9cab99232fd8bbf2712571fa1ee6c48.bin b/common/runtime/cache/a9/a9cab99232fd8bbf2712571fa1ee6c48.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/a9/a9cab99232fd8bbf2712571fa1ee6c48.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/aa/aa0a5ad9c11b5d6619f7264ee2908e73.bin b/common/runtime/cache/aa/aa0a5ad9c11b5d6619f7264ee2908e73.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/aa/aa0a5ad9c11b5d6619f7264ee2908e73.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/aa/aa4ac2fd53bf5befd4ed4631966e8dae.bin b/common/runtime/cache/aa/aa4ac2fd53bf5befd4ed4631966e8dae.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/aa/aa4ac2fd53bf5befd4ed4631966e8dae.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/aa/aa562e27d4e6951f9de530a58127102d.bin b/common/runtime/cache/aa/aa562e27d4e6951f9de530a58127102d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/aa/aa562e27d4e6951f9de530a58127102d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/aa/aa6410c45c912478c8f3e4fb79f78232.bin b/common/runtime/cache/aa/aa6410c45c912478c8f3e4fb79f78232.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/aa/aa6410c45c912478c8f3e4fb79f78232.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/aa/aa69b33a4ab7d9fa363903b5801b50ad.bin b/common/runtime/cache/aa/aa69b33a4ab7d9fa363903b5801b50ad.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/aa/aa69b33a4ab7d9fa363903b5801b50ad.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/aa/aa71690b2fe81e0682f87828edf9872d.bin b/common/runtime/cache/aa/aa71690b2fe81e0682f87828edf9872d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/aa/aa71690b2fe81e0682f87828edf9872d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/aa/aa84d6af13b1fd24ac142eed30291599.bin b/common/runtime/cache/aa/aa84d6af13b1fd24ac142eed30291599.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/aa/aa84d6af13b1fd24ac142eed30291599.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/aa/aa8ee3374867a628b480bb24d39409c8.bin b/common/runtime/cache/aa/aa8ee3374867a628b480bb24d39409c8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/aa/aa8ee3374867a628b480bb24d39409c8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/aa/aaac8ed40944f404c502bddd7ce1db8b.bin b/common/runtime/cache/aa/aaac8ed40944f404c502bddd7ce1db8b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/aa/aaac8ed40944f404c502bddd7ce1db8b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/aa/aab3e0a5bc0c72ce3fd7f49d84859a35.bin b/common/runtime/cache/aa/aab3e0a5bc0c72ce3fd7f49d84859a35.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/aa/aab3e0a5bc0c72ce3fd7f49d84859a35.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/aa/aab9418bf89845716066ec6bedea2b96.bin b/common/runtime/cache/aa/aab9418bf89845716066ec6bedea2b96.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/aa/aab9418bf89845716066ec6bedea2b96.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/aa/aac724cb2844969426f4c01e01b3427e.bin b/common/runtime/cache/aa/aac724cb2844969426f4c01e01b3427e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/aa/aac724cb2844969426f4c01e01b3427e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/aa/aae3ae9a9b60af2ddd7d8a2927347e0f.bin b/common/runtime/cache/aa/aae3ae9a9b60af2ddd7d8a2927347e0f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/aa/aae3ae9a9b60af2ddd7d8a2927347e0f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/aa/aae8e69a4d9ac5d9a6ce8fd0c98b0673.bin b/common/runtime/cache/aa/aae8e69a4d9ac5d9a6ce8fd0c98b0673.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/aa/aae8e69a4d9ac5d9a6ce8fd0c98b0673.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ab/ab0cc610a9e2a6f998d2137bd2454c8d.bin b/common/runtime/cache/ab/ab0cc610a9e2a6f998d2137bd2454c8d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ab/ab0cc610a9e2a6f998d2137bd2454c8d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ab/ab15ee04992521e4735ecba57c8da59f.bin b/common/runtime/cache/ab/ab15ee04992521e4735ecba57c8da59f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ab/ab15ee04992521e4735ecba57c8da59f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ab/ab2ecb20534945c1c7f589d5bb5bd265.bin b/common/runtime/cache/ab/ab2ecb20534945c1c7f589d5bb5bd265.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ab/ab2ecb20534945c1c7f589d5bb5bd265.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ab/ab30de95af3e4c38f85b5d605f9608fe.bin b/common/runtime/cache/ab/ab30de95af3e4c38f85b5d605f9608fe.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ab/ab30de95af3e4c38f85b5d605f9608fe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ab/ab608450f4ca2387f0e411d97f937ac9.bin b/common/runtime/cache/ab/ab608450f4ca2387f0e411d97f937ac9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ab/ab608450f4ca2387f0e411d97f937ac9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ab/ab6bac9e6fde80910120a4aee1841ad5.bin b/common/runtime/cache/ab/ab6bac9e6fde80910120a4aee1841ad5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ab/ab6bac9e6fde80910120a4aee1841ad5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ab/ab725185d596fed51593394a42e91fba.bin b/common/runtime/cache/ab/ab725185d596fed51593394a42e91fba.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ab/ab725185d596fed51593394a42e91fba.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ab/ab727d36f366fe44f5215fa2f8220ffc.bin b/common/runtime/cache/ab/ab727d36f366fe44f5215fa2f8220ffc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ab/ab727d36f366fe44f5215fa2f8220ffc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ab/ab8f2a9422c64b3e8e73833bda7b7f74.bin b/common/runtime/cache/ab/ab8f2a9422c64b3e8e73833bda7b7f74.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ab/ab8f2a9422c64b3e8e73833bda7b7f74.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ab/ab987f80893331e4175ac72180b3cd83.bin b/common/runtime/cache/ab/ab987f80893331e4175ac72180b3cd83.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ab/ab987f80893331e4175ac72180b3cd83.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ab/aba32176ddd32300d0d6aeb90c8a3253.bin b/common/runtime/cache/ab/aba32176ddd32300d0d6aeb90c8a3253.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ab/aba32176ddd32300d0d6aeb90c8a3253.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ab/aba45959e183dd29b3c29200ad62838f.bin b/common/runtime/cache/ab/aba45959e183dd29b3c29200ad62838f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ab/aba45959e183dd29b3c29200ad62838f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ab/abd45aaa67ea3c09510c856e0af52265.bin b/common/runtime/cache/ab/abd45aaa67ea3c09510c856e0af52265.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ab/abd45aaa67ea3c09510c856e0af52265.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ab/abd5706028ea1390687b946ef1cd1b42.bin b/common/runtime/cache/ab/abd5706028ea1390687b946ef1cd1b42.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ab/abd5706028ea1390687b946ef1cd1b42.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ab/abebaa7d5bb6fd97c1e3db148bb3875e.bin b/common/runtime/cache/ab/abebaa7d5bb6fd97c1e3db148bb3875e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ab/abebaa7d5bb6fd97c1e3db148bb3875e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ac/ac067d38161233872c7d23b115d2d9b6.bin b/common/runtime/cache/ac/ac067d38161233872c7d23b115d2d9b6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ac/ac067d38161233872c7d23b115d2d9b6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ac/ac12f39034d2b005fff7e13515f46496.bin b/common/runtime/cache/ac/ac12f39034d2b005fff7e13515f46496.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ac/ac12f39034d2b005fff7e13515f46496.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ac/ac5a581d135d5d5ecc11a7b29b0745ec.bin b/common/runtime/cache/ac/ac5a581d135d5d5ecc11a7b29b0745ec.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ac/ac5a581d135d5d5ecc11a7b29b0745ec.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ac/ac6c20140c434fd0f049e992b007092d.bin b/common/runtime/cache/ac/ac6c20140c434fd0f049e992b007092d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ac/ac6c20140c434fd0f049e992b007092d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ac/ac74ae99e6eb694b36b910183c72c0fe.bin b/common/runtime/cache/ac/ac74ae99e6eb694b36b910183c72c0fe.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ac/ac74ae99e6eb694b36b910183c72c0fe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ac/ac80eeb56f2fbdd497d06584e7436929.bin b/common/runtime/cache/ac/ac80eeb56f2fbdd497d06584e7436929.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ac/ac80eeb56f2fbdd497d06584e7436929.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ac/ac9102bdc9b236e351a8cb9b08c2b580.bin b/common/runtime/cache/ac/ac9102bdc9b236e351a8cb9b08c2b580.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ac/ac9102bdc9b236e351a8cb9b08c2b580.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ac/ac93564e6f7d1405dfa29ee8ea58aace.bin b/common/runtime/cache/ac/ac93564e6f7d1405dfa29ee8ea58aace.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ac/ac93564e6f7d1405dfa29ee8ea58aace.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ac/acaf280d2d5200555f68887bce197db5.bin b/common/runtime/cache/ac/acaf280d2d5200555f68887bce197db5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ac/acaf280d2d5200555f68887bce197db5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ac/acb04e3f16b9adbfa756be3c06ac3b45.bin b/common/runtime/cache/ac/acb04e3f16b9adbfa756be3c06ac3b45.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ac/acb04e3f16b9adbfa756be3c06ac3b45.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ac/acb41e32c79c96639dd2dd004976b9d5.bin b/common/runtime/cache/ac/acb41e32c79c96639dd2dd004976b9d5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ac/acb41e32c79c96639dd2dd004976b9d5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ac/acbbbffee6ce0a056850477615f09a3a.bin b/common/runtime/cache/ac/acbbbffee6ce0a056850477615f09a3a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ac/acbbbffee6ce0a056850477615f09a3a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ac/acf674ac30497fb141f42e1a4151d52f.bin b/common/runtime/cache/ac/acf674ac30497fb141f42e1a4151d52f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ac/acf674ac30497fb141f42e1a4151d52f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ac/acf7f189b2ee8fac3c111b780bc1eee5.bin b/common/runtime/cache/ac/acf7f189b2ee8fac3c111b780bc1eee5.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ac/acf7f189b2ee8fac3c111b780bc1eee5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ad/ad0f5696481bf35288a685086db65955.bin b/common/runtime/cache/ad/ad0f5696481bf35288a685086db65955.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ad/ad0f5696481bf35288a685086db65955.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ad/ad33fd60ca4fa94e8c145af459102b80.bin b/common/runtime/cache/ad/ad33fd60ca4fa94e8c145af459102b80.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ad/ad33fd60ca4fa94e8c145af459102b80.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ad/ad3c71b6d132985169e76b5e28237d14.bin b/common/runtime/cache/ad/ad3c71b6d132985169e76b5e28237d14.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ad/ad3c71b6d132985169e76b5e28237d14.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ad/ad6582f2769b9035fc1b33136fee160f.bin b/common/runtime/cache/ad/ad6582f2769b9035fc1b33136fee160f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ad/ad6582f2769b9035fc1b33136fee160f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ad/ad6acfeee65c703cdc37a817249e3e41.bin b/common/runtime/cache/ad/ad6acfeee65c703cdc37a817249e3e41.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ad/ad6acfeee65c703cdc37a817249e3e41.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ad/ad6f17b618eba61f25e5d52a9291f900.bin b/common/runtime/cache/ad/ad6f17b618eba61f25e5d52a9291f900.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ad/ad6f17b618eba61f25e5d52a9291f900.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ad/ad8cb364b8c4e1b2a2dbf45b9f859bd5.bin b/common/runtime/cache/ad/ad8cb364b8c4e1b2a2dbf45b9f859bd5.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ad/ad8cb364b8c4e1b2a2dbf45b9f859bd5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ad/ad972fb11ce7f1ac1b0608d546e999d6.bin b/common/runtime/cache/ad/ad972fb11ce7f1ac1b0608d546e999d6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ad/ad972fb11ce7f1ac1b0608d546e999d6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ad/adb5a52047d49e81731a4e084e16cd0b.bin b/common/runtime/cache/ad/adb5a52047d49e81731a4e084e16cd0b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ad/adb5a52047d49e81731a4e084e16cd0b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ad/add65043293f1030ff870108eec8c386.bin b/common/runtime/cache/ad/add65043293f1030ff870108eec8c386.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ad/add65043293f1030ff870108eec8c386.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ad/addc8d8a0f12e21986057fcbba50c577.bin b/common/runtime/cache/ad/addc8d8a0f12e21986057fcbba50c577.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ad/addc8d8a0f12e21986057fcbba50c577.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ad/ade43a629e41bfe4c200638112aa17b1.bin b/common/runtime/cache/ad/ade43a629e41bfe4c200638112aa17b1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ad/ade43a629e41bfe4c200638112aa17b1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ae/ae04848d65cd2b5163ee109bc72261f4.bin b/common/runtime/cache/ae/ae04848d65cd2b5163ee109bc72261f4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ae/ae04848d65cd2b5163ee109bc72261f4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ae/ae0d6171dc13a2cc6d64b594728ac552.bin b/common/runtime/cache/ae/ae0d6171dc13a2cc6d64b594728ac552.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ae/ae0d6171dc13a2cc6d64b594728ac552.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ae/ae7ebb3d3b7351c2d4b4462d5769f0fb.bin b/common/runtime/cache/ae/ae7ebb3d3b7351c2d4b4462d5769f0fb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ae/ae7ebb3d3b7351c2d4b4462d5769f0fb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ae/ae8ee180c65a521750fdbe5d3efd768f.bin b/common/runtime/cache/ae/ae8ee180c65a521750fdbe5d3efd768f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ae/ae8ee180c65a521750fdbe5d3efd768f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ae/ae98f55f5425329174bf6f41cb66ee44.bin b/common/runtime/cache/ae/ae98f55f5425329174bf6f41cb66ee44.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ae/ae98f55f5425329174bf6f41cb66ee44.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ae/aea1dc073762fb8cc5a3e7e98e395cb6.bin b/common/runtime/cache/ae/aea1dc073762fb8cc5a3e7e98e395cb6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ae/aea1dc073762fb8cc5a3e7e98e395cb6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ae/aed66722e12ad7814f9ac4417d574055.bin b/common/runtime/cache/ae/aed66722e12ad7814f9ac4417d574055.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ae/aed66722e12ad7814f9ac4417d574055.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/af/af1c8e85532e1ae27cf68c00f023eb0b.bin b/common/runtime/cache/af/af1c8e85532e1ae27cf68c00f023eb0b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/af/af1c8e85532e1ae27cf68c00f023eb0b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/af/af245df1ea0e67b9a2cf5e174099f43c.bin b/common/runtime/cache/af/af245df1ea0e67b9a2cf5e174099f43c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/af/af245df1ea0e67b9a2cf5e174099f43c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/af/af3c5284590d56dde11e0f2db6ebe23e.bin b/common/runtime/cache/af/af3c5284590d56dde11e0f2db6ebe23e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/af/af3c5284590d56dde11e0f2db6ebe23e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/af/af5d25e28ff4826d0829d0d4457c03b2.bin b/common/runtime/cache/af/af5d25e28ff4826d0829d0d4457c03b2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/af/af5d25e28ff4826d0829d0d4457c03b2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/af/af6d92635eadfc735d3b6d70413b8f29.bin b/common/runtime/cache/af/af6d92635eadfc735d3b6d70413b8f29.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/af/af6d92635eadfc735d3b6d70413b8f29.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/af/af8f9b805773b416bfb527a298110a6b.bin b/common/runtime/cache/af/af8f9b805773b416bfb527a298110a6b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/af/af8f9b805773b416bfb527a298110a6b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/af/af9f91eb1def30059cf4a923336d6e4d.bin b/common/runtime/cache/af/af9f91eb1def30059cf4a923336d6e4d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/af/af9f91eb1def30059cf4a923336d6e4d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/af/afb0f5cb5b1afeede79e90a45080e09c.bin b/common/runtime/cache/af/afb0f5cb5b1afeede79e90a45080e09c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/af/afb0f5cb5b1afeede79e90a45080e09c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/af/afbb886d1807c156a2cb9342451d97b3.bin b/common/runtime/cache/af/afbb886d1807c156a2cb9342451d97b3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/af/afbb886d1807c156a2cb9342451d97b3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/af/afcdfed3e372c22a39f1f5b40074f9ea.bin b/common/runtime/cache/af/afcdfed3e372c22a39f1f5b40074f9ea.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/af/afcdfed3e372c22a39f1f5b40074f9ea.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b0/b00272799cb02acc2b03fdcd7fa9e438.bin b/common/runtime/cache/b0/b00272799cb02acc2b03fdcd7fa9e438.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b0/b00272799cb02acc2b03fdcd7fa9e438.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b0/b012aa91ff311ba13a5d41d95cf11045.bin b/common/runtime/cache/b0/b012aa91ff311ba13a5d41d95cf11045.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b0/b012aa91ff311ba13a5d41d95cf11045.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b0/b01b24ad41742fba201a39b3222955e5.bin b/common/runtime/cache/b0/b01b24ad41742fba201a39b3222955e5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b0/b01b24ad41742fba201a39b3222955e5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b0/b023d39da58676e0d6e95538efb1cf92.bin b/common/runtime/cache/b0/b023d39da58676e0d6e95538efb1cf92.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b0/b023d39da58676e0d6e95538efb1cf92.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b0/b05ca2fefbfccc46495e181331db0c69.bin b/common/runtime/cache/b0/b05ca2fefbfccc46495e181331db0c69.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b0/b05ca2fefbfccc46495e181331db0c69.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b0/b087354297defe38b537c5e94d8e66c0.bin b/common/runtime/cache/b0/b087354297defe38b537c5e94d8e66c0.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b0/b087354297defe38b537c5e94d8e66c0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b0/b08d7b7d91d0931d5a78c900a9f87d08.bin b/common/runtime/cache/b0/b08d7b7d91d0931d5a78c900a9f87d08.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b0/b08d7b7d91d0931d5a78c900a9f87d08.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b0/b08e251637336015ca274c2e342225b2.bin b/common/runtime/cache/b0/b08e251637336015ca274c2e342225b2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b0/b08e251637336015ca274c2e342225b2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b0/b0d930ae987bfc1ea6425813f8d9d7c8.bin b/common/runtime/cache/b0/b0d930ae987bfc1ea6425813f8d9d7c8.bin new file mode 100644 index 0000000..32976ab --- /dev/null +++ b/common/runtime/cache/b0/b0d930ae987bfc1ea6425813f8d9d7c8.bin @@ -0,0 +1 @@ +a:2:{i:0;s:5:"about";i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b1/b12f6076d341a8ac72da63ae67fd631c.bin b/common/runtime/cache/b1/b12f6076d341a8ac72da63ae67fd631c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b1/b12f6076d341a8ac72da63ae67fd631c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b1/b12f801071c95fd8f5edddc0972b369f.bin b/common/runtime/cache/b1/b12f801071c95fd8f5edddc0972b369f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b1/b12f801071c95fd8f5edddc0972b369f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b1/b133cc36f512c4e3efef474092c5d281.bin b/common/runtime/cache/b1/b133cc36f512c4e3efef474092c5d281.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b1/b133cc36f512c4e3efef474092c5d281.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b1/b14dacb6c8e7a4f62526d4c75ea12dd7.bin b/common/runtime/cache/b1/b14dacb6c8e7a4f62526d4c75ea12dd7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b1/b14dacb6c8e7a4f62526d4c75ea12dd7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b1/b1825448ae41a8e397148b7695dbca40.bin b/common/runtime/cache/b1/b1825448ae41a8e397148b7695dbca40.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b1/b1825448ae41a8e397148b7695dbca40.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b1/b19cea9137e80fef6516967d3c308341.bin b/common/runtime/cache/b1/b19cea9137e80fef6516967d3c308341.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b1/b19cea9137e80fef6516967d3c308341.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b1/b1a486d3e58645707024ed14f9fc010e.bin b/common/runtime/cache/b1/b1a486d3e58645707024ed14f9fc010e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b1/b1a486d3e58645707024ed14f9fc010e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b1/b1ea835c6f8308fe8ed5dcb9240aa363.bin b/common/runtime/cache/b1/b1ea835c6f8308fe8ed5dcb9240aa363.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b1/b1ea835c6f8308fe8ed5dcb9240aa363.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b1/b1f32737d68ad89e9a29b6c421f02c61.bin b/common/runtime/cache/b1/b1f32737d68ad89e9a29b6c421f02c61.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b1/b1f32737d68ad89e9a29b6c421f02c61.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b2/b20abf7a6092320f9db5fa62393761c4.bin b/common/runtime/cache/b2/b20abf7a6092320f9db5fa62393761c4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b2/b20abf7a6092320f9db5fa62393761c4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b2/b20f1601b67f91bb259f4a6915b31b9e.bin b/common/runtime/cache/b2/b20f1601b67f91bb259f4a6915b31b9e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b2/b20f1601b67f91bb259f4a6915b31b9e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b2/b23e9a31b0ebd49394e3d349a85188df.bin b/common/runtime/cache/b2/b23e9a31b0ebd49394e3d349a85188df.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b2/b23e9a31b0ebd49394e3d349a85188df.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b2/b24e171ed616b00857780db3e3048ec5.bin b/common/runtime/cache/b2/b24e171ed616b00857780db3e3048ec5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b2/b24e171ed616b00857780db3e3048ec5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b2/b25525397f62786b4ff3af61fcd7fd96.bin b/common/runtime/cache/b2/b25525397f62786b4ff3af61fcd7fd96.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b2/b25525397f62786b4ff3af61fcd7fd96.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b2/b26b1bb2840aba3bc466521d365eb61f.bin b/common/runtime/cache/b2/b26b1bb2840aba3bc466521d365eb61f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b2/b26b1bb2840aba3bc466521d365eb61f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b2/b2934f9f93717af186d25459a2c644c3.bin b/common/runtime/cache/b2/b2934f9f93717af186d25459a2c644c3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b2/b2934f9f93717af186d25459a2c644c3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b2/b29cbb0f5fabb98dc4da86ac305e0029.bin b/common/runtime/cache/b2/b29cbb0f5fabb98dc4da86ac305e0029.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b2/b29cbb0f5fabb98dc4da86ac305e0029.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b2/b2bc9163913fecc7f12adbce4ae9eaf9.bin b/common/runtime/cache/b2/b2bc9163913fecc7f12adbce4ae9eaf9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b2/b2bc9163913fecc7f12adbce4ae9eaf9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b2/b2d481938e070749b131a0d6bf791266.bin b/common/runtime/cache/b2/b2d481938e070749b131a0d6bf791266.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b2/b2d481938e070749b131a0d6bf791266.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b2/b2d9c91ef264eb428f9524ff5a9829a3.bin b/common/runtime/cache/b2/b2d9c91ef264eb428f9524ff5a9829a3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b2/b2d9c91ef264eb428f9524ff5a9829a3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b2/b2e5337b12d4572a61832cb4c138b0a7.bin b/common/runtime/cache/b2/b2e5337b12d4572a61832cb4c138b0a7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b2/b2e5337b12d4572a61832cb4c138b0a7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b2/b2e85e48c88b597ee07a78f36ee74efb.bin b/common/runtime/cache/b2/b2e85e48c88b597ee07a78f36ee74efb.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b2/b2e85e48c88b597ee07a78f36ee74efb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b2/b2f0e98401a06a760925aea206dd1cca.bin b/common/runtime/cache/b2/b2f0e98401a06a760925aea206dd1cca.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b2/b2f0e98401a06a760925aea206dd1cca.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b3/b30db85c2d9c62bdd8a77fd5cb2c9e83.bin b/common/runtime/cache/b3/b30db85c2d9c62bdd8a77fd5cb2c9e83.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b3/b30db85c2d9c62bdd8a77fd5cb2c9e83.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b3/b30eb300283956793c9aee8bef99b47e.bin b/common/runtime/cache/b3/b30eb300283956793c9aee8bef99b47e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b3/b30eb300283956793c9aee8bef99b47e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b3/b311501d5ef37fc8cb91cbfe30e46b67.bin b/common/runtime/cache/b3/b311501d5ef37fc8cb91cbfe30e46b67.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b3/b311501d5ef37fc8cb91cbfe30e46b67.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b3/b340ad472e6ab0a554cb713625659932.bin b/common/runtime/cache/b3/b340ad472e6ab0a554cb713625659932.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b3/b340ad472e6ab0a554cb713625659932.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b3/b343a0bd1dd48a8bc22573fd9b97d139.bin b/common/runtime/cache/b3/b343a0bd1dd48a8bc22573fd9b97d139.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b3/b343a0bd1dd48a8bc22573fd9b97d139.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b3/b34eb6b963a8fea9d493d8453293d879.bin b/common/runtime/cache/b3/b34eb6b963a8fea9d493d8453293d879.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b3/b34eb6b963a8fea9d493d8453293d879.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b3/b3574f34f4338de47385c7f04502331a.bin b/common/runtime/cache/b3/b3574f34f4338de47385c7f04502331a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b3/b3574f34f4338de47385c7f04502331a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b3/b373310af8c9ce1253589d519f2af4eb.bin b/common/runtime/cache/b3/b373310af8c9ce1253589d519f2af4eb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b3/b373310af8c9ce1253589d519f2af4eb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b3/b38125536d223bf33d2e69ebf18b65d8.bin b/common/runtime/cache/b3/b38125536d223bf33d2e69ebf18b65d8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b3/b38125536d223bf33d2e69ebf18b65d8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b3/b39385cffc73eff5f9b3de8a77d45e33.bin b/common/runtime/cache/b3/b39385cffc73eff5f9b3de8a77d45e33.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b3/b39385cffc73eff5f9b3de8a77d45e33.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b3/b3c29e348030da2a178b88b9cbf1f8b5.bin b/common/runtime/cache/b3/b3c29e348030da2a178b88b9cbf1f8b5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b3/b3c29e348030da2a178b88b9cbf1f8b5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b3/b3ce5d092f516124321c7cdac79810da.bin b/common/runtime/cache/b3/b3ce5d092f516124321c7cdac79810da.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b3/b3ce5d092f516124321c7cdac79810da.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b3/b3d7a51a43cd03294c7ba932c99a207d.bin b/common/runtime/cache/b3/b3d7a51a43cd03294c7ba932c99a207d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b3/b3d7a51a43cd03294c7ba932c99a207d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b3/b3f799e26426b0154fc64359dc355625.bin b/common/runtime/cache/b3/b3f799e26426b0154fc64359dc355625.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b3/b3f799e26426b0154fc64359dc355625.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b4/b4602971e8ea24f328b0e573a6eb6da6.bin b/common/runtime/cache/b4/b4602971e8ea24f328b0e573a6eb6da6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b4/b4602971e8ea24f328b0e573a6eb6da6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b4/b46e7e6b4512bf350e1922c236056af4.bin b/common/runtime/cache/b4/b46e7e6b4512bf350e1922c236056af4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b4/b46e7e6b4512bf350e1922c236056af4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b4/b47f656c6d73f782978ef08681c8a7c9.bin b/common/runtime/cache/b4/b47f656c6d73f782978ef08681c8a7c9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b4/b47f656c6d73f782978ef08681c8a7c9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b4/b49e31377f6efb0e3f55da8cd39deebc.bin b/common/runtime/cache/b4/b49e31377f6efb0e3f55da8cd39deebc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b4/b49e31377f6efb0e3f55da8cd39deebc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b4/b4adb44495d010225bba7d1c0c7d3632.bin b/common/runtime/cache/b4/b4adb44495d010225bba7d1c0c7d3632.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b4/b4adb44495d010225bba7d1c0c7d3632.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b4/b4b12892c428ca69e7b519597890a7ea.bin b/common/runtime/cache/b4/b4b12892c428ca69e7b519597890a7ea.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b4/b4b12892c428ca69e7b519597890a7ea.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b4/b4b3ebe376bed2d65edbc0dec3c9c115.bin b/common/runtime/cache/b4/b4b3ebe376bed2d65edbc0dec3c9c115.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b4/b4b3ebe376bed2d65edbc0dec3c9c115.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b4/b4b9aadde03cda19534a48260b188f34.bin b/common/runtime/cache/b4/b4b9aadde03cda19534a48260b188f34.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b4/b4b9aadde03cda19534a48260b188f34.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b4/b4c20a106e96a2d1f05d74a309671077.bin b/common/runtime/cache/b4/b4c20a106e96a2d1f05d74a309671077.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b4/b4c20a106e96a2d1f05d74a309671077.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b4/b4c5e87a4fa9ae1cbbe5afb141b9bafc.bin b/common/runtime/cache/b4/b4c5e87a4fa9ae1cbbe5afb141b9bafc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b4/b4c5e87a4fa9ae1cbbe5afb141b9bafc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b4/b4cd18db6028cdb341d5d455e0896884.bin b/common/runtime/cache/b4/b4cd18db6028cdb341d5d455e0896884.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b4/b4cd18db6028cdb341d5d455e0896884.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b4/b4e59edf7f9f7a01b447668a3c84aecb.bin b/common/runtime/cache/b4/b4e59edf7f9f7a01b447668a3c84aecb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b4/b4e59edf7f9f7a01b447668a3c84aecb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b4/b4e97bb54776fdfb45797795bde30641.bin b/common/runtime/cache/b4/b4e97bb54776fdfb45797795bde30641.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b4/b4e97bb54776fdfb45797795bde30641.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b4/b4f5498eb2e6708c71d6c798881f008e.bin b/common/runtime/cache/b4/b4f5498eb2e6708c71d6c798881f008e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b4/b4f5498eb2e6708c71d6c798881f008e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b5/b514866d3ce2076f3233931eb020f163.bin b/common/runtime/cache/b5/b514866d3ce2076f3233931eb020f163.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b5/b514866d3ce2076f3233931eb020f163.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b5/b51d1b2289e4fed39bd25f978e6eac43.bin b/common/runtime/cache/b5/b51d1b2289e4fed39bd25f978e6eac43.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b5/b51d1b2289e4fed39bd25f978e6eac43.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b5/b525d2f2dc48fe266164241c6b4279c2.bin b/common/runtime/cache/b5/b525d2f2dc48fe266164241c6b4279c2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b5/b525d2f2dc48fe266164241c6b4279c2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b5/b54e12bdc9440855284730e82ef36a8e.bin b/common/runtime/cache/b5/b54e12bdc9440855284730e82ef36a8e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b5/b54e12bdc9440855284730e82ef36a8e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b5/b551ce771e7fefc74537294d5402783d.bin b/common/runtime/cache/b5/b551ce771e7fefc74537294d5402783d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b5/b551ce771e7fefc74537294d5402783d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b5/b5866b5084e8b31a3c7ea57a27192552.bin b/common/runtime/cache/b5/b5866b5084e8b31a3c7ea57a27192552.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b5/b5866b5084e8b31a3c7ea57a27192552.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b5/b58e078887f2a8a9948999c5ffe23aba.bin b/common/runtime/cache/b5/b58e078887f2a8a9948999c5ffe23aba.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b5/b58e078887f2a8a9948999c5ffe23aba.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b5/b5a7ce5ea4c6cd88b40798e18419405c.bin b/common/runtime/cache/b5/b5a7ce5ea4c6cd88b40798e18419405c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b5/b5a7ce5ea4c6cd88b40798e18419405c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b5/b5b55d61c4ad85dee70050bf3258e946.bin b/common/runtime/cache/b5/b5b55d61c4ad85dee70050bf3258e946.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b5/b5b55d61c4ad85dee70050bf3258e946.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b5/b5d2d28176f3ca1f36f32a5b6a23691e.bin b/common/runtime/cache/b5/b5d2d28176f3ca1f36f32a5b6a23691e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b5/b5d2d28176f3ca1f36f32a5b6a23691e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b5/b5dfa6e3185d6b84b6d12e8af79bfbea.bin b/common/runtime/cache/b5/b5dfa6e3185d6b84b6d12e8af79bfbea.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b5/b5dfa6e3185d6b84b6d12e8af79bfbea.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b5/b5e077b6c77ceeed7cc5481d4ffbde08.bin b/common/runtime/cache/b5/b5e077b6c77ceeed7cc5481d4ffbde08.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b5/b5e077b6c77ceeed7cc5481d4ffbde08.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b5/b5e634401189d6b760945ff001e7331b.bin b/common/runtime/cache/b5/b5e634401189d6b760945ff001e7331b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b5/b5e634401189d6b760945ff001e7331b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b6/b60306d64cbb373f594dc07571855427.bin b/common/runtime/cache/b6/b60306d64cbb373f594dc07571855427.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b6/b60306d64cbb373f594dc07571855427.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b6/b624e99b4b66697dc81f4460ff9519d8.bin b/common/runtime/cache/b6/b624e99b4b66697dc81f4460ff9519d8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b6/b624e99b4b66697dc81f4460ff9519d8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b6/b64842a8802d2ae58ac7e6ad8f1caecb.bin b/common/runtime/cache/b6/b64842a8802d2ae58ac7e6ad8f1caecb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b6/b64842a8802d2ae58ac7e6ad8f1caecb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b6/b652c83cbeb807d8006ab9ecd8141020.bin b/common/runtime/cache/b6/b652c83cbeb807d8006ab9ecd8141020.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b6/b652c83cbeb807d8006ab9ecd8141020.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b6/b66ea0661b878740ec6e287afad9d444.bin b/common/runtime/cache/b6/b66ea0661b878740ec6e287afad9d444.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b6/b66ea0661b878740ec6e287afad9d444.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b6/b694650c9509049987bc5b2486831405.bin b/common/runtime/cache/b6/b694650c9509049987bc5b2486831405.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b6/b694650c9509049987bc5b2486831405.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b6/b6a67e7571e204a907430891762d85e8.bin b/common/runtime/cache/b6/b6a67e7571e204a907430891762d85e8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b6/b6a67e7571e204a907430891762d85e8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b6/b6ac0ea3d5cec21c91f750f2cf60fcc7.bin b/common/runtime/cache/b6/b6ac0ea3d5cec21c91f750f2cf60fcc7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b6/b6ac0ea3d5cec21c91f750f2cf60fcc7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b6/b6ad81e940f2d511561d5d9779cae184.bin b/common/runtime/cache/b6/b6ad81e940f2d511561d5d9779cae184.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b6/b6ad81e940f2d511561d5d9779cae184.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b6/b6b6253a0b3770eff3cf4c8c7e9dcf87.bin b/common/runtime/cache/b6/b6b6253a0b3770eff3cf4c8c7e9dcf87.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b6/b6b6253a0b3770eff3cf4c8c7e9dcf87.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b6/b6cbb10511f42858b1fadaef4d803c88.bin b/common/runtime/cache/b6/b6cbb10511f42858b1fadaef4d803c88.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b6/b6cbb10511f42858b1fadaef4d803c88.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b6/b6cde3332b6e92f83fe529172fd2cf41.bin b/common/runtime/cache/b6/b6cde3332b6e92f83fe529172fd2cf41.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b6/b6cde3332b6e92f83fe529172fd2cf41.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b6/b6d261dcefcf4f9ac69e0cfef0e63288.bin b/common/runtime/cache/b6/b6d261dcefcf4f9ac69e0cfef0e63288.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b6/b6d261dcefcf4f9ac69e0cfef0e63288.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b6/b6e60f40f30e80be323fe521f5a4b67f.bin b/common/runtime/cache/b6/b6e60f40f30e80be323fe521f5a4b67f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b6/b6e60f40f30e80be323fe521f5a4b67f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b6/b6edade9f1bc2125c00bba2852b25998.bin b/common/runtime/cache/b6/b6edade9f1bc2125c00bba2852b25998.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b6/b6edade9f1bc2125c00bba2852b25998.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b719accca14725e6e4f99f1122c19a0d.bin b/common/runtime/cache/b7/b719accca14725e6e4f99f1122c19a0d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b7/b719accca14725e6e4f99f1122c19a0d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b71afa71eca284366d613c5e3a9016e4.bin b/common/runtime/cache/b7/b71afa71eca284366d613c5e3a9016e4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b7/b71afa71eca284366d613c5e3a9016e4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b737363cb488a5517da3dfa59a8982d7.bin b/common/runtime/cache/b7/b737363cb488a5517da3dfa59a8982d7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b7/b737363cb488a5517da3dfa59a8982d7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b74e6c64c0d312ff41495393bad2e263.bin b/common/runtime/cache/b7/b74e6c64c0d312ff41495393bad2e263.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b7/b74e6c64c0d312ff41495393bad2e263.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b7536a5a3766f82df70fa414b89cb2c1.bin b/common/runtime/cache/b7/b7536a5a3766f82df70fa414b89cb2c1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b7/b7536a5a3766f82df70fa414b89cb2c1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b7553caac5ce92d58a40b05f54914eee.bin b/common/runtime/cache/b7/b7553caac5ce92d58a40b05f54914eee.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b7/b7553caac5ce92d58a40b05f54914eee.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b7595f67f5882ad79ce90207e34e6498.bin b/common/runtime/cache/b7/b7595f67f5882ad79ce90207e34e6498.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b7/b7595f67f5882ad79ce90207e34e6498.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b75d3682c8db01ff20696b79073d9ddc.bin b/common/runtime/cache/b7/b75d3682c8db01ff20696b79073d9ddc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b7/b75d3682c8db01ff20696b79073d9ddc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b75f1baf0cb86eada7cf3bf7e0a3d914.bin b/common/runtime/cache/b7/b75f1baf0cb86eada7cf3bf7e0a3d914.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b7/b75f1baf0cb86eada7cf3bf7e0a3d914.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b7642a9d95a0df46d5c4710d0e542a01.bin b/common/runtime/cache/b7/b7642a9d95a0df46d5c4710d0e542a01.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b7/b7642a9d95a0df46d5c4710d0e542a01.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b79e024c8b2cbb8ff6cbf272a77e1cf5.bin b/common/runtime/cache/b7/b79e024c8b2cbb8ff6cbf272a77e1cf5.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b7/b79e024c8b2cbb8ff6cbf272a77e1cf5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b7b044db3262e077fb27ed4359efe9f4.bin b/common/runtime/cache/b7/b7b044db3262e077fb27ed4359efe9f4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b7/b7b044db3262e077fb27ed4359efe9f4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b7c07cc27bbfce3e816e2e7311ffd528.bin b/common/runtime/cache/b7/b7c07cc27bbfce3e816e2e7311ffd528.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b7/b7c07cc27bbfce3e816e2e7311ffd528.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b7cfac21f68eed86c0ade63ca9d41757.bin b/common/runtime/cache/b7/b7cfac21f68eed86c0ade63ca9d41757.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b7/b7cfac21f68eed86c0ade63ca9d41757.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b7e275925431e73eda0d32cc17c931da.bin b/common/runtime/cache/b7/b7e275925431e73eda0d32cc17c931da.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b7/b7e275925431e73eda0d32cc17c931da.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b7e5cefba301aafcd8b9d9895ebbbd39.bin b/common/runtime/cache/b7/b7e5cefba301aafcd8b9d9895ebbbd39.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b7/b7e5cefba301aafcd8b9d9895ebbbd39.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b7fa6df2ecd01c4b2281ad0018eb3bed.bin b/common/runtime/cache/b7/b7fa6df2ecd01c4b2281ad0018eb3bed.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b7/b7fa6df2ecd01c4b2281ad0018eb3bed.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b7/b7fd0b5ad8c396490d97d58dead32d88.bin b/common/runtime/cache/b7/b7fd0b5ad8c396490d97d58dead32d88.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b7/b7fd0b5ad8c396490d97d58dead32d88.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b8/b82013a17dbea101df26aea584a4f1f2.bin b/common/runtime/cache/b8/b82013a17dbea101df26aea584a4f1f2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b8/b82013a17dbea101df26aea584a4f1f2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b8/b828c053799d6b96ed1a923af9bf6d56.bin b/common/runtime/cache/b8/b828c053799d6b96ed1a923af9bf6d56.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b8/b828c053799d6b96ed1a923af9bf6d56.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b8/b8316cf2c3bce2566b361fe25fc7ad3d.bin b/common/runtime/cache/b8/b8316cf2c3bce2566b361fe25fc7ad3d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b8/b8316cf2c3bce2566b361fe25fc7ad3d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b8/b84c242748e174a02babe3a8fd683805.bin b/common/runtime/cache/b8/b84c242748e174a02babe3a8fd683805.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b8/b84c242748e174a02babe3a8fd683805.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b8/b86b6491a87831825eb24c4f2d1798d8.bin b/common/runtime/cache/b8/b86b6491a87831825eb24c4f2d1798d8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b8/b86b6491a87831825eb24c4f2d1798d8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b8/b87caa2c4b364c3b7a4677ac26b30de1.bin b/common/runtime/cache/b8/b87caa2c4b364c3b7a4677ac26b30de1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b8/b87caa2c4b364c3b7a4677ac26b30de1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b8/b88516c0717f3d630beb6c5609df5549.bin b/common/runtime/cache/b8/b88516c0717f3d630beb6c5609df5549.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b8/b88516c0717f3d630beb6c5609df5549.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b8/b88eb07686821e64e785540e9ffa2ef7.bin b/common/runtime/cache/b8/b88eb07686821e64e785540e9ffa2ef7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b8/b88eb07686821e64e785540e9ffa2ef7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b8/b8a7ae1a5276eeeaca78267bc8202372.bin b/common/runtime/cache/b8/b8a7ae1a5276eeeaca78267bc8202372.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b8/b8a7ae1a5276eeeaca78267bc8202372.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b8/b8bd4a1e45c22f17b0c6a10985ec6b3a.bin b/common/runtime/cache/b8/b8bd4a1e45c22f17b0c6a10985ec6b3a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b8/b8bd4a1e45c22f17b0c6a10985ec6b3a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b8/b8d541f0df6b8e864e3e4243e888d5f5.bin b/common/runtime/cache/b8/b8d541f0df6b8e864e3e4243e888d5f5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b8/b8d541f0df6b8e864e3e4243e888d5f5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b8/b8d5732a2caf1014e5c47d271a9e5f29.bin b/common/runtime/cache/b8/b8d5732a2caf1014e5c47d271a9e5f29.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b8/b8d5732a2caf1014e5c47d271a9e5f29.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b8/b8de3d30a63b59ac99cb30307eb5a851.bin b/common/runtime/cache/b8/b8de3d30a63b59ac99cb30307eb5a851.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b8/b8de3d30a63b59ac99cb30307eb5a851.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b8/b8fadd51b7f31ed143a93e6e95c8604d.bin b/common/runtime/cache/b8/b8fadd51b7f31ed143a93e6e95c8604d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b8/b8fadd51b7f31ed143a93e6e95c8604d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b8/b8fff89ef986f5babfd6660fff769e29.bin b/common/runtime/cache/b8/b8fff89ef986f5babfd6660fff769e29.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b8/b8fff89ef986f5babfd6660fff769e29.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b9/b908afd5e895136acb0465a245ac17ec.bin b/common/runtime/cache/b9/b908afd5e895136acb0465a245ac17ec.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b9/b908afd5e895136acb0465a245ac17ec.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b9/b90acfccff8db7dff23b470e53d7808f.bin b/common/runtime/cache/b9/b90acfccff8db7dff23b470e53d7808f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b9/b90acfccff8db7dff23b470e53d7808f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b9/b94c40cceb7acad50f6ae366465ce381.bin b/common/runtime/cache/b9/b94c40cceb7acad50f6ae366465ce381.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b9/b94c40cceb7acad50f6ae366465ce381.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b9/b992291db693215415087edfecba0baf.bin b/common/runtime/cache/b9/b992291db693215415087edfecba0baf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b9/b992291db693215415087edfecba0baf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b9/b993a41443cb4bffacd0fb2c8c69b1ed.bin b/common/runtime/cache/b9/b993a41443cb4bffacd0fb2c8c69b1ed.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b9/b993a41443cb4bffacd0fb2c8c69b1ed.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b9/b998befcd055e3c3269a9c069172df36.bin b/common/runtime/cache/b9/b998befcd055e3c3269a9c069172df36.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b9/b998befcd055e3c3269a9c069172df36.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b9/b9b88b15c2399a9f5502b2a70a69aa07.bin b/common/runtime/cache/b9/b9b88b15c2399a9f5502b2a70a69aa07.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b9/b9b88b15c2399a9f5502b2a70a69aa07.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b9/b9cd83cb140dd7f1cb6ff0f155bb01cb.bin b/common/runtime/cache/b9/b9cd83cb140dd7f1cb6ff0f155bb01cb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b9/b9cd83cb140dd7f1cb6ff0f155bb01cb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b9/b9d3926e8b39516fce7c19c1373c6620.bin b/common/runtime/cache/b9/b9d3926e8b39516fce7c19c1373c6620.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b9/b9d3926e8b39516fce7c19c1373c6620.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b9/b9d8b046796acb02b8a22a0eede6feab.bin b/common/runtime/cache/b9/b9d8b046796acb02b8a22a0eede6feab.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/b9/b9d8b046796acb02b8a22a0eede6feab.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b9/b9dbe689d18ed92a1addff2c53050499.bin b/common/runtime/cache/b9/b9dbe689d18ed92a1addff2c53050499.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b9/b9dbe689d18ed92a1addff2c53050499.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/b9/b9e0ee0d34720bcd4c7dd5e2b15d93a3.bin b/common/runtime/cache/b9/b9e0ee0d34720bcd4c7dd5e2b15d93a3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/b9/b9e0ee0d34720bcd4c7dd5e2b15d93a3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ba/ba348518ade2e672976f46ab75b97f9f.bin b/common/runtime/cache/ba/ba348518ade2e672976f46ab75b97f9f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ba/ba348518ade2e672976f46ab75b97f9f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ba/baf65c585124a27c6def61634b656821.bin b/common/runtime/cache/ba/baf65c585124a27c6def61634b656821.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ba/baf65c585124a27c6def61634b656821.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bb041b2fd6b226994fc07a290d521cae.bin b/common/runtime/cache/bb/bb041b2fd6b226994fc07a290d521cae.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bb/bb041b2fd6b226994fc07a290d521cae.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bb18aa0942387f0524d970d3540fce11.bin b/common/runtime/cache/bb/bb18aa0942387f0524d970d3540fce11.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bb/bb18aa0942387f0524d970d3540fce11.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bb1cc3b5bd962e48d95200e872697e42.bin b/common/runtime/cache/bb/bb1cc3b5bd962e48d95200e872697e42.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bb/bb1cc3b5bd962e48d95200e872697e42.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bb24c7b1a3cc2d7fd60814676b15147f.bin b/common/runtime/cache/bb/bb24c7b1a3cc2d7fd60814676b15147f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bb/bb24c7b1a3cc2d7fd60814676b15147f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bb280ea3fb614769b5c8bc01a78ff170.bin b/common/runtime/cache/bb/bb280ea3fb614769b5c8bc01a78ff170.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bb/bb280ea3fb614769b5c8bc01a78ff170.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bb3b961569515713ff7980d4a6f2cf30.bin b/common/runtime/cache/bb/bb3b961569515713ff7980d4a6f2cf30.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bb/bb3b961569515713ff7980d4a6f2cf30.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bb3d5bd794a0ade1c51d479e2e5230c0.bin b/common/runtime/cache/bb/bb3d5bd794a0ade1c51d479e2e5230c0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bb/bb3d5bd794a0ade1c51d479e2e5230c0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bb55c2614be406c64edf6ad081449369.bin b/common/runtime/cache/bb/bb55c2614be406c64edf6ad081449369.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bb/bb55c2614be406c64edf6ad081449369.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bb58aa6db55c16f5b0b429afaeb8b111.bin b/common/runtime/cache/bb/bb58aa6db55c16f5b0b429afaeb8b111.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bb/bb58aa6db55c16f5b0b429afaeb8b111.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bb8eb82dce5a397ba044d8a7a46ad718.bin b/common/runtime/cache/bb/bb8eb82dce5a397ba044d8a7a46ad718.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bb/bb8eb82dce5a397ba044d8a7a46ad718.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bb9a621c3897260ebb89b596e250427c.bin b/common/runtime/cache/bb/bb9a621c3897260ebb89b596e250427c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bb/bb9a621c3897260ebb89b596e250427c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bb9d6ae3ffc8e2821421fed46e0a0a14.bin b/common/runtime/cache/bb/bb9d6ae3ffc8e2821421fed46e0a0a14.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bb/bb9d6ae3ffc8e2821421fed46e0a0a14.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bbc210c82269590e4fb1f8e789f8ecf4.bin b/common/runtime/cache/bb/bbc210c82269590e4fb1f8e789f8ecf4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bb/bbc210c82269590e4fb1f8e789f8ecf4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bbce1cbf7b5af17535344337b159bed0.bin b/common/runtime/cache/bb/bbce1cbf7b5af17535344337b159bed0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bb/bbce1cbf7b5af17535344337b159bed0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bbe8726a13b676c04de406a9af686402.bin b/common/runtime/cache/bb/bbe8726a13b676c04de406a9af686402.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bb/bbe8726a13b676c04de406a9af686402.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bbe942c86bfe185f0fb1f530f87df3db.bin b/common/runtime/cache/bb/bbe942c86bfe185f0fb1f530f87df3db.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bb/bbe942c86bfe185f0fb1f530f87df3db.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bbf239315c2637ab904a9f3a937130a3.bin b/common/runtime/cache/bb/bbf239315c2637ab904a9f3a937130a3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bb/bbf239315c2637ab904a9f3a937130a3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bb/bbfb78352b21b17e8bf4cd02d6425179.bin b/common/runtime/cache/bb/bbfb78352b21b17e8bf4cd02d6425179.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bb/bbfb78352b21b17e8bf4cd02d6425179.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bc/bc0a419fa0f9064c5c43c0cff33b37bc.bin b/common/runtime/cache/bc/bc0a419fa0f9064c5c43c0cff33b37bc.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bc/bc0a419fa0f9064c5c43c0cff33b37bc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bc/bc2d52f0813ba8c31f3cb6827932e0bd.bin b/common/runtime/cache/bc/bc2d52f0813ba8c31f3cb6827932e0bd.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bc/bc2d52f0813ba8c31f3cb6827932e0bd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bc/bc66a7595f0d725d8fc6ed4e6dc9e9e3.bin b/common/runtime/cache/bc/bc66a7595f0d725d8fc6ed4e6dc9e9e3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bc/bc66a7595f0d725d8fc6ed4e6dc9e9e3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bc/bca4c06a5cc719718874cb46a913217f.bin b/common/runtime/cache/bc/bca4c06a5cc719718874cb46a913217f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bc/bca4c06a5cc719718874cb46a913217f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bc/bca4f0c8a64fa62049a764f0603e0cb3.bin b/common/runtime/cache/bc/bca4f0c8a64fa62049a764f0603e0cb3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bc/bca4f0c8a64fa62049a764f0603e0cb3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bc/bcbd35f56624589316aa6e235b56a578.bin b/common/runtime/cache/bc/bcbd35f56624589316aa6e235b56a578.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bc/bcbd35f56624589316aa6e235b56a578.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bc/bcdbcd493226b4bfdefa5b24bac248d2.bin b/common/runtime/cache/bc/bcdbcd493226b4bfdefa5b24bac248d2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bc/bcdbcd493226b4bfdefa5b24bac248d2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bc/bcecece8b4c45b3172f0fd60975ba885.bin b/common/runtime/cache/bc/bcecece8b4c45b3172f0fd60975ba885.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bc/bcecece8b4c45b3172f0fd60975ba885.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bc/bcf6137c6773548e58245da1940554b5.bin b/common/runtime/cache/bc/bcf6137c6773548e58245da1940554b5.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bc/bcf6137c6773548e58245da1940554b5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bd/bd123f682dec8a5fdc3cddcf224fef1e.bin b/common/runtime/cache/bd/bd123f682dec8a5fdc3cddcf224fef1e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bd/bd123f682dec8a5fdc3cddcf224fef1e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bd/bd312fc87e086514bf42b06e6cf2bdd4.bin b/common/runtime/cache/bd/bd312fc87e086514bf42b06e6cf2bdd4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bd/bd312fc87e086514bf42b06e6cf2bdd4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bd/bd314f0def4f984ee62b4131e56f30e9.bin b/common/runtime/cache/bd/bd314f0def4f984ee62b4131e56f30e9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bd/bd314f0def4f984ee62b4131e56f30e9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bd/bd4321799dbff2665fe08b697defc00f.bin b/common/runtime/cache/bd/bd4321799dbff2665fe08b697defc00f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bd/bd4321799dbff2665fe08b697defc00f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bd/bd471eecebd0e41a2325954f10c238e5.bin b/common/runtime/cache/bd/bd471eecebd0e41a2325954f10c238e5.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bd/bd471eecebd0e41a2325954f10c238e5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bd/bd8041606eee9042b8b19fbb0a019610.bin b/common/runtime/cache/bd/bd8041606eee9042b8b19fbb0a019610.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bd/bd8041606eee9042b8b19fbb0a019610.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bd/bdaf560878c4538bdd494f1bd539a3cd.bin b/common/runtime/cache/bd/bdaf560878c4538bdd494f1bd539a3cd.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bd/bdaf560878c4538bdd494f1bd539a3cd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bd/bdfcc393ab0635789b3150391ba13036.bin b/common/runtime/cache/bd/bdfcc393ab0635789b3150391ba13036.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bd/bdfcc393ab0635789b3150391ba13036.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/be/be2e5bcf7508ed4066e834c0b8347d72.bin b/common/runtime/cache/be/be2e5bcf7508ed4066e834c0b8347d72.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/be/be2e5bcf7508ed4066e834c0b8347d72.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/be/be3abfc9f21407ab62c1bb876f5a08b8.bin b/common/runtime/cache/be/be3abfc9f21407ab62c1bb876f5a08b8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/be/be3abfc9f21407ab62c1bb876f5a08b8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/be/be7cf8386d3f1ea9aebd573d143188e9.bin b/common/runtime/cache/be/be7cf8386d3f1ea9aebd573d143188e9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/be/be7cf8386d3f1ea9aebd573d143188e9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/be/be955c185cb1d95581ccf2a64fb1cfae.bin b/common/runtime/cache/be/be955c185cb1d95581ccf2a64fb1cfae.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/be/be955c185cb1d95581ccf2a64fb1cfae.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/be/bec3dea513aa680b0cf819fa6aeac08f.bin b/common/runtime/cache/be/bec3dea513aa680b0cf819fa6aeac08f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/be/bec3dea513aa680b0cf819fa6aeac08f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/be/bec82263a651b6717b77ae234fdccbe6.bin b/common/runtime/cache/be/bec82263a651b6717b77ae234fdccbe6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/be/bec82263a651b6717b77ae234fdccbe6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/be/bedba3066ef5adb8dbceecdd28b79229.bin b/common/runtime/cache/be/bedba3066ef5adb8dbceecdd28b79229.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/be/bedba3066ef5adb8dbceecdd28b79229.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/be/bedc334d1606154246a13b65bbee9b19.bin b/common/runtime/cache/be/bedc334d1606154246a13b65bbee9b19.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/be/bedc334d1606154246a13b65bbee9b19.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/be/bee426021de11b4742ff995372dc28a2.bin b/common/runtime/cache/be/bee426021de11b4742ff995372dc28a2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/be/bee426021de11b4742ff995372dc28a2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/be/befffdaca1d79db034c65ba73d0f8aeb.bin b/common/runtime/cache/be/befffdaca1d79db034c65ba73d0f8aeb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/be/befffdaca1d79db034c65ba73d0f8aeb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bf/bf26d858f30ac455ce758f50cd00fded.bin b/common/runtime/cache/bf/bf26d858f30ac455ce758f50cd00fded.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bf/bf26d858f30ac455ce758f50cd00fded.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bf/bf381908bb1ba6b69fa512d6335c4eca.bin b/common/runtime/cache/bf/bf381908bb1ba6b69fa512d6335c4eca.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bf/bf381908bb1ba6b69fa512d6335c4eca.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bf/bf54e7a90cac12e5879d68ad809d10bc.bin b/common/runtime/cache/bf/bf54e7a90cac12e5879d68ad809d10bc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bf/bf54e7a90cac12e5879d68ad809d10bc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bf/bf70af456e1d1ca8f4cd357b555d035e.bin b/common/runtime/cache/bf/bf70af456e1d1ca8f4cd357b555d035e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bf/bf70af456e1d1ca8f4cd357b555d035e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bf/bf889b2e5cc1b30f53fbc77093e029b0.bin b/common/runtime/cache/bf/bf889b2e5cc1b30f53fbc77093e029b0.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bf/bf889b2e5cc1b30f53fbc77093e029b0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bf/bf8e7d910a3e7d87c17756d3e77fbea6.bin b/common/runtime/cache/bf/bf8e7d910a3e7d87c17756d3e77fbea6.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bf/bf8e7d910a3e7d87c17756d3e77fbea6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bf/bfa52a6929d468f16a60aca86e99a752.bin b/common/runtime/cache/bf/bfa52a6929d468f16a60aca86e99a752.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/bf/bfa52a6929d468f16a60aca86e99a752.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bf/bfa9fbf34d98f26eee508b5b384740bf.bin b/common/runtime/cache/bf/bfa9fbf34d98f26eee508b5b384740bf.bin new file mode 100644 index 0000000..b45935d --- /dev/null +++ b/common/runtime/cache/bf/bfa9fbf34d98f26eee508b5b384740bf.bin @@ -0,0 +1 @@ +a:2:{i:0;s:10:"news/putin";i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bf/bfd62835fb12c74a68dbeb7899bc808b.bin b/common/runtime/cache/bf/bfd62835fb12c74a68dbeb7899bc808b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bf/bfd62835fb12c74a68dbeb7899bc808b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/bf/bfdf903110a4277b749df4b4e175eea1.bin b/common/runtime/cache/bf/bfdf903110a4277b749df4b4e175eea1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/bf/bfdf903110a4277b749df4b4e175eea1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c0/c0110dbbf91da7c71677fae54babc1ab.bin b/common/runtime/cache/c0/c0110dbbf91da7c71677fae54babc1ab.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c0/c0110dbbf91da7c71677fae54babc1ab.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c0/c015c27758a687f63a8c3612f2958e37.bin b/common/runtime/cache/c0/c015c27758a687f63a8c3612f2958e37.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c0/c015c27758a687f63a8c3612f2958e37.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c0/c0160cf3341369db298b8df7e92b76b3.bin b/common/runtime/cache/c0/c0160cf3341369db298b8df7e92b76b3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c0/c0160cf3341369db298b8df7e92b76b3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c0/c0188240bafbb9345f76a58567d4b6fc.bin b/common/runtime/cache/c0/c0188240bafbb9345f76a58567d4b6fc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c0/c0188240bafbb9345f76a58567d4b6fc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c0/c0206490c8e5ab61c2ade44be30604f0.bin b/common/runtime/cache/c0/c0206490c8e5ab61c2ade44be30604f0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c0/c0206490c8e5ab61c2ade44be30604f0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c0/c044702223bb8fdebc20b8bdc136b897.bin b/common/runtime/cache/c0/c044702223bb8fdebc20b8bdc136b897.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c0/c044702223bb8fdebc20b8bdc136b897.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c0/c04bb8f7e84613517684f2312a9d17f2.bin b/common/runtime/cache/c0/c04bb8f7e84613517684f2312a9d17f2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c0/c04bb8f7e84613517684f2312a9d17f2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c0/c04ec512635fea071c23c2d3cd90ea94.bin b/common/runtime/cache/c0/c04ec512635fea071c23c2d3cd90ea94.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c0/c04ec512635fea071c23c2d3cd90ea94.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c0/c0525d7ba75ec039a80083f6ff98023c.bin b/common/runtime/cache/c0/c0525d7ba75ec039a80083f6ff98023c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c0/c0525d7ba75ec039a80083f6ff98023c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c0/c06751fda7a065aa24ff8f33a13ba3f3.bin b/common/runtime/cache/c0/c06751fda7a065aa24ff8f33a13ba3f3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c0/c06751fda7a065aa24ff8f33a13ba3f3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c0/c0791febe2336ddd828c94d20409277e.bin b/common/runtime/cache/c0/c0791febe2336ddd828c94d20409277e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c0/c0791febe2336ddd828c94d20409277e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c0/c083a65e52c4e464dd23b355a45f78ca.bin b/common/runtime/cache/c0/c083a65e52c4e464dd23b355a45f78ca.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c0/c083a65e52c4e464dd23b355a45f78ca.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c0/c093643a9e77c4d32a8e24cfac8b2015.bin b/common/runtime/cache/c0/c093643a9e77c4d32a8e24cfac8b2015.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c0/c093643a9e77c4d32a8e24cfac8b2015.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c0/c094c13eb37e13e901103bac5d68c2e8.bin b/common/runtime/cache/c0/c094c13eb37e13e901103bac5d68c2e8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c0/c094c13eb37e13e901103bac5d68c2e8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c0/c0aa9ed4cb97a61ef845bcc995298d57.bin b/common/runtime/cache/c0/c0aa9ed4cb97a61ef845bcc995298d57.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c0/c0aa9ed4cb97a61ef845bcc995298d57.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c0/c0bafba3d7965b3a386c1ac08be0db4d.bin b/common/runtime/cache/c0/c0bafba3d7965b3a386c1ac08be0db4d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c0/c0bafba3d7965b3a386c1ac08be0db4d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c0/c0d9109b838953a8c073fd3374f3eaac.bin b/common/runtime/cache/c0/c0d9109b838953a8c073fd3374f3eaac.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c0/c0d9109b838953a8c073fd3374f3eaac.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c1/c12bc64b374cbbdaa2f16a4534474bb1.bin b/common/runtime/cache/c1/c12bc64b374cbbdaa2f16a4534474bb1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c1/c12bc64b374cbbdaa2f16a4534474bb1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c1/c1360d23367ef80d09777ae84dacf0d1.bin b/common/runtime/cache/c1/c1360d23367ef80d09777ae84dacf0d1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c1/c1360d23367ef80d09777ae84dacf0d1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c1/c13a8a444f91ce1556eaded7d7242ef9.bin b/common/runtime/cache/c1/c13a8a444f91ce1556eaded7d7242ef9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c1/c13a8a444f91ce1556eaded7d7242ef9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c1/c13b70e3bdd4c62b6343c8d70b8636b8.bin b/common/runtime/cache/c1/c13b70e3bdd4c62b6343c8d70b8636b8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c1/c13b70e3bdd4c62b6343c8d70b8636b8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c1/c159e6f9875d90a90334729560f6aa4a.bin b/common/runtime/cache/c1/c159e6f9875d90a90334729560f6aa4a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c1/c159e6f9875d90a90334729560f6aa4a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c1/c15bac24374d695f0c3051d32c667b73.bin b/common/runtime/cache/c1/c15bac24374d695f0c3051d32c667b73.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c1/c15bac24374d695f0c3051d32c667b73.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c1/c16420a09e518617cc7ad96faa4eec66.bin b/common/runtime/cache/c1/c16420a09e518617cc7ad96faa4eec66.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c1/c16420a09e518617cc7ad96faa4eec66.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c1/c19caab44e31cb2bc3e35f9cf41118ba.bin b/common/runtime/cache/c1/c19caab44e31cb2bc3e35f9cf41118ba.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c1/c19caab44e31cb2bc3e35f9cf41118ba.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c1/c1b4e1014f6c37ff94d37018349d8237.bin b/common/runtime/cache/c1/c1b4e1014f6c37ff94d37018349d8237.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c1/c1b4e1014f6c37ff94d37018349d8237.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c1/c1bb183050a2a64a642cf10ff959a15f.bin b/common/runtime/cache/c1/c1bb183050a2a64a642cf10ff959a15f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c1/c1bb183050a2a64a642cf10ff959a15f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c1/c1cedec7844076bb90984eddd7cad317.bin b/common/runtime/cache/c1/c1cedec7844076bb90984eddd7cad317.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c1/c1cedec7844076bb90984eddd7cad317.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c1/c1cfe47bdb8d5006c293ccf28fe82e0f.bin b/common/runtime/cache/c1/c1cfe47bdb8d5006c293ccf28fe82e0f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c1/c1cfe47bdb8d5006c293ccf28fe82e0f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c2/c2052690948d0f0e62e4d5e43e9ce708.bin b/common/runtime/cache/c2/c2052690948d0f0e62e4d5e43e9ce708.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c2/c2052690948d0f0e62e4d5e43e9ce708.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c2/c2100974c9b8f4846099429d51d055f1.bin b/common/runtime/cache/c2/c2100974c9b8f4846099429d51d055f1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c2/c2100974c9b8f4846099429d51d055f1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c2/c21c5ba260c86b239f4511dc9816afc4.bin b/common/runtime/cache/c2/c21c5ba260c86b239f4511dc9816afc4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c2/c21c5ba260c86b239f4511dc9816afc4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c2/c2271d952f3b8e979c3aa86e4308200b.bin b/common/runtime/cache/c2/c2271d952f3b8e979c3aa86e4308200b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c2/c2271d952f3b8e979c3aa86e4308200b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c2/c237561dba32e0031792233ba689d743.bin b/common/runtime/cache/c2/c237561dba32e0031792233ba689d743.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c2/c237561dba32e0031792233ba689d743.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c2/c240126ee57f0fa590033df20edfdb0f.bin b/common/runtime/cache/c2/c240126ee57f0fa590033df20edfdb0f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c2/c240126ee57f0fa590033df20edfdb0f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c2/c24d2736d69598484c0395a41a7057d5.bin b/common/runtime/cache/c2/c24d2736d69598484c0395a41a7057d5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c2/c24d2736d69598484c0395a41a7057d5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c2/c25307566bb286266bbc86bedc436d69.bin b/common/runtime/cache/c2/c25307566bb286266bbc86bedc436d69.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c2/c25307566bb286266bbc86bedc436d69.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c2/c2742d21f07d5a177cc911736f383271.bin b/common/runtime/cache/c2/c2742d21f07d5a177cc911736f383271.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c2/c2742d21f07d5a177cc911736f383271.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c2/c2902ee6a1754c0e46174d54250b6002.bin b/common/runtime/cache/c2/c2902ee6a1754c0e46174d54250b6002.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c2/c2902ee6a1754c0e46174d54250b6002.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c2/c29be03503ab2457e6d797e77910491d.bin b/common/runtime/cache/c2/c29be03503ab2457e6d797e77910491d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c2/c29be03503ab2457e6d797e77910491d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c2/c2a1919121e17668d3c9a465b320a0de.bin b/common/runtime/cache/c2/c2a1919121e17668d3c9a465b320a0de.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c2/c2a1919121e17668d3c9a465b320a0de.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c2/c2a3a0880832ecd03232aaed8bd4bdbd.bin b/common/runtime/cache/c2/c2a3a0880832ecd03232aaed8bd4bdbd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c2/c2a3a0880832ecd03232aaed8bd4bdbd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c2/c2c994c9e5242fc63a92b81c11307841.bin b/common/runtime/cache/c2/c2c994c9e5242fc63a92b81c11307841.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c2/c2c994c9e5242fc63a92b81c11307841.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c2/c2cfe4e332d06cb8eef03abd85e4d34c.bin b/common/runtime/cache/c2/c2cfe4e332d06cb8eef03abd85e4d34c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c2/c2cfe4e332d06cb8eef03abd85e4d34c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c3/c329ae0bd8da58d55102db49f592e073.bin b/common/runtime/cache/c3/c329ae0bd8da58d55102db49f592e073.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c3/c329ae0bd8da58d55102db49f592e073.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c3/c38a18746aed8442596a32180dbf6076.bin b/common/runtime/cache/c3/c38a18746aed8442596a32180dbf6076.bin new file mode 100644 index 0000000..b7002cd --- /dev/null +++ b/common/runtime/cache/c3/c38a18746aed8442596a32180dbf6076.bin @@ -0,0 +1 @@ +a:2:{i:0;a:1:{i:0;a:4:{s:2:"id";s:1:"2";s:4:"name";s:4:"news";s:8:"singular";s:14:"Новость";s:6:"plural";s:14:"Новости";}}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c3/c38a9d6d3e3b186795f06dfe74e313c7.bin b/common/runtime/cache/c3/c38a9d6d3e3b186795f06dfe74e313c7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c3/c38a9d6d3e3b186795f06dfe74e313c7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c3/c3924c07be9038a3429b8abbbb9c2b2a.bin b/common/runtime/cache/c3/c3924c07be9038a3429b8abbbb9c2b2a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c3/c3924c07be9038a3429b8abbbb9c2b2a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c3/c3b042403aff36bb92d665e080062a60.bin b/common/runtime/cache/c3/c3b042403aff36bb92d665e080062a60.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c3/c3b042403aff36bb92d665e080062a60.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c3/c3b8987c870322957bd5c64023cbee25.bin b/common/runtime/cache/c3/c3b8987c870322957bd5c64023cbee25.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c3/c3b8987c870322957bd5c64023cbee25.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c3/c3de84aee0bf994e024c29966f64965a.bin b/common/runtime/cache/c3/c3de84aee0bf994e024c29966f64965a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c3/c3de84aee0bf994e024c29966f64965a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c3/c3e28717f184487ca2b2486b6e3f7441.bin b/common/runtime/cache/c3/c3e28717f184487ca2b2486b6e3f7441.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c3/c3e28717f184487ca2b2486b6e3f7441.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c3/c3f9cf67178493f0aab7b94c5bdc7b56.bin b/common/runtime/cache/c3/c3f9cf67178493f0aab7b94c5bdc7b56.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c3/c3f9cf67178493f0aab7b94c5bdc7b56.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c3/c3fcc92e1dd5d7155285b9de0e0288ff.bin b/common/runtime/cache/c3/c3fcc92e1dd5d7155285b9de0e0288ff.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c3/c3fcc92e1dd5d7155285b9de0e0288ff.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c4/c4270f37a127ccb5e1946f0a2ae21229.bin b/common/runtime/cache/c4/c4270f37a127ccb5e1946f0a2ae21229.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c4/c4270f37a127ccb5e1946f0a2ae21229.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c4/c428492c8b53404d9fa78111fc74894c.bin b/common/runtime/cache/c4/c428492c8b53404d9fa78111fc74894c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c4/c428492c8b53404d9fa78111fc74894c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c4/c4335dd1ff704da68b6964f2ad431a67.bin b/common/runtime/cache/c4/c4335dd1ff704da68b6964f2ad431a67.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c4/c4335dd1ff704da68b6964f2ad431a67.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c4/c4424da12b581dbe8d240926ce4c2d66.bin b/common/runtime/cache/c4/c4424da12b581dbe8d240926ce4c2d66.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c4/c4424da12b581dbe8d240926ce4c2d66.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c4/c458342d14484fd96332bea8f2ae8648.bin b/common/runtime/cache/c4/c458342d14484fd96332bea8f2ae8648.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c4/c458342d14484fd96332bea8f2ae8648.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c4/c459743553b66a03c3045b2a94875423.bin b/common/runtime/cache/c4/c459743553b66a03c3045b2a94875423.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c4/c459743553b66a03c3045b2a94875423.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c4/c4819a7a8ead31b72cf4b44ecf8dfe67.bin b/common/runtime/cache/c4/c4819a7a8ead31b72cf4b44ecf8dfe67.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c4/c4819a7a8ead31b72cf4b44ecf8dfe67.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c4/c4aca21303acc6e20167ce180484006c.bin b/common/runtime/cache/c4/c4aca21303acc6e20167ce180484006c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c4/c4aca21303acc6e20167ce180484006c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c4/c4acf884790159c7bcc977642db1d392.bin b/common/runtime/cache/c4/c4acf884790159c7bcc977642db1d392.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c4/c4acf884790159c7bcc977642db1d392.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c4/c4e1bb05c75445a7a955143ea2debf49.bin b/common/runtime/cache/c4/c4e1bb05c75445a7a955143ea2debf49.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c4/c4e1bb05c75445a7a955143ea2debf49.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c4/c4e47694f22ebcc1055f9fb2fb38434c.bin b/common/runtime/cache/c4/c4e47694f22ebcc1055f9fb2fb38434c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c4/c4e47694f22ebcc1055f9fb2fb38434c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c4/c4e86f997e280c08603ad17ae7e083c2.bin b/common/runtime/cache/c4/c4e86f997e280c08603ad17ae7e083c2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c4/c4e86f997e280c08603ad17ae7e083c2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c4/c4eba73dd6a780debf8723c45ad6d266.bin b/common/runtime/cache/c4/c4eba73dd6a780debf8723c45ad6d266.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c4/c4eba73dd6a780debf8723c45ad6d266.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c4/c4f7a162eaf97b289c314b5064a6c832.bin b/common/runtime/cache/c4/c4f7a162eaf97b289c314b5064a6c832.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c4/c4f7a162eaf97b289c314b5064a6c832.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c4/c4fd6a79d604ac9c0ae6626d97782e7c.bin b/common/runtime/cache/c4/c4fd6a79d604ac9c0ae6626d97782e7c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c4/c4fd6a79d604ac9c0ae6626d97782e7c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c509414213c62f0d8bfe348c5bbfd5a6.bin b/common/runtime/cache/c5/c509414213c62f0d8bfe348c5bbfd5a6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c5/c509414213c62f0d8bfe348c5bbfd5a6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c50df5971b3392cf9bcc729e6fc578fa.bin b/common/runtime/cache/c5/c50df5971b3392cf9bcc729e6fc578fa.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c5/c50df5971b3392cf9bcc729e6fc578fa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c52087f344c8eec1e811ab941ca1843a.bin b/common/runtime/cache/c5/c52087f344c8eec1e811ab941ca1843a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c5/c52087f344c8eec1e811ab941ca1843a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c5219fcdd3c6b88e261e3cbdb5e9fb29.bin b/common/runtime/cache/c5/c5219fcdd3c6b88e261e3cbdb5e9fb29.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c5/c5219fcdd3c6b88e261e3cbdb5e9fb29.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c5392213e28ac2509bf6e30b1cbd8f73.bin b/common/runtime/cache/c5/c5392213e28ac2509bf6e30b1cbd8f73.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c5/c5392213e28ac2509bf6e30b1cbd8f73.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c5438d1821472b2020dc5d019cf93d26.bin b/common/runtime/cache/c5/c5438d1821472b2020dc5d019cf93d26.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c5/c5438d1821472b2020dc5d019cf93d26.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c57cd3cc3c1617be27d283c4a07f068f.bin b/common/runtime/cache/c5/c57cd3cc3c1617be27d283c4a07f068f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c5/c57cd3cc3c1617be27d283c4a07f068f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c58fd0efd6892afcdd89cdf9e30cc665.bin b/common/runtime/cache/c5/c58fd0efd6892afcdd89cdf9e30cc665.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c5/c58fd0efd6892afcdd89cdf9e30cc665.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c59202baeb8d3eba2835f264a50dc0a7.bin b/common/runtime/cache/c5/c59202baeb8d3eba2835f264a50dc0a7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c5/c59202baeb8d3eba2835f264a50dc0a7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c59d4d459536686f469304aa9835ab89.bin b/common/runtime/cache/c5/c59d4d459536686f469304aa9835ab89.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c5/c59d4d459536686f469304aa9835ab89.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c5a0fb96fc465b8dcaea4e3577d18c34.bin b/common/runtime/cache/c5/c5a0fb96fc465b8dcaea4e3577d18c34.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c5/c5a0fb96fc465b8dcaea4e3577d18c34.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c5a63aea07796540c492ab9284d984ea.bin b/common/runtime/cache/c5/c5a63aea07796540c492ab9284d984ea.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c5/c5a63aea07796540c492ab9284d984ea.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c5aa8c7a18277ae16e089a778a59aea0.bin b/common/runtime/cache/c5/c5aa8c7a18277ae16e089a778a59aea0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c5/c5aa8c7a18277ae16e089a778a59aea0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c5ad47bb0b51cf3c9e4ffc777d3de75c.bin b/common/runtime/cache/c5/c5ad47bb0b51cf3c9e4ffc777d3de75c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c5/c5ad47bb0b51cf3c9e4ffc777d3de75c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c5ad5db7b42d1b44b766b3e215bab6b2.bin b/common/runtime/cache/c5/c5ad5db7b42d1b44b766b3e215bab6b2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c5/c5ad5db7b42d1b44b766b3e215bab6b2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c5b028f36c57b73bcd9f3bd4ae78b5ed.bin b/common/runtime/cache/c5/c5b028f36c57b73bcd9f3bd4ae78b5ed.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c5/c5b028f36c57b73bcd9f3bd4ae78b5ed.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c5b78f5b7be1b746c0715c66ab7ba5d2.bin b/common/runtime/cache/c5/c5b78f5b7be1b746c0715c66ab7ba5d2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c5/c5b78f5b7be1b746c0715c66ab7ba5d2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c5e9a313a3d1b7897add261c061cac97.bin b/common/runtime/cache/c5/c5e9a313a3d1b7897add261c061cac97.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c5/c5e9a313a3d1b7897add261c061cac97.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c5/c5ea6edc2baf775c7831403f0785dd3a.bin b/common/runtime/cache/c5/c5ea6edc2baf775c7831403f0785dd3a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c5/c5ea6edc2baf775c7831403f0785dd3a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c6/c60a3bb0a8503bd077476e2540bd8894.bin b/common/runtime/cache/c6/c60a3bb0a8503bd077476e2540bd8894.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c6/c60a3bb0a8503bd077476e2540bd8894.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c6/c61148fe06ec73da1063ca63dabf475b.bin b/common/runtime/cache/c6/c61148fe06ec73da1063ca63dabf475b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c6/c61148fe06ec73da1063ca63dabf475b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c6/c6182edf32688e20539db37d14d3cebb.bin b/common/runtime/cache/c6/c6182edf32688e20539db37d14d3cebb.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c6/c6182edf32688e20539db37d14d3cebb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c6/c623690c213a75c0b94313f1aeb7ffc7.bin b/common/runtime/cache/c6/c623690c213a75c0b94313f1aeb7ffc7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c6/c623690c213a75c0b94313f1aeb7ffc7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c6/c630fc94062934ff58be13c8880c3dd4.bin b/common/runtime/cache/c6/c630fc94062934ff58be13c8880c3dd4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c6/c630fc94062934ff58be13c8880c3dd4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c6/c63cf0fc3dba2d86967da51513f4e7cd.bin b/common/runtime/cache/c6/c63cf0fc3dba2d86967da51513f4e7cd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c6/c63cf0fc3dba2d86967da51513f4e7cd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c6/c64f199108062fb3c279cdde200090e2.bin b/common/runtime/cache/c6/c64f199108062fb3c279cdde200090e2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c6/c64f199108062fb3c279cdde200090e2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c6/c6638a5f4929cf2be61a59d843405ea1.bin b/common/runtime/cache/c6/c6638a5f4929cf2be61a59d843405ea1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c6/c6638a5f4929cf2be61a59d843405ea1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c6/c67c750d6012101d09afbe820a4b3c7f.bin b/common/runtime/cache/c6/c67c750d6012101d09afbe820a4b3c7f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c6/c67c750d6012101d09afbe820a4b3c7f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c6/c6859551da3f118fe7feb618a5168610.bin b/common/runtime/cache/c6/c6859551da3f118fe7feb618a5168610.bin new file mode 100644 index 0000000..ed8c4f2 --- /dev/null +++ b/common/runtime/cache/c6/c6859551da3f118fe7feb618a5168610.bin @@ -0,0 +1 @@ +a:2:{i:0;s:11:"news/sharap";i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c6/c68c551b07981de72dc33048d128790d.bin b/common/runtime/cache/c6/c68c551b07981de72dc33048d128790d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c6/c68c551b07981de72dc33048d128790d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c6/c6a5b72a2d72f19729d2dcae9aa1b2ab.bin b/common/runtime/cache/c6/c6a5b72a2d72f19729d2dcae9aa1b2ab.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c6/c6a5b72a2d72f19729d2dcae9aa1b2ab.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c6/c6b72e26bd89cc197075eed71586462a.bin b/common/runtime/cache/c6/c6b72e26bd89cc197075eed71586462a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c6/c6b72e26bd89cc197075eed71586462a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c6/c6be48b6b2f65b92e40f4730da4e24df.bin b/common/runtime/cache/c6/c6be48b6b2f65b92e40f4730da4e24df.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c6/c6be48b6b2f65b92e40f4730da4e24df.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c6/c6d704a434029db06ce728cc7bb3efe3.bin b/common/runtime/cache/c6/c6d704a434029db06ce728cc7bb3efe3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c6/c6d704a434029db06ce728cc7bb3efe3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c7/c708a613f96384fd7a4b8d50ee6d70de.bin b/common/runtime/cache/c7/c708a613f96384fd7a4b8d50ee6d70de.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c7/c708a613f96384fd7a4b8d50ee6d70de.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c7/c70c0f2082fccc2092442c820ee8306d.bin b/common/runtime/cache/c7/c70c0f2082fccc2092442c820ee8306d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c7/c70c0f2082fccc2092442c820ee8306d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c7/c71d54130be2ee0c4fa7e8f8b869008f.bin b/common/runtime/cache/c7/c71d54130be2ee0c4fa7e8f8b869008f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c7/c71d54130be2ee0c4fa7e8f8b869008f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c7/c71d6e2169a775e0478551aef3f12d93.bin b/common/runtime/cache/c7/c71d6e2169a775e0478551aef3f12d93.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c7/c71d6e2169a775e0478551aef3f12d93.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c7/c72dca5e9b7dbed5ae0b54ba5f1b1207.bin b/common/runtime/cache/c7/c72dca5e9b7dbed5ae0b54ba5f1b1207.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c7/c72dca5e9b7dbed5ae0b54ba5f1b1207.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c7/c742981e9b4702b2e905ec9dc9058b87.bin b/common/runtime/cache/c7/c742981e9b4702b2e905ec9dc9058b87.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c7/c742981e9b4702b2e905ec9dc9058b87.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c7/c74d6e74bbcbe9504c0dd7190da2d135.bin b/common/runtime/cache/c7/c74d6e74bbcbe9504c0dd7190da2d135.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c7/c74d6e74bbcbe9504c0dd7190da2d135.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c7/c77e07afa43df0be3532bcd069a5f7b4.bin b/common/runtime/cache/c7/c77e07afa43df0be3532bcd069a5f7b4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c7/c77e07afa43df0be3532bcd069a5f7b4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c7/c7844a70c5ebd1703c5ebb5efc235e7a.bin b/common/runtime/cache/c7/c7844a70c5ebd1703c5ebb5efc235e7a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c7/c7844a70c5ebd1703c5ebb5efc235e7a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c7/c788a4217a6be1db625dbf31affc956e.bin b/common/runtime/cache/c7/c788a4217a6be1db625dbf31affc956e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c7/c788a4217a6be1db625dbf31affc956e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c7/c7ab9b2977619c79673fcbe409a03227.bin b/common/runtime/cache/c7/c7ab9b2977619c79673fcbe409a03227.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c7/c7ab9b2977619c79673fcbe409a03227.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c7/c7b1705f16c40e24187549b8d55ee486.bin b/common/runtime/cache/c7/c7b1705f16c40e24187549b8d55ee486.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c7/c7b1705f16c40e24187549b8d55ee486.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c7/c7b984302d0abcafa51bdf4aee54bff2.bin b/common/runtime/cache/c7/c7b984302d0abcafa51bdf4aee54bff2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c7/c7b984302d0abcafa51bdf4aee54bff2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c7/c7c5df00f715d866278a525f5186741c.bin b/common/runtime/cache/c7/c7c5df00f715d866278a525f5186741c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c7/c7c5df00f715d866278a525f5186741c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c7/c7cc71fe741f023f76de44fc59462e2f.bin b/common/runtime/cache/c7/c7cc71fe741f023f76de44fc59462e2f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c7/c7cc71fe741f023f76de44fc59462e2f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c7/c7dc79e94ad7389ebfd5b0b1f1e1a66d.bin b/common/runtime/cache/c7/c7dc79e94ad7389ebfd5b0b1f1e1a66d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c7/c7dc79e94ad7389ebfd5b0b1f1e1a66d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c8/c8069a68e455e1c08559974235a9229d.bin b/common/runtime/cache/c8/c8069a68e455e1c08559974235a9229d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c8/c8069a68e455e1c08559974235a9229d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c8/c816c7e4c12d9bf90092d71558f3f7f6.bin b/common/runtime/cache/c8/c816c7e4c12d9bf90092d71558f3f7f6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c8/c816c7e4c12d9bf90092d71558f3f7f6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c8/c82fcc54bacb07f21026b2f686854d6c.bin b/common/runtime/cache/c8/c82fcc54bacb07f21026b2f686854d6c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c8/c82fcc54bacb07f21026b2f686854d6c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c8/c835be2593e011d3d947fd339f270a22.bin b/common/runtime/cache/c8/c835be2593e011d3d947fd339f270a22.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c8/c835be2593e011d3d947fd339f270a22.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c8/c837c235db612fa26d4dcf0a0447b5d2.bin b/common/runtime/cache/c8/c837c235db612fa26d4dcf0a0447b5d2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c8/c837c235db612fa26d4dcf0a0447b5d2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c8/c8486a6377980e1fd3be06dae27b673b.bin b/common/runtime/cache/c8/c8486a6377980e1fd3be06dae27b673b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c8/c8486a6377980e1fd3be06dae27b673b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c8/c85500c138ff4bad3e243dd20e7cc375.bin b/common/runtime/cache/c8/c85500c138ff4bad3e243dd20e7cc375.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c8/c85500c138ff4bad3e243dd20e7cc375.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c8/c896f5ebfc2204f5987c0ef43c250f20.bin b/common/runtime/cache/c8/c896f5ebfc2204f5987c0ef43c250f20.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c8/c896f5ebfc2204f5987c0ef43c250f20.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c8/c8ad3b98260fcf60854518dc3b783768.bin b/common/runtime/cache/c8/c8ad3b98260fcf60854518dc3b783768.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c8/c8ad3b98260fcf60854518dc3b783768.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c8/c8c89dab57684992ba3fd59f0f127456.bin b/common/runtime/cache/c8/c8c89dab57684992ba3fd59f0f127456.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c8/c8c89dab57684992ba3fd59f0f127456.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c8/c8d1893ab0da92d4daaf94d5b47b2a71.bin b/common/runtime/cache/c8/c8d1893ab0da92d4daaf94d5b47b2a71.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c8/c8d1893ab0da92d4daaf94d5b47b2a71.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c9/c94c703acb30788b1ceff17d9e893a18.bin b/common/runtime/cache/c9/c94c703acb30788b1ceff17d9e893a18.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c9/c94c703acb30788b1ceff17d9e893a18.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c9/c9687441df2b807bba46a118d1da4151.bin b/common/runtime/cache/c9/c9687441df2b807bba46a118d1da4151.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c9/c9687441df2b807bba46a118d1da4151.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c9/c98e95ba2f603014f1e256daadf1c5ae.bin b/common/runtime/cache/c9/c98e95ba2f603014f1e256daadf1c5ae.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c9/c98e95ba2f603014f1e256daadf1c5ae.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c9/c98f71db1878e7f80d5e796cab4fca9b.bin b/common/runtime/cache/c9/c98f71db1878e7f80d5e796cab4fca9b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c9/c98f71db1878e7f80d5e796cab4fca9b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c9/c99c9290384e55db48c720dbc4e34dd7.bin b/common/runtime/cache/c9/c99c9290384e55db48c720dbc4e34dd7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c9/c99c9290384e55db48c720dbc4e34dd7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c9/c9b14615bcb82b67a2517ae8a710140f.bin b/common/runtime/cache/c9/c9b14615bcb82b67a2517ae8a710140f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c9/c9b14615bcb82b67a2517ae8a710140f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c9/c9c45e70608c99a823a7661f192f711e.bin b/common/runtime/cache/c9/c9c45e70608c99a823a7661f192f711e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/c9/c9c45e70608c99a823a7661f192f711e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c9/c9c5261e6d68a8180dc4470a8fa85241.bin b/common/runtime/cache/c9/c9c5261e6d68a8180dc4470a8fa85241.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c9/c9c5261e6d68a8180dc4470a8fa85241.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/c9/c9dcfff5d9e835be7a5d17fbd7210cbf.bin b/common/runtime/cache/c9/c9dcfff5d9e835be7a5d17fbd7210cbf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/c9/c9dcfff5d9e835be7a5d17fbd7210cbf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ca/ca1b30197c60f583ac2d9c2e0f71ff89.bin b/common/runtime/cache/ca/ca1b30197c60f583ac2d9c2e0f71ff89.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ca/ca1b30197c60f583ac2d9c2e0f71ff89.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ca/ca2824421d2efbef92d190f762334ebe.bin b/common/runtime/cache/ca/ca2824421d2efbef92d190f762334ebe.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ca/ca2824421d2efbef92d190f762334ebe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ca/ca614230ca96db0cf95c5b5a5ad63ded.bin b/common/runtime/cache/ca/ca614230ca96db0cf95c5b5a5ad63ded.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ca/ca614230ca96db0cf95c5b5a5ad63ded.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ca/ca685cca4d2e1be5c30b2bfbb6a471da.bin b/common/runtime/cache/ca/ca685cca4d2e1be5c30b2bfbb6a471da.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ca/ca685cca4d2e1be5c30b2bfbb6a471da.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ca/ca838eb8193eecff6da357c124db73d3.bin b/common/runtime/cache/ca/ca838eb8193eecff6da357c124db73d3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ca/ca838eb8193eecff6da357c124db73d3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ca/ca83a47957a8afa805cf4357cbf14c66.bin b/common/runtime/cache/ca/ca83a47957a8afa805cf4357cbf14c66.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ca/ca83a47957a8afa805cf4357cbf14c66.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ca/ca892b40dc6d8d96bb8bf3483a28dec8.bin b/common/runtime/cache/ca/ca892b40dc6d8d96bb8bf3483a28dec8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ca/ca892b40dc6d8d96bb8bf3483a28dec8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ca/ca8c81a55124d5513e30bfe54f483ff6.bin b/common/runtime/cache/ca/ca8c81a55124d5513e30bfe54f483ff6.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ca/ca8c81a55124d5513e30bfe54f483ff6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ca/ca93ca94ffc682f2530d918b9c1fe75a.bin b/common/runtime/cache/ca/ca93ca94ffc682f2530d918b9c1fe75a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ca/ca93ca94ffc682f2530d918b9c1fe75a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ca/caa5f389a869805d4f48d5cb90af1230.bin b/common/runtime/cache/ca/caa5f389a869805d4f48d5cb90af1230.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ca/caa5f389a869805d4f48d5cb90af1230.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ca/cac2444c9b2e470b98b9fde7eeff975a.bin b/common/runtime/cache/ca/cac2444c9b2e470b98b9fde7eeff975a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ca/cac2444c9b2e470b98b9fde7eeff975a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ca/cae4eb19bcd45d7fa1028b6586b85720.bin b/common/runtime/cache/ca/cae4eb19bcd45d7fa1028b6586b85720.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ca/cae4eb19bcd45d7fa1028b6586b85720.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cb/cb0906cd9f19a670a8a206db243d1292.bin b/common/runtime/cache/cb/cb0906cd9f19a670a8a206db243d1292.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cb/cb0906cd9f19a670a8a206db243d1292.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cb/cb10d32ecbdedca5430525f94cd42cb7.bin b/common/runtime/cache/cb/cb10d32ecbdedca5430525f94cd42cb7.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/cb/cb10d32ecbdedca5430525f94cd42cb7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cb/cb556612acfa2bf663408a21e4bf1ec6.bin b/common/runtime/cache/cb/cb556612acfa2bf663408a21e4bf1ec6.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/cb/cb556612acfa2bf663408a21e4bf1ec6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cb/cb616f0362b7a69fd23a297add538408.bin b/common/runtime/cache/cb/cb616f0362b7a69fd23a297add538408.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cb/cb616f0362b7a69fd23a297add538408.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cb/cb6b67c89f68f565b0f1907fe27b4bb2.bin b/common/runtime/cache/cb/cb6b67c89f68f565b0f1907fe27b4bb2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cb/cb6b67c89f68f565b0f1907fe27b4bb2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cb/cb73f0df65d4113967c757d53b806951.bin b/common/runtime/cache/cb/cb73f0df65d4113967c757d53b806951.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/cb/cb73f0df65d4113967c757d53b806951.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cb/cb7d0c6ccffa9a2552d1c20a6b03dcc3.bin b/common/runtime/cache/cb/cb7d0c6ccffa9a2552d1c20a6b03dcc3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cb/cb7d0c6ccffa9a2552d1c20a6b03dcc3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cb/cb91941a4802c4d0d790487843f467c0.bin b/common/runtime/cache/cb/cb91941a4802c4d0d790487843f467c0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cb/cb91941a4802c4d0d790487843f467c0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cb/cb95caa2e1595450ecf964134bb9ad63.bin b/common/runtime/cache/cb/cb95caa2e1595450ecf964134bb9ad63.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cb/cb95caa2e1595450ecf964134bb9ad63.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cb/cbc18547b9e1fbf852afc825daf8db67.bin b/common/runtime/cache/cb/cbc18547b9e1fbf852afc825daf8db67.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/cb/cbc18547b9e1fbf852afc825daf8db67.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cb/cbde9fa7c10bf0eec26f66cadc3f486f.bin b/common/runtime/cache/cb/cbde9fa7c10bf0eec26f66cadc3f486f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cb/cbde9fa7c10bf0eec26f66cadc3f486f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cb/cbef01493757d6ce5b2c8124baedc504.bin b/common/runtime/cache/cb/cbef01493757d6ce5b2c8124baedc504.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cb/cbef01493757d6ce5b2c8124baedc504.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cc/cc278fc9a92846bd5528a6b0374147b6.bin b/common/runtime/cache/cc/cc278fc9a92846bd5528a6b0374147b6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cc/cc278fc9a92846bd5528a6b0374147b6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cc/cc64e57c9baab28902518553760fa753.bin b/common/runtime/cache/cc/cc64e57c9baab28902518553760fa753.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cc/cc64e57c9baab28902518553760fa753.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cc/cc73592712b4a9e9b0b9bc9eeced5e5c.bin b/common/runtime/cache/cc/cc73592712b4a9e9b0b9bc9eeced5e5c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cc/cc73592712b4a9e9b0b9bc9eeced5e5c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cc/cc932839d50f65a17b33dcce828e4270.bin b/common/runtime/cache/cc/cc932839d50f65a17b33dcce828e4270.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cc/cc932839d50f65a17b33dcce828e4270.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cc/ccc194925e296830dc3a035e49b95e56.bin b/common/runtime/cache/cc/ccc194925e296830dc3a035e49b95e56.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cc/ccc194925e296830dc3a035e49b95e56.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cc/ccd1de64a738df646e669e6b054d1489.bin b/common/runtime/cache/cc/ccd1de64a738df646e669e6b054d1489.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/cc/ccd1de64a738df646e669e6b054d1489.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cc/ccfd4f558a4b20fd2fc85790e6bbfcb4.bin b/common/runtime/cache/cc/ccfd4f558a4b20fd2fc85790e6bbfcb4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/cc/ccfd4f558a4b20fd2fc85790e6bbfcb4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cd/cd0a8d56f5f1f10045c967f6a2e880f4.bin b/common/runtime/cache/cd/cd0a8d56f5f1f10045c967f6a2e880f4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/cd/cd0a8d56f5f1f10045c967f6a2e880f4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cd/cd1aea40457fabc3996782eb87e0112b.bin b/common/runtime/cache/cd/cd1aea40457fabc3996782eb87e0112b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cd/cd1aea40457fabc3996782eb87e0112b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cd/cd2d348d64c5a258b59cd787075b2d92.bin b/common/runtime/cache/cd/cd2d348d64c5a258b59cd787075b2d92.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cd/cd2d348d64c5a258b59cd787075b2d92.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cd/cd41f12d1763dff489011489f99dd0aa.bin b/common/runtime/cache/cd/cd41f12d1763dff489011489f99dd0aa.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cd/cd41f12d1763dff489011489f99dd0aa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cd/cd7576c18f71e8de5abe5541072246ae.bin b/common/runtime/cache/cd/cd7576c18f71e8de5abe5541072246ae.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cd/cd7576c18f71e8de5abe5541072246ae.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cd/cd88a09e2f4acd1a89d7de6afd78bf5a.bin b/common/runtime/cache/cd/cd88a09e2f4acd1a89d7de6afd78bf5a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/cd/cd88a09e2f4acd1a89d7de6afd78bf5a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cd/cda40a2a0b5a2c812be0e49d8f6eac4a.bin b/common/runtime/cache/cd/cda40a2a0b5a2c812be0e49d8f6eac4a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cd/cda40a2a0b5a2c812be0e49d8f6eac4a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cd/cdd0956d50da5c667062c7a99fdf1db0.bin b/common/runtime/cache/cd/cdd0956d50da5c667062c7a99fdf1db0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cd/cdd0956d50da5c667062c7a99fdf1db0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cd/cddeaca5a3b68d6880a4f5dcf6e0c1b6.bin b/common/runtime/cache/cd/cddeaca5a3b68d6880a4f5dcf6e0c1b6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cd/cddeaca5a3b68d6880a4f5dcf6e0c1b6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ce/ce0eb65ec10fd1b8975f47526fba22ae.bin b/common/runtime/cache/ce/ce0eb65ec10fd1b8975f47526fba22ae.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ce/ce0eb65ec10fd1b8975f47526fba22ae.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ce/ce36c34bf6060a241de1f51c7cd6efcc.bin b/common/runtime/cache/ce/ce36c34bf6060a241de1f51c7cd6efcc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ce/ce36c34bf6060a241de1f51c7cd6efcc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ce/ce41267d2607cd74cc2defcfd3d16832.bin b/common/runtime/cache/ce/ce41267d2607cd74cc2defcfd3d16832.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ce/ce41267d2607cd74cc2defcfd3d16832.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ce/ce603ee29d9d1c5f243f188b522c6631.bin b/common/runtime/cache/ce/ce603ee29d9d1c5f243f188b522c6631.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ce/ce603ee29d9d1c5f243f188b522c6631.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ce/ce6ded91faf5e745134a3d828976d370.bin b/common/runtime/cache/ce/ce6ded91faf5e745134a3d828976d370.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ce/ce6ded91faf5e745134a3d828976d370.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ce/ce8acfd95e0291b1eb5187dc523fb4b2.bin b/common/runtime/cache/ce/ce8acfd95e0291b1eb5187dc523fb4b2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ce/ce8acfd95e0291b1eb5187dc523fb4b2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ce/cebac06cc43015d27dde9a60aeec9f68.bin b/common/runtime/cache/ce/cebac06cc43015d27dde9a60aeec9f68.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ce/cebac06cc43015d27dde9a60aeec9f68.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ce/cebc9c42093050c9a21b1cbd298daa35.bin b/common/runtime/cache/ce/cebc9c42093050c9a21b1cbd298daa35.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ce/cebc9c42093050c9a21b1cbd298daa35.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ce/ced3cf89a8faa66bfb1b28aa927987c7.bin b/common/runtime/cache/ce/ced3cf89a8faa66bfb1b28aa927987c7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ce/ced3cf89a8faa66bfb1b28aa927987c7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ce/cee80c24c7e23374f7ac3cf03f422e3d.bin b/common/runtime/cache/ce/cee80c24c7e23374f7ac3cf03f422e3d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ce/cee80c24c7e23374f7ac3cf03f422e3d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ce/cee8ade5ce3a754768ecc00e28c954f9.bin b/common/runtime/cache/ce/cee8ade5ce3a754768ecc00e28c954f9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ce/cee8ade5ce3a754768ecc00e28c954f9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ce/ceef5f5c00dfaa1e10c25f40e49bc4dc.bin b/common/runtime/cache/ce/ceef5f5c00dfaa1e10c25f40e49bc4dc.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ce/ceef5f5c00dfaa1e10c25f40e49bc4dc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cf/cf1eee1f71a01fc802281d3b8004b4b8.bin b/common/runtime/cache/cf/cf1eee1f71a01fc802281d3b8004b4b8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cf/cf1eee1f71a01fc802281d3b8004b4b8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cf/cf21aa0040ea247b72b7f648edd20532.bin b/common/runtime/cache/cf/cf21aa0040ea247b72b7f648edd20532.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cf/cf21aa0040ea247b72b7f648edd20532.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cf/cf4e08b4f1eb173c5fccad28fe0909f8.bin b/common/runtime/cache/cf/cf4e08b4f1eb173c5fccad28fe0909f8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/cf/cf4e08b4f1eb173c5fccad28fe0909f8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cf/cf53545d7ca7e7921cb9b95a7da00c4e.bin b/common/runtime/cache/cf/cf53545d7ca7e7921cb9b95a7da00c4e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cf/cf53545d7ca7e7921cb9b95a7da00c4e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cf/cf6723a9efdff3adc51afca5cb49bb7a.bin b/common/runtime/cache/cf/cf6723a9efdff3adc51afca5cb49bb7a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/cf/cf6723a9efdff3adc51afca5cb49bb7a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cf/cf6797021861f1252495c832ad5856e9.bin b/common/runtime/cache/cf/cf6797021861f1252495c832ad5856e9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cf/cf6797021861f1252495c832ad5856e9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cf/cf87019918c2e94fddd039810e6fcb3e.bin b/common/runtime/cache/cf/cf87019918c2e94fddd039810e6fcb3e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/cf/cf87019918c2e94fddd039810e6fcb3e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cf/cf8be43c6df9f09a7db38dc3577866db.bin b/common/runtime/cache/cf/cf8be43c6df9f09a7db38dc3577866db.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/cf/cf8be43c6df9f09a7db38dc3577866db.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cf/cf9d175b8b91ac5e5e0c99458bf4d1ef.bin b/common/runtime/cache/cf/cf9d175b8b91ac5e5e0c99458bf4d1ef.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cf/cf9d175b8b91ac5e5e0c99458bf4d1ef.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cf/cfcfae7a8c678067e78706c083de2b59.bin b/common/runtime/cache/cf/cfcfae7a8c678067e78706c083de2b59.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/cf/cfcfae7a8c678067e78706c083de2b59.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cf/cfedac96b01cd88673af4dd556c829a6.bin b/common/runtime/cache/cf/cfedac96b01cd88673af4dd556c829a6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cf/cfedac96b01cd88673af4dd556c829a6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cf/cff9192064370722deb5aad2bdba5f90.bin b/common/runtime/cache/cf/cff9192064370722deb5aad2bdba5f90.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cf/cff9192064370722deb5aad2bdba5f90.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/cf/cfffa575f8323e8b5f01f9a6c11d6387.bin b/common/runtime/cache/cf/cfffa575f8323e8b5f01f9a6c11d6387.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/cf/cfffa575f8323e8b5f01f9a6c11d6387.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d0/d00acb139fc119ec09a8c78e4fe73e7c.bin b/common/runtime/cache/d0/d00acb139fc119ec09a8c78e4fe73e7c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d0/d00acb139fc119ec09a8c78e4fe73e7c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d0/d00fb717ca223772de4c6e825400db0c.bin b/common/runtime/cache/d0/d00fb717ca223772de4c6e825400db0c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d0/d00fb717ca223772de4c6e825400db0c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d0/d0236ecc96c0f74711559927ba69ba2e.bin b/common/runtime/cache/d0/d0236ecc96c0f74711559927ba69ba2e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d0/d0236ecc96c0f74711559927ba69ba2e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d0/d0539d288d13d1274bd3cb20d6da86fe.bin b/common/runtime/cache/d0/d0539d288d13d1274bd3cb20d6da86fe.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d0/d0539d288d13d1274bd3cb20d6da86fe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d0/d05c31b23017d6f2c65583a377012549.bin b/common/runtime/cache/d0/d05c31b23017d6f2c65583a377012549.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d0/d05c31b23017d6f2c65583a377012549.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d0/d05f484af608d95a197d95ff0c93ff8a.bin b/common/runtime/cache/d0/d05f484af608d95a197d95ff0c93ff8a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d0/d05f484af608d95a197d95ff0c93ff8a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d0/d06f5c82b0415d99df92e18b710a2a36.bin b/common/runtime/cache/d0/d06f5c82b0415d99df92e18b710a2a36.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d0/d06f5c82b0415d99df92e18b710a2a36.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d0/d0958bbf4373232ce7875eaf2d899ac6.bin b/common/runtime/cache/d0/d0958bbf4373232ce7875eaf2d899ac6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d0/d0958bbf4373232ce7875eaf2d899ac6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d0/d09d670556ae0997e0c31884afbeb159.bin b/common/runtime/cache/d0/d09d670556ae0997e0c31884afbeb159.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d0/d09d670556ae0997e0c31884afbeb159.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d0/d0a637fe28d77408cb67db2b53416a3d.bin b/common/runtime/cache/d0/d0a637fe28d77408cb67db2b53416a3d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d0/d0a637fe28d77408cb67db2b53416a3d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d0/d0a783058c4574b1553573979c284910.bin b/common/runtime/cache/d0/d0a783058c4574b1553573979c284910.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d0/d0a783058c4574b1553573979c284910.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d1/d129176b5ec0af70886d288f9b525f17.bin b/common/runtime/cache/d1/d129176b5ec0af70886d288f9b525f17.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d1/d129176b5ec0af70886d288f9b525f17.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d1/d12a5eac05d787f2f26d07d3731399b2.bin b/common/runtime/cache/d1/d12a5eac05d787f2f26d07d3731399b2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d1/d12a5eac05d787f2f26d07d3731399b2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d1/d14f86b82ecdfc5267a1bd71f84f4079.bin b/common/runtime/cache/d1/d14f86b82ecdfc5267a1bd71f84f4079.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d1/d14f86b82ecdfc5267a1bd71f84f4079.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d1/d17d13c7ea520eb982d2b4716506d306.bin b/common/runtime/cache/d1/d17d13c7ea520eb982d2b4716506d306.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d1/d17d13c7ea520eb982d2b4716506d306.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d1/d188d62138334236a97fd3178d25be28.bin b/common/runtime/cache/d1/d188d62138334236a97fd3178d25be28.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d1/d188d62138334236a97fd3178d25be28.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d1/d193fb63847914659e3dc7df2794d146.bin b/common/runtime/cache/d1/d193fb63847914659e3dc7df2794d146.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d1/d193fb63847914659e3dc7df2794d146.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d1/d19901d59c13aa24a6c6523d9e4f19d7.bin b/common/runtime/cache/d1/d19901d59c13aa24a6c6523d9e4f19d7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d1/d19901d59c13aa24a6c6523d9e4f19d7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d1/d1a3a9f642851ee5b5631482c59487cf.bin b/common/runtime/cache/d1/d1a3a9f642851ee5b5631482c59487cf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d1/d1a3a9f642851ee5b5631482c59487cf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d1/d1b49bb8b3c33b68fe1aaeba92c13b23.bin b/common/runtime/cache/d1/d1b49bb8b3c33b68fe1aaeba92c13b23.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d1/d1b49bb8b3c33b68fe1aaeba92c13b23.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d1/d1fe7f0ff06f02d5902f61077701b94d.bin b/common/runtime/cache/d1/d1fe7f0ff06f02d5902f61077701b94d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d1/d1fe7f0ff06f02d5902f61077701b94d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d2/d209c1dc5b6e2df1b431c77aa42c5750.bin b/common/runtime/cache/d2/d209c1dc5b6e2df1b431c77aa42c5750.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d2/d209c1dc5b6e2df1b431c77aa42c5750.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d2/d20e206a0a7a5b96b2503f07ad9caf8b.bin b/common/runtime/cache/d2/d20e206a0a7a5b96b2503f07ad9caf8b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d2/d20e206a0a7a5b96b2503f07ad9caf8b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d2/d21c8a2a532676cb1938ad060f8a6817.bin b/common/runtime/cache/d2/d21c8a2a532676cb1938ad060f8a6817.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d2/d21c8a2a532676cb1938ad060f8a6817.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d2/d2264ecbe41843ddcc4e092fb4589c17.bin b/common/runtime/cache/d2/d2264ecbe41843ddcc4e092fb4589c17.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d2/d2264ecbe41843ddcc4e092fb4589c17.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d2/d22cbc4280c55a304c7afe856dcc8b24.bin b/common/runtime/cache/d2/d22cbc4280c55a304c7afe856dcc8b24.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d2/d22cbc4280c55a304c7afe856dcc8b24.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d2/d23f121c324a59b547c0b820e621f780.bin b/common/runtime/cache/d2/d23f121c324a59b547c0b820e621f780.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d2/d23f121c324a59b547c0b820e621f780.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d2/d279a9548560e8befac5395ca6d8e686.bin b/common/runtime/cache/d2/d279a9548560e8befac5395ca6d8e686.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d2/d279a9548560e8befac5395ca6d8e686.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d2/d27fb25e2adbd35745c5da3d07f3e367.bin b/common/runtime/cache/d2/d27fb25e2adbd35745c5da3d07f3e367.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d2/d27fb25e2adbd35745c5da3d07f3e367.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d2/d29ccc28bc2083c2135a87f253b46d67.bin b/common/runtime/cache/d2/d29ccc28bc2083c2135a87f253b46d67.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d2/d29ccc28bc2083c2135a87f253b46d67.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d2/d2af4ace166495acc7dab264f66029a6.bin b/common/runtime/cache/d2/d2af4ace166495acc7dab264f66029a6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d2/d2af4ace166495acc7dab264f66029a6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d2/d2afdf08469d9af279eb409b84335f38.bin b/common/runtime/cache/d2/d2afdf08469d9af279eb409b84335f38.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d2/d2afdf08469d9af279eb409b84335f38.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d2/d2c675aabc1e861e663d3bc44923cf4a.bin b/common/runtime/cache/d2/d2c675aabc1e861e663d3bc44923cf4a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d2/d2c675aabc1e861e663d3bc44923cf4a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d2/d2c9da035044eee5527967e7d5b292a2.bin b/common/runtime/cache/d2/d2c9da035044eee5527967e7d5b292a2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d2/d2c9da035044eee5527967e7d5b292a2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d2/d2fedf09321be46956435f345982de17.bin b/common/runtime/cache/d2/d2fedf09321be46956435f345982de17.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d2/d2fedf09321be46956435f345982de17.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d3/d326677bf9f4aac13b197bc4a6a9111a.bin b/common/runtime/cache/d3/d326677bf9f4aac13b197bc4a6a9111a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d3/d326677bf9f4aac13b197bc4a6a9111a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d3/d3598f824adf8ee533550760ac86b5cd.bin b/common/runtime/cache/d3/d3598f824adf8ee533550760ac86b5cd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d3/d3598f824adf8ee533550760ac86b5cd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d3/d35d90c6ea7ba2eed8be560e38f57453.bin b/common/runtime/cache/d3/d35d90c6ea7ba2eed8be560e38f57453.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d3/d35d90c6ea7ba2eed8be560e38f57453.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d3/d3632c8dec2a006210528309aa2a9b2c.bin b/common/runtime/cache/d3/d3632c8dec2a006210528309aa2a9b2c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d3/d3632c8dec2a006210528309aa2a9b2c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d3/d368e5fb951269fa7717251cb977621a.bin b/common/runtime/cache/d3/d368e5fb951269fa7717251cb977621a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d3/d368e5fb951269fa7717251cb977621a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d3/d373e89eda8fd7b1207cab3f12a0abe6.bin b/common/runtime/cache/d3/d373e89eda8fd7b1207cab3f12a0abe6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d3/d373e89eda8fd7b1207cab3f12a0abe6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d3/d38faa253a6b596a0807ef7097b9f345.bin b/common/runtime/cache/d3/d38faa253a6b596a0807ef7097b9f345.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d3/d38faa253a6b596a0807ef7097b9f345.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d3/d397c10e1d89309c65ec7c04a690e05c.bin b/common/runtime/cache/d3/d397c10e1d89309c65ec7c04a690e05c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d3/d397c10e1d89309c65ec7c04a690e05c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d3/d3a5175a206acc917c9d908380cb61e8.bin b/common/runtime/cache/d3/d3a5175a206acc917c9d908380cb61e8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d3/d3a5175a206acc917c9d908380cb61e8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d3/d3c5db89913228432c387e45f46e4761.bin b/common/runtime/cache/d3/d3c5db89913228432c387e45f46e4761.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d3/d3c5db89913228432c387e45f46e4761.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d3/d3cce3e82dcaf8aa3719d68bc714d382.bin b/common/runtime/cache/d3/d3cce3e82dcaf8aa3719d68bc714d382.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d3/d3cce3e82dcaf8aa3719d68bc714d382.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d3/d3e2c32e4467f1514d4fbcb36a0cd131.bin b/common/runtime/cache/d3/d3e2c32e4467f1514d4fbcb36a0cd131.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d3/d3e2c32e4467f1514d4fbcb36a0cd131.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d3/d3e7a2ea5c58a5d1f4bd75e840e8aab3.bin b/common/runtime/cache/d3/d3e7a2ea5c58a5d1f4bd75e840e8aab3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d3/d3e7a2ea5c58a5d1f4bd75e840e8aab3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d3/d3f5edd76ed3258e4601a93ad5f94e15.bin b/common/runtime/cache/d3/d3f5edd76ed3258e4601a93ad5f94e15.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d3/d3f5edd76ed3258e4601a93ad5f94e15.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d4/d40993f8a599167dbe98a668e67b60a2.bin b/common/runtime/cache/d4/d40993f8a599167dbe98a668e67b60a2.bin new file mode 100644 index 0000000..3e340e9 --- /dev/null +++ b/common/runtime/cache/d4/d40993f8a599167dbe98a668e67b60a2.bin @@ -0,0 +1 @@ +a:2:{i:0;s:15:"articles/mordor";i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d4/d41322ece53697c63d056810d0c75e7a.bin b/common/runtime/cache/d4/d41322ece53697c63d056810d0c75e7a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d4/d41322ece53697c63d056810d0c75e7a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d4/d421cadafc3c6dd0713d030c02eabf1f.bin b/common/runtime/cache/d4/d421cadafc3c6dd0713d030c02eabf1f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d4/d421cadafc3c6dd0713d030c02eabf1f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d4/d426286b1c4cf8edcb56aa5615d4cf46.bin b/common/runtime/cache/d4/d426286b1c4cf8edcb56aa5615d4cf46.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d4/d426286b1c4cf8edcb56aa5615d4cf46.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d4/d428f61081434ef1cad4e5a95381ddbd.bin b/common/runtime/cache/d4/d428f61081434ef1cad4e5a95381ddbd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d4/d428f61081434ef1cad4e5a95381ddbd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d4/d42c72add824b966eed6c698e1c53d6e.bin b/common/runtime/cache/d4/d42c72add824b966eed6c698e1c53d6e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d4/d42c72add824b966eed6c698e1c53d6e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d4/d43705c7ba5d3e53b0d78300027bee86.bin b/common/runtime/cache/d4/d43705c7ba5d3e53b0d78300027bee86.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d4/d43705c7ba5d3e53b0d78300027bee86.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d4/d4480b89e894430fc8b2c194fb2a8f67.bin b/common/runtime/cache/d4/d4480b89e894430fc8b2c194fb2a8f67.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d4/d4480b89e894430fc8b2c194fb2a8f67.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d4/d45e124ac9f85f2aab2c11ff85639bc0.bin b/common/runtime/cache/d4/d45e124ac9f85f2aab2c11ff85639bc0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d4/d45e124ac9f85f2aab2c11ff85639bc0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d4/d461300608fe6ccb0353bea33b281c00.bin b/common/runtime/cache/d4/d461300608fe6ccb0353bea33b281c00.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d4/d461300608fe6ccb0353bea33b281c00.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d4/d465467cdbe8137634bf574d3aa5d1fe.bin b/common/runtime/cache/d4/d465467cdbe8137634bf574d3aa5d1fe.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d4/d465467cdbe8137634bf574d3aa5d1fe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d4/d47a38d24cb56ee678133c0555d5f45d.bin b/common/runtime/cache/d4/d47a38d24cb56ee678133c0555d5f45d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d4/d47a38d24cb56ee678133c0555d5f45d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d4/d4895774ce313fd6bd52a1823fb609c6.bin b/common/runtime/cache/d4/d4895774ce313fd6bd52a1823fb609c6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d4/d4895774ce313fd6bd52a1823fb609c6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d4/d4ce6d7c59c7522d0f472d0d17e3a7b9.bin b/common/runtime/cache/d4/d4ce6d7c59c7522d0f472d0d17e3a7b9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d4/d4ce6d7c59c7522d0f472d0d17e3a7b9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d4/d4e5a4b6f857532bb69333831571b77c.bin b/common/runtime/cache/d4/d4e5a4b6f857532bb69333831571b77c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d4/d4e5a4b6f857532bb69333831571b77c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d4/d4fe656cf3366e063bd7323b5eb01799.bin b/common/runtime/cache/d4/d4fe656cf3366e063bd7323b5eb01799.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d4/d4fe656cf3366e063bd7323b5eb01799.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d5/d53bf319220b92b7598d4ee3e0222d71.bin b/common/runtime/cache/d5/d53bf319220b92b7598d4ee3e0222d71.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d5/d53bf319220b92b7598d4ee3e0222d71.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d5/d53f9cd178172e571181b5297fae3f3a.bin b/common/runtime/cache/d5/d53f9cd178172e571181b5297fae3f3a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d5/d53f9cd178172e571181b5297fae3f3a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d5/d56b7be8711a379f72c3f590a75d6ba4.bin b/common/runtime/cache/d5/d56b7be8711a379f72c3f590a75d6ba4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d5/d56b7be8711a379f72c3f590a75d6ba4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d5/d5a2e9bbcce58764c06ab4ff9c045cce.bin b/common/runtime/cache/d5/d5a2e9bbcce58764c06ab4ff9c045cce.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d5/d5a2e9bbcce58764c06ab4ff9c045cce.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d5/d5ca601dec5a0a0cf448c4a03edacb9e.bin b/common/runtime/cache/d5/d5ca601dec5a0a0cf448c4a03edacb9e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d5/d5ca601dec5a0a0cf448c4a03edacb9e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d5/d5d7e319969aa846f9b8597a26b58337.bin b/common/runtime/cache/d5/d5d7e319969aa846f9b8597a26b58337.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d5/d5d7e319969aa846f9b8597a26b58337.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d5/d5dd973b47a336c99049b0a1d7cda4ab.bin b/common/runtime/cache/d5/d5dd973b47a336c99049b0a1d7cda4ab.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d5/d5dd973b47a336c99049b0a1d7cda4ab.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d5/d5fc8c5653d4079fd9aa8c7fe4534909.bin b/common/runtime/cache/d5/d5fc8c5653d4079fd9aa8c7fe4534909.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d5/d5fc8c5653d4079fd9aa8c7fe4534909.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d6/d618d9eba88183959051d610e0d383e3.bin b/common/runtime/cache/d6/d618d9eba88183959051d610e0d383e3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d6/d618d9eba88183959051d610e0d383e3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d6/d63011e7e1711a403c8f9f77dd1fe9ce.bin b/common/runtime/cache/d6/d63011e7e1711a403c8f9f77dd1fe9ce.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d6/d63011e7e1711a403c8f9f77dd1fe9ce.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d6/d64c6a97fd6a7b8e67a6e96cc6d8eba7.bin b/common/runtime/cache/d6/d64c6a97fd6a7b8e67a6e96cc6d8eba7.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d6/d64c6a97fd6a7b8e67a6e96cc6d8eba7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d6/d651e626ebd9dc02d6aceda62d8c2edd.bin b/common/runtime/cache/d6/d651e626ebd9dc02d6aceda62d8c2edd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d6/d651e626ebd9dc02d6aceda62d8c2edd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d6/d68d373db66b96f6e20e1d92bc7bb78b.bin b/common/runtime/cache/d6/d68d373db66b96f6e20e1d92bc7bb78b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d6/d68d373db66b96f6e20e1d92bc7bb78b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d6/d6a2574b0bae2f65b0f8aa65fd7242d8.bin b/common/runtime/cache/d6/d6a2574b0bae2f65b0f8aa65fd7242d8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d6/d6a2574b0bae2f65b0f8aa65fd7242d8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d6/d6a6dc1336527f1704f9201773be2797.bin b/common/runtime/cache/d6/d6a6dc1336527f1704f9201773be2797.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d6/d6a6dc1336527f1704f9201773be2797.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d6/d6cb5f9a29d4f19ab3d82a84e149eb71.bin b/common/runtime/cache/d6/d6cb5f9a29d4f19ab3d82a84e149eb71.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d6/d6cb5f9a29d4f19ab3d82a84e149eb71.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d6/d6cd119dc68c48c4b80941426653c242.bin b/common/runtime/cache/d6/d6cd119dc68c48c4b80941426653c242.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d6/d6cd119dc68c48c4b80941426653c242.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d6/d6f00f4552bf215a99cf8f7e69f69077.bin b/common/runtime/cache/d6/d6f00f4552bf215a99cf8f7e69f69077.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d6/d6f00f4552bf215a99cf8f7e69f69077.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d6/d6f8f949423f9a37f17a74dfa4f95833.bin b/common/runtime/cache/d6/d6f8f949423f9a37f17a74dfa4f95833.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d6/d6f8f949423f9a37f17a74dfa4f95833.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d7/d7111f70db871ade87aed93cb695417d.bin b/common/runtime/cache/d7/d7111f70db871ade87aed93cb695417d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d7/d7111f70db871ade87aed93cb695417d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d7/d72c0f4ee7bb537ec429514ea5a110c2.bin b/common/runtime/cache/d7/d72c0f4ee7bb537ec429514ea5a110c2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d7/d72c0f4ee7bb537ec429514ea5a110c2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d7/d757d844d3171907fc1922f397352060.bin b/common/runtime/cache/d7/d757d844d3171907fc1922f397352060.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d7/d757d844d3171907fc1922f397352060.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d7/d76ce4c81c0c6bbfdf6d788f2451f22d.bin b/common/runtime/cache/d7/d76ce4c81c0c6bbfdf6d788f2451f22d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d7/d76ce4c81c0c6bbfdf6d788f2451f22d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d7/d780557613b85d9734f5f37941612cc5.bin b/common/runtime/cache/d7/d780557613b85d9734f5f37941612cc5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d7/d780557613b85d9734f5f37941612cc5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d7/d7977c540edd70d9f3f61a87dae103f5.bin b/common/runtime/cache/d7/d7977c540edd70d9f3f61a87dae103f5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d7/d7977c540edd70d9f3f61a87dae103f5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d7/d7af44d4f33e38d95ef652397964f40b.bin b/common/runtime/cache/d7/d7af44d4f33e38d95ef652397964f40b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d7/d7af44d4f33e38d95ef652397964f40b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d7/d7af5a02b6927b4054f3b76ce946c69c.bin b/common/runtime/cache/d7/d7af5a02b6927b4054f3b76ce946c69c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d7/d7af5a02b6927b4054f3b76ce946c69c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d7/d7af98c8e98273fc5f108d529b54f9c0.bin b/common/runtime/cache/d7/d7af98c8e98273fc5f108d529b54f9c0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d7/d7af98c8e98273fc5f108d529b54f9c0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d7/d7bdd14ac36f35f701e30a48dda48209.bin b/common/runtime/cache/d7/d7bdd14ac36f35f701e30a48dda48209.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d7/d7bdd14ac36f35f701e30a48dda48209.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d7/d7dccd3bd05ca1971f516743dfb53f4b.bin b/common/runtime/cache/d7/d7dccd3bd05ca1971f516743dfb53f4b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d7/d7dccd3bd05ca1971f516743dfb53f4b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d8/d80fef59c199886399ecfe0ecaf01797.bin b/common/runtime/cache/d8/d80fef59c199886399ecfe0ecaf01797.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d8/d80fef59c199886399ecfe0ecaf01797.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d8/d82131635e0cb6c188d8c6a9bda901e0.bin b/common/runtime/cache/d8/d82131635e0cb6c188d8c6a9bda901e0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d8/d82131635e0cb6c188d8c6a9bda901e0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d8/d8459392e7d1a1b1dba7e4f610bbf518.bin b/common/runtime/cache/d8/d8459392e7d1a1b1dba7e4f610bbf518.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d8/d8459392e7d1a1b1dba7e4f610bbf518.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d8/d88f052e04fb8691662c887fe7e0d491.bin b/common/runtime/cache/d8/d88f052e04fb8691662c887fe7e0d491.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d8/d88f052e04fb8691662c887fe7e0d491.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d8/d896d02980a437a0ed141b9106efb645.bin b/common/runtime/cache/d8/d896d02980a437a0ed141b9106efb645.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d8/d896d02980a437a0ed141b9106efb645.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d8/d897dbefffed83c7b063d41fb9f3440c.bin b/common/runtime/cache/d8/d897dbefffed83c7b063d41fb9f3440c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d8/d897dbefffed83c7b063d41fb9f3440c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d8/d8b56b4d7f2f21f23eadef10efc200fe.bin b/common/runtime/cache/d8/d8b56b4d7f2f21f23eadef10efc200fe.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d8/d8b56b4d7f2f21f23eadef10efc200fe.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d8/d8bf3dc6ececc72947f908732ecf870a.bin b/common/runtime/cache/d8/d8bf3dc6ececc72947f908732ecf870a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/d8/d8bf3dc6ececc72947f908732ecf870a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d8/d8f4f6ec014be0c224d1c86845f2a025.bin b/common/runtime/cache/d8/d8f4f6ec014be0c224d1c86845f2a025.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d8/d8f4f6ec014be0c224d1c86845f2a025.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d9/d9560e07aa460ef2c51a216966b39da8.bin b/common/runtime/cache/d9/d9560e07aa460ef2c51a216966b39da8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d9/d9560e07aa460ef2c51a216966b39da8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d9/d968d74613b61d267c9fb3237162a612.bin b/common/runtime/cache/d9/d968d74613b61d267c9fb3237162a612.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d9/d968d74613b61d267c9fb3237162a612.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d9/d975923fd5eaa0458405f0875f3162a0.bin b/common/runtime/cache/d9/d975923fd5eaa0458405f0875f3162a0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d9/d975923fd5eaa0458405f0875f3162a0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d9/d97b3cb7ba7bc0afae13a09fb3486854.bin b/common/runtime/cache/d9/d97b3cb7ba7bc0afae13a09fb3486854.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d9/d97b3cb7ba7bc0afae13a09fb3486854.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d9/d99f6f8a7f0c297a0004a6f787c062a6.bin b/common/runtime/cache/d9/d99f6f8a7f0c297a0004a6f787c062a6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d9/d99f6f8a7f0c297a0004a6f787c062a6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d9/d9b9cdb94dbf301dc9c67d822d4ffa77.bin b/common/runtime/cache/d9/d9b9cdb94dbf301dc9c67d822d4ffa77.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d9/d9b9cdb94dbf301dc9c67d822d4ffa77.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d9/d9d6acd978bca88bffc5a11b2456613b.bin b/common/runtime/cache/d9/d9d6acd978bca88bffc5a11b2456613b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d9/d9d6acd978bca88bffc5a11b2456613b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/d9/d9f57c6c83e967a03d9aab7d308cbc20.bin b/common/runtime/cache/d9/d9f57c6c83e967a03d9aab7d308cbc20.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/d9/d9f57c6c83e967a03d9aab7d308cbc20.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/da/da06bfde088ca0e685bb242e949e32df.bin b/common/runtime/cache/da/da06bfde088ca0e685bb242e949e32df.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/da/da06bfde088ca0e685bb242e949e32df.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/da/da6df0e84506c99580e8f45eece8d0b5.bin b/common/runtime/cache/da/da6df0e84506c99580e8f45eece8d0b5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/da/da6df0e84506c99580e8f45eece8d0b5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/da/da7b3984fa2e68f3f659dd8a135e9678.bin b/common/runtime/cache/da/da7b3984fa2e68f3f659dd8a135e9678.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/da/da7b3984fa2e68f3f659dd8a135e9678.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/da/daa63bfb01e0c3d16744407f80ae9bd9.bin b/common/runtime/cache/da/daa63bfb01e0c3d16744407f80ae9bd9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/da/daa63bfb01e0c3d16744407f80ae9bd9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/da/daafa78b8237447d7ec930d37e57ccac.bin b/common/runtime/cache/da/daafa78b8237447d7ec930d37e57ccac.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/da/daafa78b8237447d7ec930d37e57ccac.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/da/dab5d9895e97f3f91e93e47c8536764a.bin b/common/runtime/cache/da/dab5d9895e97f3f91e93e47c8536764a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/da/dab5d9895e97f3f91e93e47c8536764a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/da/dac04b82b92a19cc96680b2aaf02ff9b.bin b/common/runtime/cache/da/dac04b82b92a19cc96680b2aaf02ff9b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/da/dac04b82b92a19cc96680b2aaf02ff9b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/da/dac4f262b2bfeae904e0c89f0a7acda1.bin b/common/runtime/cache/da/dac4f262b2bfeae904e0c89f0a7acda1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/da/dac4f262b2bfeae904e0c89f0a7acda1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/da/dac621688d0d2cdb28e01f4742815b94.bin b/common/runtime/cache/da/dac621688d0d2cdb28e01f4742815b94.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/da/dac621688d0d2cdb28e01f4742815b94.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/da/dadb59d65377df4e403b857ab5e46ecc.bin b/common/runtime/cache/da/dadb59d65377df4e403b857ab5e46ecc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/da/dadb59d65377df4e403b857ab5e46ecc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/da/daf9a110bc171cab76e00f9ac486c8f6.bin b/common/runtime/cache/da/daf9a110bc171cab76e00f9ac486c8f6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/da/daf9a110bc171cab76e00f9ac486c8f6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/db/db183efca0cb29e8bee2beffc38122e1.bin b/common/runtime/cache/db/db183efca0cb29e8bee2beffc38122e1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/db/db183efca0cb29e8bee2beffc38122e1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/db/db239dc85f9639da764daaca3d81d6f7.bin b/common/runtime/cache/db/db239dc85f9639da764daaca3d81d6f7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/db/db239dc85f9639da764daaca3d81d6f7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/db/db2fca5e91aa295d0c93c43cd3589c35.bin b/common/runtime/cache/db/db2fca5e91aa295d0c93c43cd3589c35.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/db/db2fca5e91aa295d0c93c43cd3589c35.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/db/db9512e6ad1c05eddd0cf83be33af18d.bin b/common/runtime/cache/db/db9512e6ad1c05eddd0cf83be33af18d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/db/db9512e6ad1c05eddd0cf83be33af18d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/db/dbab2390affe464cf7cd0976d6cf94e3.bin b/common/runtime/cache/db/dbab2390affe464cf7cd0976d6cf94e3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/db/dbab2390affe464cf7cd0976d6cf94e3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/db/dbb598da74e9222812bb3786eb943892.bin b/common/runtime/cache/db/dbb598da74e9222812bb3786eb943892.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/db/dbb598da74e9222812bb3786eb943892.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/db/dbd198ec1278b22991d1ca94ec48137b.bin b/common/runtime/cache/db/dbd198ec1278b22991d1ca94ec48137b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/db/dbd198ec1278b22991d1ca94ec48137b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/db/dbdc0712e24389ef93e0eb76889e1cbc.bin b/common/runtime/cache/db/dbdc0712e24389ef93e0eb76889e1cbc.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/db/dbdc0712e24389ef93e0eb76889e1cbc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/db/dbe44609a23bb4ccda70157432d4d0ad.bin b/common/runtime/cache/db/dbe44609a23bb4ccda70157432d4d0ad.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/db/dbe44609a23bb4ccda70157432d4d0ad.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/db/dbff9698d3b26a5abfd9ddee91db2755.bin b/common/runtime/cache/db/dbff9698d3b26a5abfd9ddee91db2755.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/db/dbff9698d3b26a5abfd9ddee91db2755.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dc0670c2cc1cf4ede40edd5c5b32008b.bin b/common/runtime/cache/dc/dc0670c2cc1cf4ede40edd5c5b32008b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dc/dc0670c2cc1cf4ede40edd5c5b32008b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dc14dcef4204722c49c998059a205d12.bin b/common/runtime/cache/dc/dc14dcef4204722c49c998059a205d12.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dc/dc14dcef4204722c49c998059a205d12.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dc18322dbac872787c0cb601789b326f.bin b/common/runtime/cache/dc/dc18322dbac872787c0cb601789b326f.bin new file mode 100644 index 0000000..49bf4d3 --- /dev/null +++ b/common/runtime/cache/dc/dc18322dbac872787c0cb601789b326f.bin @@ -0,0 +1 @@ +a:2:{i:0;s:10:"news/third";i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dc1ae0f77b62be8ecfeb9c1509a3fb37.bin b/common/runtime/cache/dc/dc1ae0f77b62be8ecfeb9c1509a3fb37.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dc/dc1ae0f77b62be8ecfeb9c1509a3fb37.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dc2c03148f50619a1cf3223daf771146.bin b/common/runtime/cache/dc/dc2c03148f50619a1cf3223daf771146.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dc/dc2c03148f50619a1cf3223daf771146.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dc3b5e7dd56bee0578b797db0b1330b0.bin b/common/runtime/cache/dc/dc3b5e7dd56bee0578b797db0b1330b0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dc/dc3b5e7dd56bee0578b797db0b1330b0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dc3f1aee758bdafc5b5c78c0e3de8e10.bin b/common/runtime/cache/dc/dc3f1aee758bdafc5b5c78c0e3de8e10.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dc/dc3f1aee758bdafc5b5c78c0e3de8e10.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dc516abfe9ba9a12da10e25d3a2314fc.bin b/common/runtime/cache/dc/dc516abfe9ba9a12da10e25d3a2314fc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dc/dc516abfe9ba9a12da10e25d3a2314fc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dc569c0270d64b92a3be6a84dbd25b14.bin b/common/runtime/cache/dc/dc569c0270d64b92a3be6a84dbd25b14.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dc/dc569c0270d64b92a3be6a84dbd25b14.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dc611a7ed3214eea37d1c34f7324b403.bin b/common/runtime/cache/dc/dc611a7ed3214eea37d1c34f7324b403.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dc/dc611a7ed3214eea37d1c34f7324b403.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dc62cef5551adde8bf3ab2a34153f2be.bin b/common/runtime/cache/dc/dc62cef5551adde8bf3ab2a34153f2be.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dc/dc62cef5551adde8bf3ab2a34153f2be.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dc6347683b084a28be9a248856755628.bin b/common/runtime/cache/dc/dc6347683b084a28be9a248856755628.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dc/dc6347683b084a28be9a248856755628.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dc66d20bee6e9a76b67e3a0c2a160530.bin b/common/runtime/cache/dc/dc66d20bee6e9a76b67e3a0c2a160530.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dc/dc66d20bee6e9a76b67e3a0c2a160530.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dc685a888648ed9a2bbf39b81521cf35.bin b/common/runtime/cache/dc/dc685a888648ed9a2bbf39b81521cf35.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dc/dc685a888648ed9a2bbf39b81521cf35.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dc69d374e8e3376862b4a38c4dbaba31.bin b/common/runtime/cache/dc/dc69d374e8e3376862b4a38c4dbaba31.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dc/dc69d374e8e3376862b4a38c4dbaba31.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dc69faef659db4f295973dea5e4a04e3.bin b/common/runtime/cache/dc/dc69faef659db4f295973dea5e4a04e3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/dc/dc69faef659db4f295973dea5e4a04e3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dca94ef98e950b589d9ee2abc2683e88.bin b/common/runtime/cache/dc/dca94ef98e950b589d9ee2abc2683e88.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/dc/dca94ef98e950b589d9ee2abc2683e88.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dcbaccb416b0f6ab706da9a42414bd81.bin b/common/runtime/cache/dc/dcbaccb416b0f6ab706da9a42414bd81.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/dc/dcbaccb416b0f6ab706da9a42414bd81.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dce4d0f4b8c0cc7d3448f7d1eac5c5ac.bin b/common/runtime/cache/dc/dce4d0f4b8c0cc7d3448f7d1eac5c5ac.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/dc/dce4d0f4b8c0cc7d3448f7d1eac5c5ac.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dcf8ac074e79d46006ff6fed52e060ed.bin b/common/runtime/cache/dc/dcf8ac074e79d46006ff6fed52e060ed.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dc/dcf8ac074e79d46006ff6fed52e060ed.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dc/dcfcf629e226d2883ddf95ddc2be0522.bin b/common/runtime/cache/dc/dcfcf629e226d2883ddf95ddc2be0522.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dc/dcfcf629e226d2883ddf95ddc2be0522.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dd/dd0648332c7c31f99a01bb385c6d9d2c.bin b/common/runtime/cache/dd/dd0648332c7c31f99a01bb385c6d9d2c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/dd/dd0648332c7c31f99a01bb385c6d9d2c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dd/dd0d04fd33104cff498443e0ccb51d29.bin b/common/runtime/cache/dd/dd0d04fd33104cff498443e0ccb51d29.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dd/dd0d04fd33104cff498443e0ccb51d29.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dd/dd3fcd6b483272df22ee797a36632690.bin b/common/runtime/cache/dd/dd3fcd6b483272df22ee797a36632690.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/dd/dd3fcd6b483272df22ee797a36632690.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dd/dd4094cd86f9391b7b8bc8391d2f7599.bin b/common/runtime/cache/dd/dd4094cd86f9391b7b8bc8391d2f7599.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dd/dd4094cd86f9391b7b8bc8391d2f7599.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dd/dd73088c9be4b66182e05b234dc369fb.bin b/common/runtime/cache/dd/dd73088c9be4b66182e05b234dc369fb.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/dd/dd73088c9be4b66182e05b234dc369fb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dd/dd8dd91e8ec2033156ff4633655ffbad.bin b/common/runtime/cache/dd/dd8dd91e8ec2033156ff4633655ffbad.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/dd/dd8dd91e8ec2033156ff4633655ffbad.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dd/dda49844f8f98cd056785a919aa84e89.bin b/common/runtime/cache/dd/dda49844f8f98cd056785a919aa84e89.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dd/dda49844f8f98cd056785a919aa84e89.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dd/dda6e5ab6f4b502bddd2914013ab7cd5.bin b/common/runtime/cache/dd/dda6e5ab6f4b502bddd2914013ab7cd5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dd/dda6e5ab6f4b502bddd2914013ab7cd5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dd/ddb0ddc916abb84aeca798445d719879.bin b/common/runtime/cache/dd/ddb0ddc916abb84aeca798445d719879.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dd/ddb0ddc916abb84aeca798445d719879.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dd/ddbfca6699d510200dc39b1946ea0daf.bin b/common/runtime/cache/dd/ddbfca6699d510200dc39b1946ea0daf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dd/ddbfca6699d510200dc39b1946ea0daf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dd/ddc27e3fb4500f4bdd11b5fbc89d0eea.bin b/common/runtime/cache/dd/ddc27e3fb4500f4bdd11b5fbc89d0eea.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dd/ddc27e3fb4500f4bdd11b5fbc89d0eea.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dd/ddc8c51afcad3df8e01543bdd7fee29c.bin b/common/runtime/cache/dd/ddc8c51afcad3df8e01543bdd7fee29c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dd/ddc8c51afcad3df8e01543bdd7fee29c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dd/dddb5b6069d09ad0f720bb83cd93540b.bin b/common/runtime/cache/dd/dddb5b6069d09ad0f720bb83cd93540b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dd/dddb5b6069d09ad0f720bb83cd93540b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/dd/ddeeed7b9fe5814854302d6cc413dab8.bin b/common/runtime/cache/dd/ddeeed7b9fe5814854302d6cc413dab8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/dd/ddeeed7b9fe5814854302d6cc413dab8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/de/de04dc740ac3791f50df9461915001c4.bin b/common/runtime/cache/de/de04dc740ac3791f50df9461915001c4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/de/de04dc740ac3791f50df9461915001c4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/de/de0d458688fadf1c2d0e35f9be2a61c2.bin b/common/runtime/cache/de/de0d458688fadf1c2d0e35f9be2a61c2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/de/de0d458688fadf1c2d0e35f9be2a61c2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/de/de13f5185a8cb95050f3d1aca69d525a.bin b/common/runtime/cache/de/de13f5185a8cb95050f3d1aca69d525a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/de/de13f5185a8cb95050f3d1aca69d525a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/de/de185d8a041b1ffff372ad34060b7f80.bin b/common/runtime/cache/de/de185d8a041b1ffff372ad34060b7f80.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/de/de185d8a041b1ffff372ad34060b7f80.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/de/de2755c2dae149437464e34e6e473c1b.bin b/common/runtime/cache/de/de2755c2dae149437464e34e6e473c1b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/de/de2755c2dae149437464e34e6e473c1b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/de/de33a4be1220b8961c1a0a2943c65b27.bin b/common/runtime/cache/de/de33a4be1220b8961c1a0a2943c65b27.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/de/de33a4be1220b8961c1a0a2943c65b27.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/de/de34a221002e1cd9cb96cd29e664fd84.bin b/common/runtime/cache/de/de34a221002e1cd9cb96cd29e664fd84.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/de/de34a221002e1cd9cb96cd29e664fd84.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/de/de36b0f452ce041c0e821d3aa6151cdd.bin b/common/runtime/cache/de/de36b0f452ce041c0e821d3aa6151cdd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/de/de36b0f452ce041c0e821d3aa6151cdd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/de/de47b4aec32febdc47ae37e17b77fcc5.bin b/common/runtime/cache/de/de47b4aec32febdc47ae37e17b77fcc5.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/de/de47b4aec32febdc47ae37e17b77fcc5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/de/de58a5e7c156485487848f616288e320.bin b/common/runtime/cache/de/de58a5e7c156485487848f616288e320.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/de/de58a5e7c156485487848f616288e320.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/de/de60e69399374c83bf403e97b4dde81f.bin b/common/runtime/cache/de/de60e69399374c83bf403e97b4dde81f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/de/de60e69399374c83bf403e97b4dde81f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/de/de6542d5f793c66bf474ca8bd2e05cc0.bin b/common/runtime/cache/de/de6542d5f793c66bf474ca8bd2e05cc0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/de/de6542d5f793c66bf474ca8bd2e05cc0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/de/de6b5937c85591c6560fde167924de2f.bin b/common/runtime/cache/de/de6b5937c85591c6560fde167924de2f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/de/de6b5937c85591c6560fde167924de2f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/de/de6f824f985e7e1697c8faaa92591b7d.bin b/common/runtime/cache/de/de6f824f985e7e1697c8faaa92591b7d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/de/de6f824f985e7e1697c8faaa92591b7d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/df/df024325bc0c22e44966dcbf78264c95.bin b/common/runtime/cache/df/df024325bc0c22e44966dcbf78264c95.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/df/df024325bc0c22e44966dcbf78264c95.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/df/df079bbadbee10ac0219504900a8b6ab.bin b/common/runtime/cache/df/df079bbadbee10ac0219504900a8b6ab.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/df/df079bbadbee10ac0219504900a8b6ab.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/df/df1270ba8708ab4cabc9a807a2f0befa.bin b/common/runtime/cache/df/df1270ba8708ab4cabc9a807a2f0befa.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/df/df1270ba8708ab4cabc9a807a2f0befa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/df/df15e3cb5446101a6af24235c121fa29.bin b/common/runtime/cache/df/df15e3cb5446101a6af24235c121fa29.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/df/df15e3cb5446101a6af24235c121fa29.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/df/df2158562e2070b3c264fed003f67ddb.bin b/common/runtime/cache/df/df2158562e2070b3c264fed003f67ddb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/df/df2158562e2070b3c264fed003f67ddb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/df/df3ed46e0bd3f0c2e13c2e69c030b5dc.bin b/common/runtime/cache/df/df3ed46e0bd3f0c2e13c2e69c030b5dc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/df/df3ed46e0bd3f0c2e13c2e69c030b5dc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/df/df428e2de0f07ba4ef8d171faad438f7.bin b/common/runtime/cache/df/df428e2de0f07ba4ef8d171faad438f7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/df/df428e2de0f07ba4ef8d171faad438f7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/df/df4bcffd10f375d6c6a2681f2f035222.bin b/common/runtime/cache/df/df4bcffd10f375d6c6a2681f2f035222.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/df/df4bcffd10f375d6c6a2681f2f035222.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/df/df4df8d76fd09c77822a4d9be79b6c9a.bin b/common/runtime/cache/df/df4df8d76fd09c77822a4d9be79b6c9a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/df/df4df8d76fd09c77822a4d9be79b6c9a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/df/df562aa6a324ccb440ace5e29c2352f1.bin b/common/runtime/cache/df/df562aa6a324ccb440ace5e29c2352f1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/df/df562aa6a324ccb440ace5e29c2352f1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/df/df640b7d3416aeecf9739254456f7711.bin b/common/runtime/cache/df/df640b7d3416aeecf9739254456f7711.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/df/df640b7d3416aeecf9739254456f7711.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/df/df6e63c90865e751afe98b3c947e3671.bin b/common/runtime/cache/df/df6e63c90865e751afe98b3c947e3671.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/df/df6e63c90865e751afe98b3c947e3671.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/df/df950b0cc3eddac1587a92da84aca8da.bin b/common/runtime/cache/df/df950b0cc3eddac1587a92da84aca8da.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/df/df950b0cc3eddac1587a92da84aca8da.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/df/dfa2d5c59f5799bc785362fd92bd1a24.bin b/common/runtime/cache/df/dfa2d5c59f5799bc785362fd92bd1a24.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/df/dfa2d5c59f5799bc785362fd92bd1a24.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/df/dffbf2554b74c2795591139add4a8926.bin b/common/runtime/cache/df/dffbf2554b74c2795591139add4a8926.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/df/dffbf2554b74c2795591139add4a8926.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e0/e02e76daa0deb846a96184d1a5c88a0d.bin b/common/runtime/cache/e0/e02e76daa0deb846a96184d1a5c88a0d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e0/e02e76daa0deb846a96184d1a5c88a0d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e0/e03cb42f8bbc1481f330863ba62dc55f.bin b/common/runtime/cache/e0/e03cb42f8bbc1481f330863ba62dc55f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e0/e03cb42f8bbc1481f330863ba62dc55f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e0/e04a5a538977e786544b7a370fa6e031.bin b/common/runtime/cache/e0/e04a5a538977e786544b7a370fa6e031.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e0/e04a5a538977e786544b7a370fa6e031.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e0/e06824e7cca6440359e5541dc2302039.bin b/common/runtime/cache/e0/e06824e7cca6440359e5541dc2302039.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e0/e06824e7cca6440359e5541dc2302039.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e0/e06969351f95a98dafb1119c507fde50.bin b/common/runtime/cache/e0/e06969351f95a98dafb1119c507fde50.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e0/e06969351f95a98dafb1119c507fde50.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e0/e072edd39ed411ba970549172f7dde6d.bin b/common/runtime/cache/e0/e072edd39ed411ba970549172f7dde6d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e0/e072edd39ed411ba970549172f7dde6d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e0/e075c1ea9f3707bd962dec6041395523.bin b/common/runtime/cache/e0/e075c1ea9f3707bd962dec6041395523.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e0/e075c1ea9f3707bd962dec6041395523.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e0/e07ccbb5ba0f7475907707773e163408.bin b/common/runtime/cache/e0/e07ccbb5ba0f7475907707773e163408.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e0/e07ccbb5ba0f7475907707773e163408.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e0/e0816ba260d29b9092ae660b188f6f1f.bin b/common/runtime/cache/e0/e0816ba260d29b9092ae660b188f6f1f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e0/e0816ba260d29b9092ae660b188f6f1f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e0/e088012552e811509dceaaca194a8b48.bin b/common/runtime/cache/e0/e088012552e811509dceaaca194a8b48.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e0/e088012552e811509dceaaca194a8b48.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e0/e0959acae49dd3ab0008dd56ba850bc3.bin b/common/runtime/cache/e0/e0959acae49dd3ab0008dd56ba850bc3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e0/e0959acae49dd3ab0008dd56ba850bc3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e0/e0b313ee26ab02cdeca331e8262f2a0f.bin b/common/runtime/cache/e0/e0b313ee26ab02cdeca331e8262f2a0f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e0/e0b313ee26ab02cdeca331e8262f2a0f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e0/e0c770b316e0227500015b607eab3e8f.bin b/common/runtime/cache/e0/e0c770b316e0227500015b607eab3e8f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e0/e0c770b316e0227500015b607eab3e8f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e1/e109b765ce325c471f856403d4096cf2.bin b/common/runtime/cache/e1/e109b765ce325c471f856403d4096cf2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e1/e109b765ce325c471f856403d4096cf2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e1/e12bb23de0a2d2267b2456214be3b1d3.bin b/common/runtime/cache/e1/e12bb23de0a2d2267b2456214be3b1d3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e1/e12bb23de0a2d2267b2456214be3b1d3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e1/e12eda8ce25795b6d82c7cb720111fa9.bin b/common/runtime/cache/e1/e12eda8ce25795b6d82c7cb720111fa9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e1/e12eda8ce25795b6d82c7cb720111fa9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e1/e16a716537587d784b2926e4454bd88b.bin b/common/runtime/cache/e1/e16a716537587d784b2926e4454bd88b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e1/e16a716537587d784b2926e4454bd88b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e1/e16ef00d8dbb4f0bf59261bb02e984d1.bin b/common/runtime/cache/e1/e16ef00d8dbb4f0bf59261bb02e984d1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e1/e16ef00d8dbb4f0bf59261bb02e984d1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e1/e18a3a0c8e646c35192d019017bf0fee.bin b/common/runtime/cache/e1/e18a3a0c8e646c35192d019017bf0fee.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e1/e18a3a0c8e646c35192d019017bf0fee.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e1/e198b913382491bca86a9c477f5713a1.bin b/common/runtime/cache/e1/e198b913382491bca86a9c477f5713a1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e1/e198b913382491bca86a9c477f5713a1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e1/e1a71b74e5364840d4ccc4e7a859e46c.bin b/common/runtime/cache/e1/e1a71b74e5364840d4ccc4e7a859e46c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e1/e1a71b74e5364840d4ccc4e7a859e46c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e1/e1a8eba858202c1848d90f596ec9b3e9.bin b/common/runtime/cache/e1/e1a8eba858202c1848d90f596ec9b3e9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e1/e1a8eba858202c1848d90f596ec9b3e9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e1/e1af8507bb4d1b959e0f799ca67fb7bd.bin b/common/runtime/cache/e1/e1af8507bb4d1b959e0f799ca67fb7bd.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e1/e1af8507bb4d1b959e0f799ca67fb7bd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e1/e1ddd71845f9b349ea209cf4676e9a34.bin b/common/runtime/cache/e1/e1ddd71845f9b349ea209cf4676e9a34.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e1/e1ddd71845f9b349ea209cf4676e9a34.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e1/e1e0e81e7601c61a4c6e283b16db95bb.bin b/common/runtime/cache/e1/e1e0e81e7601c61a4c6e283b16db95bb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e1/e1e0e81e7601c61a4c6e283b16db95bb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e2/e21705d0ccc45bbb5b2ab38f89747ef1.bin b/common/runtime/cache/e2/e21705d0ccc45bbb5b2ab38f89747ef1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e2/e21705d0ccc45bbb5b2ab38f89747ef1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e2/e2296f290cc24363239cde32777660c7.bin b/common/runtime/cache/e2/e2296f290cc24363239cde32777660c7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e2/e2296f290cc24363239cde32777660c7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e2/e23b23ff9cf84a91313b48e8d49b6994.bin b/common/runtime/cache/e2/e23b23ff9cf84a91313b48e8d49b6994.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e2/e23b23ff9cf84a91313b48e8d49b6994.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e2/e24bf953e82ce5f28504c3be060cd769.bin b/common/runtime/cache/e2/e24bf953e82ce5f28504c3be060cd769.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e2/e24bf953e82ce5f28504c3be060cd769.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e2/e24eb40e6f25cfa9b8b4fba594a4741b.bin b/common/runtime/cache/e2/e24eb40e6f25cfa9b8b4fba594a4741b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e2/e24eb40e6f25cfa9b8b4fba594a4741b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e2/e29418ed30fcd41f39f45191fbed41da.bin b/common/runtime/cache/e2/e29418ed30fcd41f39f45191fbed41da.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e2/e29418ed30fcd41f39f45191fbed41da.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e2/e2a3475422ce2236b9181e22feba87c4.bin b/common/runtime/cache/e2/e2a3475422ce2236b9181e22feba87c4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e2/e2a3475422ce2236b9181e22feba87c4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e2/e2ac890e2749736c12fbe65ec4a7c7bd.bin b/common/runtime/cache/e2/e2ac890e2749736c12fbe65ec4a7c7bd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e2/e2ac890e2749736c12fbe65ec4a7c7bd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e2/e2c3b6fd7e26b099a2d0d8af01906c29.bin b/common/runtime/cache/e2/e2c3b6fd7e26b099a2d0d8af01906c29.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e2/e2c3b6fd7e26b099a2d0d8af01906c29.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e2/e2c621827b9906076fe61e170b21c29d.bin b/common/runtime/cache/e2/e2c621827b9906076fe61e170b21c29d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e2/e2c621827b9906076fe61e170b21c29d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e2/e2cab04af10a07e211358455bedf8785.bin b/common/runtime/cache/e2/e2cab04af10a07e211358455bedf8785.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e2/e2cab04af10a07e211358455bedf8785.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e2/e2d82f690dcc91d12f9eac4e15c6f8c2.bin b/common/runtime/cache/e2/e2d82f690dcc91d12f9eac4e15c6f8c2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e2/e2d82f690dcc91d12f9eac4e15c6f8c2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e3/e3004786c93d3e09d1188e81b5e00f54.bin b/common/runtime/cache/e3/e3004786c93d3e09d1188e81b5e00f54.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e3/e3004786c93d3e09d1188e81b5e00f54.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e3/e30178472bef1417b96ee21495468ceb.bin b/common/runtime/cache/e3/e30178472bef1417b96ee21495468ceb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e3/e30178472bef1417b96ee21495468ceb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e3/e3178c930cc1bf2ca1d1c2e4a0242887.bin b/common/runtime/cache/e3/e3178c930cc1bf2ca1d1c2e4a0242887.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e3/e3178c930cc1bf2ca1d1c2e4a0242887.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e3/e32a9632080ab2ab61690e731793e627.bin b/common/runtime/cache/e3/e32a9632080ab2ab61690e731793e627.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e3/e32a9632080ab2ab61690e731793e627.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e3/e36048670faa963551b86638af708f8f.bin b/common/runtime/cache/e3/e36048670faa963551b86638af708f8f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e3/e36048670faa963551b86638af708f8f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e3/e3a39e34ab2ea956135068f0ff08c316.bin b/common/runtime/cache/e3/e3a39e34ab2ea956135068f0ff08c316.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e3/e3a39e34ab2ea956135068f0ff08c316.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e3/e3a6ca0b1811fd28991d73adefc76299.bin b/common/runtime/cache/e3/e3a6ca0b1811fd28991d73adefc76299.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e3/e3a6ca0b1811fd28991d73adefc76299.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e3/e3b82276b7b7c3ddb6ed6b24afa03f61.bin b/common/runtime/cache/e3/e3b82276b7b7c3ddb6ed6b24afa03f61.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e3/e3b82276b7b7c3ddb6ed6b24afa03f61.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e3/e3be554521511f7f5dc6c3d03fcc704a.bin b/common/runtime/cache/e3/e3be554521511f7f5dc6c3d03fcc704a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e3/e3be554521511f7f5dc6c3d03fcc704a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e3/e3c3a0e9525bde7fb7d50f6a777e605c.bin b/common/runtime/cache/e3/e3c3a0e9525bde7fb7d50f6a777e605c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e3/e3c3a0e9525bde7fb7d50f6a777e605c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e3/e3d3a2728e26e8665edd9d97e953fbc9.bin b/common/runtime/cache/e3/e3d3a2728e26e8665edd9d97e953fbc9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e3/e3d3a2728e26e8665edd9d97e953fbc9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e3/e3deb3f3b8eda706f56c9bad5cb2d45e.bin b/common/runtime/cache/e3/e3deb3f3b8eda706f56c9bad5cb2d45e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e3/e3deb3f3b8eda706f56c9bad5cb2d45e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e3/e3e320bb794bc7631ae16dee4c9ddcdb.bin b/common/runtime/cache/e3/e3e320bb794bc7631ae16dee4c9ddcdb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e3/e3e320bb794bc7631ae16dee4c9ddcdb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e3/e3e56a00ed85e4971f2b9a843a8a9b4e.bin b/common/runtime/cache/e3/e3e56a00ed85e4971f2b9a843a8a9b4e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e3/e3e56a00ed85e4971f2b9a843a8a9b4e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e4/e422b1c8a4099a04d1582a4177f9b136.bin b/common/runtime/cache/e4/e422b1c8a4099a04d1582a4177f9b136.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e4/e422b1c8a4099a04d1582a4177f9b136.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e4/e44fc731fed344f5830830bd5ec660fa.bin b/common/runtime/cache/e4/e44fc731fed344f5830830bd5ec660fa.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e4/e44fc731fed344f5830830bd5ec660fa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e4/e4559250cfb88d4e3403094ead697ebb.bin b/common/runtime/cache/e4/e4559250cfb88d4e3403094ead697ebb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e4/e4559250cfb88d4e3403094ead697ebb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e4/e45e0d1658f76c060d2768226d19aef1.bin b/common/runtime/cache/e4/e45e0d1658f76c060d2768226d19aef1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e4/e45e0d1658f76c060d2768226d19aef1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e4/e48ad3593e2f26f78fbeb66125cfa392.bin b/common/runtime/cache/e4/e48ad3593e2f26f78fbeb66125cfa392.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e4/e48ad3593e2f26f78fbeb66125cfa392.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e4/e498f33a754c8bcc522efc703aa54b19.bin b/common/runtime/cache/e4/e498f33a754c8bcc522efc703aa54b19.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e4/e498f33a754c8bcc522efc703aa54b19.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e4/e4a6a153bcaf12bfb4ace97ef55935b8.bin b/common/runtime/cache/e4/e4a6a153bcaf12bfb4ace97ef55935b8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e4/e4a6a153bcaf12bfb4ace97ef55935b8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e4/e4af693df6b9c8bdb9ad2fe17a9946a7.bin b/common/runtime/cache/e4/e4af693df6b9c8bdb9ad2fe17a9946a7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e4/e4af693df6b9c8bdb9ad2fe17a9946a7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e4/e4caff4c651cc3fdb146075f0fa9dbc5.bin b/common/runtime/cache/e4/e4caff4c651cc3fdb146075f0fa9dbc5.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e4/e4caff4c651cc3fdb146075f0fa9dbc5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e4/e4d3126c2df2a0882a889eb4489826a3.bin b/common/runtime/cache/e4/e4d3126c2df2a0882a889eb4489826a3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e4/e4d3126c2df2a0882a889eb4489826a3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e4/e4d8ff6e97392f3298719a81199c580d.bin b/common/runtime/cache/e4/e4d8ff6e97392f3298719a81199c580d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e4/e4d8ff6e97392f3298719a81199c580d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e4/e4ffcc4e5bc0bf851063d7b83282b211.bin b/common/runtime/cache/e4/e4ffcc4e5bc0bf851063d7b83282b211.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e4/e4ffcc4e5bc0bf851063d7b83282b211.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e5/e51b42f5071724b11591d4a00a07f055.bin b/common/runtime/cache/e5/e51b42f5071724b11591d4a00a07f055.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e5/e51b42f5071724b11591d4a00a07f055.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e5/e520d50b09739502a583dc1c42fdfaeb.bin b/common/runtime/cache/e5/e520d50b09739502a583dc1c42fdfaeb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e5/e520d50b09739502a583dc1c42fdfaeb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e5/e522c330e518b91ac4e064ecbc427fda.bin b/common/runtime/cache/e5/e522c330e518b91ac4e064ecbc427fda.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e5/e522c330e518b91ac4e064ecbc427fda.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e5/e52944b49c4b6c0a440c7905c4476cef.bin b/common/runtime/cache/e5/e52944b49c4b6c0a440c7905c4476cef.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e5/e52944b49c4b6c0a440c7905c4476cef.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e5/e52a0adb61d27a0d3b8f0612b40142b7.bin b/common/runtime/cache/e5/e52a0adb61d27a0d3b8f0612b40142b7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e5/e52a0adb61d27a0d3b8f0612b40142b7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e5/e55fa65879ece564a7dc77f2d44d81a6.bin b/common/runtime/cache/e5/e55fa65879ece564a7dc77f2d44d81a6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e5/e55fa65879ece564a7dc77f2d44d81a6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e5/e569867ed6645a8763652f52bebc4df1.bin b/common/runtime/cache/e5/e569867ed6645a8763652f52bebc4df1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e5/e569867ed6645a8763652f52bebc4df1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e5/e5791bd0671540d4a134e2e3671d70bb.bin b/common/runtime/cache/e5/e5791bd0671540d4a134e2e3671d70bb.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e5/e5791bd0671540d4a134e2e3671d70bb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e5/e5931e16792370dffd15f56ff1590c63.bin b/common/runtime/cache/e5/e5931e16792370dffd15f56ff1590c63.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e5/e5931e16792370dffd15f56ff1590c63.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e5/e59e159d4959bbc45e6d8e93111ff751.bin b/common/runtime/cache/e5/e59e159d4959bbc45e6d8e93111ff751.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e5/e59e159d4959bbc45e6d8e93111ff751.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e5/e5b58b90e60d2599c918bff6e355ed6c.bin b/common/runtime/cache/e5/e5b58b90e60d2599c918bff6e355ed6c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e5/e5b58b90e60d2599c918bff6e355ed6c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e5/e5c08b371bb1044e3c95cd7943e9b318.bin b/common/runtime/cache/e5/e5c08b371bb1044e3c95cd7943e9b318.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e5/e5c08b371bb1044e3c95cd7943e9b318.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e6/e61459066d9812ef055db8df0547f2b1.bin b/common/runtime/cache/e6/e61459066d9812ef055db8df0547f2b1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e6/e61459066d9812ef055db8df0547f2b1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e6/e619e203b8628d84c81ef11e005e07c5.bin b/common/runtime/cache/e6/e619e203b8628d84c81ef11e005e07c5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e6/e619e203b8628d84c81ef11e005e07c5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e6/e61f41decf30885baf98a8b2bc73a951.bin b/common/runtime/cache/e6/e61f41decf30885baf98a8b2bc73a951.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e6/e61f41decf30885baf98a8b2bc73a951.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e6/e62c7190c092d64d89246afb2e5e971e.bin b/common/runtime/cache/e6/e62c7190c092d64d89246afb2e5e971e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e6/e62c7190c092d64d89246afb2e5e971e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e6/e65ced302d3db3b2e887f2b997b0f35b.bin b/common/runtime/cache/e6/e65ced302d3db3b2e887f2b997b0f35b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e6/e65ced302d3db3b2e887f2b997b0f35b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e6/e661e02873cab00a5f2a121a414ae788.bin b/common/runtime/cache/e6/e661e02873cab00a5f2a121a414ae788.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e6/e661e02873cab00a5f2a121a414ae788.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e6/e68c37f4243be1f8415a1db3816624f9.bin b/common/runtime/cache/e6/e68c37f4243be1f8415a1db3816624f9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e6/e68c37f4243be1f8415a1db3816624f9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e6/e6965c5c43a0879c4bbb945a9aa86c79.bin b/common/runtime/cache/e6/e6965c5c43a0879c4bbb945a9aa86c79.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e6/e6965c5c43a0879c4bbb945a9aa86c79.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e6/e69ab85ec8a0fe9b6769a58c0e7fa475.bin b/common/runtime/cache/e6/e69ab85ec8a0fe9b6769a58c0e7fa475.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e6/e69ab85ec8a0fe9b6769a58c0e7fa475.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e6/e6ab7477b7e59fc12f2c59476f303c54.bin b/common/runtime/cache/e6/e6ab7477b7e59fc12f2c59476f303c54.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e6/e6ab7477b7e59fc12f2c59476f303c54.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e6/e6d53e3067ce1a1241a8f0b80b7f0d3e.bin b/common/runtime/cache/e6/e6d53e3067ce1a1241a8f0b80b7f0d3e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e6/e6d53e3067ce1a1241a8f0b80b7f0d3e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e6/e6e0e48eb7fe1646d8e51a753fe4b6fc.bin b/common/runtime/cache/e6/e6e0e48eb7fe1646d8e51a753fe4b6fc.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e6/e6e0e48eb7fe1646d8e51a753fe4b6fc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e700337f3cbcece5955013939eb12603.bin b/common/runtime/cache/e7/e700337f3cbcece5955013939eb12603.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e7/e700337f3cbcece5955013939eb12603.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e708d5da897b6c8f186c14f3881d194d.bin b/common/runtime/cache/e7/e708d5da897b6c8f186c14f3881d194d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e7/e708d5da897b6c8f186c14f3881d194d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e70ac537f2e159e3af6fda0e5d6e8c1c.bin b/common/runtime/cache/e7/e70ac537f2e159e3af6fda0e5d6e8c1c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e7/e70ac537f2e159e3af6fda0e5d6e8c1c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e70d967bec0076a55e32caa42d88b4f1.bin b/common/runtime/cache/e7/e70d967bec0076a55e32caa42d88b4f1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e7/e70d967bec0076a55e32caa42d88b4f1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e715b13da4fb962e2237654ae863492c.bin b/common/runtime/cache/e7/e715b13da4fb962e2237654ae863492c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e7/e715b13da4fb962e2237654ae863492c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e73119531118cdb82919744539be2001.bin b/common/runtime/cache/e7/e73119531118cdb82919744539be2001.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e7/e73119531118cdb82919744539be2001.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e745169fddae57a9c309da8ee58cd8c7.bin b/common/runtime/cache/e7/e745169fddae57a9c309da8ee58cd8c7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e7/e745169fddae57a9c309da8ee58cd8c7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e74cf21f5d061efb5fea2953037a0e3d.bin b/common/runtime/cache/e7/e74cf21f5d061efb5fea2953037a0e3d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e7/e74cf21f5d061efb5fea2953037a0e3d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e756441d47ff8d1eed19bf2e466e3dcc.bin b/common/runtime/cache/e7/e756441d47ff8d1eed19bf2e466e3dcc.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e7/e756441d47ff8d1eed19bf2e466e3dcc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e77194ac4515c9cb099e0a2b26dcce82.bin b/common/runtime/cache/e7/e77194ac4515c9cb099e0a2b26dcce82.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e7/e77194ac4515c9cb099e0a2b26dcce82.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e782f6c7bfc7858082e3d925475f4a48.bin b/common/runtime/cache/e7/e782f6c7bfc7858082e3d925475f4a48.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e7/e782f6c7bfc7858082e3d925475f4a48.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e78f6e4eef129b046bd2788db5297d7c.bin b/common/runtime/cache/e7/e78f6e4eef129b046bd2788db5297d7c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e7/e78f6e4eef129b046bd2788db5297d7c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e7953aa6734603d5b6bc24f67d02f197.bin b/common/runtime/cache/e7/e7953aa6734603d5b6bc24f67d02f197.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e7/e7953aa6734603d5b6bc24f67d02f197.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e7a854987d599e2e01d08c7decd99180.bin b/common/runtime/cache/e7/e7a854987d599e2e01d08c7decd99180.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e7/e7a854987d599e2e01d08c7decd99180.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e7a966d3a61a684acd5a5612ac0374c3.bin b/common/runtime/cache/e7/e7a966d3a61a684acd5a5612ac0374c3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e7/e7a966d3a61a684acd5a5612ac0374c3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e7b4e84eac36a803c9feb0384465b6d6.bin b/common/runtime/cache/e7/e7b4e84eac36a803c9feb0384465b6d6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e7/e7b4e84eac36a803c9feb0384465b6d6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e7b7e39b3e711b09f8d6b1f4a967bb13.bin b/common/runtime/cache/e7/e7b7e39b3e711b09f8d6b1f4a967bb13.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e7/e7b7e39b3e711b09f8d6b1f4a967bb13.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e7dfac6539ab4b287ff6da716c5a1427.bin b/common/runtime/cache/e7/e7dfac6539ab4b287ff6da716c5a1427.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e7/e7dfac6539ab4b287ff6da716c5a1427.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e7/e7efd4e1d261e68263616d228e4c3b8b.bin b/common/runtime/cache/e7/e7efd4e1d261e68263616d228e4c3b8b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e7/e7efd4e1d261e68263616d228e4c3b8b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e8/e84373c6e517c3778af6a48516eb4349.bin b/common/runtime/cache/e8/e84373c6e517c3778af6a48516eb4349.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e8/e84373c6e517c3778af6a48516eb4349.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e8/e8438b6b2d17e4f496ce0bc2e179c2e8.bin b/common/runtime/cache/e8/e8438b6b2d17e4f496ce0bc2e179c2e8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e8/e8438b6b2d17e4f496ce0bc2e179c2e8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e8/e8443562db2497edfc43dd9c94b083fb.bin b/common/runtime/cache/e8/e8443562db2497edfc43dd9c94b083fb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e8/e8443562db2497edfc43dd9c94b083fb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e8/e85cbe433fba5153db0d66ed05781c75.bin b/common/runtime/cache/e8/e85cbe433fba5153db0d66ed05781c75.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e8/e85cbe433fba5153db0d66ed05781c75.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e8/e867680ee3d61094a035f7ff2ea1d056.bin b/common/runtime/cache/e8/e867680ee3d61094a035f7ff2ea1d056.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e8/e867680ee3d61094a035f7ff2ea1d056.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e8/e86a336e9929cebe40d3af45e9e2e6b3.bin b/common/runtime/cache/e8/e86a336e9929cebe40d3af45e9e2e6b3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e8/e86a336e9929cebe40d3af45e9e2e6b3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e8/e892901054117bf64414b3a8bbe2d331.bin b/common/runtime/cache/e8/e892901054117bf64414b3a8bbe2d331.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e8/e892901054117bf64414b3a8bbe2d331.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e8/e8a4a82207c9085208d8eed35af043be.bin b/common/runtime/cache/e8/e8a4a82207c9085208d8eed35af043be.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e8/e8a4a82207c9085208d8eed35af043be.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e8/e8a6142e161c6e00725e066dc19066a4.bin b/common/runtime/cache/e8/e8a6142e161c6e00725e066dc19066a4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e8/e8a6142e161c6e00725e066dc19066a4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e8/e8b35304aa28f56bdff4a754ed2d9788.bin b/common/runtime/cache/e8/e8b35304aa28f56bdff4a754ed2d9788.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e8/e8b35304aa28f56bdff4a754ed2d9788.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e8/e8ba1d4bc298830529c9d5d9b939287e.bin b/common/runtime/cache/e8/e8ba1d4bc298830529c9d5d9b939287e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e8/e8ba1d4bc298830529c9d5d9b939287e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e8/e8ccd4ad60c2067c46b8ed6693b04d9c.bin b/common/runtime/cache/e8/e8ccd4ad60c2067c46b8ed6693b04d9c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e8/e8ccd4ad60c2067c46b8ed6693b04d9c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e8/e8cf9ab87a58d46fcd05520ef17c0275.bin b/common/runtime/cache/e8/e8cf9ab87a58d46fcd05520ef17c0275.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e8/e8cf9ab87a58d46fcd05520ef17c0275.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e8/e8d7eb52491cc66a23bdc1019676fb9d.bin b/common/runtime/cache/e8/e8d7eb52491cc66a23bdc1019676fb9d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e8/e8d7eb52491cc66a23bdc1019676fb9d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e8/e8db1bd5277b84e282c3fe8842b56a28.bin b/common/runtime/cache/e8/e8db1bd5277b84e282c3fe8842b56a28.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e8/e8db1bd5277b84e282c3fe8842b56a28.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e8/e8ebd27889172d749301fd5f668a9332.bin b/common/runtime/cache/e8/e8ebd27889172d749301fd5f668a9332.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e8/e8ebd27889172d749301fd5f668a9332.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e9/e9188193473dffab89d938f1fae48c91.bin b/common/runtime/cache/e9/e9188193473dffab89d938f1fae48c91.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e9/e9188193473dffab89d938f1fae48c91.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e9/e91ec4cfd8f6f61f1b57a9a44bef1fb4.bin b/common/runtime/cache/e9/e91ec4cfd8f6f61f1b57a9a44bef1fb4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e9/e91ec4cfd8f6f61f1b57a9a44bef1fb4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e9/e940a279125d909ecbeae84710e702b8.bin b/common/runtime/cache/e9/e940a279125d909ecbeae84710e702b8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e9/e940a279125d909ecbeae84710e702b8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e9/e941aaac580bafc1d1efedff1642d95d.bin b/common/runtime/cache/e9/e941aaac580bafc1d1efedff1642d95d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e9/e941aaac580bafc1d1efedff1642d95d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e9/e94382ebd07208d3def8230e6e6d87e1.bin b/common/runtime/cache/e9/e94382ebd07208d3def8230e6e6d87e1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e9/e94382ebd07208d3def8230e6e6d87e1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e9/e99cc53c7d71629b3095903d2d04c7d1.bin b/common/runtime/cache/e9/e99cc53c7d71629b3095903d2d04c7d1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e9/e99cc53c7d71629b3095903d2d04c7d1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e9/e9c89ada9a5ce7f3bd53acd0d1bcae77.bin b/common/runtime/cache/e9/e9c89ada9a5ce7f3bd53acd0d1bcae77.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e9/e9c89ada9a5ce7f3bd53acd0d1bcae77.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e9/e9e3b78c69339c404b17523767f4e550.bin b/common/runtime/cache/e9/e9e3b78c69339c404b17523767f4e550.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/e9/e9e3b78c69339c404b17523767f4e550.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/e9/e9f4f65301463852f5c82611db14236e.bin b/common/runtime/cache/e9/e9f4f65301463852f5c82611db14236e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/e9/e9f4f65301463852f5c82611db14236e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ea/ea076fb28f785abb73dddecbb0f35f0d.bin b/common/runtime/cache/ea/ea076fb28f785abb73dddecbb0f35f0d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ea/ea076fb28f785abb73dddecbb0f35f0d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ea/ea0e9cd488d636eae0ee8e0bb2d85bd4.bin b/common/runtime/cache/ea/ea0e9cd488d636eae0ee8e0bb2d85bd4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ea/ea0e9cd488d636eae0ee8e0bb2d85bd4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ea/ea0f1210d28df149ec357b4b2e8687e5.bin b/common/runtime/cache/ea/ea0f1210d28df149ec357b4b2e8687e5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ea/ea0f1210d28df149ec357b4b2e8687e5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ea/ea1e77bced6ff316e1bf48bc9e994207.bin b/common/runtime/cache/ea/ea1e77bced6ff316e1bf48bc9e994207.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ea/ea1e77bced6ff316e1bf48bc9e994207.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ea/ea2d5ed4512919835965f8889f2ca467.bin b/common/runtime/cache/ea/ea2d5ed4512919835965f8889f2ca467.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ea/ea2d5ed4512919835965f8889f2ca467.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ea/ea3afc638f9424d0308c051fc085cc8c.bin b/common/runtime/cache/ea/ea3afc638f9424d0308c051fc085cc8c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ea/ea3afc638f9424d0308c051fc085cc8c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ea/ea5fc0442747fc54aeeab42619478cf5.bin b/common/runtime/cache/ea/ea5fc0442747fc54aeeab42619478cf5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ea/ea5fc0442747fc54aeeab42619478cf5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ea/ea72a3afe6b8aa361c5c4d363e124c19.bin b/common/runtime/cache/ea/ea72a3afe6b8aa361c5c4d363e124c19.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ea/ea72a3afe6b8aa361c5c4d363e124c19.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ea/ea8df95e11df0ad2e9a752057f9bd47a.bin b/common/runtime/cache/ea/ea8df95e11df0ad2e9a752057f9bd47a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ea/ea8df95e11df0ad2e9a752057f9bd47a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ea/ea9af75fa70f52ea0c28228e2a463279.bin b/common/runtime/cache/ea/ea9af75fa70f52ea0c28228e2a463279.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ea/ea9af75fa70f52ea0c28228e2a463279.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ea/eac05f83156552e210c9e300c8545289.bin b/common/runtime/cache/ea/eac05f83156552e210c9e300c8545289.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ea/eac05f83156552e210c9e300c8545289.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ea/eaea5acaf8c14ebe1818575b5046c3aa.bin b/common/runtime/cache/ea/eaea5acaf8c14ebe1818575b5046c3aa.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ea/eaea5acaf8c14ebe1818575b5046c3aa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ea/eaf556083888d678baf0fc7b1ab0711e.bin b/common/runtime/cache/ea/eaf556083888d678baf0fc7b1ab0711e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ea/eaf556083888d678baf0fc7b1ab0711e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/eb/eb0f48002609ed5fed70061308cee51a.bin b/common/runtime/cache/eb/eb0f48002609ed5fed70061308cee51a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/eb/eb0f48002609ed5fed70061308cee51a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/eb/eb1d1e762dbc9a12385fd2626ad2db39.bin b/common/runtime/cache/eb/eb1d1e762dbc9a12385fd2626ad2db39.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/eb/eb1d1e762dbc9a12385fd2626ad2db39.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/eb/eb316467e528f24e22133f2a30db063a.bin b/common/runtime/cache/eb/eb316467e528f24e22133f2a30db063a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/eb/eb316467e528f24e22133f2a30db063a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/eb/eb41c02c29da19e9c8dfb30113678225.bin b/common/runtime/cache/eb/eb41c02c29da19e9c8dfb30113678225.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/eb/eb41c02c29da19e9c8dfb30113678225.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/eb/eb50e4d912e720c5c994565d4cc8e9ae.bin b/common/runtime/cache/eb/eb50e4d912e720c5c994565d4cc8e9ae.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/eb/eb50e4d912e720c5c994565d4cc8e9ae.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/eb/eb6be158986e4d8204aadb697b2e9843.bin b/common/runtime/cache/eb/eb6be158986e4d8204aadb697b2e9843.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/eb/eb6be158986e4d8204aadb697b2e9843.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/eb/eb83c824d9cbeb4a013a56a379874e7f.bin b/common/runtime/cache/eb/eb83c824d9cbeb4a013a56a379874e7f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/eb/eb83c824d9cbeb4a013a56a379874e7f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/eb/eb96657789cb59c35428a4a479f94b50.bin b/common/runtime/cache/eb/eb96657789cb59c35428a4a479f94b50.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/eb/eb96657789cb59c35428a4a479f94b50.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/eb/eba256e8dff9d8f5d550493813f89626.bin b/common/runtime/cache/eb/eba256e8dff9d8f5d550493813f89626.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/eb/eba256e8dff9d8f5d550493813f89626.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/eb/ebc0f7402381d82f65bdcd0f33f14225.bin b/common/runtime/cache/eb/ebc0f7402381d82f65bdcd0f33f14225.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/eb/ebc0f7402381d82f65bdcd0f33f14225.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/eb/ebcf61aefeb950df836de7030d95a25a.bin b/common/runtime/cache/eb/ebcf61aefeb950df836de7030d95a25a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/eb/ebcf61aefeb950df836de7030d95a25a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/eb/ebf66c95e2b517dbdab886d0256a5b01.bin b/common/runtime/cache/eb/ebf66c95e2b517dbdab886d0256a5b01.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/eb/ebf66c95e2b517dbdab886d0256a5b01.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/eb/ebfded57bebb8c58c05e4dc68ab1bd02.bin b/common/runtime/cache/eb/ebfded57bebb8c58c05e4dc68ab1bd02.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/eb/ebfded57bebb8c58c05e4dc68ab1bd02.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ec/ec495bfad9bf1f279055362e6ea098ba.bin b/common/runtime/cache/ec/ec495bfad9bf1f279055362e6ea098ba.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ec/ec495bfad9bf1f279055362e6ea098ba.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ec/ec8ec9abbb275654439e08042d6390e7.bin b/common/runtime/cache/ec/ec8ec9abbb275654439e08042d6390e7.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ec/ec8ec9abbb275654439e08042d6390e7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ec/ecd703252994cf234dda6d2dcb8e84c5.bin b/common/runtime/cache/ec/ecd703252994cf234dda6d2dcb8e84c5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ec/ecd703252994cf234dda6d2dcb8e84c5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ed/ed215ad10840b22baa59e3a88cb98659.bin b/common/runtime/cache/ed/ed215ad10840b22baa59e3a88cb98659.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ed/ed215ad10840b22baa59e3a88cb98659.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ed/ed2a2f1809c98bd2b04bbf00b869cf11.bin b/common/runtime/cache/ed/ed2a2f1809c98bd2b04bbf00b869cf11.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ed/ed2a2f1809c98bd2b04bbf00b869cf11.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ed/ed3f2b47099fe5032df68480de45e754.bin b/common/runtime/cache/ed/ed3f2b47099fe5032df68480de45e754.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ed/ed3f2b47099fe5032df68480de45e754.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ed/ed412cfc7df3eb63bc05b9aa23379947.bin b/common/runtime/cache/ed/ed412cfc7df3eb63bc05b9aa23379947.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ed/ed412cfc7df3eb63bc05b9aa23379947.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ed/ed50eb1bafdfac31e5db3a3d58e99baf.bin b/common/runtime/cache/ed/ed50eb1bafdfac31e5db3a3d58e99baf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ed/ed50eb1bafdfac31e5db3a3d58e99baf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ed/ed55173224b32bf2c57f207ed36e06b1.bin b/common/runtime/cache/ed/ed55173224b32bf2c57f207ed36e06b1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ed/ed55173224b32bf2c57f207ed36e06b1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ed/ed6a5d02f9a6c6ade0d76f3948318408.bin b/common/runtime/cache/ed/ed6a5d02f9a6c6ade0d76f3948318408.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ed/ed6a5d02f9a6c6ade0d76f3948318408.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ed/ed86b08e33cb942603b24fc845830700.bin b/common/runtime/cache/ed/ed86b08e33cb942603b24fc845830700.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ed/ed86b08e33cb942603b24fc845830700.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ed/ed9e31ef2e8a665fee455d49cd5472c9.bin b/common/runtime/cache/ed/ed9e31ef2e8a665fee455d49cd5472c9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ed/ed9e31ef2e8a665fee455d49cd5472c9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ed/ede69bdec63c90d0aacdd957546378f4.bin b/common/runtime/cache/ed/ede69bdec63c90d0aacdd957546378f4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ed/ede69bdec63c90d0aacdd957546378f4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ed/edf2a9db7c2e21e36af424820ea6a7f9.bin b/common/runtime/cache/ed/edf2a9db7c2e21e36af424820ea6a7f9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ed/edf2a9db7c2e21e36af424820ea6a7f9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ee/ee114a40e6c1fbfd6e99a1dc19bd5bb9.bin b/common/runtime/cache/ee/ee114a40e6c1fbfd6e99a1dc19bd5bb9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ee/ee114a40e6c1fbfd6e99a1dc19bd5bb9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ee/ee1364262147dd0061363bbad6280b0a.bin b/common/runtime/cache/ee/ee1364262147dd0061363bbad6280b0a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ee/ee1364262147dd0061363bbad6280b0a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ee/ee846e9e5cf9035b0b1be871597477d8.bin b/common/runtime/cache/ee/ee846e9e5cf9035b0b1be871597477d8.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ee/ee846e9e5cf9035b0b1be871597477d8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ee/ee969b0321546920273002b6aff887f0.bin b/common/runtime/cache/ee/ee969b0321546920273002b6aff887f0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ee/ee969b0321546920273002b6aff887f0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ee/ee970372d046e42d167eb1d059467a3b.bin b/common/runtime/cache/ee/ee970372d046e42d167eb1d059467a3b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ee/ee970372d046e42d167eb1d059467a3b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ee/ee9da908fe3c339e5a0efd84bc50c780.bin b/common/runtime/cache/ee/ee9da908fe3c339e5a0efd84bc50c780.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ee/ee9da908fe3c339e5a0efd84bc50c780.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ee/eea11532de103d0fef92729fdf31d8ea.bin b/common/runtime/cache/ee/eea11532de103d0fef92729fdf31d8ea.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ee/eea11532de103d0fef92729fdf31d8ea.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ee/eea2bfc71a9c23a67faa4850ab265651.bin b/common/runtime/cache/ee/eea2bfc71a9c23a67faa4850ab265651.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ee/eea2bfc71a9c23a67faa4850ab265651.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ee/eec60239273de3ed7bf54ffee62adf29.bin b/common/runtime/cache/ee/eec60239273de3ed7bf54ffee62adf29.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ee/eec60239273de3ed7bf54ffee62adf29.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ee/eeca86010a5041bbac7d425b459f6f36.bin b/common/runtime/cache/ee/eeca86010a5041bbac7d425b459f6f36.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ee/eeca86010a5041bbac7d425b459f6f36.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ee/eed25a4896f832075555d86da07c116c.bin b/common/runtime/cache/ee/eed25a4896f832075555d86da07c116c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ee/eed25a4896f832075555d86da07c116c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ee/eef5e35632446e4aa307b98fd29fb805.bin b/common/runtime/cache/ee/eef5e35632446e4aa307b98fd29fb805.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ee/eef5e35632446e4aa307b98fd29fb805.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ef/ef12098c7af49b4c5fbbdb92afa3f72b.bin b/common/runtime/cache/ef/ef12098c7af49b4c5fbbdb92afa3f72b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ef/ef12098c7af49b4c5fbbdb92afa3f72b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ef/ef22969db2ba85ef6d0aa3c156af3cda.bin b/common/runtime/cache/ef/ef22969db2ba85ef6d0aa3c156af3cda.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ef/ef22969db2ba85ef6d0aa3c156af3cda.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ef/ef6f4f75e5c5182fbf3b0f57bda62db0.bin b/common/runtime/cache/ef/ef6f4f75e5c5182fbf3b0f57bda62db0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ef/ef6f4f75e5c5182fbf3b0f57bda62db0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ef/ef7707dad855b5492392a82c91daa163.bin b/common/runtime/cache/ef/ef7707dad855b5492392a82c91daa163.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ef/ef7707dad855b5492392a82c91daa163.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ef/ef8470c6fc0354d9ba08df278ce404bc.bin b/common/runtime/cache/ef/ef8470c6fc0354d9ba08df278ce404bc.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ef/ef8470c6fc0354d9ba08df278ce404bc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ef/ef877e75fa4a30a2aefabac3057cced0.bin b/common/runtime/cache/ef/ef877e75fa4a30a2aefabac3057cced0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ef/ef877e75fa4a30a2aefabac3057cced0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ef/ef928ee7e855c3d72ba4b84e806d5a02.bin b/common/runtime/cache/ef/ef928ee7e855c3d72ba4b84e806d5a02.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ef/ef928ee7e855c3d72ba4b84e806d5a02.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ef/ef95691ae1aa662c4f48b983d7dcd9dc.bin b/common/runtime/cache/ef/ef95691ae1aa662c4f48b983d7dcd9dc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ef/ef95691ae1aa662c4f48b983d7dcd9dc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ef/ef9ff82f80b6c51e1f75fc6ef43ca5f7.bin b/common/runtime/cache/ef/ef9ff82f80b6c51e1f75fc6ef43ca5f7.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ef/ef9ff82f80b6c51e1f75fc6ef43ca5f7.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ef/efa53dc53c3f1ef140ee7b1fa4220c92.bin b/common/runtime/cache/ef/efa53dc53c3f1ef140ee7b1fa4220c92.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ef/efa53dc53c3f1ef140ee7b1fa4220c92.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ef/efb12604647fdc676f61d694f9f11db1.bin b/common/runtime/cache/ef/efb12604647fdc676f61d694f9f11db1.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ef/efb12604647fdc676f61d694f9f11db1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ef/efe39dbe4fccde2bb7ecc44e60571182.bin b/common/runtime/cache/ef/efe39dbe4fccde2bb7ecc44e60571182.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ef/efe39dbe4fccde2bb7ecc44e60571182.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ef/eff623dc0654744fd3df564056b75fcf.bin b/common/runtime/cache/ef/eff623dc0654744fd3df564056b75fcf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ef/eff623dc0654744fd3df564056b75fcf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f0/f072e789ce446b7a0485d3bd89e58559.bin b/common/runtime/cache/f0/f072e789ce446b7a0485d3bd89e58559.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f0/f072e789ce446b7a0485d3bd89e58559.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f0/f08d927d00b212006946de5fc25ac1c2.bin b/common/runtime/cache/f0/f08d927d00b212006946de5fc25ac1c2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f0/f08d927d00b212006946de5fc25ac1c2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f0/f098efff375470b4ebc1c73ccc9789ed.bin b/common/runtime/cache/f0/f098efff375470b4ebc1c73ccc9789ed.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f0/f098efff375470b4ebc1c73ccc9789ed.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f0/f0a7fd53a8628892824d4cbdadb5e29a.bin b/common/runtime/cache/f0/f0a7fd53a8628892824d4cbdadb5e29a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f0/f0a7fd53a8628892824d4cbdadb5e29a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f0/f0a8a33f3787941586e1fbf312cc9f7f.bin b/common/runtime/cache/f0/f0a8a33f3787941586e1fbf312cc9f7f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f0/f0a8a33f3787941586e1fbf312cc9f7f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f0/f0f0d4a7d1b60545de70df6457835f04.bin b/common/runtime/cache/f0/f0f0d4a7d1b60545de70df6457835f04.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f0/f0f0d4a7d1b60545de70df6457835f04.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f0/f0fd4560ba88d5bfe69940bfc6652eb6.bin b/common/runtime/cache/f0/f0fd4560ba88d5bfe69940bfc6652eb6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f0/f0fd4560ba88d5bfe69940bfc6652eb6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f1/f10716307f82b9af9e23f9781af6af0b.bin b/common/runtime/cache/f1/f10716307f82b9af9e23f9781af6af0b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f1/f10716307f82b9af9e23f9781af6af0b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f1/f10fbb80e31e0783eb1935e52f17cc00.bin b/common/runtime/cache/f1/f10fbb80e31e0783eb1935e52f17cc00.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f1/f10fbb80e31e0783eb1935e52f17cc00.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f1/f11d03ee9a7425a58ff900d45d9d707e.bin b/common/runtime/cache/f1/f11d03ee9a7425a58ff900d45d9d707e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f1/f11d03ee9a7425a58ff900d45d9d707e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f1/f12f83c747028a22daa25cad8ec688bf.bin b/common/runtime/cache/f1/f12f83c747028a22daa25cad8ec688bf.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f1/f12f83c747028a22daa25cad8ec688bf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f1/f132501e78ea9acd73c2a3d3b1c60aa4.bin b/common/runtime/cache/f1/f132501e78ea9acd73c2a3d3b1c60aa4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f1/f132501e78ea9acd73c2a3d3b1c60aa4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f1/f1423697f801d6d0609c4f136236b4a3.bin b/common/runtime/cache/f1/f1423697f801d6d0609c4f136236b4a3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f1/f1423697f801d6d0609c4f136236b4a3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f1/f14cad53e8c078c602bdd5222cd3e206.bin b/common/runtime/cache/f1/f14cad53e8c078c602bdd5222cd3e206.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f1/f14cad53e8c078c602bdd5222cd3e206.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f1/f15eb78a0b66612561c7d05aa4898703.bin b/common/runtime/cache/f1/f15eb78a0b66612561c7d05aa4898703.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f1/f15eb78a0b66612561c7d05aa4898703.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f1/f167c484a120f80f666f8dfbd792b89f.bin b/common/runtime/cache/f1/f167c484a120f80f666f8dfbd792b89f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f1/f167c484a120f80f666f8dfbd792b89f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f1/f17ad2bfa53ec78c736a239ed0e4574b.bin b/common/runtime/cache/f1/f17ad2bfa53ec78c736a239ed0e4574b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f1/f17ad2bfa53ec78c736a239ed0e4574b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f1/f1a1ee4d989db19946bb04e79e7b9fef.bin b/common/runtime/cache/f1/f1a1ee4d989db19946bb04e79e7b9fef.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f1/f1a1ee4d989db19946bb04e79e7b9fef.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f1/f1a356c54bcec8b181141bddf7f56d3d.bin b/common/runtime/cache/f1/f1a356c54bcec8b181141bddf7f56d3d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f1/f1a356c54bcec8b181141bddf7f56d3d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f1/f1c77532d259d275b1df1df713f83262.bin b/common/runtime/cache/f1/f1c77532d259d275b1df1df713f83262.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f1/f1c77532d259d275b1df1df713f83262.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f1/f1c7fd57f3ba702969219e055f9a074e.bin b/common/runtime/cache/f1/f1c7fd57f3ba702969219e055f9a074e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f1/f1c7fd57f3ba702969219e055f9a074e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f2/f21620858e433e2840131454c7b7ac90.bin b/common/runtime/cache/f2/f21620858e433e2840131454c7b7ac90.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f2/f21620858e433e2840131454c7b7ac90.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f2/f229e23d3e7b7ee31ad46711e5a8ebf5.bin b/common/runtime/cache/f2/f229e23d3e7b7ee31ad46711e5a8ebf5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f2/f229e23d3e7b7ee31ad46711e5a8ebf5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f2/f22a2c3a951e8054f4e8b400719c1612.bin b/common/runtime/cache/f2/f22a2c3a951e8054f4e8b400719c1612.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f2/f22a2c3a951e8054f4e8b400719c1612.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f2/f22beac0e7298bff188efee33db92b48.bin b/common/runtime/cache/f2/f22beac0e7298bff188efee33db92b48.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f2/f22beac0e7298bff188efee33db92b48.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f2/f24f36d47cee46b53da95600051c683c.bin b/common/runtime/cache/f2/f24f36d47cee46b53da95600051c683c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f2/f24f36d47cee46b53da95600051c683c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f2/f25b28696b26fda745375cb91e36943c.bin b/common/runtime/cache/f2/f25b28696b26fda745375cb91e36943c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f2/f25b28696b26fda745375cb91e36943c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f2/f2912f668c62212f4e4dc07dbd4960fa.bin b/common/runtime/cache/f2/f2912f668c62212f4e4dc07dbd4960fa.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f2/f2912f668c62212f4e4dc07dbd4960fa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f2/f2a9c1e0aa704eada2e65bc861fb266c.bin b/common/runtime/cache/f2/f2a9c1e0aa704eada2e65bc861fb266c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f2/f2a9c1e0aa704eada2e65bc861fb266c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f2/f2b75ffe9080514673d2979f43735dd2.bin b/common/runtime/cache/f2/f2b75ffe9080514673d2979f43735dd2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f2/f2b75ffe9080514673d2979f43735dd2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f2/f2df52848e2acc6a1a56dcf9fd894802.bin b/common/runtime/cache/f2/f2df52848e2acc6a1a56dcf9fd894802.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f2/f2df52848e2acc6a1a56dcf9fd894802.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f2/f2e35c20c685862e691740a8b71bd825.bin b/common/runtime/cache/f2/f2e35c20c685862e691740a8b71bd825.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f2/f2e35c20c685862e691740a8b71bd825.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f2/f2e37c5a5cef6d58721afd7259c70ab9.bin b/common/runtime/cache/f2/f2e37c5a5cef6d58721afd7259c70ab9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f2/f2e37c5a5cef6d58721afd7259c70ab9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f2/f2f98859b145adf5043fdb2b3945cf7d.bin b/common/runtime/cache/f2/f2f98859b145adf5043fdb2b3945cf7d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f2/f2f98859b145adf5043fdb2b3945cf7d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f3/f31a98f05952d7c15fbd7aea5393ae9d.bin b/common/runtime/cache/f3/f31a98f05952d7c15fbd7aea5393ae9d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f3/f31a98f05952d7c15fbd7aea5393ae9d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f3/f325f387f6daabb9fd964cd0de33c274.bin b/common/runtime/cache/f3/f325f387f6daabb9fd964cd0de33c274.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f3/f325f387f6daabb9fd964cd0de33c274.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f3/f333179e5ba68db210201818762fbe13.bin b/common/runtime/cache/f3/f333179e5ba68db210201818762fbe13.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f3/f333179e5ba68db210201818762fbe13.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f3/f34173f52456f890f95e0484a977f9c6.bin b/common/runtime/cache/f3/f34173f52456f890f95e0484a977f9c6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f3/f34173f52456f890f95e0484a977f9c6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f3/f35770465cae6e32e6a4f6da42a2ce2c.bin b/common/runtime/cache/f3/f35770465cae6e32e6a4f6da42a2ce2c.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f3/f35770465cae6e32e6a4f6da42a2ce2c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f3/f35e7ae4b77ab2f370cf66761935850e.bin b/common/runtime/cache/f3/f35e7ae4b77ab2f370cf66761935850e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f3/f35e7ae4b77ab2f370cf66761935850e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f3/f36f98f5bdd32c74bf61a5a5647d2938.bin b/common/runtime/cache/f3/f36f98f5bdd32c74bf61a5a5647d2938.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f3/f36f98f5bdd32c74bf61a5a5647d2938.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f3/f376545d04da6a182246e6d07ce84d9a.bin b/common/runtime/cache/f3/f376545d04da6a182246e6d07ce84d9a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f3/f376545d04da6a182246e6d07ce84d9a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f3/f3cae937b107ed623eca64fd6e6b653d.bin b/common/runtime/cache/f3/f3cae937b107ed623eca64fd6e6b653d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f3/f3cae937b107ed623eca64fd6e6b653d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f3/f3f3675b137c1ca2c2ed8752e513b02b.bin b/common/runtime/cache/f3/f3f3675b137c1ca2c2ed8752e513b02b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f3/f3f3675b137c1ca2c2ed8752e513b02b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f3/f3f47ac5406e51da19d7a59a30e5315b.bin b/common/runtime/cache/f3/f3f47ac5406e51da19d7a59a30e5315b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f3/f3f47ac5406e51da19d7a59a30e5315b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f3/f3f89866a33fcf4ccac5a1554f7da645.bin b/common/runtime/cache/f3/f3f89866a33fcf4ccac5a1554f7da645.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f3/f3f89866a33fcf4ccac5a1554f7da645.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f3/f3f9eff754af80b3a84b58dc25081952.bin b/common/runtime/cache/f3/f3f9eff754af80b3a84b58dc25081952.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f3/f3f9eff754af80b3a84b58dc25081952.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f3/f3fd2de460708ea900a4bba2ec806c83.bin b/common/runtime/cache/f3/f3fd2de460708ea900a4bba2ec806c83.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f3/f3fd2de460708ea900a4bba2ec806c83.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f4/f41c4acf50659f1d3181b5ba6ddbc7dd.bin b/common/runtime/cache/f4/f41c4acf50659f1d3181b5ba6ddbc7dd.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f4/f41c4acf50659f1d3181b5ba6ddbc7dd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f4/f420df3391a9a4dd2b92d719dd3f782c.bin b/common/runtime/cache/f4/f420df3391a9a4dd2b92d719dd3f782c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f4/f420df3391a9a4dd2b92d719dd3f782c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f4/f445260b946fb9f30632a530ce41ad2d.bin b/common/runtime/cache/f4/f445260b946fb9f30632a530ce41ad2d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f4/f445260b946fb9f30632a530ce41ad2d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f4/f4689b4d3816913db5d7599ae664f76c.bin b/common/runtime/cache/f4/f4689b4d3816913db5d7599ae664f76c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f4/f4689b4d3816913db5d7599ae664f76c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f4/f46dbe5f6199aa0f0f42b3c53f8555ff.bin b/common/runtime/cache/f4/f46dbe5f6199aa0f0f42b3c53f8555ff.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f4/f46dbe5f6199aa0f0f42b3c53f8555ff.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f4/f495ad5f50ede9572ba5cc524d496ec5.bin b/common/runtime/cache/f4/f495ad5f50ede9572ba5cc524d496ec5.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f4/f495ad5f50ede9572ba5cc524d496ec5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f4/f4dd33bdf7f3b3cfb7107908458b593a.bin b/common/runtime/cache/f4/f4dd33bdf7f3b3cfb7107908458b593a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f4/f4dd33bdf7f3b3cfb7107908458b593a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f4/f4dfef2b6cea41aa72d0580465c07f31.bin b/common/runtime/cache/f4/f4dfef2b6cea41aa72d0580465c07f31.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f4/f4dfef2b6cea41aa72d0580465c07f31.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f4/f4f83262244fba654b4a7f7c568b913d.bin b/common/runtime/cache/f4/f4f83262244fba654b4a7f7c568b913d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f4/f4f83262244fba654b4a7f7c568b913d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f5/f5269cfcaf20118f4b6ca20d2a2777a6.bin b/common/runtime/cache/f5/f5269cfcaf20118f4b6ca20d2a2777a6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f5/f5269cfcaf20118f4b6ca20d2a2777a6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f5/f536156b3000bb3f6b6d8c095f7d9131.bin b/common/runtime/cache/f5/f536156b3000bb3f6b6d8c095f7d9131.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f5/f536156b3000bb3f6b6d8c095f7d9131.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f5/f539d8700bdbff6ebd82731b7687260b.bin b/common/runtime/cache/f5/f539d8700bdbff6ebd82731b7687260b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f5/f539d8700bdbff6ebd82731b7687260b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f5/f543403d7ceb034d8451dc78f5ecde1e.bin b/common/runtime/cache/f5/f543403d7ceb034d8451dc78f5ecde1e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f5/f543403d7ceb034d8451dc78f5ecde1e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f5/f550ee1334960abb8152d134c78c3430.bin b/common/runtime/cache/f5/f550ee1334960abb8152d134c78c3430.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f5/f550ee1334960abb8152d134c78c3430.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f5/f557dcfd3a145abb35d629a96f196108.bin b/common/runtime/cache/f5/f557dcfd3a145abb35d629a96f196108.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f5/f557dcfd3a145abb35d629a96f196108.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f5/f55cb87135236d6972d4ac63adb8e694.bin b/common/runtime/cache/f5/f55cb87135236d6972d4ac63adb8e694.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f5/f55cb87135236d6972d4ac63adb8e694.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f5/f57665292dcf4968c6740559b8173340.bin b/common/runtime/cache/f5/f57665292dcf4968c6740559b8173340.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f5/f57665292dcf4968c6740559b8173340.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f5/f577207968ccea80c6fb4229360b8a1f.bin b/common/runtime/cache/f5/f577207968ccea80c6fb4229360b8a1f.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f5/f577207968ccea80c6fb4229360b8a1f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f5/f5911ad3416511497f370b99b888b3c5.bin b/common/runtime/cache/f5/f5911ad3416511497f370b99b888b3c5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f5/f5911ad3416511497f370b99b888b3c5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f5/f5bc2a3b36d3e2a369c5c9bdad70d682.bin b/common/runtime/cache/f5/f5bc2a3b36d3e2a369c5c9bdad70d682.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f5/f5bc2a3b36d3e2a369c5c9bdad70d682.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f5/f5cf01f17c02f2f43f063542cd2afca6.bin b/common/runtime/cache/f5/f5cf01f17c02f2f43f063542cd2afca6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f5/f5cf01f17c02f2f43f063542cd2afca6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f5/f5d22c30583cba48b4e1d84f19e7fea2.bin b/common/runtime/cache/f5/f5d22c30583cba48b4e1d84f19e7fea2.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f5/f5d22c30583cba48b4e1d84f19e7fea2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f5/f5d8bf89b2860cd88fd4e2986e307310.bin b/common/runtime/cache/f5/f5d8bf89b2860cd88fd4e2986e307310.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f5/f5d8bf89b2860cd88fd4e2986e307310.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f5/f5e3b0a692a6cade879ec35054ccf217.bin b/common/runtime/cache/f5/f5e3b0a692a6cade879ec35054ccf217.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f5/f5e3b0a692a6cade879ec35054ccf217.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f5/f5ec8c7e70335c36d796a39d7234afa2.bin b/common/runtime/cache/f5/f5ec8c7e70335c36d796a39d7234afa2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f5/f5ec8c7e70335c36d796a39d7234afa2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f6/f60d899fb42d51e69812d027c7e5526d.bin b/common/runtime/cache/f6/f60d899fb42d51e69812d027c7e5526d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f6/f60d899fb42d51e69812d027c7e5526d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f6/f63c0d1f755904025e2df65930841c60.bin b/common/runtime/cache/f6/f63c0d1f755904025e2df65930841c60.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f6/f63c0d1f755904025e2df65930841c60.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f6/f63e8ded52c0b8cd1eea51ac3c27b9cc.bin b/common/runtime/cache/f6/f63e8ded52c0b8cd1eea51ac3c27b9cc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f6/f63e8ded52c0b8cd1eea51ac3c27b9cc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f6/f66ede18ca793f40698575576e9b66a5.bin b/common/runtime/cache/f6/f66ede18ca793f40698575576e9b66a5.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f6/f66ede18ca793f40698575576e9b66a5.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f6/f68988910907370d4ba5bf003d85bed8.bin b/common/runtime/cache/f6/f68988910907370d4ba5bf003d85bed8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f6/f68988910907370d4ba5bf003d85bed8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f6/f68c91c9bdf682d2125ad18bd4329d12.bin b/common/runtime/cache/f6/f68c91c9bdf682d2125ad18bd4329d12.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f6/f68c91c9bdf682d2125ad18bd4329d12.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f6/f6a8ea374ec00878930c8fba97df8bcd.bin b/common/runtime/cache/f6/f6a8ea374ec00878930c8fba97df8bcd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f6/f6a8ea374ec00878930c8fba97df8bcd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f6/f6c4670d4d7b2d1ef4545e82621561a8.bin b/common/runtime/cache/f6/f6c4670d4d7b2d1ef4545e82621561a8.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f6/f6c4670d4d7b2d1ef4545e82621561a8.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f6/f6cb9488887aa23c51947fdc91abb31e.bin b/common/runtime/cache/f6/f6cb9488887aa23c51947fdc91abb31e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f6/f6cb9488887aa23c51947fdc91abb31e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f6/f6d0dfe92bf142ed49a0ee9e22301869.bin b/common/runtime/cache/f6/f6d0dfe92bf142ed49a0ee9e22301869.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f6/f6d0dfe92bf142ed49a0ee9e22301869.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f7/f70999c9a44346f6adab10f77e216876.bin b/common/runtime/cache/f7/f70999c9a44346f6adab10f77e216876.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f7/f70999c9a44346f6adab10f77e216876.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f7/f7b6c2919849fad96089f323039a64fd.bin b/common/runtime/cache/f7/f7b6c2919849fad96089f323039a64fd.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f7/f7b6c2919849fad96089f323039a64fd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f7/f7bc316b97816cb6735a4b44b3494989.bin b/common/runtime/cache/f7/f7bc316b97816cb6735a4b44b3494989.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f7/f7bc316b97816cb6735a4b44b3494989.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f7/f7cef19ef9bd85835dff0dc1d4c6e468.bin b/common/runtime/cache/f7/f7cef19ef9bd85835dff0dc1d4c6e468.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f7/f7cef19ef9bd85835dff0dc1d4c6e468.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f7/f7cfcd2bdc7017da66b5739d4a455fc4.bin b/common/runtime/cache/f7/f7cfcd2bdc7017da66b5739d4a455fc4.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f7/f7cfcd2bdc7017da66b5739d4a455fc4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f7/f7db5884e8b0a8132849a25e56bc8b24.bin b/common/runtime/cache/f7/f7db5884e8b0a8132849a25e56bc8b24.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f7/f7db5884e8b0a8132849a25e56bc8b24.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f8/f84c70ed2602c5a10fc1c39d8ab14acd.bin b/common/runtime/cache/f8/f84c70ed2602c5a10fc1c39d8ab14acd.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f8/f84c70ed2602c5a10fc1c39d8ab14acd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f8/f86b11853e909e82ed48c49d422a1252.bin b/common/runtime/cache/f8/f86b11853e909e82ed48c49d422a1252.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f8/f86b11853e909e82ed48c49d422a1252.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f8/f882b82cf298d84b70daac47aea8f71a.bin b/common/runtime/cache/f8/f882b82cf298d84b70daac47aea8f71a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f8/f882b82cf298d84b70daac47aea8f71a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f8/f8c342b0d3bb42819a8cb2b3c6726243.bin b/common/runtime/cache/f8/f8c342b0d3bb42819a8cb2b3c6726243.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f8/f8c342b0d3bb42819a8cb2b3c6726243.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f8/f8d33fd7909a04e701c0473363cd7fbf.bin b/common/runtime/cache/f8/f8d33fd7909a04e701c0473363cd7fbf.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f8/f8d33fd7909a04e701c0473363cd7fbf.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f9/f910cd0f42e08e61c202182f0c63bbf9.bin b/common/runtime/cache/f9/f910cd0f42e08e61c202182f0c63bbf9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f9/f910cd0f42e08e61c202182f0c63bbf9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f9/f9127ac3be7d05755ae288876a6ccabc.bin b/common/runtime/cache/f9/f9127ac3be7d05755ae288876a6ccabc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f9/f9127ac3be7d05755ae288876a6ccabc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f9/f917890a5b41b1b0df88bb0333d6c87d.bin b/common/runtime/cache/f9/f917890a5b41b1b0df88bb0333d6c87d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f9/f917890a5b41b1b0df88bb0333d6c87d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f9/f939900ab48ff7193978b4ef0cacc6a2.bin b/common/runtime/cache/f9/f939900ab48ff7193978b4ef0cacc6a2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f9/f939900ab48ff7193978b4ef0cacc6a2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f9/f943584806163982c09ad0f4c83c5adb.bin b/common/runtime/cache/f9/f943584806163982c09ad0f4c83c5adb.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f9/f943584806163982c09ad0f4c83c5adb.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f9/f95d146059a32df7511162f187a8c1cd.bin b/common/runtime/cache/f9/f95d146059a32df7511162f187a8c1cd.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f9/f95d146059a32df7511162f187a8c1cd.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f9/f9815aae9f6f86fd1778b7da10edffa9.bin b/common/runtime/cache/f9/f9815aae9f6f86fd1778b7da10edffa9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f9/f9815aae9f6f86fd1778b7da10edffa9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f9/f9901128a537cc0802ba7f885e25f695.bin b/common/runtime/cache/f9/f9901128a537cc0802ba7f885e25f695.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f9/f9901128a537cc0802ba7f885e25f695.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f9/f99892aefcf0ba2fefd8e3b6b527d4aa.bin b/common/runtime/cache/f9/f99892aefcf0ba2fefd8e3b6b527d4aa.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f9/f99892aefcf0ba2fefd8e3b6b527d4aa.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f9/f99f713a0d7e3d57aa95e45b8d6ca903.bin b/common/runtime/cache/f9/f99f713a0d7e3d57aa95e45b8d6ca903.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f9/f99f713a0d7e3d57aa95e45b8d6ca903.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f9/f9aa448cdc020fdf8372545d79780a85.bin b/common/runtime/cache/f9/f9aa448cdc020fdf8372545d79780a85.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f9/f9aa448cdc020fdf8372545d79780a85.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f9/f9b99424901f078641e400cb56006939.bin b/common/runtime/cache/f9/f9b99424901f078641e400cb56006939.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f9/f9b99424901f078641e400cb56006939.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f9/f9d434ec536d684a926b879a4f968592.bin b/common/runtime/cache/f9/f9d434ec536d684a926b879a4f968592.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f9/f9d434ec536d684a926b879a4f968592.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f9/f9ea756032775399c9146b593da39981.bin b/common/runtime/cache/f9/f9ea756032775399c9146b593da39981.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f9/f9ea756032775399c9146b593da39981.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f9/f9eb88825af797c17b8056ada96299d3.bin b/common/runtime/cache/f9/f9eb88825af797c17b8056ada96299d3.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/f9/f9eb88825af797c17b8056ada96299d3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/f9/f9f4d824302fb1a0e8f5bd2dbddbbfec.bin b/common/runtime/cache/f9/f9f4d824302fb1a0e8f5bd2dbddbbfec.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/f9/f9f4d824302fb1a0e8f5bd2dbddbbfec.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fa/fa073f54b1335cd457bec574678326a0.bin b/common/runtime/cache/fa/fa073f54b1335cd457bec574678326a0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fa/fa073f54b1335cd457bec574678326a0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fa/fa23f62ff5070c30d751242125e2bc54.bin b/common/runtime/cache/fa/fa23f62ff5070c30d751242125e2bc54.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fa/fa23f62ff5070c30d751242125e2bc54.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fa/fa321c834cc9e1fc9f59f134d8ccc921.bin b/common/runtime/cache/fa/fa321c834cc9e1fc9f59f134d8ccc921.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fa/fa321c834cc9e1fc9f59f134d8ccc921.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fa/fa542611eb477923003574b0ba8d677d.bin b/common/runtime/cache/fa/fa542611eb477923003574b0ba8d677d.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fa/fa542611eb477923003574b0ba8d677d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fa/fa5aa0d95c3355edafe3a3788509c227.bin b/common/runtime/cache/fa/fa5aa0d95c3355edafe3a3788509c227.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fa/fa5aa0d95c3355edafe3a3788509c227.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fa/fa6e9fa45a15095122eba06315e16989.bin b/common/runtime/cache/fa/fa6e9fa45a15095122eba06315e16989.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fa/fa6e9fa45a15095122eba06315e16989.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fa/fa7620f4d875e58ef776ee32f07a5616.bin b/common/runtime/cache/fa/fa7620f4d875e58ef776ee32f07a5616.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/fa/fa7620f4d875e58ef776ee32f07a5616.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fa/fa804be372be3d37b81f47b05ad9b753.bin b/common/runtime/cache/fa/fa804be372be3d37b81f47b05ad9b753.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fa/fa804be372be3d37b81f47b05ad9b753.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fa/fa9e645f906d103d436442dfdaeaf57f.bin b/common/runtime/cache/fa/fa9e645f906d103d436442dfdaeaf57f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fa/fa9e645f906d103d436442dfdaeaf57f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fa/fae2cf27f7d9fc9df18fab6828b69e46.bin b/common/runtime/cache/fa/fae2cf27f7d9fc9df18fab6828b69e46.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fa/fae2cf27f7d9fc9df18fab6828b69e46.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fa/fafadbd2eef2f32478e6924e8e45fd8f.bin b/common/runtime/cache/fa/fafadbd2eef2f32478e6924e8e45fd8f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fa/fafadbd2eef2f32478e6924e8e45fd8f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fb/fb0973805c43cf355bda3de83760376b.bin b/common/runtime/cache/fb/fb0973805c43cf355bda3de83760376b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fb/fb0973805c43cf355bda3de83760376b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fb/fb3213ba104ced8c88c1a67f32365bd0.bin b/common/runtime/cache/fb/fb3213ba104ced8c88c1a67f32365bd0.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fb/fb3213ba104ced8c88c1a67f32365bd0.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fb/fb39e1d3fb13d9ae8c6e9fe3314562e9.bin b/common/runtime/cache/fb/fb39e1d3fb13d9ae8c6e9fe3314562e9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fb/fb39e1d3fb13d9ae8c6e9fe3314562e9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fb/fb534b36b14c08f45d9f002d9bbea86a.bin b/common/runtime/cache/fb/fb534b36b14c08f45d9f002d9bbea86a.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/fb/fb534b36b14c08f45d9f002d9bbea86a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fb/fb649067be2355dc92454bbf69204e2d.bin b/common/runtime/cache/fb/fb649067be2355dc92454bbf69204e2d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/fb/fb649067be2355dc92454bbf69204e2d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fb/fb6b4b7fb18be882c3c8fc889da8d49f.bin b/common/runtime/cache/fb/fb6b4b7fb18be882c3c8fc889da8d49f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fb/fb6b4b7fb18be882c3c8fc889da8d49f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fb/fb6ff02a0a619ab7cf63f0ac6bffa165.bin b/common/runtime/cache/fb/fb6ff02a0a619ab7cf63f0ac6bffa165.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fb/fb6ff02a0a619ab7cf63f0ac6bffa165.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fb/fb7275bfe9ad369d3db6905b15faa49f.bin b/common/runtime/cache/fb/fb7275bfe9ad369d3db6905b15faa49f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fb/fb7275bfe9ad369d3db6905b15faa49f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fb/fbdf0e938bcc5d8640b73751eaf0e8eb.bin b/common/runtime/cache/fb/fbdf0e938bcc5d8640b73751eaf0e8eb.bin new file mode 100644 index 0000000..811b646 --- /dev/null +++ b/common/runtime/cache/fb/fbdf0e938bcc5d8640b73751eaf0e8eb.bin @@ -0,0 +1 @@ +a:2:{i:0;s:19:"news/snova-ne-u-del";i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fb/fbe6b3108716e8ca20c7c692f64748fc.bin b/common/runtime/cache/fb/fbe6b3108716e8ca20c7c692f64748fc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fb/fbe6b3108716e8ca20c7c692f64748fc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fb/fbfdc08ca5e8f854dced09af08c3ea0c.bin b/common/runtime/cache/fb/fbfdc08ca5e8f854dced09af08c3ea0c.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fb/fbfdc08ca5e8f854dced09af08c3ea0c.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fc/fc12f1b90fbbf1cbd6b5a4513edbdf10.bin b/common/runtime/cache/fc/fc12f1b90fbbf1cbd6b5a4513edbdf10.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fc/fc12f1b90fbbf1cbd6b5a4513edbdf10.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fc/fc1497a8375e51236cbd889b926dd3a9.bin b/common/runtime/cache/fc/fc1497a8375e51236cbd889b926dd3a9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/fc/fc1497a8375e51236cbd889b926dd3a9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fc/fc34279efcae33cda9626fb2957e1a3b.bin b/common/runtime/cache/fc/fc34279efcae33cda9626fb2957e1a3b.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/fc/fc34279efcae33cda9626fb2957e1a3b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fc/fc7ecca88d054388c8d761a8e324db54.bin b/common/runtime/cache/fc/fc7ecca88d054388c8d761a8e324db54.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/fc/fc7ecca88d054388c8d761a8e324db54.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fc/fc88c4aa16d3a8eac50a8d7195fd5e31.bin b/common/runtime/cache/fc/fc88c4aa16d3a8eac50a8d7195fd5e31.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fc/fc88c4aa16d3a8eac50a8d7195fd5e31.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fc/fc95eebebc3dba2241f84a3522fa722e.bin b/common/runtime/cache/fc/fc95eebebc3dba2241f84a3522fa722e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/fc/fc95eebebc3dba2241f84a3522fa722e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fc/fc9cf83014cc03fe4b5ba19aa28fe718.bin b/common/runtime/cache/fc/fc9cf83014cc03fe4b5ba19aa28fe718.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/fc/fc9cf83014cc03fe4b5ba19aa28fe718.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fc/fcae20c22d247534c1fd7cb29a202b37.bin b/common/runtime/cache/fc/fcae20c22d247534c1fd7cb29a202b37.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fc/fcae20c22d247534c1fd7cb29a202b37.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fc/fcb51f9d1cd5f1b01feeed80d509422d.bin b/common/runtime/cache/fc/fcb51f9d1cd5f1b01feeed80d509422d.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/fc/fcb51f9d1cd5f1b01feeed80d509422d.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fc/fcc0bf4e6aa1959a9f48e78a45df8b90.bin b/common/runtime/cache/fc/fcc0bf4e6aa1959a9f48e78a45df8b90.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fc/fcc0bf4e6aa1959a9f48e78a45df8b90.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fc/fccdd750ab0f5d330cca3aa3526d9733.bin b/common/runtime/cache/fc/fccdd750ab0f5d330cca3aa3526d9733.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fc/fccdd750ab0f5d330cca3aa3526d9733.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fc/fcd29b807ea439d2a3fdade9c5962b0f.bin b/common/runtime/cache/fc/fcd29b807ea439d2a3fdade9c5962b0f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fc/fcd29b807ea439d2a3fdade9c5962b0f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fc/fcd5102e185a965da160a3b79fcbd360.bin b/common/runtime/cache/fc/fcd5102e185a965da160a3b79fcbd360.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/fc/fcd5102e185a965da160a3b79fcbd360.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fc/fce1161ed101e17c3f2273a2516b86e2.bin b/common/runtime/cache/fc/fce1161ed101e17c3f2273a2516b86e2.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/fc/fce1161ed101e17c3f2273a2516b86e2.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fd/fd07ea4d8c26f0cb796004c3cc59ea98.bin b/common/runtime/cache/fd/fd07ea4d8c26f0cb796004c3cc59ea98.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fd/fd07ea4d8c26f0cb796004c3cc59ea98.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fd/fd0987f0a885ccbfb6616f9aa89fbb56.bin b/common/runtime/cache/fd/fd0987f0a885ccbfb6616f9aa89fbb56.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fd/fd0987f0a885ccbfb6616f9aa89fbb56.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fd/fd13d374d8eb7ffbb20079e1f9fb89dc.bin b/common/runtime/cache/fd/fd13d374d8eb7ffbb20079e1f9fb89dc.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fd/fd13d374d8eb7ffbb20079e1f9fb89dc.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fd/fd168f4e4a801fe746b044153c7f1749.bin b/common/runtime/cache/fd/fd168f4e4a801fe746b044153c7f1749.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fd/fd168f4e4a801fe746b044153c7f1749.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fd/fd17ac754ea0f9ebed1a407f7fb92b33.bin b/common/runtime/cache/fd/fd17ac754ea0f9ebed1a407f7fb92b33.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/fd/fd17ac754ea0f9ebed1a407f7fb92b33.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fd/fd4beeb902b51a0c68d6095a80482631.bin b/common/runtime/cache/fd/fd4beeb902b51a0c68d6095a80482631.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fd/fd4beeb902b51a0c68d6095a80482631.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fd/fdcc6029d83745b9cd0ea9de3b3cdfc9.bin b/common/runtime/cache/fd/fdcc6029d83745b9cd0ea9de3b3cdfc9.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fd/fdcc6029d83745b9cd0ea9de3b3cdfc9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fd/fdd17c014a622f7d5bd66db29d071974.bin b/common/runtime/cache/fd/fdd17c014a622f7d5bd66db29d071974.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fd/fdd17c014a622f7d5bd66db29d071974.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fd/fddb4f1a3b89240e2a12760362d9076f.bin b/common/runtime/cache/fd/fddb4f1a3b89240e2a12760362d9076f.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fd/fddb4f1a3b89240e2a12760362d9076f.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fd/fde4752c48e84bc28e74bda6727a3d01.bin b/common/runtime/cache/fd/fde4752c48e84bc28e74bda6727a3d01.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fd/fde4752c48e84bc28e74bda6727a3d01.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fd/fded911a134221b50da9154d887ca47e.bin b/common/runtime/cache/fd/fded911a134221b50da9154d887ca47e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fd/fded911a134221b50da9154d887ca47e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fe/fe2365f8d295d00ba6eedd00dbfb9b51.bin b/common/runtime/cache/fe/fe2365f8d295d00ba6eedd00dbfb9b51.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fe/fe2365f8d295d00ba6eedd00dbfb9b51.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fe/fe337cf0cc9a7276674d8e0462c39ca9.bin b/common/runtime/cache/fe/fe337cf0cc9a7276674d8e0462c39ca9.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/fe/fe337cf0cc9a7276674d8e0462c39ca9.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fe/fe451d84e766d0da019cde39b2518632.bin b/common/runtime/cache/fe/fe451d84e766d0da019cde39b2518632.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fe/fe451d84e766d0da019cde39b2518632.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fe/fe4dbc97e42409873f25cc7b41de6ab6.bin b/common/runtime/cache/fe/fe4dbc97e42409873f25cc7b41de6ab6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fe/fe4dbc97e42409873f25cc7b41de6ab6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fe/fe7d810cf04b58d8c2c5f6efbf00b896.bin b/common/runtime/cache/fe/fe7d810cf04b58d8c2c5f6efbf00b896.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fe/fe7d810cf04b58d8c2c5f6efbf00b896.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fe/fe84a6cbdc71b7fb5fc1d830c798aa31.bin b/common/runtime/cache/fe/fe84a6cbdc71b7fb5fc1d830c798aa31.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fe/fe84a6cbdc71b7fb5fc1d830c798aa31.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fe/fe887894d76654fbe9ac79873d50ac6e.bin b/common/runtime/cache/fe/fe887894d76654fbe9ac79873d50ac6e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fe/fe887894d76654fbe9ac79873d50ac6e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fe/fe8f79b53ec06fd4342dcfb55722314a.bin b/common/runtime/cache/fe/fe8f79b53ec06fd4342dcfb55722314a.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fe/fe8f79b53ec06fd4342dcfb55722314a.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fe/fe9c101ab2f23c5574a5e0f72276d3e6.bin b/common/runtime/cache/fe/fe9c101ab2f23c5574a5e0f72276d3e6.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fe/fe9c101ab2f23c5574a5e0f72276d3e6.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fe/fecc56a89d630c4f97e0b1bf33146a11.bin b/common/runtime/cache/fe/fecc56a89d630c4f97e0b1bf33146a11.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fe/fecc56a89d630c4f97e0b1bf33146a11.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fe/feccfe750d44dedce31981d25cd47d69.bin b/common/runtime/cache/fe/feccfe750d44dedce31981d25cd47d69.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fe/feccfe750d44dedce31981d25cd47d69.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/fe/fef10a195ffa55604b550d4048b1b46e.bin b/common/runtime/cache/fe/fef10a195ffa55604b550d4048b1b46e.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/fe/fef10a195ffa55604b550d4048b1b46e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ff/ff2841897c8d9ed35f4f4852ec384c41.bin b/common/runtime/cache/ff/ff2841897c8d9ed35f4f4852ec384c41.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ff/ff2841897c8d9ed35f4f4852ec384c41.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ff/ff2c45d458976a211ae82fd1a8dcda2b.bin b/common/runtime/cache/ff/ff2c45d458976a211ae82fd1a8dcda2b.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ff/ff2c45d458976a211ae82fd1a8dcda2b.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ff/ff39c21693d33eee9eaafb959d6c1220.bin b/common/runtime/cache/ff/ff39c21693d33eee9eaafb959d6c1220.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ff/ff39c21693d33eee9eaafb959d6c1220.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ff/ff41d2ba4cf57117d3a1ac97364b17c3.bin b/common/runtime/cache/ff/ff41d2ba4cf57117d3a1ac97364b17c3.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ff/ff41d2ba4cf57117d3a1ac97364b17c3.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ff/ff47c5d8e860ced77bcde0e81faa98ea.bin b/common/runtime/cache/ff/ff47c5d8e860ced77bcde0e81faa98ea.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ff/ff47c5d8e860ced77bcde0e81faa98ea.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ff/ff51642ee9481c715da2e65e6b40d6d4.bin b/common/runtime/cache/ff/ff51642ee9481c715da2e65e6b40d6d4.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ff/ff51642ee9481c715da2e65e6b40d6d4.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ff/ff6232a40a8658f5f866765b1cc6d342.bin b/common/runtime/cache/ff/ff6232a40a8658f5f866765b1cc6d342.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ff/ff6232a40a8658f5f866765b1cc6d342.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ff/ff686acf61c943a0a64d35c8725ede50.bin b/common/runtime/cache/ff/ff686acf61c943a0a64d35c8725ede50.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ff/ff686acf61c943a0a64d35c8725ede50.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ff/ff93a2761aac44e5e088bfebc677f83e.bin b/common/runtime/cache/ff/ff93a2761aac44e5e088bfebc677f83e.bin new file mode 100644 index 0000000..e17a872 --- /dev/null +++ b/common/runtime/cache/ff/ff93a2761aac44e5e088bfebc677f83e.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:3:"tid";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ff/ffaaddbcc6570ac09624fe577a9eb152.bin b/common/runtime/cache/ff/ffaaddbcc6570ac09624fe577a9eb152.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ff/ffaaddbcc6570ac09624fe577a9eb152.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/cache/ff/ffd84a88af126340099f832f4a4f79a1.bin b/common/runtime/cache/ff/ffd84a88af126340099f832f4a4f79a1.bin new file mode 100644 index 0000000..bb5e325 --- /dev/null +++ b/common/runtime/cache/ff/ffd84a88af126340099f832f4a4f79a1.bin @@ -0,0 +1 @@ +a:2:{i:0;a:2:{s:2:"id";N;s:4:"path";N;}i:1;N;} \ No newline at end of file diff --git a/common/runtime/mail/20180211-204419-7974-3045.eml b/common/runtime/mail/20180211-204419-7974-3045.eml new file mode 100644 index 0000000..69b55c8 --- /dev/null +++ b/common/runtime/mail/20180211-204419-7974-3045.eml @@ -0,0 +1,10 @@ +Message-ID: <20189f40525bb5a2e980be9f0962783e@morework.local> +Date: Sun, 11 Feb 2018 20:44:19 +0000 +Subject: 234 +From: +To: admin@example.com +MIME-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +Content-Transfer-Encoding: quoted-printable + +345 \ No newline at end of file diff --git a/common/runtime/mail/20180211-204542-9675-3097.eml b/common/runtime/mail/20180211-204542-9675-3097.eml new file mode 100644 index 0000000..23576fa --- /dev/null +++ b/common/runtime/mail/20180211-204542-9675-3097.eml @@ -0,0 +1,10 @@ +Message-ID: <02451d183d7c136e702e1c2c5da2b33a@morework.local> +Date: Sun, 11 Feb 2018 20:45:42 +0000 +Subject: 234 +From: +To: admin@example.com +MIME-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +Content-Transfer-Encoding: quoted-printable + +sdsfgsf \ No newline at end of file diff --git a/common/runtime/mail/20180211-204830-4001-4976.eml b/common/runtime/mail/20180211-204830-4001-4976.eml new file mode 100644 index 0000000..2ccb3db --- /dev/null +++ b/common/runtime/mail/20180211-204830-4001-4976.eml @@ -0,0 +1,10 @@ +Message-ID: <87697b396f9ad35d8ff3bed0a033fd4e@morework.local> +Date: Sun, 11 Feb 2018 20:48:30 +0000 +Subject: 234 +From: +To: admin@example.com +MIME-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +Content-Transfer-Encoding: quoted-printable + +555 \ No newline at end of file diff --git a/common/runtime/mail/20180211-204904-0101-1020.eml b/common/runtime/mail/20180211-204904-0101-1020.eml new file mode 100644 index 0000000..e970b90 --- /dev/null +++ b/common/runtime/mail/20180211-204904-0101-1020.eml @@ -0,0 +1,10 @@ +Message-ID: +Date: Sun, 11 Feb 2018 20:49:03 +0000 +Subject: Test Subj +From: +To: admin@example.com +MIME-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +Content-Transfer-Encoding: quoted-printable + +dscsdc \ No newline at end of file diff --git a/common/runtime/queue/index.data b/common/runtime/queue/index.data new file mode 100644 index 0000000..b7576f8 --- /dev/null +++ b/common/runtime/queue/index.data @@ -0,0 +1 @@ +a:3:{s:6:"lastId";i:12;s:7:"waiting";a:1:{i:0;a:3:{i:0;i:12;i:1;i:300;i:2;i:0;}}s:8:"reserved";a:0:{}} \ No newline at end of file diff --git a/common/runtime/queue/job12.data b/common/runtime/queue/job12.data new file mode 100644 index 0000000..a28b237 Binary files /dev/null and b/common/runtime/queue/job12.data differ diff --git a/common/tests/_bootstrap.php b/common/tests/_bootstrap.php new file mode 100644 index 0000000..3513a6f --- /dev/null +++ b/common/tests/_bootstrap.php @@ -0,0 +1,9 @@ + 'bayer.hudson', + 'auth_key' => 'HP187Mvq7Mmm3CTU80dLkGmni_FUH_lR', + //password_0 + 'password_hash' => '$2y$13$EjaPFBnZOQsHdGuHI.xvhuDp1fHpo8hKRSk6yshqa9c5EG8s3C3lO', + 'password_reset_token' => 'ExzkCOaYc1L8IOBs4wdTGGbgNiG3Wz1I_1402312317', + 'created_at' => '1402312317', + 'updated_at' => '1402312317', + 'email' => 'nicole.paucek@schultz.info', + ], +]; diff --git a/common/tests/_output/.gitignore b/common/tests/_output/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/common/tests/_output/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/common/tests/_support/.gitignore b/common/tests/_support/.gitignore new file mode 100644 index 0000000..36e264c --- /dev/null +++ b/common/tests/_support/.gitignore @@ -0,0 +1 @@ +_generated diff --git a/common/tests/_support/UnitTester.php b/common/tests/_support/UnitTester.php new file mode 100644 index 0000000..91cb34f --- /dev/null +++ b/common/tests/_support/UnitTester.php @@ -0,0 +1,25 @@ + [ + 'class' => UserFixture::className(), + 'dataFile' => codecept_data_dir() . 'user.php' + ] + ]; + } + + public function testLoginNoUser() + { + $form = new \core\forms\auth\LoginForm(); + $form->username = 'not_existing_username'; + $form->password = 'not_existing_password'; + + $model = new User($form); + + //$as = new AuthService(new UserRepository(new SimpleEventDispatcher(null, null))); + //$as->auth($form); + expect('model should not login user', Yii::$app->user->login(new Identity($model)))->false(); + expect('user should not be logged in', Yii::$app->user->isGuest)->true(); + } + + public function testLoginWrongPassword() + { + $model = new LoginForm([ + 'username' => 'bayer.hudson', + 'password' => 'wrong_password', + ]); + + expect('model should not login user', $model->login())->false(); + expect('error message should be set', $model->errors)->hasKey('password'); + expect('user should not be logged in', Yii::$app->user->isGuest)->true(); + } + + public function testLoginCorrect() + { + $model = new LoginForm([ + 'username' => 'bayer.hudson', + 'password' => 'password_0', + ]); + + expect('model should login user', $model->login())->true(); + expect('error message should not be set', $model->errors)->hasntKey('password'); + expect('user should be logged in', Yii::$app->user->isGuest)->false(); + } +} diff --git a/common/widgets/Alert.php b/common/widgets/Alert.php new file mode 100644 index 0000000..2893182 --- /dev/null +++ b/common/widgets/Alert.php @@ -0,0 +1,74 @@ +session->setFlash('error', 'This is the message'); + * Yii::$app->session->setFlash('success', 'This is the message'); + * Yii::$app->session->setFlash('info', 'This is the message'); + * ``` + * + * Multiple messages could be set as follows: + * + * ```php + * Yii::$app->session->setFlash('error', ['Error 1', 'Error 2']); + * ``` + * + * @author Kartik Visweswaran + * @author Alexander Makarov + */ +class Alert extends \yii\bootstrap\Widget +{ + /** + * @var array the alert types configuration for the flash messages. + * This array is setup as $key => $value, where: + * - key: the name of the session flash variable + * - value: the bootstrap alert type (i.e. danger, success, info, warning) + */ + public $alertTypes = [ + 'error' => 'alert-danger', + 'danger' => 'alert-danger', + 'success' => 'alert-success', + 'info' => 'alert-info', + 'warning' => 'alert-warning' + ]; + /** + * @var array the options for rendering the close button tag. + * Array will be passed to [[\yii\bootstrap\Alert::closeButton]]. + */ + public $closeButton = []; + + /** + * {@inheritdoc} + */ + public function run() + { + $session = Yii::$app->session; + $flashes = $session->getAllFlashes(); + $appendClass = isset($this->options['class']) ? ' ' . $this->options['class'] : ''; + + foreach ($flashes as $type => $flash) { + if (!isset($this->alertTypes[$type])) { + continue; + } + + foreach ((array) $flash as $i => $message) { + echo \yii\bootstrap\Alert::widget([ + 'body' => $message, + 'closeButton' => $this->closeButton, + 'options' => array_merge($this->options, [ + 'id' => $this->getId() . '-' . $type . '-' . $i, + 'class' => $this->alertTypes[$type] . $appendClass, + ]), + ]); + } + + $session->removeFlash($type); + } + } +} diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..709bbff --- /dev/null +++ b/composer.json @@ -0,0 +1,55 @@ +{ + "name": "yiisoft/yii2-app-advanced", + "description": "Yii 2 Advanced Project Template", + "keywords": ["yii2", "framework", "advanced", "project template"], + "homepage": "http://www.yiiframework.com/", + "type": "project", + "license": "BSD-3-Clause", + "support": { + "issues": "https://github.com/yiisoft/yii2/issues?state=open", + "forum": "http://www.yiiframework.com/forum/", + "wiki": "http://www.yiiframework.com/wiki/", + "irc": "irc://irc.freenode.net/yii", + "source": "https://github.com/yiisoft/yii2" + }, + "minimum-stability": "stable", + "require": { + "php": ">=5.4.0", + "yiisoft/yii2": "~2.0.6", + "yiisoft/yii2-bootstrap": "~2.0.0", + "yiisoft/yii2-swiftmailer": "~2.0.0 || ~2.1.0", + "la-haute-societe/yii2-save-relations-behavior": "*", + "paulzi/yii2-nested-sets": "^1.0", + "league/flysystem": "^1.0", + "yii-dream-team/yii2-upload-behavior": "*", + "mihaildev/yii2-ckeditor": "*", + "mihaildev/yii2-elfinder": "*", + "filsh/yii2-oauth2-server": "*", + "fishvision/yii2-migrate": "*", + "dmstr/yii2-adminlte-asset": "^2.1", + "yiisoft/yii2-queue": "^2.0", + "yiisoft/yii2-redis": "^2.0", + "yiisoft/yii2-authclient": "^2.1", + "kartik-v/yii2-widgets": "*", + "kartik-v/yii2-field-range": "*", + "bower-asset/jquery-migrate": "^3.0", + "bower-asset/jquery-cookie": "^1.4", + "drewm/mailchimp-api": "^2.4" + }, + "require-dev": { + "yiisoft/yii2-debug": "~2.0.0", + "yiisoft/yii2-gii": "~2.0.0", + "yiisoft/yii2-faker": "~2.0.0", + "codeception/base": "^2.2.3", + "codeception/verify": "~0.3.1" + }, + "config": { + "process-timeout": 1800 + }, + "repositories": [ + { + "type": "composer", + "url": "https://asset-packagist.org" + } + ] +} diff --git a/console/config/.gitignore b/console/config/.gitignore new file mode 100644 index 0000000..20da318 --- /dev/null +++ b/console/config/.gitignore @@ -0,0 +1,2 @@ +main-local.php +params-local.php \ No newline at end of file diff --git a/console/config/bootstrap.php b/console/config/bootstrap.php new file mode 100644 index 0000000..b3d9bbc --- /dev/null +++ b/console/config/bootstrap.php @@ -0,0 +1 @@ + 'app-console', + 'basePath' => dirname(__DIR__), + 'bootstrap' => [ + 'log', + 'common\bootstrap\SetUp', + 'queue', + ], + 'controllerNamespace' => 'console\controllers', + 'aliases' => [ + '@bower' => '@vendor/bower-asset', + '@npm' => '@vendor/npm-asset', + ], + 'controllerMap' => [ + 'fixture' => [ + 'class' => 'yii\console\controllers\FixtureController', + 'namespace' => 'common\fixtures', + ], + 'migrate' => [ + 'class' => 'fishvision\migrate\controllers\MigrateController', + 'autoDiscover' => true, + 'migrationPaths' => [ + '@vendor/yiisoft/yii2/rbac/migrations', + ], + ], + ], + 'components' => [ + 'log' => [ + 'targets' => [ + [ + 'class' => 'yii\log\FileTarget', + 'levels' => ['error', 'warning'], + ], + ], + ], + 'backendUrlManager' => require __DIR__ . '/../../backend/config/urlManager.php', + 'frontendUrlManager' => require __DIR__ . '/../../frontend/config/urlManager.php', + ], + 'params' => $params, +]; diff --git a/console/config/params.php b/console/config/params.php new file mode 100644 index 0000000..a94ef60 --- /dev/null +++ b/console/config/params.php @@ -0,0 +1,4 @@ + 'info@zertex.ru', +]; diff --git a/console/controllers/.gitkeep b/console/controllers/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/console/controllers/UserController.php b/console/controllers/UserController.php new file mode 100644 index 0000000..61bf4ce --- /dev/null +++ b/console/controllers/UserController.php @@ -0,0 +1,72 @@ +service = $service; + } + + public function actionAdd() + { + $username = $this->prompt('Username:', ['required' => true]); + $email = $this->prompt('Email:', ['required' => true]); + $password = $this->prompt('Password:', ['required' => true]); + $role = $this->select('Role:', ArrayHelper::map(Yii::$app->authManager->getRoles(), 'name', 'description')); + + //$this->findModel($username, $email); + + $form = new UserForm(); + $form->username = $username; + $form->email = $email; + $form->password = $password; + $form->role = $role; + + if ($form->validate()) + { + $this->service->create($form); + $this->stdout('Done!' . PHP_EOL); + return; + } + + $this->stdout('Errors found!' . PHP_EOL); + foreach ($form->errors as $error) + { + $this->stdout(is_string($error) ? $error : $error[0] . PHP_EOL); + } + //$this->stdout(print_r($form->errors, true) . PHP_EOL); + + + + /* + $user = User::create($username, $email, $phone, $password); + $user->save();*/ + } + + private function findModel(string $username, string $email): void + { + if ($model = User::find()->where(['username' => $username])->orWhere(['email' => $email])->one()) { + throw new Exception('User is already exists.'); + } + } +} \ No newline at end of file diff --git a/console/migrations/m121026_055200_exec_rbac_migrations.php b/console/migrations/m121026_055200_exec_rbac_migrations.php new file mode 100644 index 0000000..9d8a195 --- /dev/null +++ b/console/migrations/m121026_055200_exec_rbac_migrations.php @@ -0,0 +1,30 @@ + $this->db]))->up(); + (new m170907_052038_rbac_add_index_on_auth_assignment_user_id(['db' => $this->db]))->up(); + } + + /** + * {@inheritdoc} + */ + public function safeDown() + { + (new m170907_052038_rbac_add_index_on_auth_assignment_user_id(['db' => $this->db]))->up(); + (new m140506_102106_rbac_init(['db' => $this->db]))->up(); + } +} diff --git a/console/migrations/m130524_201442_init.php b/console/migrations/m130524_201442_init.php new file mode 100644 index 0000000..6b649f4 --- /dev/null +++ b/console/migrations/m130524_201442_init.php @@ -0,0 +1,33 @@ +db->driverName === 'mysql') { + // http://stackoverflow.com/questions/766809/whats-the-difference-between-utf8-general-ci-and-utf8-unicode-ci + $tableOptions = 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB'; + } + + $this->createTable('{{%user}}', [ + 'id' => $this->primaryKey(), + 'username' => $this->string()->notNull()->unique(), + 'auth_key' => $this->string(32)->notNull(), + 'password_hash' => $this->string()->notNull(), + 'password_reset_token' => $this->string()->unique(), + 'email' => $this->string()->notNull()->unique(), + + 'status' => $this->smallInteger()->notNull()->defaultValue(10), + 'created_at' => $this->integer()->notNull(), + 'updated_at' => $this->integer()->notNull(), + ], $tableOptions); + } + + public function down() + { + $this->dropTable('{{%user}}'); + } +} diff --git a/console/migrations/m180107_203247_add_user_email_confirm_token.php b/console/migrations/m180107_203247_add_user_email_confirm_token.php new file mode 100644 index 0000000..5d3add9 --- /dev/null +++ b/console/migrations/m180107_203247_add_user_email_confirm_token.php @@ -0,0 +1,19 @@ +addColumn('{{%user}}', 'email_confirm_token', $this->string()->unique()->after('email')); + } + + public function down() + { + $this->dropColumn('{{%user}}', 'email_confirm_token'); + } +} diff --git a/console/migrations/m180107_203344_rename_user_table.php b/console/migrations/m180107_203344_rename_user_table.php new file mode 100644 index 0000000..3863a98 --- /dev/null +++ b/console/migrations/m180107_203344_rename_user_table.php @@ -0,0 +1,19 @@ +renameTable('{{%user}}', '{{%users}}'); + } + + public function down() + { + $this->renameTable('{{%users}}', '{{%user}}'); + } +} diff --git a/console/migrations/m180107_203500_create_user_networks_table.php b/console/migrations/m180107_203500_create_user_networks_table.php new file mode 100644 index 0000000..3f9109e --- /dev/null +++ b/console/migrations/m180107_203500_create_user_networks_table.php @@ -0,0 +1,32 @@ +createTable('{{%user_networks}}', [ + 'id' => $this->primaryKey(), + 'user_id' => $this->integer()->notNull(), + 'identity' => $this->string()->notNull(), + 'network' => $this->string(16)->notNull(), + ], $tableOptions); + + $this->createIndex('{{%idx-user_networks-identity-name}}', '{{%user_networks}}', ['identity', 'network'], true); + + $this->createIndex('{{%idx-user_networks-user_id}}', '{{%user_networks}}', 'user_id'); + + $this->addForeignKey('{{%fk-user_networks-user_id}}', '{{%user_networks}}', 'user_id', '{{%users}}', 'id', 'CASCADE'); + } + + public function down() + { + $this->dropTable('{{%user_networks}}'); + } +} diff --git a/console/migrations/m180107_203555_change_users_field_requirements.php b/console/migrations/m180107_203555_change_users_field_requirements.php new file mode 100644 index 0000000..93d9a4b --- /dev/null +++ b/console/migrations/m180107_203555_change_users_field_requirements.php @@ -0,0 +1,23 @@ +alterColumn('{{%users}}', 'username', $this->string()); + $this->alterColumn('{{%users}}', 'password_hash', $this->string()); + $this->alterColumn('{{%users}}', 'email', $this->string()); + } + + public function down() + { + $this->alterColumn('{{%users}}', 'username', $this->string()->notNull()); + $this->alterColumn('{{%users}}', 'password_hash', $this->string()->notNull()); + $this->alterColumn('{{%users}}', 'email', $this->string()->notNull()); + } +} diff --git a/console/migrations/m180107_204200_change_auth_assignments_table.php b/console/migrations/m180107_204200_change_auth_assignments_table.php new file mode 100644 index 0000000..01228c1 --- /dev/null +++ b/console/migrations/m180107_204200_change_auth_assignments_table.php @@ -0,0 +1,27 @@ +alterColumn('{{%auth_assignments}}', 'user_id', $this->integer()->notNull()); + + $this->createIndex('{{%idx-auth_assignments-user_id}}', '{{%auth_assignments}}', 'user_id'); + + $this->addForeignKey('{{%fk-auth_assignments-user_id}}', '{{%auth_assignments}}', 'user_id', '{{%users}}', 'id', 'CASCADE'); + } + + public function down() + { + $this->dropForeignKey('{{%fk-auth_assignments-user_id}}', '{{%auth_assignments}}'); + + $this->dropIndex('{{%idx-auth_assignments-user_id}}', '{{%auth_assignments}}'); + + $this->alterColumn('{{%auth_assignments}}', 'user_id', $this->string(64)->notNull()); + } +} diff --git a/console/migrations/m180107_204310_add_user_roles.php b/console/migrations/m180107_204310_add_user_roles.php new file mode 100644 index 0000000..dd9d3a4 --- /dev/null +++ b/console/migrations/m180107_204310_add_user_roles.php @@ -0,0 +1,28 @@ +batchInsert('{{%auth_items}}', ['type', 'name', 'description'], [ + [1, 'user', 'User'], + [1, 'admin', 'Admin'], + ]); + + $this->batchInsert('{{%auth_item_children}}', ['parent', 'child'], [ + ['admin', 'user'], + ]); + + $this->execute('INSERT INTO {{%auth_assignments}} (item_name, user_id) SELECT \'user\', u.id FROM {{%users}} u ORDER BY u.id'); + } + + public function down() + { + $this->delete('{{%auth_items}}', ['name' => ['user', 'admin']]); + } +} diff --git a/console/migrations/m180107_210401_create_pages_table.php b/console/migrations/m180107_210401_create_pages_table.php new file mode 100644 index 0000000..8b2a3c9 --- /dev/null +++ b/console/migrations/m180107_210401_create_pages_table.php @@ -0,0 +1,43 @@ +createTable('{{%pages}}', [ + 'id' => $this->primaryKey(), + 'title' => $this->string()->notNull(), + 'slug' => $this->string()->notNull(), + 'content' => 'MEDIUMTEXT', + 'meta_json' => $this->text()->notNull(), + 'lft' => $this->integer()->notNull(), + 'rgt' => $this->integer()->notNull(), + 'depth' => $this->integer()->notNull(), + ], $tableOptions); + + $this->createIndex('{{%idx-pages-slug}}', '{{%pages}}', 'slug', true); + + $this->insert('{{%pages}}', [ + 'id' => 1, + 'title' => '', + 'slug' => 'root', + 'content' => null, + 'meta_json' => '{}', + 'lft' => 1, + 'rgt' => 2, + 'depth' => 0, + ]); + } + + public function down() + { + $this->dropTable('{{%pages}}'); + } +} diff --git a/console/migrations/m180110_121107_create_post_types_table.php b/console/migrations/m180110_121107_create_post_types_table.php new file mode 100644 index 0000000..df9852f --- /dev/null +++ b/console/migrations/m180110_121107_create_post_types_table.php @@ -0,0 +1,32 @@ +createTable('{{%post_types}}', [ + 'id' => $this->primaryKey(), + 'name' => $this->string(64)->notNull(), //a-z + 'singular' => $this->string(64)->notNull(), // в ед.ч. + 'plural' => $this->string(64)->notNull(), // во мн.ч. + ], $tableOptions); + } + + /** + * @inheritdoc + */ + public function down() + { + $this->dropTable('{{%post_types}}'); + } +} diff --git a/console/migrations/m180110_121109_create_post_tags_table.php b/console/migrations/m180110_121109_create_post_tags_table.php new file mode 100644 index 0000000..b3cd27f --- /dev/null +++ b/console/migrations/m180110_121109_create_post_tags_table.php @@ -0,0 +1,30 @@ +createTable('{{%post_tags}}', [ + 'id' => $this->primaryKey(), + 'name' => $this->string()->notNull(), + 'slug' => $this->string()->notNull(), + 'type_id' => $this->integer()->notNull(), + ], $tableOptions); + + $this->createIndex('{{%idx-post_tags-slug}}', '{{%post_tags}}', 'slug', true); + $this->createIndex('{{%idx-post_tags-type_id}}', '{{%post_tags}}', 'type_id'); + $this->addForeignKey('{{%fk-post_tags-type_id_id}}', '{{%post_tags}}', 'type_id', '{{%post_types}}', 'id'); + } + + public function down() + { + $this->dropTable('{{%post_tags}}'); + } +} diff --git a/console/migrations/m180110_121335_create_post_categories_table.php b/console/migrations/m180110_121335_create_post_categories_table.php new file mode 100644 index 0000000..cfa9f5f --- /dev/null +++ b/console/migrations/m180110_121335_create_post_categories_table.php @@ -0,0 +1,32 @@ +createTable('{{%post_categories}}', [ + 'id' => $this->primaryKey(), + 'name' => $this->string()->notNull(), + 'slug' => $this->string()->notNull(), + 'title' => $this->string(), + 'description' => $this->text(), + 'sort' => $this->integer()->notNull(), + 'meta_json' => 'LONGTEXT NOT NULL', + 'type_id' => $this->integer()->notNull(), + ], $tableOptions); + + $this->createIndex('{{%idx-post_categories-slug}}', '{{%post_categories}}', 'slug', true); + } + + public function down() + { + $this->dropTable('{{%post_categories}}'); + } +} diff --git a/console/migrations/m180110_121552_create_posts_table.php b/console/migrations/m180110_121552_create_posts_table.php new file mode 100644 index 0000000..7fdba55 --- /dev/null +++ b/console/migrations/m180110_121552_create_posts_table.php @@ -0,0 +1,44 @@ +createTable('{{%posts}}', [ + 'id' => $this->primaryKey(), + 'category_id' => $this->integer()->notNull(), + 'published_at' => $this->integer()->unsigned()->notNull(), + 'created_at' => $this->integer()->unsigned()->notNull(), + 'updated_at' => $this->integer()->unsigned()->notNull(), + 'title' => $this->string()->notNull(), + 'description' => $this->text(), + 'content' => 'MEDIUMTEXT', + 'image' => $this->string(), + 'video' => $this->string(), + 'status' => $this->integer()->notNull(), + 'meta_json' => 'TEXT NOT NULL', + 'comments_count' => $this->integer()->notNull()->defaultValue(0), + 'type_id' => $this->integer()->notNull(), + 'views' => $this->integer()->notNull()->defaultValue(0), + 'slug' => $this->string()->notNull(), + ], $tableOptions); + + $this->createIndex('{{%idx-posts-category_id}}', '{{%posts}}', 'category_id'); + $this->createIndex('{{%idx-posts-type_id}}', '{{%posts}}', 'type_id'); + $this->createIndex('{{%idx-posts-slug}}', '{{%posts}}', 'slug', true); + $this->addForeignKey('{{%fk-posts-category_id}}', '{{%posts}}', 'category_id', '{{%post_categories}}', 'id'); + $this->addForeignKey('{{%fk-posts-type_id_id}}', '{{%posts}}', 'type_id', '{{%post_types}}', 'id'); + } + + public function down() + { + $this->dropTable('{{%posts}}'); + } +} diff --git a/console/migrations/m180110_132623_create_post_tag_assignments_table.php b/console/migrations/m180110_132623_create_post_tag_assignments_table.php new file mode 100644 index 0000000..5c838b1 --- /dev/null +++ b/console/migrations/m180110_132623_create_post_tag_assignments_table.php @@ -0,0 +1,32 @@ +createTable('{{%post_tag_assignments}}', [ + 'post_id' => $this->integer()->notNull(), + 'tag_id' => $this->integer()->notNull(), + ], $tableOptions); + + $this->addPrimaryKey('{{%pk-post_tag_assignments}}', '{{%post_tag_assignments}}', ['post_id', 'tag_id']); + + $this->createIndex('{{%idx-post_tag_assignments-post_id}}', '{{%post_tag_assignments}}', 'post_id'); + $this->createIndex('{{%idx-post_tag_assignments-tag_id}}', '{{%post_tag_assignments}}', 'tag_id'); + + $this->addForeignKey('{{%fk-post_tag_assignments-post_id}}', '{{%post_tag_assignments}}', 'post_id', '{{%posts}}', 'id', 'CASCADE', 'RESTRICT'); + $this->addForeignKey('{{%fk-post_tag_assignments-tag_id}}', '{{%post_tag_assignments}}', 'tag_id', '{{%post_tags}}', 'id', 'CASCADE', 'RESTRICT'); + } + + public function down() + { + $this->dropTable('{{%post_tag_assignments}}'); + } +} diff --git a/console/migrations/m180110_140332_create_post_comments_table.php b/console/migrations/m180110_140332_create_post_comments_table.php new file mode 100644 index 0000000..a9a655c --- /dev/null +++ b/console/migrations/m180110_140332_create_post_comments_table.php @@ -0,0 +1,43 @@ +createTable('{{%post_comments}}', [ + 'id' => $this->primaryKey(), + 'post_id' => $this->integer()->notNull(), + 'user_id' => $this->integer()->notNull(), + 'parent_id' => $this->integer(), + 'created_at' => $this->integer()->unsigned()->notNull(), + 'text' => $this->text()->notNull(), + 'active' => $this->boolean()->notNull(), + ], $tableOptions); + + $this->createIndex('{{%idx-post_comments-post_id}}', '{{%post_comments}}', 'post_id'); + $this->createIndex('{{%idx-post_comments-user_id}}', '{{%post_comments}}', 'user_id'); + $this->createIndex('{{%idx-post_comments-parent_id}}', '{{%post_comments}}', 'parent_id'); + + $this->addForeignKey('{{%fk-post_comments-post_id}}', '{{%post_comments}}', 'post_id', '{{%posts}}', 'id', 'CASCADE'); + $this->addForeignKey('{{%fk-post_comments-user_id}}', '{{%post_comments}}', 'user_id', '{{%users}}', 'id', 'CASCADE'); + $this->addForeignKey('{{%fk-post_comments-parent_id}}', '{{%post_comments}}', 'parent_id', '{{%post_comments}}', 'id', 'CASCADE'); + } + + public function down() + { + $this->dropForeignKey('{{%fk-post_comments-parent_id}}', '{{%post_comments}}'); + $this->dropForeignKey('{{%fk-post_comments-user_id}}', '{{%post_comments}}'); + $this->dropForeignKey('{{%fk-post_comments-post_id}}', '{{%post_comments}}'); + $this->dropIndex('{{%idx-post_comments-parent_id}}', '{{%post_comments}}'); + $this->dropIndex('{{%idx-post_comments-user_id}}', '{{%post_comments}}'); + $this->dropIndex('{{%idx-post_comments-post_id}}', '{{%post_comments}}'); + $this->dropTable('{{%post_comments}}'); + } +} diff --git a/console/migrations/m180124_165317_create_slider_table.php b/console/migrations/m180124_165317_create_slider_table.php new file mode 100644 index 0000000..5397be3 --- /dev/null +++ b/console/migrations/m180124_165317_create_slider_table.php @@ -0,0 +1,34 @@ +createTable('{{%slider}}', [ + 'id' => $this->primaryKey(), + 'title' => $this->string(128), + 'tagline' => $this->string(255), + 'image' => $this->string(255), + 'url' => $this->string(255), + 'sort' => $this->integer(11)->defaultValue(100), + ], $tableOptions); + } + + /** + * @inheritdoc + */ + public function down() + { + $this->dropTable('{{%slider}}'); + } +} diff --git a/console/migrations/m180126_061916_create_session_table.php b/console/migrations/m180126_061916_create_session_table.php new file mode 100644 index 0000000..c31f68e --- /dev/null +++ b/console/migrations/m180126_061916_create_session_table.php @@ -0,0 +1,40 @@ +db->driverName === 'mysql') { + // http://stackoverflow.com/questions/766809/whats-the-difference-between-utf8-general-ci-and-utf8-unicode-ci + $tableOptions = 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB'; + } + + $this->createTable('{{%session}}', [ + 'id' => $this->char(40)->notNull(), + 'expire' => $this->integer(), + 'data' => $this->binary(), + 'user_id' => $this->integer() + ], $tableOptions); + + $this->addPrimaryKey('session_pk', 'session', 'id'); + $this->createIndex('idx_session_user_id', '{{%session}}', 'user_id'); + } + + /** + * {@inheritdoc} + */ + public function safeDown() + { + $this->dropIndex('idx_session_user_id', '{{%session}}'); + $this->dropTable('{{%session}}'); + } +} diff --git a/console/migrations/m180210_100058_add_post_comments_likes_field.php b/console/migrations/m180210_100058_add_post_comments_likes_field.php new file mode 100644 index 0000000..a8227a4 --- /dev/null +++ b/console/migrations/m180210_100058_add_post_comments_likes_field.php @@ -0,0 +1,25 @@ +addColumn('{{%post_comments}}', 'likes', $this->integer()->defaultValue(0)); + } + + /** + * @inheritdoc + */ + public function safeDown() + { + $this->dropColumn('{{%post_comments}}', 'likes'); + } +} diff --git a/console/models/.gitkeep b/console/models/.gitkeep new file mode 100644 index 0000000..72e8ffc --- /dev/null +++ b/console/models/.gitkeep @@ -0,0 +1 @@ +* diff --git a/console/runtime/.gitignore b/console/runtime/.gitignore new file mode 100644 index 0000000..c96a04f --- /dev/null +++ b/console/runtime/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file diff --git a/core/AggregateRoot.php b/core/AggregateRoot.php new file mode 100644 index 0000000..e3abd1e --- /dev/null +++ b/core/AggregateRoot.php @@ -0,0 +1,11 @@ +filesystem = $filesystem; + } + + public function cleanFiles(): void + { + $this->filesystem->delete($this->resolvePath($this->filePath)); + foreach (array_keys($this->thumbs) as $profile) { + $this->filesystem->delete($this->getThumbFilePath($this->attribute, $profile)); + } + } + + public function afterSave(): void + { + if ($this->file instanceof UploadedFile) { + $path = $this->getUploadedFilePath($this->attribute); + $this->filesystem->createDir(pathinfo($path, PATHINFO_DIRNAME)); + $this->filesystem->put($path, file_get_contents($this->file->tempName)); + $this->owner->trigger(static::EVENT_AFTER_FILE_SAVE); + } + } + + public function createThumbs(): void + { + $path = $this->getUploadedFilePath($this->attribute); + foreach ($this->thumbs as $profile => $config) { + $thumbPath = static::getThumbFilePath($this->attribute, $profile); + if ($this->filesystem->has($path) && !$this->filesystem->has($thumbPath)) { + + // setup image processor function + if (isset($config['processor']) && is_callable($config['processor'])) { + $processor = $config['processor']; + unset($config['processor']); + } else { + $processor = function (GD $thumb) use ($config) { + $thumb->adaptiveResize($config['width'], $config['height']); + }; + } + + $tmpPath = $this->getTempPath($thumbPath); + FileHelper::createDirectory(pathinfo($tmpPath, PATHINFO_DIRNAME), 0775, true); + file_put_contents($tmpPath, $this->filesystem->get($path)); + $thumb = new GD($tmpPath, $config); + call_user_func($processor, $thumb, $this->attribute); + FileHelper::createDirectory(pathinfo($thumbPath, PATHINFO_DIRNAME), 0775, true); + $thumb->save($tmpPath); + $this->filesystem->createDir(pathinfo($thumbPath, PATHINFO_DIRNAME)); + $this->filesystem->put($thumbPath, file_get_contents($tmpPath)); + } + } + } + + /** + * @param $path + * @return string + */ + private function getTempPath($path): string + { + return sys_get_temp_dir() . $path; + } +} \ No newline at end of file diff --git a/core/behaviors/MetaBehavior.php b/core/behaviors/MetaBehavior.php new file mode 100644 index 0000000..ef4b60e --- /dev/null +++ b/core/behaviors/MetaBehavior.php @@ -0,0 +1,46 @@ + 'onAfterFind', + ActiveRecord::EVENT_BEFORE_INSERT => 'onBeforeSave', + ActiveRecord::EVENT_BEFORE_UPDATE => 'onBeforeSave', + ]; + } + + public function onAfterFind(Event $event): void + { + $model = $event->sender; + $meta = Json::decode($model->getAttribute($this->jsonAttribute)); + $model->{$this->attribute} = new Meta( + ArrayHelper::getValue($meta, 'title'), + ArrayHelper::getValue($meta, 'description'), + ArrayHelper::getValue($meta, 'keywords') + ); + } + + public function onBeforeSave(Event $event): void + { + $model = $event->sender; + $model->setAttribute('meta_json', Json::encode([ + 'title' => $model->{$this->attribute}->title, + 'description' => $model->{$this->attribute}->description, + 'keywords' => $model->{$this->attribute}->keywords, + ])); + } +} \ No newline at end of file diff --git a/core/dispatchers/AsyncEventDispatcher.php b/core/dispatchers/AsyncEventDispatcher.php new file mode 100644 index 0000000..5261cad --- /dev/null +++ b/core/dispatchers/AsyncEventDispatcher.php @@ -0,0 +1,28 @@ +queue = $queue; + } + + public function dispatchAll(array $events): void + { + foreach ($events as $event) { + $this->dispatch($event); + } + } + + public function dispatch($event): void + { + $this->queue->push(new AsyncEventJob($event)); + } +} \ No newline at end of file diff --git a/core/dispatchers/DeferredEventDispatcher.php b/core/dispatchers/DeferredEventDispatcher.php new file mode 100644 index 0000000..3f17e31 --- /dev/null +++ b/core/dispatchers/DeferredEventDispatcher.php @@ -0,0 +1,51 @@ +next = $next; + } + + public function dispatchAll(array $events): void + { + foreach ($events as $event) { + $this->dispatch($event); + } + } + + public function dispatch($event): void + { + if ($this->defer) { + $this->queue[] = $event; + } else { + $this->next->dispatch($event); + } + } + + public function defer(): void + { + $this->defer = true; + } + + public function clean(): void + { + $this->queue = []; + $this->defer = false; + } + + public function release(): void + { + foreach ($this->queue as $i => $event) { + $this->next->dispatch($event); + unset($this->queue[$i]); + } + $this->defer = false; + } +} \ No newline at end of file diff --git a/core/dispatchers/EventDispatcher.php b/core/dispatchers/EventDispatcher.php new file mode 100644 index 0000000..1ade466 --- /dev/null +++ b/core/dispatchers/EventDispatcher.php @@ -0,0 +1,9 @@ +container = $container; + $this->listeners = $listeners; + } + + public function dispatchAll(array $events): void + { + foreach ($events as $event) { + $this->dispatch($event); + } + } + + public function dispatch($event): void + { + $eventName = get_class($event); + if (array_key_exists($eventName, $this->listeners)) { + foreach ($this->listeners[$eventName] as $listenerClass) { + $listener = $this->resolveListener($listenerClass); + $listener($event); + } + } + } + + private function resolveListener($listenerClass): callable + { + return [$this->container->get($listenerClass), 'handle']; + } +} \ No newline at end of file diff --git a/core/entities/Meta.php b/core/entities/Meta.php new file mode 100644 index 0000000..f529925 --- /dev/null +++ b/core/entities/Meta.php @@ -0,0 +1,17 @@ +title = $title; + $this->description = $description; + $this->keywords = $keywords; + } +} \ No newline at end of file diff --git a/core/entities/Page.php b/core/entities/Page.php new file mode 100644 index 0000000..07c9f83 --- /dev/null +++ b/core/entities/Page.php @@ -0,0 +1,85 @@ +title = $title; + $category->slug = $slug; + $category->title = $title; + $category->content = $content; + $category->meta = $meta; + return $category; + } + + public function edit($title, $slug, $content, Meta $meta): void + { + $this->title = $title; + $this->slug = $slug; + $this->content = $content; + $this->meta = $meta; + } + + public function getSeoTitle(): string + { + return $this->meta->title ?: $this->title; + } + + public static function tableName(): string + { + return '{{%pages}}'; + } + + public function behaviors(): array + { + return [ + MetaBehavior::className(), + NestedSetsBehavior::className(), + ]; + } + + public function transactions(): array + { + return [ + self::SCENARIO_DEFAULT => self::OP_ALL, + ]; + } + + public function attributeLabels() { + return [ + 'title' => Yii::t('page', 'Title'), + 'slug' => Yii::t('page', 'Slug'), + 'id' => Yii::t('page', 'ID'), + 'content' => Yii::t('page', 'Content'), + ]; + } +} \ No newline at end of file diff --git a/core/entities/Session.php b/core/entities/Session.php new file mode 100644 index 0000000..9f0d3f2 --- /dev/null +++ b/core/entities/Session.php @@ -0,0 +1,28 @@ +title = $title; + $slider->tagline = $tagline; + $slider->url = $url; + $slider->sort = $sort; + return $slider; + } + + public function setImage(UploadedFile $image): void + { + $this->image = $image; + } + + public function edit($title, $tagline, $url, $sort): void + { + $this->title = $title; + $this->tagline = $tagline; + $this->url = $url; + $this->sort = $sort; + } + + public static function tableName(): string + { + return '{{%slider}}'; + } + + public function attributeLabels() { + return [ + 'title' => Yii::t('slider', 'Title'), + 'tagline' => Yii::t('slider', 'Tagline'), + 'image' => Yii::t('slider', 'Image'), + 'url' => Yii::t('slider', 'URL'), + 'sort' => Yii::t('slider', 'Sort'), + ]; + } + + public function behaviors(): array + { + return [ + [ + 'class' => ImageUploadBehavior::className(), + 'attribute' => 'image', + 'createThumbsOnRequest' => true, + 'filePath' => '@staticRoot/origin/slider/[[id]].[[extension]]', + 'fileUrl' => '@static/origin/slider/[[id]].[[extension]]', + 'thumbPath' => '@staticRoot/cache/slider/[[profile]]_[[id]].[[extension]]', + 'thumbUrl' => '@static/cache/slider/[[profile]]_[[id]].[[extension]]', + 'thumbs' => [ + 'admin' => ['width' => 150, 'height' => 60], + 'thumb' => ['width' => 400, 'height' => 150], + '1920_671' => ['width' => 1920, 'height' => 671], + //'origin' => ['processor' => [new WaterMarker(1024, 768, '@frontend/web/image/logo.png'), 'process']], + 'origin' => ['width' => 1920, 'height' => 1080], + ], + ], + ]; + } +} \ No newline at end of file diff --git a/core/entities/post/Post.php b/core/entities/post/Post.php new file mode 100644 index 0000000..55b352e --- /dev/null +++ b/core/entities/post/Post.php @@ -0,0 +1,366 @@ +category_id = $categoryId; + $post->title = $title; + $post->slug = $slug; + $post->description = $description; + $post->content = $content; + $post->meta = $meta; + $post->status = self::STATUS_DRAFT; + $post->created_at = time(); + $post->comments_count = 0; + $post->type_id = $type_id; + $post->published_at = $published_at; + $post->video = $video; + return $post; + } + + public function setImage(UploadedFile $image): void + { + $this->image = $image; + } + + + public function edit($categoryId, $title, $slug, $description, $content, $published_at, $video, Meta $meta): void + { + $this->category_id = $categoryId; + $this->title = $title; + $this->slug = $slug; + $this->description = $description; + $this->content = $content; + $this->meta = $meta; + $this->published_at = $published_at; + $this->video = $video; + } + + /** + * @inheritdoc + */ + public static function tableName() + { + return 'posts'; + } + + /** + * @inheritdoc + */ + public function attributeLabels() + { + return [ + 'id' => Yii::t('post', 'ID'), + 'category_id' => Yii::t('post', 'Category'), + 'published_at' => Yii::t('post', 'Published At'), + 'created_at' => Yii::t('post', 'Created At'), + 'updated_at' => Yii::t('post', 'Updated At'), + 'title' => Yii::t('post', 'Title'), + 'description' => Yii::t('post', 'Description'), + 'content' => Yii::t('post', 'Content'), + 'image' => Yii::t('post', 'Image'), + 'video' => Yii::t('post', 'Video'), + 'status' => Yii::t('post', 'Status'), + 'meta_json' => Yii::t('post', 'Meta Json'), + 'comments_count' => Yii::t('post', 'Comments Count'), + 'type_id' => Yii::t('post', 'Type'), + 'views' => Yii::t('post', 'Views'), + 'slug' => Yii::t('post', 'Slug'), + 'meta.title' => Yii::t('post', 'Meta Title'), + 'meta.description' => Yii::t('post', 'Meta Description'), + 'meta.keywords' => Yii::t('post', 'Meta Keywords'), + ]; + } + + public function activate(): void + { + if ($this->isActive()) { + throw new \DomainException(Yii::t('post', 'Post is already active.')); + } + $this->status = self::STATUS_ACTIVE; + } + + public function draft(): void + { + if ($this->isDraft()) { + throw new \DomainException('Post is already draft.'); + } + $this->status = self::STATUS_DRAFT; + } + + public function isActive(): bool + { + return $this->status == self::STATUS_ACTIVE; + } + + + public function isDraft(): bool + { + return $this->status == self::STATUS_DRAFT; + } + + public function getSeoTitle(): string + { + return $this->meta->title ?: $this->title; + } + + // Tags + + public function assignTag($id): void + { + $assignments = $this->postTagAssignments; + foreach ($assignments as $assignment) { + if ($assignment->isForTag($id)) { + return; + } + } + $assignments[] = PostTagAssignment::create($id); + $this->postTagAssignments = $assignments; + } + + public function revokeTag($id): void + { + $assignments = $this->postTagAssignments; + foreach ($assignments as $i => $assignment) { + if ($assignment->isForTag($id)) { + unset($assignments[$i]); + $this->postTagAssignments = $assignments; + return; + } + } + throw new \DomainException('Assignment is not found.'); + } + + public function revokeTags(): void + { + $this->postTagAssignments = []; + } + + // Comments + + public function addComment($userId, $parentId, $text): PostComment + { + $parent = $parentId ? $this->getComment($parentId) : null; + if ($parent && !$parent->isActive()) { + throw new \DomainException('Cannot add comment to inactive parent.'); + } + $comments = $this->postComments; + $comments[] = $comment = PostComment::create($userId, $parent ? $parent->id : null, $text); + $this->updateComments($comments); + return $comment; + } + + public function editComment($id, $parentId, $text): void + { + $parent = $parentId ? $this->getComment($parentId) : null; + $comments = $this->postComments; + foreach ($comments as $comment) { + if ($comment->isIdEqualTo($id)) { + $comment->edit($parent ? $parent->id : null, $text); + $this->updateComments($comments); + return; + } + } + throw new \DomainException('Comment is not found.'); + } + + public function activateComment($id): void + { + $comments = $this->postComments; + foreach ($comments as $comment) { + if ($comment->isIdEqualTo($id)) { + $comment->activate(); + $this->updateComments($comments); + return; + } + } + throw new \DomainException('Comment is not found.'); + } + + public function removeComment($id): void + { + $comments = $this->postComments; + foreach ($comments as $i => $comment) { + if ($comment->isIdEqualTo($id)) { + if ($this->hasChildren($comment->id)) { + $comment->draft(); + } else { + unset($comments[$i]); + } + $this->updateComments($comments); + return; + } + } + throw new \DomainException('Comment is not found.'); + } + + public function getComment($id): PostComment + { + foreach ($this->postComments as $comment) { + if ($comment->isIdEqualTo($id)) { + return $comment; + } + } + throw new \DomainException('Comment is not found.'); + } + + private function hasChildren($id): bool + { + foreach ($this->postComments as $comment) { + if ($comment->isChildOf($id)) { + return true; + } + } + return false; + } + + private function updateComments(array $comments): void + { + $this->postComments = $comments; + $this->comments_count = count(array_filter($comments, function (PostComment $comment) { + return $comment->isActive(); + })); + } + + ###################################### + + /** + * @return \yii\db\ActiveQuery + */ + public function getPostComments() + { + return $this->hasMany(PostComment::className(), ['post_id' => 'id']); + } + + /** + * @return \yii\db\ActiveQuery + */ + public function getPostTagAssignments() + { + return $this->hasMany(PostTagAssignment::className(), ['post_id' => 'id']); + } + + /** + * @return \yii\db\ActiveQuery + */ + public function getTags() + { + return $this->hasMany(PostTag::className(), ['id' => 'tag_id'])->viaTable('post_tag_assignments', ['post_id' => 'id']); + } + + /** + * @return \yii\db\ActiveQuery + */ + public function getCategory() + { + return $this->hasOne(PostCategory::className(), ['id' => 'category_id']); + } + + /** + * @return \yii\db\ActiveQuery + */ + public function getType() + { + return $this->hasOne(PostType::className(), ['id' => 'type_id']); + } + + ###################################### + + public function behaviors(): array + { + return [ + TimestampBehavior::className(), + MetaBehavior::className(), + [ + 'class' => SaveRelationsBehavior::className(), + 'relations' => ['postTagAssignments', 'postComments'], + ], + [ + 'class' => ImageUploadBehavior::className(), + 'attribute' => 'image', + 'createThumbsOnRequest' => true, + //'filePath' => $this::FILE_ORIGINAL_PATH . '/[[id]].[[extension]]', + 'filePath' => '@staticRoot/origin/posts/[[id]].[[extension]]', + 'fileUrl' => '@static/origin/posts/[[id]].[[extension]]', + 'thumbPath' => '@staticRoot/cache/posts/[[profile]]_[[id]].[[extension]]', + 'thumbUrl' => '@static/cache/posts/[[profile]]_[[id]].[[extension]]', + 'thumbs' => [ + 'admin' => ['width' => 60, 'height' => 60], + 'thumb' => ['width' => 150, 'height' => 150], + 'list' => ['width' => 200, 'height' => 200], + 'home_slider' => ['width' => 369, 'height' => 343], + '94_94' => ['width' => 94, 'height' => 94], + '368_287' => ['width' => 368, 'height' => 287], + '370_325' => ['width' => 370, 'height' => 325], + '683_407' => ['width' => 683, 'height' => 407], + 'thumb_gallery_view' => ['width' => 300, 'height' => 170], + //'widget_list' => ['width' => 228, 'height' => 228], + //'origin' => ['processor' => [new WaterMarker(1024, 768, '@frontend/web/image/logo.png'), 'process']], + 'origin' => ['width' => 1024, 'height' => 768], + ], + ], + ]; + } + + public function transactions(): array + { + return [ + self::SCENARIO_DEFAULT => self::OP_ALL, + ]; + } + + public static function find(): PostQuery + { + return new PostQuery(static::class); + } +} diff --git a/core/entities/post/PostCategory.php b/core/entities/post/PostCategory.php new file mode 100644 index 0000000..e2551ed --- /dev/null +++ b/core/entities/post/PostCategory.php @@ -0,0 +1,98 @@ +name = $name; + $category->slug = $slug; + $category->title = $title; + $category->description = $description; + $category->sort = $sort; + $category->type_id = $type_id; + $category->meta = $meta; + return $category; + } + + public function edit($name, $slug, $title, $description, $sort, $type_id, Meta $meta): void + { + $this->name = $name; + $this->slug = $slug; + $this->title = $title; + $this->description = $description; + $this->sort = $sort; + $this->type_id = $type_id; + $this->meta = $meta; + } + + public function attributeLabels() + { + return [ + 'id' => Yii::t('post', 'ID'), + 'name' => Yii::t('post', 'Name'), + 'slug' => Yii::t('post', 'SEO link'), + 'sort' => Yii::t('post', 'Sort'), + 'title' => Yii::t('post', 'Title'), + 'description' => Yii::t('post', 'Description'), + 'meta.title' => Yii::t('post', 'Meta Title'), + 'meta.description' => Yii::t('post', 'Meta Description'), + 'meta.keywords' => Yii::t('post', 'Meta Keywords'), + ]; + } + + public function getSeoTitle(): string + { + return $this->meta->title ?: $this->getHeadingTile(); + } + + public function getHeadingTile(): string + { + return $this->title ?: $this->name; + } + + public function getPostsCount(): int + { + return Post::find()->where(['category_id' => $this->id])->count('*'); + } + + public static function tableName(): string + { + return '{{%post_categories}}'; + } + + public function behaviors(): array + { + return [ + MetaBehavior::className(), + ]; + } + + public static function find(): PostCategoryQuery + { + return new PostCategoryQuery(static::class); + } +} \ No newline at end of file diff --git a/core/entities/post/PostComment.php b/core/entities/post/PostComment.php new file mode 100644 index 0000000..45b559f --- /dev/null +++ b/core/entities/post/PostComment.php @@ -0,0 +1,93 @@ +user_id = $userId; + $review->parent_id = $parentId; + $review->text = $text; + $review->created_at = time(); + $review->active = true; + return $review; + } + + public function edit($parentId, $text): void + { + $this->parent_id = $parentId; + $this->text = $text; + } + + public function attributeLabels() + { + return [ + 'id' => Yii::t('post', 'ID'), + 'user_id' => Yii::t('post', 'User'), + 'parent_id' => Yii::t('post', 'Parent Comment ID'), + 'created_at' => Yii::t('post', 'Created At'), + 'active' => Yii::t('post', 'Published'), + 'post_id' => Yii::t('post', 'Post'), + 'text' => Yii::t('post', 'Comment'), + ]; + } + + public function activate(): void + { + $this->active = true; + } + + public function draft(): void + { + $this->active = false; + } + + public function isActive(): bool + { + return $this->active == true; + } + + public function isIdEqualTo($id): bool + { + return $this->id == $id; + } + + public function isChildOf($id): bool + { + return $this->parent_id == $id; + } + + public function getPost(): ActiveQuery + { + return $this->hasOne(Post::class, ['id' => 'post_id']); + } + + public function getUser(): ActiveQuery + { + return $this->hasOne(User::class, ['id' => 'user_id']); + } + + public static function tableName(): string + { + return '{{%post_comments}}'; + } +} \ No newline at end of file diff --git a/core/entities/post/PostTag.php b/core/entities/post/PostTag.php new file mode 100644 index 0000000..397e595 --- /dev/null +++ b/core/entities/post/PostTag.php @@ -0,0 +1,49 @@ +name = $name; + $tag->slug = $slug; + $tag->type_id = $type_id; + return $tag; + } + + public function edit($name, $slug, $type_id): void + { + $this->name = $name; + if ($slug != $this->slug) + { + TagDependency::invalidate(\Yii::$app->cache, 'post_tags'); + } + $this->slug = $slug; + $this->type_id = $type_id; + } + + public function attributeLabels() + { + return [ + 'name' => Yii::t('post', 'Tag Name'), + 'slug' => Yii::t('post', 'SEO link'), + ]; + } + + public static function tableName(): string + { + return '{{%post_tags}}'; + } +} \ No newline at end of file diff --git a/core/entities/post/PostTagAssignment.php b/core/entities/post/PostTagAssignment.php new file mode 100644 index 0000000..71f18f8 --- /dev/null +++ b/core/entities/post/PostTagAssignment.php @@ -0,0 +1,29 @@ +tag_id = $tagId; + return $assignment; + } + + public function isForTag($id): bool + { + return $this->tag_id == $id; + } + + public static function tableName(): string + { + return '{{%post_tag_assignments}}'; + } +} \ No newline at end of file diff --git a/core/entities/post/PostType.php b/core/entities/post/PostType.php new file mode 100644 index 0000000..f7902de --- /dev/null +++ b/core/entities/post/PostType.php @@ -0,0 +1,55 @@ + Yii::t('post', 'ID'), + 'name' => Yii::t('post', 'Name'), + 'singular' => Yii::t('post', 'Singular'), + 'plural' => Yii::t('post', 'Plural'), + ]; + } + + public static function create($name, $singular, $plural): self + { + $type = new static(); + $type->name = $name; + $type->singular = $singular; + $type->plural = $plural; + return $type; + } + + public function edit($name, $singular, $plural): void + { + $this->name = $name; + $this->singular = $singular; + $this->plural = $plural; + } + +} diff --git a/core/entities/post/queries/PostCategoryQuery.php b/core/entities/post/queries/PostCategoryQuery.php new file mode 100644 index 0000000..ba94b32 --- /dev/null +++ b/core/entities/post/queries/PostCategoryQuery.php @@ -0,0 +1,14 @@ +andWhere(['type_id' => $type]); + } +} \ No newline at end of file diff --git a/core/entities/post/queries/PostQuery.php b/core/entities/post/queries/PostQuery.php new file mode 100644 index 0000000..8e1d6a4 --- /dev/null +++ b/core/entities/post/queries/PostQuery.php @@ -0,0 +1,35 @@ +andWhere([ + ($alias ? $alias . '.' : '') . 'status' => Post::STATUS_ACTIVE, + ]); + } + + public function byType($type) + { + return $this->andWhere(['type_id' => $type]); + } + + public function last() + { + return $this->orderBy(['published_at' => SORT_DESC]); + } + + public function popular() + { + return $this->orderBy(['views' => SORT_DESC]); + } +} \ No newline at end of file diff --git a/core/entities/user/Network.php b/core/entities/user/Network.php new file mode 100644 index 0000000..c8843fe --- /dev/null +++ b/core/entities/user/Network.php @@ -0,0 +1,35 @@ +network = $network; + $item->identity = $identity; + return $item; + } + + public function isFor($network, $identity): bool + { + return $this->network === $network && $this->identity === $identity; + } + + public static function tableName() + { + return '{{%user_networks}}'; + } +} \ No newline at end of file diff --git a/core/entities/user/User.php b/core/entities/user/User.php new file mode 100644 index 0000000..cc32b2c --- /dev/null +++ b/core/entities/user/User.php @@ -0,0 +1,266 @@ +username = $username; + $user->email = $email; + $user->setPassword(!empty($password) ? $password : Yii::$app->security->generateRandomString()); + $user->created_at = time(); + $user->status = self::STATUS_ACTIVE; + $user->auth_key = Yii::$app->security->generateRandomString(); + return $user; + } + + public function edit(string $username, string $email, string $password): void + { + $this->username = $username; + $this->email = $email; + $this->updated_at = time(); + if ($password) { + $this->setPassword(!empty($password) ? $password : Yii::$app->security->generateRandomString()); + $this->generateAuthKey(); + Session::deleteAll(['user_id' => $this->id]); + } + } + + public function editProfile(string $email, string $username, string $password = null): void + { + $this->email = $email; + $this->username = $username; + if ($password && !empty($password)) { + $this->setPassword( $password ); + } + $this->updated_at = time(); + } + + public static function requestSignup(string $username, string $email, string $password): self + { + $user = new User(); + $user->username = $username; + $user->email = $email; + $user->setPassword($password); + $user->created_at = time(); + $user->status = self::STATUS_WAIT; + $user->email_confirm_token = Yii::$app->security->generateRandomString(); + $user->generateAuthKey(); + $user->recordEvent(new UserSignUpRequested($user)); + return $user; + } + + public function confirmSignup(): void + { + if (!$this->isWait()) { + throw new \DomainException('User is already active.'); + } + $this->status = self::STATUS_ACTIVE; + $this->email_confirm_token = null; + $this->recordEvent(new UserSignUpConfirmed($this)); + } + + public static function signupByNetwork($network, $identity): self + { + $user = new User(); + $user->created_at = time(); + $user->status = self::STATUS_ACTIVE; + $user->generateAuthKey(); + $user->networks = [Network::create($network, $identity)]; + return $user; + } + + public function attachNetwork($network, $identity): void + { + $networks = $this->networks; + foreach ($networks as $current) { + if ($current->isFor($network, $identity)) { + throw new \DomainException('Network is already attached.'); + } + } + $networks[] = Network::create($network, $identity); + $this->networks = $networks; + } + + + public function requestPasswordReset(): void + { + if (!empty($this->password_reset_token) && self::isPasswordResetTokenValid($this->password_reset_token)) { + throw new \DomainException(Yii::t('auth', 'Password resetting is already requested.')); + } + $this->password_reset_token = Yii::$app->security->generateRandomString() . '_' . time(); + } + + public function resetPassword($password): void + { + if (empty($this->password_reset_token)) { + throw new \DomainException(Yii::t('auth', 'Password resetting is not requested.')); + } + $this->setPassword($password); + $this->password_reset_token = null; + } + + public function isWait(): bool + { + return $this->status === self::STATUS_WAIT; + } + + public function isActive(): bool + { + return $this->status === self::STATUS_ACTIVE; + } + + public function getNetworks(): ActiveQuery + { + return $this->hasMany(Network::className(), ['user_id' => 'id']); + } + + /** + * @inheritdoc + */ + public static function tableName() + { + return '{{%users}}'; + } + + /** + * @inheritdoc + */ + public function behaviors() + { + return [ + TimestampBehavior::className(), + [ + 'class' => SaveRelationsBehavior::className(), + 'relations' => ['networks'], + ], + ]; + } + + public function transactions() + { + return [ + self::SCENARIO_DEFAULT => self::OP_ALL, + ]; + } + + /** + * Finds user by username + * + * @param string $username + * @return static|null + */ + public static function findByUsername($username) + { + return static::findOne(['username' => $username, 'status' => self::STATUS_ACTIVE]); + } + + /** + * Finds user by password reset token + * + * @param string $token password reset token + * @return static|null + */ + public static function findByPasswordResetToken($token) + { + if (!static::isPasswordResetTokenValid($token)) { + return null; + } + + return static::findOne([ + 'password_reset_token' => $token, + 'status' => self::STATUS_ACTIVE, + ]); + } + + /** + * Finds out if password reset token is valid + * + * @param string $token password reset token + * @return bool + */ + public static function isPasswordResetTokenValid($token) + { + if (empty($token)) { + return false; + } + + $timestamp = (int) substr($token, strrpos($token, '_') + 1); + $expire = Yii::$app->params['user.passwordResetTokenExpire']; + return $timestamp + $expire >= time(); + } + + /** + * Validates password + * + * @param string $password password to validate + * @return bool if password provided is valid for current user + */ + public function validatePassword($password) + { + return Yii::$app->security->validatePassword($password, $this->password_hash); + } + + /** + * @param $password + * + * @throws \yii\base\Exception + */ + private function setPassword($password) + { + $this->password_hash = Yii::$app->security->generatePasswordHash($password); + } + + /** + * Generates "remember me" authentication key + */ + private function generateAuthKey() + { + $this->auth_key = Yii::$app->security->generateRandomString(); + } + + public function attributeLabels() { + return [ + 'id' => Yii::t('user', 'ID'), + 'username' => Yii::t('user', 'Username'), + 'email' => Yii::t('user', 'E-mail'), + 'status' => Yii::t('user', 'Status'), + 'created_at' => Yii::t('user', 'Created At'), + 'updated_at' => Yii::t('user', 'Updated At'), + ]; + } +} diff --git a/core/events/EventTrait.php b/core/events/EventTrait.php new file mode 100644 index 0000000..dbb4914 --- /dev/null +++ b/core/events/EventTrait.php @@ -0,0 +1,20 @@ +events[] = $event; + } + + public function releaseEvents(): array + { + $events = $this->events; + $this->events = []; + return $events; + } +} \ No newline at end of file diff --git a/core/events/user/UserSignUpConfirmed.php b/core/events/user/UserSignUpConfirmed.php new file mode 100644 index 0000000..ece49e7 --- /dev/null +++ b/core/events/user/UserSignUpConfirmed.php @@ -0,0 +1,15 @@ +user = $user; + } +} \ No newline at end of file diff --git a/core/events/user/UserSignUpRequested.php b/core/events/user/UserSignUpRequested.php new file mode 100644 index 0000000..729f130 --- /dev/null +++ b/core/events/user/UserSignUpRequested.php @@ -0,0 +1,15 @@ +user = $user; + } +} \ No newline at end of file diff --git a/core/forms/CompositeForm.php b/core/forms/CompositeForm.php new file mode 100644 index 0000000..97acca9 --- /dev/null +++ b/core/forms/CompositeForm.php @@ -0,0 +1,109 @@ +forms as $name => $form) { + if (is_array($form)) { + $success = Model::loadMultiple($form, $data, $formName === null ? null : $name) && $success; + } else { + $success = $form->load($data, $formName !== '' ? null : $name) && $success; + } + } + return $success; + } + + public function validate($attributeNames = null, $clearErrors = true): bool + { + $parentNames = $attributeNames !== null ? array_filter((array)$attributeNames, 'is_string') : null; + $success = parent::validate($parentNames, $clearErrors); + foreach ($this->forms as $name => $form) { + if (is_array($form)) { + $success = Model::validateMultiple($form) && $success; + } else { + $innerNames = $attributeNames !== null ? ArrayHelper::getValue($attributeNames, $name) : null; + $success = $form->validate($innerNames ?: null, $clearErrors) && $success; + } + } + return $success; + } + + public function hasErrors($attribute = null): bool + { + if ($attribute !== null) { + return parent::hasErrors($attribute); + } + if (parent::hasErrors($attribute)) { + return true; + } + foreach ($this->forms as $name => $form) { + if (is_array($form)) { + foreach ($form as $i => $item) { + if ($item->hasErrors()) { + return true; + } + } + } else { + if ($form->hasErrors()) { + return true; + } + } + } + return false; + } + + public function getFirstErrors(): array + { + $errors = parent::getFirstErrors(); + foreach ($this->forms as $name => $form) { + if (is_array($form)) { + foreach ($form as $i => $item) { + foreach ($item->getFirstErrors() as $attribute => $error) { + $errors[$name . '.' . $i . '.' . $attribute] = $error; + } + } + } else { + foreach ($form->getFirstErrors() as $attribute => $error) { + $errors[$name . '.' . $attribute] = $error; + } + } + } + return $errors; + } + + public function __get($name) + { + if (isset($this->forms[$name])) { + return $this->forms[$name]; + } + return parent::__get($name); + } + + public function __set($name, $value) + { + if (in_array($name, $this->internalForms(), true)) { + $this->forms[$name] = $value; + } else { + parent::__set($name, $value); + } + } + + public function __isset($name) + { + return isset($this->forms[$name]) || parent::__isset($name); + } +} \ No newline at end of file diff --git a/core/forms/ContactForm.php b/core/forms/ContactForm.php new file mode 100644 index 0000000..2caf0c4 --- /dev/null +++ b/core/forms/ContactForm.php @@ -0,0 +1,35 @@ + Yii::t('main', 'Verification Code'), + 'name' => Yii::t('main', 'Your name'), + 'subject' => Yii::t('main', 'Subject'), + 'message' => Yii::t('main', 'Message'), + 'email' => Yii::t('main', 'E-mail'), + ]; + } +} diff --git a/core/forms/MetaForm.php b/core/forms/MetaForm.php new file mode 100644 index 0000000..4927246 --- /dev/null +++ b/core/forms/MetaForm.php @@ -0,0 +1,40 @@ +title = $meta->title; + $this->description = $meta->description; + $this->keywords = $meta->keywords; + } + parent::__construct($config); + } + + public function rules(): array + { + return [ + [['title'], 'string', 'max' => 255], + [['description', 'keywords'], 'string'], + ]; + } + + public function attributeLabels() { + return [ + 'title' => Yii::t('main', 'Title'), + 'description' => Yii::t('main', 'Description'), + 'keywords' => Yii::t('main', 'Keywords'), + ]; + } +} \ No newline at end of file diff --git a/core/forms/PageForm.php b/core/forms/PageForm.php new file mode 100644 index 0000000..63fda31 --- /dev/null +++ b/core/forms/PageForm.php @@ -0,0 +1,70 @@ +title = $page->title; + $this->slug = $page->slug; + $this->content = $page->content; + $this->parentId = $page->parent ? $page->parent->id : null; + $this->meta = new MetaForm($page->meta); + $this->_page = $page; + } else { + $this->meta = new MetaForm(); + } + parent::__construct($config); + } + + public function rules(): array + { + return [ + [['title', 'slug'], 'required'], + [['parentId'], 'integer'], + [['title', 'slug'], 'string', 'max' => 255], + [['content'], 'string'], + ['slug', SlugValidator::class], + [['slug'], 'unique', 'targetClass' => Page::class, 'filter' => $this->_page ? ['<>', 'id', $this->_page->id] : null] + ]; + } + + public function attributeLabels() { + return [ + 'title' => Yii::t('page', 'Title'), + 'slug' => Yii::t('page', 'Slug'), + 'id' => Yii::t('page', 'ID'), + 'content' => Yii::t('page', 'Content'), + 'parentId' => Yii::t('page', 'Parent Page'), + ]; + } + + public function parentsList(): array + { + return ArrayHelper::map(Page::find()->orderBy('lft')->asArray()->all(), 'id', function (array $page) { + return ($page['depth'] > 1 ? str_repeat('-- ', $page['depth'] - 1) . ' ' : '') . $page['title']; + }); + } + + public function internalForms(): array + { + return ['meta']; + } +} \ No newline at end of file diff --git a/core/forms/SliderForm.php b/core/forms/SliderForm.php new file mode 100644 index 0000000..d52c682 --- /dev/null +++ b/core/forms/SliderForm.php @@ -0,0 +1,66 @@ +title = $slider->title; + $this->tagline = $slider->tagline; + $this->url = $slider->url; + $this->sort = $slider->sort; + $this->_slider = $slider; + } + parent::__construct($config); + } + + public function rules(): array + { + $imageValidator = new ImageValidator(); + $maxSize = $imageValidator->getSizeLimit() < 20*1024*1024 ? $imageValidator->getSizeLimit() : 20*1024*1024; + return [ + [['title', 'image'], 'required', 'on' => Slider::SCENARIO_CREATE], + [['title'], 'required', 'on' => Slider::SCENARIO_UPDATE], + [['sort'], 'integer'], + [['title'], 'string', 'max' => 128], + [['tagline', 'url'], 'string', 'max' => 255], + [['image'], 'image', 'extensions' => 'jpg,png,gif', 'skipOnEmpty' => true, 'maxSize' => $maxSize], + ]; + } + + public function attributeLabels() { + return [ + 'title' => Yii::t('slider', 'Title'), + 'tagline' => Yii::t('slider', 'Tagline'), + 'image' => Yii::t('slider', 'Image'), + 'url' => Yii::t('slider', 'URL'), + 'sort' => Yii::t('slider', 'Sort'), + ]; + } + + public function beforeValidate() + { + if (parent::beforeValidate()) { + $this->image = UploadedFile::getInstance($this, 'image'); + return true; + } + return false; + } +} \ No newline at end of file diff --git a/core/forms/SubscribeForm.php b/core/forms/SubscribeForm.php new file mode 100644 index 0000000..000e37b --- /dev/null +++ b/core/forms/SubscribeForm.php @@ -0,0 +1,28 @@ + 'E-mail', + ]; + } +} \ No newline at end of file diff --git a/core/forms/auth/LoginForm.php b/core/forms/auth/LoginForm.php new file mode 100644 index 0000000..8b7f44f --- /dev/null +++ b/core/forms/auth/LoginForm.php @@ -0,0 +1,26 @@ + \Yii::t('user', 'Username'), + 'password' => \Yii::t('user', 'Password'), + ]; + } +} diff --git a/core/forms/auth/PasswordResetRequestForm.php b/core/forms/auth/PasswordResetRequestForm.php new file mode 100644 index 0000000..83d35d2 --- /dev/null +++ b/core/forms/auth/PasswordResetRequestForm.php @@ -0,0 +1,24 @@ + User::class, + 'filter' => ['status' => User::STATUS_ACTIVE], + 'message' => \Yii::t('auth', 'There is no user with this email address.') + ], + ]; + } +} diff --git a/core/forms/auth/ResetPasswordForm.php b/core/forms/auth/ResetPasswordForm.php new file mode 100644 index 0000000..57bace4 --- /dev/null +++ b/core/forms/auth/ResetPasswordForm.php @@ -0,0 +1,23 @@ + 6], + ]; + } + + public function attributeLabels() { + return [ + 'password' => \Yii::t('auth', 'Password'), + ]; + } +} diff --git a/core/forms/auth/SignupForm.php b/core/forms/auth/SignupForm.php new file mode 100644 index 0000000..113ece2 --- /dev/null +++ b/core/forms/auth/SignupForm.php @@ -0,0 +1,45 @@ + User::class, 'message' => \Yii::t('auth', 'This username has already been taken.')], + ['username', 'string', 'min' => 2, 'max' => 255], + + ['email', 'trim'], + ['email', 'required'], + ['email', 'email'], + ['email', 'string', 'max' => 255], + ['email', 'unique', 'targetClass' => User::class, 'message' => \Yii::t('auth', 'This email address has already been taken.')], + + ['password', 'required'], + ['password', 'string', 'min' => 6], + ]; + } + + public function attributeLabels() { + return [ + 'username' => \Yii::t('auth', 'Username'), + 'email' => \Yii::t('auth', 'E-mail'), + 'password' => \Yii::t('auth', 'Password'), + ]; + } +} diff --git a/core/forms/post/PostCategoryForm.php b/core/forms/post/PostCategoryForm.php new file mode 100644 index 0000000..6002c38 --- /dev/null +++ b/core/forms/post/PostCategoryForm.php @@ -0,0 +1,74 @@ +name = $category->name; + $this->slug = $category->slug; + $this->title = $category->title; + $this->description = $category->description; + $this->sort = $category->sort; + $this->type_id = $category->type_id; + $this->meta = new MetaForm($category->meta); + $this->_category = $category; + } else { + $this->meta = new MetaForm(); + $this->sort = PostCategory::find()->max('sort') + 1; + } + parent::__construct($config); + } + + public function rules(): array + { + return [ + [['name', 'slug'], 'required'], + [['name', 'slug', 'title'], 'string', 'max' => 255], + ['type_id', 'integer'], + [['description'], 'string'], + ['slug', SlugValidator::class], + [['name', 'slug'], 'unique', 'targetClass' => PostCategory::class, 'filter' => $this->_category ? ['<>', 'id', $this->_category->id] : null] + ]; + } + + public function attributeLabels() + { + return [ + 'name' => Yii::t('post', 'Name'), + 'slug' => Yii::t('post', 'SEO link'), + 'sort' => Yii::t('post', 'Sort'), + 'title' => Yii::t('post', 'Title'), + 'description' => Yii::t('post', 'Description'), + ]; + } + + public function updateSort() { + $this->sort = PostCategory::find()->where(['type_id' => $this->type_id])->max('sort') + 1; + } + + public function internalForms(): array + { + return ['meta']; + } +} \ No newline at end of file diff --git a/core/forms/post/PostCommentEditForm.php b/core/forms/post/PostCommentEditForm.php new file mode 100644 index 0000000..e68841d --- /dev/null +++ b/core/forms/post/PostCommentEditForm.php @@ -0,0 +1,37 @@ +parentId = $comment->parent_id; + $this->text = $comment->text; + parent::__construct($config); + } + + public function rules(): array + { + return [ + [['text'], 'required'], + ['text', 'string'], + ['parentId', 'integer'], + ]; + } + + public function attributeLabels() + { + return [ + 'parentId' => Yii::t('post', 'Parent Comment ID'), + 'text' => Yii::t('post', 'Comment'), + ]; + } +} \ No newline at end of file diff --git a/core/forms/post/PostCommentForm.php b/core/forms/post/PostCommentForm.php new file mode 100644 index 0000000..51f1671 --- /dev/null +++ b/core/forms/post/PostCommentForm.php @@ -0,0 +1,20 @@ +category_id = $post->category_id; + $this->title = $post->title; + $this->description = $post->description; + $this->content = $post->content; + $this->video = $post->video; + $this->type_id = $post->type_id; + $this->published_at = $post->published_at; + $this->slug = $post->slug; + $this->meta = new MetaForm($post->meta); + $this->tags = new PostTagForm($post); + $this->_post = $post; + } else { + $this->meta = new MetaForm(); + $this->tags = new PostTagForm(); + } + parent::__construct($config); + } + + public function rules(): array + { + return [ + [['category_id', 'title'], 'required'], + [['title', 'video'], 'string', 'max' => 255], + [['category_id', 'type_id'], 'integer'], + [['description', 'content'], 'string'], + [['image'], 'image'], + ['reset_image', 'boolean'], + ['published_at', 'safe'], + ['slug', SlugValidator::class], + [['slug'], 'unique', 'targetClass' => Post::class, 'filter' => $this->_post ? ['<>', 'id', $this->_post->id] : null], + ]; + } + + public function attributeLabels() + { + return [ + 'id' => Yii::t('post', 'ID'), + 'category_id' => Yii::t('post', 'Category'), + 'published_at' => Yii::t('post', 'Published At'), + 'created_at' => Yii::t('post', 'Created At'), + 'updated_at' => Yii::t('post', 'Updated At'), + 'title' => Yii::t('post', 'Title'), + 'description' => Yii::t('post', 'Description'), + 'content' => Yii::t('post', 'Content'), + 'image' => Yii::t('post', 'Image'), + 'video' => Yii::t('post', 'Video'), + 'status' => Yii::t('post', 'Status'), + 'meta_json' => Yii::t('post', 'Meta Json'), + 'comments_count' => Yii::t('post', 'Comments Count'), + 'type_id' => Yii::t('post', 'Type'), + 'views' => Yii::t('post', 'Views'), + 'slug' => Yii::t('post', 'Slug'), + 'reset_image' => Yii::t('post', 'Reset Image'), + ]; + } + + public function categoriesList(int $type_id): array + { + return ArrayHelper::map(PostCategory::find()->andWhere(['type_id' => $type_id])->orderBy('sort')->asArray()->all(), 'id', 'name'); + } + + protected function internalForms(): array + { + return ['meta', 'tags']; + } + + public function beforeValidate(): bool + { + if (parent::beforeValidate()) { + $this->image = UploadedFile::getInstance($this, 'image'); + $this->published_at = strtotime($this->published_at); + return true; + } + return false; + } +} \ No newline at end of file diff --git a/core/forms/post/PostTagForm.php b/core/forms/post/PostTagForm.php new file mode 100644 index 0000000..08a39d1 --- /dev/null +++ b/core/forms/post/PostTagForm.php @@ -0,0 +1,47 @@ +existing = ArrayHelper::getColumn($post->postTagAssignments, 'tag_id'); + } + parent::__construct($config); + } + + public function rules(): array + { + return [ + ['existing', 'each', 'rule' => ['integer']], + [['textNew'], 'string'], + ['existing', 'default', 'value' => []], + ['new_tags', 'each', 'rule' => ['string']], + ]; + } + + public function tagsList(int $type_id): array + { + return ArrayHelper::map(PostTag::find()->andWhere(['type_id' => $type_id])->orderBy('name')->asArray()->all(), 'id', 'name'); + } + + public function getNewNames(): array + { + return array_filter(array_map('trim', preg_split('#\s*,\s*#i', $this->textNew))); + } +} \ No newline at end of file diff --git a/core/forms/post/PostTagSingleForm.php b/core/forms/post/PostTagSingleForm.php new file mode 100644 index 0000000..1352fad --- /dev/null +++ b/core/forms/post/PostTagSingleForm.php @@ -0,0 +1,47 @@ +name = $tag->name; + $this->slug = $tag->slug; + $this->type_id = $tag->type_id; + $this->_tag = $tag; + } + parent::__construct($config); + } + + public function rules(): array + { + return [ + [['name', 'slug'], 'required'], + [['name', 'slug'], 'string', 'max' => 255], + ['type_id', 'integer'], + ['slug', SlugValidator::class], + [['name', 'slug'], 'unique', 'targetClass' => PostTag::class, 'filter' => $this->_tag ? ['<>', 'id', $this->_tag->id] : null] + ]; + } + + public function attributeLabels() + { + return [ + 'name' => Yii::t('post', 'Tag Name'), + 'slug' => Yii::t('post', 'SEO link'), + ]; + } +} \ No newline at end of file diff --git a/core/forms/post/PostTypeForm.php b/core/forms/post/PostTypeForm.php new file mode 100644 index 0000000..8dca225 --- /dev/null +++ b/core/forms/post/PostTypeForm.php @@ -0,0 +1,48 @@ +name = $type->name; + $this->singular = $type->singular; + $this->plural = $type->plural; + $this->_type = $type; + } + parent::__construct($config); + } + + public function rules(): array + { + return [ + [['name', 'plural', 'singular'], 'required'], + [['name', 'plural', 'singular'], 'string', 'max' => 255], + ['name', 'match', 'pattern' => '/^[a-z]+$/'], + [['name'], 'unique', 'targetClass' => PostType::class, 'filter' => $this->_type ? ['<>', 'id', $this->_type->id] : null], + ]; + } + + public function attributeLabels() + { + return [ + 'id' => Yii::t('post', 'ID'), + 'name' => Yii::t('post', 'Name'), + 'singular' => Yii::t('post', 'Singular'), + 'plural' => Yii::t('post', 'Plural'), + ]; + } +} \ No newline at end of file diff --git a/core/forms/post/search/PostCategorySearch.php b/core/forms/post/search/PostCategorySearch.php new file mode 100644 index 0000000..baf3dd8 --- /dev/null +++ b/core/forms/post/search/PostCategorySearch.php @@ -0,0 +1,60 @@ +tid = filter_input(INPUT_GET, 'tid', FILTER_VALIDATE_INT); + $query = PostCategory::find(); + + $dataProvider = new ActiveDataProvider([ + 'query' => $query, + 'sort' => [ + 'defaultOrder' => ['sort' => SORT_ASC] + ] + ]); + + $this->load($params); + + if (!$this->validate()) { + $query->where('0=1'); + return $dataProvider; + } + + $query->andFilterWhere([ + 'id' => $this->id, + 'type_id' => $this->tid, + ]); + + $query + ->andFilterWhere(['like', 'name', $this->name]) + ->andFilterWhere(['like', 'slug', $this->slug]) + ->andFilterWhere(['like', 'title', $this->title]); + + return $dataProvider; + } +} diff --git a/core/forms/post/search/PostCommentSearch.php b/core/forms/post/search/PostCommentSearch.php new file mode 100644 index 0000000..7a65427 --- /dev/null +++ b/core/forms/post/search/PostCommentSearch.php @@ -0,0 +1,76 @@ +with(['post']); + + $dataProvider = new ActiveDataProvider([ + 'query' => $query, + 'key' => function (PostComment $comment) { + return [ + 'post_id' => $comment->post_id, + 'id' => $comment->id, + ]; + }, + 'sort' => [ + 'defaultOrder' => ['id' => SORT_DESC] + ] + ]); + + $this->load($params); + + if (!$this->validate()) { + $query->where('0=1'); + return $dataProvider; + } + + $query->andFilterWhere([ + 'id' => $this->id, + 'post_id' => $this->post_id, + ]); + + $query + ->andFilterWhere(['like', 'text', $this->text]); + + return $dataProvider; + } + + public function activeList(): array + { + return [ + 1 => Yii::$app->formatter->asBoolean(true), + 0 => Yii::$app->formatter->asBoolean(false), + ]; + } +} diff --git a/core/forms/post/search/PostSearch.php b/core/forms/post/search/PostSearch.php new file mode 100644 index 0000000..68bed39 --- /dev/null +++ b/core/forms/post/search/PostSearch.php @@ -0,0 +1,73 @@ +tid = filter_input(INPUT_GET, 'tid', FILTER_VALIDATE_INT); + $query = Post::find(); + + $dataProvider = new ActiveDataProvider([ + 'query' => $query, + 'sort' => [ + 'defaultOrder' => ['id' => SORT_DESC] + ] + ]); + + $this->load($params); + + if (!$this->validate()) { + $query->where('0=1'); + return $dataProvider; + } + + $query->andFilterWhere([ + 'id' => $this->id, + 'type_id' => $this->tid, + 'category_id' => $this->category_id, + ]); + + $query + ->andFilterWhere(['like', 'title', $this->title]); + + return $dataProvider; + } + + public function categoriesList(): array + { + $this->tid = filter_input(INPUT_GET, 'tid', FILTER_VALIDATE_INT); + return ArrayHelper::map(PostCategory::find()->where(['type_id' => $this->tid])->orderBy('sort')->asArray()->all(), 'id', 'title'); + } + + public function statusList(): array + { + return PostHelper::statusList(); + } +} diff --git a/core/forms/post/search/PostTagSearch.php b/core/forms/post/search/PostTagSearch.php new file mode 100644 index 0000000..466a886 --- /dev/null +++ b/core/forms/post/search/PostTagSearch.php @@ -0,0 +1,58 @@ +tid = filter_input(INPUT_GET, 'tid', FILTER_VALIDATE_INT); + $query = PostTag::find(); + + $dataProvider = new ActiveDataProvider([ + 'query' => $query, + 'sort' => [ + 'defaultOrder' => ['name' => SORT_ASC] + ] + ]); + + $this->load($params); + + if (!$this->validate()) { + $query->where('0=1'); + return $dataProvider; + } + + $query->andFilterWhere([ + 'id' => $this->id, + 'type_id' => $this->tid, + ]); + + $query + ->andFilterWhere(['like', 'name', $this->name]) + ->andFilterWhere(['like', 'slug', $this->slug]); + + return $dataProvider; + } +} diff --git a/core/forms/post/search/PostTypeSearch.php b/core/forms/post/search/PostTypeSearch.php new file mode 100644 index 0000000..4ddede4 --- /dev/null +++ b/core/forms/post/search/PostTypeSearch.php @@ -0,0 +1,57 @@ + $query, + 'sort' => [ + 'defaultOrder' => ['id' => SORT_DESC] + ] + ]); + + $this->load($params); + + if (!$this->validate()) { + $query->where('0=1'); + return $dataProvider; + } + + $query->andFilterWhere([ + 'id' => $this->id, + ]); + + $query + ->andFilterWhere(['like', 'name', $this->name]) + ->andFilterWhere(['like', 'singular', $this->singular]) + ->andFilterWhere(['like', 'plural', $this->plural]); + + return $dataProvider; + } +} diff --git a/core/forms/user/ProfileEditForm.php b/core/forms/user/ProfileEditForm.php new file mode 100644 index 0000000..9778d02 --- /dev/null +++ b/core/forms/user/ProfileEditForm.php @@ -0,0 +1,50 @@ +email = $user->email; + $this->username = $user->username; + $this->_user = $user; + parent::__construct($config); + } + + public function rules(): array + { + return [ + [['email', 'username'], 'required'], + [['email', 'username'], 'trim'], + ['email', 'email'], + [['email', 'password'], 'string', 'max' => 255], + [['username', 'email'], 'unique', 'targetClass' => User::class, 'filter' => ['<>', 'id', $this->_user->id]], + ['username', 'string', 'min' => 2, 'max' => 255], + ]; + } + + public function attributeLabels() + { + return [ + 'email' => Yii::t('user', 'E-mail'), + 'username' => Yii::t('user', 'Username'), + 'password' => Yii::t('user', 'Password'), + ]; + } +} \ No newline at end of file diff --git a/core/forms/user/UserForm.php b/core/forms/user/UserForm.php new file mode 100644 index 0000000..e40f190 --- /dev/null +++ b/core/forms/user/UserForm.php @@ -0,0 +1,58 @@ +username = $user->username; + $this->email = $user->email; + $roles = Yii::$app->authManager->getRolesByUser( $user->id ); + $this->role = $roles ? reset( $roles )->name : null; + $this->_user = $user; + } + parent::__construct($config); + } + + public function rules(): array + { + return [ + [['username', 'email', 'role'], 'required'], + ['email', 'email'], + ['email', 'string', 'max' => 255], + [['username', 'email'], 'unique', 'targetClass' => User::class, 'filter' => ['<>', 'id', $this->_user->id]], + ['password', 'string', 'min' => 6], + ]; + } + + + public function attributeLabels() { + return [ + 'id' => Yii::t('user', 'ID'), + 'username' => Yii::t('user', 'Username'), + 'password' => Yii::t('user', 'Password'), + 'email' => Yii::t('user', 'E-mail'), + 'created_at' => Yii::t('user', 'Created At'), + 'role' => Yii::t('user', 'Role'), + ]; + } + + public function rolesList(): array + { + return ArrayHelper::map(\Yii::$app->authManager->getRoles(), 'name', 'description'); + } +} \ No newline at end of file diff --git a/core/helpers/PostHelper.php b/core/helpers/PostHelper.php new file mode 100644 index 0000000..675482a --- /dev/null +++ b/core/helpers/PostHelper.php @@ -0,0 +1,69 @@ + Yii::t('post', 'Draft'), + Post::STATUS_ACTIVE => Yii::t('post', 'Active'), + ]; + } + + public static function statusName($status): string + { + return ArrayHelper::getValue(self::statusList(), $status); + } + + public static function statusLabel($status): string + { + switch ($status) { + case Post::STATUS_DRAFT: + $class = 'label label-default'; + break; + case Post::STATUS_ACTIVE: + $class = 'label label-success'; + break; + default: + $class = 'label label-default'; + } + + return Html::tag('span', ArrayHelper::getValue(self::statusList(), $status), [ + 'class' => $class, + ]); + } + + public static function parseYoutubeUrl($url) + { + $urls = parse_url($url); + //url is http://youtu.be/xxxx + if($urls['host'] == 'youtu.be'){ + $id = ltrim($urls['path'],'/'); + } + //url is http://www.youtube.com/embed/xxxx + else if(strpos($urls['path'],'embed') == 1){ + $id = end(explode('/',$urls['path'])); + } + //url is xxxx only + else if(strpos($url,'/')===false){ + $id = $url; + } + //http://www.youtube.com/watch?feature=player_embedded&v=m-t4pcO99gI + //url is http://www.youtube.com/watch?v=xxxx + else{ + parse_str($urls['query']); + $id = $v; + if(!empty($feature)){ + $id = end(explode('v=',$urls['query'])); + } + } + return $id; + } +} \ No newline at end of file diff --git a/core/helpers/UserHelper.php b/core/helpers/UserHelper.php new file mode 100644 index 0000000..0af1baf --- /dev/null +++ b/core/helpers/UserHelper.php @@ -0,0 +1,42 @@ + Yii::t('user', 'Wait'), + User::STATUS_ACTIVE => Yii::t('user', 'Active'), + ]; + } + + public static function statusName($status): string + { + return ArrayHelper::getValue(self::statusList(), $status); + } + + public static function statusLabel($status): string + { + switch ($status) { + case User::STATUS_WAIT: + $class = 'label label-default'; + break; + case User::STATUS_ACTIVE: + $class = 'label label-success'; + break; + default: + $class = 'label label-default'; + } + + return Html::tag('span', ArrayHelper::getValue(self::statusList(), $status), [ + 'class' => $class, + ]); + } +} \ No newline at end of file diff --git a/core/jobs/AsyncEventJob.php b/core/jobs/AsyncEventJob.php new file mode 100644 index 0000000..d62c6ad --- /dev/null +++ b/core/jobs/AsyncEventJob.php @@ -0,0 +1,13 @@ +event = $event; + } +} \ No newline at end of file diff --git a/core/jobs/AsyncEventJobHandler.php b/core/jobs/AsyncEventJobHandler.php new file mode 100644 index 0000000..b7bf3f3 --- /dev/null +++ b/core/jobs/AsyncEventJobHandler.php @@ -0,0 +1,20 @@ +dispatcher = $dispatcher; + } + + public function handle(AsyncEventJob $job): void + { + $this->dispatcher->dispatch($job->event); + } +} \ No newline at end of file diff --git a/core/jobs/Job.php b/core/jobs/Job.php new file mode 100644 index 0000000..230f8f7 --- /dev/null +++ b/core/jobs/Job.php @@ -0,0 +1,19 @@ +resolveHandler(); + $listener($this, $queue); + } + + private function resolveHandler(): callable + { + return [\Yii::createObject(static::class . 'Handler'), 'handle']; + } +} \ No newline at end of file diff --git a/core/listeners/user/UserSignupConfirmedListener.php b/core/listeners/user/UserSignupConfirmedListener.php new file mode 100644 index 0000000..8da3141 --- /dev/null +++ b/core/listeners/user/UserSignupConfirmedListener.php @@ -0,0 +1,21 @@ +newsletter = $newsletter; + } + + public function handle(UserSignUpConfirmed $event): void + { + $this->newsletter->subscribe($event->user->email); + } +} \ No newline at end of file diff --git a/core/listeners/user/UserSignupRequestedListener.php b/core/listeners/user/UserSignupRequestedListener.php new file mode 100644 index 0000000..5220db3 --- /dev/null +++ b/core/listeners/user/UserSignupRequestedListener.php @@ -0,0 +1,32 @@ +mailer = $mailer; + } + + public function handle(UserSignUpRequested $event): void + { + $sent = $this->mailer + ->compose( + ['html' => 'auth/signup/confirm-html', 'text' => 'auth/signup/confirm-text'], + ['user' => $event->user] + ) + ->setTo($event->user->email) + ->setSubject('Signup confirm') + ->send(); + + if (!$sent) { + throw new \RuntimeException('Email sending error.'); + } + } +} \ No newline at end of file diff --git a/core/repositories/NotFoundException.php b/core/repositories/NotFoundException.php new file mode 100644 index 0000000..a6b232c --- /dev/null +++ b/core/repositories/NotFoundException.php @@ -0,0 +1,8 @@ +save()) { + throw new \RuntimeException('Saving error.'); + } + } + + public function remove(Page $page): void + { + if (!$page->delete()) { + throw new \RuntimeException('Removing error.'); + } + } +} \ No newline at end of file diff --git a/core/repositories/page/read/PageReadRepository.php b/core/repositories/page/read/PageReadRepository.php new file mode 100644 index 0000000..c6f25e7 --- /dev/null +++ b/core/repositories/page/read/PageReadRepository.php @@ -0,0 +1,23 @@ +andWhere(['>', 'depth', 0])->all(); + } + + public function find($id): ?Page + { + return Page::findOne($id); + } + + public function findBySlug($slug): ?Page + { + return Page::find()->andWhere(['slug' => $slug])->andWhere(['>', 'depth', 0])->one(); + } +} \ No newline at end of file diff --git a/core/repositories/post/PostCategoryRepository.php b/core/repositories/post/PostCategoryRepository.php new file mode 100644 index 0000000..e3dc40d --- /dev/null +++ b/core/repositories/post/PostCategoryRepository.php @@ -0,0 +1,31 @@ +save()) { + throw new \RuntimeException('Saving error.'); + } + } + + public function remove(PostCategory $category): void + { + if (!$category->delete()) { + throw new \RuntimeException('Removing error.'); + } + } +} \ No newline at end of file diff --git a/core/repositories/post/PostRepository.php b/core/repositories/post/PostRepository.php new file mode 100644 index 0000000..a796bbe --- /dev/null +++ b/core/repositories/post/PostRepository.php @@ -0,0 +1,36 @@ +andWhere(['category_id' => $id])->exists(); + } + + public function save(Post $post): void + { + if (!$post->save()) { + throw new \RuntimeException('Saving error.'); + } + } + + public function remove(Post $post): void + { + if (!$post->delete()) { + throw new \RuntimeException('Removing error.'); + } + } +} \ No newline at end of file diff --git a/core/repositories/post/PostTagRepository.php b/core/repositories/post/PostTagRepository.php new file mode 100644 index 0000000..3c0a4ef --- /dev/null +++ b/core/repositories/post/PostTagRepository.php @@ -0,0 +1,36 @@ + $name, 'type_id' => $type_id]); + } + + public function save(PostTag $tag): void + { + if (!$tag->save()) { + throw new \RuntimeException('Saving error.'); + } + } + + public function remove(PostTag $tag): void + { + if (!$tag->delete()) { + throw new \RuntimeException('Removing error.'); + } + } +} \ No newline at end of file diff --git a/core/repositories/post/PostTypeRepository.php b/core/repositories/post/PostTypeRepository.php new file mode 100644 index 0000000..2e69b59 --- /dev/null +++ b/core/repositories/post/PostTypeRepository.php @@ -0,0 +1,36 @@ + $name]); + } + + public function save(PostType $type): void + { + if (!$type->save()) { + throw new \RuntimeException('Saving error.'); + } + } + + public function remove(PostType $type): void + { + if (!$type->delete()) { + throw new \RuntimeException('Removing error.'); + } + } +} \ No newline at end of file diff --git a/core/repositories/post/read/PostCategoryReadRepository.php b/core/repositories/post/read/PostCategoryReadRepository.php new file mode 100644 index 0000000..a3f95dd --- /dev/null +++ b/core/repositories/post/read/PostCategoryReadRepository.php @@ -0,0 +1,23 @@ +orderBy('sort')->all(); + } + + public function find($id): ?PostCategory + { + return PostCategory::findOne($id); + } + + public function findBySlug($slug): ?PostCategory + { + return PostCategory::find()->andWhere(['slug' => $slug])->one(); + } +} \ No newline at end of file diff --git a/core/repositories/post/read/PostReadRepository.php b/core/repositories/post/read/PostReadRepository.php new file mode 100644 index 0000000..c7e0a2c --- /dev/null +++ b/core/repositories/post/read/PostReadRepository.php @@ -0,0 +1,95 @@ +active()->count(); + } + + public function getAllByRange($offset, $limit): array + { + return Post::find()->active()->orderBy(['id' => SORT_ASC])->limit($limit)->offset($offset)->all(); + } + + public function getAll($tid): DataProviderInterface + { + $query = Post::find()->active()->andWhere(['type_id' => $tid])->with('category'); + return $this->getProvider($query); + } + + public function getAllByCategory(PostCategory $category): DataProviderInterface + { + $query = Post::find()->active()->andWhere(['category_id' => $category->id])->with('category'); + return $this->getProvider($query); + } + + public function findNext(int $id): ?Post + { + return Post::find()->active()->andWhere(['>', 'id', $id])->one(); + } + + public function findPrev(int $id): ?Post + { + return Post::find()->active()->andWhere(['<', 'id', $id])->orderBy(['id' => SORT_DESC])->one(); + } + + + public function getAllByTag(PostTag $tag): DataProviderInterface + { + $query = Post::find()->alias('p')->active('p')->with('category'); + $query->joinWith(['postTagAssignments ta'], false); + $query->andWhere(['ta.tag_id' => $tag->id]); + $query->groupBy('p.id'); + return $this->getProvider($query); + } + + public function getByTagsId(Post $post, array $tag_ids, int $limit = 15): DataProviderInterface + { + $query = Post::find()->alias('p')->active('p')->with('category'); + $query->joinWith(['postTagAssignments ta'], false); + $query->andWhere(['ta.tag_id' => $tag_ids]); + $query->andWhere(['p.type_id' => $post->type_id]); + $query->andWhere(['!=', 'p.id', $post->id]); + $query->groupBy('p.id'); + $query->limit($limit); + return $this->getProvider($query); + } + + public function getLast($limit): array + { + return Post::find()->with('category')->orderBy(['id' => SORT_DESC])->limit($limit)->all(); + } + + public function getPopular($limit): array + { + return Post::find()->with('category')->orderBy(['comments_count' => SORT_DESC])->limit($limit)->all(); + } + + public function find($id): ?Post + { + return Post::find()->active()->andWhere(['id' => $id])->one(); + } + + private function getProvider(ActiveQuery $query): ActiveDataProvider + { + return new ActiveDataProvider([ + 'query' => $query, + 'sort' => ['defaultOrder' => ['created_at' => SORT_DESC]], + ]); + } + + public function findBySlug($slug): ?Post + { + return Post::find()->andWhere(['slug' => $slug])->one(); + } +} \ No newline at end of file diff --git a/core/repositories/post/read/PostTagReadRepository.php b/core/repositories/post/read/PostTagReadRepository.php new file mode 100644 index 0000000..4710afb --- /dev/null +++ b/core/repositories/post/read/PostTagReadRepository.php @@ -0,0 +1,18 @@ +andWhere(['slug' => $slug])->one(); + } +} \ No newline at end of file diff --git a/core/repositories/post/read/PostTypeReadRepository.php b/core/repositories/post/read/PostTypeReadRepository.php new file mode 100644 index 0000000..9079185 --- /dev/null +++ b/core/repositories/post/read/PostTypeReadRepository.php @@ -0,0 +1,34 @@ +with('category')->orderBy(['id' => SORT_DESC])->limit($limit)->all(); + } + + public function getPopular($limit): array + { + return Post::find()->with('category')->orderBy(['comments_count' => SORT_DESC])->limit($limit)->all(); + } + + public function find($id): ?PostType + { + return PostType::find()->andWhere(['id' => $id])->one(); + } + + public function findByName($name): ?PostType + { + return PostType::find()->andWhere(['name' => $name])->one(); + } +} \ No newline at end of file diff --git a/core/repositories/slider/SliderRepository.php b/core/repositories/slider/SliderRepository.php new file mode 100644 index 0000000..bf2905b --- /dev/null +++ b/core/repositories/slider/SliderRepository.php @@ -0,0 +1,31 @@ +save()) { + throw new \RuntimeException('Saving error.'); + } + } + + public function remove(Slider $slider): void + { + if (!$slider->delete()) { + throw new \RuntimeException('Removing error.'); + } + } +} \ No newline at end of file diff --git a/core/repositories/user/UserRepository.php b/core/repositories/user/UserRepository.php new file mode 100644 index 0000000..62ee2ae --- /dev/null +++ b/core/repositories/user/UserRepository.php @@ -0,0 +1,76 @@ +dispatcher = $dispatcher; + } + + public function findByUsernameOrEmail($value): ?User + { + return User::find()->andWhere(['or', ['username' => $value], ['email' => $value]])->one(); + } + + public function findByNetworkIdentity($network, $identity): ?User + { + return User::find()->joinWith('networks n')->andWhere(['n.network' => $network, 'n.identity' => $identity])->one(); + } + + public function get($id): User + { + return $this->getBy(['id' => $id]); + } + + public function getByEmailConfirmToken($token): User + { + return $this->getBy(['email_confirm_token' => $token]); + } + + public function getByEmail($email): User + { + return $this->getBy(['email' => $email]); + } + + public function getByPasswordResetToken($token): User + { + return $this->getBy(['password_reset_token' => $token]); + } + + public function existsByPasswordResetToken(string $token): bool + { + return (bool) User::findByPasswordResetToken($token); + } + + public function save(User $user): void + { + if (!$user->save()) { + throw new \RuntimeException('Saving error.'); + } + $this->dispatcher->dispatchAll($user->releaseEvents()); + } + + public function remove(User $user): void + { + if (!$user->delete()) { + throw new \RuntimeException('Removing error.'); + } + $this->dispatcher->dispatchAll($user->releaseEvents()); + } + + private function getBy(array $condition): User + { + if (!$user = User::find()->andWhere($condition)->limit(1)->one()) { + throw new NotFoundException('User not found.'); + } + return $user; + } +} \ No newline at end of file diff --git a/core/repositories/user/read/UserReadRepository.php b/core/repositories/user/read/UserReadRepository.php new file mode 100644 index 0000000..6152d9b --- /dev/null +++ b/core/repositories/user/read/UserReadRepository.php @@ -0,0 +1,23 @@ + $username, 'status' => User::STATUS_ACTIVE]); + } + + public function findActiveById($id): ?User + { + return User::findOne(['id' => $id, 'status' => User::STATUS_ACTIVE]); + } +} \ No newline at end of file diff --git a/core/services/ContactService.php b/core/services/ContactService.php new file mode 100644 index 0000000..b47467b --- /dev/null +++ b/core/services/ContactService.php @@ -0,0 +1,31 @@ +adminEmail = $adminEmail; + $this->mailer = $mailer; + } + + public function send(ContactForm $form): void + { + $sent = $this->mailer->compose() + ->setTo($this->adminEmail) + ->setSubject($form->subject) + ->setTextBody($form->body) + ->send(); + + if (!$sent) { + throw new \RuntimeException('Sending error.'); + } + } +} \ No newline at end of file diff --git a/core/services/PageManageService.php b/core/services/PageManageService.php new file mode 100644 index 0000000..2a9bdff --- /dev/null +++ b/core/services/PageManageService.php @@ -0,0 +1,91 @@ +pages = $pages; + } + + public function create(PageForm $form): Page + { + $parent = $this->pages->get($form->parentId); + $page = Page::create( + $form->title, + $form->slug, + $form->content, + new Meta( + $form->meta->title, + $form->meta->description, + $form->meta->keywords + ) + ); + $page->appendTo($parent); + $this->pages->save($page); + return $page; + } + + public function edit($id, PageForm $form): void + { + $page = $this->pages->get($id); + $this->assertIsNotRoot($page); + $page->edit( + $form->title, + $form->slug, + $form->content, + new Meta( + $form->meta->title, + $form->meta->description, + $form->meta->keywords + ) + ); + if ($form->parentId !== $page->parent->id) { + $parent = $this->pages->get($form->parentId); + $page->appendTo($parent); + } + $this->pages->save($page); + } + + public function moveUp($id): void + { + $page = $this->pages->get($id); + $this->assertIsNotRoot($page); + if ($prev = $page->prev) { + $page->insertBefore($prev); + } + $this->pages->save($page); + } + + public function moveDown($id): void + { + $page = $this->pages->get($id); + $this->assertIsNotRoot($page); + if ($next = $page->next) { + $page->insertAfter($next); + } + $this->pages->save($page); + } + + public function remove($id): void + { + $page = $this->pages->get($id); + $this->assertIsNotRoot($page); + $this->pages->remove($page); + } + + private function assertIsNotRoot(Page $page): void + { + if ($page->isRoot()) { + throw new \DomainException('Unable to manage the root page.'); + } + } +} \ No newline at end of file diff --git a/core/services/PermissionManager.php b/core/services/PermissionManager.php new file mode 100644 index 0000000..170abcc --- /dev/null +++ b/core/services/PermissionManager.php @@ -0,0 +1,128 @@ +manager = $manager; + } + + public function create($name, $description = '', $ruleName = null, $data = null) + { + $am = $this->manager; + if ($permission = $am->getPermission($name)) { + throw new \DomainException('Permission "' . $name . '" is already exist.'); + } + $newPermission = $am->createPermission($name); + $newPermission->description = $description; + $newPermission->data = $data == null ? null : Json::decode($data); + $newPermission->ruleName = empty($ruleName) ? null : $ruleName; + try { + $am->add($newPermission); + } + catch (\ReflectionException $e) + { + throw new \DomainException($e->getMessage()); + } + } + + public function update($name, $newName, $description = '', $ruleName = null, $data = null) + { + $am = $this->manager; + if (!$permission = $am->getPermission($name)) { + throw new \DomainException('Permission "' . $name . '" does not exist.'); + } + $permission->name = $newName; + $permission->description = $description; + $permission->ruleName = empty($ruleName) ? null : $ruleName; + $permission->data = $data == null ? null : Json::decode($data); + try { + $am->update($name, $permission); + } + catch (\ReflectionException $e) + { + throw new \DomainException($e->getMessage()); + } + } + + public function delete($name) + { + $am = $this->manager; + if (!$permission = $am->getPermission($name)) + { + throw new \DomainException('Permission "' . $name . '" does not exist.'); + } + $am->remove($permission); + } + + public function assign($roleName, $permissionName) + { + $am = $this->manager; + if (!$role = $am->getRole($roleName)) { + throw new \DomainException('Role "' . $roleName . '" does not exist.'); + } + if (!$permission = $am->getPermission($permissionName)) + { + throw new \DomainException('Permission "' . $permissionName . '" does not exist.'); + } + $am->addChild($role, $permission); + } + + public function unassign($roleName, $permissionName) + { + $am = $this->manager; + if (!$role = $am->getRole($roleName)) { + throw new \DomainException('Role "' . $roleName . '" does not exist.'); + } + if (!$permission = $am->getPermission($permissionName)) + { + throw new \DomainException('Permission "' . $permissionName . '" does not exist.'); + } + if (!$am->hasChild($role, $permission)) + { + throw new \DomainException('Permission "' . $permissionName . '" does not assigned to "' . $roleName . '".'); + } + $am->removeChild($role, $permission); + } + + public function getPermissions() + { + $am = $this->manager; + return $am->getPermissions(); + } + + public function getPermission($name) + { + $am = $this->manager; + if (!$permission = $am->getPermission($name)) { + throw new \DomainException('Permission "' . $name . '" does not exist.'); + } + return $permission; + } + + public function getPermissionsSelectArray() + { + $data = ArrayHelper::map($this->getPermissions(), 'name', 'description'); + return $data; + } + + public function getPermissionsSelectArrayByRole($id) + { + $am = $this->manager; + $data = ArrayHelper::getColumn($am->getPermissionsByRole($id), 'name'); + return $data; + } +} \ No newline at end of file diff --git a/core/services/RoleManager.php b/core/services/RoleManager.php new file mode 100644 index 0000000..b26ede5 --- /dev/null +++ b/core/services/RoleManager.php @@ -0,0 +1,212 @@ +manager = $manager; + } + + public function assign($userId, $name) + { + $am = $this->manager; + $am->revokeAll($userId); + if (!$role = $am->getRole($name)) { + throw new \DomainException('Role "' . $name . '" does not exist.'); + } + $am->revokeAll($userId); + $am->assign($role, $userId); + } + + public function create($name, $description = '', $ruleName = null, $data = null) + { + $am = $this->manager; + if ($role = $am->getRole($name)) { + throw new \DomainException('Role "' . $name . '" is already exist.'); + } + $newRole = $am->createRole($name); + $newRole->description = $description; + $newRole->data = $data == null ? null : Json::decode($data); + $newRole->ruleName = empty($ruleName) ? null : $ruleName; + try { + $am->add($newRole); + } + catch (\ReflectionException $e) + { + throw new \DomainException($e->getMessage()); + } + } + + public function update($name, $newName, $description = '', $ruleName = null, $data = null) + { + $am = $this->manager; + if (!$role = $am->getRole($name)) { + throw new \DomainException('Role "' . $name . '" does not exist.'); + } + if (($name == 'admin' || $name == 'user') && $name != $newName) + { + throw new \DomainException('Role "' . $name . '" can not be renamed.'); + } + $role->name = $newName; + $role->description = $description; + $role->ruleName = empty($ruleName) ? null : $ruleName; + $role->data = $data == null ? null : Json::decode($data); + try { + $am->update($name, $role); + } + catch (\ReflectionException $e) + { + throw new \DomainException($e->getMessage()); + } + } + + public function delete($name) + { + $am = $this->manager; + if (!$role = $am->getRole($name)) { + throw new \DomainException('Role "' . $name . '" does not exist.'); + } + if ($role->name == 'admin' || $role->name == 'user') + { + throw new \DomainException('Can not delete role "' . $name . '"'); + } + $am->remove($role); + } + + public function child($parentRoleName, $childRoleName) + { + $am = $this->manager; + if (!$parentRole = $am->getRole($parentRoleName)) { + throw new \DomainException('Parent role "' . $parentRoleName . '" does not exist.'); + } + if (!$childRole = $am->getRole($childRoleName)) { + throw new \DomainException('Child role "' . $childRoleName . '" does not exist.'); + } + if ($parentRoleName == $childRoleName) + { + throw new \DomainException('Can not add a role to yourself.'); + } + $am->addChild($parentRole, $childRole); + } + + public function killchild($parentRoleName, $childRoleName) + { + $am = $this->manager; + if (!$parentRole = $am->getRole($parentRoleName)) { + throw new \DomainException('Parent role "' . $parentRoleName . '" does not exist.'); + } + if (!$childRole = $am->getRole($childRoleName)) { + throw new \DomainException('Child role "' . $childRoleName . '" does not exist.'); + } + if ($parentRoleName == $childRoleName) + { + throw new \DomainException('Can not kill yourself as child.'); + } + if (!$am->hasChild($parentRole, $childRole)) + { + throw new \DomainException('Role "' . $childRoleName . '" does not assigned to "' . $parentRoleName . '".'); + } + $am->removeChild($parentRole, $childRole); + } + + public function getRoles() + { + $am = $this->manager; + return $am->getRoles(); + } + + public function getRole($name) + { + $am = $this->manager; + if (!$role = $am->getRole($name)) { + throw new \DomainException('Role "' . $name . '" does not exist.'); + } + return $role; + } + + public function getChildRoles($name) + { + $am = $this->manager; + return $am->getChildRoles($name); + } + + public function getRolesNamesByUser($id) + { + $am = $this->manager; + $roles = $am->getRolesByUser($id); + return array_map(function(Role $role){ + return $role->name; + }, $roles); + } + + public function getRolesListArray() + { + $data = array_map(function (Role $role){ + return [ + 'name' => $role->name, + 'description' => $role->description, + ]; + }, $this->getRoles()); + return $data; + } + + public function getRolesSelectArray() + { + $data = ArrayHelper::map($this->getRoles(), 'name', 'description'); + return $data; + } + + public function getRolesSelectArrayByRole($id) + { + $am = $this->manager; + $data = ArrayHelper::getColumn($am->getChildRoles($id), 'name'); + return $data; + } + + public function saveChildren($roleName, $rolesNames, $permissionNames) + { + $am = $this->manager; + $role = $am->getRole($roleName); + $am->removeChildren($role); + + if (is_array($rolesNames) && !empty($rolesNames)) { + foreach ($rolesNames as $name) { + $childRole = $am->getRole($name); + $am->addChild($role, $childRole); + } + } + + if (is_array($permissionNames) && !empty($permissionNames)) { + foreach ($permissionNames as $name) { + $childPermission = $am->getPermission($name); + $am->addChild($role, $childPermission); + } + } + } + + public static function getCurrentRoleName() + { + $roles = \Yii::$app->authManager->getRolesByUser(\Yii::$app->user->id); + if (!$roles) { + return null; + } + reset($roles); + /* @var $role \yii\rbac\Role */ + $role = current($roles); + + return $role->name; + } +} \ No newline at end of file diff --git a/core/services/SliderService.php b/core/services/SliderService.php new file mode 100644 index 0000000..c29aebc --- /dev/null +++ b/core/services/SliderService.php @@ -0,0 +1,58 @@ +sliders = $sliders; + } + + public function create(SliderForm $form): Slider + { + $slider = Slider::create( + $form->title, + $form->tagline, + $form->url, + $form->sort + ); + + if ($form->image) { + $slider->setImage($form->image); + } + + $this->sliders->save($slider); + return $slider; + } + + public function edit($id, SliderForm $form): void + { + $slider = $this->sliders->get($id); + + $slider->edit( + $form->title, + $form->tagline, + $form->url, + $form->sort + ); + + if ($form->image) { + $slider->setImage($form->image); + } + + $this->sliders->save($slider); + } + + public function remove($id): void + { + $tag = $this->sliders->get($id); + $this->sliders->remove($tag); + } +} \ No newline at end of file diff --git a/core/services/TransactionManager.php b/core/services/TransactionManager.php new file mode 100644 index 0000000..feb46a8 --- /dev/null +++ b/core/services/TransactionManager.php @@ -0,0 +1,30 @@ +dispatcher = $dispatcher; + } + + public function wrap(callable $function): void + { + $transaction = \Yii::$app->db->beginTransaction(); + try { + $this->dispatcher->defer(); + $function(); + $transaction->commit(); + $this->dispatcher->release(); + } catch (\Exception $e) { + $transaction->rollBack(); + $this->dispatcher->clean(); + throw $e; + } + } +} \ No newline at end of file diff --git a/core/services/auth/AuthService.php b/core/services/auth/AuthService.php new file mode 100644 index 0000000..971090c --- /dev/null +++ b/core/services/auth/AuthService.php @@ -0,0 +1,27 @@ +users = $users; + } + + public function auth(LoginForm $form): User + { + $user = $this->users->findByUsernameOrEmail($form->username); + if (!$user || !$user->isActive() || !$user->validatePassword($form->password)) { + throw new \DomainException(Yii::t('auth', 'Undefined user or password.')); + } + return $user; + } +} \ No newline at end of file diff --git a/core/services/auth/NetworkService.php b/core/services/auth/NetworkService.php new file mode 100644 index 0000000..7d93afb --- /dev/null +++ b/core/services/auth/NetworkService.php @@ -0,0 +1,36 @@ +users = $users; + } + + public function auth($network, $identity): User + { + if ($user = $this->users->findByNetworkIdentity($network, $identity)) { + return $user; + } + $user = User::signupByNetwork($network, $identity); + $this->users->save($user); + return $user; + } + + public function attach($id, $network, $identity): void + { + if ($this->users->findByNetworkIdentity($network, $identity)) { + throw new \DomainException('Network is already signed up.'); + } + $user = $this->users->get($id); + $user->attachNetwork($network, $identity); + $this->users->save($user); + } +} \ No newline at end of file diff --git a/core/services/auth/PasswordResetService.php b/core/services/auth/PasswordResetService.php new file mode 100644 index 0000000..8f07ad2 --- /dev/null +++ b/core/services/auth/PasswordResetService.php @@ -0,0 +1,63 @@ +mailer = $mailer; + $this->users = $users; + } + + public function request(PasswordResetRequestForm $form): void + { + $user = $this->users->getByEmail($form->email); + + if (!$user->isActive()) { + throw new \DomainException(Yii::t('auth', 'User is not active.')); + } + + $user->requestPasswordReset(); + $this->users->save($user); + + $sent = $this->mailer + ->compose( + ['html' => 'auth/reset/confirm-html', 'text' => 'auth/reset/confirm-text'], + ['user' => $user] + ) + ->setTo($user->email) + ->setSubject('Password reset for ' . Yii::$app->name) + ->send(); + + if (!$sent) { + throw new \RuntimeException('Sending error.'); + } + } + + public function validateToken($token): void + { + if (empty($token) || !is_string($token)) { + throw new \DomainException('Password reset token cannot be blank.'); + } + if (!$this->users->existsByPasswordResetToken($token)) { + throw new \DomainException('Wrong password reset token.'); + } + } + + public function reset(string $token, ResetPasswordForm $form): void + { + $user = $this->users->getByPasswordResetToken($token); + $user->resetPassword($form->password); + $this->users->save($user); + } +} \ No newline at end of file diff --git a/core/services/auth/SignupService.php b/core/services/auth/SignupService.php new file mode 100644 index 0000000..1127849 --- /dev/null +++ b/core/services/auth/SignupService.php @@ -0,0 +1,52 @@ +users = $users; + $this->roles = $roles; + $this->transaction = $transaction; + } + + public function signup(SignupForm $form): void + { + $user = User::requestSignup( + $form->username, + $form->email, + $form->password + ); + $this->transaction->wrap(function () use ($user) { + $this->users->save($user); + $this->roles->assign($user->id, Rbac::ROLE_USER); + }); + } + + public function confirm($token): void + { + if (empty($token)) { + throw new \DomainException('Empty confirm token.'); + } + $user = $this->users->getByEmailConfirmToken($token); + $user->confirmSignup(); + $this->users->save($user); + } +} \ No newline at end of file diff --git a/core/services/newsletter/MailChimp.php b/core/services/newsletter/MailChimp.php new file mode 100644 index 0000000..97ca775 --- /dev/null +++ b/core/services/newsletter/MailChimp.php @@ -0,0 +1,35 @@ +client = $client; + $this->listId = $listId; + } + + public function subscribe($email): void + { + $this->client->post('lists/' . $this->listId . '/members', [ + 'email_address' => $email, + 'status' => 'subscribed', + ]); + if ($error = $this->client->getLastError()) { + throw new \RuntimeException($error); + } + } + + public function unsubscribe($email): void + { + $hash = $this->client->subscriberHash($email); + $this->client->delete('lists/' . $this->listId . '/members/' . $hash); + if ($error = $this->client->getLastError()) { + throw new \RuntimeException($error); + } + } +} \ No newline at end of file diff --git a/core/services/newsletter/Newsletter.php b/core/services/newsletter/Newsletter.php new file mode 100644 index 0000000..47373bd --- /dev/null +++ b/core/services/newsletter/Newsletter.php @@ -0,0 +1,9 @@ +categories = $categories; + $this->posts = $posts; + } + + public function create(PostCategoryForm $form): PostCategory + { + $category = PostCategory::create( + $form->name, + $form->slug, + $form->title, + $form->description, + $form->sort, + $form->type_id, + new Meta( + $form->meta->title, + $form->meta->description, + $form->meta->keywords + ) + ); + $this->categories->save($category); + return $category; + } + + public function edit($id, PostCategoryForm $form): void + { + $category = $this->categories->get($id); + $category->edit( + $form->name, + $form->slug, + $form->title, + $form->description, + $form->sort, + $form->type_id, + new Meta( + $form->meta->title, + $form->meta->description, + $form->meta->keywords + ) + ); + $this->categories->save($category); + } + + public function remove($id): void + { + $category = $this->categories->get($id); + if ($this->posts->existsByCategory($category->id)) { + throw new \DomainException('Unable to remove category with posts.'); + } + $this->categories->remove($category); + } +} \ No newline at end of file diff --git a/core/services/post/PostCommentManageService.php b/core/services/post/PostCommentManageService.php new file mode 100644 index 0000000..1f9e728 --- /dev/null +++ b/core/services/post/PostCommentManageService.php @@ -0,0 +1,37 @@ +posts = $posts; + } + + public function edit($postId, $id, PostCommentEditForm $form): void + { + $post = $this->posts->get($postId); + $post->editComment($id, $form->parentId, $form->text); + $this->posts->save($post); + } + + public function activate($postId, $id): void + { + $post = $this->posts->get($postId); + $post->activateComment($id); + $this->posts->save($post); + } + + public function remove($postId, $id): void + { + $post = $this->posts->get($postId); + $post->removeComment($id); + $this->posts->save($post); + } +} \ No newline at end of file diff --git a/core/services/post/PostCommentService.php b/core/services/post/PostCommentService.php new file mode 100644 index 0000000..7599a49 --- /dev/null +++ b/core/services/post/PostCommentService.php @@ -0,0 +1,32 @@ +posts = $posts; + $this->users = $users; + } + + public function create($postId, $userId, PostCommentForm $form): PostComment + { + $post = $this->posts->get($postId); + $user = $this->users->get($userId); + + $comment = $post->addComment($user->id, $form->parentId, $form->text); + + $this->posts->save($post); + + return $comment; + } +} \ No newline at end of file diff --git a/core/services/post/PostManageService.php b/core/services/post/PostManageService.php new file mode 100644 index 0000000..242cfcb --- /dev/null +++ b/core/services/post/PostManageService.php @@ -0,0 +1,163 @@ +posts = $posts; + $this->categories = $categories; + $this->tags = $tags; + $this->transaction = $transaction; + } + + public function create(PostForm $form): Post + { + $category = $this->categories->get($form->category_id); + + $post = Post::create( + $category->id, + $form->title, + $form->slug, + $form->description, + $form->content, + $form->type_id, + $form->published_at, + $form->video, + new Meta( + $form->meta->title, + $form->meta->description, + $form->meta->keywords + ) + ); + + if ($form->image) { + $post->setImage($form->image); + } + else if ($form->video) { + $src = 'https://i.ytimg.com/vi/' . PostHelper::parseYoutubeUrl($post->video) . '/maxresdefault.jpg'; + $filename = (new Security())->generateRandomString(15) . '.jpg'; + copy($src, \Yii::getAlias(Post::FILE_ORIGINAL_PATH . '/' . $post->id . '.jpg')); + $post->image = $filename; + } + + $this->transaction->wrap(function () use ($post, $form) { + + if (is_array($form->tags->new_tags) && !empty($form->tags->new_tags)) { + foreach ( $form->tags->new_tags as $tag_id => $tag_name ) { + if ( !$tag = $this->tags->findByName( $tag_name, $form->type_id ) ) { + $tag = PostTag::create( $tag_name, Inflector::slug( $tag_name, '_' ), $form->type_id ); + $this->tags->save( $tag ); + } + $post->assignTag( $tag->id ); + } + } + $this->posts->save($post); + }); + + return $post; + } + + public function edit($id, PostForm $form): void + { + $post = $this->posts->get($id); + $category = $this->categories->get($form->category_id); + + $post->edit( + $category->id, + $form->title, + $form->slug, + $form->description, + $form->content, + $form->published_at, + $form->video, + new Meta( + $form->meta->title, + $form->meta->description, + $form->meta->keywords + ) + ); + + if ($form->image) { + $post->cleanFiles(); + $post->setImage($form->image); + } + elseif ($form->video && (!$post->image || $form->reset_image)) { + $post->cleanFiles(); + $src = 'https://i.ytimg.com/vi/' . PostHelper::parseYoutubeUrl($post->video) . '/maxresdefault.jpg'; + $filename = (new Security())->generateRandomString(15) . '.jpg'; + copy($src, \Yii::getAlias(Post::FILE_ORIGINAL_PATH . '/' . $post->id . '.jpg')); + $post->image = $filename; + } + elseif ($post->image && $form->reset_image) { + $post->cleanFiles(); + //Post::updateAll(['image' => null], ['id' => $post->id]); + $post->image = null; + $post->updateAttributes(['image']); + } + + $this->transaction->wrap(function () use ($post, $form) { + $post->revokeTags(); + $this->posts->save($post); + + $tag_updated = false; + if (is_array($form->tags->new_tags) && !empty($form->tags->new_tags)) { + foreach ( $form->tags->new_tags as $tag_id => $tag_name ) { + if ( ! $tag = $this->tags->findByName( $tag_name, $form->type_id ) ) { + $tag = PostTag::create( $tag_name, Inflector::slug( $tag_name, '_' ), $form->type_id ); + $this->tags->save( $tag ); + } + $post->assignTag( $tag->id ); + $tag_updated = true; + } + } + + if ($tag_updated) { + $this->posts->save( $post ); + } + }); + } + + public function activate($id): void + { + $post = $this->posts->get($id); + $post->activate(); + $this->posts->save($post); + } + + public function draft($id): void + { + $post = $this->posts->get($id); + $post->draft(); + $this->posts->save($post); + } + + public function remove($id): void + { + $post = $this->posts->get($id); + $this->posts->remove($post); + } +} \ No newline at end of file diff --git a/core/services/post/PostTagManageService.php b/core/services/post/PostTagManageService.php new file mode 100644 index 0000000..f63f1e6 --- /dev/null +++ b/core/services/post/PostTagManageService.php @@ -0,0 +1,45 @@ +tags = $tags; + } + + public function create(PostTagSingleForm $form): PostTag + { + $tag = PostTag::create( + $form->name, + $form->slug, + $form->type_id + ); + $this->tags->save($tag); + return $tag; + } + + public function edit($id, PostTagSingleForm $form): void + { + $tag = $this->tags->get($id); + $tag->edit( + $form->name, + $form->slug, + $form->type_id + ); + $this->tags->save($tag); + } + + public function remove($id): void + { + $tag = $this->tags->get($id); + $this->tags->remove($tag); + } +} \ No newline at end of file diff --git a/core/services/post/PostTypeService.php b/core/services/post/PostTypeService.php new file mode 100644 index 0000000..9e1fa95 --- /dev/null +++ b/core/services/post/PostTypeService.php @@ -0,0 +1,45 @@ +types = $types; + } + + public function create(PostTypeForm $form): PostType + { + $type = PostType::create( + $form->name, + $form->singular, + $form->plural + ); + $this->types->save($type); + return $type; + } + + public function edit($id, PostTypeForm $form): void + { + $type = $this->types->get($id); + $type->edit( + $form->name, + $form->singular, + $form->plural + ); + $this->types->save($type); + } + + public function remove($id): void + { + $tag = $this->types->get($id); + $this->types->remove($tag); + } +} \ No newline at end of file diff --git a/core/services/user/ProfileService.php b/core/services/user/ProfileService.php new file mode 100644 index 0000000..29d84fc --- /dev/null +++ b/core/services/user/ProfileService.php @@ -0,0 +1,27 @@ +users = $users; + } + + public function edit($id, ProfileEditForm $form): void + { + $user = $this->users->get($id); + $user->editProfile($form->email, $form->username, $form->password); + $this->users->save($user); + } +} \ No newline at end of file diff --git a/core/services/user/UserManageService.php b/core/services/user/UserManageService.php new file mode 100644 index 0000000..acac74e --- /dev/null +++ b/core/services/user/UserManageService.php @@ -0,0 +1,83 @@ +repository = $repository; + $this->roles = $roles; + $this->transaction = $transaction; + //$this->newsletter = $newsletter; + } + + public function create(UserForm $form): User + { + $user = User::create( + $form->username, + $form->email, + $form->password + ); + $this->transaction->wrap(function () use ($user, $form) { + $this->repository->save($user); + $this->roles->assign($user->id, $form->role); + //$this->newsletter->subscribe($user->email); + }); + return $user; + } + + public function edit($id, UserForm $form): void + { + $user = $this->repository->get($id); + $user->edit( + $form->username, + $form->email, + $form->password + ); + $this->transaction->wrap(function () use ($user, $form) { + $this->repository->save($user); + $this->roles->assign($user->id, $form->role); + }); + } + + public function assignRole($id, $role): void + { + $user = $this->repository->get($id); + $this->roles->assign($user->id, $role); + } + + public function remove($id): void + { + $user = $this->repository->get($id); + $this->repository->remove($user); + //$this->newsletter->unsubscribe($user->email); + } +} \ No newline at end of file diff --git a/core/validators/SlugValidator.php b/core/validators/SlugValidator.php new file mode 100644 index 0000000..604adcb --- /dev/null +++ b/core/validators/SlugValidator.php @@ -0,0 +1,11 @@ + 'yii\debug\Module', + ]; + + $config['bootstrap'][] = 'gii'; + $config['modules']['gii'] = [ + 'class' => 'yii\gii\Module', + ]; +} + +return $config; diff --git a/environments/dev/backend/config/params-local.php b/environments/dev/backend/config/params-local.php new file mode 100644 index 0000000..d0b9c34 --- /dev/null +++ b/environments/dev/backend/config/params-local.php @@ -0,0 +1,3 @@ +run(); diff --git a/environments/dev/backend/web/index.php b/environments/dev/backend/web/index.php new file mode 100644 index 0000000..1649b25 --- /dev/null +++ b/environments/dev/backend/web/index.php @@ -0,0 +1,17 @@ +run(); diff --git a/environments/dev/backend/web/robots.txt b/environments/dev/backend/web/robots.txt new file mode 100644 index 0000000..77470cb --- /dev/null +++ b/environments/dev/backend/web/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: / \ No newline at end of file diff --git a/environments/dev/common/config/main-local.php b/environments/dev/common/config/main-local.php new file mode 100644 index 0000000..ffb40b3 --- /dev/null +++ b/environments/dev/common/config/main-local.php @@ -0,0 +1,20 @@ + [ + 'db' => [ + 'class' => 'yii\db\Connection', + 'dsn' => 'mysql:host=localhost;dbname=database', + 'username' => 'root', + 'password' => '', + 'charset' => 'utf8', + ], + 'mailer' => [ + 'class' => 'yii\swiftmailer\Mailer', + 'viewPath' => '@common/mail', + // send all mails to a file by default. You have to set + // 'useFileTransport' to false and configure a transport + // for the mailer to send real emails. + 'useFileTransport' => true, + ], + ], +]; diff --git a/environments/dev/common/config/params-local.php b/environments/dev/common/config/params-local.php new file mode 100644 index 0000000..02c1db4 --- /dev/null +++ b/environments/dev/common/config/params-local.php @@ -0,0 +1,10 @@ + '', + 'cookieDomain' => '.domain.local', + 'frontendHostInfo' => 'http://domain.local', + 'backendHostInfo' => 'http://admin.domain.local', + 'staticHostInfo' => 'http://static.domain.local', + 'mailChimpKey' => '', + 'mailChimpListId' => '', +]; diff --git a/environments/dev/common/config/test-local.php b/environments/dev/common/config/test-local.php new file mode 100644 index 0000000..b3dc5c8 --- /dev/null +++ b/environments/dev/common/config/test-local.php @@ -0,0 +1,13 @@ + [ + 'db' => [ + 'dsn' => 'mysql:host=localhost;dbname=morework_test', + ] + ], + ] +); diff --git a/environments/dev/console/config/main-local.php b/environments/dev/console/config/main-local.php new file mode 100644 index 0000000..1d2118f --- /dev/null +++ b/environments/dev/console/config/main-local.php @@ -0,0 +1,7 @@ + ['gii'], + 'modules' => [ + 'gii' => 'yii\gii\Module', + ], +]; diff --git a/environments/dev/console/config/params-local.php b/environments/dev/console/config/params-local.php new file mode 100644 index 0000000..d0b9c34 --- /dev/null +++ b/environments/dev/console/config/params-local.php @@ -0,0 +1,3 @@ + [ + 'authClientCollection' => [ + 'class' => 'yii\authclient\Collection', + 'clients' => [ + 'vk' => [ + 'class' => 'yii\authclient\clients\VKontakte', + 'clientId' => '', + 'clientSecret' => '', + ], + ], + ] + ], +]; + +if (!YII_ENV_TEST) { + // configuration adjustments for 'dev' environment + $config['bootstrap'][] = 'debug'; + $config['modules']['debug'] = [ + 'class' => 'yii\debug\Module', + ]; + + $config['bootstrap'][] = 'gii'; + $config['modules']['gii'] = [ + 'class' => 'yii\gii\Module', + ]; +} + +return $config; diff --git a/environments/dev/frontend/config/params-local.php b/environments/dev/frontend/config/params-local.php new file mode 100644 index 0000000..d0b9c34 --- /dev/null +++ b/environments/dev/frontend/config/params-local.php @@ -0,0 +1,3 @@ +run(); diff --git a/environments/dev/frontend/web/index.php b/environments/dev/frontend/web/index.php new file mode 100644 index 0000000..1649b25 --- /dev/null +++ b/environments/dev/frontend/web/index.php @@ -0,0 +1,17 @@ +run(); diff --git a/environments/dev/frontend/web/robots.txt b/environments/dev/frontend/web/robots.txt new file mode 100644 index 0000000..77470cb --- /dev/null +++ b/environments/dev/frontend/web/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: / \ No newline at end of file diff --git a/environments/dev/yii b/environments/dev/yii new file mode 100644 index 0000000..1dd899f --- /dev/null +++ b/environments/dev/yii @@ -0,0 +1,28 @@ +#!/usr/bin/env php +run(); +exit($exitCode); diff --git a/environments/dev/yii_test b/environments/dev/yii_test new file mode 100644 index 0000000..4c5db09 --- /dev/null +++ b/environments/dev/yii_test @@ -0,0 +1,27 @@ +#!/usr/bin/env php +run(); +exit($exitCode); diff --git a/environments/dev/yii_test.bat b/environments/dev/yii_test.bat new file mode 100644 index 0000000..854e08b --- /dev/null +++ b/environments/dev/yii_test.bat @@ -0,0 +1,20 @@ +@echo off + +rem ------------------------------------------------------------- +rem Yii command line bootstrap script for Windows. +rem +rem @author Qiang Xue +rem @link http://www.yiiframework.com/ +rem @copyright Copyright (c) 2008 Yii Software LLC +rem @license http://www.yiiframework.com/license/ +rem ------------------------------------------------------------- + +@setlocal + +set YII_PATH=%~dp0 + +if "%PHP_COMMAND%" == "" set PHP_COMMAND=php.exe + +"%PHP_COMMAND%" "%YII_PATH%yii_test" %* + +@endlocal diff --git a/environments/index.php b/environments/index.php new file mode 100644 index 0000000..b38e60b --- /dev/null +++ b/environments/index.php @@ -0,0 +1,63 @@ + [ + * 'path' => 'directory storing the local files', + * 'skipFiles' => [ + * // list of files that should only copied once and skipped if they already exist + * ], + * 'setWritable' => [ + * // list of directories that should be set writable + * ], + * 'setExecutable' => [ + * // list of files that should be set executable + * ], + * 'setCookieValidationKey' => [ + * // list of config files that need to be inserted with automatically generated cookie validation keys + * ], + * 'createSymlink' => [ + * // list of symlinks to be created. Keys are symlinks, and values are the targets. + * ], + * ], + * ]; + * ``` + */ +return [ + 'Development' => [ + 'path' => 'dev', + 'setWritable' => [ + 'backend/runtime', + 'backend/web/assets', + 'frontend/runtime', + 'frontend/web/assets', + ], + 'setExecutable' => [ + 'yii', + 'yii_test', + ], + 'setCookieValidationKey' => [ + 'common/config/params-local.php', + ], + ], + 'Production' => [ + 'path' => 'prod', + 'setWritable' => [ + 'backend/runtime', + 'backend/web/assets', + 'frontend/runtime', + 'frontend/web/assets', + ], + 'setExecutable' => [ + 'yii', + ], + 'setCookieValidationKey' => [ + 'common/config/params-local.php', + ], + ], +]; diff --git a/environments/prod/backend/config/main-local.php b/environments/prod/backend/config/main-local.php new file mode 100644 index 0000000..d0b9c34 --- /dev/null +++ b/environments/prod/backend/config/main-local.php @@ -0,0 +1,3 @@ +run(); diff --git a/environments/prod/backend/web/robots.txt b/environments/prod/backend/web/robots.txt new file mode 100644 index 0000000..77470cb --- /dev/null +++ b/environments/prod/backend/web/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: / \ No newline at end of file diff --git a/environments/prod/common/config/main-local.php b/environments/prod/common/config/main-local.php new file mode 100644 index 0000000..03a5ed7 --- /dev/null +++ b/environments/prod/common/config/main-local.php @@ -0,0 +1,16 @@ + [ + 'db' => [ + 'class' => 'yii\db\Connection', + 'dsn' => 'mysql:host=localhost;dbname=morework', + 'username' => 'root', + 'password' => '', + 'charset' => 'utf8', + ], + 'mailer' => [ + 'class' => 'yii\swiftmailer\Mailer', + 'viewPath' => '@common/mail', + ], + ], +]; diff --git a/environments/prod/common/config/params-local.php b/environments/prod/common/config/params-local.php new file mode 100644 index 0000000..e2cd9a0 --- /dev/null +++ b/environments/prod/common/config/params-local.php @@ -0,0 +1,8 @@ + '', + 'cookieDomain' => '.morework.dev', + 'frontendHostInfo' => 'http://morework.dev', + 'backendHostInfo' => 'http://admin.morework.dev', + 'staticHostInfo' => 'http://static.shop.dev', +]; diff --git a/environments/prod/console/config/main-local.php b/environments/prod/console/config/main-local.php new file mode 100644 index 0000000..d0b9c34 --- /dev/null +++ b/environments/prod/console/config/main-local.php @@ -0,0 +1,3 @@ +run(); diff --git a/environments/prod/frontend/web/robots.txt b/environments/prod/frontend/web/robots.txt new file mode 100644 index 0000000..14267e9 --- /dev/null +++ b/environments/prod/frontend/web/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Allow: / \ No newline at end of file diff --git a/environments/prod/yii b/environments/prod/yii new file mode 100644 index 0000000..da522cc --- /dev/null +++ b/environments/prod/yii @@ -0,0 +1,28 @@ +#!/usr/bin/env php +run(); +exit($exitCode); diff --git a/frontend/assets/AppAsset.php b/frontend/assets/AppAsset.php new file mode 100644 index 0000000..93a63a4 --- /dev/null +++ b/frontend/assets/AppAsset.php @@ -0,0 +1,25 @@ + .col, +.no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; +} + +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, +.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, +.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, +.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, +.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, +.col-xl-auto { + position: relative; + width: 100%; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; +} + +.col { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; +} + +.col-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; +} + +.col-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; +} + +.col-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; +} + +.col-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; +} + +.col-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; +} + +.col-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; +} + +.col-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; +} + +.col-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; +} + +.col-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; +} + +.col-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; +} + +.col-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; +} + +.col-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; +} + +.col-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; +} + +.order-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; +} + +.order-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; +} + +.order-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; +} + +.order-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; +} + +.order-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; +} + +.order-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; +} + +.order-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; +} + +.order-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; +} + +.order-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; +} + +.order-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; +} + +.order-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; +} + +.order-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; +} + +.order-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; +} + +.offset-1 { + margin-left: 8.333333%; +} + +.offset-2 { + margin-left: 16.666667%; +} + +.offset-3 { + margin-left: 25%; +} + +.offset-4 { + margin-left: 33.333333%; +} + +.offset-5 { + margin-left: 41.666667%; +} + +.offset-6 { + margin-left: 50%; +} + +.offset-7 { + margin-left: 58.333333%; +} + +.offset-8 { + margin-left: 66.666667%; +} + +.offset-9 { + margin-left: 75%; +} + +.offset-10 { + margin-left: 83.333333%; +} + +.offset-11 { + margin-left: 91.666667%; +} + +@media (min-width: 576px) { + .col-sm { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-sm-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; + } + .col-sm-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-sm-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-sm-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-sm-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-sm-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-sm-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-sm-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-sm-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-sm-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-sm-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-sm-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-sm-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-sm-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + .order-sm-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } + .order-sm-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; + } + .order-sm-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; + } + .order-sm-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; + } + .order-sm-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; + } + .order-sm-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; + } + .order-sm-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; + } + .order-sm-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; + } + .order-sm-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; + } + .order-sm-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; + } + .order-sm-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; + } + .order-sm-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; + } + .offset-sm-0 { + margin-left: 0; + } + .offset-sm-1 { + margin-left: 8.333333%; + } + .offset-sm-2 { + margin-left: 16.666667%; + } + .offset-sm-3 { + margin-left: 25%; + } + .offset-sm-4 { + margin-left: 33.333333%; + } + .offset-sm-5 { + margin-left: 41.666667%; + } + .offset-sm-6 { + margin-left: 50%; + } + .offset-sm-7 { + margin-left: 58.333333%; + } + .offset-sm-8 { + margin-left: 66.666667%; + } + .offset-sm-9 { + margin-left: 75%; + } + .offset-sm-10 { + margin-left: 83.333333%; + } + .offset-sm-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 768px) { + .col-md { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-md-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; + } + .col-md-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-md-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-md-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-md-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-md-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-md-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-md-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-md-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-md-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-md-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-md-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-md-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-md-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + .order-md-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } + .order-md-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; + } + .order-md-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; + } + .order-md-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; + } + .order-md-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; + } + .order-md-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; + } + .order-md-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; + } + .order-md-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; + } + .order-md-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; + } + .order-md-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; + } + .order-md-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; + } + .order-md-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; + } + .offset-md-0 { + margin-left: 0; + } + .offset-md-1 { + margin-left: 8.333333%; + } + .offset-md-2 { + margin-left: 16.666667%; + } + .offset-md-3 { + margin-left: 25%; + } + .offset-md-4 { + margin-left: 33.333333%; + } + .offset-md-5 { + margin-left: 41.666667%; + } + .offset-md-6 { + margin-left: 50%; + } + .offset-md-7 { + margin-left: 58.333333%; + } + .offset-md-8 { + margin-left: 66.666667%; + } + .offset-md-9 { + margin-left: 75%; + } + .offset-md-10 { + margin-left: 83.333333%; + } + .offset-md-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 992px) { + .col-lg { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-lg-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; + } + .col-lg-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-lg-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-lg-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-lg-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-lg-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-lg-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-lg-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-lg-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-lg-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-lg-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-lg-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-lg-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-lg-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + .order-lg-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } + .order-lg-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; + } + .order-lg-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; + } + .order-lg-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; + } + .order-lg-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; + } + .order-lg-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; + } + .order-lg-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; + } + .order-lg-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; + } + .order-lg-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; + } + .order-lg-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; + } + .order-lg-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; + } + .order-lg-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; + } + .offset-lg-0 { + margin-left: 0; + } + .offset-lg-1 { + margin-left: 8.333333%; + } + .offset-lg-2 { + margin-left: 16.666667%; + } + .offset-lg-3 { + margin-left: 25%; + } + .offset-lg-4 { + margin-left: 33.333333%; + } + .offset-lg-5 { + margin-left: 41.666667%; + } + .offset-lg-6 { + margin-left: 50%; + } + .offset-lg-7 { + margin-left: 58.333333%; + } + .offset-lg-8 { + margin-left: 66.666667%; + } + .offset-lg-9 { + margin-left: 75%; + } + .offset-lg-10 { + margin-left: 83.333333%; + } + .offset-lg-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 1200px) { + .col-xl { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-xl-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; + } + .col-xl-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-xl-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-xl-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-xl-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-xl-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-xl-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-xl-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-xl-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-xl-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-xl-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-xl-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-xl-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-xl-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + .order-xl-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } + .order-xl-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; + } + .order-xl-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; + } + .order-xl-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; + } + .order-xl-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; + } + .order-xl-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; + } + .order-xl-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; + } + .order-xl-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; + } + .order-xl-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; + } + .order-xl-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; + } + .order-xl-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; + } + .order-xl-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; + } + .offset-xl-0 { + margin-left: 0; + } + .offset-xl-1 { + margin-left: 8.333333%; + } + .offset-xl-2 { + margin-left: 16.666667%; + } + .offset-xl-3 { + margin-left: 25%; + } + .offset-xl-4 { + margin-left: 33.333333%; + } + .offset-xl-5 { + margin-left: 41.666667%; + } + .offset-xl-6 { + margin-left: 50%; + } + .offset-xl-7 { + margin-left: 58.333333%; + } + .offset-xl-8 { + margin-left: 66.666667%; + } + .offset-xl-9 { + margin-left: 75%; + } + .offset-xl-10 { + margin-left: 83.333333%; + } + .offset-xl-11 { + margin-left: 91.666667%; + } +} + +.flex-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; +} + +.flex-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; +} + +.flex-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; +} + +.flex-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; +} + +.flex-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; +} + +.flex-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; +} + +.justify-content-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; +} + +.justify-content-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; +} + +.justify-content-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; +} + +.justify-content-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; +} + +.justify-content-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; +} + +.align-items-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; +} + +.align-items-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; +} + +.align-items-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; +} + +.align-items-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; +} + +.align-items-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; +} + +.align-content-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; +} + +.align-content-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; +} + +.align-content-center { + -ms-flex-line-pack: center !important; + align-content: center !important; +} + +.align-content-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; +} + +.align-content-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; +} + +.align-content-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; +} + +.align-self-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; +} + +.align-self-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; +} + +.align-self-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; +} + +.align-self-center { + -ms-flex-item-align: center !important; + align-self: center !important; +} + +.align-self-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; +} + +.align-self-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; +} + +@media (min-width: 576px) { + .flex-sm-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-sm-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-sm-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-sm-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-sm-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-sm-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .justify-content-sm-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-sm-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-sm-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-sm-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-sm-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-sm-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-sm-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-sm-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-sm-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-sm-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-sm-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-sm-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-sm-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-sm-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-sm-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-sm-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-sm-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-sm-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-sm-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-sm-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-sm-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-sm-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 768px) { + .flex-md-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-md-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-md-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-md-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-md-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-md-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-md-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .justify-content-md-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-md-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-md-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-md-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-md-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-md-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-md-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-md-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-md-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-md-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-md-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-md-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-md-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-md-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-md-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-md-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-md-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-md-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-md-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-md-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-md-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-md-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 992px) { + .flex-lg-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-lg-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-lg-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-lg-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-lg-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-lg-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .justify-content-lg-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-lg-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-lg-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-lg-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-lg-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-lg-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-lg-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-lg-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-lg-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-lg-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-lg-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-lg-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-lg-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-lg-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-lg-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-lg-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-lg-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-lg-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-lg-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-lg-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-lg-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-lg-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 1200px) { + .flex-xl-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-xl-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-xl-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-xl-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-xl-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-xl-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .justify-content-xl-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-xl-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-xl-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-xl-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-xl-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-xl-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-xl-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-xl-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-xl-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-xl-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-xl-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-xl-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-xl-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-xl-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-xl-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-xl-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-xl-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-xl-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-xl-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-xl-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-xl-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-xl-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} +/*# sourceMappingURL=bootstrap-grid.css.map */ \ No newline at end of file diff --git a/frontend/assets/libs/bootstrap4/css/bootstrap-grid.css.map b/frontend/assets/libs/bootstrap4/css/bootstrap-grid.css.map new file mode 100644 index 0000000..7a100dd --- /dev/null +++ b/frontend/assets/libs/bootstrap4/css/bootstrap-grid.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/bootstrap-grid.scss","bootstrap-grid.css","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_breakpoints.scss","../../scss/_variables.scss","../../scss/mixins/_grid-framework.scss","../../scss/utilities/_flex.scss"],"names":[],"mappings":"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","file":"bootstrap-grid.css","sourcesContent":["/*!\n * Bootstrap Grid v4.0.0-beta.3 (https://getbootstrap.com)\n * Copyright 2011-2017 The Bootstrap Authors\n * Copyright 2011-2017 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n@at-root {\n @-ms-viewport { width: device-width; } // stylelint-disable-line at-rule-no-vendor-prefix\n}\n\nhtml {\n box-sizing: border-box;\n -ms-overflow-style: scrollbar;\n}\n\n*,\n*::before,\n*::after {\n box-sizing: inherit;\n}\n\n@import \"functions\";\n@import \"variables\";\n\n//\n// Grid mixins\n//\n\n@import \"mixins/breakpoints\";\n@import \"mixins/grid-framework\";\n@import \"mixins/grid\";\n\n@import \"grid\";\n@import \"utilities/flex\";\n","/*!\n * Bootstrap Grid v4.0.0-beta.3 (https://getbootstrap.com)\n * Copyright 2011-2017 The Bootstrap Authors\n * Copyright 2011-2017 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n@-ms-viewport {\n width: device-width;\n}\n\nhtml {\n box-sizing: border-box;\n -ms-overflow-style: scrollbar;\n}\n\n*,\n*::before,\n*::after {\n box-sizing: inherit;\n}\n\n.container {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container {\n max-width: 540px;\n }\n}\n\n@media (min-width: 768px) {\n .container {\n max-width: 720px;\n }\n}\n\n@media (min-width: 992px) {\n .container {\n max-width: 960px;\n }\n}\n\n@media (min-width: 1200px) {\n .container {\n max-width: 1140px;\n }\n}\n\n.container-fluid {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n.row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -15px;\n margin-left: -15px;\n}\n\n.no-gutters {\n margin-right: 0;\n margin-left: 0;\n}\n\n.no-gutters > .col,\n.no-gutters > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n}\n\n.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,\n.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,\n.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,\n.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,\n.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,\n.col-xl-auto {\n position: relative;\n width: 100%;\n min-height: 1px;\n padding-right: 15px;\n padding-left: 15px;\n}\n\n.col {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n}\n\n.col-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n}\n\n.col-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n}\n\n.col-3 {\n flex: 0 0 25%;\n max-width: 25%;\n}\n\n.col-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n}\n\n.col-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n}\n\n.col-6 {\n flex: 0 0 50%;\n max-width: 50%;\n}\n\n.col-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n}\n\n.col-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n}\n\n.col-9 {\n flex: 0 0 75%;\n max-width: 75%;\n}\n\n.col-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n}\n\n.col-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n}\n\n.col-12 {\n flex: 0 0 100%;\n max-width: 100%;\n}\n\n.order-first {\n order: -1;\n}\n\n.order-1 {\n order: 1;\n}\n\n.order-2 {\n order: 2;\n}\n\n.order-3 {\n order: 3;\n}\n\n.order-4 {\n order: 4;\n}\n\n.order-5 {\n order: 5;\n}\n\n.order-6 {\n order: 6;\n}\n\n.order-7 {\n order: 7;\n}\n\n.order-8 {\n order: 8;\n}\n\n.order-9 {\n order: 9;\n}\n\n.order-10 {\n order: 10;\n}\n\n.order-11 {\n order: 11;\n}\n\n.order-12 {\n order: 12;\n}\n\n.offset-1 {\n margin-left: 8.333333%;\n}\n\n.offset-2 {\n margin-left: 16.666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.333333%;\n}\n\n.offset-5 {\n margin-left: 41.666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.333333%;\n}\n\n.offset-8 {\n margin-left: 66.666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.333333%;\n}\n\n.offset-11 {\n margin-left: 91.666667%;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-sm-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-sm-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-sm-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-sm-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-sm-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-sm-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-sm-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-sm-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-sm-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-sm-first {\n order: -1;\n }\n .order-sm-1 {\n order: 1;\n }\n .order-sm-2 {\n order: 2;\n }\n .order-sm-3 {\n order: 3;\n }\n .order-sm-4 {\n order: 4;\n }\n .order-sm-5 {\n order: 5;\n }\n .order-sm-6 {\n order: 6;\n }\n .order-sm-7 {\n order: 7;\n }\n .order-sm-8 {\n order: 8;\n }\n .order-sm-9 {\n order: 9;\n }\n .order-sm-10 {\n order: 10;\n }\n .order-sm-11 {\n order: 11;\n }\n .order-sm-12 {\n order: 12;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.333333%;\n }\n .offset-sm-2 {\n margin-left: 16.666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.333333%;\n }\n .offset-sm-5 {\n margin-left: 41.666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.333333%;\n }\n .offset-sm-8 {\n margin-left: 66.666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.333333%;\n }\n .offset-sm-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 768px) {\n .col-md {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-md-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-md-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-md-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-md-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-md-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-md-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-md-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-md-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-md-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-md-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-md-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-md-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-md-first {\n order: -1;\n }\n .order-md-1 {\n order: 1;\n }\n .order-md-2 {\n order: 2;\n }\n .order-md-3 {\n order: 3;\n }\n .order-md-4 {\n order: 4;\n }\n .order-md-5 {\n order: 5;\n }\n .order-md-6 {\n order: 6;\n }\n .order-md-7 {\n order: 7;\n }\n .order-md-8 {\n order: 8;\n }\n .order-md-9 {\n order: 9;\n }\n .order-md-10 {\n order: 10;\n }\n .order-md-11 {\n order: 11;\n }\n .order-md-12 {\n order: 12;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.333333%;\n }\n .offset-md-2 {\n margin-left: 16.666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.333333%;\n }\n .offset-md-5 {\n margin-left: 41.666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.333333%;\n }\n .offset-md-8 {\n margin-left: 66.666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.333333%;\n }\n .offset-md-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 992px) {\n .col-lg {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-lg-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-lg-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-lg-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-lg-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-lg-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-lg-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-lg-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-lg-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-lg-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-lg-first {\n order: -1;\n }\n .order-lg-1 {\n order: 1;\n }\n .order-lg-2 {\n order: 2;\n }\n .order-lg-3 {\n order: 3;\n }\n .order-lg-4 {\n order: 4;\n }\n .order-lg-5 {\n order: 5;\n }\n .order-lg-6 {\n order: 6;\n }\n .order-lg-7 {\n order: 7;\n }\n .order-lg-8 {\n order: 8;\n }\n .order-lg-9 {\n order: 9;\n }\n .order-lg-10 {\n order: 10;\n }\n .order-lg-11 {\n order: 11;\n }\n .order-lg-12 {\n order: 12;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.333333%;\n }\n .offset-lg-2 {\n margin-left: 16.666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.333333%;\n }\n .offset-lg-5 {\n margin-left: 41.666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.333333%;\n }\n .offset-lg-8 {\n margin-left: 66.666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.333333%;\n }\n .offset-lg-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 1200px) {\n .col-xl {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-xl-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-xl-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-xl-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-xl-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-xl-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-xl-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-xl-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-xl-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-xl-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-xl-first {\n order: -1;\n }\n .order-xl-1 {\n order: 1;\n }\n .order-xl-2 {\n order: 2;\n }\n .order-xl-3 {\n order: 3;\n }\n .order-xl-4 {\n order: 4;\n }\n .order-xl-5 {\n order: 5;\n }\n .order-xl-6 {\n order: 6;\n }\n .order-xl-7 {\n order: 7;\n }\n .order-xl-8 {\n order: 8;\n }\n .order-xl-9 {\n order: 9;\n }\n .order-xl-10 {\n order: 10;\n }\n .order-xl-11 {\n order: 11;\n }\n .order-xl-12 {\n order: 12;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.333333%;\n }\n .offset-xl-2 {\n margin-left: 16.666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.333333%;\n }\n .offset-xl-5 {\n margin-left: 41.666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.333333%;\n }\n .offset-xl-8 {\n margin-left: 66.666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.333333%;\n }\n .offset-xl-11 {\n margin-left: 91.666667%;\n }\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n@media (min-width: 576px) {\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 768px) {\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 992px) {\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 1200px) {\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n}\n\n/*# sourceMappingURL=bootstrap-grid.css.map */","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-grid-classes {\n .container {\n @include make-container();\n @include make-container-max-widths();\n }\n}\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but with 100% width for\n// fluid, full width layouts.\n\n@if $enable-grid-classes {\n .container-fluid {\n @include make-container();\n }\n}\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n }\n\n // Remove the negative margin from default .row, then the horizontal padding\n // from all immediate children columns (to prevent runaway style inheritance).\n .no-gutters {\n margin-right: 0;\n margin-left: 0;\n\n > .col,\n > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n }\n }\n}\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","/// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-container() {\n width: 100%;\n padding-right: ($grid-gutter-width / 2);\n padding-left: ($grid-gutter-width / 2);\n margin-right: auto;\n margin-left: auto;\n}\n\n\n// For each breakpoint, define the maximum width of the container in a media query\n@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {\n @each $breakpoint, $container-max-width in $max-widths {\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n max-width: $container-max-width;\n }\n }\n}\n\n@mixin make-row() {\n display: flex;\n flex-wrap: wrap;\n margin-right: ($grid-gutter-width / -2);\n margin-left: ($grid-gutter-width / -2);\n}\n\n@mixin make-col-ready() {\n position: relative;\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we use `flex` values\n // later on to override this initial width.\n width: 100%;\n min-height: 1px; // Prevent collapsing\n padding-right: ($grid-gutter-width / 2);\n padding-left: ($grid-gutter-width / 2);\n}\n\n@mixin make-col($size, $columns: $grid-columns) {\n flex: 0 0 percentage($size / $columns);\n // Add a `max-width` to ensure content within each column does not blow out\n // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari\n // do not appear to require this.\n max-width: percentage($size / $columns);\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: $size / $columns;\n margin-left: if($num == 0, 0, percentage($num));\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width. Null for the largest (last) breakpoint.\n// The maximum value is calculated as the minimum of the next one less 0.01px\n// to work around the limitations of `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n//\n// >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 767px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $next: breakpoint-next($name, $breakpoints);\n @return if($next, breakpoint-min($next, $breakpoints) - .01px, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash infront.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $max: breakpoint-max($name, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($name) {\n @content;\n }\n }\n}\n","// Variables\n//\n// Variables should follow the `$component-state-property-size` formula for\n// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.\n\n\n//\n// Color system\n//\n\n// stylelint-disable\n$white: #fff !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #868e96 !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n$black: #000 !default;\n\n$grays: () !default;\n$grays: map-merge((\n \"100\": $gray-100,\n \"200\": $gray-200,\n \"300\": $gray-300,\n \"400\": $gray-400,\n \"500\": $gray-500,\n \"600\": $gray-600,\n \"700\": $gray-700,\n \"800\": $gray-800,\n \"900\": $gray-900\n), $grays);\n\n$blue: #007bff !default;\n$indigo: #6610f2 !default;\n$purple: #6f42c1 !default;\n$pink: #e83e8c !default;\n$red: #dc3545 !default;\n$orange: #fd7e14 !default;\n$yellow: #ffc107 !default;\n$green: #28a745 !default;\n$teal: #20c997 !default;\n$cyan: #17a2b8 !default;\n\n$colors: () !default;\n$colors: map-merge((\n \"blue\": $blue,\n \"indigo\": $indigo,\n \"purple\": $purple,\n \"pink\": $pink,\n \"red\": $red,\n \"orange\": $orange,\n \"yellow\": $yellow,\n \"green\": $green,\n \"teal\": $teal,\n \"cyan\": $cyan,\n \"white\": $white,\n \"gray\": $gray-600,\n \"gray-dark\": $gray-800\n), $colors);\n\n$primary: $blue !default;\n$secondary: $gray-600 !default;\n$success: $green !default;\n$info: $cyan !default;\n$warning: $yellow !default;\n$danger: $red !default;\n$light: $gray-100 !default;\n$dark: $gray-800 !default;\n\n$theme-colors: () !default;\n$theme-colors: map-merge((\n \"primary\": $primary,\n \"secondary\": $secondary,\n \"success\": $success,\n \"info\": $info,\n \"warning\": $warning,\n \"danger\": $danger,\n \"light\": $light,\n \"dark\": $dark\n), $theme-colors);\n// stylelint-enable\n\n// Set a specific jump point for requesting color jumps\n$theme-color-interval: 8% !default;\n\n// The yiq lightness value that determines when the lightness of color changes from \"dark\" to \"light\". Acceptable values are between 0 and 255.\n$yiq-contrasted-threshold: 150 !default;\n\n// Customize the light and dark text colors for use in our YIQ color contrast function.\n$yiq-text-dark: $gray-900 !default;\n$yiq-text-light: $white !default;\n\n// Options\n//\n// Quickly modify global styling by enabling or disabling optional features.\n\n$enable-caret: true !default;\n$enable-rounded: true !default;\n$enable-shadows: false !default;\n$enable-gradients: false !default;\n$enable-transitions: true !default;\n$enable-hover-media-query: false !default;\n$enable-grid-classes: true !default;\n$enable-print-styles: true !default;\n\n\n// Spacing\n//\n// Control the default styling of most Bootstrap elements by modifying these\n// variables. Mostly focused on spacing.\n// You can add more entries to the $spacers map, should you need more variation.\n\n$spacer: 1rem !default;\n$spacers: (\n 0: 0,\n 1: ($spacer * .25),\n 2: ($spacer * .5),\n 3: $spacer,\n 4: ($spacer * 1.5),\n 5: ($spacer * 3)\n) !default;\n\n// This variable affects the `.h-*` and `.w-*` classes.\n$sizes: (\n 25: 25%,\n 50: 50%,\n 75: 75%,\n 100: 100%\n) !default;\n\n// Body\n//\n// Settings for the `` element.\n\n$body-bg: $white !default;\n$body-color: $gray-900 !default;\n\n// Links\n//\n// Style anchor elements.\n\n$link-color: theme-color(\"primary\") !default;\n$link-decoration: none !default;\n$link-hover-color: darken($link-color, 15%) !default;\n$link-hover-decoration: underline !default;\n\n// Paragraphs\n//\n// Style p element.\n\n$paragraph-margin-bottom: 1rem !default;\n\n\n// Grid breakpoints\n//\n// Define the minimum dimensions at which your layout will change,\n// adapting to different screen sizes, for use in media queries.\n\n$grid-breakpoints: (\n xs: 0,\n sm: 576px,\n md: 768px,\n lg: 992px,\n xl: 1200px\n) !default;\n\n@include _assert-ascending($grid-breakpoints, \"$grid-breakpoints\");\n@include _assert-starts-at-zero($grid-breakpoints);\n\n\n// Grid containers\n//\n// Define the maximum width of `.container` for different screen sizes.\n\n$container-max-widths: (\n sm: 540px,\n md: 720px,\n lg: 960px,\n xl: 1140px\n) !default;\n\n@include _assert-ascending($container-max-widths, \"$container-max-widths\");\n\n\n// Grid columns\n//\n// Set the number of columns and specify the width of the gutters.\n\n$grid-columns: 12 !default;\n$grid-gutter-width: 30px !default;\n\n// Components\n//\n// Define common padding and border radius sizes and more.\n\n$line-height-lg: 1.5 !default;\n$line-height-sm: 1.5 !default;\n\n$border-width: 1px !default;\n$border-color: $gray-200 !default;\n\n$border-radius: .25rem !default;\n$border-radius-lg: .3rem !default;\n$border-radius-sm: .2rem !default;\n\n$component-active-color: $white !default;\n$component-active-bg: theme-color(\"primary\") !default;\n\n$caret-width: .3em !default;\n\n$transition-base: all .2s ease-in-out !default;\n$transition-fade: opacity .15s linear !default;\n$transition-collapse: height .35s ease !default;\n\n\n// Fonts\n//\n// Font, line-height, and color for body text, headings, and more.\n\n// stylelint-disable value-keyword-case\n$font-family-sans-serif: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\" !default;\n$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !default;\n$font-family-base: $font-family-sans-serif !default;\n// stylelint-enable value-keyword-case\n\n$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`\n$font-size-lg: ($font-size-base * 1.25) !default;\n$font-size-sm: ($font-size-base * .875) !default;\n\n$font-weight-light: 300 !default;\n$font-weight-normal: 400 !default;\n$font-weight-bold: 700 !default;\n\n$font-weight-base: $font-weight-normal !default;\n$line-height-base: 1.5 !default;\n\n$h1-font-size: $font-size-base * 2.5 !default;\n$h2-font-size: $font-size-base * 2 !default;\n$h3-font-size: $font-size-base * 1.75 !default;\n$h4-font-size: $font-size-base * 1.5 !default;\n$h5-font-size: $font-size-base * 1.25 !default;\n$h6-font-size: $font-size-base !default;\n\n$headings-margin-bottom: ($spacer / 2) !default;\n$headings-font-family: inherit !default;\n$headings-font-weight: 500 !default;\n$headings-line-height: 1.2 !default;\n$headings-color: inherit !default;\n\n$display1-size: 6rem !default;\n$display2-size: 5.5rem !default;\n$display3-size: 4.5rem !default;\n$display4-size: 3.5rem !default;\n\n$display1-weight: 300 !default;\n$display2-weight: 300 !default;\n$display3-weight: 300 !default;\n$display4-weight: 300 !default;\n$display-line-height: $headings-line-height !default;\n\n$lead-font-size: ($font-size-base * 1.25) !default;\n$lead-font-weight: 300 !default;\n\n$small-font-size: 80% !default;\n\n$text-muted: $gray-600 !default;\n\n$blockquote-small-color: $gray-600 !default;\n$blockquote-font-size: ($font-size-base * 1.25) !default;\n\n$hr-border-color: rgba($black, .1) !default;\n$hr-border-width: $border-width !default;\n\n$mark-padding: .2em !default;\n\n$dt-font-weight: $font-weight-bold !default;\n\n$kbd-box-shadow: inset 0 -.1rem 0 rgba($black, .25) !default;\n$nested-kbd-font-weight: $font-weight-bold !default;\n\n$list-inline-padding: .5rem !default;\n\n$mark-bg: #fcf8e3 !default;\n\n$hr-margin-y: $spacer !default;\n\n\n// Tables\n//\n// Customizes the `.table` component with basic values, each used across all table variations.\n\n$table-cell-padding: .75rem !default;\n$table-cell-padding-sm: .3rem !default;\n\n$table-bg: transparent !default;\n$table-accent-bg: rgba($black, .05) !default;\n$table-hover-bg: rgba($black, .075) !default;\n$table-active-bg: $table-hover-bg !default;\n\n$table-border-width: $border-width !default;\n$table-border-color: $gray-300 !default;\n\n$table-head-bg: $gray-200 !default;\n$table-head-color: $gray-700 !default;\n\n$table-dark-bg: $gray-900 !default;\n$table-dark-accent-bg: rgba($white, .05) !default;\n$table-dark-hover-bg: rgba($white, .075) !default;\n$table-dark-border-color: lighten($gray-900, 7.5%) !default;\n$table-dark-color: $body-bg !default;\n\n\n// Buttons + Forms\n//\n// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.\n\n$input-btn-padding-y: .375rem !default;\n$input-btn-padding-x: .75rem !default;\n$input-btn-line-height: $line-height-base !default;\n\n$input-btn-focus-width: .2rem !default;\n$input-btn-focus-color: rgba(theme-color(\"primary\"), .25) !default;\n$input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default;\n\n$input-btn-padding-y-sm: .25rem !default;\n$input-btn-padding-x-sm: .5rem !default;\n$input-btn-line-height-sm: $line-height-sm !default;\n\n$input-btn-padding-y-lg: .5rem !default;\n$input-btn-padding-x-lg: 1rem !default;\n$input-btn-line-height-lg: $line-height-lg !default;\n\n$input-btn-border-width: $border-width !default;\n\n\n// Buttons\n//\n// For each of Bootstrap's buttons, define text, background, and border color.\n\n$btn-padding-y: $input-btn-padding-y !default;\n$btn-padding-x: $input-btn-padding-x !default;\n$btn-line-height: $input-btn-line-height !default;\n\n$btn-padding-y-sm: $input-btn-padding-y-sm !default;\n$btn-padding-x-sm: $input-btn-padding-x-sm !default;\n$btn-line-height-sm: $input-btn-line-height-sm !default;\n\n$btn-padding-y-lg: $input-btn-padding-y-lg !default;\n$btn-padding-x-lg: $input-btn-padding-x-lg !default;\n$btn-line-height-lg: $input-btn-line-height-lg !default;\n\n$btn-border-width: $input-btn-border-width !default;\n\n$btn-font-weight: $font-weight-normal !default;\n$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;\n$btn-focus-width: $input-btn-focus-width !default;\n$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$btn-disabled-opacity: .65 !default;\n$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;\n\n$btn-link-disabled-color: $gray-600 !default;\n\n$btn-block-spacing-y: .5rem !default;\n\n// Allows for customizing button radius independently from global border radius\n$btn-border-radius: $border-radius !default;\n$btn-border-radius-lg: $border-radius-lg !default;\n$btn-border-radius-sm: $border-radius-sm !default;\n\n$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n\n// Forms\n\n$input-padding-y: $input-btn-padding-y !default;\n$input-padding-x: $input-btn-padding-x !default;\n$input-line-height: $input-btn-line-height !default;\n\n$input-padding-y-sm: $input-btn-padding-y-sm !default;\n$input-padding-x-sm: $input-btn-padding-x-sm !default;\n$input-line-height-sm: $input-btn-line-height-sm !default;\n\n$input-padding-y-lg: $input-btn-padding-y-lg !default;\n$input-padding-x-lg: $input-btn-padding-x-lg !default;\n$input-line-height-lg: $input-btn-line-height-lg !default;\n\n$input-bg: $white !default;\n$input-disabled-bg: $gray-200 !default;\n\n$input-color: $gray-700 !default;\n$input-border-color: $gray-400 !default;\n$input-border-width: $input-btn-border-width !default;\n$input-box-shadow: inset 0 1px 1px rgba($black, .075) !default;\n\n$input-border-radius: $border-radius !default;\n$input-border-radius-lg: $border-radius-lg !default;\n$input-border-radius-sm: $border-radius-sm !default;\n\n$input-focus-bg: $input-bg !default;\n$input-focus-border-color: lighten(theme-color(\"primary\"), 25%) !default;\n$input-focus-color: $input-color !default;\n$input-focus-width: $input-btn-focus-width !default;\n$input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$input-placeholder-color: $gray-600 !default;\n\n$input-height-border: $input-btn-border-width * 2 !default;\n\n$input-height-inner: ($font-size-base * $input-btn-line-height) + ($input-btn-padding-y * 2) !default;\n$input-height: calc(#{$input-height-inner} + #{$input-height-border}) !default;\n\n$input-height-inner-sm: ($font-size-sm * $input-btn-line-height-sm) + ($input-btn-padding-y-sm * 2) !default;\n$input-height-sm: calc(#{$input-height-inner-sm} + #{$input-height-border}) !default;\n\n$input-height-inner-lg: ($font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2) !default;\n$input-height-lg: calc(#{$input-height-inner-lg} + #{$input-height-border}) !default;\n\n$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$form-text-margin-top: .25rem !default;\n\n$form-check-input-gutter: 1.25rem !default;\n$form-check-input-margin-y: .3rem !default;\n$form-check-input-margin-x: .25rem !default;\n\n$form-check-inline-margin-x: .75rem !default;\n$form-check-inline-input-margin-x: .3125rem !default;\n\n$form-group-margin-bottom: 1rem !default;\n\n$input-group-addon-color: $input-color !default;\n$input-group-addon-bg: $gray-200 !default;\n$input-group-addon-border-color: $input-border-color !default;\n\n$custom-control-gutter: 1.5rem !default;\n$custom-control-spacer-x: 1rem !default;\n\n$custom-control-indicator-size: 1rem !default;\n$custom-control-indicator-bg: $gray-300 !default;\n$custom-control-indicator-bg-size: 50% 50% !default;\n$custom-control-indicator-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;\n\n$custom-control-indicator-disabled-bg: $gray-200 !default;\n$custom-control-label-disabled-color: $gray-600 !default;\n\n$custom-control-indicator-checked-color: $white !default;\n$custom-control-indicator-checked-bg: theme-color(\"primary\") !default;\n$custom-control-indicator-checked-box-shadow: none !default;\n\n$custom-control-indicator-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;\n\n$custom-control-indicator-active-color: $white !default;\n$custom-control-indicator-active-bg: lighten(theme-color(\"primary\"), 35%) !default;\n$custom-control-indicator-active-box-shadow: none !default;\n\n$custom-checkbox-indicator-border-radius: $border-radius !default;\n$custom-checkbox-indicator-icon-checked: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$custom-checkbox-indicator-indeterminate-bg: theme-color(\"primary\") !default;\n$custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;\n$custom-checkbox-indicator-icon-indeterminate: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$custom-checkbox-indicator-indeterminate-box-shadow: none !default;\n\n$custom-radio-indicator-border-radius: 50% !default;\n$custom-radio-indicator-icon-checked: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='#{$custom-control-indicator-checked-color}'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$custom-select-padding-y: .375rem !default;\n$custom-select-padding-x: .75rem !default;\n$custom-select-height: $input-height !default;\n$custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator\n$custom-select-line-height: $input-btn-line-height !default;\n$custom-select-color: $input-color !default;\n$custom-select-disabled-color: $gray-600 !default;\n$custom-select-bg: $white !default;\n$custom-select-disabled-bg: $gray-200 !default;\n$custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions\n$custom-select-indicator-color: $gray-800 !default;\n$custom-select-indicator: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$custom-select-border-width: $input-btn-border-width !default;\n$custom-select-border-color: $input-border-color !default;\n$custom-select-border-radius: $border-radius !default;\n\n$custom-select-focus-border-color: $input-focus-border-color !default;\n$custom-select-focus-box-shadow: inset 0 1px 2px rgba($black, .075), $input-btn-focus-box-shadow !default;\n\n$custom-select-font-size-sm: 75% !default;\n$custom-select-height-sm: $input-height-sm !default;\n\n$custom-select-font-size-lg: 125% !default;\n$custom-select-height-lg: $input-height-lg !default;\n\n$custom-file-height: $input-height !default;\n$custom-file-focus-border-color: $input-focus-border-color !default;\n$custom-file-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$custom-file-padding-y: $input-btn-padding-y !default;\n$custom-file-padding-x: $input-btn-padding-x !default;\n$custom-file-line-height: $input-btn-line-height !default;\n$custom-file-color: $input-color !default;\n$custom-file-bg: $input-bg !default;\n$custom-file-border-width: $input-btn-border-width !default;\n$custom-file-border-color: $input-border-color !default;\n$custom-file-border-radius: $input-border-radius !default;\n$custom-file-box-shadow: $input-box-shadow !default;\n$custom-file-button-color: $custom-file-color !default;\n$custom-file-button-bg: $input-group-addon-bg !default;\n$custom-file-text: (\n en: \"Browse\"\n) !default;\n\n\n// Form validation\n$form-feedback-margin-top: $form-text-margin-top !default;\n$form-feedback-font-size: $small-font-size !default;\n$form-feedback-valid-color: theme-color(\"success\") !default;\n$form-feedback-invalid-color: theme-color(\"danger\") !default;\n\n\n// Dropdowns\n//\n// Dropdown menu container and contents.\n\n$dropdown-min-width: 10rem !default;\n$dropdown-padding-y: .5rem !default;\n$dropdown-spacer: .125rem !default;\n$dropdown-bg: $white !default;\n$dropdown-border-color: rgba($black, .15) !default;\n$dropdown-border-radius: $border-radius !default;\n$dropdown-border-width: $border-width !default;\n$dropdown-divider-bg: $gray-200 !default;\n$dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default;\n\n$dropdown-link-color: $gray-900 !default;\n$dropdown-link-hover-color: darken($gray-900, 5%) !default;\n$dropdown-link-hover-bg: $gray-100 !default;\n\n$dropdown-link-active-color: $component-active-color !default;\n$dropdown-link-active-bg: $component-active-bg !default;\n\n$dropdown-link-disabled-color: $gray-600 !default;\n\n$dropdown-item-padding-y: .25rem !default;\n$dropdown-item-padding-x: 1.5rem !default;\n\n$dropdown-header-color: $gray-600 !default;\n\n\n// Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n\n$zindex-dropdown: 1000 !default;\n$zindex-sticky: 1020 !default;\n$zindex-fixed: 1030 !default;\n$zindex-modal-backdrop: 1040 !default;\n$zindex-modal: 1050 !default;\n$zindex-popover: 1060 !default;\n$zindex-tooltip: 1070 !default;\n\n// Navs\n\n$nav-link-padding-y: .5rem !default;\n$nav-link-padding-x: 1rem !default;\n$nav-link-disabled-color: $gray-600 !default;\n\n$nav-tabs-border-color: $gray-300 !default;\n$nav-tabs-border-width: $border-width !default;\n$nav-tabs-border-radius: $border-radius !default;\n$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;\n$nav-tabs-link-active-color: $gray-700 !default;\n$nav-tabs-link-active-bg: $body-bg !default;\n$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;\n\n$nav-pills-border-radius: $border-radius !default;\n$nav-pills-link-active-color: $component-active-color !default;\n$nav-pills-link-active-bg: $component-active-bg !default;\n\n// Navbar\n\n$navbar-padding-y: ($spacer / 2) !default;\n$navbar-padding-x: $spacer !default;\n\n$navbar-brand-font-size: $font-size-lg !default;\n// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link\n$nav-link-height: ($font-size-base * $line-height-base + $nav-link-padding-y * 2) !default;\n$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;\n$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default;\n\n$navbar-toggler-padding-y: .25rem !default;\n$navbar-toggler-padding-x: .75rem !default;\n$navbar-toggler-font-size: $font-size-lg !default;\n$navbar-toggler-border-radius: $btn-border-radius !default;\n\n$navbar-dark-color: rgba($white, .5) !default;\n$navbar-dark-hover-color: rgba($white, .75) !default;\n$navbar-dark-active-color: $white !default;\n$navbar-dark-disabled-color: rgba($white, .25) !default;\n$navbar-dark-toggler-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$navbar-dark-toggler-border-color: rgba($white, .1) !default;\n\n$navbar-light-color: rgba($black, .5) !default;\n$navbar-light-hover-color: rgba($black, .7) !default;\n$navbar-light-active-color: rgba($black, .9) !default;\n$navbar-light-disabled-color: rgba($black, .3) !default;\n$navbar-light-toggler-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$navbar-light-toggler-border-color: rgba($black, .1) !default;\n\n// Pagination\n\n$pagination-padding-y: .5rem !default;\n$pagination-padding-x: .75rem !default;\n$pagination-padding-y-sm: .25rem !default;\n$pagination-padding-x-sm: .5rem !default;\n$pagination-padding-y-lg: .75rem !default;\n$pagination-padding-x-lg: 1.5rem !default;\n$pagination-line-height: 1.25 !default;\n\n$pagination-color: $link-color !default;\n$pagination-bg: $white !default;\n$pagination-border-width: $border-width !default;\n$pagination-border-color: $gray-300 !default;\n\n$pagination-hover-color: $link-hover-color !default;\n$pagination-hover-bg: $gray-200 !default;\n$pagination-hover-border-color: $gray-300 !default;\n\n$pagination-active-color: $white !default;\n$pagination-active-bg: theme-color(\"primary\") !default;\n$pagination-active-border-color: theme-color(\"primary\") !default;\n\n$pagination-disabled-color: $gray-600 !default;\n$pagination-disabled-bg: $white !default;\n$pagination-disabled-border-color: $gray-300 !default;\n\n\n// Jumbotron\n\n$jumbotron-padding: 2rem !default;\n$jumbotron-bg: $gray-200 !default;\n\n\n// Cards\n\n$card-spacer-y: .75rem !default;\n$card-spacer-x: 1.25rem !default;\n$card-border-width: $border-width !default;\n$card-border-radius: $border-radius !default;\n$card-border-color: rgba($black, .125) !default;\n$card-inner-border-radius: calc(#{$card-border-radius} - #{$card-border-width}) !default;\n$card-cap-bg: rgba($black, .03) !default;\n$card-bg: $white !default;\n\n$card-img-overlay-padding: 1.25rem !default;\n\n$card-group-margin: ($grid-gutter-width / 2) !default;\n$card-deck-margin: $card-group-margin !default;\n\n$card-columns-count: 3 !default;\n$card-columns-gap: 1.25rem !default;\n$card-columns-margin: $card-spacer-y !default;\n\n\n// Tooltips\n\n$tooltip-max-width: 200px !default;\n$tooltip-color: $white !default;\n$tooltip-bg: $black !default;\n$tooltip-opacity: .9 !default;\n$tooltip-padding-y: .25rem !default;\n$tooltip-padding-x: .5rem !default;\n$tooltip-margin: 0 !default;\n\n$tooltip-arrow-width: .8rem !default;\n$tooltip-arrow-height: .4rem !default;\n$tooltip-arrow-color: $tooltip-bg !default;\n\n\n// Popovers\n\n$popover-bg: $white !default;\n$popover-max-width: 276px !default;\n$popover-border-width: $border-width !default;\n$popover-border-color: rgba($black, .2) !default;\n$popover-box-shadow: 0 .25rem .5rem rgba($black, .2) !default;\n\n$popover-header-bg: darken($popover-bg, 3%) !default;\n$popover-header-color: $headings-color !default;\n$popover-header-padding-y: .5rem !default;\n$popover-header-padding-x: .75rem !default;\n\n$popover-body-color: $body-color !default;\n$popover-body-padding-y: $popover-header-padding-y !default;\n$popover-body-padding-x: $popover-header-padding-x !default;\n\n$popover-arrow-width: 1rem !default;\n$popover-arrow-height: .5rem !default;\n$popover-arrow-color: $popover-bg !default;\n\n$popover-arrow-outer-color: fade-in($popover-border-color, .05) !default;\n\n\n// Badges\n\n$badge-font-size: 75% !default;\n$badge-font-weight: $font-weight-bold !default;\n$badge-padding-y: .25em !default;\n$badge-padding-x: .4em !default;\n$badge-border-radius: $border-radius !default;\n\n$badge-pill-padding-x: .6em !default;\n// Use a higher than normal value to ensure completely rounded edges when\n// customizing padding or font-size on labels.\n$badge-pill-border-radius: 10rem !default;\n\n\n// Modals\n\n// Padding applied to the modal body\n$modal-inner-padding: 1rem !default;\n\n$modal-dialog-margin: .5rem !default;\n$modal-dialog-margin-y-sm-up: 1.75rem !default;\n\n$modal-title-line-height: $line-height-base !default;\n\n$modal-content-bg: $white !default;\n$modal-content-border-color: rgba($black, .2) !default;\n$modal-content-border-width: $border-width !default;\n$modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default;\n$modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .5) !default;\n\n$modal-backdrop-bg: $black !default;\n$modal-backdrop-opacity: .5 !default;\n$modal-header-border-color: $gray-200 !default;\n$modal-footer-border-color: $modal-header-border-color !default;\n$modal-header-border-width: $modal-content-border-width !default;\n$modal-footer-border-width: $modal-header-border-width !default;\n$modal-header-padding: 1rem !default;\n\n$modal-lg: 800px !default;\n$modal-md: 500px !default;\n$modal-sm: 300px !default;\n\n$modal-transition: transform .3s ease-out !default;\n\n\n// Alerts\n//\n// Define alert colors, border radius, and padding.\n\n$alert-padding-y: .75rem !default;\n$alert-padding-x: 1.25rem !default;\n$alert-margin-bottom: 1rem !default;\n$alert-border-radius: $border-radius !default;\n$alert-link-font-weight: $font-weight-bold !default;\n$alert-border-width: $border-width !default;\n\n\n// Progress bars\n\n$progress-height: 1rem !default;\n$progress-font-size: ($font-size-base * .75) !default;\n$progress-bg: $gray-200 !default;\n$progress-border-radius: $border-radius !default;\n$progress-box-shadow: inset 0 .1rem .1rem rgba($black, .1) !default;\n$progress-bar-color: $white !default;\n$progress-bar-bg: theme-color(\"primary\") !default;\n$progress-bar-animation-timing: 1s linear infinite !default;\n$progress-bar-transition: width .6s ease !default;\n\n// List group\n\n$list-group-bg: $white !default;\n$list-group-border-color: rgba($black, .125) !default;\n$list-group-border-width: $border-width !default;\n$list-group-border-radius: $border-radius !default;\n\n$list-group-item-padding-y: .75rem !default;\n$list-group-item-padding-x: 1.25rem !default;\n\n$list-group-hover-bg: $gray-100 !default;\n$list-group-active-color: $component-active-color !default;\n$list-group-active-bg: $component-active-bg !default;\n$list-group-active-border-color: $list-group-active-bg !default;\n\n$list-group-disabled-color: $gray-600 !default;\n$list-group-disabled-bg: $list-group-bg !default;\n\n$list-group-action-color: $gray-700 !default;\n$list-group-action-hover-color: $list-group-action-color !default;\n\n$list-group-action-active-color: $body-color !default;\n$list-group-action-active-bg: $gray-200 !default;\n\n\n// Image thumbnails\n\n$thumbnail-padding: .25rem !default;\n$thumbnail-bg: $body-bg !default;\n$thumbnail-border-width: $border-width !default;\n$thumbnail-border-color: $gray-300 !default;\n$thumbnail-border-radius: $border-radius !default;\n$thumbnail-box-shadow: 0 1px 2px rgba($black, .075) !default;\n\n\n// Figures\n\n$figure-caption-font-size: 90% !default;\n$figure-caption-color: $gray-600 !default;\n\n\n// Breadcrumbs\n\n$breadcrumb-padding-y: .75rem !default;\n$breadcrumb-padding-x: 1rem !default;\n$breadcrumb-item-padding: .5rem !default;\n\n$breadcrumb-margin-bottom: 1rem !default;\n\n$breadcrumb-bg: $gray-200 !default;\n$breadcrumb-divider-color: $gray-600 !default;\n$breadcrumb-active-color: $gray-600 !default;\n$breadcrumb-divider: \"/\" !default;\n\n\n// Carousel\n\n$carousel-control-color: $white !default;\n$carousel-control-width: 15% !default;\n$carousel-control-opacity: .5 !default;\n\n$carousel-indicator-width: 30px !default;\n$carousel-indicator-height: 3px !default;\n$carousel-indicator-spacer: 3px !default;\n$carousel-indicator-active-bg: $white !default;\n\n$carousel-caption-width: 70% !default;\n$carousel-caption-color: $white !default;\n\n$carousel-control-icon-width: 20px !default;\n\n$carousel-control-prev-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$carousel-control-next-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$carousel-transition: transform .6s ease !default;\n\n\n// Close\n\n$close-font-size: $font-size-base * 1.5 !default;\n$close-font-weight: $font-weight-bold !default;\n$close-color: $black !default;\n$close-text-shadow: 0 1px 0 $white !default;\n\n// Code\n\n$code-font-size: 87.5% !default;\n$code-color: $pink !default;\n\n$kbd-padding-y: .2rem !default;\n$kbd-padding-x: .4rem !default;\n$kbd-font-size: $code-font-size !default;\n$kbd-color: $white !default;\n$kbd-bg: $gray-900 !default;\n\n$pre-color: $gray-900 !default;\n$pre-scrollable-max-height: 340px !default;\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n // Common properties for all breakpoints\n %grid-column {\n position: relative;\n width: 100%;\n min-height: 1px; // Prevent columns from collapsing when empty\n padding-right: ($gutter / 2);\n padding-left: ($gutter / 2);\n }\n\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n // Allow columns to stretch full width below their breakpoints\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @extend %grid-column;\n }\n }\n .col#{$infix},\n .col#{$infix}-auto {\n @extend %grid-column;\n }\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col#{$infix}-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none; // Reset earlier grid tiers\n }\n\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n .order#{$infix}-first {\n order: -1;\n }\n\n @for $i from 1 through $columns {\n .order#{$infix}-#{$i} {\n order: $i;\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n }\n}\n","// stylelint-disable declaration-no-important\n\n// Flex variation\n//\n// Custom styles for additional flex alignment options.\n\n@each $breakpoint in map-keys($grid-breakpoints) {\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n .flex#{$infix}-row { flex-direction: row !important; }\n .flex#{$infix}-column { flex-direction: column !important; }\n .flex#{$infix}-row-reverse { flex-direction: row-reverse !important; }\n .flex#{$infix}-column-reverse { flex-direction: column-reverse !important; }\n\n .flex#{$infix}-wrap { flex-wrap: wrap !important; }\n .flex#{$infix}-nowrap { flex-wrap: nowrap !important; }\n .flex#{$infix}-wrap-reverse { flex-wrap: wrap-reverse !important; }\n\n .justify-content#{$infix}-start { justify-content: flex-start !important; }\n .justify-content#{$infix}-end { justify-content: flex-end !important; }\n .justify-content#{$infix}-center { justify-content: center !important; }\n .justify-content#{$infix}-between { justify-content: space-between !important; }\n .justify-content#{$infix}-around { justify-content: space-around !important; }\n\n .align-items#{$infix}-start { align-items: flex-start !important; }\n .align-items#{$infix}-end { align-items: flex-end !important; }\n .align-items#{$infix}-center { align-items: center !important; }\n .align-items#{$infix}-baseline { align-items: baseline !important; }\n .align-items#{$infix}-stretch { align-items: stretch !important; }\n\n .align-content#{$infix}-start { align-content: flex-start !important; }\n .align-content#{$infix}-end { align-content: flex-end !important; }\n .align-content#{$infix}-center { align-content: center !important; }\n .align-content#{$infix}-between { align-content: space-between !important; }\n .align-content#{$infix}-around { align-content: space-around !important; }\n .align-content#{$infix}-stretch { align-content: stretch !important; }\n\n .align-self#{$infix}-auto { align-self: auto !important; }\n .align-self#{$infix}-start { align-self: flex-start !important; }\n .align-self#{$infix}-end { align-self: flex-end !important; }\n .align-self#{$infix}-center { align-self: center !important; }\n .align-self#{$infix}-baseline { align-self: baseline !important; }\n .align-self#{$infix}-stretch { align-self: stretch !important; }\n }\n}\n"]} \ No newline at end of file diff --git a/frontend/assets/libs/bootstrap4/css/bootstrap-grid.min.css b/frontend/assets/libs/bootstrap4/css/bootstrap-grid.min.css new file mode 100644 index 0000000..a7fbe61 --- /dev/null +++ b/frontend/assets/libs/bootstrap4/css/bootstrap-grid.min.css @@ -0,0 +1,7 @@ +/*! + * Bootstrap Grid v4.0.0-beta.3 (https://getbootstrap.com) + * Copyright 2011-2017 The Bootstrap Authors + * Copyright 2011-2017 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */@-ms-viewport{width:device-width}html{box-sizing:border-box;-ms-overflow-style:scrollbar}*,::after,::before{box-sizing:inherit}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}} +/*# sourceMappingURL=bootstrap-grid.min.css.map */ \ No newline at end of file diff --git a/frontend/assets/libs/bootstrap4/css/bootstrap-grid.min.css.map b/frontend/assets/libs/bootstrap4/css/bootstrap-grid.min.css.map new file mode 100644 index 0000000..fd2269e --- /dev/null +++ b/frontend/assets/libs/bootstrap4/css/bootstrap-grid.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/bootstrap-grid.scss","dist/css/bootstrap-grid.css","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_breakpoints.scss","../../scss/mixins/_grid-framework.scss","../../scss/utilities/_flex.scss"],"names":[],"mappings":"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","sourcesContent":["/*!\n * Bootstrap Grid v4.0.0-beta.3 (https://getbootstrap.com)\n * Copyright 2011-2017 The Bootstrap Authors\n * Copyright 2011-2017 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n@at-root {\n @-ms-viewport { width: device-width; } // stylelint-disable-line at-rule-no-vendor-prefix\n}\n\nhtml {\n box-sizing: border-box;\n -ms-overflow-style: scrollbar;\n}\n\n*,\n*::before,\n*::after {\n box-sizing: inherit;\n}\n\n@import \"functions\";\n@import \"variables\";\n\n//\n// Grid mixins\n//\n\n@import \"mixins/breakpoints\";\n@import \"mixins/grid-framework\";\n@import \"mixins/grid\";\n\n@import \"grid\";\n@import \"utilities/flex\";\n","/*!\n * Bootstrap Grid v4.0.0-beta.3 (https://getbootstrap.com)\n * Copyright 2011-2017 The Bootstrap Authors\n * Copyright 2011-2017 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n@-ms-viewport {\n width: device-width;\n}\n\nhtml {\n box-sizing: border-box;\n -ms-overflow-style: scrollbar;\n}\n\n*,\n*::before,\n*::after {\n box-sizing: inherit;\n}\n\n.container {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container {\n max-width: 540px;\n }\n}\n\n@media (min-width: 768px) {\n .container {\n max-width: 720px;\n }\n}\n\n@media (min-width: 992px) {\n .container {\n max-width: 960px;\n }\n}\n\n@media (min-width: 1200px) {\n .container {\n max-width: 1140px;\n }\n}\n\n.container-fluid {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n.row {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n margin-right: -15px;\n margin-left: -15px;\n}\n\n.no-gutters {\n margin-right: 0;\n margin-left: 0;\n}\n\n.no-gutters > .col,\n.no-gutters > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n}\n\n.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,\n.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,\n.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,\n.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,\n.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,\n.col-xl-auto {\n position: relative;\n width: 100%;\n min-height: 1px;\n padding-right: 15px;\n padding-left: 15px;\n}\n\n.col {\n -ms-flex-preferred-size: 0;\n flex-basis: 0;\n -webkit-box-flex: 1;\n -ms-flex-positive: 1;\n flex-grow: 1;\n max-width: 100%;\n}\n\n.col-auto {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n}\n\n.col-1 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 8.333333%;\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n}\n\n.col-2 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 16.666667%;\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n}\n\n.col-3 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 25%;\n flex: 0 0 25%;\n max-width: 25%;\n}\n\n.col-4 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 33.333333%;\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n}\n\n.col-5 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 41.666667%;\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n}\n\n.col-6 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 50%;\n flex: 0 0 50%;\n max-width: 50%;\n}\n\n.col-7 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 58.333333%;\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n}\n\n.col-8 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 66.666667%;\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n}\n\n.col-9 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 75%;\n flex: 0 0 75%;\n max-width: 75%;\n}\n\n.col-10 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 83.333333%;\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n}\n\n.col-11 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 91.666667%;\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n}\n\n.col-12 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n max-width: 100%;\n}\n\n.order-first {\n -webkit-box-ordinal-group: 0;\n -ms-flex-order: -1;\n order: -1;\n}\n\n.order-1 {\n -webkit-box-ordinal-group: 2;\n -ms-flex-order: 1;\n order: 1;\n}\n\n.order-2 {\n -webkit-box-ordinal-group: 3;\n -ms-flex-order: 2;\n order: 2;\n}\n\n.order-3 {\n -webkit-box-ordinal-group: 4;\n -ms-flex-order: 3;\n order: 3;\n}\n\n.order-4 {\n -webkit-box-ordinal-group: 5;\n -ms-flex-order: 4;\n order: 4;\n}\n\n.order-5 {\n -webkit-box-ordinal-group: 6;\n -ms-flex-order: 5;\n order: 5;\n}\n\n.order-6 {\n -webkit-box-ordinal-group: 7;\n -ms-flex-order: 6;\n order: 6;\n}\n\n.order-7 {\n -webkit-box-ordinal-group: 8;\n -ms-flex-order: 7;\n order: 7;\n}\n\n.order-8 {\n -webkit-box-ordinal-group: 9;\n -ms-flex-order: 8;\n order: 8;\n}\n\n.order-9 {\n -webkit-box-ordinal-group: 10;\n -ms-flex-order: 9;\n order: 9;\n}\n\n.order-10 {\n -webkit-box-ordinal-group: 11;\n -ms-flex-order: 10;\n order: 10;\n}\n\n.order-11 {\n -webkit-box-ordinal-group: 12;\n -ms-flex-order: 11;\n order: 11;\n}\n\n.order-12 {\n -webkit-box-ordinal-group: 13;\n -ms-flex-order: 12;\n order: 12;\n}\n\n.offset-1 {\n margin-left: 8.333333%;\n}\n\n.offset-2 {\n margin-left: 16.666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.333333%;\n}\n\n.offset-5 {\n margin-left: 41.666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.333333%;\n}\n\n.offset-8 {\n margin-left: 66.666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.333333%;\n}\n\n.offset-11 {\n margin-left: 91.666667%;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n -ms-flex-preferred-size: 0;\n flex-basis: 0;\n -webkit-box-flex: 1;\n -ms-flex-positive: 1;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-sm-auto {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-sm-1 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 8.333333%;\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-sm-2 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 16.666667%;\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-sm-3 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 25%;\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-sm-4 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 33.333333%;\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-sm-5 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 41.666667%;\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-sm-6 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 50%;\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-sm-7 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 58.333333%;\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-sm-8 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 66.666667%;\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-sm-9 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 75%;\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-sm-10 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 83.333333%;\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-sm-11 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 91.666667%;\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-sm-12 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-sm-first {\n -webkit-box-ordinal-group: 0;\n -ms-flex-order: -1;\n order: -1;\n }\n .order-sm-1 {\n -webkit-box-ordinal-group: 2;\n -ms-flex-order: 1;\n order: 1;\n }\n .order-sm-2 {\n -webkit-box-ordinal-group: 3;\n -ms-flex-order: 2;\n order: 2;\n }\n .order-sm-3 {\n -webkit-box-ordinal-group: 4;\n -ms-flex-order: 3;\n order: 3;\n }\n .order-sm-4 {\n -webkit-box-ordinal-group: 5;\n -ms-flex-order: 4;\n order: 4;\n }\n .order-sm-5 {\n -webkit-box-ordinal-group: 6;\n -ms-flex-order: 5;\n order: 5;\n }\n .order-sm-6 {\n -webkit-box-ordinal-group: 7;\n -ms-flex-order: 6;\n order: 6;\n }\n .order-sm-7 {\n -webkit-box-ordinal-group: 8;\n -ms-flex-order: 7;\n order: 7;\n }\n .order-sm-8 {\n -webkit-box-ordinal-group: 9;\n -ms-flex-order: 8;\n order: 8;\n }\n .order-sm-9 {\n -webkit-box-ordinal-group: 10;\n -ms-flex-order: 9;\n order: 9;\n }\n .order-sm-10 {\n -webkit-box-ordinal-group: 11;\n -ms-flex-order: 10;\n order: 10;\n }\n .order-sm-11 {\n -webkit-box-ordinal-group: 12;\n -ms-flex-order: 11;\n order: 11;\n }\n .order-sm-12 {\n -webkit-box-ordinal-group: 13;\n -ms-flex-order: 12;\n order: 12;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.333333%;\n }\n .offset-sm-2 {\n margin-left: 16.666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.333333%;\n }\n .offset-sm-5 {\n margin-left: 41.666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.333333%;\n }\n .offset-sm-8 {\n margin-left: 66.666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.333333%;\n }\n .offset-sm-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 768px) {\n .col-md {\n -ms-flex-preferred-size: 0;\n flex-basis: 0;\n -webkit-box-flex: 1;\n -ms-flex-positive: 1;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-md-auto {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-md-1 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 8.333333%;\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-md-2 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 16.666667%;\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-md-3 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 25%;\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-md-4 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 33.333333%;\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-md-5 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 41.666667%;\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-md-6 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 50%;\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-md-7 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 58.333333%;\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-md-8 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 66.666667%;\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-md-9 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 75%;\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-md-10 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 83.333333%;\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-md-11 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 91.666667%;\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-md-12 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-md-first {\n -webkit-box-ordinal-group: 0;\n -ms-flex-order: -1;\n order: -1;\n }\n .order-md-1 {\n -webkit-box-ordinal-group: 2;\n -ms-flex-order: 1;\n order: 1;\n }\n .order-md-2 {\n -webkit-box-ordinal-group: 3;\n -ms-flex-order: 2;\n order: 2;\n }\n .order-md-3 {\n -webkit-box-ordinal-group: 4;\n -ms-flex-order: 3;\n order: 3;\n }\n .order-md-4 {\n -webkit-box-ordinal-group: 5;\n -ms-flex-order: 4;\n order: 4;\n }\n .order-md-5 {\n -webkit-box-ordinal-group: 6;\n -ms-flex-order: 5;\n order: 5;\n }\n .order-md-6 {\n -webkit-box-ordinal-group: 7;\n -ms-flex-order: 6;\n order: 6;\n }\n .order-md-7 {\n -webkit-box-ordinal-group: 8;\n -ms-flex-order: 7;\n order: 7;\n }\n .order-md-8 {\n -webkit-box-ordinal-group: 9;\n -ms-flex-order: 8;\n order: 8;\n }\n .order-md-9 {\n -webkit-box-ordinal-group: 10;\n -ms-flex-order: 9;\n order: 9;\n }\n .order-md-10 {\n -webkit-box-ordinal-group: 11;\n -ms-flex-order: 10;\n order: 10;\n }\n .order-md-11 {\n -webkit-box-ordinal-group: 12;\n -ms-flex-order: 11;\n order: 11;\n }\n .order-md-12 {\n -webkit-box-ordinal-group: 13;\n -ms-flex-order: 12;\n order: 12;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.333333%;\n }\n .offset-md-2 {\n margin-left: 16.666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.333333%;\n }\n .offset-md-5 {\n margin-left: 41.666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.333333%;\n }\n .offset-md-8 {\n margin-left: 66.666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.333333%;\n }\n .offset-md-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 992px) {\n .col-lg {\n -ms-flex-preferred-size: 0;\n flex-basis: 0;\n -webkit-box-flex: 1;\n -ms-flex-positive: 1;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-lg-auto {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-lg-1 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 8.333333%;\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-lg-2 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 16.666667%;\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-lg-3 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 25%;\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-lg-4 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 33.333333%;\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-lg-5 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 41.666667%;\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-lg-6 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 50%;\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-lg-7 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 58.333333%;\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-lg-8 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 66.666667%;\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-lg-9 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 75%;\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-lg-10 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 83.333333%;\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-lg-11 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 91.666667%;\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-lg-12 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-lg-first {\n -webkit-box-ordinal-group: 0;\n -ms-flex-order: -1;\n order: -1;\n }\n .order-lg-1 {\n -webkit-box-ordinal-group: 2;\n -ms-flex-order: 1;\n order: 1;\n }\n .order-lg-2 {\n -webkit-box-ordinal-group: 3;\n -ms-flex-order: 2;\n order: 2;\n }\n .order-lg-3 {\n -webkit-box-ordinal-group: 4;\n -ms-flex-order: 3;\n order: 3;\n }\n .order-lg-4 {\n -webkit-box-ordinal-group: 5;\n -ms-flex-order: 4;\n order: 4;\n }\n .order-lg-5 {\n -webkit-box-ordinal-group: 6;\n -ms-flex-order: 5;\n order: 5;\n }\n .order-lg-6 {\n -webkit-box-ordinal-group: 7;\n -ms-flex-order: 6;\n order: 6;\n }\n .order-lg-7 {\n -webkit-box-ordinal-group: 8;\n -ms-flex-order: 7;\n order: 7;\n }\n .order-lg-8 {\n -webkit-box-ordinal-group: 9;\n -ms-flex-order: 8;\n order: 8;\n }\n .order-lg-9 {\n -webkit-box-ordinal-group: 10;\n -ms-flex-order: 9;\n order: 9;\n }\n .order-lg-10 {\n -webkit-box-ordinal-group: 11;\n -ms-flex-order: 10;\n order: 10;\n }\n .order-lg-11 {\n -webkit-box-ordinal-group: 12;\n -ms-flex-order: 11;\n order: 11;\n }\n .order-lg-12 {\n -webkit-box-ordinal-group: 13;\n -ms-flex-order: 12;\n order: 12;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.333333%;\n }\n .offset-lg-2 {\n margin-left: 16.666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.333333%;\n }\n .offset-lg-5 {\n margin-left: 41.666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.333333%;\n }\n .offset-lg-8 {\n margin-left: 66.666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.333333%;\n }\n .offset-lg-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 1200px) {\n .col-xl {\n -ms-flex-preferred-size: 0;\n flex-basis: 0;\n -webkit-box-flex: 1;\n -ms-flex-positive: 1;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-xl-auto {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-xl-1 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 8.333333%;\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-xl-2 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 16.666667%;\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-xl-3 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 25%;\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-xl-4 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 33.333333%;\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-xl-5 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 41.666667%;\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-xl-6 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 50%;\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-xl-7 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 58.333333%;\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-xl-8 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 66.666667%;\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-xl-9 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 75%;\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-xl-10 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 83.333333%;\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-xl-11 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 91.666667%;\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-xl-12 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-xl-first {\n -webkit-box-ordinal-group: 0;\n -ms-flex-order: -1;\n order: -1;\n }\n .order-xl-1 {\n -webkit-box-ordinal-group: 2;\n -ms-flex-order: 1;\n order: 1;\n }\n .order-xl-2 {\n -webkit-box-ordinal-group: 3;\n -ms-flex-order: 2;\n order: 2;\n }\n .order-xl-3 {\n -webkit-box-ordinal-group: 4;\n -ms-flex-order: 3;\n order: 3;\n }\n .order-xl-4 {\n -webkit-box-ordinal-group: 5;\n -ms-flex-order: 4;\n order: 4;\n }\n .order-xl-5 {\n -webkit-box-ordinal-group: 6;\n -ms-flex-order: 5;\n order: 5;\n }\n .order-xl-6 {\n -webkit-box-ordinal-group: 7;\n -ms-flex-order: 6;\n order: 6;\n }\n .order-xl-7 {\n -webkit-box-ordinal-group: 8;\n -ms-flex-order: 7;\n order: 7;\n }\n .order-xl-8 {\n -webkit-box-ordinal-group: 9;\n -ms-flex-order: 8;\n order: 8;\n }\n .order-xl-9 {\n -webkit-box-ordinal-group: 10;\n -ms-flex-order: 9;\n order: 9;\n }\n .order-xl-10 {\n -webkit-box-ordinal-group: 11;\n -ms-flex-order: 10;\n order: 10;\n }\n .order-xl-11 {\n -webkit-box-ordinal-group: 12;\n -ms-flex-order: 11;\n order: 11;\n }\n .order-xl-12 {\n -webkit-box-ordinal-group: 13;\n -ms-flex-order: 12;\n order: 12;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.333333%;\n }\n .offset-xl-2 {\n margin-left: 16.666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.333333%;\n }\n .offset-xl-5 {\n margin-left: 41.666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.333333%;\n }\n .offset-xl-8 {\n margin-left: 66.666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.333333%;\n }\n .offset-xl-11 {\n margin-left: 91.666667%;\n }\n}\n\n.flex-row {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: row !important;\n flex-direction: row !important;\n}\n\n.flex-column {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: column !important;\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: row-reverse !important;\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: column-reverse !important;\n flex-direction: column-reverse !important;\n}\n\n.flex-wrap {\n -ms-flex-wrap: wrap !important;\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n -ms-flex-wrap: nowrap !important;\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n -ms-flex-wrap: wrap-reverse !important;\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n -webkit-box-pack: start !important;\n -ms-flex-pack: start !important;\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n -webkit-box-pack: end !important;\n -ms-flex-pack: end !important;\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n -webkit-box-pack: center !important;\n -ms-flex-pack: center !important;\n justify-content: center !important;\n}\n\n.justify-content-between {\n -webkit-box-pack: justify !important;\n -ms-flex-pack: justify !important;\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n -ms-flex-pack: distribute !important;\n justify-content: space-around !important;\n}\n\n.align-items-start {\n -webkit-box-align: start !important;\n -ms-flex-align: start !important;\n align-items: flex-start !important;\n}\n\n.align-items-end {\n -webkit-box-align: end !important;\n -ms-flex-align: end !important;\n align-items: flex-end !important;\n}\n\n.align-items-center {\n -webkit-box-align: center !important;\n -ms-flex-align: center !important;\n align-items: center !important;\n}\n\n.align-items-baseline {\n -webkit-box-align: baseline !important;\n -ms-flex-align: baseline !important;\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n -webkit-box-align: stretch !important;\n -ms-flex-align: stretch !important;\n align-items: stretch !important;\n}\n\n.align-content-start {\n -ms-flex-line-pack: start !important;\n align-content: flex-start !important;\n}\n\n.align-content-end {\n -ms-flex-line-pack: end !important;\n align-content: flex-end !important;\n}\n\n.align-content-center {\n -ms-flex-line-pack: center !important;\n align-content: center !important;\n}\n\n.align-content-between {\n -ms-flex-line-pack: justify !important;\n align-content: space-between !important;\n}\n\n.align-content-around {\n -ms-flex-line-pack: distribute !important;\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n -ms-flex-line-pack: stretch !important;\n align-content: stretch !important;\n}\n\n.align-self-auto {\n -ms-flex-item-align: auto !important;\n align-self: auto !important;\n}\n\n.align-self-start {\n -ms-flex-item-align: start !important;\n align-self: flex-start !important;\n}\n\n.align-self-end {\n -ms-flex-item-align: end !important;\n align-self: flex-end !important;\n}\n\n.align-self-center {\n -ms-flex-item-align: center !important;\n align-self: center !important;\n}\n\n.align-self-baseline {\n -ms-flex-item-align: baseline !important;\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n -ms-flex-item-align: stretch !important;\n align-self: stretch !important;\n}\n\n@media (min-width: 576px) {\n .flex-sm-row {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: row !important;\n flex-direction: row !important;\n }\n .flex-sm-column {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: column !important;\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: row-reverse !important;\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: column-reverse !important;\n flex-direction: column-reverse !important;\n }\n .flex-sm-wrap {\n -ms-flex-wrap: wrap !important;\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n -ms-flex-wrap: nowrap !important;\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n -ms-flex-wrap: wrap-reverse !important;\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-sm-start {\n -webkit-box-pack: start !important;\n -ms-flex-pack: start !important;\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n -webkit-box-pack: end !important;\n -ms-flex-pack: end !important;\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n -webkit-box-pack: center !important;\n -ms-flex-pack: center !important;\n justify-content: center !important;\n }\n .justify-content-sm-between {\n -webkit-box-pack: justify !important;\n -ms-flex-pack: justify !important;\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n -ms-flex-pack: distribute !important;\n justify-content: space-around !important;\n }\n .align-items-sm-start {\n -webkit-box-align: start !important;\n -ms-flex-align: start !important;\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n -webkit-box-align: end !important;\n -ms-flex-align: end !important;\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n -webkit-box-align: center !important;\n -ms-flex-align: center !important;\n align-items: center !important;\n }\n .align-items-sm-baseline {\n -webkit-box-align: baseline !important;\n -ms-flex-align: baseline !important;\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n -webkit-box-align: stretch !important;\n -ms-flex-align: stretch !important;\n align-items: stretch !important;\n }\n .align-content-sm-start {\n -ms-flex-line-pack: start !important;\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n -ms-flex-line-pack: end !important;\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n -ms-flex-line-pack: center !important;\n align-content: center !important;\n }\n .align-content-sm-between {\n -ms-flex-line-pack: justify !important;\n align-content: space-between !important;\n }\n .align-content-sm-around {\n -ms-flex-line-pack: distribute !important;\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n -ms-flex-line-pack: stretch !important;\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n -ms-flex-item-align: auto !important;\n align-self: auto !important;\n }\n .align-self-sm-start {\n -ms-flex-item-align: start !important;\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n -ms-flex-item-align: end !important;\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n -ms-flex-item-align: center !important;\n align-self: center !important;\n }\n .align-self-sm-baseline {\n -ms-flex-item-align: baseline !important;\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n -ms-flex-item-align: stretch !important;\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 768px) {\n .flex-md-row {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: row !important;\n flex-direction: row !important;\n }\n .flex-md-column {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: column !important;\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: row-reverse !important;\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: column-reverse !important;\n flex-direction: column-reverse !important;\n }\n .flex-md-wrap {\n -ms-flex-wrap: wrap !important;\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n -ms-flex-wrap: nowrap !important;\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n -ms-flex-wrap: wrap-reverse !important;\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-md-start {\n -webkit-box-pack: start !important;\n -ms-flex-pack: start !important;\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n -webkit-box-pack: end !important;\n -ms-flex-pack: end !important;\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n -webkit-box-pack: center !important;\n -ms-flex-pack: center !important;\n justify-content: center !important;\n }\n .justify-content-md-between {\n -webkit-box-pack: justify !important;\n -ms-flex-pack: justify !important;\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n -ms-flex-pack: distribute !important;\n justify-content: space-around !important;\n }\n .align-items-md-start {\n -webkit-box-align: start !important;\n -ms-flex-align: start !important;\n align-items: flex-start !important;\n }\n .align-items-md-end {\n -webkit-box-align: end !important;\n -ms-flex-align: end !important;\n align-items: flex-end !important;\n }\n .align-items-md-center {\n -webkit-box-align: center !important;\n -ms-flex-align: center !important;\n align-items: center !important;\n }\n .align-items-md-baseline {\n -webkit-box-align: baseline !important;\n -ms-flex-align: baseline !important;\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n -webkit-box-align: stretch !important;\n -ms-flex-align: stretch !important;\n align-items: stretch !important;\n }\n .align-content-md-start {\n -ms-flex-line-pack: start !important;\n align-content: flex-start !important;\n }\n .align-content-md-end {\n -ms-flex-line-pack: end !important;\n align-content: flex-end !important;\n }\n .align-content-md-center {\n -ms-flex-line-pack: center !important;\n align-content: center !important;\n }\n .align-content-md-between {\n -ms-flex-line-pack: justify !important;\n align-content: space-between !important;\n }\n .align-content-md-around {\n -ms-flex-line-pack: distribute !important;\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n -ms-flex-line-pack: stretch !important;\n align-content: stretch !important;\n }\n .align-self-md-auto {\n -ms-flex-item-align: auto !important;\n align-self: auto !important;\n }\n .align-self-md-start {\n -ms-flex-item-align: start !important;\n align-self: flex-start !important;\n }\n .align-self-md-end {\n -ms-flex-item-align: end !important;\n align-self: flex-end !important;\n }\n .align-self-md-center {\n -ms-flex-item-align: center !important;\n align-self: center !important;\n }\n .align-self-md-baseline {\n -ms-flex-item-align: baseline !important;\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n -ms-flex-item-align: stretch !important;\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 992px) {\n .flex-lg-row {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: row !important;\n flex-direction: row !important;\n }\n .flex-lg-column {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: column !important;\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: row-reverse !important;\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: column-reverse !important;\n flex-direction: column-reverse !important;\n }\n .flex-lg-wrap {\n -ms-flex-wrap: wrap !important;\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n -ms-flex-wrap: nowrap !important;\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n -ms-flex-wrap: wrap-reverse !important;\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-lg-start {\n -webkit-box-pack: start !important;\n -ms-flex-pack: start !important;\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n -webkit-box-pack: end !important;\n -ms-flex-pack: end !important;\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n -webkit-box-pack: center !important;\n -ms-flex-pack: center !important;\n justify-content: center !important;\n }\n .justify-content-lg-between {\n -webkit-box-pack: justify !important;\n -ms-flex-pack: justify !important;\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n -ms-flex-pack: distribute !important;\n justify-content: space-around !important;\n }\n .align-items-lg-start {\n -webkit-box-align: start !important;\n -ms-flex-align: start !important;\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n -webkit-box-align: end !important;\n -ms-flex-align: end !important;\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n -webkit-box-align: center !important;\n -ms-flex-align: center !important;\n align-items: center !important;\n }\n .align-items-lg-baseline {\n -webkit-box-align: baseline !important;\n -ms-flex-align: baseline !important;\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n -webkit-box-align: stretch !important;\n -ms-flex-align: stretch !important;\n align-items: stretch !important;\n }\n .align-content-lg-start {\n -ms-flex-line-pack: start !important;\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n -ms-flex-line-pack: end !important;\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n -ms-flex-line-pack: center !important;\n align-content: center !important;\n }\n .align-content-lg-between {\n -ms-flex-line-pack: justify !important;\n align-content: space-between !important;\n }\n .align-content-lg-around {\n -ms-flex-line-pack: distribute !important;\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n -ms-flex-line-pack: stretch !important;\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n -ms-flex-item-align: auto !important;\n align-self: auto !important;\n }\n .align-self-lg-start {\n -ms-flex-item-align: start !important;\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n -ms-flex-item-align: end !important;\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n -ms-flex-item-align: center !important;\n align-self: center !important;\n }\n .align-self-lg-baseline {\n -ms-flex-item-align: baseline !important;\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n -ms-flex-item-align: stretch !important;\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 1200px) {\n .flex-xl-row {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: row !important;\n flex-direction: row !important;\n }\n .flex-xl-column {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: column !important;\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: row-reverse !important;\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: column-reverse !important;\n flex-direction: column-reverse !important;\n }\n .flex-xl-wrap {\n -ms-flex-wrap: wrap !important;\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n -ms-flex-wrap: nowrap !important;\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n -ms-flex-wrap: wrap-reverse !important;\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xl-start {\n -webkit-box-pack: start !important;\n -ms-flex-pack: start !important;\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n -webkit-box-pack: end !important;\n -ms-flex-pack: end !important;\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n -webkit-box-pack: center !important;\n -ms-flex-pack: center !important;\n justify-content: center !important;\n }\n .justify-content-xl-between {\n -webkit-box-pack: justify !important;\n -ms-flex-pack: justify !important;\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n -ms-flex-pack: distribute !important;\n justify-content: space-around !important;\n }\n .align-items-xl-start {\n -webkit-box-align: start !important;\n -ms-flex-align: start !important;\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n -webkit-box-align: end !important;\n -ms-flex-align: end !important;\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n -webkit-box-align: center !important;\n -ms-flex-align: center !important;\n align-items: center !important;\n }\n .align-items-xl-baseline {\n -webkit-box-align: baseline !important;\n -ms-flex-align: baseline !important;\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n -webkit-box-align: stretch !important;\n -ms-flex-align: stretch !important;\n align-items: stretch !important;\n }\n .align-content-xl-start {\n -ms-flex-line-pack: start !important;\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n -ms-flex-line-pack: end !important;\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n -ms-flex-line-pack: center !important;\n align-content: center !important;\n }\n .align-content-xl-between {\n -ms-flex-line-pack: justify !important;\n align-content: space-between !important;\n }\n .align-content-xl-around {\n -ms-flex-line-pack: distribute !important;\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n -ms-flex-line-pack: stretch !important;\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n -ms-flex-item-align: auto !important;\n align-self: auto !important;\n }\n .align-self-xl-start {\n -ms-flex-item-align: start !important;\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n -ms-flex-item-align: end !important;\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n -ms-flex-item-align: center !important;\n align-self: center !important;\n }\n .align-self-xl-baseline {\n -ms-flex-item-align: baseline !important;\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n -ms-flex-item-align: stretch !important;\n align-self: stretch !important;\n }\n}\n/*# sourceMappingURL=bootstrap-grid.css.map */","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-grid-classes {\n .container {\n @include make-container();\n @include make-container-max-widths();\n }\n}\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but with 100% width for\n// fluid, full width layouts.\n\n@if $enable-grid-classes {\n .container-fluid {\n @include make-container();\n }\n}\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n }\n\n // Remove the negative margin from default .row, then the horizontal padding\n // from all immediate children columns (to prevent runaway style inheritance).\n .no-gutters {\n margin-right: 0;\n margin-left: 0;\n\n > .col,\n > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n }\n }\n}\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","/// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-container() {\n width: 100%;\n padding-right: ($grid-gutter-width / 2);\n padding-left: ($grid-gutter-width / 2);\n margin-right: auto;\n margin-left: auto;\n}\n\n\n// For each breakpoint, define the maximum width of the container in a media query\n@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {\n @each $breakpoint, $container-max-width in $max-widths {\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n max-width: $container-max-width;\n }\n }\n}\n\n@mixin make-row() {\n display: flex;\n flex-wrap: wrap;\n margin-right: ($grid-gutter-width / -2);\n margin-left: ($grid-gutter-width / -2);\n}\n\n@mixin make-col-ready() {\n position: relative;\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we use `flex` values\n // later on to override this initial width.\n width: 100%;\n min-height: 1px; // Prevent collapsing\n padding-right: ($grid-gutter-width / 2);\n padding-left: ($grid-gutter-width / 2);\n}\n\n@mixin make-col($size, $columns: $grid-columns) {\n flex: 0 0 percentage($size / $columns);\n // Add a `max-width` to ensure content within each column does not blow out\n // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari\n // do not appear to require this.\n max-width: percentage($size / $columns);\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: $size / $columns;\n margin-left: if($num == 0, 0, percentage($num));\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width. Null for the largest (last) breakpoint.\n// The maximum value is calculated as the minimum of the next one less 0.01px\n// to work around the limitations of `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n//\n// >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 767px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $next: breakpoint-next($name, $breakpoints);\n @return if($next, breakpoint-min($next, $breakpoints) - .01px, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash infront.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $max: breakpoint-max($name, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($name) {\n @content;\n }\n }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n // Common properties for all breakpoints\n %grid-column {\n position: relative;\n width: 100%;\n min-height: 1px; // Prevent columns from collapsing when empty\n padding-right: ($gutter / 2);\n padding-left: ($gutter / 2);\n }\n\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n // Allow columns to stretch full width below their breakpoints\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @extend %grid-column;\n }\n }\n .col#{$infix},\n .col#{$infix}-auto {\n @extend %grid-column;\n }\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col#{$infix}-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none; // Reset earlier grid tiers\n }\n\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n .order#{$infix}-first {\n order: -1;\n }\n\n @for $i from 1 through $columns {\n .order#{$infix}-#{$i} {\n order: $i;\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n }\n}\n","// stylelint-disable declaration-no-important\n\n// Flex variation\n//\n// Custom styles for additional flex alignment options.\n\n@each $breakpoint in map-keys($grid-breakpoints) {\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n .flex#{$infix}-row { flex-direction: row !important; }\n .flex#{$infix}-column { flex-direction: column !important; }\n .flex#{$infix}-row-reverse { flex-direction: row-reverse !important; }\n .flex#{$infix}-column-reverse { flex-direction: column-reverse !important; }\n\n .flex#{$infix}-wrap { flex-wrap: wrap !important; }\n .flex#{$infix}-nowrap { flex-wrap: nowrap !important; }\n .flex#{$infix}-wrap-reverse { flex-wrap: wrap-reverse !important; }\n\n .justify-content#{$infix}-start { justify-content: flex-start !important; }\n .justify-content#{$infix}-end { justify-content: flex-end !important; }\n .justify-content#{$infix}-center { justify-content: center !important; }\n .justify-content#{$infix}-between { justify-content: space-between !important; }\n .justify-content#{$infix}-around { justify-content: space-around !important; }\n\n .align-items#{$infix}-start { align-items: flex-start !important; }\n .align-items#{$infix}-end { align-items: flex-end !important; }\n .align-items#{$infix}-center { align-items: center !important; }\n .align-items#{$infix}-baseline { align-items: baseline !important; }\n .align-items#{$infix}-stretch { align-items: stretch !important; }\n\n .align-content#{$infix}-start { align-content: flex-start !important; }\n .align-content#{$infix}-end { align-content: flex-end !important; }\n .align-content#{$infix}-center { align-content: center !important; }\n .align-content#{$infix}-between { align-content: space-between !important; }\n .align-content#{$infix}-around { align-content: space-around !important; }\n .align-content#{$infix}-stretch { align-content: stretch !important; }\n\n .align-self#{$infix}-auto { align-self: auto !important; }\n .align-self#{$infix}-start { align-self: flex-start !important; }\n .align-self#{$infix}-end { align-self: flex-end !important; }\n .align-self#{$infix}-center { align-self: center !important; }\n .align-self#{$infix}-baseline { align-self: baseline !important; }\n .align-self#{$infix}-stretch { align-self: stretch !important; }\n }\n}\n"]} \ No newline at end of file diff --git a/frontend/assets/libs/bootstrap4/css/bootstrap-reboot.css b/frontend/assets/libs/bootstrap4/css/bootstrap-reboot.css new file mode 100644 index 0000000..3bad9fc --- /dev/null +++ b/frontend/assets/libs/bootstrap4/css/bootstrap-reboot.css @@ -0,0 +1,343 @@ +/*! + * Bootstrap Reboot v4.0.0-beta.3 (https://getbootstrap.com) + * Copyright 2011-2017 The Bootstrap Authors + * Copyright 2011-2017 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) + */ +*, +*::before, +*::after { + box-sizing: border-box; +} + +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; + -ms-overflow-style: scrollbar; + -webkit-tap-highlight-color: transparent; +} + +@-ms-viewport { + width: device-width; +} + +article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section { + display: block; +} + +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: left; + background-color: #fff; +} + +[tabindex="-1"]:focus { + outline: 0 !important; +} + +hr { + box-sizing: content-box; + height: 0; + overflow: visible; +} + +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 0.5rem; +} + +p { + margin-top: 0; + margin-bottom: 1rem; +} + +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; +} + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; +} + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} + +dt { + font-weight: 700; +} + +dd { + margin-bottom: .5rem; + margin-left: 0; +} + +blockquote { + margin: 0 0 1rem; +} + +dfn { + font-style: italic; +} + +b, +strong { + font-weight: bolder; +} + +small { + font-size: 80%; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sub { + bottom: -.25em; +} + +sup { + top: -.5em; +} + +a { + color: #007bff; + text-decoration: none; + background-color: transparent; + -webkit-text-decoration-skip: objects; +} + +a:hover { + color: #0056b3; + text-decoration: underline; +} + +a:not([href]):not([tabindex]) { + color: inherit; + text-decoration: none; +} + +a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover { + color: inherit; + text-decoration: none; +} + +a:not([href]):not([tabindex]):focus { + outline: 0; +} + +pre, +code, +kbd, +samp { + font-family: monospace, monospace; + font-size: 1em; +} + +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + -ms-overflow-style: scrollbar; +} + +figure { + margin: 0 0 1rem; +} + +img { + vertical-align: middle; + border-style: none; +} + +svg:not(:root) { + overflow: hidden; +} + +a, +area, +button, +[role="button"], +input:not([type="range"]), +label, +select, +summary, +textarea { + -ms-touch-action: manipulation; + touch-action: manipulation; +} + +table { + border-collapse: collapse; +} + +caption { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + color: #868e96; + text-align: left; + caption-side: bottom; +} + +th { + text-align: inherit; +} + +label { + display: inline-block; + margin-bottom: .5rem; +} + +button { + border-radius: 0; +} + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; +} + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +button, +input { + overflow: visible; +} + +button, +select { + text-transform: none; +} + +button, +html [type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + padding: 0; + border-style: none; +} + +input[type="radio"], +input[type="checkbox"] { + box-sizing: border-box; + padding: 0; +} + +input[type="date"], +input[type="time"], +input[type="datetime-local"], +input[type="month"] { + -webkit-appearance: listbox; +} + +textarea { + overflow: auto; + resize: vertical; +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; +} + +progress { + vertical-align: baseline; +} + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +[type="search"] { + outline-offset: -2px; + -webkit-appearance: none; +} + +[type="search"]::-webkit-search-cancel-button, +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} + +output { + display: inline-block; +} + +summary { + display: list-item; + cursor: pointer; +} + +template { + display: none; +} + +[hidden] { + display: none !important; +} +/*# sourceMappingURL=bootstrap-reboot.css.map */ \ No newline at end of file diff --git a/frontend/assets/libs/bootstrap4/css/bootstrap-reboot.css.map b/frontend/assets/libs/bootstrap4/css/bootstrap-reboot.css.map new file mode 100644 index 0000000..ad7a9a4 --- /dev/null +++ b/frontend/assets/libs/bootstrap4/css/bootstrap-reboot.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/bootstrap-reboot.scss","../../scss/_reboot.scss","bootstrap-reboot.css","../../scss/_variables.scss","../../scss/mixins/_hover.scss"],"names":[],"mappings":"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","file":"bootstrap-reboot.css","sourcesContent":["/*!\n * Bootstrap Reboot v4.0.0-beta.3 (https://getbootstrap.com)\n * Copyright 2011-2017 The Bootstrap Authors\n * Copyright 2011-2017 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"reboot\";\n","// stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n// 2. Change the default font family in all browsers.\n// 3. Correct the line height in all browsers.\n// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.\n// 5. Setting @viewport causes scrollbars to overlap content in IE11 and Edge, so\n// we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n// 6. Change the default tap highlight to be completely transparent in iOS.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box; // 1\n}\n\nhtml {\n font-family: sans-serif; // 2\n line-height: 1.15; // 3\n -webkit-text-size-adjust: 100%; // 4\n -ms-text-size-adjust: 100%; // 4\n -ms-overflow-style: scrollbar; // 5\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0); // 6\n}\n\n// IE10+ doesn't honor `` in some cases.\n@at-root {\n @-ms-viewport {\n width: device-width;\n }\n}\n\n// stylelint-disable selector-list-comma-newline-after\n// Shim for \"new\" HTML5 structural elements to display correctly (IE10, older browsers)\narticle, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n// stylelint-enable selector-list-comma-newline-after\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Set an explicit initial text-align value so that we can later use the\n// the `inherit` value on things like `` elements.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n font-size: $font-size-base;\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: left; // 3\n background-color: $body-bg; // 2\n}\n\n// Suppress the focus outline on elements that cannot be accessed via keyboard.\n// This prevents an unwanted focus outline from appearing around elements that\n// might still respond to pointer events.\n//\n// Credit: https://github.com/suitcss/base\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n box-sizing: content-box; // 1\n height: 0; // 1\n overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n// stylelint-disable selector-list-comma-newline-after\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: $headings-margin-bottom;\n}\n// stylelint-enable selector-list-comma-newline-after\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Remove the bottom border in Firefox 39-.\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Duplicate behavior to the data-* attribute for our tooltip plugin\n\nabbr[title],\nabbr[data-original-title] { // 4\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 1\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic; // Add the correct font style in Android 4.3-\n}\n\n// stylelint-disable font-weight-notation\nb,\nstrong {\n font-weight: bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n// stylelint-enable font-weight-notation\n\nsmall {\n font-size: 80%; // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n -webkit-text-decoration-skip: objects; // Remove gaps in links underline in iOS 8+ and Safari 8+.\n\n @include hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href)\n// which have not been made explicitly keyboard-focusable (without tabindex).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n\n @include hover-focus {\n color: inherit;\n text-decoration: none;\n }\n\n &:focus {\n outline: 0;\n }\n}\n\n\n//\n// Code\n//\n\n// stylelint-disable font-family-no-duplicate-names\npre,\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace; // Correct the inheritance and scaling of font size in all browsers.\n font-size: 1em; // Correct the odd `em` font sizing in all browsers.\n}\n// stylelint-enable font-family-no-duplicate-names\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so\n // we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg:not(:root) {\n overflow: hidden; // Hide the overflow in IE\n}\n\n\n// Avoid 300ms click delay on touch devices that support the `touch-action` CSS property.\n//\n// In particular, unlike most other browsers, IE11+Edge on Windows 10 on touch devices and IE Mobile 10-11\n// DON'T remove the click delay when `` is present.\n// However, they DO support removing the click delay via `touch-action: manipulation`.\n// See:\n// * https://getbootstrap.com/docs/4.0/content/reboot/#click-delay-optimization-for-touch\n// * https://caniuse.com/#feat=css-touch-action\n// * https://patrickhlauke.github.io/touch/tests/results/#suppressing-300ms-delay\n\na,\narea,\nbutton,\n[role=\"button\"],\ninput:not([type=\"range\"]),\nlabel,\nselect,\nsummary,\ntextarea {\n touch-action: manipulation;\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $text-muted;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n // Matches default `` alignment by inheriting from the ``, or the\n // closest parent with a set `text-align`.\n text-align: inherit;\n}\n\n\n//\n// Forms\n//\n\nlabel {\n // Allow labels to use `margin` for spacing.\n display: inline-block;\n margin-bottom: .5rem;\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24093\nbutton {\n border-radius: 0;\n}\n\n// Work around a Firefox/IE bug where the transparent `button` background\n// results in a loss of the default `button` focus styles.\n//\n// Credit: https://github.com/suitcss/base/\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // Remove the margin in Firefox and Safari\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible; // Show the overflow in Edge\n}\n\nbutton,\nselect {\n text-transform: none; // Remove the inheritance of text transform in Firefox\n}\n\n// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n// controls in Android 4.\n// 2. Correct the inability to style clickable types in iOS and Safari.\nbutton,\nhtml [type=\"button\"], // 1\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; // 2\n}\n\n// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box; // 1. Add the correct box sizing in IE 10-\n padding: 0; // 2. Remove the padding in IE 10-\n}\n\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n // Remove the default appearance of temporal inputs to avoid a Mobile Safari\n // bug where setting a custom line-height prevents text from being vertically\n // centered within the input.\n // See https://bugs.webkit.org/show_bug.cgi?id=139848\n // and https://github.com/twbs/bootstrap/issues/11266\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto; // Remove the default vertical scrollbar in IE.\n // Textareas should really only resize vertically so they don't break their (horizontal) containers.\n resize: vertical;\n}\n\nfieldset {\n // Browsers set a default `min-width: min-content;` on fieldsets,\n // unlike e.g. `

`s, which have `min-width: 0;` by default.\n // So we reset that to ensure fieldsets behave more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359\n // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements\n min-width: 0;\n // Reset the default outline behavior of fieldsets so they don't affect page layout.\n padding: 0;\n margin: 0;\n border: 0;\n}\n\n// 1. Correct the text wrapping in Edge and IE.\n// 2. Correct the color inheritance from `fieldset` elements in IE.\nlegend {\n display: block;\n width: 100%;\n max-width: 100%; // 1\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit; // 2\n white-space: normal; // 1\n}\n\nprogress {\n vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.\n}\n\n// Correct the cursor style of increment and decrement buttons in Chrome.\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n // This overrides the extra rounded corners on search inputs in iOS so that our\n // `.form-control` class can properly style them. Note that this cannot simply\n // be added to `.form-control` as it's not specific enough. For details, see\n // https://github.com/twbs/bootstrap/issues/11586.\n outline-offset: -2px; // 2. Correct the outline style in Safari.\n -webkit-appearance: none;\n}\n\n//\n// Remove the inner padding and cancel buttons in Chrome and Safari on macOS.\n//\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// 1. Correct the inability to style clickable types in iOS and Safari.\n// 2. Change font properties to `inherit` in Safari.\n//\n\n::-webkit-file-upload-button {\n font: inherit; // 2\n -webkit-appearance: button; // 1\n}\n\n//\n// Correct element displays\n//\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item; // Add the correct display in all browsers\n cursor: pointer;\n}\n\ntemplate {\n display: none; // Add the correct display in IE\n}\n\n// Always hide an element with the `hidden` HTML attribute (from PureCSS).\n// Needed for proper display in IE 10-.\n[hidden] {\n display: none !important;\n}\n","/*!\n * Bootstrap Reboot v4.0.0-beta.3 (https://getbootstrap.com)\n * Copyright 2011-2017 The Bootstrap Authors\n * Copyright 2011-2017 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\nhtml {\n font-family: sans-serif;\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -ms-text-size-adjust: 100%;\n -ms-overflow-style: scrollbar;\n -webkit-tap-highlight-color: transparent;\n}\n\n@-ms-viewport {\n width: device-width;\n}\n\narticle, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: left;\n background-color: #fff;\n}\n\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\nhr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n}\n\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title],\nabbr[data-original-title] {\n text-decoration: underline;\n text-decoration: underline dotted;\n cursor: help;\n border-bottom: 0;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 80%;\n}\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -.25em;\n}\n\nsup {\n top: -.5em;\n}\n\na {\n color: #007bff;\n text-decoration: none;\n background-color: transparent;\n -webkit-text-decoration-skip: objects;\n}\n\na:hover {\n color: #0056b3;\n text-decoration: underline;\n}\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):focus {\n outline: 0;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\npre {\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n -ms-overflow-style: scrollbar;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg {\n vertical-align: middle;\n border-style: none;\n}\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\na,\narea,\nbutton,\n[role=\"button\"],\ninput:not([type=\"range\"]),\nlabel,\nselect,\nsummary,\ntextarea {\n touch-action: manipulation;\n}\n\ntable {\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.75rem;\n padding-bottom: 0.75rem;\n color: #868e96;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n text-align: inherit;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: .5rem;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\nbutton,\nhtml [type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box;\n padding: 0;\n}\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto;\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n max-width: 100%;\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit;\n white-space: normal;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n outline-offset: -2px;\n -webkit-appearance: none;\n}\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\ntemplate {\n display: none;\n}\n\n[hidden] {\n display: none !important;\n}\n\n/*# sourceMappingURL=bootstrap-reboot.css.map */","// Variables\n//\n// Variables should follow the `$component-state-property-size` formula for\n// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.\n\n\n//\n// Color system\n//\n\n// stylelint-disable\n$white: #fff !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #868e96 !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n$black: #000 !default;\n\n$grays: () !default;\n$grays: map-merge((\n \"100\": $gray-100,\n \"200\": $gray-200,\n \"300\": $gray-300,\n \"400\": $gray-400,\n \"500\": $gray-500,\n \"600\": $gray-600,\n \"700\": $gray-700,\n \"800\": $gray-800,\n \"900\": $gray-900\n), $grays);\n\n$blue: #007bff !default;\n$indigo: #6610f2 !default;\n$purple: #6f42c1 !default;\n$pink: #e83e8c !default;\n$red: #dc3545 !default;\n$orange: #fd7e14 !default;\n$yellow: #ffc107 !default;\n$green: #28a745 !default;\n$teal: #20c997 !default;\n$cyan: #17a2b8 !default;\n\n$colors: () !default;\n$colors: map-merge((\n \"blue\": $blue,\n \"indigo\": $indigo,\n \"purple\": $purple,\n \"pink\": $pink,\n \"red\": $red,\n \"orange\": $orange,\n \"yellow\": $yellow,\n \"green\": $green,\n \"teal\": $teal,\n \"cyan\": $cyan,\n \"white\": $white,\n \"gray\": $gray-600,\n \"gray-dark\": $gray-800\n), $colors);\n\n$primary: $blue !default;\n$secondary: $gray-600 !default;\n$success: $green !default;\n$info: $cyan !default;\n$warning: $yellow !default;\n$danger: $red !default;\n$light: $gray-100 !default;\n$dark: $gray-800 !default;\n\n$theme-colors: () !default;\n$theme-colors: map-merge((\n \"primary\": $primary,\n \"secondary\": $secondary,\n \"success\": $success,\n \"info\": $info,\n \"warning\": $warning,\n \"danger\": $danger,\n \"light\": $light,\n \"dark\": $dark\n), $theme-colors);\n// stylelint-enable\n\n// Set a specific jump point for requesting color jumps\n$theme-color-interval: 8% !default;\n\n// The yiq lightness value that determines when the lightness of color changes from \"dark\" to \"light\". Acceptable values are between 0 and 255.\n$yiq-contrasted-threshold: 150 !default;\n\n// Customize the light and dark text colors for use in our YIQ color contrast function.\n$yiq-text-dark: $gray-900 !default;\n$yiq-text-light: $white !default;\n\n// Options\n//\n// Quickly modify global styling by enabling or disabling optional features.\n\n$enable-caret: true !default;\n$enable-rounded: true !default;\n$enable-shadows: false !default;\n$enable-gradients: false !default;\n$enable-transitions: true !default;\n$enable-hover-media-query: false !default;\n$enable-grid-classes: true !default;\n$enable-print-styles: true !default;\n\n\n// Spacing\n//\n// Control the default styling of most Bootstrap elements by modifying these\n// variables. Mostly focused on spacing.\n// You can add more entries to the $spacers map, should you need more variation.\n\n$spacer: 1rem !default;\n$spacers: (\n 0: 0,\n 1: ($spacer * .25),\n 2: ($spacer * .5),\n 3: $spacer,\n 4: ($spacer * 1.5),\n 5: ($spacer * 3)\n) !default;\n\n// This variable affects the `.h-*` and `.w-*` classes.\n$sizes: (\n 25: 25%,\n 50: 50%,\n 75: 75%,\n 100: 100%\n) !default;\n\n// Body\n//\n// Settings for the `` element.\n\n$body-bg: $white !default;\n$body-color: $gray-900 !default;\n\n// Links\n//\n// Style anchor elements.\n\n$link-color: theme-color(\"primary\") !default;\n$link-decoration: none !default;\n$link-hover-color: darken($link-color, 15%) !default;\n$link-hover-decoration: underline !default;\n\n// Paragraphs\n//\n// Style p element.\n\n$paragraph-margin-bottom: 1rem !default;\n\n\n// Grid breakpoints\n//\n// Define the minimum dimensions at which your layout will change,\n// adapting to different screen sizes, for use in media queries.\n\n$grid-breakpoints: (\n xs: 0,\n sm: 576px,\n md: 768px,\n lg: 992px,\n xl: 1200px\n) !default;\n\n@include _assert-ascending($grid-breakpoints, \"$grid-breakpoints\");\n@include _assert-starts-at-zero($grid-breakpoints);\n\n\n// Grid containers\n//\n// Define the maximum width of `.container` for different screen sizes.\n\n$container-max-widths: (\n sm: 540px,\n md: 720px,\n lg: 960px,\n xl: 1140px\n) !default;\n\n@include _assert-ascending($container-max-widths, \"$container-max-widths\");\n\n\n// Grid columns\n//\n// Set the number of columns and specify the width of the gutters.\n\n$grid-columns: 12 !default;\n$grid-gutter-width: 30px !default;\n\n// Components\n//\n// Define common padding and border radius sizes and more.\n\n$line-height-lg: 1.5 !default;\n$line-height-sm: 1.5 !default;\n\n$border-width: 1px !default;\n$border-color: $gray-200 !default;\n\n$border-radius: .25rem !default;\n$border-radius-lg: .3rem !default;\n$border-radius-sm: .2rem !default;\n\n$component-active-color: $white !default;\n$component-active-bg: theme-color(\"primary\") !default;\n\n$caret-width: .3em !default;\n\n$transition-base: all .2s ease-in-out !default;\n$transition-fade: opacity .15s linear !default;\n$transition-collapse: height .35s ease !default;\n\n\n// Fonts\n//\n// Font, line-height, and color for body text, headings, and more.\n\n// stylelint-disable value-keyword-case\n$font-family-sans-serif: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\" !default;\n$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !default;\n$font-family-base: $font-family-sans-serif !default;\n// stylelint-enable value-keyword-case\n\n$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`\n$font-size-lg: ($font-size-base * 1.25) !default;\n$font-size-sm: ($font-size-base * .875) !default;\n\n$font-weight-light: 300 !default;\n$font-weight-normal: 400 !default;\n$font-weight-bold: 700 !default;\n\n$font-weight-base: $font-weight-normal !default;\n$line-height-base: 1.5 !default;\n\n$h1-font-size: $font-size-base * 2.5 !default;\n$h2-font-size: $font-size-base * 2 !default;\n$h3-font-size: $font-size-base * 1.75 !default;\n$h4-font-size: $font-size-base * 1.5 !default;\n$h5-font-size: $font-size-base * 1.25 !default;\n$h6-font-size: $font-size-base !default;\n\n$headings-margin-bottom: ($spacer / 2) !default;\n$headings-font-family: inherit !default;\n$headings-font-weight: 500 !default;\n$headings-line-height: 1.2 !default;\n$headings-color: inherit !default;\n\n$display1-size: 6rem !default;\n$display2-size: 5.5rem !default;\n$display3-size: 4.5rem !default;\n$display4-size: 3.5rem !default;\n\n$display1-weight: 300 !default;\n$display2-weight: 300 !default;\n$display3-weight: 300 !default;\n$display4-weight: 300 !default;\n$display-line-height: $headings-line-height !default;\n\n$lead-font-size: ($font-size-base * 1.25) !default;\n$lead-font-weight: 300 !default;\n\n$small-font-size: 80% !default;\n\n$text-muted: $gray-600 !default;\n\n$blockquote-small-color: $gray-600 !default;\n$blockquote-font-size: ($font-size-base * 1.25) !default;\n\n$hr-border-color: rgba($black, .1) !default;\n$hr-border-width: $border-width !default;\n\n$mark-padding: .2em !default;\n\n$dt-font-weight: $font-weight-bold !default;\n\n$kbd-box-shadow: inset 0 -.1rem 0 rgba($black, .25) !default;\n$nested-kbd-font-weight: $font-weight-bold !default;\n\n$list-inline-padding: .5rem !default;\n\n$mark-bg: #fcf8e3 !default;\n\n$hr-margin-y: $spacer !default;\n\n\n// Tables\n//\n// Customizes the `.table` component with basic values, each used across all table variations.\n\n$table-cell-padding: .75rem !default;\n$table-cell-padding-sm: .3rem !default;\n\n$table-bg: transparent !default;\n$table-accent-bg: rgba($black, .05) !default;\n$table-hover-bg: rgba($black, .075) !default;\n$table-active-bg: $table-hover-bg !default;\n\n$table-border-width: $border-width !default;\n$table-border-color: $gray-300 !default;\n\n$table-head-bg: $gray-200 !default;\n$table-head-color: $gray-700 !default;\n\n$table-dark-bg: $gray-900 !default;\n$table-dark-accent-bg: rgba($white, .05) !default;\n$table-dark-hover-bg: rgba($white, .075) !default;\n$table-dark-border-color: lighten($gray-900, 7.5%) !default;\n$table-dark-color: $body-bg !default;\n\n\n// Buttons + Forms\n//\n// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.\n\n$input-btn-padding-y: .375rem !default;\n$input-btn-padding-x: .75rem !default;\n$input-btn-line-height: $line-height-base !default;\n\n$input-btn-focus-width: .2rem !default;\n$input-btn-focus-color: rgba(theme-color(\"primary\"), .25) !default;\n$input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default;\n\n$input-btn-padding-y-sm: .25rem !default;\n$input-btn-padding-x-sm: .5rem !default;\n$input-btn-line-height-sm: $line-height-sm !default;\n\n$input-btn-padding-y-lg: .5rem !default;\n$input-btn-padding-x-lg: 1rem !default;\n$input-btn-line-height-lg: $line-height-lg !default;\n\n$input-btn-border-width: $border-width !default;\n\n\n// Buttons\n//\n// For each of Bootstrap's buttons, define text, background, and border color.\n\n$btn-padding-y: $input-btn-padding-y !default;\n$btn-padding-x: $input-btn-padding-x !default;\n$btn-line-height: $input-btn-line-height !default;\n\n$btn-padding-y-sm: $input-btn-padding-y-sm !default;\n$btn-padding-x-sm: $input-btn-padding-x-sm !default;\n$btn-line-height-sm: $input-btn-line-height-sm !default;\n\n$btn-padding-y-lg: $input-btn-padding-y-lg !default;\n$btn-padding-x-lg: $input-btn-padding-x-lg !default;\n$btn-line-height-lg: $input-btn-line-height-lg !default;\n\n$btn-border-width: $input-btn-border-width !default;\n\n$btn-font-weight: $font-weight-normal !default;\n$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;\n$btn-focus-width: $input-btn-focus-width !default;\n$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$btn-disabled-opacity: .65 !default;\n$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;\n\n$btn-link-disabled-color: $gray-600 !default;\n\n$btn-block-spacing-y: .5rem !default;\n\n// Allows for customizing button radius independently from global border radius\n$btn-border-radius: $border-radius !default;\n$btn-border-radius-lg: $border-radius-lg !default;\n$btn-border-radius-sm: $border-radius-sm !default;\n\n$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n\n// Forms\n\n$input-padding-y: $input-btn-padding-y !default;\n$input-padding-x: $input-btn-padding-x !default;\n$input-line-height: $input-btn-line-height !default;\n\n$input-padding-y-sm: $input-btn-padding-y-sm !default;\n$input-padding-x-sm: $input-btn-padding-x-sm !default;\n$input-line-height-sm: $input-btn-line-height-sm !default;\n\n$input-padding-y-lg: $input-btn-padding-y-lg !default;\n$input-padding-x-lg: $input-btn-padding-x-lg !default;\n$input-line-height-lg: $input-btn-line-height-lg !default;\n\n$input-bg: $white !default;\n$input-disabled-bg: $gray-200 !default;\n\n$input-color: $gray-700 !default;\n$input-border-color: $gray-400 !default;\n$input-border-width: $input-btn-border-width !default;\n$input-box-shadow: inset 0 1px 1px rgba($black, .075) !default;\n\n$input-border-radius: $border-radius !default;\n$input-border-radius-lg: $border-radius-lg !default;\n$input-border-radius-sm: $border-radius-sm !default;\n\n$input-focus-bg: $input-bg !default;\n$input-focus-border-color: lighten(theme-color(\"primary\"), 25%) !default;\n$input-focus-color: $input-color !default;\n$input-focus-width: $input-btn-focus-width !default;\n$input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$input-placeholder-color: $gray-600 !default;\n\n$input-height-border: $input-btn-border-width * 2 !default;\n\n$input-height-inner: ($font-size-base * $input-btn-line-height) + ($input-btn-padding-y * 2) !default;\n$input-height: calc(#{$input-height-inner} + #{$input-height-border}) !default;\n\n$input-height-inner-sm: ($font-size-sm * $input-btn-line-height-sm) + ($input-btn-padding-y-sm * 2) !default;\n$input-height-sm: calc(#{$input-height-inner-sm} + #{$input-height-border}) !default;\n\n$input-height-inner-lg: ($font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2) !default;\n$input-height-lg: calc(#{$input-height-inner-lg} + #{$input-height-border}) !default;\n\n$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$form-text-margin-top: .25rem !default;\n\n$form-check-input-gutter: 1.25rem !default;\n$form-check-input-margin-y: .3rem !default;\n$form-check-input-margin-x: .25rem !default;\n\n$form-check-inline-margin-x: .75rem !default;\n$form-check-inline-input-margin-x: .3125rem !default;\n\n$form-group-margin-bottom: 1rem !default;\n\n$input-group-addon-color: $input-color !default;\n$input-group-addon-bg: $gray-200 !default;\n$input-group-addon-border-color: $input-border-color !default;\n\n$custom-control-gutter: 1.5rem !default;\n$custom-control-spacer-x: 1rem !default;\n\n$custom-control-indicator-size: 1rem !default;\n$custom-control-indicator-bg: $gray-300 !default;\n$custom-control-indicator-bg-size: 50% 50% !default;\n$custom-control-indicator-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;\n\n$custom-control-indicator-disabled-bg: $gray-200 !default;\n$custom-control-label-disabled-color: $gray-600 !default;\n\n$custom-control-indicator-checked-color: $white !default;\n$custom-control-indicator-checked-bg: theme-color(\"primary\") !default;\n$custom-control-indicator-checked-box-shadow: none !default;\n\n$custom-control-indicator-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;\n\n$custom-control-indicator-active-color: $white !default;\n$custom-control-indicator-active-bg: lighten(theme-color(\"primary\"), 35%) !default;\n$custom-control-indicator-active-box-shadow: none !default;\n\n$custom-checkbox-indicator-border-radius: $border-radius !default;\n$custom-checkbox-indicator-icon-checked: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$custom-checkbox-indicator-indeterminate-bg: theme-color(\"primary\") !default;\n$custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;\n$custom-checkbox-indicator-icon-indeterminate: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$custom-checkbox-indicator-indeterminate-box-shadow: none !default;\n\n$custom-radio-indicator-border-radius: 50% !default;\n$custom-radio-indicator-icon-checked: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='#{$custom-control-indicator-checked-color}'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$custom-select-padding-y: .375rem !default;\n$custom-select-padding-x: .75rem !default;\n$custom-select-height: $input-height !default;\n$custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator\n$custom-select-line-height: $input-btn-line-height !default;\n$custom-select-color: $input-color !default;\n$custom-select-disabled-color: $gray-600 !default;\n$custom-select-bg: $white !default;\n$custom-select-disabled-bg: $gray-200 !default;\n$custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions\n$custom-select-indicator-color: $gray-800 !default;\n$custom-select-indicator: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$custom-select-border-width: $input-btn-border-width !default;\n$custom-select-border-color: $input-border-color !default;\n$custom-select-border-radius: $border-radius !default;\n\n$custom-select-focus-border-color: $input-focus-border-color !default;\n$custom-select-focus-box-shadow: inset 0 1px 2px rgba($black, .075), $input-btn-focus-box-shadow !default;\n\n$custom-select-font-size-sm: 75% !default;\n$custom-select-height-sm: $input-height-sm !default;\n\n$custom-select-font-size-lg: 125% !default;\n$custom-select-height-lg: $input-height-lg !default;\n\n$custom-file-height: $input-height !default;\n$custom-file-focus-border-color: $input-focus-border-color !default;\n$custom-file-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$custom-file-padding-y: $input-btn-padding-y !default;\n$custom-file-padding-x: $input-btn-padding-x !default;\n$custom-file-line-height: $input-btn-line-height !default;\n$custom-file-color: $input-color !default;\n$custom-file-bg: $input-bg !default;\n$custom-file-border-width: $input-btn-border-width !default;\n$custom-file-border-color: $input-border-color !default;\n$custom-file-border-radius: $input-border-radius !default;\n$custom-file-box-shadow: $input-box-shadow !default;\n$custom-file-button-color: $custom-file-color !default;\n$custom-file-button-bg: $input-group-addon-bg !default;\n$custom-file-text: (\n en: \"Browse\"\n) !default;\n\n\n// Form validation\n$form-feedback-margin-top: $form-text-margin-top !default;\n$form-feedback-font-size: $small-font-size !default;\n$form-feedback-valid-color: theme-color(\"success\") !default;\n$form-feedback-invalid-color: theme-color(\"danger\") !default;\n\n\n// Dropdowns\n//\n// Dropdown menu container and contents.\n\n$dropdown-min-width: 10rem !default;\n$dropdown-padding-y: .5rem !default;\n$dropdown-spacer: .125rem !default;\n$dropdown-bg: $white !default;\n$dropdown-border-color: rgba($black, .15) !default;\n$dropdown-border-radius: $border-radius !default;\n$dropdown-border-width: $border-width !default;\n$dropdown-divider-bg: $gray-200 !default;\n$dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default;\n\n$dropdown-link-color: $gray-900 !default;\n$dropdown-link-hover-color: darken($gray-900, 5%) !default;\n$dropdown-link-hover-bg: $gray-100 !default;\n\n$dropdown-link-active-color: $component-active-color !default;\n$dropdown-link-active-bg: $component-active-bg !default;\n\n$dropdown-link-disabled-color: $gray-600 !default;\n\n$dropdown-item-padding-y: .25rem !default;\n$dropdown-item-padding-x: 1.5rem !default;\n\n$dropdown-header-color: $gray-600 !default;\n\n\n// Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n\n$zindex-dropdown: 1000 !default;\n$zindex-sticky: 1020 !default;\n$zindex-fixed: 1030 !default;\n$zindex-modal-backdrop: 1040 !default;\n$zindex-modal: 1050 !default;\n$zindex-popover: 1060 !default;\n$zindex-tooltip: 1070 !default;\n\n// Navs\n\n$nav-link-padding-y: .5rem !default;\n$nav-link-padding-x: 1rem !default;\n$nav-link-disabled-color: $gray-600 !default;\n\n$nav-tabs-border-color: $gray-300 !default;\n$nav-tabs-border-width: $border-width !default;\n$nav-tabs-border-radius: $border-radius !default;\n$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;\n$nav-tabs-link-active-color: $gray-700 !default;\n$nav-tabs-link-active-bg: $body-bg !default;\n$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;\n\n$nav-pills-border-radius: $border-radius !default;\n$nav-pills-link-active-color: $component-active-color !default;\n$nav-pills-link-active-bg: $component-active-bg !default;\n\n// Navbar\n\n$navbar-padding-y: ($spacer / 2) !default;\n$navbar-padding-x: $spacer !default;\n\n$navbar-brand-font-size: $font-size-lg !default;\n// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link\n$nav-link-height: ($font-size-base * $line-height-base + $nav-link-padding-y * 2) !default;\n$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;\n$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default;\n\n$navbar-toggler-padding-y: .25rem !default;\n$navbar-toggler-padding-x: .75rem !default;\n$navbar-toggler-font-size: $font-size-lg !default;\n$navbar-toggler-border-radius: $btn-border-radius !default;\n\n$navbar-dark-color: rgba($white, .5) !default;\n$navbar-dark-hover-color: rgba($white, .75) !default;\n$navbar-dark-active-color: $white !default;\n$navbar-dark-disabled-color: rgba($white, .25) !default;\n$navbar-dark-toggler-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$navbar-dark-toggler-border-color: rgba($white, .1) !default;\n\n$navbar-light-color: rgba($black, .5) !default;\n$navbar-light-hover-color: rgba($black, .7) !default;\n$navbar-light-active-color: rgba($black, .9) !default;\n$navbar-light-disabled-color: rgba($black, .3) !default;\n$navbar-light-toggler-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$navbar-light-toggler-border-color: rgba($black, .1) !default;\n\n// Pagination\n\n$pagination-padding-y: .5rem !default;\n$pagination-padding-x: .75rem !default;\n$pagination-padding-y-sm: .25rem !default;\n$pagination-padding-x-sm: .5rem !default;\n$pagination-padding-y-lg: .75rem !default;\n$pagination-padding-x-lg: 1.5rem !default;\n$pagination-line-height: 1.25 !default;\n\n$pagination-color: $link-color !default;\n$pagination-bg: $white !default;\n$pagination-border-width: $border-width !default;\n$pagination-border-color: $gray-300 !default;\n\n$pagination-hover-color: $link-hover-color !default;\n$pagination-hover-bg: $gray-200 !default;\n$pagination-hover-border-color: $gray-300 !default;\n\n$pagination-active-color: $white !default;\n$pagination-active-bg: theme-color(\"primary\") !default;\n$pagination-active-border-color: theme-color(\"primary\") !default;\n\n$pagination-disabled-color: $gray-600 !default;\n$pagination-disabled-bg: $white !default;\n$pagination-disabled-border-color: $gray-300 !default;\n\n\n// Jumbotron\n\n$jumbotron-padding: 2rem !default;\n$jumbotron-bg: $gray-200 !default;\n\n\n// Cards\n\n$card-spacer-y: .75rem !default;\n$card-spacer-x: 1.25rem !default;\n$card-border-width: $border-width !default;\n$card-border-radius: $border-radius !default;\n$card-border-color: rgba($black, .125) !default;\n$card-inner-border-radius: calc(#{$card-border-radius} - #{$card-border-width}) !default;\n$card-cap-bg: rgba($black, .03) !default;\n$card-bg: $white !default;\n\n$card-img-overlay-padding: 1.25rem !default;\n\n$card-group-margin: ($grid-gutter-width / 2) !default;\n$card-deck-margin: $card-group-margin !default;\n\n$card-columns-count: 3 !default;\n$card-columns-gap: 1.25rem !default;\n$card-columns-margin: $card-spacer-y !default;\n\n\n// Tooltips\n\n$tooltip-max-width: 200px !default;\n$tooltip-color: $white !default;\n$tooltip-bg: $black !default;\n$tooltip-opacity: .9 !default;\n$tooltip-padding-y: .25rem !default;\n$tooltip-padding-x: .5rem !default;\n$tooltip-margin: 0 !default;\n\n$tooltip-arrow-width: .8rem !default;\n$tooltip-arrow-height: .4rem !default;\n$tooltip-arrow-color: $tooltip-bg !default;\n\n\n// Popovers\n\n$popover-bg: $white !default;\n$popover-max-width: 276px !default;\n$popover-border-width: $border-width !default;\n$popover-border-color: rgba($black, .2) !default;\n$popover-box-shadow: 0 .25rem .5rem rgba($black, .2) !default;\n\n$popover-header-bg: darken($popover-bg, 3%) !default;\n$popover-header-color: $headings-color !default;\n$popover-header-padding-y: .5rem !default;\n$popover-header-padding-x: .75rem !default;\n\n$popover-body-color: $body-color !default;\n$popover-body-padding-y: $popover-header-padding-y !default;\n$popover-body-padding-x: $popover-header-padding-x !default;\n\n$popover-arrow-width: 1rem !default;\n$popover-arrow-height: .5rem !default;\n$popover-arrow-color: $popover-bg !default;\n\n$popover-arrow-outer-color: fade-in($popover-border-color, .05) !default;\n\n\n// Badges\n\n$badge-font-size: 75% !default;\n$badge-font-weight: $font-weight-bold !default;\n$badge-padding-y: .25em !default;\n$badge-padding-x: .4em !default;\n$badge-border-radius: $border-radius !default;\n\n$badge-pill-padding-x: .6em !default;\n// Use a higher than normal value to ensure completely rounded edges when\n// customizing padding or font-size on labels.\n$badge-pill-border-radius: 10rem !default;\n\n\n// Modals\n\n// Padding applied to the modal body\n$modal-inner-padding: 1rem !default;\n\n$modal-dialog-margin: .5rem !default;\n$modal-dialog-margin-y-sm-up: 1.75rem !default;\n\n$modal-title-line-height: $line-height-base !default;\n\n$modal-content-bg: $white !default;\n$modal-content-border-color: rgba($black, .2) !default;\n$modal-content-border-width: $border-width !default;\n$modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default;\n$modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .5) !default;\n\n$modal-backdrop-bg: $black !default;\n$modal-backdrop-opacity: .5 !default;\n$modal-header-border-color: $gray-200 !default;\n$modal-footer-border-color: $modal-header-border-color !default;\n$modal-header-border-width: $modal-content-border-width !default;\n$modal-footer-border-width: $modal-header-border-width !default;\n$modal-header-padding: 1rem !default;\n\n$modal-lg: 800px !default;\n$modal-md: 500px !default;\n$modal-sm: 300px !default;\n\n$modal-transition: transform .3s ease-out !default;\n\n\n// Alerts\n//\n// Define alert colors, border radius, and padding.\n\n$alert-padding-y: .75rem !default;\n$alert-padding-x: 1.25rem !default;\n$alert-margin-bottom: 1rem !default;\n$alert-border-radius: $border-radius !default;\n$alert-link-font-weight: $font-weight-bold !default;\n$alert-border-width: $border-width !default;\n\n\n// Progress bars\n\n$progress-height: 1rem !default;\n$progress-font-size: ($font-size-base * .75) !default;\n$progress-bg: $gray-200 !default;\n$progress-border-radius: $border-radius !default;\n$progress-box-shadow: inset 0 .1rem .1rem rgba($black, .1) !default;\n$progress-bar-color: $white !default;\n$progress-bar-bg: theme-color(\"primary\") !default;\n$progress-bar-animation-timing: 1s linear infinite !default;\n$progress-bar-transition: width .6s ease !default;\n\n// List group\n\n$list-group-bg: $white !default;\n$list-group-border-color: rgba($black, .125) !default;\n$list-group-border-width: $border-width !default;\n$list-group-border-radius: $border-radius !default;\n\n$list-group-item-padding-y: .75rem !default;\n$list-group-item-padding-x: 1.25rem !default;\n\n$list-group-hover-bg: $gray-100 !default;\n$list-group-active-color: $component-active-color !default;\n$list-group-active-bg: $component-active-bg !default;\n$list-group-active-border-color: $list-group-active-bg !default;\n\n$list-group-disabled-color: $gray-600 !default;\n$list-group-disabled-bg: $list-group-bg !default;\n\n$list-group-action-color: $gray-700 !default;\n$list-group-action-hover-color: $list-group-action-color !default;\n\n$list-group-action-active-color: $body-color !default;\n$list-group-action-active-bg: $gray-200 !default;\n\n\n// Image thumbnails\n\n$thumbnail-padding: .25rem !default;\n$thumbnail-bg: $body-bg !default;\n$thumbnail-border-width: $border-width !default;\n$thumbnail-border-color: $gray-300 !default;\n$thumbnail-border-radius: $border-radius !default;\n$thumbnail-box-shadow: 0 1px 2px rgba($black, .075) !default;\n\n\n// Figures\n\n$figure-caption-font-size: 90% !default;\n$figure-caption-color: $gray-600 !default;\n\n\n// Breadcrumbs\n\n$breadcrumb-padding-y: .75rem !default;\n$breadcrumb-padding-x: 1rem !default;\n$breadcrumb-item-padding: .5rem !default;\n\n$breadcrumb-margin-bottom: 1rem !default;\n\n$breadcrumb-bg: $gray-200 !default;\n$breadcrumb-divider-color: $gray-600 !default;\n$breadcrumb-active-color: $gray-600 !default;\n$breadcrumb-divider: \"/\" !default;\n\n\n// Carousel\n\n$carousel-control-color: $white !default;\n$carousel-control-width: 15% !default;\n$carousel-control-opacity: .5 !default;\n\n$carousel-indicator-width: 30px !default;\n$carousel-indicator-height: 3px !default;\n$carousel-indicator-spacer: 3px !default;\n$carousel-indicator-active-bg: $white !default;\n\n$carousel-caption-width: 70% !default;\n$carousel-caption-color: $white !default;\n\n$carousel-control-icon-width: 20px !default;\n\n$carousel-control-prev-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$carousel-control-next-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$carousel-transition: transform .6s ease !default;\n\n\n// Close\n\n$close-font-size: $font-size-base * 1.5 !default;\n$close-font-weight: $font-weight-bold !default;\n$close-color: $black !default;\n$close-text-shadow: 0 1px 0 $white !default;\n\n// Code\n\n$code-font-size: 87.5% !default;\n$code-color: $pink !default;\n\n$kbd-padding-y: .2rem !default;\n$kbd-padding-x: .4rem !default;\n$kbd-font-size: $code-font-size !default;\n$kbd-color: $white !default;\n$kbd-bg: $gray-900 !default;\n\n$pre-color: $gray-900 !default;\n$pre-scrollable-max-height: 340px !default;\n","// stylelint-disable indentation\n@mixin hover {\n // TODO: re-enable along with mq4-hover-shim\n// @if $enable-hover-media-query {\n// // See Media Queries Level 4: https://drafts.csswg.org/mediaqueries/#hover\n// // Currently shimmed by https://github.com/twbs/mq4-hover-shim\n// @media (hover: hover) {\n// &:hover { @content }\n// }\n// }\n// @else {\n &:hover { @content; }\n// }\n}\n\n\n@mixin hover-focus {\n @if $enable-hover-media-query {\n &:focus {\n @content;\n }\n @include hover { @content; }\n } @else {\n &:focus,\n &:hover {\n @content;\n }\n }\n}\n\n@mixin plain-hover-focus {\n @if $enable-hover-media-query {\n &,\n &:focus {\n @content;\n }\n @include hover { @content; }\n } @else {\n &,\n &:focus,\n &:hover {\n @content;\n }\n }\n}\n\n@mixin hover-focus-active {\n @if $enable-hover-media-query {\n &:focus,\n &:active {\n @content;\n }\n @include hover { @content; }\n } @else {\n &:focus,\n &:active,\n &:hover {\n @content;\n }\n }\n}\n"]} \ No newline at end of file diff --git a/frontend/assets/libs/bootstrap4/css/bootstrap-reboot.min.css b/frontend/assets/libs/bootstrap4/css/bootstrap-reboot.min.css new file mode 100644 index 0000000..b940b2d --- /dev/null +++ b/frontend/assets/libs/bootstrap4/css/bootstrap-reboot.min.css @@ -0,0 +1,8 @@ +/*! + * Bootstrap Reboot v4.0.0-beta.3 (https://getbootstrap.com) + * Copyright 2011-2017 The Bootstrap Authors + * Copyright 2011-2017 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) + */*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}[role=button],a,area,button,input:not([type=range]),label,select,summary,textarea{-ms-touch-action:manipulation;touch-action:manipulation}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#868e96;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important} +/*# sourceMappingURL=bootstrap-reboot.min.css.map */ \ No newline at end of file diff --git a/frontend/assets/libs/bootstrap4/css/bootstrap-reboot.min.css.map b/frontend/assets/libs/bootstrap4/css/bootstrap-reboot.min.css.map new file mode 100644 index 0000000..b0285ea --- /dev/null +++ b/frontend/assets/libs/bootstrap4/css/bootstrap-reboot.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/bootstrap-reboot.scss","../../scss/_reboot.scss","dist/css/bootstrap-reboot.css","bootstrap-reboot.css","../../scss/mixins/_hover.scss"],"names":[],"mappings":"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","sourcesContent":["/*!\n * Bootstrap Reboot v4.0.0-beta.3 (https://getbootstrap.com)\n * Copyright 2011-2017 The Bootstrap Authors\n * Copyright 2011-2017 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"reboot\";\n","// stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n// 2. Change the default font family in all browsers.\n// 3. Correct the line height in all browsers.\n// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.\n// 5. Setting @viewport causes scrollbars to overlap content in IE11 and Edge, so\n// we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n// 6. Change the default tap highlight to be completely transparent in iOS.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box; // 1\n}\n\nhtml {\n font-family: sans-serif; // 2\n line-height: 1.15; // 3\n -webkit-text-size-adjust: 100%; // 4\n -ms-text-size-adjust: 100%; // 4\n -ms-overflow-style: scrollbar; // 5\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0); // 6\n}\n\n// IE10+ doesn't honor `` in some cases.\n@at-root {\n @-ms-viewport {\n width: device-width;\n }\n}\n\n// stylelint-disable selector-list-comma-newline-after\n// Shim for \"new\" HTML5 structural elements to display correctly (IE10, older browsers)\narticle, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n// stylelint-enable selector-list-comma-newline-after\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Set an explicit initial text-align value so that we can later use the\n// the `inherit` value on things like `` elements.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n font-size: $font-size-base;\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: left; // 3\n background-color: $body-bg; // 2\n}\n\n// Suppress the focus outline on elements that cannot be accessed via keyboard.\n// This prevents an unwanted focus outline from appearing around elements that\n// might still respond to pointer events.\n//\n// Credit: https://github.com/suitcss/base\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n box-sizing: content-box; // 1\n height: 0; // 1\n overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n// stylelint-disable selector-list-comma-newline-after\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: $headings-margin-bottom;\n}\n// stylelint-enable selector-list-comma-newline-after\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Remove the bottom border in Firefox 39-.\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Duplicate behavior to the data-* attribute for our tooltip plugin\n\nabbr[title],\nabbr[data-original-title] { // 4\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 1\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic; // Add the correct font style in Android 4.3-\n}\n\n// stylelint-disable font-weight-notation\nb,\nstrong {\n font-weight: bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n// stylelint-enable font-weight-notation\n\nsmall {\n font-size: 80%; // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n -webkit-text-decoration-skip: objects; // Remove gaps in links underline in iOS 8+ and Safari 8+.\n\n @include hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href)\n// which have not been made explicitly keyboard-focusable (without tabindex).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n\n @include hover-focus {\n color: inherit;\n text-decoration: none;\n }\n\n &:focus {\n outline: 0;\n }\n}\n\n\n//\n// Code\n//\n\n// stylelint-disable font-family-no-duplicate-names\npre,\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace; // Correct the inheritance and scaling of font size in all browsers.\n font-size: 1em; // Correct the odd `em` font sizing in all browsers.\n}\n// stylelint-enable font-family-no-duplicate-names\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so\n // we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg:not(:root) {\n overflow: hidden; // Hide the overflow in IE\n}\n\n\n// Avoid 300ms click delay on touch devices that support the `touch-action` CSS property.\n//\n// In particular, unlike most other browsers, IE11+Edge on Windows 10 on touch devices and IE Mobile 10-11\n// DON'T remove the click delay when `` is present.\n// However, they DO support removing the click delay via `touch-action: manipulation`.\n// See:\n// * https://getbootstrap.com/docs/4.0/content/reboot/#click-delay-optimization-for-touch\n// * https://caniuse.com/#feat=css-touch-action\n// * https://patrickhlauke.github.io/touch/tests/results/#suppressing-300ms-delay\n\na,\narea,\nbutton,\n[role=\"button\"],\ninput:not([type=\"range\"]),\nlabel,\nselect,\nsummary,\ntextarea {\n touch-action: manipulation;\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $text-muted;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n // Matches default `` alignment by inheriting from the ``, or the\n // closest parent with a set `text-align`.\n text-align: inherit;\n}\n\n\n//\n// Forms\n//\n\nlabel {\n // Allow labels to use `margin` for spacing.\n display: inline-block;\n margin-bottom: .5rem;\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24093\nbutton {\n border-radius: 0;\n}\n\n// Work around a Firefox/IE bug where the transparent `button` background\n// results in a loss of the default `button` focus styles.\n//\n// Credit: https://github.com/suitcss/base/\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // Remove the margin in Firefox and Safari\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible; // Show the overflow in Edge\n}\n\nbutton,\nselect {\n text-transform: none; // Remove the inheritance of text transform in Firefox\n}\n\n// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n// controls in Android 4.\n// 2. Correct the inability to style clickable types in iOS and Safari.\nbutton,\nhtml [type=\"button\"], // 1\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; // 2\n}\n\n// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box; // 1. Add the correct box sizing in IE 10-\n padding: 0; // 2. Remove the padding in IE 10-\n}\n\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n // Remove the default appearance of temporal inputs to avoid a Mobile Safari\n // bug where setting a custom line-height prevents text from being vertically\n // centered within the input.\n // See https://bugs.webkit.org/show_bug.cgi?id=139848\n // and https://github.com/twbs/bootstrap/issues/11266\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto; // Remove the default vertical scrollbar in IE.\n // Textareas should really only resize vertically so they don't break their (horizontal) containers.\n resize: vertical;\n}\n\nfieldset {\n // Browsers set a default `min-width: min-content;` on fieldsets,\n // unlike e.g. `

`s, which have `min-width: 0;` by default.\n // So we reset that to ensure fieldsets behave more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359\n // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements\n min-width: 0;\n // Reset the default outline behavior of fieldsets so they don't affect page layout.\n padding: 0;\n margin: 0;\n border: 0;\n}\n\n// 1. Correct the text wrapping in Edge and IE.\n// 2. Correct the color inheritance from `fieldset` elements in IE.\nlegend {\n display: block;\n width: 100%;\n max-width: 100%; // 1\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit; // 2\n white-space: normal; // 1\n}\n\nprogress {\n vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.\n}\n\n// Correct the cursor style of increment and decrement buttons in Chrome.\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n // This overrides the extra rounded corners on search inputs in iOS so that our\n // `.form-control` class can properly style them. Note that this cannot simply\n // be added to `.form-control` as it's not specific enough. For details, see\n // https://github.com/twbs/bootstrap/issues/11586.\n outline-offset: -2px; // 2. Correct the outline style in Safari.\n -webkit-appearance: none;\n}\n\n//\n// Remove the inner padding and cancel buttons in Chrome and Safari on macOS.\n//\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// 1. Correct the inability to style clickable types in iOS and Safari.\n// 2. Change font properties to `inherit` in Safari.\n//\n\n::-webkit-file-upload-button {\n font: inherit; // 2\n -webkit-appearance: button; // 1\n}\n\n//\n// Correct element displays\n//\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item; // Add the correct display in all browsers\n cursor: pointer;\n}\n\ntemplate {\n display: none; // Add the correct display in IE\n}\n\n// Always hide an element with the `hidden` HTML attribute (from PureCSS).\n// Needed for proper display in IE 10-.\n[hidden] {\n display: none !important;\n}\n","/*!\n * Bootstrap Reboot v4.0.0-beta.3 (https://getbootstrap.com)\n * Copyright 2011-2017 The Bootstrap Authors\n * Copyright 2011-2017 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\nhtml {\n font-family: sans-serif;\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -ms-text-size-adjust: 100%;\n -ms-overflow-style: scrollbar;\n -webkit-tap-highlight-color: transparent;\n}\n\n@-ms-viewport {\n width: device-width;\n}\n\narticle, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: left;\n background-color: #fff;\n}\n\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\nhr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n}\n\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title],\nabbr[data-original-title] {\n text-decoration: underline;\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n cursor: help;\n border-bottom: 0;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 80%;\n}\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -.25em;\n}\n\nsup {\n top: -.5em;\n}\n\na {\n color: #007bff;\n text-decoration: none;\n background-color: transparent;\n -webkit-text-decoration-skip: objects;\n}\n\na:hover {\n color: #0056b3;\n text-decoration: underline;\n}\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):focus {\n outline: 0;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\npre {\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n -ms-overflow-style: scrollbar;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg {\n vertical-align: middle;\n border-style: none;\n}\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\na,\narea,\nbutton,\n[role=\"button\"],\ninput:not([type=\"range\"]),\nlabel,\nselect,\nsummary,\ntextarea {\n -ms-touch-action: manipulation;\n touch-action: manipulation;\n}\n\ntable {\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.75rem;\n padding-bottom: 0.75rem;\n color: #868e96;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n text-align: inherit;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: .5rem;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\nbutton,\nhtml [type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box;\n padding: 0;\n}\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto;\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n max-width: 100%;\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit;\n white-space: normal;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n outline-offset: -2px;\n -webkit-appearance: none;\n}\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\ntemplate {\n display: none;\n}\n\n[hidden] {\n display: none !important;\n}\n/*# sourceMappingURL=bootstrap-reboot.css.map */","/*!\n * Bootstrap Reboot v4.0.0-beta.3 (https://getbootstrap.com)\n * Copyright 2011-2017 The Bootstrap Authors\n * Copyright 2011-2017 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\nhtml {\n font-family: sans-serif;\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -ms-text-size-adjust: 100%;\n -ms-overflow-style: scrollbar;\n -webkit-tap-highlight-color: transparent;\n}\n\n@-ms-viewport {\n width: device-width;\n}\n\narticle, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: left;\n background-color: #fff;\n}\n\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\nhr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n}\n\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title],\nabbr[data-original-title] {\n text-decoration: underline;\n text-decoration: underline dotted;\n cursor: help;\n border-bottom: 0;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 80%;\n}\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -.25em;\n}\n\nsup {\n top: -.5em;\n}\n\na {\n color: #007bff;\n text-decoration: none;\n background-color: transparent;\n -webkit-text-decoration-skip: objects;\n}\n\na:hover {\n color: #0056b3;\n text-decoration: underline;\n}\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):focus {\n outline: 0;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\npre {\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n -ms-overflow-style: scrollbar;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg {\n vertical-align: middle;\n border-style: none;\n}\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\na,\narea,\nbutton,\n[role=\"button\"],\ninput:not([type=\"range\"]),\nlabel,\nselect,\nsummary,\ntextarea {\n touch-action: manipulation;\n}\n\ntable {\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.75rem;\n padding-bottom: 0.75rem;\n color: #868e96;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n text-align: inherit;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: .5rem;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\nbutton,\nhtml [type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box;\n padding: 0;\n}\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto;\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n max-width: 100%;\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit;\n white-space: normal;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n outline-offset: -2px;\n -webkit-appearance: none;\n}\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\ntemplate {\n display: none;\n}\n\n[hidden] {\n display: none !important;\n}\n\n/*# sourceMappingURL=bootstrap-reboot.css.map */","// stylelint-disable indentation\n@mixin hover {\n // TODO: re-enable along with mq4-hover-shim\n// @if $enable-hover-media-query {\n// // See Media Queries Level 4: https://drafts.csswg.org/mediaqueries/#hover\n// // Currently shimmed by https://github.com/twbs/mq4-hover-shim\n// @media (hover: hover) {\n// &:hover { @content }\n// }\n// }\n// @else {\n &:hover { @content; }\n// }\n}\n\n\n@mixin hover-focus {\n @if $enable-hover-media-query {\n &:focus {\n @content;\n }\n @include hover { @content; }\n } @else {\n &:focus,\n &:hover {\n @content;\n }\n }\n}\n\n@mixin plain-hover-focus {\n @if $enable-hover-media-query {\n &,\n &:focus {\n @content;\n }\n @include hover { @content; }\n } @else {\n &,\n &:focus,\n &:hover {\n @content;\n }\n }\n}\n\n@mixin hover-focus-active {\n @if $enable-hover-media-query {\n &:focus,\n &:active {\n @content;\n }\n @include hover { @content; }\n } @else {\n &:focus,\n &:active,\n &:hover {\n @content;\n }\n }\n}\n"]} \ No newline at end of file diff --git a/frontend/assets/libs/bootstrap4/css/bootstrap.css b/frontend/assets/libs/bootstrap4/css/bootstrap.css new file mode 100644 index 0000000..780f4f6 --- /dev/null +++ b/frontend/assets/libs/bootstrap4/css/bootstrap.css @@ -0,0 +1,8899 @@ +/*! + * Bootstrap v4.0.0-beta.3 (https://getbootstrap.com) + * Copyright 2011-2017 The Bootstrap Authors + * Copyright 2011-2017 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +:root { + --blue: #007bff; + --indigo: #6610f2; + --purple: #6f42c1; + --pink: #e83e8c; + --red: #dc3545; + --orange: #fd7e14; + --yellow: #ffc107; + --green: #28a745; + --teal: #20c997; + --cyan: #17a2b8; + --white: #fff; + --gray: #868e96; + --gray-dark: #343a40; + --primary: #007bff; + --secondary: #868e96; + --success: #28a745; + --info: #17a2b8; + --warning: #ffc107; + --danger: #dc3545; + --light: #f8f9fa; + --dark: #343a40; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +*, +*::before, +*::after { + box-sizing: border-box; +} + +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; + -ms-overflow-style: scrollbar; + -webkit-tap-highlight-color: transparent; +} + +@-ms-viewport { + width: device-width; +} + +article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section { + display: block; +} + +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: left; + background-color: #fff; +} + +[tabindex="-1"]:focus { + outline: 0 !important; +} + +hr { + box-sizing: content-box; + height: 0; + overflow: visible; +} + +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 0.5rem; +} + +p { + margin-top: 0; + margin-bottom: 1rem; +} + +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; +} + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; +} + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} + +dt { + font-weight: 700; +} + +dd { + margin-bottom: .5rem; + margin-left: 0; +} + +blockquote { + margin: 0 0 1rem; +} + +dfn { + font-style: italic; +} + +b, +strong { + font-weight: bolder; +} + +small { + font-size: 80%; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sub { + bottom: -.25em; +} + +sup { + top: -.5em; +} + +a { + color: #007bff; + text-decoration: none; + background-color: transparent; + -webkit-text-decoration-skip: objects; +} + +a:hover { + color: #0056b3; + text-decoration: underline; +} + +a:not([href]):not([tabindex]) { + color: inherit; + text-decoration: none; +} + +a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover { + color: inherit; + text-decoration: none; +} + +a:not([href]):not([tabindex]):focus { + outline: 0; +} + +pre, +code, +kbd, +samp { + font-family: monospace, monospace; + font-size: 1em; +} + +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + -ms-overflow-style: scrollbar; +} + +figure { + margin: 0 0 1rem; +} + +img { + vertical-align: middle; + border-style: none; +} + +svg:not(:root) { + overflow: hidden; +} + +a, +area, +button, +[role="button"], +input:not([type="range"]), +label, +select, +summary, +textarea { + -ms-touch-action: manipulation; + touch-action: manipulation; +} + +table { + border-collapse: collapse; +} + +caption { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + color: #868e96; + text-align: left; + caption-side: bottom; +} + +th { + text-align: inherit; +} + +label { + display: inline-block; + margin-bottom: .5rem; +} + +button { + border-radius: 0; +} + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; +} + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +button, +input { + overflow: visible; +} + +button, +select { + text-transform: none; +} + +button, +html [type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + padding: 0; + border-style: none; +} + +input[type="radio"], +input[type="checkbox"] { + box-sizing: border-box; + padding: 0; +} + +input[type="date"], +input[type="time"], +input[type="datetime-local"], +input[type="month"] { + -webkit-appearance: listbox; +} + +textarea { + overflow: auto; + resize: vertical; +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; +} + +progress { + vertical-align: baseline; +} + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +[type="search"] { + outline-offset: -2px; + -webkit-appearance: none; +} + +[type="search"]::-webkit-search-cancel-button, +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} + +output { + display: inline-block; +} + +summary { + display: list-item; + cursor: pointer; +} + +template { + display: none; +} + +[hidden] { + display: none !important; +} + +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + margin-bottom: 0.5rem; + font-family: inherit; + font-weight: 500; + line-height: 1.2; + color: inherit; +} + +h1, .h1 { + font-size: 2.5rem; +} + +h2, .h2 { + font-size: 2rem; +} + +h3, .h3 { + font-size: 1.75rem; +} + +h4, .h4 { + font-size: 1.5rem; +} + +h5, .h5 { + font-size: 1.25rem; +} + +h6, .h6 { + font-size: 1rem; +} + +.lead { + font-size: 1.25rem; + font-weight: 300; +} + +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2; +} + +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2; +} + +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2; +} + +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2; +} + +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(0, 0, 0, 0.1); +} + +small, +.small { + font-size: 80%; + font-weight: 400; +} + +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; +} + +.list-unstyled { + padding-left: 0; + list-style: none; +} + +.list-inline { + padding-left: 0; + list-style: none; +} + +.list-inline-item { + display: inline-block; +} + +.list-inline-item:not(:last-child) { + margin-right: 0.5rem; +} + +.initialism { + font-size: 90%; + text-transform: uppercase; +} + +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem; +} + +.blockquote-footer { + display: block; + font-size: 80%; + color: #868e96; +} + +.blockquote-footer::before { + content: "\2014 \00A0"; +} + +.img-fluid { + max-width: 100%; + height: auto; +} + +.img-thumbnail { + padding: 0.25rem; + background-color: #fff; + border: 1px solid #dee2e6; + border-radius: 0.25rem; + max-width: 100%; + height: auto; +} + +.figure { + display: inline-block; +} + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; +} + +.figure-caption { + font-size: 90%; + color: #868e96; +} + +code, +kbd, +pre, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +code { + font-size: 87.5%; + color: #e83e8c; + word-break: break-word; +} + +a > code { + color: inherit; +} + +kbd { + padding: 0.2rem 0.4rem; + font-size: 87.5%; + color: #fff; + background-color: #212529; + border-radius: 0.2rem; +} + +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; +} + +pre { + display: block; + font-size: 87.5%; + color: #212529; +} + +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +.container { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +@media (min-width: 576px) { + .container { + max-width: 540px; + } +} + +@media (min-width: 768px) { + .container { + max-width: 720px; + } +} + +@media (min-width: 992px) { + .container { + max-width: 960px; + } +} + +@media (min-width: 1200px) { + .container { + max-width: 1140px; + } +} + +.container-fluid { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +.row { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -15px; + margin-left: -15px; +} + +.no-gutters { + margin-right: 0; + margin-left: 0; +} + +.no-gutters > .col, +.no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; +} + +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, +.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, +.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, +.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, +.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, +.col-xl-auto { + position: relative; + width: 100%; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; +} + +.col { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; +} + +.col-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; +} + +.col-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; +} + +.col-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; +} + +.col-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; +} + +.col-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; +} + +.col-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; +} + +.col-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; +} + +.col-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; +} + +.col-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; +} + +.col-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; +} + +.col-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; +} + +.col-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; +} + +.col-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; +} + +.order-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; +} + +.order-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; +} + +.order-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; +} + +.order-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; +} + +.order-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; +} + +.order-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; +} + +.order-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; +} + +.order-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; +} + +.order-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; +} + +.order-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; +} + +.order-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; +} + +.order-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; +} + +.order-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; +} + +.offset-1 { + margin-left: 8.333333%; +} + +.offset-2 { + margin-left: 16.666667%; +} + +.offset-3 { + margin-left: 25%; +} + +.offset-4 { + margin-left: 33.333333%; +} + +.offset-5 { + margin-left: 41.666667%; +} + +.offset-6 { + margin-left: 50%; +} + +.offset-7 { + margin-left: 58.333333%; +} + +.offset-8 { + margin-left: 66.666667%; +} + +.offset-9 { + margin-left: 75%; +} + +.offset-10 { + margin-left: 83.333333%; +} + +.offset-11 { + margin-left: 91.666667%; +} + +@media (min-width: 576px) { + .col-sm { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-sm-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; + } + .col-sm-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-sm-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-sm-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-sm-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-sm-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-sm-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-sm-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-sm-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-sm-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-sm-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-sm-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-sm-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-sm-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + .order-sm-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } + .order-sm-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; + } + .order-sm-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; + } + .order-sm-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; + } + .order-sm-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; + } + .order-sm-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; + } + .order-sm-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; + } + .order-sm-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; + } + .order-sm-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; + } + .order-sm-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; + } + .order-sm-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; + } + .order-sm-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; + } + .offset-sm-0 { + margin-left: 0; + } + .offset-sm-1 { + margin-left: 8.333333%; + } + .offset-sm-2 { + margin-left: 16.666667%; + } + .offset-sm-3 { + margin-left: 25%; + } + .offset-sm-4 { + margin-left: 33.333333%; + } + .offset-sm-5 { + margin-left: 41.666667%; + } + .offset-sm-6 { + margin-left: 50%; + } + .offset-sm-7 { + margin-left: 58.333333%; + } + .offset-sm-8 { + margin-left: 66.666667%; + } + .offset-sm-9 { + margin-left: 75%; + } + .offset-sm-10 { + margin-left: 83.333333%; + } + .offset-sm-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 768px) { + .col-md { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-md-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; + } + .col-md-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-md-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-md-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-md-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-md-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-md-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-md-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-md-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-md-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-md-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-md-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-md-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-md-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + .order-md-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } + .order-md-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; + } + .order-md-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; + } + .order-md-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; + } + .order-md-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; + } + .order-md-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; + } + .order-md-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; + } + .order-md-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; + } + .order-md-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; + } + .order-md-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; + } + .order-md-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; + } + .order-md-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; + } + .offset-md-0 { + margin-left: 0; + } + .offset-md-1 { + margin-left: 8.333333%; + } + .offset-md-2 { + margin-left: 16.666667%; + } + .offset-md-3 { + margin-left: 25%; + } + .offset-md-4 { + margin-left: 33.333333%; + } + .offset-md-5 { + margin-left: 41.666667%; + } + .offset-md-6 { + margin-left: 50%; + } + .offset-md-7 { + margin-left: 58.333333%; + } + .offset-md-8 { + margin-left: 66.666667%; + } + .offset-md-9 { + margin-left: 75%; + } + .offset-md-10 { + margin-left: 83.333333%; + } + .offset-md-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 992px) { + .col-lg { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-lg-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; + } + .col-lg-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-lg-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-lg-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-lg-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-lg-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-lg-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-lg-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-lg-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-lg-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-lg-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-lg-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-lg-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-lg-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + .order-lg-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } + .order-lg-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; + } + .order-lg-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; + } + .order-lg-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; + } + .order-lg-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; + } + .order-lg-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; + } + .order-lg-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; + } + .order-lg-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; + } + .order-lg-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; + } + .order-lg-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; + } + .order-lg-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; + } + .order-lg-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; + } + .offset-lg-0 { + margin-left: 0; + } + .offset-lg-1 { + margin-left: 8.333333%; + } + .offset-lg-2 { + margin-left: 16.666667%; + } + .offset-lg-3 { + margin-left: 25%; + } + .offset-lg-4 { + margin-left: 33.333333%; + } + .offset-lg-5 { + margin-left: 41.666667%; + } + .offset-lg-6 { + margin-left: 50%; + } + .offset-lg-7 { + margin-left: 58.333333%; + } + .offset-lg-8 { + margin-left: 66.666667%; + } + .offset-lg-9 { + margin-left: 75%; + } + .offset-lg-10 { + margin-left: 83.333333%; + } + .offset-lg-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 1200px) { + .col-xl { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-xl-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; + } + .col-xl-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-xl-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-xl-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-xl-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-xl-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-xl-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-xl-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-xl-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-xl-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-xl-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-xl-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-xl-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-xl-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + .order-xl-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } + .order-xl-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; + } + .order-xl-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; + } + .order-xl-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; + } + .order-xl-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; + } + .order-xl-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; + } + .order-xl-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; + } + .order-xl-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; + } + .order-xl-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; + } + .order-xl-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; + } + .order-xl-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; + } + .order-xl-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; + } + .offset-xl-0 { + margin-left: 0; + } + .offset-xl-1 { + margin-left: 8.333333%; + } + .offset-xl-2 { + margin-left: 16.666667%; + } + .offset-xl-3 { + margin-left: 25%; + } + .offset-xl-4 { + margin-left: 33.333333%; + } + .offset-xl-5 { + margin-left: 41.666667%; + } + .offset-xl-6 { + margin-left: 50%; + } + .offset-xl-7 { + margin-left: 58.333333%; + } + .offset-xl-8 { + margin-left: 66.666667%; + } + .offset-xl-9 { + margin-left: 75%; + } + .offset-xl-10 { + margin-left: 83.333333%; + } + .offset-xl-11 { + margin-left: 91.666667%; + } +} + +.table { + width: 100%; + max-width: 100%; + margin-bottom: 1rem; + background-color: transparent; +} + +.table th, +.table td { + padding: 0.75rem; + vertical-align: top; + border-top: 1px solid #dee2e6; +} + +.table thead th { + vertical-align: bottom; + border-bottom: 2px solid #dee2e6; +} + +.table tbody + tbody { + border-top: 2px solid #dee2e6; +} + +.table .table { + background-color: #fff; +} + +.table-sm th, +.table-sm td { + padding: 0.3rem; +} + +.table-bordered { + border: 1px solid #dee2e6; +} + +.table-bordered th, +.table-bordered td { + border: 1px solid #dee2e6; +} + +.table-bordered thead th, +.table-bordered thead td { + border-bottom-width: 2px; +} + +.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(0, 0, 0, 0.05); +} + +.table-hover tbody tr:hover { + background-color: rgba(0, 0, 0, 0.075); +} + +.table-primary, +.table-primary > th, +.table-primary > td { + background-color: #b8daff; +} + +.table-hover .table-primary:hover { + background-color: #9fcdff; +} + +.table-hover .table-primary:hover > td, +.table-hover .table-primary:hover > th { + background-color: #9fcdff; +} + +.table-secondary, +.table-secondary > th, +.table-secondary > td { + background-color: #dddfe2; +} + +.table-hover .table-secondary:hover { + background-color: #cfd2d6; +} + +.table-hover .table-secondary:hover > td, +.table-hover .table-secondary:hover > th { + background-color: #cfd2d6; +} + +.table-success, +.table-success > th, +.table-success > td { + background-color: #c3e6cb; +} + +.table-hover .table-success:hover { + background-color: #b1dfbb; +} + +.table-hover .table-success:hover > td, +.table-hover .table-success:hover > th { + background-color: #b1dfbb; +} + +.table-info, +.table-info > th, +.table-info > td { + background-color: #bee5eb; +} + +.table-hover .table-info:hover { + background-color: #abdde5; +} + +.table-hover .table-info:hover > td, +.table-hover .table-info:hover > th { + background-color: #abdde5; +} + +.table-warning, +.table-warning > th, +.table-warning > td { + background-color: #ffeeba; +} + +.table-hover .table-warning:hover { + background-color: #ffe8a1; +} + +.table-hover .table-warning:hover > td, +.table-hover .table-warning:hover > th { + background-color: #ffe8a1; +} + +.table-danger, +.table-danger > th, +.table-danger > td { + background-color: #f5c6cb; +} + +.table-hover .table-danger:hover { + background-color: #f1b0b7; +} + +.table-hover .table-danger:hover > td, +.table-hover .table-danger:hover > th { + background-color: #f1b0b7; +} + +.table-light, +.table-light > th, +.table-light > td { + background-color: #fdfdfe; +} + +.table-hover .table-light:hover { + background-color: #ececf6; +} + +.table-hover .table-light:hover > td, +.table-hover .table-light:hover > th { + background-color: #ececf6; +} + +.table-dark, +.table-dark > th, +.table-dark > td { + background-color: #c6c8ca; +} + +.table-hover .table-dark:hover { + background-color: #b9bbbe; +} + +.table-hover .table-dark:hover > td, +.table-hover .table-dark:hover > th { + background-color: #b9bbbe; +} + +.table-active, +.table-active > th, +.table-active > td { + background-color: rgba(0, 0, 0, 0.075); +} + +.table-hover .table-active:hover { + background-color: rgba(0, 0, 0, 0.075); +} + +.table-hover .table-active:hover > td, +.table-hover .table-active:hover > th { + background-color: rgba(0, 0, 0, 0.075); +} + +.table .thead-dark th { + color: #fff; + background-color: #212529; + border-color: #32383e; +} + +.table .thead-light th { + color: #495057; + background-color: #e9ecef; + border-color: #dee2e6; +} + +.table-dark { + color: #fff; + background-color: #212529; +} + +.table-dark th, +.table-dark td, +.table-dark thead th { + border-color: #32383e; +} + +.table-dark.table-bordered { + border: 0; +} + +.table-dark.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(255, 255, 255, 0.05); +} + +.table-dark.table-hover tbody tr:hover { + background-color: rgba(255, 255, 255, 0.075); +} + +@media (max-width: 575.99px) { + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .table-responsive-sm > .table-bordered { + border: 0; + } +} + +@media (max-width: 767.99px) { + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .table-responsive-md > .table-bordered { + border: 0; + } +} + +@media (max-width: 991.99px) { + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .table-responsive-lg > .table-bordered { + border: 0; + } +} + +@media (max-width: 1199.99px) { + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .table-responsive-xl > .table-bordered { + border: 0; + } +} + +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; +} + +.table-responsive > .table-bordered { + border: 0; +} + +.form-control { + display: block; + width: 100%; + padding: 0.375rem 0.75rem; + font-size: 1rem; + line-height: 1.5; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: 0.25rem; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +.form-control::-ms-expand { + background-color: transparent; + border: 0; +} + +.form-control:focus { + color: #495057; + background-color: #fff; + border-color: #80bdff; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.form-control::-webkit-input-placeholder { + color: #868e96; + opacity: 1; +} + +.form-control::-moz-placeholder { + color: #868e96; + opacity: 1; +} + +.form-control:-ms-input-placeholder { + color: #868e96; + opacity: 1; +} + +.form-control::-ms-input-placeholder { + color: #868e96; + opacity: 1; +} + +.form-control::placeholder { + color: #868e96; + opacity: 1; +} + +.form-control:disabled, .form-control[readonly] { + background-color: #e9ecef; + opacity: 1; +} + +select.form-control:not([size]):not([multiple]) { + height: calc(2.25rem + 2px); +} + +select.form-control:focus::-ms-value { + color: #495057; + background-color: #fff; +} + +.form-control-file, +.form-control-range { + display: block; + width: 100%; +} + +.col-form-label { + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; +} + +.col-form-label-lg { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.25rem; + line-height: 1.5; +} + +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.875rem; + line-height: 1.5; +} + +.form-control-plaintext { + display: block; + width: 100%; + padding-top: 0.375rem; + padding-bottom: 0.375rem; + margin-bottom: 0; + line-height: 1.5; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; +} + +.form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control, +.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text, +.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text, +.input-group-sm > .input-group-prepend > .form-control-plaintext.btn, +.input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control, +.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text, +.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text, +.input-group-lg > .input-group-prepend > .form-control-plaintext.btn, +.input-group-lg > .input-group-append > .form-control-plaintext.btn { + padding-right: 0; + padding-left: 0; +} + +.form-control-sm, .input-group-sm > .form-control, +.input-group-sm > .input-group-prepend > .input-group-text, +.input-group-sm > .input-group-append > .input-group-text, +.input-group-sm > .input-group-prepend > .btn, +.input-group-sm > .input-group-append > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]), +.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), +.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]), +.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]), +.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) { + height: calc(1.8125rem + 2px); +} + +.form-control-lg, .input-group-lg > .form-control, +.input-group-lg > .input-group-prepend > .input-group-text, +.input-group-lg > .input-group-append > .input-group-text, +.input-group-lg > .input-group-prepend > .btn, +.input-group-lg > .input-group-append > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]), +.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), +.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]), +.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]), +.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) { + height: calc(2.875rem + 2px); +} + +.form-group { + margin-bottom: 1rem; +} + +.form-text { + display: block; + margin-top: 0.25rem; +} + +.form-row { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -5px; + margin-left: -5px; +} + +.form-row > .col, +.form-row > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; +} + +.form-check { + position: relative; + display: block; + padding-left: 1.25rem; +} + +.form-check-input { + position: absolute; + margin-top: 0.3rem; + margin-left: -1.25rem; +} + +.form-check-input:disabled ~ .form-check-label { + color: #868e96; +} + +.form-check-label { + margin-bottom: 0; +} + +.form-check-inline { + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding-left: 0; + margin-right: 0.75rem; +} + +.form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-right: 0.3125rem; + margin-left: 0; +} + +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #28a745; +} + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + width: 250px; + padding: .5rem; + margin-top: .1rem; + font-size: .875rem; + line-height: 1; + color: #fff; + background-color: rgba(40, 167, 69, 0.8); + border-radius: .2rem; +} + +.was-validated .form-control:valid, .form-control.is-valid, .was-validated +.custom-select:valid, +.custom-select.is-valid { + border-color: #28a745; +} + +.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated +.custom-select:valid:focus, +.custom-select.is-valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.was-validated .form-control:valid ~ .valid-feedback, +.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, +.form-control.is-valid ~ .valid-tooltip, .was-validated +.custom-select:valid ~ .valid-feedback, +.was-validated +.custom-select:valid ~ .valid-tooltip, +.custom-select.is-valid ~ .valid-feedback, +.custom-select.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #28a745; +} + +.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { + color: #28a745; +} + +.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { + background-color: #71dd8a; +} + +.was-validated .custom-control-input:valid ~ .valid-feedback, +.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, +.custom-control-input.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { + background-color: #34ce57; +} + +.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { + border-color: #28a745; +} + +.was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before { + border-color: inherit; +} + +.was-validated .custom-file-input:valid ~ .valid-feedback, +.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, +.custom-file-input.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #dc3545; +} + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + width: 250px; + padding: .5rem; + margin-top: .1rem; + font-size: .875rem; + line-height: 1; + color: #fff; + background-color: rgba(220, 53, 69, 0.8); + border-radius: .2rem; +} + +.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated +.custom-select:invalid, +.custom-select.is-invalid { + border-color: #dc3545; +} + +.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated +.custom-select:invalid:focus, +.custom-select.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.was-validated .form-control:invalid ~ .invalid-feedback, +.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, +.form-control.is-invalid ~ .invalid-tooltip, .was-validated +.custom-select:invalid ~ .invalid-feedback, +.was-validated +.custom-select:invalid ~ .invalid-tooltip, +.custom-select.is-invalid ~ .invalid-feedback, +.custom-select.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #dc3545; +} + +.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { + color: #dc3545; +} + +.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { + background-color: #efa2a9; +} + +.was-validated .custom-control-input:invalid ~ .invalid-feedback, +.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, +.custom-control-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { + background-color: #e4606d; +} + +.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { + border-color: #dc3545; +} + +.was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before { + border-color: inherit; +} + +.was-validated .custom-file-input:invalid ~ .invalid-feedback, +.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, +.custom-file-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.form-inline { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +.form-inline .form-check { + width: 100%; +} + +@media (min-width: 576px) { + .form-inline label { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + margin-bottom: 0; + } + .form-inline .form-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + margin-bottom: 0; + } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .form-inline .form-control-plaintext { + display: inline-block; + } + .form-inline .input-group { + width: auto; + } + .form-inline .form-check { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + width: auto; + padding-left: 0; + } + .form-inline .form-check-input { + position: relative; + margin-top: 0; + margin-right: 0.25rem; + margin-left: 0; + } + .form-inline .custom-control { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + } + .form-inline .custom-control-label { + margin-bottom: 0; + } +} + +.btn { + display: inline-block; + font-weight: 400; + text-align: center; + white-space: nowrap; + vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 1rem; + line-height: 1.5; + border-radius: 0.25rem; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +.btn:focus, .btn:hover { + text-decoration: none; +} + +.btn:focus, .btn.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.btn.disabled, .btn:disabled { + opacity: 0.65; +} + +.btn:not([disabled]):not(.disabled) { + cursor: pointer; +} + +.btn:not([disabled]):not(.disabled):active, .btn:not([disabled]):not(.disabled).active { + background-image: none; +} + +a.btn.disabled, +fieldset[disabled] a.btn { + pointer-events: none; +} + +.btn-primary { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-primary:hover { + color: #fff; + background-color: #0069d9; + border-color: #0062cc; +} + +.btn-primary:focus, .btn-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.btn-primary.disabled, .btn-primary:disabled { + background-color: #007bff; + border-color: #007bff; +} + +.btn-primary:not([disabled]):not(.disabled):active, .btn-primary:not([disabled]):not(.disabled).active, +.show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #0062cc; + border-color: #005cbf; +} + +.btn-primary:not([disabled]):not(.disabled):active:focus, .btn-primary:not([disabled]):not(.disabled).active:focus, +.show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.btn-secondary { + color: #fff; + background-color: #868e96; + border-color: #868e96; +} + +.btn-secondary:hover { + color: #fff; + background-color: #727b84; + border-color: #6c757d; +} + +.btn-secondary:focus, .btn-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5); +} + +.btn-secondary.disabled, .btn-secondary:disabled { + background-color: #868e96; + border-color: #868e96; +} + +.btn-secondary:not([disabled]):not(.disabled):active, .btn-secondary:not([disabled]):not(.disabled).active, +.show > .btn-secondary.dropdown-toggle { + color: #fff; + background-color: #6c757d; + border-color: #666e76; +} + +.btn-secondary:not([disabled]):not(.disabled):active:focus, .btn-secondary:not([disabled]):not(.disabled).active:focus, +.show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5); +} + +.btn-success { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-success:hover { + color: #fff; + background-color: #218838; + border-color: #1e7e34; +} + +.btn-success:focus, .btn-success.focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.btn-success.disabled, .btn-success:disabled { + background-color: #28a745; + border-color: #28a745; +} + +.btn-success:not([disabled]):not(.disabled):active, .btn-success:not([disabled]):not(.disabled).active, +.show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #1e7e34; + border-color: #1c7430; +} + +.btn-success:not([disabled]):not(.disabled):active:focus, .btn-success:not([disabled]):not(.disabled).active:focus, +.show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.btn-info { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-info:hover { + color: #fff; + background-color: #138496; + border-color: #117a8b; +} + +.btn-info:focus, .btn-info.focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.btn-info.disabled, .btn-info:disabled { + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-info:not([disabled]):not(.disabled):active, .btn-info:not([disabled]):not(.disabled).active, +.show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #117a8b; + border-color: #10707f; +} + +.btn-info:not([disabled]):not(.disabled):active:focus, .btn-info:not([disabled]):not(.disabled).active:focus, +.show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.btn-warning { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-warning:hover { + color: #212529; + background-color: #e0a800; + border-color: #d39e00; +} + +.btn-warning:focus, .btn-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.btn-warning.disabled, .btn-warning:disabled { + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-warning:not([disabled]):not(.disabled):active, .btn-warning:not([disabled]):not(.disabled).active, +.show > .btn-warning.dropdown-toggle { + color: #212529; + background-color: #d39e00; + border-color: #c69500; +} + +.btn-warning:not([disabled]):not(.disabled):active:focus, .btn-warning:not([disabled]):not(.disabled).active:focus, +.show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.btn-danger { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-danger:hover { + color: #fff; + background-color: #c82333; + border-color: #bd2130; +} + +.btn-danger:focus, .btn-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.btn-danger.disabled, .btn-danger:disabled { + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-danger:not([disabled]):not(.disabled):active, .btn-danger:not([disabled]):not(.disabled).active, +.show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #bd2130; + border-color: #b21f2d; +} + +.btn-danger:not([disabled]):not(.disabled):active:focus, .btn-danger:not([disabled]):not(.disabled).active:focus, +.show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.btn-light { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-light:hover { + color: #212529; + background-color: #e2e6ea; + border-color: #dae0e5; +} + +.btn-light:focus, .btn-light.focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.btn-light.disabled, .btn-light:disabled { + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-light:not([disabled]):not(.disabled):active, .btn-light:not([disabled]):not(.disabled).active, +.show > .btn-light.dropdown-toggle { + color: #212529; + background-color: #dae0e5; + border-color: #d3d9df; +} + +.btn-light:not([disabled]):not(.disabled):active:focus, .btn-light:not([disabled]):not(.disabled).active:focus, +.show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.btn-dark { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-dark:hover { + color: #fff; + background-color: #23272b; + border-color: #1d2124; +} + +.btn-dark:focus, .btn-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.btn-dark.disabled, .btn-dark:disabled { + background-color: #343a40; + border-color: #343a40; +} + +.btn-dark:not([disabled]):not(.disabled):active, .btn-dark:not([disabled]):not(.disabled).active, +.show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #1d2124; + border-color: #171a1d; +} + +.btn-dark:not([disabled]):not(.disabled):active:focus, .btn-dark:not([disabled]):not(.disabled).active:focus, +.show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.btn-outline-primary { + color: #007bff; + background-color: transparent; + background-image: none; + border-color: #007bff; +} + +.btn-outline-primary:hover { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-outline-primary:focus, .btn-outline-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.btn-outline-primary.disabled, .btn-outline-primary:disabled { + color: #007bff; + background-color: transparent; +} + +.btn-outline-primary:not([disabled]):not(.disabled):active, .btn-outline-primary:not([disabled]):not(.disabled).active, +.show > .btn-outline-primary.dropdown-toggle { + color: #212529; + background-color: #007bff; + border-color: #007bff; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.btn-outline-secondary { + color: #868e96; + background-color: transparent; + background-image: none; + border-color: #868e96; +} + +.btn-outline-secondary:hover { + color: #fff; + background-color: #868e96; + border-color: #868e96; +} + +.btn-outline-secondary:focus, .btn-outline-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5); +} + +.btn-outline-secondary.disabled, .btn-outline-secondary:disabled { + color: #868e96; + background-color: transparent; +} + +.btn-outline-secondary:not([disabled]):not(.disabled):active, .btn-outline-secondary:not([disabled]):not(.disabled).active, +.show > .btn-outline-secondary.dropdown-toggle { + color: #212529; + background-color: #868e96; + border-color: #868e96; + box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5); +} + +.btn-outline-success { + color: #28a745; + background-color: transparent; + background-image: none; + border-color: #28a745; +} + +.btn-outline-success:hover { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-outline-success:focus, .btn-outline-success.focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.btn-outline-success.disabled, .btn-outline-success:disabled { + color: #28a745; + background-color: transparent; +} + +.btn-outline-success:not([disabled]):not(.disabled):active, .btn-outline-success:not([disabled]):not(.disabled).active, +.show > .btn-outline-success.dropdown-toggle { + color: #212529; + background-color: #28a745; + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.btn-outline-info { + color: #17a2b8; + background-color: transparent; + background-image: none; + border-color: #17a2b8; +} + +.btn-outline-info:hover { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-outline-info:focus, .btn-outline-info.focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.btn-outline-info.disabled, .btn-outline-info:disabled { + color: #17a2b8; + background-color: transparent; +} + +.btn-outline-info:not([disabled]):not(.disabled):active, .btn-outline-info:not([disabled]):not(.disabled).active, +.show > .btn-outline-info.dropdown-toggle { + color: #212529; + background-color: #17a2b8; + border-color: #17a2b8; + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.btn-outline-warning { + color: #ffc107; + background-color: transparent; + background-image: none; + border-color: #ffc107; +} + +.btn-outline-warning:hover { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-outline-warning:focus, .btn-outline-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.btn-outline-warning.disabled, .btn-outline-warning:disabled { + color: #ffc107; + background-color: transparent; +} + +.btn-outline-warning:not([disabled]):not(.disabled):active, .btn-outline-warning:not([disabled]):not(.disabled).active, +.show > .btn-outline-warning.dropdown-toggle { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.btn-outline-danger { + color: #dc3545; + background-color: transparent; + background-image: none; + border-color: #dc3545; +} + +.btn-outline-danger:hover { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-outline-danger:focus, .btn-outline-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.btn-outline-danger.disabled, .btn-outline-danger:disabled { + color: #dc3545; + background-color: transparent; +} + +.btn-outline-danger:not([disabled]):not(.disabled):active, .btn-outline-danger:not([disabled]):not(.disabled).active, +.show > .btn-outline-danger.dropdown-toggle { + color: #212529; + background-color: #dc3545; + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.btn-outline-light { + color: #f8f9fa; + background-color: transparent; + background-image: none; + border-color: #f8f9fa; +} + +.btn-outline-light:hover { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-outline-light:focus, .btn-outline-light.focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.btn-outline-light.disabled, .btn-outline-light:disabled { + color: #f8f9fa; + background-color: transparent; +} + +.btn-outline-light:not([disabled]):not(.disabled):active, .btn-outline-light:not([disabled]):not(.disabled).active, +.show > .btn-outline-light.dropdown-toggle { + color: #fff; + background-color: #f8f9fa; + border-color: #f8f9fa; + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.btn-outline-dark { + color: #343a40; + background-color: transparent; + background-image: none; + border-color: #343a40; +} + +.btn-outline-dark:hover { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-outline-dark:focus, .btn-outline-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.btn-outline-dark.disabled, .btn-outline-dark:disabled { + color: #343a40; + background-color: transparent; +} + +.btn-outline-dark:not([disabled]):not(.disabled):active, .btn-outline-dark:not([disabled]):not(.disabled).active, +.show > .btn-outline-dark.dropdown-toggle { + color: #212529; + background-color: #343a40; + border-color: #343a40; + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.btn-link { + font-weight: 400; + color: #007bff; + background-color: transparent; +} + +.btn-link:hover { + color: #0056b3; + text-decoration: underline; + background-color: transparent; + border-color: transparent; +} + +.btn-link:focus, .btn-link.focus { + text-decoration: underline; + border-color: transparent; + box-shadow: none; +} + +.btn-link:disabled, .btn-link.disabled { + color: #868e96; +} + +.btn-lg, .btn-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +.btn-sm, .btn-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +.btn-block { + display: block; + width: 100%; +} + +.btn-block + .btn-block { + margin-top: 0.5rem; +} + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} + +.fade { + opacity: 0; + transition: opacity 0.15s linear; +} + +.fade.show { + opacity: 1; +} + +.collapse { + display: none; +} + +.collapse.show { + display: block; +} + +tr.collapse.show { + display: table-row; +} + +tbody.collapse.show { + display: table-row-group; +} + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + transition: height 0.35s ease; +} + +.dropup, +.dropdown { + position: relative; +} + +.dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; +} + +.dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0.125rem 0 0; + font-size: 1rem; + color: #212529; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; +} + +.dropup .dropdown-menu { + margin-top: 0; + margin-bottom: 0.125rem; +} + +.dropup .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; +} + +.dropup .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropright .dropdown-menu { + margin-top: 0; + margin-left: 0.125rem; +} + +.dropright .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; +} + +.dropright .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropright .dropdown-toggle::after { + vertical-align: 0; +} + +.dropleft .dropdown-menu { + margin-top: 0; + margin-right: 0.125rem; +} + +.dropleft .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; +} + +.dropleft .dropdown-toggle::after { + display: none; +} + +.dropleft .dropdown-toggle::before { + display: inline-block; + width: 0; + height: 0; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; +} + +.dropleft .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropleft .dropdown-toggle::before { + vertical-align: 0; +} + +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid #e9ecef; +} + +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1.5rem; + clear: both; + font-weight: 400; + color: #212529; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; +} + +.dropdown-item:focus, .dropdown-item:hover { + color: #16181b; + text-decoration: none; + background-color: #f8f9fa; +} + +.dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #007bff; +} + +.dropdown-item.disabled, .dropdown-item:disabled { + color: #868e96; + background-color: transparent; +} + +.dropdown-menu.show { + display: block; +} + +.dropdown-header { + display: block; + padding: 0.5rem 1.5rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #868e96; + white-space: nowrap; +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + vertical-align: middle; +} + +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + -webkit-box-flex: 0; + -ms-flex: 0 1 auto; + flex: 0 1 auto; +} + +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover { + z-index: 1; +} + +.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn.active { + z-index: 1; +} + +.btn-group .btn + .btn, +.btn-group .btn + .btn-group, +.btn-group .btn-group + .btn, +.btn-group .btn-group + .btn-group, +.btn-group-vertical .btn + .btn, +.btn-group-vertical .btn + .btn-group, +.btn-group-vertical .btn-group + .btn, +.btn-group-vertical .btn-group + .btn-group { + margin-left: -1px; +} + +.btn-toolbar { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; +} + +.btn-toolbar .input-group { + width: auto; +} + +.btn-group > .btn:first-child { + margin-left: 0; +} + +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; +} + +.dropdown-toggle-split::after { + margin-left: 0; +} + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; +} + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.75rem; +} + +.btn-group-vertical { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; +} + +.btn-group-vertical .btn, +.btn-group-vertical .btn-group { + width: 100%; +} + +.btn-group-vertical > .btn + .btn, +.btn-group-vertical > .btn + .btn-group, +.btn-group-vertical > .btn-group + .btn, +.btn-group-vertical > .btn-group + .btn-group { + margin-top: -1px; + margin-left: 0; +} + +.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group-vertical > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.btn-group-toggle > .btn, +.btn-group-toggle > .btn-group > .btn { + margin-bottom: 0; +} + +.btn-group-toggle > .btn input[type="radio"], +.btn-group-toggle > .btn input[type="checkbox"], +.btn-group-toggle > .btn-group > .btn input[type="radio"], +.btn-group-toggle > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} + +.input-group { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + width: 100%; +} + +.input-group .form-control, +.input-group .custom-select, +.input-group .custom-file { + position: relative; + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + width: 1%; + margin-bottom: 0; +} + +.input-group .form-control:focus, +.input-group .custom-select:focus, +.input-group .custom-file:focus { + z-index: 3; +} + +.input-group .form-control + .form-control, +.input-group .custom-select + .form-control, +.input-group .custom-file + .form-control { + margin-left: -1px; +} + +.input-group .form-control:not(:last-child), +.input-group .custom-select:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group .form-control:not(:first-child), +.input-group .custom-select:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.input-group .custom-file { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +.input-group .custom-file:not(:last-child) .custom-file-control, +.input-group .custom-file:not(:last-child) .custom-file-control::before { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group .custom-file:not(:first-child) .custom-file-control, +.input-group .custom-file:not(:first-child) .custom-file-control::before { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.input-group-prepend, +.input-group-append { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +.input-group-prepend .btn, +.input-group-append .btn { + position: relative; + z-index: 2; +} + +.input-group-prepend .btn + .btn, +.input-group-prepend .btn + .input-group-text, +.input-group-prepend .input-group-text + .input-group-text, +.input-group-prepend .input-group-text + .btn, +.input-group-append .btn + .btn, +.input-group-append .btn + .input-group-text, +.input-group-append .input-group-text + .input-group-text, +.input-group-append .input-group-text + .btn { + margin-left: -1px; +} + +.input-group-prepend { + margin-right: -1px; +} + +.input-group-append { + margin-left: -1px; +} + +.input-group-text { + padding: 0.375rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} + +.input-group-text input[type="radio"], +.input-group-text input[type="checkbox"] { + margin-top: 0; +} + +.input-group > .input-group-prepend > .btn, +.input-group > .input-group-prepend > .input-group-text, +.input-group > .input-group-append:not(:last-child) > .btn, +.input-group > .input-group-append:not(:last-child) > .input-group-text, +.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group > .input-group-append > .btn, +.input-group > .input-group-append > .input-group-text, +.input-group > .input-group-prepend:not(:first-child) > .btn, +.input-group > .input-group-prepend:not(:first-child) > .input-group-text, +.input-group > .input-group-prepend:first-child > .btn:not(:first-child), +.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.custom-control { + position: relative; + display: block; + min-height: 1.5rem; + padding-left: 1.5rem; +} + +.custom-control-inline { + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + margin-right: 1rem; +} + +.custom-control-input { + position: absolute; + z-index: -1; + opacity: 0; +} + +.custom-control-input:checked ~ .custom-control-label::before { + color: #fff; + background-color: #007bff; +} + +.custom-control-input:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-control-input:active ~ .custom-control-label::before { + color: #fff; + background-color: #b3d7ff; +} + +.custom-control-input:disabled ~ .custom-control-label { + color: #868e96; +} + +.custom-control-input:disabled ~ .custom-control-label::before { + background-color: #e9ecef; +} + +.custom-control-label { + margin-bottom: 0; +} + +.custom-control-label::before { + position: absolute; + top: 0.25rem; + left: 0; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: #dee2e6; +} + +.custom-control-label::after { + position: absolute; + top: 0.25rem; + left: 0; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background-repeat: no-repeat; + background-position: center center; + background-size: 50% 50%; +} + +.custom-checkbox .custom-control-label::before { + border-radius: 0.25rem; +} + +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before { + background-color: #007bff; +} + +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); +} + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { + background-color: #007bff; +} + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); +} + +.custom-radio .custom-control-label::before { + border-radius: 50%; +} + +.custom-radio .custom-control-input:checked ~ .custom-control-label::before { + background-color: #007bff; +} + +.custom-radio .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); +} + +.custom-select { + display: inline-block; + width: 100%; + height: calc(2.25rem + 2px); + padding: 0.375rem 1.75rem 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + vertical-align: middle; + background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; + background-size: 8px 10px; + border: 1px solid #ced4da; + border-radius: 0.25rem; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.custom-select:focus { + border-color: #80bdff; + outline: 0; + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-select:focus::-ms-value { + color: #495057; + background-color: #fff; +} + +.custom-select[multiple], .custom-select[size]:not([size="1"]) { + height: auto; + padding-right: 0.75rem; + background-image: none; +} + +.custom-select:disabled { + color: #868e96; + background-color: #e9ecef; +} + +.custom-select::-ms-expand { + opacity: 0; +} + +.custom-select-sm { + height: calc(1.8125rem + 2px); + padding-top: 0.375rem; + padding-bottom: 0.375rem; + font-size: 75%; +} + +.custom-select-lg { + height: calc(2.875rem + 2px); + padding-top: 0.375rem; + padding-bottom: 0.375rem; + font-size: 125%; +} + +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc(2.25rem + 2px); + margin-bottom: 0; +} + +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc(2.25rem + 2px); + margin: 0; + opacity: 0; +} + +.custom-file-input:focus ~ .custom-file-control { + border-color: #80bdff; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-file-input:focus ~ .custom-file-control::before { + border-color: #80bdff; +} + +.custom-file-input:lang(en) ~ .custom-file-label::after { + content: "Browse"; +} + +.custom-file-label { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 1; + height: calc(2.25rem + 2px); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} + +.custom-file-label::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 3; + display: block; + height: calc(calc(2.25rem + 2px) - 1px * 2); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + content: "Browse"; + background-color: #e9ecef; + border-left: 1px solid #ced4da; + border-radius: 0 0.25rem 0.25rem 0; +} + +.nav { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.nav-link { + display: block; + padding: 0.5rem 1rem; +} + +.nav-link:focus, .nav-link:hover { + text-decoration: none; +} + +.nav-link.disabled { + color: #868e96; +} + +.nav-tabs { + border-bottom: 1px solid #dee2e6; +} + +.nav-tabs .nav-item { + margin-bottom: -1px; +} + +.nav-tabs .nav-link { + border: 1px solid transparent; + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover { + border-color: #e9ecef #e9ecef #dee2e6; +} + +.nav-tabs .nav-link.disabled { + color: #868e96; + background-color: transparent; + border-color: transparent; +} + +.nav-tabs .nav-link.active, +.nav-tabs .nav-item.show .nav-link { + color: #495057; + background-color: #fff; + border-color: #dee2e6 #dee2e6 #fff; +} + +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.nav-pills .nav-link { + border-radius: 0.25rem; +} + +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #007bff; +} + +.nav-fill .nav-item { + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + text-align: center; +} + +.nav-justified .nav-item { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + text-align: center; +} + +.tab-content > .tab-pane { + display: none; +} + +.tab-content > .active { + display: block; +} + +.navbar { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 0.5rem 1rem; +} + +.navbar > .container, +.navbar > .container-fluid { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; +} + +.navbar-brand { + display: inline-block; + padding-top: 0.3125rem; + padding-bottom: 0.3125rem; + margin-right: 1rem; + font-size: 1.25rem; + line-height: inherit; + white-space: nowrap; +} + +.navbar-brand:focus, .navbar-brand:hover { + text-decoration: none; +} + +.navbar-nav { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; +} + +.navbar-nav .dropdown-menu { + position: static; + float: none; +} + +.navbar-text { + display: inline-block; + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +.navbar-collapse { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.25rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +.navbar-toggler:focus, .navbar-toggler:hover { + text-decoration: none; +} + +.navbar-toggler:not([disabled]):not(.disabled) { + cursor: pointer; +} + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: no-repeat center center; + background-size: 100% 100%; +} + +@media (max-width: 575.99px) { + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 576px) { + .navbar-expand-sm { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-sm .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-sm .navbar-nav .dropdown-menu-right { + right: 0; + left: auto; + } + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: .5rem; + padding-left: .5rem; + } + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-sm .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-sm .navbar-toggler { + display: none; + } + .navbar-expand-sm .dropup .dropdown-menu { + top: auto; + bottom: 100%; + } +} + +@media (max-width: 767.99px) { + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 768px) { + .navbar-expand-md { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-md .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-md .navbar-nav .dropdown-menu-right { + right: 0; + left: auto; + } + .navbar-expand-md .navbar-nav .nav-link { + padding-right: .5rem; + padding-left: .5rem; + } + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-md .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-md .navbar-toggler { + display: none; + } + .navbar-expand-md .dropup .dropdown-menu { + top: auto; + bottom: 100%; + } +} + +@media (max-width: 991.99px) { + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 992px) { + .navbar-expand-lg { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-lg .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-lg .navbar-nav .dropdown-menu-right { + right: 0; + left: auto; + } + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: .5rem; + padding-left: .5rem; + } + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-lg .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-lg .navbar-toggler { + display: none; + } + .navbar-expand-lg .dropup .dropdown-menu { + top: auto; + bottom: 100%; + } +} + +@media (max-width: 1199.99px) { + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 1200px) { + .navbar-expand-xl { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-xl .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-xl .navbar-nav .dropdown-menu-right { + right: 0; + left: auto; + } + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: .5rem; + padding-left: .5rem; + } + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-xl .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-xl .navbar-toggler { + display: none; + } + .navbar-expand-xl .dropup .dropdown-menu { + top: auto; + bottom: 100%; + } +} + +.navbar-expand { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; +} + +.navbar-expand > .container, +.navbar-expand > .container-fluid { + padding-right: 0; + padding-left: 0; +} + +.navbar-expand .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; +} + +.navbar-expand .navbar-nav .dropdown-menu { + position: absolute; +} + +.navbar-expand .navbar-nav .dropdown-menu-right { + right: 0; + left: auto; +} + +.navbar-expand .navbar-nav .nav-link { + padding-right: .5rem; + padding-left: .5rem; +} + +.navbar-expand > .container, +.navbar-expand > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; +} + +.navbar-expand .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; +} + +.navbar-expand .navbar-toggler { + display: none; +} + +.navbar-expand .dropup .dropdown-menu { + top: auto; + bottom: 100%; +} + +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.5); +} + +.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover { + color: rgba(0, 0, 0, 0.7); +} + +.navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); +} + +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .active > .nav-link, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.5); + border-color: rgba(0, 0, 0, 0.1); +} + +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); +} + +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.5); +} + +.navbar-light .navbar-text a { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-text a:focus, .navbar-light .navbar-text a:hover { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-dark .navbar-brand { + color: #fff; +} + +.navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover { + color: #fff; +} + +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.5); +} + +.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover { + color: rgba(255, 255, 255, 0.75); +} + +.navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); +} + +.navbar-dark .navbar-nav .show > .nav-link, +.navbar-dark .navbar-nav .active > .nav-link, +.navbar-dark .navbar-nav .nav-link.show, +.navbar-dark .navbar-nav .nav-link.active { + color: #fff; +} + +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.1); +} + +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); +} + +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.5); +} + +.navbar-dark .navbar-text a { + color: #fff; +} + +.navbar-dark .navbar-text a:focus, .navbar-dark .navbar-text a:hover { + color: #fff; +} + +.card { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 0.25rem; +} + +.card > hr { + margin-right: 0; + margin-left: 0; +} + +.card > .list-group:first-child .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.card > .list-group:last-child .list-group-item:last-child { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.card-body { + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1.25rem; +} + +.card-title { + margin-bottom: 0.75rem; +} + +.card-subtitle { + margin-top: -0.375rem; + margin-bottom: 0; +} + +.card-text:last-child { + margin-bottom: 0; +} + +.card-link:hover { + text-decoration: none; +} + +.card-link + .card-link { + margin-left: 1.25rem; +} + +.card-header { + padding: 0.75rem 1.25rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, 0.03); + border-bottom: 1px solid rgba(0, 0, 0, 0.125); +} + +.card-header:first-child { + border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; +} + +.card-header + .list-group .list-group-item:first-child { + border-top: 0; +} + +.card-footer { + padding: 0.75rem 1.25rem; + background-color: rgba(0, 0, 0, 0.03); + border-top: 1px solid rgba(0, 0, 0, 0.125); +} + +.card-footer:last-child { + border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); +} + +.card-header-tabs { + margin-right: -0.625rem; + margin-bottom: -0.75rem; + margin-left: -0.625rem; + border-bottom: 0; +} + +.card-header-pills { + margin-right: -0.625rem; + margin-left: -0.625rem; +} + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1.25rem; +} + +.card-img { + width: 100%; + border-radius: calc(0.25rem - 1px); +} + +.card-img-top { + width: 100%; + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} + +.card-img-bottom { + width: 100%; + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} + +.card-deck { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; +} + +.card-deck .card { + margin-bottom: 15px; +} + +@media (min-width: 576px) { + .card-deck { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + margin-right: -15px; + margin-left: -15px; + } + .card-deck .card { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 1; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + margin-right: 15px; + margin-bottom: 0; + margin-left: 15px; + } +} + +.card-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; +} + +.card-group > .card { + margin-bottom: 15px; +} + +@media (min-width: 576px) { + .card-group { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + } + .card-group > .card { + -webkit-box-flex: 1; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + margin-bottom: 0; + } + .card-group > .card + .card { + margin-left: 0; + border-left: 0; + } + .card-group > .card:first-child { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + .card-group > .card:first-child .card-img-top, + .card-group > .card:first-child .card-header { + border-top-right-radius: 0; + } + .card-group > .card:first-child .card-img-bottom, + .card-group > .card:first-child .card-footer { + border-bottom-right-radius: 0; + } + .card-group > .card:last-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + .card-group > .card:last-child .card-img-top, + .card-group > .card:last-child .card-header { + border-top-left-radius: 0; + } + .card-group > .card:last-child .card-img-bottom, + .card-group > .card:last-child .card-footer { + border-bottom-left-radius: 0; + } + .card-group > .card:only-child { + border-radius: 0.25rem; + } + .card-group > .card:only-child .card-img-top, + .card-group > .card:only-child .card-header { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + .card-group > .card:only-child .card-img-bottom, + .card-group > .card:only-child .card-footer { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) { + border-radius: 0; + } + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top, + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom, + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header, + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer { + border-radius: 0; + } +} + +.card-columns .card { + margin-bottom: 0.75rem; +} + +@media (min-width: 576px) { + .card-columns { + -webkit-column-count: 3; + -moz-column-count: 3; + column-count: 3; + -webkit-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + .card-columns .card { + display: inline-block; + width: 100%; + } +} + +.breadcrumb { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding: 0.75rem 1rem; + margin-bottom: 1rem; + list-style: none; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +.breadcrumb-item + .breadcrumb-item::before { + display: inline-block; + padding-right: 0.5rem; + padding-left: 0.5rem; + color: #868e96; + content: "/"; +} + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: underline; +} + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: none; +} + +.breadcrumb-item.active { + color: #868e96; +} + +.pagination { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + padding-left: 0; + list-style: none; + border-radius: 0.25rem; +} + +.page-link { + position: relative; + display: block; + padding: 0.5rem 0.75rem; + margin-left: -1px; + line-height: 1.25; + color: #007bff; + background-color: #fff; + border: 1px solid #dee2e6; +} + +.page-link:focus, .page-link:hover { + color: #0056b3; + text-decoration: none; + background-color: #e9ecef; + border-color: #dee2e6; +} + +.page-link:not([disabled]):not(.disabled) { + cursor: pointer; +} + +.page-item:first-child .page-link { + margin-left: 0; + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.page-item:last-child .page-link { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} + +.page-item.active .page-link { + z-index: 1; + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.page-item.disabled .page-link { + color: #868e96; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #dee2e6; +} + +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.25rem; + line-height: 1.5; +} + +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; +} + +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; +} + +.pagination-sm .page-link { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; +} + +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: 0.2rem; + border-bottom-left-radius: 0.2rem; +} + +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: 0.2rem; + border-bottom-right-radius: 0.2rem; +} + +.badge { + display: inline-block; + padding: 0.25em 0.4em; + font-size: 75%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25rem; +} + +.badge:empty { + display: none; +} + +.btn .badge { + position: relative; + top: -1px; +} + +.badge-pill { + padding-right: 0.6em; + padding-left: 0.6em; + border-radius: 10rem; +} + +.badge-primary { + color: #fff; + background-color: #007bff; +} + +.badge-primary[href]:focus, .badge-primary[href]:hover { + color: #fff; + text-decoration: none; + background-color: #0062cc; +} + +.badge-secondary { + color: #fff; + background-color: #868e96; +} + +.badge-secondary[href]:focus, .badge-secondary[href]:hover { + color: #fff; + text-decoration: none; + background-color: #6c757d; +} + +.badge-success { + color: #fff; + background-color: #28a745; +} + +.badge-success[href]:focus, .badge-success[href]:hover { + color: #fff; + text-decoration: none; + background-color: #1e7e34; +} + +.badge-info { + color: #fff; + background-color: #17a2b8; +} + +.badge-info[href]:focus, .badge-info[href]:hover { + color: #fff; + text-decoration: none; + background-color: #117a8b; +} + +.badge-warning { + color: #212529; + background-color: #ffc107; +} + +.badge-warning[href]:focus, .badge-warning[href]:hover { + color: #212529; + text-decoration: none; + background-color: #d39e00; +} + +.badge-danger { + color: #fff; + background-color: #dc3545; +} + +.badge-danger[href]:focus, .badge-danger[href]:hover { + color: #fff; + text-decoration: none; + background-color: #bd2130; +} + +.badge-light { + color: #212529; + background-color: #f8f9fa; +} + +.badge-light[href]:focus, .badge-light[href]:hover { + color: #212529; + text-decoration: none; + background-color: #dae0e5; +} + +.badge-dark { + color: #fff; + background-color: #343a40; +} + +.badge-dark[href]:focus, .badge-dark[href]:hover { + color: #fff; + text-decoration: none; + background-color: #1d2124; +} + +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #e9ecef; + border-radius: 0.3rem; +} + +@media (min-width: 576px) { + .jumbotron { + padding: 4rem 2rem; + } +} + +.jumbotron-fluid { + padding-right: 0; + padding-left: 0; + border-radius: 0; +} + +.alert { + position: relative; + padding: 0.75rem 1.25rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +.alert-heading { + color: inherit; +} + +.alert-link { + font-weight: 700; +} + +.alert-dismissible { + padding-right: 4rem; +} + +.alert-dismissible .close { + position: absolute; + top: 0; + right: 0; + padding: 0.75rem 1.25rem; + color: inherit; +} + +.alert-primary { + color: #004085; + background-color: #cce5ff; + border-color: #b8daff; +} + +.alert-primary hr { + border-top-color: #9fcdff; +} + +.alert-primary .alert-link { + color: #002752; +} + +.alert-secondary { + color: #464a4e; + background-color: #e7e8ea; + border-color: #dddfe2; +} + +.alert-secondary hr { + border-top-color: #cfd2d6; +} + +.alert-secondary .alert-link { + color: #2e3133; +} + +.alert-success { + color: #155724; + background-color: #d4edda; + border-color: #c3e6cb; +} + +.alert-success hr { + border-top-color: #b1dfbb; +} + +.alert-success .alert-link { + color: #0b2e13; +} + +.alert-info { + color: #0c5460; + background-color: #d1ecf1; + border-color: #bee5eb; +} + +.alert-info hr { + border-top-color: #abdde5; +} + +.alert-info .alert-link { + color: #062c33; +} + +.alert-warning { + color: #856404; + background-color: #fff3cd; + border-color: #ffeeba; +} + +.alert-warning hr { + border-top-color: #ffe8a1; +} + +.alert-warning .alert-link { + color: #533f03; +} + +.alert-danger { + color: #721c24; + background-color: #f8d7da; + border-color: #f5c6cb; +} + +.alert-danger hr { + border-top-color: #f1b0b7; +} + +.alert-danger .alert-link { + color: #491217; +} + +.alert-light { + color: #818182; + background-color: #fefefe; + border-color: #fdfdfe; +} + +.alert-light hr { + border-top-color: #ececf6; +} + +.alert-light .alert-link { + color: #686868; +} + +.alert-dark { + color: #1b1e21; + background-color: #d6d8d9; + border-color: #c6c8ca; +} + +.alert-dark hr { + border-top-color: #b9bbbe; +} + +.alert-dark .alert-link { + color: #040505; +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +.progress { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + height: 1rem; + overflow: hidden; + font-size: 0.75rem; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +.progress-bar { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + color: #fff; + text-align: center; + background-color: #007bff; + transition: width 0.6s ease; +} + +.progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 1rem 1rem; +} + +.progress-bar-animated { + -webkit-animation: progress-bar-stripes 1s linear infinite; + animation: progress-bar-stripes 1s linear infinite; +} + +.media { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; +} + +.media-body { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; +} + +.list-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; +} + +.list-group-item-action { + width: 100%; + color: #495057; + text-align: inherit; +} + +.list-group-item-action:focus, .list-group-item-action:hover { + color: #495057; + text-decoration: none; + background-color: #f8f9fa; +} + +.list-group-item-action:active { + color: #212529; + background-color: #e9ecef; +} + +.list-group-item { + position: relative; + display: block; + padding: 0.75rem 1.25rem; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); +} + +.list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.list-group-item:focus, .list-group-item:hover { + z-index: 1; + text-decoration: none; +} + +.list-group-item.disabled, .list-group-item:disabled { + color: #868e96; + background-color: #fff; +} + +.list-group-item.active { + z-index: 2; + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.list-group-flush .list-group-item { + border-right: 0; + border-left: 0; + border-radius: 0; +} + +.list-group-flush:first-child .list-group-item:first-child { + border-top: 0; +} + +.list-group-flush:last-child .list-group-item:last-child { + border-bottom: 0; +} + +.list-group-item-primary { + color: #004085; + background-color: #b8daff; +} + +a.list-group-item-primary, +button.list-group-item-primary { + color: #004085; +} + +a.list-group-item-primary:focus, a.list-group-item-primary:hover, +button.list-group-item-primary:focus, +button.list-group-item-primary:hover { + color: #004085; + background-color: #9fcdff; +} + +a.list-group-item-primary.active, +button.list-group-item-primary.active { + color: #fff; + background-color: #004085; + border-color: #004085; +} + +.list-group-item-secondary { + color: #464a4e; + background-color: #dddfe2; +} + +a.list-group-item-secondary, +button.list-group-item-secondary { + color: #464a4e; +} + +a.list-group-item-secondary:focus, a.list-group-item-secondary:hover, +button.list-group-item-secondary:focus, +button.list-group-item-secondary:hover { + color: #464a4e; + background-color: #cfd2d6; +} + +a.list-group-item-secondary.active, +button.list-group-item-secondary.active { + color: #fff; + background-color: #464a4e; + border-color: #464a4e; +} + +.list-group-item-success { + color: #155724; + background-color: #c3e6cb; +} + +a.list-group-item-success, +button.list-group-item-success { + color: #155724; +} + +a.list-group-item-success:focus, a.list-group-item-success:hover, +button.list-group-item-success:focus, +button.list-group-item-success:hover { + color: #155724; + background-color: #b1dfbb; +} + +a.list-group-item-success.active, +button.list-group-item-success.active { + color: #fff; + background-color: #155724; + border-color: #155724; +} + +.list-group-item-info { + color: #0c5460; + background-color: #bee5eb; +} + +a.list-group-item-info, +button.list-group-item-info { + color: #0c5460; +} + +a.list-group-item-info:focus, a.list-group-item-info:hover, +button.list-group-item-info:focus, +button.list-group-item-info:hover { + color: #0c5460; + background-color: #abdde5; +} + +a.list-group-item-info.active, +button.list-group-item-info.active { + color: #fff; + background-color: #0c5460; + border-color: #0c5460; +} + +.list-group-item-warning { + color: #856404; + background-color: #ffeeba; +} + +a.list-group-item-warning, +button.list-group-item-warning { + color: #856404; +} + +a.list-group-item-warning:focus, a.list-group-item-warning:hover, +button.list-group-item-warning:focus, +button.list-group-item-warning:hover { + color: #856404; + background-color: #ffe8a1; +} + +a.list-group-item-warning.active, +button.list-group-item-warning.active { + color: #fff; + background-color: #856404; + border-color: #856404; +} + +.list-group-item-danger { + color: #721c24; + background-color: #f5c6cb; +} + +a.list-group-item-danger, +button.list-group-item-danger { + color: #721c24; +} + +a.list-group-item-danger:focus, a.list-group-item-danger:hover, +button.list-group-item-danger:focus, +button.list-group-item-danger:hover { + color: #721c24; + background-color: #f1b0b7; +} + +a.list-group-item-danger.active, +button.list-group-item-danger.active { + color: #fff; + background-color: #721c24; + border-color: #721c24; +} + +.list-group-item-light { + color: #818182; + background-color: #fdfdfe; +} + +a.list-group-item-light, +button.list-group-item-light { + color: #818182; +} + +a.list-group-item-light:focus, a.list-group-item-light:hover, +button.list-group-item-light:focus, +button.list-group-item-light:hover { + color: #818182; + background-color: #ececf6; +} + +a.list-group-item-light.active, +button.list-group-item-light.active { + color: #fff; + background-color: #818182; + border-color: #818182; +} + +.list-group-item-dark { + color: #1b1e21; + background-color: #c6c8ca; +} + +a.list-group-item-dark, +button.list-group-item-dark { + color: #1b1e21; +} + +a.list-group-item-dark:focus, a.list-group-item-dark:hover, +button.list-group-item-dark:focus, +button.list-group-item-dark:hover { + color: #1b1e21; + background-color: #b9bbbe; +} + +a.list-group-item-dark.active, +button.list-group-item-dark.active { + color: #fff; + background-color: #1b1e21; + border-color: #1b1e21; +} + +.close { + float: right; + font-size: 1.5rem; + font-weight: 700; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .5; +} + +.close:focus, .close:hover { + color: #000; + text-decoration: none; + opacity: .75; +} + +.close:not([disabled]):not(.disabled) { + cursor: pointer; +} + +button.close { + padding: 0; + background-color: transparent; + border: 0; + -webkit-appearance: none; +} + +.modal-open { + overflow: hidden; +} + +.modal { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + display: none; + overflow: hidden; + outline: 0; +} + +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; +} + +.modal-dialog { + position: relative; + width: auto; + margin: 0.5rem; + pointer-events: none; +} + +.modal.fade .modal-dialog { + transition: -webkit-transform 0.3s ease-out; + transition: transform 0.3s ease-out; + transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; + -webkit-transform: translate(0, -25%); + transform: translate(0, -25%); +} + +.modal.show .modal-dialog { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); +} + +.modal-dialog-centered { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + min-height: calc(100% - (0.5rem * 2)); +} + +.modal-content { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; + outline: 0; +} + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000; +} + +.modal-backdrop.fade { + opacity: 0; +} + +.modal-backdrop.show { + opacity: 0.5; +} + +.modal-header { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 1rem; + border-bottom: 1px solid #e9ecef; + border-top-left-radius: 0.3rem; + border-top-right-radius: 0.3rem; +} + +.modal-header .close { + padding: 1rem; + margin: -1rem -1rem -1rem auto; +} + +.modal-title { + margin-bottom: 0; + line-height: 1.5; +} + +.modal-body { + position: relative; + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1rem; +} + +.modal-footer { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + padding: 1rem; + border-top: 1px solid #e9ecef; +} + +.modal-footer > :not(:first-child) { + margin-left: .25rem; +} + +.modal-footer > :not(:last-child) { + margin-right: .25rem; +} + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; +} + +@media (min-width: 576px) { + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto; + } + .modal-dialog-centered { + min-height: calc(100% - (1.75rem * 2)); + } + .modal-sm { + max-width: 300px; + } +} + +@media (min-width: 992px) { + .modal-lg { + max-width: 800px; + } +} + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + opacity: 0; +} + +.tooltip.show { + opacity: 0.9; +} + +.tooltip .arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; +} + +.tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { + padding: 0.4rem 0; +} + +.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { + bottom: 0; +} + +.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { + top: 0; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; +} + +.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { + padding: 0 0.4rem; +} + +.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; +} + +.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { + right: 0; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; +} + +.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { + padding: 0.4rem 0; +} + +.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { + top: 0; +} + +.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + bottom: 0; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; +} + +.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { + padding: 0 0.4rem; +} + +.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; +} + +.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { + left: 0; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; +} + +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 0.25rem; +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; +} + +.popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; + margin: 0 0.3rem; +} + +.popover .arrow::before, .popover .arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-popover-top, .bs-popover-auto[x-placement^="top"] { + margin-bottom: 0.5rem; +} + +.bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow { + bottom: calc((0.5rem + 1px) * -1); +} + +.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before, +.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after { + border-width: 0.5rem 0.5rem 0; +} + +.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before { + bottom: 0; + border-top-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after { + bottom: 1px; + border-top-color: #fff; +} + +.bs-popover-right, .bs-popover-auto[x-placement^="right"] { + margin-left: 0.5rem; +} + +.bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow { + left: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before, +.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after { + border-width: 0.5rem 0.5rem 0.5rem 0; +} + +.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before { + left: 0; + border-right-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after { + left: 1px; + border-right-color: #fff; +} + +.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { + margin-top: 0.5rem; +} + +.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow { + top: calc((0.5rem + 1px) * -1); +} + +.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before, +.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after { + border-width: 0 0.5rem 0.5rem 0.5rem; +} + +.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before { + top: 0; + border-bottom-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after { + top: 1px; + border-bottom-color: #fff; +} + +.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f7f7f7; +} + +.bs-popover-left, .bs-popover-auto[x-placement^="left"] { + margin-right: 0.5rem; +} + +.bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow { + right: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before, +.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after { + border-width: 0.5rem 0 0.5rem 0.5rem; +} + +.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before { + right: 0; + border-left-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after { + right: 1px; + border-left-color: #fff; +} + +.popover-header { + padding: 0.5rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + color: inherit; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); +} + +.popover-header:empty { + display: none; +} + +.popover-body { + padding: 0.5rem 0.75rem; + color: #212529; +} + +.carousel { + position: relative; +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} + +.carousel-item { + position: relative; + display: none; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + width: 100%; + transition: -webkit-transform 0.6s ease; + transition: transform 0.6s ease; + transition: transform 0.6s ease, -webkit-transform 0.6s ease; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-perspective: 1000px; + perspective: 1000px; +} + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; +} + +.carousel-item-next, +.carousel-item-prev { + position: absolute; + top: 0; +} + +.carousel-item-next.carousel-item-left, +.carousel-item-prev.carousel-item-right { + -webkit-transform: translateX(0); + transform: translateX(0); +} + +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-item-next.carousel-item-left, + .carousel-item-prev.carousel-item-right { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.carousel-item-next, +.active.carousel-item-right { + -webkit-transform: translateX(100%); + transform: translateX(100%); +} + +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-item-next, + .active.carousel-item-right { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +.carousel-item-prev, +.active.carousel-item-left { + -webkit-transform: translateX(-100%); + transform: translateX(-100%); +} + +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-item-prev, + .active.carousel-item-left { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: 0.5; +} + +.carousel-control-prev:focus, .carousel-control-prev:hover, +.carousel-control-next:focus, +.carousel-control-next:hover { + color: #fff; + text-decoration: none; + outline: 0; + opacity: .9; +} + +.carousel-control-prev { + left: 0; +} + +.carousel-control-next { + right: 0; +} + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 20px; + height: 20px; + background: transparent no-repeat center center; + background-size: 100% 100%; +} + +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); +} + +.carousel-control-next-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); +} + +.carousel-indicators { + position: absolute; + right: 0; + bottom: 10px; + left: 0; + z-index: 15; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + padding-left: 0; + margin-right: 15%; + margin-left: 15%; + list-style: none; +} + +.carousel-indicators li { + position: relative; + -webkit-box-flex: 0; + -ms-flex: 0 1 auto; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + background-color: rgba(255, 255, 255, 0.5); +} + +.carousel-indicators li::before { + position: absolute; + top: -10px; + left: 0; + display: inline-block; + width: 100%; + height: 10px; + content: ""; +} + +.carousel-indicators li::after { + position: absolute; + bottom: -10px; + left: 0; + display: inline-block; + width: 100%; + height: 10px; + content: ""; +} + +.carousel-indicators .active { + background-color: #fff; +} + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; +} + +.align-baseline { + vertical-align: baseline !important; +} + +.align-top { + vertical-align: top !important; +} + +.align-middle { + vertical-align: middle !important; +} + +.align-bottom { + vertical-align: bottom !important; +} + +.align-text-bottom { + vertical-align: text-bottom !important; +} + +.align-text-top { + vertical-align: text-top !important; +} + +.bg-primary { + background-color: #007bff !important; +} + +a.bg-primary:focus, a.bg-primary:hover, +button.bg-primary:focus, +button.bg-primary:hover { + background-color: #0062cc !important; +} + +.bg-secondary { + background-color: #868e96 !important; +} + +a.bg-secondary:focus, a.bg-secondary:hover, +button.bg-secondary:focus, +button.bg-secondary:hover { + background-color: #6c757d !important; +} + +.bg-success { + background-color: #28a745 !important; +} + +a.bg-success:focus, a.bg-success:hover, +button.bg-success:focus, +button.bg-success:hover { + background-color: #1e7e34 !important; +} + +.bg-info { + background-color: #17a2b8 !important; +} + +a.bg-info:focus, a.bg-info:hover, +button.bg-info:focus, +button.bg-info:hover { + background-color: #117a8b !important; +} + +.bg-warning { + background-color: #ffc107 !important; +} + +a.bg-warning:focus, a.bg-warning:hover, +button.bg-warning:focus, +button.bg-warning:hover { + background-color: #d39e00 !important; +} + +.bg-danger { + background-color: #dc3545 !important; +} + +a.bg-danger:focus, a.bg-danger:hover, +button.bg-danger:focus, +button.bg-danger:hover { + background-color: #bd2130 !important; +} + +.bg-light { + background-color: #f8f9fa !important; +} + +a.bg-light:focus, a.bg-light:hover, +button.bg-light:focus, +button.bg-light:hover { + background-color: #dae0e5 !important; +} + +.bg-dark { + background-color: #343a40 !important; +} + +a.bg-dark:focus, a.bg-dark:hover, +button.bg-dark:focus, +button.bg-dark:hover { + background-color: #1d2124 !important; +} + +.bg-white { + background-color: #fff !important; +} + +.bg-transparent { + background-color: transparent !important; +} + +.border { + border: 1px solid #e9ecef !important; +} + +.border-0 { + border: 0 !important; +} + +.border-top-0 { + border-top: 0 !important; +} + +.border-right-0 { + border-right: 0 !important; +} + +.border-bottom-0 { + border-bottom: 0 !important; +} + +.border-left-0 { + border-left: 0 !important; +} + +.border-primary { + border-color: #007bff !important; +} + +.border-secondary { + border-color: #868e96 !important; +} + +.border-success { + border-color: #28a745 !important; +} + +.border-info { + border-color: #17a2b8 !important; +} + +.border-warning { + border-color: #ffc107 !important; +} + +.border-danger { + border-color: #dc3545 !important; +} + +.border-light { + border-color: #f8f9fa !important; +} + +.border-dark { + border-color: #343a40 !important; +} + +.border-white { + border-color: #fff !important; +} + +.rounded { + border-radius: 0.25rem !important; +} + +.rounded-top { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; +} + +.rounded-right { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; +} + +.rounded-bottom { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +.rounded-left { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +.rounded-circle { + border-radius: 50% !important; +} + +.rounded-0 { + border-radius: 0 !important; +} + +.clearfix::after { + display: block; + clear: both; + content: ""; +} + +.d-none { + display: none !important; +} + +.d-inline { + display: inline !important; +} + +.d-inline-block { + display: inline-block !important; +} + +.d-block { + display: block !important; +} + +.d-table { + display: table !important; +} + +.d-table-row { + display: table-row !important; +} + +.d-table-cell { + display: table-cell !important; +} + +.d-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; +} + +.d-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; +} + +@media (min-width: 576px) { + .d-sm-none { + display: none !important; + } + .d-sm-inline { + display: inline !important; + } + .d-sm-inline-block { + display: inline-block !important; + } + .d-sm-block { + display: block !important; + } + .d-sm-table { + display: table !important; + } + .d-sm-table-row { + display: table-row !important; + } + .d-sm-table-cell { + display: table-cell !important; + } + .d-sm-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + } + .d-sm-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media (min-width: 768px) { + .d-md-none { + display: none !important; + } + .d-md-inline { + display: inline !important; + } + .d-md-inline-block { + display: inline-block !important; + } + .d-md-block { + display: block !important; + } + .d-md-table { + display: table !important; + } + .d-md-table-row { + display: table-row !important; + } + .d-md-table-cell { + display: table-cell !important; + } + .d-md-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + } + .d-md-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media (min-width: 992px) { + .d-lg-none { + display: none !important; + } + .d-lg-inline { + display: inline !important; + } + .d-lg-inline-block { + display: inline-block !important; + } + .d-lg-block { + display: block !important; + } + .d-lg-table { + display: table !important; + } + .d-lg-table-row { + display: table-row !important; + } + .d-lg-table-cell { + display: table-cell !important; + } + .d-lg-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + } + .d-lg-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media (min-width: 1200px) { + .d-xl-none { + display: none !important; + } + .d-xl-inline { + display: inline !important; + } + .d-xl-inline-block { + display: inline-block !important; + } + .d-xl-block { + display: block !important; + } + .d-xl-table { + display: table !important; + } + .d-xl-table-row { + display: table-row !important; + } + .d-xl-table-cell { + display: table-cell !important; + } + .d-xl-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + } + .d-xl-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +.d-print-block { + display: none !important; +} + +@media print { + .d-print-block { + display: block !important; + } +} + +.d-print-inline { + display: none !important; +} + +@media print { + .d-print-inline { + display: inline !important; + } +} + +.d-print-inline-block { + display: none !important; +} + +@media print { + .d-print-inline-block { + display: inline-block !important; + } +} + +@media print { + .d-print-none { + display: none !important; + } +} + +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden; +} + +.embed-responsive::before { + display: block; + content: ""; +} + +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} + +.embed-responsive-21by9::before { + padding-top: 42.857143%; +} + +.embed-responsive-16by9::before { + padding-top: 56.25%; +} + +.embed-responsive-4by3::before { + padding-top: 75%; +} + +.embed-responsive-1by1::before { + padding-top: 100%; +} + +.flex-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; +} + +.flex-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; +} + +.flex-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; +} + +.flex-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; +} + +.flex-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; +} + +.flex-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; +} + +.justify-content-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; +} + +.justify-content-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; +} + +.justify-content-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; +} + +.justify-content-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; +} + +.justify-content-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; +} + +.align-items-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; +} + +.align-items-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; +} + +.align-items-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; +} + +.align-items-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; +} + +.align-items-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; +} + +.align-content-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; +} + +.align-content-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; +} + +.align-content-center { + -ms-flex-line-pack: center !important; + align-content: center !important; +} + +.align-content-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; +} + +.align-content-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; +} + +.align-content-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; +} + +.align-self-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; +} + +.align-self-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; +} + +.align-self-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; +} + +.align-self-center { + -ms-flex-item-align: center !important; + align-self: center !important; +} + +.align-self-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; +} + +.align-self-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; +} + +@media (min-width: 576px) { + .flex-sm-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-sm-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-sm-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-sm-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-sm-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-sm-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .justify-content-sm-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-sm-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-sm-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-sm-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-sm-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-sm-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-sm-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-sm-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-sm-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-sm-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-sm-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-sm-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-sm-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-sm-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-sm-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-sm-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-sm-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-sm-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-sm-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-sm-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-sm-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-sm-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 768px) { + .flex-md-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-md-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-md-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-md-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-md-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-md-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-md-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .justify-content-md-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-md-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-md-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-md-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-md-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-md-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-md-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-md-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-md-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-md-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-md-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-md-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-md-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-md-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-md-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-md-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-md-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-md-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-md-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-md-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-md-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-md-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 992px) { + .flex-lg-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-lg-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-lg-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-lg-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-lg-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-lg-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .justify-content-lg-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-lg-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-lg-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-lg-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-lg-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-lg-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-lg-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-lg-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-lg-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-lg-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-lg-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-lg-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-lg-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-lg-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-lg-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-lg-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-lg-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-lg-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-lg-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-lg-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-lg-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-lg-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 1200px) { + .flex-xl-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-xl-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-xl-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-xl-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-xl-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-xl-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .justify-content-xl-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-xl-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-xl-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-xl-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-xl-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-xl-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-xl-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-xl-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-xl-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-xl-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-xl-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-xl-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-xl-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-xl-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-xl-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-xl-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-xl-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-xl-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-xl-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-xl-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-xl-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-xl-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +.float-left { + float: left !important; +} + +.float-right { + float: right !important; +} + +.float-none { + float: none !important; +} + +@media (min-width: 576px) { + .float-sm-left { + float: left !important; + } + .float-sm-right { + float: right !important; + } + .float-sm-none { + float: none !important; + } +} + +@media (min-width: 768px) { + .float-md-left { + float: left !important; + } + .float-md-right { + float: right !important; + } + .float-md-none { + float: none !important; + } +} + +@media (min-width: 992px) { + .float-lg-left { + float: left !important; + } + .float-lg-right { + float: right !important; + } + .float-lg-none { + float: none !important; + } +} + +@media (min-width: 1200px) { + .float-xl-left { + float: left !important; + } + .float-xl-right { + float: right !important; + } + .float-xl-none { + float: none !important; + } +} + +.position-static { + position: static !important; +} + +.position-relative { + position: relative !important; +} + +.position-absolute { + position: absolute !important; +} + +.position-fixed { + position: fixed !important; +} + +.position-sticky { + position: -webkit-sticky !important; + position: sticky !important; +} + +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; +} + +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; +} + +@supports ((position: -webkit-sticky) or (position: sticky)) { + .sticky-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + -webkit-clip-path: inset(50%); + clip-path: inset(50%); + border: 0; +} + +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal; + -webkit-clip-path: none; + clip-path: none; +} + +.w-25 { + width: 25% !important; +} + +.w-50 { + width: 50% !important; +} + +.w-75 { + width: 75% !important; +} + +.w-100 { + width: 100% !important; +} + +.h-25 { + height: 25% !important; +} + +.h-50 { + height: 50% !important; +} + +.h-75 { + height: 75% !important; +} + +.h-100 { + height: 100% !important; +} + +.mw-100 { + max-width: 100% !important; +} + +.mh-100 { + max-height: 100% !important; +} + +.m-0 { + margin: 0 !important; +} + +.mt-0, +.my-0 { + margin-top: 0 !important; +} + +.mr-0, +.mx-0 { + margin-right: 0 !important; +} + +.mb-0, +.my-0 { + margin-bottom: 0 !important; +} + +.ml-0, +.mx-0 { + margin-left: 0 !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.mt-1, +.my-1 { + margin-top: 0.25rem !important; +} + +.mr-1, +.mx-1 { + margin-right: 0.25rem !important; +} + +.mb-1, +.my-1 { + margin-bottom: 0.25rem !important; +} + +.ml-1, +.mx-1 { + margin-left: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.mt-2, +.my-2 { + margin-top: 0.5rem !important; +} + +.mr-2, +.mx-2 { + margin-right: 0.5rem !important; +} + +.mb-2, +.my-2 { + margin-bottom: 0.5rem !important; +} + +.ml-2, +.mx-2 { + margin-left: 0.5rem !important; +} + +.m-3 { + margin: 1rem !important; +} + +.mt-3, +.my-3 { + margin-top: 1rem !important; +} + +.mr-3, +.mx-3 { + margin-right: 1rem !important; +} + +.mb-3, +.my-3 { + margin-bottom: 1rem !important; +} + +.ml-3, +.mx-3 { + margin-left: 1rem !important; +} + +.m-4 { + margin: 1.5rem !important; +} + +.mt-4, +.my-4 { + margin-top: 1.5rem !important; +} + +.mr-4, +.mx-4 { + margin-right: 1.5rem !important; +} + +.mb-4, +.my-4 { + margin-bottom: 1.5rem !important; +} + +.ml-4, +.mx-4 { + margin-left: 1.5rem !important; +} + +.m-5 { + margin: 3rem !important; +} + +.mt-5, +.my-5 { + margin-top: 3rem !important; +} + +.mr-5, +.mx-5 { + margin-right: 3rem !important; +} + +.mb-5, +.my-5 { + margin-bottom: 3rem !important; +} + +.ml-5, +.mx-5 { + margin-left: 3rem !important; +} + +.p-0 { + padding: 0 !important; +} + +.pt-0, +.py-0 { + padding-top: 0 !important; +} + +.pr-0, +.px-0 { + padding-right: 0 !important; +} + +.pb-0, +.py-0 { + padding-bottom: 0 !important; +} + +.pl-0, +.px-0 { + padding-left: 0 !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.pt-1, +.py-1 { + padding-top: 0.25rem !important; +} + +.pr-1, +.px-1 { + padding-right: 0.25rem !important; +} + +.pb-1, +.py-1 { + padding-bottom: 0.25rem !important; +} + +.pl-1, +.px-1 { + padding-left: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.pt-2, +.py-2 { + padding-top: 0.5rem !important; +} + +.pr-2, +.px-2 { + padding-right: 0.5rem !important; +} + +.pb-2, +.py-2 { + padding-bottom: 0.5rem !important; +} + +.pl-2, +.px-2 { + padding-left: 0.5rem !important; +} + +.p-3 { + padding: 1rem !important; +} + +.pt-3, +.py-3 { + padding-top: 1rem !important; +} + +.pr-3, +.px-3 { + padding-right: 1rem !important; +} + +.pb-3, +.py-3 { + padding-bottom: 1rem !important; +} + +.pl-3, +.px-3 { + padding-left: 1rem !important; +} + +.p-4 { + padding: 1.5rem !important; +} + +.pt-4, +.py-4 { + padding-top: 1.5rem !important; +} + +.pr-4, +.px-4 { + padding-right: 1.5rem !important; +} + +.pb-4, +.py-4 { + padding-bottom: 1.5rem !important; +} + +.pl-4, +.px-4 { + padding-left: 1.5rem !important; +} + +.p-5 { + padding: 3rem !important; +} + +.pt-5, +.py-5 { + padding-top: 3rem !important; +} + +.pr-5, +.px-5 { + padding-right: 3rem !important; +} + +.pb-5, +.py-5 { + padding-bottom: 3rem !important; +} + +.pl-5, +.px-5 { + padding-left: 3rem !important; +} + +.m-auto { + margin: auto !important; +} + +.mt-auto, +.my-auto { + margin-top: auto !important; +} + +.mr-auto, +.mx-auto { + margin-right: auto !important; +} + +.mb-auto, +.my-auto { + margin-bottom: auto !important; +} + +.ml-auto, +.mx-auto { + margin-left: auto !important; +} + +@media (min-width: 576px) { + .m-sm-0 { + margin: 0 !important; + } + .mt-sm-0, + .my-sm-0 { + margin-top: 0 !important; + } + .mr-sm-0, + .mx-sm-0 { + margin-right: 0 !important; + } + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0 !important; + } + .ml-sm-0, + .mx-sm-0 { + margin-left: 0 !important; + } + .m-sm-1 { + margin: 0.25rem !important; + } + .mt-sm-1, + .my-sm-1 { + margin-top: 0.25rem !important; + } + .mr-sm-1, + .mx-sm-1 { + margin-right: 0.25rem !important; + } + .mb-sm-1, + .my-sm-1 { + margin-bottom: 0.25rem !important; + } + .ml-sm-1, + .mx-sm-1 { + margin-left: 0.25rem !important; + } + .m-sm-2 { + margin: 0.5rem !important; + } + .mt-sm-2, + .my-sm-2 { + margin-top: 0.5rem !important; + } + .mr-sm-2, + .mx-sm-2 { + margin-right: 0.5rem !important; + } + .mb-sm-2, + .my-sm-2 { + margin-bottom: 0.5rem !important; + } + .ml-sm-2, + .mx-sm-2 { + margin-left: 0.5rem !important; + } + .m-sm-3 { + margin: 1rem !important; + } + .mt-sm-3, + .my-sm-3 { + margin-top: 1rem !important; + } + .mr-sm-3, + .mx-sm-3 { + margin-right: 1rem !important; + } + .mb-sm-3, + .my-sm-3 { + margin-bottom: 1rem !important; + } + .ml-sm-3, + .mx-sm-3 { + margin-left: 1rem !important; + } + .m-sm-4 { + margin: 1.5rem !important; + } + .mt-sm-4, + .my-sm-4 { + margin-top: 1.5rem !important; + } + .mr-sm-4, + .mx-sm-4 { + margin-right: 1.5rem !important; + } + .mb-sm-4, + .my-sm-4 { + margin-bottom: 1.5rem !important; + } + .ml-sm-4, + .mx-sm-4 { + margin-left: 1.5rem !important; + } + .m-sm-5 { + margin: 3rem !important; + } + .mt-sm-5, + .my-sm-5 { + margin-top: 3rem !important; + } + .mr-sm-5, + .mx-sm-5 { + margin-right: 3rem !important; + } + .mb-sm-5, + .my-sm-5 { + margin-bottom: 3rem !important; + } + .ml-sm-5, + .mx-sm-5 { + margin-left: 3rem !important; + } + .p-sm-0 { + padding: 0 !important; + } + .pt-sm-0, + .py-sm-0 { + padding-top: 0 !important; + } + .pr-sm-0, + .px-sm-0 { + padding-right: 0 !important; + } + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0 !important; + } + .pl-sm-0, + .px-sm-0 { + padding-left: 0 !important; + } + .p-sm-1 { + padding: 0.25rem !important; + } + .pt-sm-1, + .py-sm-1 { + padding-top: 0.25rem !important; + } + .pr-sm-1, + .px-sm-1 { + padding-right: 0.25rem !important; + } + .pb-sm-1, + .py-sm-1 { + padding-bottom: 0.25rem !important; + } + .pl-sm-1, + .px-sm-1 { + padding-left: 0.25rem !important; + } + .p-sm-2 { + padding: 0.5rem !important; + } + .pt-sm-2, + .py-sm-2 { + padding-top: 0.5rem !important; + } + .pr-sm-2, + .px-sm-2 { + padding-right: 0.5rem !important; + } + .pb-sm-2, + .py-sm-2 { + padding-bottom: 0.5rem !important; + } + .pl-sm-2, + .px-sm-2 { + padding-left: 0.5rem !important; + } + .p-sm-3 { + padding: 1rem !important; + } + .pt-sm-3, + .py-sm-3 { + padding-top: 1rem !important; + } + .pr-sm-3, + .px-sm-3 { + padding-right: 1rem !important; + } + .pb-sm-3, + .py-sm-3 { + padding-bottom: 1rem !important; + } + .pl-sm-3, + .px-sm-3 { + padding-left: 1rem !important; + } + .p-sm-4 { + padding: 1.5rem !important; + } + .pt-sm-4, + .py-sm-4 { + padding-top: 1.5rem !important; + } + .pr-sm-4, + .px-sm-4 { + padding-right: 1.5rem !important; + } + .pb-sm-4, + .py-sm-4 { + padding-bottom: 1.5rem !important; + } + .pl-sm-4, + .px-sm-4 { + padding-left: 1.5rem !important; + } + .p-sm-5 { + padding: 3rem !important; + } + .pt-sm-5, + .py-sm-5 { + padding-top: 3rem !important; + } + .pr-sm-5, + .px-sm-5 { + padding-right: 3rem !important; + } + .pb-sm-5, + .py-sm-5 { + padding-bottom: 3rem !important; + } + .pl-sm-5, + .px-sm-5 { + padding-left: 3rem !important; + } + .m-sm-auto { + margin: auto !important; + } + .mt-sm-auto, + .my-sm-auto { + margin-top: auto !important; + } + .mr-sm-auto, + .mx-sm-auto { + margin-right: auto !important; + } + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto !important; + } + .ml-sm-auto, + .mx-sm-auto { + margin-left: auto !important; + } +} + +@media (min-width: 768px) { + .m-md-0 { + margin: 0 !important; + } + .mt-md-0, + .my-md-0 { + margin-top: 0 !important; + } + .mr-md-0, + .mx-md-0 { + margin-right: 0 !important; + } + .mb-md-0, + .my-md-0 { + margin-bottom: 0 !important; + } + .ml-md-0, + .mx-md-0 { + margin-left: 0 !important; + } + .m-md-1 { + margin: 0.25rem !important; + } + .mt-md-1, + .my-md-1 { + margin-top: 0.25rem !important; + } + .mr-md-1, + .mx-md-1 { + margin-right: 0.25rem !important; + } + .mb-md-1, + .my-md-1 { + margin-bottom: 0.25rem !important; + } + .ml-md-1, + .mx-md-1 { + margin-left: 0.25rem !important; + } + .m-md-2 { + margin: 0.5rem !important; + } + .mt-md-2, + .my-md-2 { + margin-top: 0.5rem !important; + } + .mr-md-2, + .mx-md-2 { + margin-right: 0.5rem !important; + } + .mb-md-2, + .my-md-2 { + margin-bottom: 0.5rem !important; + } + .ml-md-2, + .mx-md-2 { + margin-left: 0.5rem !important; + } + .m-md-3 { + margin: 1rem !important; + } + .mt-md-3, + .my-md-3 { + margin-top: 1rem !important; + } + .mr-md-3, + .mx-md-3 { + margin-right: 1rem !important; + } + .mb-md-3, + .my-md-3 { + margin-bottom: 1rem !important; + } + .ml-md-3, + .mx-md-3 { + margin-left: 1rem !important; + } + .m-md-4 { + margin: 1.5rem !important; + } + .mt-md-4, + .my-md-4 { + margin-top: 1.5rem !important; + } + .mr-md-4, + .mx-md-4 { + margin-right: 1.5rem !important; + } + .mb-md-4, + .my-md-4 { + margin-bottom: 1.5rem !important; + } + .ml-md-4, + .mx-md-4 { + margin-left: 1.5rem !important; + } + .m-md-5 { + margin: 3rem !important; + } + .mt-md-5, + .my-md-5 { + margin-top: 3rem !important; + } + .mr-md-5, + .mx-md-5 { + margin-right: 3rem !important; + } + .mb-md-5, + .my-md-5 { + margin-bottom: 3rem !important; + } + .ml-md-5, + .mx-md-5 { + margin-left: 3rem !important; + } + .p-md-0 { + padding: 0 !important; + } + .pt-md-0, + .py-md-0 { + padding-top: 0 !important; + } + .pr-md-0, + .px-md-0 { + padding-right: 0 !important; + } + .pb-md-0, + .py-md-0 { + padding-bottom: 0 !important; + } + .pl-md-0, + .px-md-0 { + padding-left: 0 !important; + } + .p-md-1 { + padding: 0.25rem !important; + } + .pt-md-1, + .py-md-1 { + padding-top: 0.25rem !important; + } + .pr-md-1, + .px-md-1 { + padding-right: 0.25rem !important; + } + .pb-md-1, + .py-md-1 { + padding-bottom: 0.25rem !important; + } + .pl-md-1, + .px-md-1 { + padding-left: 0.25rem !important; + } + .p-md-2 { + padding: 0.5rem !important; + } + .pt-md-2, + .py-md-2 { + padding-top: 0.5rem !important; + } + .pr-md-2, + .px-md-2 { + padding-right: 0.5rem !important; + } + .pb-md-2, + .py-md-2 { + padding-bottom: 0.5rem !important; + } + .pl-md-2, + .px-md-2 { + padding-left: 0.5rem !important; + } + .p-md-3 { + padding: 1rem !important; + } + .pt-md-3, + .py-md-3 { + padding-top: 1rem !important; + } + .pr-md-3, + .px-md-3 { + padding-right: 1rem !important; + } + .pb-md-3, + .py-md-3 { + padding-bottom: 1rem !important; + } + .pl-md-3, + .px-md-3 { + padding-left: 1rem !important; + } + .p-md-4 { + padding: 1.5rem !important; + } + .pt-md-4, + .py-md-4 { + padding-top: 1.5rem !important; + } + .pr-md-4, + .px-md-4 { + padding-right: 1.5rem !important; + } + .pb-md-4, + .py-md-4 { + padding-bottom: 1.5rem !important; + } + .pl-md-4, + .px-md-4 { + padding-left: 1.5rem !important; + } + .p-md-5 { + padding: 3rem !important; + } + .pt-md-5, + .py-md-5 { + padding-top: 3rem !important; + } + .pr-md-5, + .px-md-5 { + padding-right: 3rem !important; + } + .pb-md-5, + .py-md-5 { + padding-bottom: 3rem !important; + } + .pl-md-5, + .px-md-5 { + padding-left: 3rem !important; + } + .m-md-auto { + margin: auto !important; + } + .mt-md-auto, + .my-md-auto { + margin-top: auto !important; + } + .mr-md-auto, + .mx-md-auto { + margin-right: auto !important; + } + .mb-md-auto, + .my-md-auto { + margin-bottom: auto !important; + } + .ml-md-auto, + .mx-md-auto { + margin-left: auto !important; + } +} + +@media (min-width: 992px) { + .m-lg-0 { + margin: 0 !important; + } + .mt-lg-0, + .my-lg-0 { + margin-top: 0 !important; + } + .mr-lg-0, + .mx-lg-0 { + margin-right: 0 !important; + } + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0 !important; + } + .ml-lg-0, + .mx-lg-0 { + margin-left: 0 !important; + } + .m-lg-1 { + margin: 0.25rem !important; + } + .mt-lg-1, + .my-lg-1 { + margin-top: 0.25rem !important; + } + .mr-lg-1, + .mx-lg-1 { + margin-right: 0.25rem !important; + } + .mb-lg-1, + .my-lg-1 { + margin-bottom: 0.25rem !important; + } + .ml-lg-1, + .mx-lg-1 { + margin-left: 0.25rem !important; + } + .m-lg-2 { + margin: 0.5rem !important; + } + .mt-lg-2, + .my-lg-2 { + margin-top: 0.5rem !important; + } + .mr-lg-2, + .mx-lg-2 { + margin-right: 0.5rem !important; + } + .mb-lg-2, + .my-lg-2 { + margin-bottom: 0.5rem !important; + } + .ml-lg-2, + .mx-lg-2 { + margin-left: 0.5rem !important; + } + .m-lg-3 { + margin: 1rem !important; + } + .mt-lg-3, + .my-lg-3 { + margin-top: 1rem !important; + } + .mr-lg-3, + .mx-lg-3 { + margin-right: 1rem !important; + } + .mb-lg-3, + .my-lg-3 { + margin-bottom: 1rem !important; + } + .ml-lg-3, + .mx-lg-3 { + margin-left: 1rem !important; + } + .m-lg-4 { + margin: 1.5rem !important; + } + .mt-lg-4, + .my-lg-4 { + margin-top: 1.5rem !important; + } + .mr-lg-4, + .mx-lg-4 { + margin-right: 1.5rem !important; + } + .mb-lg-4, + .my-lg-4 { + margin-bottom: 1.5rem !important; + } + .ml-lg-4, + .mx-lg-4 { + margin-left: 1.5rem !important; + } + .m-lg-5 { + margin: 3rem !important; + } + .mt-lg-5, + .my-lg-5 { + margin-top: 3rem !important; + } + .mr-lg-5, + .mx-lg-5 { + margin-right: 3rem !important; + } + .mb-lg-5, + .my-lg-5 { + margin-bottom: 3rem !important; + } + .ml-lg-5, + .mx-lg-5 { + margin-left: 3rem !important; + } + .p-lg-0 { + padding: 0 !important; + } + .pt-lg-0, + .py-lg-0 { + padding-top: 0 !important; + } + .pr-lg-0, + .px-lg-0 { + padding-right: 0 !important; + } + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0 !important; + } + .pl-lg-0, + .px-lg-0 { + padding-left: 0 !important; + } + .p-lg-1 { + padding: 0.25rem !important; + } + .pt-lg-1, + .py-lg-1 { + padding-top: 0.25rem !important; + } + .pr-lg-1, + .px-lg-1 { + padding-right: 0.25rem !important; + } + .pb-lg-1, + .py-lg-1 { + padding-bottom: 0.25rem !important; + } + .pl-lg-1, + .px-lg-1 { + padding-left: 0.25rem !important; + } + .p-lg-2 { + padding: 0.5rem !important; + } + .pt-lg-2, + .py-lg-2 { + padding-top: 0.5rem !important; + } + .pr-lg-2, + .px-lg-2 { + padding-right: 0.5rem !important; + } + .pb-lg-2, + .py-lg-2 { + padding-bottom: 0.5rem !important; + } + .pl-lg-2, + .px-lg-2 { + padding-left: 0.5rem !important; + } + .p-lg-3 { + padding: 1rem !important; + } + .pt-lg-3, + .py-lg-3 { + padding-top: 1rem !important; + } + .pr-lg-3, + .px-lg-3 { + padding-right: 1rem !important; + } + .pb-lg-3, + .py-lg-3 { + padding-bottom: 1rem !important; + } + .pl-lg-3, + .px-lg-3 { + padding-left: 1rem !important; + } + .p-lg-4 { + padding: 1.5rem !important; + } + .pt-lg-4, + .py-lg-4 { + padding-top: 1.5rem !important; + } + .pr-lg-4, + .px-lg-4 { + padding-right: 1.5rem !important; + } + .pb-lg-4, + .py-lg-4 { + padding-bottom: 1.5rem !important; + } + .pl-lg-4, + .px-lg-4 { + padding-left: 1.5rem !important; + } + .p-lg-5 { + padding: 3rem !important; + } + .pt-lg-5, + .py-lg-5 { + padding-top: 3rem !important; + } + .pr-lg-5, + .px-lg-5 { + padding-right: 3rem !important; + } + .pb-lg-5, + .py-lg-5 { + padding-bottom: 3rem !important; + } + .pl-lg-5, + .px-lg-5 { + padding-left: 3rem !important; + } + .m-lg-auto { + margin: auto !important; + } + .mt-lg-auto, + .my-lg-auto { + margin-top: auto !important; + } + .mr-lg-auto, + .mx-lg-auto { + margin-right: auto !important; + } + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto !important; + } + .ml-lg-auto, + .mx-lg-auto { + margin-left: auto !important; + } +} + +@media (min-width: 1200px) { + .m-xl-0 { + margin: 0 !important; + } + .mt-xl-0, + .my-xl-0 { + margin-top: 0 !important; + } + .mr-xl-0, + .mx-xl-0 { + margin-right: 0 !important; + } + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0 !important; + } + .ml-xl-0, + .mx-xl-0 { + margin-left: 0 !important; + } + .m-xl-1 { + margin: 0.25rem !important; + } + .mt-xl-1, + .my-xl-1 { + margin-top: 0.25rem !important; + } + .mr-xl-1, + .mx-xl-1 { + margin-right: 0.25rem !important; + } + .mb-xl-1, + .my-xl-1 { + margin-bottom: 0.25rem !important; + } + .ml-xl-1, + .mx-xl-1 { + margin-left: 0.25rem !important; + } + .m-xl-2 { + margin: 0.5rem !important; + } + .mt-xl-2, + .my-xl-2 { + margin-top: 0.5rem !important; + } + .mr-xl-2, + .mx-xl-2 { + margin-right: 0.5rem !important; + } + .mb-xl-2, + .my-xl-2 { + margin-bottom: 0.5rem !important; + } + .ml-xl-2, + .mx-xl-2 { + margin-left: 0.5rem !important; + } + .m-xl-3 { + margin: 1rem !important; + } + .mt-xl-3, + .my-xl-3 { + margin-top: 1rem !important; + } + .mr-xl-3, + .mx-xl-3 { + margin-right: 1rem !important; + } + .mb-xl-3, + .my-xl-3 { + margin-bottom: 1rem !important; + } + .ml-xl-3, + .mx-xl-3 { + margin-left: 1rem !important; + } + .m-xl-4 { + margin: 1.5rem !important; + } + .mt-xl-4, + .my-xl-4 { + margin-top: 1.5rem !important; + } + .mr-xl-4, + .mx-xl-4 { + margin-right: 1.5rem !important; + } + .mb-xl-4, + .my-xl-4 { + margin-bottom: 1.5rem !important; + } + .ml-xl-4, + .mx-xl-4 { + margin-left: 1.5rem !important; + } + .m-xl-5 { + margin: 3rem !important; + } + .mt-xl-5, + .my-xl-5 { + margin-top: 3rem !important; + } + .mr-xl-5, + .mx-xl-5 { + margin-right: 3rem !important; + } + .mb-xl-5, + .my-xl-5 { + margin-bottom: 3rem !important; + } + .ml-xl-5, + .mx-xl-5 { + margin-left: 3rem !important; + } + .p-xl-0 { + padding: 0 !important; + } + .pt-xl-0, + .py-xl-0 { + padding-top: 0 !important; + } + .pr-xl-0, + .px-xl-0 { + padding-right: 0 !important; + } + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0 !important; + } + .pl-xl-0, + .px-xl-0 { + padding-left: 0 !important; + } + .p-xl-1 { + padding: 0.25rem !important; + } + .pt-xl-1, + .py-xl-1 { + padding-top: 0.25rem !important; + } + .pr-xl-1, + .px-xl-1 { + padding-right: 0.25rem !important; + } + .pb-xl-1, + .py-xl-1 { + padding-bottom: 0.25rem !important; + } + .pl-xl-1, + .px-xl-1 { + padding-left: 0.25rem !important; + } + .p-xl-2 { + padding: 0.5rem !important; + } + .pt-xl-2, + .py-xl-2 { + padding-top: 0.5rem !important; + } + .pr-xl-2, + .px-xl-2 { + padding-right: 0.5rem !important; + } + .pb-xl-2, + .py-xl-2 { + padding-bottom: 0.5rem !important; + } + .pl-xl-2, + .px-xl-2 { + padding-left: 0.5rem !important; + } + .p-xl-3 { + padding: 1rem !important; + } + .pt-xl-3, + .py-xl-3 { + padding-top: 1rem !important; + } + .pr-xl-3, + .px-xl-3 { + padding-right: 1rem !important; + } + .pb-xl-3, + .py-xl-3 { + padding-bottom: 1rem !important; + } + .pl-xl-3, + .px-xl-3 { + padding-left: 1rem !important; + } + .p-xl-4 { + padding: 1.5rem !important; + } + .pt-xl-4, + .py-xl-4 { + padding-top: 1.5rem !important; + } + .pr-xl-4, + .px-xl-4 { + padding-right: 1.5rem !important; + } + .pb-xl-4, + .py-xl-4 { + padding-bottom: 1.5rem !important; + } + .pl-xl-4, + .px-xl-4 { + padding-left: 1.5rem !important; + } + .p-xl-5 { + padding: 3rem !important; + } + .pt-xl-5, + .py-xl-5 { + padding-top: 3rem !important; + } + .pr-xl-5, + .px-xl-5 { + padding-right: 3rem !important; + } + .pb-xl-5, + .py-xl-5 { + padding-bottom: 3rem !important; + } + .pl-xl-5, + .px-xl-5 { + padding-left: 3rem !important; + } + .m-xl-auto { + margin: auto !important; + } + .mt-xl-auto, + .my-xl-auto { + margin-top: auto !important; + } + .mr-xl-auto, + .mx-xl-auto { + margin-right: auto !important; + } + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto !important; + } + .ml-xl-auto, + .mx-xl-auto { + margin-left: auto !important; + } +} + +.text-justify { + text-align: justify !important; +} + +.text-nowrap { + white-space: nowrap !important; +} + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.text-left { + text-align: left !important; +} + +.text-right { + text-align: right !important; +} + +.text-center { + text-align: center !important; +} + +@media (min-width: 576px) { + .text-sm-left { + text-align: left !important; + } + .text-sm-right { + text-align: right !important; + } + .text-sm-center { + text-align: center !important; + } +} + +@media (min-width: 768px) { + .text-md-left { + text-align: left !important; + } + .text-md-right { + text-align: right !important; + } + .text-md-center { + text-align: center !important; + } +} + +@media (min-width: 992px) { + .text-lg-left { + text-align: left !important; + } + .text-lg-right { + text-align: right !important; + } + .text-lg-center { + text-align: center !important; + } +} + +@media (min-width: 1200px) { + .text-xl-left { + text-align: left !important; + } + .text-xl-right { + text-align: right !important; + } + .text-xl-center { + text-align: center !important; + } +} + +.text-lowercase { + text-transform: lowercase !important; +} + +.text-uppercase { + text-transform: uppercase !important; +} + +.text-capitalize { + text-transform: capitalize !important; +} + +.font-weight-light { + font-weight: 300 !important; +} + +.font-weight-normal { + font-weight: 400 !important; +} + +.font-weight-bold { + font-weight: 700 !important; +} + +.font-italic { + font-style: italic !important; +} + +.text-white { + color: #fff !important; +} + +.text-primary { + color: #007bff !important; +} + +a.text-primary:focus, a.text-primary:hover { + color: #0062cc !important; +} + +.text-secondary { + color: #868e96 !important; +} + +a.text-secondary:focus, a.text-secondary:hover { + color: #6c757d !important; +} + +.text-success { + color: #28a745 !important; +} + +a.text-success:focus, a.text-success:hover { + color: #1e7e34 !important; +} + +.text-info { + color: #17a2b8 !important; +} + +a.text-info:focus, a.text-info:hover { + color: #117a8b !important; +} + +.text-warning { + color: #ffc107 !important; +} + +a.text-warning:focus, a.text-warning:hover { + color: #d39e00 !important; +} + +.text-danger { + color: #dc3545 !important; +} + +a.text-danger:focus, a.text-danger:hover { + color: #bd2130 !important; +} + +.text-light { + color: #f8f9fa !important; +} + +a.text-light:focus, a.text-light:hover { + color: #dae0e5 !important; +} + +.text-dark { + color: #343a40 !important; +} + +a.text-dark:focus, a.text-dark:hover { + color: #1d2124 !important; +} + +.text-muted { + color: #868e96 !important; +} + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.visible { + visibility: visible !important; +} + +.invisible { + visibility: hidden !important; +} + +@media print { + *, + *::before, + *::after { + text-shadow: none !important; + box-shadow: none !important; + } + a, + a:visited { + text-decoration: underline; + } + abbr[title]::after { + content: " (" attr(title) ")"; + } + pre { + white-space: pre-wrap !important; + } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } + .navbar { + display: none; + } + .badge { + border: 1px solid #000; + } + .table { + border-collapse: collapse !important; + } + .table td, + .table th { + background-color: #fff !important; + } + .table-bordered th, + .table-bordered td { + border: 1px solid #ddd !important; + } +} +/*# sourceMappingURL=bootstrap.css.map */ \ No newline at end of file diff --git a/frontend/assets/libs/bootstrap4/css/bootstrap.css.map b/frontend/assets/libs/bootstrap4/css/bootstrap.css.map new file mode 100644 index 0000000..bf98c5e --- /dev/null +++ b/frontend/assets/libs/bootstrap4/css/bootstrap.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/bootstrap.scss","../../scss/_root.scss","../../scss/_reboot.scss","bootstrap.css","../../scss/_variables.scss","../../scss/mixins/_hover.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/_images.scss","../../scss/mixins/_image.scss","../../scss/mixins/_border-radius.scss","../../scss/_code.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_breakpoints.scss","../../scss/mixins/_grid-framework.scss","../../scss/_tables.scss","../../scss/mixins/_table-row.scss","../../scss/_functions.scss","../../scss/_forms.scss","../../scss/mixins/_transition.scss","../../scss/mixins/_forms.scss","../../scss/mixins/_gradients.scss","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_transitions.scss","../../scss/_dropdown.scss","../../scss/mixins/_caret.scss","../../scss/mixins/_nav-divider.scss","../../scss/_button-group.scss","../../scss/_input-group.scss","../../scss/_custom-forms.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/_card.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_badge.scss","../../scss/mixins/_badge.scss","../../scss/_jumbotron.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/_media.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_close.scss","../../scss/_modal.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/utilities/_align.scss","../../scss/mixins/_background-variant.scss","../../scss/utilities/_background.scss","../../scss/utilities/_borders.scss","../../scss/mixins/_clearfix.scss","../../scss/utilities/_display.scss","../../scss/utilities/_embed.scss","../../scss/utilities/_flex.scss","../../scss/utilities/_float.scss","../../scss/mixins/_float.scss","../../scss/utilities/_position.scss","../../scss/utilities/_screenreaders.scss","../../scss/mixins/_screen-reader.scss","../../scss/utilities/_sizing.scss","../../scss/utilities/_spacing.scss","../../scss/utilities/_text.scss","../../scss/mixins/_text-truncate.scss","../../scss/mixins/_text-emphasis.scss","../../scss/mixins/_text-hide.scss","../../scss/utilities/_visibility.scss","../../scss/mixins/_visibility.scss","../../scss/_print.scss"],"names":[],"mappings":"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EASpF,sBATyH;CnBMnG;;AmBMxB;EAMI,gDpBaW;CoBXd;;AAGD;EAEE,0BpBMa;EoBLb,sBpBKa;CoBJd;;AAED;;EAGE,YpB1BW;EoB2BX,0BAjCuK;EAqCvK,sBArC+M;CA+ChN;;AARC;;EAKI,gDpBbS;CoBeZ;;ADYH;ECzDA,YpBKa;EkBLX,0BlBWc;EoBThB,sBpBSgB;CmBgDf;;AlBtDC;EmBCA,YpBDW;EkBLX,0BEDoF;EASpF,sBATyH;CnBMnG;;AmBMxB;EAMI,kDpBNY;CoBQf;;AAGD;EAEE,0BpBbc;EoBcd,sBpBdc;CoBef;;AAED;;EAGE,YpB1BW;EoB2BX,0BAjCuK;EAqCvK,sBArC+M;CA+ChN;;AARC;;EAKI,kDpBhCU;CoBkCb;;ADYH;ECzDA,YpBKa;EkBLX,0BlBqCa;EoBnCf,sBpBmCe;CmBsBd;;AlBtDC;EmBCA,YpBDW;EkBLX,0BEDoF;EASpF,sBATyH;CnBMnG;;AmBMxB;EAMI,gDpBoBW;CoBlBd;;AAGD;EAEE,0BpBaa;EoBZb,sBpBYa;CoBXd;;AAED;;EAGE,YpB1BW;EoB2BX,0BAjCuK;EAqCvK,sBArC+M;CA+ChN;;AARC;;EAKI,gDpBNS;CoBQZ;;ADYH;ECzDA,YpBKa;EkBLX,0BlBuCa;EoBrCf,sBpBqCe;CmBoBd;;AlBtDC;EmBCA,YpBDW;EkBLX,0BEDoF;EASpF,sBATyH;CnBMnG;;AmBMxB;EAMI,iDpBsBW;CoBpBd;;AAGD;EAEE,0BpBea;EoBdb,sBpBca;CoBbd;;AAED;;EAGE,YpB1BW;EoB2BX,0BAjCuK;EAqCvK,sBArC+M;CA+ChN;;AARC;;EAKI,iDpBJS;CoBMZ;;ADYH;ECzDA,epBcgB;EkBdd,0BlBoCa;EoBlCf,sBpBkCe;CmBuBd;;AlBtDC;EmBCA,epBQc;EkBdd,0BEDoF;EASpF,sBATyH;CnBMnG;;AmBMxB;EAMI,gDpBmBW;CoBjBd;;AAGD;EAEE,0BpBYa;EoBXb,sBpBWa;CoBVd;;AAED;;EAGE,epBjBc;EoBkBd,0BAjCuK;EAqCvK,sBArC+M;CA+ChN;;AARC;;EAKI,gDpBPS;CoBSZ;;ADYH;ECzDA,YpBKa;EkBLX,0BlBkCa;EoBhCf,sBpBgCe;CmByBd;;AlBtDC;EmBCA,YpBDW;EkBLX,0BEDoF;EASpF,sBATyH;CnBMnG;;AmBMxB;EAMI,gDpBiBW;CoBfd;;AAGD;EAEE,0BpBUa;EoBTb,sBpBSa;CoBRd;;AAED;;EAGE,YpB1BW;EoB2BX,0BAjCuK;EAqCvK,sBArC+M;CA+ChN;;AARC;;EAKI,gDpBTS;CoBWZ;;ADYH;ECzDA,epBcgB;EkBdd,0BlBMc;EoBJhB,sBpBIgB;CmBqDf;;AlBtDC;EmBCA,epBQc;EkBdd,0BEDoF;EASpF,sBATyH;CnBMnG;;AmBMxB;EAMI,kDpBXY;CoBaf;;AAGD;EAEE,0BpBlBc;EoBmBd,sBpBnBc;CoBoBf;;AAED;;EAGE,epBjBc;EoBkBd,0BAjCuK;EAqCvK,sBArC+M;CA+ChN;;AARC;;EAKI,kDpBrCU;CoBuCb;;ADYH;ECzDA,YpBKa;EkBLX,0BlBac;EoBXhB,sBpBWgB;CmB8Cf;;AlBtDC;EmBCA,YpBDW;EkBLX,0BEDoF;EASpF,sBATyH;CnBMnG;;AmBMxB;EAMI,+CpBJY;CoBMf;;AAGD;EAEE,0BpBXc;EoBYd,sBpBZc;CoBaf;;AAED;;EAGE,YpB1BW;EoB2BX,0BAjCuK;EAqCvK,sBArC+M;CA+ChN;;AARC;;EAKI,+CpB9BU;CoBgCb;;ADkBH;ECbA,epBpBe;EoBqBf,8BAA6B;EAC7B,uBAAsB;EACtB,sBpBvBe;CmBuCd;;ACdD;EACE,YpBnDW;EoBoDX,0BpB3Ba;EoB4Bb,sBpB5Ba;CoB6Bd;;AAED;EAEE,gDpBjCa;CoBkCd;;AAED;EAEE,epBtCa;EoBuCb,8BAA6B;CAC9B;;AAED;;EAGE,epB7Dc;EoB8Dd,0BpB9Ca;EoB+Cb,sBpB/Ca;EoBiDb,gDpBjDa;CoBkDd;;ADjBD;ECbA,epBvCgB;EoBwChB,8BAA6B;EAC7B,uBAAsB;EACtB,sBpB1CgB;CmB0Df;;ACdD;EACE,YpBnDW;EoBoDX,0BpB9Cc;EoB+Cd,sBpB/Cc;CoBgDf;;AAED;EAEE,kDpBpDc;CoBqDf;;AAED;EAEE,epBzDc;EoB0Dd,8BAA6B;CAC9B;;AAED;;EAGE,epB7Dc;EoB8Dd,0BpBjEc;EoBkEd,sBpBlEc;EoBoEd,kDpBpEc;CoBqEf;;ADjBD;ECbA,epBbe;EoBcf,8BAA6B;EAC7B,uBAAsB;EACtB,sBpBhBe;CmBgCd;;ACdD;EACE,YpBnDW;EoBoDX,0BpBpBa;EoBqBb,sBpBrBa;CoBsBd;;AAED;EAEE,gDpB1Ba;CoB2Bd;;AAED;EAEE,epB/Ba;EoBgCb,8BAA6B;CAC9B;;AAED;;EAGE,epB7Dc;EoB8Dd,0BpBvCa;EoBwCb,sBpBxCa;EoB0Cb,gDpB1Ca;CoB2Cd;;ADjBD;ECbA,epBXe;EoBYf,8BAA6B;EAC7B,uBAAsB;EACtB,sBpBde;CmB8Bd;;ACdD;EACE,YpBnDW;EoBoDX,0BpBlBa;EoBmBb,sBpBnBa;CoBoBd;;AAED;EAEE,iDpBxBa;CoByBd;;AAED;EAEE,epB7Ba;EoB8Bb,8BAA6B;CAC9B;;AAED;;EAGE,epB7Dc;EoB8Dd,0BpBrCa;EoBsCb,sBpBtCa;EoBwCb,iDpBxCa;CoByCd;;ADjBD;ECbA,epBde;EoBef,8BAA6B;EAC7B,uBAAsB;EACtB,sBpBjBe;CmBiCd;;ACdD;EACE,epB1Cc;EoB2Cd,0BpBrBa;EoBsBb,sBpBtBa;CoBuBd;;AAED;EAEE,gDpB3Ba;CoB4Bd;;AAED;EAEE,epBhCa;EoBiCb,8BAA6B;CAC9B;;AAED;;EAGE,epB7Dc;EoB8Dd,0BpBxCa;EoByCb,sBpBzCa;EoB2Cb,gDpB3Ca;CoB4Cd;;ADjBD;ECbA,epBhBe;EoBiBf,8BAA6B;EAC7B,uBAAsB;EACtB,sBpBnBe;CmBmCd;;ACdD;EACE,YpBnDW;EoBoDX,0BpBvBa;EoBwBb,sBpBxBa;CoByBd;;AAED;EAEE,gDpB7Ba;CoB8Bd;;AAED;EAEE,epBlCa;EoBmCb,8BAA6B;CAC9B;;AAED;;EAGE,epB7Dc;EoB8Dd,0BpB1Ca;EoB2Cb,sBpB3Ca;EoB6Cb,gDpB7Ca;CoB8Cd;;ADjBD;ECbA,epB5CgB;EoB6ChB,8BAA6B;EAC7B,uBAAsB;EACtB,sBpB/CgB;CmB+Df;;ACdD;EACE,epB1Cc;EoB2Cd,0BpBnDc;EoBoDd,sBpBpDc;CoBqDf;;AAED;EAEE,kDpBzDc;CoB0Df;;AAED;EAEE,epB9Dc;EoB+Dd,8BAA6B;CAC9B;;AAED;;EAGE,YpBtEW;EoBuEX,0BpBtEc;EoBuEd,sBpBvEc;EoByEd,kDpBzEc;CoB0Ef;;ADjBD;ECbA,epBrCgB;EoBsChB,8BAA6B;EAC7B,uBAAsB;EACtB,sBpBxCgB;CmBwDf;;ACdD;EACE,YpBnDW;EoBoDX,0BpB5Cc;EoB6Cd,sBpB7Cc;CoB8Cf;;AAED;EAEE,+CpBlDc;CoBmDf;;AAED;EAEE,epBvDc;EoBwDd,8BAA6B;CAC9B;;AAED;;EAGE,epB7Dc;EoB8Dd,0BpB/Dc;EoBgEd,sBpBhEc;EoBkEd,+CpBlEc;CoBmEf;;ADFH;EACE,iBnBqJ+B;EmBpJ/B,enBlDe;EmBmDf,8BAA6B;CAsB9B;;AlBlGG;EkB+EA,enByDgD;EmBxDhD,2BnByDiC;EmBxDjC,8BAA6B;EAC7B,0BAAyB;ClBlFH;;AkByE1B;EAcI,2BnBkDiC;EmBjDjC,0BAAyB;EACzB,iBAAgB;CACjB;;AAjBH;EAqBI,enBxFc;CmByFf;;AAUH;ECzBE,qBpBkPgC;EoBjPhC,mBpB0IoD;EoBzIpD,iBpB0G+B;EoBvG7B,sBpB8G+B;CmBxFlC;;AAED;EC7BE,wBpB8OiC;EoB7OjC,oBpB2IoD;EoB1IpD,iBpB2G+B;EoBxG7B,sBpB+G+B;CmBrFlC;;AAOD;EACE,eAAc;EACd,YAAW;CAMZ;;AARD;EAMI,mBnBuO+B;CmBtOhC;;AAIH;;;EAII,YAAW;CACZ;;AE/IH;EACE,WAAU;ELEN,iChBkN2C;CqB9MhD;;AAPD;EAKI,WAAU;CACX;;AAGH;EACE,cAAa;CAId;;AALD;EAGI,eAAc;CACf;;AAGH;EAEI,mBAAkB;CACnB;;AAGH;EAEI,yBAAwB;CACzB;;AAGH;EACE,mBAAkB;EAClB,UAAS;EACT,iBAAgB;EL5BZ,8BhBmNwC;CqBrL7C;;AClCD;;EAEE,mBAAkB;CACnB;;ACwBG;EACE,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,qBAA+B;EAC/B,wBAAkC;EAClC,YAAW;EAjCf,wBAA8B;EAC9B,sCAA4C;EAC5C,iBAAgB;EAChB,qCAA2C;CAsCxC;;AAkBD;EACE,eAAc;CACf;;ADlDL;EACE,mBAAkB;EAClB,UAAS;EACT,QAAO;EACP,ctB4hBsC;EsB3hBtC,cAAa;EACb,YAAW;EACX,iBtB2fuC;EsB1fvC,kBAA8B;EAC9B,qBAA4B;EAC5B,gBtB+MgC;EsB9MhC,etBHgB;EsBIhB,iBAAgB;EAChB,iBAAgB;EAChB,uBtBfa;EsBgBb,6BAA4B;EAC5B,sCtBPa;EMjBX,uBNyMgC;CsB9KnC;;AAID;EAEI,cAAa;EACb,wBtB0euC;CsBzexC;;AAJH;ECNM,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,qBAA+B;EAC/B,wBAAkC;EAClC,YAAW;EA1Bf,cAAa;EACb,sCAA4C;EAC5C,2BAAiC;EACjC,qCAA2C;CA+BxC;;ADPL;EC0BM,eAAc;CACf;;ADhBL;EAEI,cAAa;EACb,sBtB+duC;CsB9dxC;;AAJH;ECjBM,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,qBAA+B;EAC/B,wBAAkC;EAClC,YAAW;EAnBf,oCAA0C;EAC1C,uCAA6C;EAC7C,yBAA+B;CAyB5B;;ADIL;ECeM,eAAc;CACf;;ADhBL;EASM,kBAAiB;CAClB;;AAIL;EAEI,cAAa;EACb,uBtBiduC;CsBhdxC;;AAJH;EC/BM,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,qBAA+B;EAC/B,wBAAkC;EAClC,YAAW;CAQZ;;ADkBL;ECdQ,cAAa;CACd;;ADaP;ECVQ,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,sBAAgC;EAChC,wBAAkC;EAClC,YAAW;EAlCjB,oCAA0C;EAC1C,0BAAgC;EAChC,uCAA6C;CAkCxC;;ADGP;ECCM,eAAc;CACf;;ADFL;EASM,kBAAiB;CAClB;;AAKL;EEtEE,UAAS;EACT,iBAAuB;EACvB,iBAAgB;EAChB,8BxBKgB;CsBgEjB;;AAKD;EACE,eAAc;EACd,YAAW;EACX,wBtB6cwC;EsB5cxC,YAAW;EACX,iBtBmJ+B;EsBlJ/B,etBpEgB;EsBqEhB,oBAAmB;EACnB,oBAAmB;EACnB,8BAA6B;EAC7B,UAAS;CAwBV;;ArB7FG;EqBwEA,etB0bqD;EsBzbrD,sBAAqB;EJ1FrB,0BlBMc;CCcb;;AqBwDL;EAoBI,YtB3FW;EsB4FX,sBAAqB;EJjGrB,0BlB8Ba;CsBqEd;;AAvBH;EA2BI,etB5Fc;EsB6Fd,8BAA6B;CAK9B;;AAGH;EACE,eAAc;CACf;;AAGD;EACE,eAAc;EACd,uBtBqawC;EsBpaxC,iBAAgB;EAChB,oBtBwGoD;EsBvGpD,etB/GgB;EsBgHhB,oBAAmB;CACpB;;AG/HD;;EAEE,mBAAkB;EAClB,4BAAoB;EAApB,4BAAoB;EAApB,qBAAoB;EACpB,uBAAsB;CAyBvB;;AA7BD;;EAOI,mBAAkB;EAClB,oBAAc;EAAd,mBAAc;EAAd,eAAc;CAYf;;AApBH;;EAaM,WAAU;CxBLU;;AwBR1B;;;;EAkBM,WAAU;CACX;;AAnBL;;;;;;;;EA2BI,kBzB4K6B;CyB3K9B;;AAIH;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,wBAA2B;EAA3B,qBAA2B;EAA3B,4BAA2B;CAK5B;;AARD;EAMI,YAAW;CACZ;;AAGH;EAEI,eAAc;CACf;;AAHH;;EnB5BI,2BmBoC8B;EnBnC9B,8BmBmC8B;CAC/B;;AATH;;EnBdI,0BmB2B6B;EnB1B7B,6BmB0B6B;CAC9B;;AAeH;EACE,yBAAmC;EACnC,wBAAkC;CAKnC;;AAPD;EAKI,eAAc;CACf;;AAGH;EACE,wBAAsC;EACtC,uBAAqC;CACtC;;AAED;EACE,uBAAsC;EACtC,sBAAqC;CACtC;;AAmBD;EACE,6BAAsB;EAAtB,8BAAsB;EAAtB,2BAAsB;EAAtB,uBAAsB;EACtB,yBAAuB;EAAvB,sBAAuB;EAAvB,wBAAuB;EACvB,yBAAuB;EAAvB,sBAAuB;EAAvB,wBAAuB;CAyBxB;;AA5BD;;EAOI,YAAW;CACZ;;AARH;;;;EAcI,iBzB8E6B;EyB7E7B,eAAc;CACf;;AAhBH;;EnBtFI,8BmB2G+B;EnB1G/B,6BmB0G+B;CAChC;;AAtBH;;EnBpGI,0BmB8H4B;EnB7H5B,2BmB6H4B;CAC7B;;AAgBH;;EAGI,iBAAgB;CAQjB;;AAXH;;;;EAOM,mBAAkB;EAClB,uBAAsB;EACtB,qBAAoB;CACrB;;AC7JL;EACE,mBAAkB;EAClB,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,2BAAoB;EAApB,wBAAoB;EAApB,qBAAoB;EACpB,YAAW;CAuCZ;;AA5CD;;;EAUI,mBAAkB;EAClB,oBAAc;EAAd,mBAAc;EAAd,eAAc;EAGd,UAAS;EACT,iBAAgB;CAUjB;;AAzBH;;;EAmBM,WAAU;CACX;;AApBL;;;EAuBM,kB1B6K2B;C0B5K5B;;AAxBL;;EpBWI,2BoBkBmD;EpBjBnD,8BoBiBmD;CAAK;;AA7B5D;;EpByBI,0BoBKmD;EpBJnD,6BoBImD;CAAK;;AA9B5D;EAoCI,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,0BAAmB;EAAnB,uBAAmB;EAAnB,oBAAmB;CAMpB;;AA3CH;;EpBWI,2BoB6BgF;EpB5BhF,8BoB4BgF;CAAK;;AAxCzF;;EpByBI,0BoBiBgF;EpBhBhF,6BoBgBgF;CAAK;;AAWzF;;EAEE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,0BAAmB;EAAnB,uBAAmB;EAAnB,oBAAmB;CAgBpB;;AAnBD;;EASI,mBAAkB;EAClB,WAAU;CACX;;AAXH;;;;;;;;EAiBI,kB1B8H6B;C0B7H9B;;AAGH;EAAuB,mB1B0HU;C0B1H4B;;AAC7D;EAAsB,kB1ByHW;C0BzH0B;;AAQ3D;EACE,0B1BuOkC;E0BtOlC,iBAAgB;EAChB,gB1ByIgC;E0BxIhC,iB1B6I+B;E0B5I/B,iB1BgJ+B;E0B/I/B,e1B7EgB;E0B8EhB,mBAAkB;EAClB,oBAAmB;EACnB,0B1BrFgB;E0BsFhB,0B1BpFgB;EMXd,uBNyMgC;C0BlGnC;;AAlBD;;EAgBI,cAAa;CACd;;AAiCH;;;;;;EpB1HI,2BoBgI4B;EpB/H5B,8BoB+H4B;CAC/B;;AAED;;;;;;EpBrHI,0BoB2H2B;EpB1H3B,6BoB0H2B;CAC9B;;AClJD;EACE,mBAAkB;EAClB,eAAc;EACd,mBAAsC;EACtC,qB3Bya4C;C2Bxa7C;;AAED;EACE,4BAAoB;EAApB,4BAAoB;EAApB,qBAAoB;EACpB,mB3Bqa0C;C2Bpa3C;;AAED;EACE,mBAAkB;EAClB,YAAW;EACX,WAAU;CA4BX;;AA/BD;EAMI,Y3BhBW;EkBLX,0BlB8Ba;C2BNd;;AATH;EAaI,iE3BEa;C2BDd;;AAdH;EAiBI,Y3B3BW;E2B4BX,0B3BiagF;C2B/ZjF;;AApBH;EAwBM,e3B5BY;C2BiCb;;AA7BL;EA2BQ,0B3BnCU;C2BoCX;;AASP;EACE,iBAAgB;CA8BjB;;AA/BD;EAKI,mBAAkB;EAClB,aAA+D;EAC/D,QAAO;EACP,eAAc;EACd,Y3BsXwC;E2BrXxC,a3BqXwC;E2BpXxC,qBAAoB;EACpB,YAAW;EACX,0BAAiB;EAAjB,uBAAiB;EAAjB,sBAAiB;EAAjB,kBAAiB;EACjB,0B3B1Dc;C2B4Df;;AAhBH;EAoBI,mBAAkB;EAClB,aAA+D;EAC/D,QAAO;EACP,eAAc;EACd,Y3BuWwC;E2BtWxC,a3BsWwC;E2BrWxC,YAAW;EACX,6BAA4B;EAC5B,mCAAkC;EAClC,yB3BoW2C;C2BnW5C;;AAQH;ErB5FI,uBNyMgC;C2B1GjC;;AAHH;ET1FI,0BlB8Ba;C2BoEZ;;AARL;EAUM,2Nb9DqI;Ca+DtI;;AAXL;ET1FI,0BlB8Ba;C2B8EZ;;AAlBL;EAoBM,wKbxEqI;CayEtI;;AAQL;EAEI,mB3BoV+C;C2BnVhD;;AAHH;ETvHI,0BlB8Ba;C2BiGZ;;AARL;EAUM,qKb3FqI;Ca4FtI;;AAWL;EACE,sBAAqB;EACrB,YAAW;EACX,4B3BuQ4F;E2BtQ5F,2C3BgUuC;E2B/TvC,iB3BsF+B;E2BrF/B,e3BvIgB;E2BwIhB,uBAAsB;EACtB,uNAAsG;EACtG,0B3BmU0C;E2BlU1C,0B3B9IgB;E2BgJd,uB3B8CgC;E2B1ClC,yBAAgB;EAAhB,sBAAgB;EAAhB,iBAAgB;CAkCjB;;AAlDD;EAmBI,sB3B6OwE;E2B5OxE,WAAU;EACV,uF3BpIa;C2B+Id;;AAhCH;EA6BM,e3B9JY;E2B+JZ,uB3BtKS;C2BuKV;;AA/BL;EAoCI,aAAY;EACZ,uB3B+RqC;E2B9RrC,uBAAsB;CACvB;;AAvCH;EA0CI,e3B5Kc;E2B6Kd,0B3BjLc;C2BkLf;;AA5CH;EAgDI,WAAU;CACX;;AAGH;EACE,8B3BwN+F;E2BvN/F,sB3B6QyC;E2B5QzC,yB3B4QyC;E2B3QzC,e3B8RqC;C2B7RtC;;AAED;EACE,6B3BoN+F;E2BnN/F,sB3BsQyC;E2BrQzC,yB3BqQyC;E2BpQzC,gB3B0RsC;C2BzRvC;;AAOD;EACE,mBAAkB;EAClB,sBAAqB;EACrB,YAAW;EACX,4B3B+L4F;E2B9L5F,iBAAgB;CACjB;;AAED;EACE,mBAAkB;EAClB,WAAU;EACV,YAAW;EACX,4B3BuL4F;E2BtL5F,UAAS;EACT,WAAU;CAgBX;;AAtBD;EASI,sB3BwKwE;E2BvKxE,iD3BxMa;C2B6Md;;AAfH;EAaM,sB3BoKsE;C2BnKvE;;AAdL;EAmBM,kB3B0QQ;C2BzQT;;AAIL;EACE,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,QAAO;EACP,WAAU;EACV,4B3B6J4F;E2B5J5F,0B3BgEkC;E2B/DlC,iB3BpB+B;E2BqB/B,e3BjPgB;E2BkPhB,uB3BzPa;E2B0Pb,0B3BtPgB;EMXd,uBNyMgC;C2B4EnC;;AA/BD;EAgBI,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,UAAS;EACT,WAAU;EACV,eAAc;EACd,4CAAuE;EACvE,0B3BgDgC;E2B/ChC,iB3BpC6B;E2BqC7B,e3BjQc;E2BkQd,kBAAiB;ET9QjB,0BlBOc;E2ByQd,+B3BvQc;EMXd,mCqBmRgF;CACjF;;ACnRH;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,gBAAe;EACf,iBAAgB;EAChB,iBAAgB;CACjB;;AAED;EACE,eAAc;EACd,qB5BwiBsC;C4B9hBvC;;A3BFG;E2BLA,sBAAqB;C3BQpB;;A2BbL;EAUI,e5BNc;C4BOf;;AAOH;EACE,iC5BlBgB;C4BoDjB;;AAnCD;EAII,oB5BuK6B;C4BtK9B;;AALH;EAQI,8BAAgD;EtB7BhD,gCNmMgC;EMlMhC,iCNkMgC;C4B1JjC;;AApBH;EAYM,sC5B7BY;CCYb;;A2BKL;EAgBM,e5B9BY;E4B+BZ,8BAA6B;EAC7B,0BAAyB;CAC1B;;AAnBL;;EAwBI,e5BrCc;E4BsCd,uB5B7CW;E4B8CX,mC5B9CW;C4B+CZ;;AA3BH;EA+BI,iB5B4I6B;EMhM7B,0BsBsD4B;EtBrD5B,2BsBqD4B;CAC7B;;AAQH;EtBrEI,uBNyMgC;C4BjIjC;;AAHH;;EAOI,Y5BrEW;E4BsEX,0B5B7Ca;C4B8Cd;;AAQH;EAEI,oBAAc;EAAd,mBAAc;EAAd,eAAc;EACd,mBAAkB;CACnB;;AAGH;EAEI,2BAAa;EAAb,cAAa;EACb,oBAAY;EAAZ,qBAAY;EAAZ,aAAY;EACZ,mBAAkB;CACnB;;AAQH;EAEI,cAAa;CACd;;AAHH;EAKI,eAAc;CACf;;ACnGH;EACE,mBAAkB;EAClB,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,0BAAmB;EAAnB,uBAAmB;EAAnB,oBAAmB;EACnB,0BAA8B;EAA9B,uBAA8B;EAA9B,+BAA8B;EAC9B,qB7B6FW;C6BlFZ;;AAjBD;;EAYI,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,0BAAmB;EAAnB,uBAAmB;EAAnB,oBAAmB;EACnB,0BAA8B;EAA9B,uBAA8B;EAA9B,+BAA8B;CAC/B;;AAQH;EACE,sBAAqB;EACrB,uB7BoiB+E;E6BniB/E,0B7BmiB+E;E6BliB/E,mB7BuEW;E6BtEX,mB7BwLoD;E6BvLpD,qBAAoB;EACpB,oBAAmB;CAKpB;;A5B9BG;E4B4BA,sBAAqB;C5BzBpB;;A4BkCL;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;EAAtB,2BAAsB;EAAtB,uBAAsB;EACtB,gBAAe;EACf,iBAAgB;EAChB,iBAAgB;CAWjB;;AAhBD;EAQI,iBAAgB;EAChB,gBAAe;CAChB;;AAVH;EAaI,iBAAgB;EAChB,YAAW;CACZ;;AAQH;EACE,sBAAqB;EACrB,oB7BieuC;E6BhevC,uB7BgeuC;C6B/dxC;;AAWD;EACE,8BAAgB;EAAhB,iBAAgB;EAChB,oBAAY;EAAZ,qBAAY;EAAZ,aAAY;EAGZ,0BAAmB;EAAnB,uBAAmB;EAAnB,oBAAmB;CACpB;;AAGD;EACE,yB7BsewC;E6BrexC,mB7ByHoD;E6BxHpD,eAAc;EACd,8BAA6B;EAC7B,8BAAuC;EvB5GrC,uBNyMgC;C6BlFnC;;A5BpGG;E4B6FA,sBAAqB;C5B1FpB;;A4BiFL;EAcI,gBAAe;CAChB;;AAKH;EACE,sBAAqB;EACrB,aAAY;EACZ,cAAa;EACb,uBAAsB;EACtB,YAAW;EACX,oCAAmC;EACnC,2BAA0B;CAC3B;;AnBhEG;EmByEA;;IAIM,iBAAgB;IAChB,gBAAe;GAChB;C9BmzGR;;AW/4GG;EmBsFA;IAUI,+BAAqB;IAArB,8BAAqB;IAArB,0BAAqB;IAArB,sBAAqB;IACrB,wBAA2B;IAA3B,qBAA2B;IAA3B,4BAA2B;GA4C9B;EAvDD;IAcM,+BAAmB;IAAnB,8BAAmB;IAAnB,wBAAmB;IAAnB,oBAAmB;GAepB;EA7BL;IAiBQ,mBAAkB;GACnB;EAlBP;IAqBQ,SAAQ;IACR,WAAU;GACX;EAvBP;IA0BQ,qBAAoB;IACpB,oBAAmB;GACpB;EA5BP;;IAkCM,sBAAiB;IAAjB,kBAAiB;GAClB;EAnCL;IAsCM,gCAAwB;IAAxB,gCAAwB;IAAxB,yBAAwB;IAGxB,8BAAgB;IAAhB,iBAAgB;GACjB;EA1CL;IA6CM,cAAa;GACd;EA9CL;IAkDQ,UAAS;IACT,aAAY;GACb;C9ByyGV;;AWt6GG;EmByEA;;IAIM,iBAAgB;IAChB,gBAAe;GAChB;C9B+1GR;;AW37GG;EmBsFA;IAUI,+BAAqB;IAArB,8BAAqB;IAArB,0BAAqB;IAArB,sBAAqB;IACrB,wBAA2B;IAA3B,qBAA2B;IAA3B,4BAA2B;GA4C9B;EAvDD;IAcM,+BAAmB;IAAnB,8BAAmB;IAAnB,wBAAmB;IAAnB,oBAAmB;GAepB;EA7BL;IAiBQ,mBAAkB;GACnB;EAlBP;IAqBQ,SAAQ;IACR,WAAU;GACX;EAvBP;IA0BQ,qBAAoB;IACpB,oBAAmB;GACpB;EA5BP;;IAkCM,sBAAiB;IAAjB,kBAAiB;GAClB;EAnCL;IAsCM,gCAAwB;IAAxB,gCAAwB;IAAxB,yBAAwB;IAGxB,8BAAgB;IAAhB,iBAAgB;GACjB;EA1CL;IA6CM,cAAa;GACd;EA9CL;IAkDQ,UAAS;IACT,aAAY;GACb;C9Bq1GV;;AWl9GG;EmByEA;;IAIM,iBAAgB;IAChB,gBAAe;GAChB;C9B24GR;;AWv+GG;EmBsFA;IAUI,+BAAqB;IAArB,8BAAqB;IAArB,0BAAqB;IAArB,sBAAqB;IACrB,wBAA2B;IAA3B,qBAA2B;IAA3B,4BAA2B;GA4C9B;EAvDD;IAcM,+BAAmB;IAAnB,8BAAmB;IAAnB,wBAAmB;IAAnB,oBAAmB;GAepB;EA7BL;IAiBQ,mBAAkB;GACnB;EAlBP;IAqBQ,SAAQ;IACR,WAAU;GACX;EAvBP;IA0BQ,qBAAoB;IACpB,oBAAmB;GACpB;EA5BP;;IAkCM,sBAAiB;IAAjB,kBAAiB;GAClB;EAnCL;IAsCM,gCAAwB;IAAxB,gCAAwB;IAAxB,yBAAwB;IAGxB,8BAAgB;IAAhB,iBAAgB;GACjB;EA1CL;IA6CM,cAAa;GACd;EA9CL;IAkDQ,UAAS;IACT,aAAY;GACb;C9Bi4GV;;AW9/GG;EmByEA;;IAIM,iBAAgB;IAChB,gBAAe;GAChB;C9Bu7GR;;AWnhHG;EmBsFA;IAUI,+BAAqB;IAArB,8BAAqB;IAArB,0BAAqB;IAArB,sBAAqB;IACrB,wBAA2B;IAA3B,qBAA2B;IAA3B,4BAA2B;GA4C9B;EAvDD;IAcM,+BAAmB;IAAnB,8BAAmB;IAAnB,wBAAmB;IAAnB,oBAAmB;GAepB;EA7BL;IAiBQ,mBAAkB;GACnB;EAlBP;IAqBQ,SAAQ;IACR,WAAU;GACX;EAvBP;IA0BQ,qBAAoB;IACpB,oBAAmB;GACpB;EA5BP;;IAkCM,sBAAiB;IAAjB,kBAAiB;GAClB;EAnCL;IAsCM,gCAAwB;IAAxB,gCAAwB;IAAxB,yBAAwB;IAGxB,8BAAgB;IAAhB,iBAAgB;GACjB;EA1CL;IA6CM,cAAa;GACd;EA9CL;IAkDQ,UAAS;IACT,aAAY;GACb;C9B66GV;;A8Bt+GD;EAeQ,+BAAqB;EAArB,8BAAqB;EAArB,0BAAqB;EAArB,sBAAqB;EACrB,wBAA2B;EAA3B,qBAA2B;EAA3B,4BAA2B;CA4C9B;;AA5DL;;EASU,iBAAgB;EAChB,gBAAe;CAChB;;AAXT;EAmBU,+BAAmB;EAAnB,8BAAmB;EAAnB,wBAAmB;EAAnB,oBAAmB;CAepB;;AAlCT;EAsBY,mBAAkB;CACnB;;AAvBX;EA0BY,SAAQ;EACR,WAAU;CACX;;AA5BX;EA+BY,qBAAoB;EACpB,oBAAmB;CACpB;;AAjCX;;EAuCU,sBAAiB;EAAjB,kBAAiB;CAClB;;AAxCT;EA2CU,gCAAwB;EAAxB,gCAAwB;EAAxB,yBAAwB;EAGxB,8BAAgB;EAAhB,iBAAgB;CACjB;;AA/CT;EAkDU,cAAa;CACd;;AAnDT;EAuDY,UAAS;EACT,aAAY;CACb;;AAaX;EAEI,0B7B9LW;C6BmMZ;;AAPH;EAKM,0B7BjMS;CCKV;;A4BuLL;EAWM,0B7BvMS;C6BgNV;;AApBL;EAcQ,0B7B1MO;CCKV;;A4BuLL;EAkBQ,0B7B9MO;C6B+MR;;AAnBP;;;;EA0BM,0B7BtNS;C6BuNV;;AA3BL;EA+BI,0B7B3NW;E6B4NX,iC7B5NW;C6B6NZ;;AAjCH;EAoCI,sQ7B4WmS;C6B3WpS;;AArCH;EAwCI,0B7BpOW;C6B4OZ;;AAhDH;EA0CM,0B7BtOS;C6B2OV;;AA/CL;EA6CQ,0B7BzOO;CCKV;;A4B2OL;EAEI,Y7B5PW;C6BiQZ;;AAPH;EAKM,Y7B/PS;CCeV;;A4B2OL;EAWM,gC7BrQS;C6B8QV;;AApBL;EAcQ,iC7BxQO;CCeV;;A4B2OL;EAkBQ,iC7B5QO;C6B6QR;;AAnBP;;;;EA0BM,Y7BpRS;C6BqRV;;AA3BL;EA+BI,gC7BzRW;E6B0RX,uC7B1RW;C6B2RZ;;AAjCH;EAoCI,4Q7BiTkS;C6BhTnS;;AArCH;EAwCI,gC7BlSW;C6B0SZ;;AAhDH;EA0CM,Y7BpSS;C6BySV;;AA/CL;EA6CQ,Y7BvSO;CCeV;;A6BtBL;EACE,mBAAkB;EAClB,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;EAAtB,2BAAsB;EAAtB,uBAAsB;EACtB,aAAY;EACZ,sBAAqB;EACrB,uB9BCa;E8BAb,4BAA2B;EAC3B,uC9BSa;EMjBX,uBNyMgC;C8B9KnC;;AA3BD;EAYI,gBAAe;EACf,eAAc;CACf;;AAdH;ExBMI,gCNmMgC;EMlMhC,iCNkMgC;C8BtL/B;;AAnBL;ExBoBI,oCNqLgC;EMpLhC,mCNoLgC;C8BhL/B;;AAIL;EAGE,oBAAc;EAAd,mBAAc;EAAd,eAAc;EACd,iB9BomByC;C8BnmB1C;;AAED;EACE,uB9B+lBwC;C8B9lBzC;;AAED;EACE,sBAAgC;EAChC,iBAAgB;CACjB;;AAED;EACE,iBAAgB;CACjB;;A7BxCG;E6B4CA,sBAAqB;C7B5CC;;A6B0C1B;EAMI,qB9B8kBuC;C8B7kBxC;;AAOH;EACE,yB9BqkByC;E8BpkBzC,iBAAgB;EAChB,sC9BjDa;E8BkDb,8C9BlDa;C8B6Dd;;AAfD;ExB/DI,2DwBsE8E;CAC/E;;AARH;EAYM,cAAa;CACd;;AAIL;EACE,yB9BojByC;E8BnjBzC,sC9BjEa;E8BkEb,2C9BlEa;C8BuEd;;AARD;ExBhFI,2DNyoBoF;C8BljBrF;;AAQH;EACE,wBAAkC;EAClC,wB9BmiBwC;E8BliBxC,uBAAiC;EACjC,iBAAgB;CACjB;;AAED;EACE,wBAAkC;EAClC,uBAAiC;CAClC;;AAGD;EACE,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,UAAS;EACT,QAAO;EACP,iB9B2hByC;C8B1hB1C;;AAED;EACE,YAAW;ExBtHT,mCNyoBoF;C8BjhBvF;;AAGD;EACE,YAAW;ExBtHT,4CNmoBoF;EMloBpF,6CNkoBoF;C8B3gBvF;;AAED;EACE,YAAW;ExB7GT,gDNqnBoF;EMpnBpF,+CNonBoF;C8BtgBvF;;AAKD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;EAAtB,2BAAsB;EAAtB,uBAAsB;CAqBvB;;AAvBD;EAKI,oB9BkgBwD;C8BjgBzD;;ApBxFC;EoBkFJ;IASI,+BAAmB;IAAnB,8BAAmB;IAAnB,wBAAmB;IAAnB,oBAAmB;IACnB,oB9B6fwD;I8B5fxD,mB9B4fwD;G8Bhf3D;EAvBD;IAcM,qBAAa;IAAb,qBAAa;IAAb,cAAa;IAEb,oBAAY;IAAZ,iBAAY;IAAZ,aAAY;IACZ,6BAAsB;IAAtB,8BAAsB;IAAtB,2BAAsB;IAAtB,uBAAsB;IACtB,mB9BqfsD;I8BpftD,iBAAgB;IAChB,kB9BmfsD;G8BlfvD;C/B6uHJ;;A+BpuHD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;EAAtB,2BAAsB;EAAtB,uBAAsB;CA4EvB;;AA9ED;EAOI,oB9BkewD;C8BjezD;;ApBxHC;EoBgHJ;IAWI,+BAAmB;IAAnB,8BAAmB;IAAnB,wBAAmB;IAAnB,oBAAmB;GAmEtB;EA9ED;IAgBM,oBAAY;IAAZ,iBAAY;IAAZ,aAAY;IACZ,iBAAgB;GA2DjB;EA5EL;IAoBQ,eAAc;IACd,eAAc;GACf;EAtBP;IxBzJI,2BwBoLoC;IxBnLpC,8BwBmLoC;GAU/B;EArCT;;IA+BY,2BAA0B;GAC3B;EAhCX;;IAmCY,8BAA6B;GAC9B;EApCX;IxB3II,0BwBmLmC;IxBlLnC,6BwBkLmC;GAU9B;EAlDT;;IA4CY,0BAAyB;GAC1B;EA7CX;;IAgDY,6BAA4B;GAC7B;EAjDX;IxBtKI,uBNyMgC;G8B4B3B;EA/DT;;IxBhKI,gCNmMgC;IMlMhC,iCNkMgC;G8BuBzB;EA1DX;;IxBlJI,oCNqLgC;IMpLhC,mCNoLgC;G8B2BzB;EA9DX;IxBtKI,iBwBwO8B;GAQzB;EA1ET;;;;IxBtKI,iBwB8OgC;GACzB;C/BguHV;;A+BptHD;EAEI,uB9BuYsC;C8BtYvC;;ApBxMC;EoBqMJ;IAMI,wB9BiZiC;I8BjZjC,qB9BiZiC;I8BjZjC,gB9BiZiC;I8BhZjC,4B9BiZuC;I8BjZvC,yB9BiZuC;I8BjZvC,oB9BiZuC;G8B1Y1C;EAdD;IAUM,sBAAqB;IACrB,YAAW;GACZ;C/ButHJ;;AgCl+HD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,sB/BgzBsC;E+B/yBtC,oB/BkzBsC;E+BjzBtC,iBAAgB;EAChB,0B/BOgB;EMTd,uBNyMgC;C+BrMnC;;AAED;EAGI,sBAAqB;EACrB,sB/BsyBqC;E+BryBrC,qB/BqyBqC;E+BpyBrC,e/BCc;E+BAd,aAAiC;CAClC;;AARH;EAiBI,2BAA0B;CAC3B;;AAlBH;EAqBI,sBAAqB;CACtB;;AAtBH;EAyBI,e/BlBc;C+BmBf;;ACpCH;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;E7BGb,gBAAe;EACf,iBAAgB;EGDd,uBNyMgC;CgCzMnC;;AAED;EACE,mBAAkB;EAClB,eAAc;EACd,wBhC8lBwC;EgC7lBxC,kBhCgM+B;EgC/L/B,kBhCimBsC;EgChmBtC,ehCwBe;EgCvBf,uBhCFa;EgCGb,0BhCAgB;CgCcjB;;A/BLG;E+BNA,ehCkIgD;EgCjIhD,sBAAqB;EACrB,0BhCNc;EgCOd,sBhCNc;CCYb;;A+BpBL;EAoBI,gBAAe;CAChB;;AAGH;EAGM,eAAc;E1BFhB,gCN8KgC;EM7KhC,mCN6KgC;CgC1K/B;;AALL;E1BbI,iCN4LgC;EM3LhC,oCN2LgC;CgCrK/B;;AAVL;EAcI,WAAU;EACV,YhClCW;EgCmCX,0BhCVa;EgCWb,sBhCXa;CgCYd;;AAlBH;EAqBI,ehClCc;EgCmCd,qBAAoB;EAEpB,aAAY;EACZ,uBhC5CW;EgC6CX,sBhC1Cc;CgC2Cf;;ACtDD;EACE,wBjCumBsC;EiCtmBtC,mBjCiOkD;EiChOlD,iBjCiM6B;CiChM9B;;AAIG;E3BoBF,+BN+K+B;EM9K/B,kCN8K+B;CiCjM5B;;AAGD;E3BCF,gCN6L+B;EM5L/B,mCN4L+B;CiC5L5B;;AAfL;EACE,wBjCqmBqC;EiCpmBrC,oBjCkOkD;EiCjOlD,iBjCkM6B;CiCjM9B;;AAIG;E3BoBF,+BNgL+B;EM/K/B,kCN+K+B;CiClM5B;;AAGD;E3BCF,gCN8L+B;EM7L/B,mCN6L+B;CiC7L5B;;ACbP;EACE,sBAAqB;EACrB,sBlCgsBsC;EkC/rBtC,elC4rBqC;EkC3rBrC,iBlCkO+B;EkCjO/B,eAAc;EACd,mBAAkB;EAClB,oBAAmB;EACnB,yBAAwB;E5BTtB,uBNyMgC;CkCzLnC;;AAfD;EAaI,cAAa;CACd;;AAIH;EACE,mBAAkB;EAClB,UAAS;CACV;;AAMD;EACE,qBlCyqBsC;EkCxqBtC,oBlCwqBsC;EMtsBpC,qBNysBqC;CkCzqBxC;;AAOC;EC1CA,YnCUa;EmCTb,0BnCkCe;CkCSd;;AjCtBC;EkCjBE,YnCKS;EmCJT,sBAAqB;EACrB,0BAAkC;ClCkBnC;;AiCiBH;EC1CA,YnCUa;EmCTb,0BnCegB;CkC4Bf;;AjCtBC;EkCjBE,YnCKS;EmCJT,sBAAqB;EACrB,0BAAkC;ClCkBnC;;AiCiBH;EC1CA,YnCUa;EmCTb,0BnCyCe;CkCEd;;AjCtBC;EkCjBE,YnCKS;EmCJT,sBAAqB;EACrB,0BAAkC;ClCkBnC;;AiCiBH;EC1CA,YnCUa;EmCTb,0BnC2Ce;CkCAd;;AjCtBC;EkCjBE,YnCKS;EmCJT,sBAAqB;EACrB,0BAAkC;ClCkBnC;;AiCiBH;EC1CA,enCmBgB;EmClBhB,0BnCwCe;CkCGd;;AjCtBC;EkCjBE,enCcY;EmCbZ,sBAAqB;EACrB,0BAAkC;ClCkBnC;;AiCiBH;EC1CA,YnCUa;EmCTb,0BnCsCe;CkCKd;;AjCtBC;EkCjBE,YnCKS;EmCJT,sBAAqB;EACrB,0BAAkC;ClCkBnC;;AiCiBH;EC1CA,enCmBgB;EmClBhB,0BnCUgB;CkCiCf;;AjCtBC;EkCjBE,enCcY;EmCbZ,sBAAqB;EACrB,0BAAkC;ClCkBnC;;AiCiBH;EC1CA,YnCUa;EmCTb,0BnCiBgB;CkC0Bf;;AjCtBC;EkCjBE,YnCKS;EmCJT,sBAAqB;EACrB,0BAAkC;ClCkBnC;;AmC1BL;EACE,mBAAoD;EACpD,oBpCgoBsC;EoC/nBtC,0BpCUgB;EMTd,sBN0M+B;CoCrMlC;;A1BiDG;E0B1DJ;IAOI,mBpC2nBoC;GoCznBvC;CrC8sIA;;AqC5sID;EACE,iBAAgB;EAChB,gBAAe;E9BTb,iB8BUsB;CACzB;;ACXD;EACE,mBAAkB;EAClB,yBrC8uByC;EqC7uBzC,oBrC8uBsC;EqC7uBtC,8BAA6C;E/BJ3C,uBNyMgC;CqCnMnC;;AAGD;EAEE,eAAc;CACf;;AAGD;EACE,iBrCuN+B;CqCtNhC;;AAOD;EACE,oBAAwD;CAUzD;;AAXD;EAKI,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,yBrCgtBuC;EqC/sBvC,eAAc;CACf;;AASD;EC9CA,exBmFgE;EI9E9D,0BJ8E8D;EwBjFhE,sBxBiFgE;Cu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B+E8D;C4B9E/D;;AAED;;EAEE,e5B0E8D;C4B9D/D;;AzCCC;;;EyCVE,e5BuE4D;E4BtE5D,0BAAyC;CzCY1C;;AyClBH;;EAUI,YAAW;EACX,0B5BiE4D;E4BhE5D,sB5BgE4D;C4B/D7D;;AAlBH;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4B9E/D;;AAED;;EAEE,e5B0E8D;C4B9D/D;;AzCCC;;;EyCVE,e5BuE4D;E4BtE5D,0BAAyC;CzCY1C;;AyClBH;;EAUI,YAAW;EACX,0B5BiE4D;E4BhE5D,sB5BgE4D;C4B/D7D;;AAlBH;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4B9E/D;;AAED;;EAEE,e5B0E8D;C4B9D/D;;AzCCC;;;EyCVE,e5BuE4D;E4BtE5D,0BAAyC;CzCY1C;;AyClBH;;EAUI,YAAW;EACX,0B5BiE4D;E4BhE5D,sB5BgE4D;C4B/D7D;;AAlBH;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4B9E/D;;AAED;;EAEE,e5B0E8D;C4B9D/D;;AzCCC;;;EyCVE,e5BuE4D;E4BtE5D,0BAAyC;CzCY1C;;AyClBH;;EAUI,YAAW;EACX,0B5BiE4D;E4BhE5D,sB5BgE4D;C4B/D7D;;AAlBH;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4B9E/D;;AAED;;EAEE,e5B0E8D;C4B9D/D;;AzCCC;;;EyCVE,e5BuE4D;E4BtE5D,0BAAyC;CzCY1C;;AyClBH;;EAUI,YAAW;EACX,0B5BiE4D;E4BhE5D,sB5BgE4D;C4B/D7D;;AAlBH;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4B9E/D;;AAED;;EAEE,e5B0E8D;C4B9D/D;;AzCCC;;;EyCVE,e5BuE4D;E4BtE5D,0BAAyC;CzCY1C;;AyClBH;;EAUI,YAAW;EACX,0B5BiE4D;E4BhE5D,sB5BgE4D;C4B/D7D;;AAlBH;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4B9E/D;;AAED;;EAEE,e5B0E8D;C4B9D/D;;AzCCC;;;EyCVE,e5BuE4D;E4BtE5D,0BAAyC;CzCY1C;;AyClBH;;EAUI,YAAW;EACX,0B5BiE4D;E4BhE5D,sB5BgE4D;C4B/D7D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","file":"bootstrap.css","sourcesContent":["/*!\n * Bootstrap v4.0.0-beta.3 (https://getbootstrap.com)\n * Copyright 2011-2017 The Bootstrap Authors\n * Copyright 2011-2017 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"code\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"input-group\";\n@import \"custom-forms\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"jumbotron\";\n@import \"alert\";\n@import \"progress\";\n@import \"media\";\n@import \"list-group\";\n@import \"close\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"utilities\";\n@import \"print\";\n",":root {\n // Custom variable values only support SassScript inside `#{}`.\n @each $color, $value in $colors {\n --#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$color}: #{$value};\n }\n\n @each $bp, $value in $grid-breakpoints {\n --breakpoint-#{$bp}: #{$value};\n }\n\n // Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --font-family-sans-serif: #{inspect($font-family-sans-serif)};\n --font-family-monospace: #{inspect($font-family-monospace)};\n}\n","// stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n// 2. Change the default font family in all browsers.\n// 3. Correct the line height in all browsers.\n// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.\n// 5. Setting @viewport causes scrollbars to overlap content in IE11 and Edge, so\n// we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n// 6. Change the default tap highlight to be completely transparent in iOS.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box; // 1\n}\n\nhtml {\n font-family: sans-serif; // 2\n line-height: 1.15; // 3\n -webkit-text-size-adjust: 100%; // 4\n -ms-text-size-adjust: 100%; // 4\n -ms-overflow-style: scrollbar; // 5\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0); // 6\n}\n\n// IE10+ doesn't honor `` in some cases.\n@at-root {\n @-ms-viewport {\n width: device-width;\n }\n}\n\n// stylelint-disable selector-list-comma-newline-after\n// Shim for \"new\" HTML5 structural elements to display correctly (IE10, older browsers)\narticle, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n// stylelint-enable selector-list-comma-newline-after\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Set an explicit initial text-align value so that we can later use the\n// the `inherit` value on things like `` elements.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n font-size: $font-size-base;\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: left; // 3\n background-color: $body-bg; // 2\n}\n\n// Suppress the focus outline on elements that cannot be accessed via keyboard.\n// This prevents an unwanted focus outline from appearing around elements that\n// might still respond to pointer events.\n//\n// Credit: https://github.com/suitcss/base\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n box-sizing: content-box; // 1\n height: 0; // 1\n overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n// stylelint-disable selector-list-comma-newline-after\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: $headings-margin-bottom;\n}\n// stylelint-enable selector-list-comma-newline-after\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Remove the bottom border in Firefox 39-.\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Duplicate behavior to the data-* attribute for our tooltip plugin\n\nabbr[title],\nabbr[data-original-title] { // 4\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 1\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic; // Add the correct font style in Android 4.3-\n}\n\n// stylelint-disable font-weight-notation\nb,\nstrong {\n font-weight: bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n// stylelint-enable font-weight-notation\n\nsmall {\n font-size: 80%; // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n -webkit-text-decoration-skip: objects; // Remove gaps in links underline in iOS 8+ and Safari 8+.\n\n @include hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href)\n// which have not been made explicitly keyboard-focusable (without tabindex).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n\n @include hover-focus {\n color: inherit;\n text-decoration: none;\n }\n\n &:focus {\n outline: 0;\n }\n}\n\n\n//\n// Code\n//\n\n// stylelint-disable font-family-no-duplicate-names\npre,\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace; // Correct the inheritance and scaling of font size in all browsers.\n font-size: 1em; // Correct the odd `em` font sizing in all browsers.\n}\n// stylelint-enable font-family-no-duplicate-names\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so\n // we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg:not(:root) {\n overflow: hidden; // Hide the overflow in IE\n}\n\n\n// Avoid 300ms click delay on touch devices that support the `touch-action` CSS property.\n//\n// In particular, unlike most other browsers, IE11+Edge on Windows 10 on touch devices and IE Mobile 10-11\n// DON'T remove the click delay when `` is present.\n// However, they DO support removing the click delay via `touch-action: manipulation`.\n// See:\n// * https://getbootstrap.com/docs/4.0/content/reboot/#click-delay-optimization-for-touch\n// * https://caniuse.com/#feat=css-touch-action\n// * https://patrickhlauke.github.io/touch/tests/results/#suppressing-300ms-delay\n\na,\narea,\nbutton,\n[role=\"button\"],\ninput:not([type=\"range\"]),\nlabel,\nselect,\nsummary,\ntextarea {\n touch-action: manipulation;\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $text-muted;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n // Matches default `` alignment by inheriting from the ``, or the\n // closest parent with a set `text-align`.\n text-align: inherit;\n}\n\n\n//\n// Forms\n//\n\nlabel {\n // Allow labels to use `margin` for spacing.\n display: inline-block;\n margin-bottom: .5rem;\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24093\nbutton {\n border-radius: 0;\n}\n\n// Work around a Firefox/IE bug where the transparent `button` background\n// results in a loss of the default `button` focus styles.\n//\n// Credit: https://github.com/suitcss/base/\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // Remove the margin in Firefox and Safari\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible; // Show the overflow in Edge\n}\n\nbutton,\nselect {\n text-transform: none; // Remove the inheritance of text transform in Firefox\n}\n\n// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n// controls in Android 4.\n// 2. Correct the inability to style clickable types in iOS and Safari.\nbutton,\nhtml [type=\"button\"], // 1\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; // 2\n}\n\n// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box; // 1. Add the correct box sizing in IE 10-\n padding: 0; // 2. Remove the padding in IE 10-\n}\n\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n // Remove the default appearance of temporal inputs to avoid a Mobile Safari\n // bug where setting a custom line-height prevents text from being vertically\n // centered within the input.\n // See https://bugs.webkit.org/show_bug.cgi?id=139848\n // and https://github.com/twbs/bootstrap/issues/11266\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto; // Remove the default vertical scrollbar in IE.\n // Textareas should really only resize vertically so they don't break their (horizontal) containers.\n resize: vertical;\n}\n\nfieldset {\n // Browsers set a default `min-width: min-content;` on fieldsets,\n // unlike e.g. `

`s, which have `min-width: 0;` by default.\n // So we reset that to ensure fieldsets behave more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359\n // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements\n min-width: 0;\n // Reset the default outline behavior of fieldsets so they don't affect page layout.\n padding: 0;\n margin: 0;\n border: 0;\n}\n\n// 1. Correct the text wrapping in Edge and IE.\n// 2. Correct the color inheritance from `fieldset` elements in IE.\nlegend {\n display: block;\n width: 100%;\n max-width: 100%; // 1\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit; // 2\n white-space: normal; // 1\n}\n\nprogress {\n vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.\n}\n\n// Correct the cursor style of increment and decrement buttons in Chrome.\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n // This overrides the extra rounded corners on search inputs in iOS so that our\n // `.form-control` class can properly style them. Note that this cannot simply\n // be added to `.form-control` as it's not specific enough. For details, see\n // https://github.com/twbs/bootstrap/issues/11586.\n outline-offset: -2px; // 2. Correct the outline style in Safari.\n -webkit-appearance: none;\n}\n\n//\n// Remove the inner padding and cancel buttons in Chrome and Safari on macOS.\n//\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// 1. Correct the inability to style clickable types in iOS and Safari.\n// 2. Change font properties to `inherit` in Safari.\n//\n\n::-webkit-file-upload-button {\n font: inherit; // 2\n -webkit-appearance: button; // 1\n}\n\n//\n// Correct element displays\n//\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item; // Add the correct display in all browsers\n cursor: pointer;\n}\n\ntemplate {\n display: none; // Add the correct display in IE\n}\n\n// Always hide an element with the `hidden` HTML attribute (from PureCSS).\n// Needed for proper display in IE 10-.\n[hidden] {\n display: none !important;\n}\n","/*!\n * Bootstrap v4.0.0-beta.3 (https://getbootstrap.com)\n * Copyright 2011-2017 The Bootstrap Authors\n * Copyright 2011-2017 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n:root {\n --blue: #007bff;\n --indigo: #6610f2;\n --purple: #6f42c1;\n --pink: #e83e8c;\n --red: #dc3545;\n --orange: #fd7e14;\n --yellow: #ffc107;\n --green: #28a745;\n --teal: #20c997;\n --cyan: #17a2b8;\n --white: #fff;\n --gray: #868e96;\n --gray-dark: #343a40;\n --primary: #007bff;\n --secondary: #868e96;\n --success: #28a745;\n --info: #17a2b8;\n --warning: #ffc107;\n --danger: #dc3545;\n --light: #f8f9fa;\n --dark: #343a40;\n --breakpoint-xs: 0;\n --breakpoint-sm: 576px;\n --breakpoint-md: 768px;\n --breakpoint-lg: 992px;\n --breakpoint-xl: 1200px;\n --font-family-sans-serif: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\nhtml {\n font-family: sans-serif;\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -ms-text-size-adjust: 100%;\n -ms-overflow-style: scrollbar;\n -webkit-tap-highlight-color: transparent;\n}\n\n@-ms-viewport {\n width: device-width;\n}\n\narticle, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: left;\n background-color: #fff;\n}\n\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\nhr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n}\n\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title],\nabbr[data-original-title] {\n text-decoration: underline;\n text-decoration: underline dotted;\n cursor: help;\n border-bottom: 0;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 80%;\n}\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -.25em;\n}\n\nsup {\n top: -.5em;\n}\n\na {\n color: #007bff;\n text-decoration: none;\n background-color: transparent;\n -webkit-text-decoration-skip: objects;\n}\n\na:hover {\n color: #0056b3;\n text-decoration: underline;\n}\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):focus {\n outline: 0;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\npre {\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n -ms-overflow-style: scrollbar;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg {\n vertical-align: middle;\n border-style: none;\n}\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\na,\narea,\nbutton,\n[role=\"button\"],\ninput:not([type=\"range\"]),\nlabel,\nselect,\nsummary,\ntextarea {\n touch-action: manipulation;\n}\n\ntable {\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.75rem;\n padding-bottom: 0.75rem;\n color: #868e96;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n text-align: inherit;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: .5rem;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\nbutton,\nhtml [type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box;\n padding: 0;\n}\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto;\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n max-width: 100%;\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit;\n white-space: normal;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n outline-offset: -2px;\n -webkit-appearance: none;\n}\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\ntemplate {\n display: none;\n}\n\n[hidden] {\n display: none !important;\n}\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n margin-bottom: 0.5rem;\n font-family: inherit;\n font-weight: 500;\n line-height: 1.2;\n color: inherit;\n}\n\nh1, .h1 {\n font-size: 2.5rem;\n}\n\nh2, .h2 {\n font-size: 2rem;\n}\n\nh3, .h3 {\n font-size: 1.75rem;\n}\n\nh4, .h4 {\n font-size: 1.5rem;\n}\n\nh5, .h5 {\n font-size: 1.25rem;\n}\n\nh6, .h6 {\n font-size: 1rem;\n}\n\n.lead {\n font-size: 1.25rem;\n font-weight: 300;\n}\n\n.display-1 {\n font-size: 6rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-2 {\n font-size: 5.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-3 {\n font-size: 4.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-4 {\n font-size: 3.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\nhr {\n margin-top: 1rem;\n margin-bottom: 1rem;\n border: 0;\n border-top: 1px solid rgba(0, 0, 0, 0.1);\n}\n\nsmall,\n.small {\n font-size: 80%;\n font-weight: 400;\n}\n\nmark,\n.mark {\n padding: 0.2em;\n background-color: #fcf8e3;\n}\n\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline-item {\n display: inline-block;\n}\n\n.list-inline-item:not(:last-child) {\n margin-right: 0.5rem;\n}\n\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\n\n.blockquote {\n margin-bottom: 1rem;\n font-size: 1.25rem;\n}\n\n.blockquote-footer {\n display: block;\n font-size: 80%;\n color: #868e96;\n}\n\n.blockquote-footer::before {\n content: \"\\2014 \\00A0\";\n}\n\n.img-fluid {\n max-width: 100%;\n height: auto;\n}\n\n.img-thumbnail {\n padding: 0.25rem;\n background-color: #fff;\n border: 1px solid #dee2e6;\n border-radius: 0.25rem;\n max-width: 100%;\n height: auto;\n}\n\n.figure {\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: 0.5rem;\n line-height: 1;\n}\n\n.figure-caption {\n font-size: 90%;\n color: #868e96;\n}\n\ncode,\nkbd,\npre,\nsamp {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n}\n\ncode {\n font-size: 87.5%;\n color: #e83e8c;\n word-break: break-word;\n}\n\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.2rem 0.4rem;\n font-size: 87.5%;\n color: #fff;\n background-color: #212529;\n border-radius: 0.2rem;\n}\n\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: 700;\n}\n\npre {\n display: block;\n font-size: 87.5%;\n color: #212529;\n}\n\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\n\n.container {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container {\n max-width: 540px;\n }\n}\n\n@media (min-width: 768px) {\n .container {\n max-width: 720px;\n }\n}\n\n@media (min-width: 992px) {\n .container {\n max-width: 960px;\n }\n}\n\n@media (min-width: 1200px) {\n .container {\n max-width: 1140px;\n }\n}\n\n.container-fluid {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n.row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -15px;\n margin-left: -15px;\n}\n\n.no-gutters {\n margin-right: 0;\n margin-left: 0;\n}\n\n.no-gutters > .col,\n.no-gutters > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n}\n\n.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,\n.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,\n.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,\n.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,\n.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,\n.col-xl-auto {\n position: relative;\n width: 100%;\n min-height: 1px;\n padding-right: 15px;\n padding-left: 15px;\n}\n\n.col {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n}\n\n.col-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n}\n\n.col-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n}\n\n.col-3 {\n flex: 0 0 25%;\n max-width: 25%;\n}\n\n.col-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n}\n\n.col-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n}\n\n.col-6 {\n flex: 0 0 50%;\n max-width: 50%;\n}\n\n.col-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n}\n\n.col-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n}\n\n.col-9 {\n flex: 0 0 75%;\n max-width: 75%;\n}\n\n.col-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n}\n\n.col-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n}\n\n.col-12 {\n flex: 0 0 100%;\n max-width: 100%;\n}\n\n.order-first {\n order: -1;\n}\n\n.order-1 {\n order: 1;\n}\n\n.order-2 {\n order: 2;\n}\n\n.order-3 {\n order: 3;\n}\n\n.order-4 {\n order: 4;\n}\n\n.order-5 {\n order: 5;\n}\n\n.order-6 {\n order: 6;\n}\n\n.order-7 {\n order: 7;\n}\n\n.order-8 {\n order: 8;\n}\n\n.order-9 {\n order: 9;\n}\n\n.order-10 {\n order: 10;\n}\n\n.order-11 {\n order: 11;\n}\n\n.order-12 {\n order: 12;\n}\n\n.offset-1 {\n margin-left: 8.333333%;\n}\n\n.offset-2 {\n margin-left: 16.666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.333333%;\n}\n\n.offset-5 {\n margin-left: 41.666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.333333%;\n}\n\n.offset-8 {\n margin-left: 66.666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.333333%;\n}\n\n.offset-11 {\n margin-left: 91.666667%;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-sm-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-sm-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-sm-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-sm-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-sm-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-sm-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-sm-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-sm-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-sm-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-sm-first {\n order: -1;\n }\n .order-sm-1 {\n order: 1;\n }\n .order-sm-2 {\n order: 2;\n }\n .order-sm-3 {\n order: 3;\n }\n .order-sm-4 {\n order: 4;\n }\n .order-sm-5 {\n order: 5;\n }\n .order-sm-6 {\n order: 6;\n }\n .order-sm-7 {\n order: 7;\n }\n .order-sm-8 {\n order: 8;\n }\n .order-sm-9 {\n order: 9;\n }\n .order-sm-10 {\n order: 10;\n }\n .order-sm-11 {\n order: 11;\n }\n .order-sm-12 {\n order: 12;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.333333%;\n }\n .offset-sm-2 {\n margin-left: 16.666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.333333%;\n }\n .offset-sm-5 {\n margin-left: 41.666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.333333%;\n }\n .offset-sm-8 {\n margin-left: 66.666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.333333%;\n }\n .offset-sm-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 768px) {\n .col-md {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-md-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-md-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-md-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-md-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-md-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-md-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-md-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-md-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-md-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-md-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-md-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-md-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-md-first {\n order: -1;\n }\n .order-md-1 {\n order: 1;\n }\n .order-md-2 {\n order: 2;\n }\n .order-md-3 {\n order: 3;\n }\n .order-md-4 {\n order: 4;\n }\n .order-md-5 {\n order: 5;\n }\n .order-md-6 {\n order: 6;\n }\n .order-md-7 {\n order: 7;\n }\n .order-md-8 {\n order: 8;\n }\n .order-md-9 {\n order: 9;\n }\n .order-md-10 {\n order: 10;\n }\n .order-md-11 {\n order: 11;\n }\n .order-md-12 {\n order: 12;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.333333%;\n }\n .offset-md-2 {\n margin-left: 16.666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.333333%;\n }\n .offset-md-5 {\n margin-left: 41.666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.333333%;\n }\n .offset-md-8 {\n margin-left: 66.666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.333333%;\n }\n .offset-md-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 992px) {\n .col-lg {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-lg-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-lg-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-lg-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-lg-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-lg-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-lg-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-lg-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-lg-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-lg-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-lg-first {\n order: -1;\n }\n .order-lg-1 {\n order: 1;\n }\n .order-lg-2 {\n order: 2;\n }\n .order-lg-3 {\n order: 3;\n }\n .order-lg-4 {\n order: 4;\n }\n .order-lg-5 {\n order: 5;\n }\n .order-lg-6 {\n order: 6;\n }\n .order-lg-7 {\n order: 7;\n }\n .order-lg-8 {\n order: 8;\n }\n .order-lg-9 {\n order: 9;\n }\n .order-lg-10 {\n order: 10;\n }\n .order-lg-11 {\n order: 11;\n }\n .order-lg-12 {\n order: 12;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.333333%;\n }\n .offset-lg-2 {\n margin-left: 16.666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.333333%;\n }\n .offset-lg-5 {\n margin-left: 41.666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.333333%;\n }\n .offset-lg-8 {\n margin-left: 66.666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.333333%;\n }\n .offset-lg-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 1200px) {\n .col-xl {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-xl-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-xl-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-xl-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-xl-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-xl-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-xl-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-xl-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-xl-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-xl-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-xl-first {\n order: -1;\n }\n .order-xl-1 {\n order: 1;\n }\n .order-xl-2 {\n order: 2;\n }\n .order-xl-3 {\n order: 3;\n }\n .order-xl-4 {\n order: 4;\n }\n .order-xl-5 {\n order: 5;\n }\n .order-xl-6 {\n order: 6;\n }\n .order-xl-7 {\n order: 7;\n }\n .order-xl-8 {\n order: 8;\n }\n .order-xl-9 {\n order: 9;\n }\n .order-xl-10 {\n order: 10;\n }\n .order-xl-11 {\n order: 11;\n }\n .order-xl-12 {\n order: 12;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.333333%;\n }\n .offset-xl-2 {\n margin-left: 16.666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.333333%;\n }\n .offset-xl-5 {\n margin-left: 41.666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.333333%;\n }\n .offset-xl-8 {\n margin-left: 66.666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.333333%;\n }\n .offset-xl-11 {\n margin-left: 91.666667%;\n }\n}\n\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 1rem;\n background-color: transparent;\n}\n\n.table th,\n.table td {\n padding: 0.75rem;\n vertical-align: top;\n border-top: 1px solid #dee2e6;\n}\n\n.table thead th {\n vertical-align: bottom;\n border-bottom: 2px solid #dee2e6;\n}\n\n.table tbody + tbody {\n border-top: 2px solid #dee2e6;\n}\n\n.table .table {\n background-color: #fff;\n}\n\n.table-sm th,\n.table-sm td {\n padding: 0.3rem;\n}\n\n.table-bordered {\n border: 1px solid #dee2e6;\n}\n\n.table-bordered th,\n.table-bordered td {\n border: 1px solid #dee2e6;\n}\n\n.table-bordered thead th,\n.table-bordered thead td {\n border-bottom-width: 2px;\n}\n\n.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(0, 0, 0, 0.05);\n}\n\n.table-hover tbody tr:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-primary,\n.table-primary > th,\n.table-primary > td {\n background-color: #b8daff;\n}\n\n.table-hover .table-primary:hover {\n background-color: #9fcdff;\n}\n\n.table-hover .table-primary:hover > td,\n.table-hover .table-primary:hover > th {\n background-color: #9fcdff;\n}\n\n.table-secondary,\n.table-secondary > th,\n.table-secondary > td {\n background-color: #dddfe2;\n}\n\n.table-hover .table-secondary:hover {\n background-color: #cfd2d6;\n}\n\n.table-hover .table-secondary:hover > td,\n.table-hover .table-secondary:hover > th {\n background-color: #cfd2d6;\n}\n\n.table-success,\n.table-success > th,\n.table-success > td {\n background-color: #c3e6cb;\n}\n\n.table-hover .table-success:hover {\n background-color: #b1dfbb;\n}\n\n.table-hover .table-success:hover > td,\n.table-hover .table-success:hover > th {\n background-color: #b1dfbb;\n}\n\n.table-info,\n.table-info > th,\n.table-info > td {\n background-color: #bee5eb;\n}\n\n.table-hover .table-info:hover {\n background-color: #abdde5;\n}\n\n.table-hover .table-info:hover > td,\n.table-hover .table-info:hover > th {\n background-color: #abdde5;\n}\n\n.table-warning,\n.table-warning > th,\n.table-warning > td {\n background-color: #ffeeba;\n}\n\n.table-hover .table-warning:hover {\n background-color: #ffe8a1;\n}\n\n.table-hover .table-warning:hover > td,\n.table-hover .table-warning:hover > th {\n background-color: #ffe8a1;\n}\n\n.table-danger,\n.table-danger > th,\n.table-danger > td {\n background-color: #f5c6cb;\n}\n\n.table-hover .table-danger:hover {\n background-color: #f1b0b7;\n}\n\n.table-hover .table-danger:hover > td,\n.table-hover .table-danger:hover > th {\n background-color: #f1b0b7;\n}\n\n.table-light,\n.table-light > th,\n.table-light > td {\n background-color: #fdfdfe;\n}\n\n.table-hover .table-light:hover {\n background-color: #ececf6;\n}\n\n.table-hover .table-light:hover > td,\n.table-hover .table-light:hover > th {\n background-color: #ececf6;\n}\n\n.table-dark,\n.table-dark > th,\n.table-dark > td {\n background-color: #c6c8ca;\n}\n\n.table-hover .table-dark:hover {\n background-color: #b9bbbe;\n}\n\n.table-hover .table-dark:hover > td,\n.table-hover .table-dark:hover > th {\n background-color: #b9bbbe;\n}\n\n.table-active,\n.table-active > th,\n.table-active > td {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-hover .table-active:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-hover .table-active:hover > td,\n.table-hover .table-active:hover > th {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table .thead-dark th {\n color: #fff;\n background-color: #212529;\n border-color: #32383e;\n}\n\n.table .thead-light th {\n color: #495057;\n background-color: #e9ecef;\n border-color: #dee2e6;\n}\n\n.table-dark {\n color: #fff;\n background-color: #212529;\n}\n\n.table-dark th,\n.table-dark td,\n.table-dark thead th {\n border-color: #32383e;\n}\n\n.table-dark.table-bordered {\n border: 0;\n}\n\n.table-dark.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(255, 255, 255, 0.05);\n}\n\n.table-dark.table-hover tbody tr:hover {\n background-color: rgba(255, 255, 255, 0.075);\n}\n\n@media (max-width: 575.99px) {\n .table-responsive-sm {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-sm > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 767.99px) {\n .table-responsive-md {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-md > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 991.99px) {\n .table-responsive-lg {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-lg > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 1199.99px) {\n .table-responsive-xl {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-xl > .table-bordered {\n border: 0;\n }\n}\n\n.table-responsive {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n}\n\n.table-responsive > .table-bordered {\n border: 0;\n}\n\n.form-control {\n display: block;\n width: 100%;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n line-height: 1.5;\n color: #495057;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n.form-control::-ms-expand {\n background-color: transparent;\n border: 0;\n}\n\n.form-control:focus {\n color: #495057;\n background-color: #fff;\n border-color: #80bdff;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.form-control::placeholder {\n color: #868e96;\n opacity: 1;\n}\n\n.form-control:disabled, .form-control[readonly] {\n background-color: #e9ecef;\n opacity: 1;\n}\n\nselect.form-control:not([size]):not([multiple]) {\n height: calc(2.25rem + 2px);\n}\n\nselect.form-control:focus::-ms-value {\n color: #495057;\n background-color: #fff;\n}\n\n.form-control-file,\n.form-control-range {\n display: block;\n width: 100%;\n}\n\n.col-form-label {\n padding-top: calc(0.375rem + 1px);\n padding-bottom: calc(0.375rem + 1px);\n margin-bottom: 0;\n font-size: inherit;\n line-height: 1.5;\n}\n\n.col-form-label-lg {\n padding-top: calc(0.5rem + 1px);\n padding-bottom: calc(0.5rem + 1px);\n font-size: 1.25rem;\n line-height: 1.5;\n}\n\n.col-form-label-sm {\n padding-top: calc(0.25rem + 1px);\n padding-bottom: calc(0.25rem + 1px);\n font-size: 0.875rem;\n line-height: 1.5;\n}\n\n.form-control-plaintext {\n display: block;\n width: 100%;\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n margin-bottom: 0;\n line-height: 1.5;\n background-color: transparent;\n border: solid transparent;\n border-width: 1px 0;\n}\n\n.form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control,\n.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text,\n.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text,\n.input-group-sm > .input-group-prepend > .form-control-plaintext.btn,\n.input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control,\n.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text,\n.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text,\n.input-group-lg > .input-group-prepend > .form-control-plaintext.btn,\n.input-group-lg > .input-group-append > .form-control-plaintext.btn {\n padding-right: 0;\n padding-left: 0;\n}\n\n.form-control-sm, .input-group-sm > .form-control,\n.input-group-sm > .input-group-prepend > .input-group-text,\n.input-group-sm > .input-group-append > .input-group-text,\n.input-group-sm > .input-group-prepend > .btn,\n.input-group-sm > .input-group-append > .btn {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem;\n}\n\nselect.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]),\n.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),\n.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),\n.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]),\n.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) {\n height: calc(1.8125rem + 2px);\n}\n\n.form-control-lg, .input-group-lg > .form-control,\n.input-group-lg > .input-group-prepend > .input-group-text,\n.input-group-lg > .input-group-append > .input-group-text,\n.input-group-lg > .input-group-prepend > .btn,\n.input-group-lg > .input-group-append > .btn {\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem;\n}\n\nselect.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]),\n.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),\n.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]),\n.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]),\n.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) {\n height: calc(2.875rem + 2px);\n}\n\n.form-group {\n margin-bottom: 1rem;\n}\n\n.form-text {\n display: block;\n margin-top: 0.25rem;\n}\n\n.form-row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -5px;\n margin-left: -5px;\n}\n\n.form-row > .col,\n.form-row > [class*=\"col-\"] {\n padding-right: 5px;\n padding-left: 5px;\n}\n\n.form-check {\n position: relative;\n display: block;\n padding-left: 1.25rem;\n}\n\n.form-check-input {\n position: absolute;\n margin-top: 0.3rem;\n margin-left: -1.25rem;\n}\n\n.form-check-input:disabled ~ .form-check-label {\n color: #868e96;\n}\n\n.form-check-label {\n margin-bottom: 0;\n}\n\n.form-check-inline {\n display: inline-flex;\n align-items: center;\n padding-left: 0;\n margin-right: 0.75rem;\n}\n\n.form-check-inline .form-check-input {\n position: static;\n margin-top: 0;\n margin-right: 0.3125rem;\n margin-left: 0;\n}\n\n.valid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #28a745;\n}\n\n.valid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n width: 250px;\n padding: .5rem;\n margin-top: .1rem;\n font-size: .875rem;\n line-height: 1;\n color: #fff;\n background-color: rgba(40, 167, 69, 0.8);\n border-radius: .2rem;\n}\n\n.was-validated .form-control:valid, .form-control.is-valid, .was-validated\n.custom-select:valid,\n.custom-select.is-valid {\n border-color: #28a745;\n}\n\n.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated\n.custom-select:valid:focus,\n.custom-select.is-valid:focus {\n border-color: #28a745;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.was-validated .form-control:valid ~ .valid-feedback,\n.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,\n.form-control.is-valid ~ .valid-tooltip, .was-validated\n.custom-select:valid ~ .valid-feedback,\n.was-validated\n.custom-select:valid ~ .valid-tooltip,\n.custom-select.is-valid ~ .valid-feedback,\n.custom-select.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {\n color: #28a745;\n}\n\n.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {\n color: #28a745;\n}\n\n.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {\n background-color: #71dd8a;\n}\n\n.was-validated .custom-control-input:valid ~ .valid-feedback,\n.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,\n.custom-control-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {\n background-color: #34ce57;\n}\n\n.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {\n border-color: #28a745;\n}\n\n.was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before {\n border-color: inherit;\n}\n\n.was-validated .custom-file-input:valid ~ .valid-feedback,\n.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,\n.custom-file-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.invalid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #dc3545;\n}\n\n.invalid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n width: 250px;\n padding: .5rem;\n margin-top: .1rem;\n font-size: .875rem;\n line-height: 1;\n color: #fff;\n background-color: rgba(220, 53, 69, 0.8);\n border-radius: .2rem;\n}\n\n.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated\n.custom-select:invalid,\n.custom-select.is-invalid {\n border-color: #dc3545;\n}\n\n.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated\n.custom-select:invalid:focus,\n.custom-select.is-invalid:focus {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .form-control:invalid ~ .invalid-feedback,\n.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,\n.form-control.is-invalid ~ .invalid-tooltip, .was-validated\n.custom-select:invalid ~ .invalid-feedback,\n.was-validated\n.custom-select:invalid ~ .invalid-tooltip,\n.custom-select.is-invalid ~ .invalid-feedback,\n.custom-select.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {\n color: #dc3545;\n}\n\n.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {\n color: #dc3545;\n}\n\n.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {\n background-color: #efa2a9;\n}\n\n.was-validated .custom-control-input:invalid ~ .invalid-feedback,\n.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,\n.custom-control-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {\n background-color: #e4606d;\n}\n\n.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {\n border-color: #dc3545;\n}\n\n.was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before {\n border-color: inherit;\n}\n\n.was-validated .custom-file-input:invalid ~ .invalid-feedback,\n.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,\n.custom-file-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.form-inline {\n display: flex;\n flex-flow: row wrap;\n align-items: center;\n}\n\n.form-inline .form-check {\n width: 100%;\n}\n\n@media (min-width: 576px) {\n .form-inline label {\n display: flex;\n align-items: center;\n justify-content: center;\n margin-bottom: 0;\n }\n .form-inline .form-group {\n display: flex;\n flex: 0 0 auto;\n flex-flow: row wrap;\n align-items: center;\n margin-bottom: 0;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-plaintext {\n display: inline-block;\n }\n .form-inline .input-group {\n width: auto;\n }\n .form-inline .form-check {\n display: flex;\n align-items: center;\n justify-content: center;\n width: auto;\n padding-left: 0;\n }\n .form-inline .form-check-input {\n position: relative;\n margin-top: 0;\n margin-right: 0.25rem;\n margin-left: 0;\n }\n .form-inline .custom-control {\n align-items: center;\n justify-content: center;\n }\n .form-inline .custom-control-label {\n margin-bottom: 0;\n }\n}\n\n.btn {\n display: inline-block;\n font-weight: 400;\n text-align: center;\n white-space: nowrap;\n vertical-align: middle;\n user-select: none;\n border: 1px solid transparent;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n line-height: 1.5;\n border-radius: 0.25rem;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n.btn:focus, .btn:hover {\n text-decoration: none;\n}\n\n.btn:focus, .btn.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.btn.disabled, .btn:disabled {\n opacity: 0.65;\n}\n\n.btn:not([disabled]):not(.disabled) {\n cursor: pointer;\n}\n\n.btn:not([disabled]):not(.disabled):active, .btn:not([disabled]):not(.disabled).active {\n background-image: none;\n}\n\na.btn.disabled,\nfieldset[disabled] a.btn {\n pointer-events: none;\n}\n\n.btn-primary {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-primary:hover {\n color: #fff;\n background-color: #0069d9;\n border-color: #0062cc;\n}\n\n.btn-primary:focus, .btn-primary.focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-primary.disabled, .btn-primary:disabled {\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-primary:not([disabled]):not(.disabled):active, .btn-primary:not([disabled]):not(.disabled).active,\n.show > .btn-primary.dropdown-toggle {\n color: #fff;\n background-color: #0062cc;\n border-color: #005cbf;\n}\n\n.btn-primary:not([disabled]):not(.disabled):active:focus, .btn-primary:not([disabled]):not(.disabled).active:focus,\n.show > .btn-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-secondary {\n color: #fff;\n background-color: #868e96;\n border-color: #868e96;\n}\n\n.btn-secondary:hover {\n color: #fff;\n background-color: #727b84;\n border-color: #6c757d;\n}\n\n.btn-secondary:focus, .btn-secondary.focus {\n box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);\n}\n\n.btn-secondary.disabled, .btn-secondary:disabled {\n background-color: #868e96;\n border-color: #868e96;\n}\n\n.btn-secondary:not([disabled]):not(.disabled):active, .btn-secondary:not([disabled]):not(.disabled).active,\n.show > .btn-secondary.dropdown-toggle {\n color: #fff;\n background-color: #6c757d;\n border-color: #666e76;\n}\n\n.btn-secondary:not([disabled]):not(.disabled):active:focus, .btn-secondary:not([disabled]):not(.disabled).active:focus,\n.show > .btn-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);\n}\n\n.btn-success {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-success:hover {\n color: #fff;\n background-color: #218838;\n border-color: #1e7e34;\n}\n\n.btn-success:focus, .btn-success.focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-success.disabled, .btn-success:disabled {\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-success:not([disabled]):not(.disabled):active, .btn-success:not([disabled]):not(.disabled).active,\n.show > .btn-success.dropdown-toggle {\n color: #fff;\n background-color: #1e7e34;\n border-color: #1c7430;\n}\n\n.btn-success:not([disabled]):not(.disabled):active:focus, .btn-success:not([disabled]):not(.disabled).active:focus,\n.show > .btn-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-info {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-info:hover {\n color: #fff;\n background-color: #138496;\n border-color: #117a8b;\n}\n\n.btn-info:focus, .btn-info.focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-info.disabled, .btn-info:disabled {\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-info:not([disabled]):not(.disabled):active, .btn-info:not([disabled]):not(.disabled).active,\n.show > .btn-info.dropdown-toggle {\n color: #fff;\n background-color: #117a8b;\n border-color: #10707f;\n}\n\n.btn-info:not([disabled]):not(.disabled):active:focus, .btn-info:not([disabled]):not(.disabled).active:focus,\n.show > .btn-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-warning {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-warning:hover {\n color: #212529;\n background-color: #e0a800;\n border-color: #d39e00;\n}\n\n.btn-warning:focus, .btn-warning.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-warning.disabled, .btn-warning:disabled {\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-warning:not([disabled]):not(.disabled):active, .btn-warning:not([disabled]):not(.disabled).active,\n.show > .btn-warning.dropdown-toggle {\n color: #212529;\n background-color: #d39e00;\n border-color: #c69500;\n}\n\n.btn-warning:not([disabled]):not(.disabled):active:focus, .btn-warning:not([disabled]):not(.disabled).active:focus,\n.show > .btn-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-danger {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-danger:hover {\n color: #fff;\n background-color: #c82333;\n border-color: #bd2130;\n}\n\n.btn-danger:focus, .btn-danger.focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-danger.disabled, .btn-danger:disabled {\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-danger:not([disabled]):not(.disabled):active, .btn-danger:not([disabled]):not(.disabled).active,\n.show > .btn-danger.dropdown-toggle {\n color: #fff;\n background-color: #bd2130;\n border-color: #b21f2d;\n}\n\n.btn-danger:not([disabled]):not(.disabled):active:focus, .btn-danger:not([disabled]):not(.disabled).active:focus,\n.show > .btn-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-light {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-light:hover {\n color: #212529;\n background-color: #e2e6ea;\n border-color: #dae0e5;\n}\n\n.btn-light:focus, .btn-light.focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-light.disabled, .btn-light:disabled {\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-light:not([disabled]):not(.disabled):active, .btn-light:not([disabled]):not(.disabled).active,\n.show > .btn-light.dropdown-toggle {\n color: #212529;\n background-color: #dae0e5;\n border-color: #d3d9df;\n}\n\n.btn-light:not([disabled]):not(.disabled):active:focus, .btn-light:not([disabled]):not(.disabled).active:focus,\n.show > .btn-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-dark {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-dark:hover {\n color: #fff;\n background-color: #23272b;\n border-color: #1d2124;\n}\n\n.btn-dark:focus, .btn-dark.focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-dark.disabled, .btn-dark:disabled {\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-dark:not([disabled]):not(.disabled):active, .btn-dark:not([disabled]):not(.disabled).active,\n.show > .btn-dark.dropdown-toggle {\n color: #fff;\n background-color: #1d2124;\n border-color: #171a1d;\n}\n\n.btn-dark:not([disabled]):not(.disabled):active:focus, .btn-dark:not([disabled]):not(.disabled).active:focus,\n.show > .btn-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-outline-primary {\n color: #007bff;\n background-color: transparent;\n background-image: none;\n border-color: #007bff;\n}\n\n.btn-outline-primary:hover {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-outline-primary:focus, .btn-outline-primary.focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-outline-primary.disabled, .btn-outline-primary:disabled {\n color: #007bff;\n background-color: transparent;\n}\n\n.btn-outline-primary:not([disabled]):not(.disabled):active, .btn-outline-primary:not([disabled]):not(.disabled).active,\n.show > .btn-outline-primary.dropdown-toggle {\n color: #212529;\n background-color: #007bff;\n border-color: #007bff;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-outline-secondary {\n color: #868e96;\n background-color: transparent;\n background-image: none;\n border-color: #868e96;\n}\n\n.btn-outline-secondary:hover {\n color: #fff;\n background-color: #868e96;\n border-color: #868e96;\n}\n\n.btn-outline-secondary:focus, .btn-outline-secondary.focus {\n box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);\n}\n\n.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {\n color: #868e96;\n background-color: transparent;\n}\n\n.btn-outline-secondary:not([disabled]):not(.disabled):active, .btn-outline-secondary:not([disabled]):not(.disabled).active,\n.show > .btn-outline-secondary.dropdown-toggle {\n color: #212529;\n background-color: #868e96;\n border-color: #868e96;\n box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);\n}\n\n.btn-outline-success {\n color: #28a745;\n background-color: transparent;\n background-image: none;\n border-color: #28a745;\n}\n\n.btn-outline-success:hover {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-outline-success:focus, .btn-outline-success.focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-outline-success.disabled, .btn-outline-success:disabled {\n color: #28a745;\n background-color: transparent;\n}\n\n.btn-outline-success:not([disabled]):not(.disabled):active, .btn-outline-success:not([disabled]):not(.disabled).active,\n.show > .btn-outline-success.dropdown-toggle {\n color: #212529;\n background-color: #28a745;\n border-color: #28a745;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-outline-info {\n color: #17a2b8;\n background-color: transparent;\n background-image: none;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:hover {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:focus, .btn-outline-info.focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-outline-info.disabled, .btn-outline-info:disabled {\n color: #17a2b8;\n background-color: transparent;\n}\n\n.btn-outline-info:not([disabled]):not(.disabled):active, .btn-outline-info:not([disabled]):not(.disabled).active,\n.show > .btn-outline-info.dropdown-toggle {\n color: #212529;\n background-color: #17a2b8;\n border-color: #17a2b8;\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-outline-warning {\n color: #ffc107;\n background-color: transparent;\n background-image: none;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:hover {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:focus, .btn-outline-warning.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-outline-warning.disabled, .btn-outline-warning:disabled {\n color: #ffc107;\n background-color: transparent;\n}\n\n.btn-outline-warning:not([disabled]):not(.disabled):active, .btn-outline-warning:not([disabled]):not(.disabled).active,\n.show > .btn-outline-warning.dropdown-toggle {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-outline-danger {\n color: #dc3545;\n background-color: transparent;\n background-image: none;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:hover {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:focus, .btn-outline-danger.focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-outline-danger.disabled, .btn-outline-danger:disabled {\n color: #dc3545;\n background-color: transparent;\n}\n\n.btn-outline-danger:not([disabled]):not(.disabled):active, .btn-outline-danger:not([disabled]):not(.disabled).active,\n.show > .btn-outline-danger.dropdown-toggle {\n color: #212529;\n background-color: #dc3545;\n border-color: #dc3545;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-outline-light {\n color: #f8f9fa;\n background-color: transparent;\n background-image: none;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:hover {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:focus, .btn-outline-light.focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-outline-light.disabled, .btn-outline-light:disabled {\n color: #f8f9fa;\n background-color: transparent;\n}\n\n.btn-outline-light:not([disabled]):not(.disabled):active, .btn-outline-light:not([disabled]):not(.disabled).active,\n.show > .btn-outline-light.dropdown-toggle {\n color: #fff;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-outline-dark {\n color: #343a40;\n background-color: transparent;\n background-image: none;\n border-color: #343a40;\n}\n\n.btn-outline-dark:hover {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-outline-dark:focus, .btn-outline-dark.focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-outline-dark.disabled, .btn-outline-dark:disabled {\n color: #343a40;\n background-color: transparent;\n}\n\n.btn-outline-dark:not([disabled]):not(.disabled):active, .btn-outline-dark:not([disabled]):not(.disabled).active,\n.show > .btn-outline-dark.dropdown-toggle {\n color: #212529;\n background-color: #343a40;\n border-color: #343a40;\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-link {\n font-weight: 400;\n color: #007bff;\n background-color: transparent;\n}\n\n.btn-link:hover {\n color: #0056b3;\n text-decoration: underline;\n background-color: transparent;\n border-color: transparent;\n}\n\n.btn-link:focus, .btn-link.focus {\n text-decoration: underline;\n border-color: transparent;\n box-shadow: none;\n}\n\n.btn-link:disabled, .btn-link.disabled {\n color: #868e96;\n}\n\n.btn-lg, .btn-group-lg > .btn {\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem;\n}\n\n.btn-sm, .btn-group-sm > .btn {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem;\n}\n\n.btn-block {\n display: block;\n width: 100%;\n}\n\n.btn-block + .btn-block {\n margin-top: 0.5rem;\n}\n\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n\n.fade {\n opacity: 0;\n transition: opacity 0.15s linear;\n}\n\n.fade.show {\n opacity: 1;\n}\n\n.collapse {\n display: none;\n}\n\n.collapse.show {\n display: block;\n}\n\ntr.collapse.show {\n display: table-row;\n}\n\ntbody.collapse.show {\n display: table-row-group;\n}\n\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n transition: height 0.35s ease;\n}\n\n.dropup,\n.dropdown {\n position: relative;\n}\n\n.dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid;\n border-right: 0.3em solid transparent;\n border-bottom: 0;\n border-left: 0.3em solid transparent;\n}\n\n.dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 10rem;\n padding: 0.5rem 0;\n margin: 0.125rem 0 0;\n font-size: 1rem;\n color: #212529;\n text-align: left;\n list-style: none;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 0.25rem;\n}\n\n.dropup .dropdown-menu {\n margin-top: 0;\n margin-bottom: 0.125rem;\n}\n\n.dropup .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0;\n border-right: 0.3em solid transparent;\n border-bottom: 0.3em solid;\n border-left: 0.3em solid transparent;\n}\n\n.dropup .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropright .dropdown-menu {\n margin-top: 0;\n margin-left: 0.125rem;\n}\n\n.dropright .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-bottom: 0.3em solid transparent;\n border-left: 0.3em solid;\n}\n\n.dropright .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropright .dropdown-toggle::after {\n vertical-align: 0;\n}\n\n.dropleft .dropdown-menu {\n margin-top: 0;\n margin-right: 0.125rem;\n}\n\n.dropleft .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n}\n\n.dropleft .dropdown-toggle::after {\n display: none;\n}\n\n.dropleft .dropdown-toggle::before {\n display: inline-block;\n width: 0;\n height: 0;\n margin-right: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0.3em solid;\n border-bottom: 0.3em solid transparent;\n}\n\n.dropleft .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropleft .dropdown-toggle::before {\n vertical-align: 0;\n}\n\n.dropdown-divider {\n height: 0;\n margin: 0.5rem 0;\n overflow: hidden;\n border-top: 1px solid #e9ecef;\n}\n\n.dropdown-item {\n display: block;\n width: 100%;\n padding: 0.25rem 1.5rem;\n clear: both;\n font-weight: 400;\n color: #212529;\n text-align: inherit;\n white-space: nowrap;\n background-color: transparent;\n border: 0;\n}\n\n.dropdown-item:focus, .dropdown-item:hover {\n color: #16181b;\n text-decoration: none;\n background-color: #f8f9fa;\n}\n\n.dropdown-item.active, .dropdown-item:active {\n color: #fff;\n text-decoration: none;\n background-color: #007bff;\n}\n\n.dropdown-item.disabled, .dropdown-item:disabled {\n color: #868e96;\n background-color: transparent;\n}\n\n.dropdown-menu.show {\n display: block;\n}\n\n.dropdown-header {\n display: block;\n padding: 0.5rem 1.5rem;\n margin-bottom: 0;\n font-size: 0.875rem;\n color: #868e96;\n white-space: nowrap;\n}\n\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-flex;\n vertical-align: middle;\n}\n\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n flex: 0 1 auto;\n}\n\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover {\n z-index: 1;\n}\n\n.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,\n.btn-group-vertical > .btn:focus,\n.btn-group-vertical > .btn:active,\n.btn-group-vertical > .btn.active {\n z-index: 1;\n}\n\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group,\n.btn-group-vertical .btn + .btn,\n.btn-group-vertical .btn + .btn-group,\n.btn-group-vertical .btn-group + .btn,\n.btn-group-vertical .btn-group + .btn-group {\n margin-left: -1px;\n}\n\n.btn-toolbar {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n}\n\n.btn-toolbar .input-group {\n width: auto;\n}\n\n.btn-group > .btn:first-child {\n margin-left: 0;\n}\n\n.btn-group > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group > .btn-group:not(:last-child) > .btn {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.btn-group > .btn:not(:first-child),\n.btn-group > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.dropdown-toggle-split {\n padding-right: 0.5625rem;\n padding-left: 0.5625rem;\n}\n\n.dropdown-toggle-split::after {\n margin-left: 0;\n}\n\n.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {\n padding-right: 0.375rem;\n padding-left: 0.375rem;\n}\n\n.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {\n padding-right: 0.75rem;\n padding-left: 0.75rem;\n}\n\n.btn-group-vertical {\n flex-direction: column;\n align-items: flex-start;\n justify-content: center;\n}\n\n.btn-group-vertical .btn,\n.btn-group-vertical .btn-group {\n width: 100%;\n}\n\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n}\n\n.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group-vertical > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.btn-group-vertical > .btn:not(:first-child),\n.btn-group-vertical > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.btn-group-toggle > .btn,\n.btn-group-toggle > .btn-group > .btn {\n margin-bottom: 0;\n}\n\n.btn-group-toggle > .btn input[type=\"radio\"],\n.btn-group-toggle > .btn input[type=\"checkbox\"],\n.btn-group-toggle > .btn-group > .btn input[type=\"radio\"],\n.btn-group-toggle > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n\n.input-group {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: stretch;\n width: 100%;\n}\n\n.input-group .form-control,\n.input-group .custom-select,\n.input-group .custom-file {\n position: relative;\n flex: 1 1 auto;\n width: 1%;\n margin-bottom: 0;\n}\n\n.input-group .form-control:focus,\n.input-group .custom-select:focus,\n.input-group .custom-file:focus {\n z-index: 3;\n}\n\n.input-group .form-control + .form-control,\n.input-group .custom-select + .form-control,\n.input-group .custom-file + .form-control {\n margin-left: -1px;\n}\n\n.input-group .form-control:not(:last-child),\n.input-group .custom-select:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group .form-control:not(:first-child),\n.input-group .custom-select:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.input-group .custom-file {\n display: flex;\n align-items: center;\n}\n\n.input-group .custom-file:not(:last-child) .custom-file-control,\n.input-group .custom-file:not(:last-child) .custom-file-control::before {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group .custom-file:not(:first-child) .custom-file-control,\n.input-group .custom-file:not(:first-child) .custom-file-control::before {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.input-group-prepend,\n.input-group-append {\n display: flex;\n align-items: center;\n}\n\n.input-group-prepend .btn,\n.input-group-append .btn {\n position: relative;\n z-index: 2;\n}\n\n.input-group-prepend .btn + .btn,\n.input-group-prepend .btn + .input-group-text,\n.input-group-prepend .input-group-text + .input-group-text,\n.input-group-prepend .input-group-text + .btn,\n.input-group-append .btn + .btn,\n.input-group-append .btn + .input-group-text,\n.input-group-append .input-group-text + .input-group-text,\n.input-group-append .input-group-text + .btn {\n margin-left: -1px;\n}\n\n.input-group-prepend {\n margin-right: -1px;\n}\n\n.input-group-append {\n margin-left: -1px;\n}\n\n.input-group-text {\n padding: 0.375rem 0.75rem;\n margin-bottom: 0;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #495057;\n text-align: center;\n white-space: nowrap;\n background-color: #e9ecef;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n}\n\n.input-group-text input[type=\"radio\"],\n.input-group-text input[type=\"checkbox\"] {\n margin-top: 0;\n}\n\n.input-group > .input-group-prepend > .btn,\n.input-group > .input-group-prepend > .input-group-text,\n.input-group > .input-group-append:not(:last-child) > .btn,\n.input-group > .input-group-append:not(:last-child) > .input-group-text,\n.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .input-group-append > .btn,\n.input-group > .input-group-append > .input-group-text,\n.input-group > .input-group-prepend:not(:first-child) > .btn,\n.input-group > .input-group-prepend:not(:first-child) > .input-group-text,\n.input-group > .input-group-prepend:first-child > .btn:not(:first-child),\n.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.custom-control {\n position: relative;\n display: block;\n min-height: 1.5rem;\n padding-left: 1.5rem;\n}\n\n.custom-control-inline {\n display: inline-flex;\n margin-right: 1rem;\n}\n\n.custom-control-input {\n position: absolute;\n z-index: -1;\n opacity: 0;\n}\n\n.custom-control-input:checked ~ .custom-control-label::before {\n color: #fff;\n background-color: #007bff;\n}\n\n.custom-control-input:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-control-input:active ~ .custom-control-label::before {\n color: #fff;\n background-color: #b3d7ff;\n}\n\n.custom-control-input:disabled ~ .custom-control-label {\n color: #868e96;\n}\n\n.custom-control-input:disabled ~ .custom-control-label::before {\n background-color: #e9ecef;\n}\n\n.custom-control-label {\n margin-bottom: 0;\n}\n\n.custom-control-label::before {\n position: absolute;\n top: 0.25rem;\n left: 0;\n display: block;\n width: 1rem;\n height: 1rem;\n pointer-events: none;\n content: \"\";\n user-select: none;\n background-color: #dee2e6;\n}\n\n.custom-control-label::after {\n position: absolute;\n top: 0.25rem;\n left: 0;\n display: block;\n width: 1rem;\n height: 1rem;\n content: \"\";\n background-repeat: no-repeat;\n background-position: center center;\n background-size: 50% 50%;\n}\n\n.custom-checkbox .custom-control-label::before {\n border-radius: 0.25rem;\n}\n\n.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {\n background-color: #007bff;\n}\n\n.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E\");\n}\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {\n background-color: #007bff;\n}\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E\");\n}\n\n.custom-radio .custom-control-label::before {\n border-radius: 50%;\n}\n\n.custom-radio .custom-control-input:checked ~ .custom-control-label::before {\n background-color: #007bff;\n}\n\n.custom-radio .custom-control-input:checked ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E\");\n}\n\n.custom-select {\n display: inline-block;\n width: 100%;\n height: calc(2.25rem + 2px);\n padding: 0.375rem 1.75rem 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n vertical-align: middle;\n background: #fff url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right 0.75rem center;\n background-size: 8px 10px;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n appearance: none;\n}\n\n.custom-select:focus {\n border-color: #80bdff;\n outline: 0;\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-select:focus::-ms-value {\n color: #495057;\n background-color: #fff;\n}\n\n.custom-select[multiple], .custom-select[size]:not([size=\"1\"]) {\n height: auto;\n padding-right: 0.75rem;\n background-image: none;\n}\n\n.custom-select:disabled {\n color: #868e96;\n background-color: #e9ecef;\n}\n\n.custom-select::-ms-expand {\n opacity: 0;\n}\n\n.custom-select-sm {\n height: calc(1.8125rem + 2px);\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n font-size: 75%;\n}\n\n.custom-select-lg {\n height: calc(2.875rem + 2px);\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n font-size: 125%;\n}\n\n.custom-file {\n position: relative;\n display: inline-block;\n width: 100%;\n height: calc(2.25rem + 2px);\n margin-bottom: 0;\n}\n\n.custom-file-input {\n position: relative;\n z-index: 2;\n width: 100%;\n height: calc(2.25rem + 2px);\n margin: 0;\n opacity: 0;\n}\n\n.custom-file-input:focus ~ .custom-file-control {\n border-color: #80bdff;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-file-input:focus ~ .custom-file-control::before {\n border-color: #80bdff;\n}\n\n.custom-file-input:lang(en) ~ .custom-file-label::after {\n content: \"Browse\";\n}\n\n.custom-file-label {\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1;\n height: calc(2.25rem + 2px);\n padding: 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n background-color: #fff;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n}\n\n.custom-file-label::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n z-index: 3;\n display: block;\n height: calc(calc(2.25rem + 2px) - 1px * 2);\n padding: 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n content: \"Browse\";\n background-color: #e9ecef;\n border-left: 1px solid #ced4da;\n border-radius: 0 0.25rem 0.25rem 0;\n}\n\n.nav {\n display: flex;\n flex-wrap: wrap;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.nav-link {\n display: block;\n padding: 0.5rem 1rem;\n}\n\n.nav-link:focus, .nav-link:hover {\n text-decoration: none;\n}\n\n.nav-link.disabled {\n color: #868e96;\n}\n\n.nav-tabs {\n border-bottom: 1px solid #dee2e6;\n}\n\n.nav-tabs .nav-item {\n margin-bottom: -1px;\n}\n\n.nav-tabs .nav-link {\n border: 1px solid transparent;\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {\n border-color: #e9ecef #e9ecef #dee2e6;\n}\n\n.nav-tabs .nav-link.disabled {\n color: #868e96;\n background-color: transparent;\n border-color: transparent;\n}\n\n.nav-tabs .nav-link.active,\n.nav-tabs .nav-item.show .nav-link {\n color: #495057;\n background-color: #fff;\n border-color: #dee2e6 #dee2e6 #fff;\n}\n\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.nav-pills .nav-link {\n border-radius: 0.25rem;\n}\n\n.nav-pills .nav-link.active,\n.nav-pills .show > .nav-link {\n color: #fff;\n background-color: #007bff;\n}\n\n.nav-fill .nav-item {\n flex: 1 1 auto;\n text-align: center;\n}\n\n.nav-justified .nav-item {\n flex-basis: 0;\n flex-grow: 1;\n text-align: center;\n}\n\n.tab-content > .tab-pane {\n display: none;\n}\n\n.tab-content > .active {\n display: block;\n}\n\n.navbar {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: space-between;\n padding: 0.5rem 1rem;\n}\n\n.navbar > .container,\n.navbar > .container-fluid {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: space-between;\n}\n\n.navbar-brand {\n display: inline-block;\n padding-top: 0.3125rem;\n padding-bottom: 0.3125rem;\n margin-right: 1rem;\n font-size: 1.25rem;\n line-height: inherit;\n white-space: nowrap;\n}\n\n.navbar-brand:focus, .navbar-brand:hover {\n text-decoration: none;\n}\n\n.navbar-nav {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.navbar-nav .nav-link {\n padding-right: 0;\n padding-left: 0;\n}\n\n.navbar-nav .dropdown-menu {\n position: static;\n float: none;\n}\n\n.navbar-text {\n display: inline-block;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n}\n\n.navbar-collapse {\n flex-basis: 100%;\n flex-grow: 1;\n align-items: center;\n}\n\n.navbar-toggler {\n padding: 0.25rem 0.75rem;\n font-size: 1.25rem;\n line-height: 1;\n background-color: transparent;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n}\n\n.navbar-toggler:focus, .navbar-toggler:hover {\n text-decoration: none;\n}\n\n.navbar-toggler:not([disabled]):not(.disabled) {\n cursor: pointer;\n}\n\n.navbar-toggler-icon {\n display: inline-block;\n width: 1.5em;\n height: 1.5em;\n vertical-align: middle;\n content: \"\";\n background: no-repeat center center;\n background-size: 100% 100%;\n}\n\n@media (max-width: 575.99px) {\n .navbar-expand-sm > .container,\n .navbar-expand-sm > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 576px) {\n .navbar-expand-sm {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-sm .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-sm .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-sm .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n }\n .navbar-expand-sm .navbar-nav .nav-link {\n padding-right: .5rem;\n padding-left: .5rem;\n }\n .navbar-expand-sm > .container,\n .navbar-expand-sm > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-sm .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-sm .navbar-toggler {\n display: none;\n }\n .navbar-expand-sm .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n }\n}\n\n@media (max-width: 767.99px) {\n .navbar-expand-md > .container,\n .navbar-expand-md > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 768px) {\n .navbar-expand-md {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-md .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-md .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-md .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n }\n .navbar-expand-md .navbar-nav .nav-link {\n padding-right: .5rem;\n padding-left: .5rem;\n }\n .navbar-expand-md > .container,\n .navbar-expand-md > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-md .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-md .navbar-toggler {\n display: none;\n }\n .navbar-expand-md .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n }\n}\n\n@media (max-width: 991.99px) {\n .navbar-expand-lg > .container,\n .navbar-expand-lg > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 992px) {\n .navbar-expand-lg {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-lg .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-lg .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-lg .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n }\n .navbar-expand-lg .navbar-nav .nav-link {\n padding-right: .5rem;\n padding-left: .5rem;\n }\n .navbar-expand-lg > .container,\n .navbar-expand-lg > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-lg .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-lg .navbar-toggler {\n display: none;\n }\n .navbar-expand-lg .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n }\n}\n\n@media (max-width: 1199.99px) {\n .navbar-expand-xl > .container,\n .navbar-expand-xl > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 1200px) {\n .navbar-expand-xl {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-xl .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-xl .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-xl .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n }\n .navbar-expand-xl .navbar-nav .nav-link {\n padding-right: .5rem;\n padding-left: .5rem;\n }\n .navbar-expand-xl > .container,\n .navbar-expand-xl > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-xl .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-xl .navbar-toggler {\n display: none;\n }\n .navbar-expand-xl .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n }\n}\n\n.navbar-expand {\n flex-flow: row nowrap;\n justify-content: flex-start;\n}\n\n.navbar-expand > .container,\n.navbar-expand > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n}\n\n.navbar-expand .navbar-nav {\n flex-direction: row;\n}\n\n.navbar-expand .navbar-nav .dropdown-menu {\n position: absolute;\n}\n\n.navbar-expand .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n}\n\n.navbar-expand .navbar-nav .nav-link {\n padding-right: .5rem;\n padding-left: .5rem;\n}\n\n.navbar-expand > .container,\n.navbar-expand > .container-fluid {\n flex-wrap: nowrap;\n}\n\n.navbar-expand .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n}\n\n.navbar-expand .navbar-toggler {\n display: none;\n}\n\n.navbar-expand .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n}\n\n.navbar-light .navbar-brand {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-nav .nav-link {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {\n color: rgba(0, 0, 0, 0.7);\n}\n\n.navbar-light .navbar-nav .nav-link.disabled {\n color: rgba(0, 0, 0, 0.3);\n}\n\n.navbar-light .navbar-nav .show > .nav-link,\n.navbar-light .navbar-nav .active > .nav-link,\n.navbar-light .navbar-nav .nav-link.show,\n.navbar-light .navbar-nav .nav-link.active {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-toggler {\n color: rgba(0, 0, 0, 0.5);\n border-color: rgba(0, 0, 0, 0.1);\n}\n\n.navbar-light .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\");\n}\n\n.navbar-light .navbar-text {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.navbar-light .navbar-text a {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-text a:focus, .navbar-light .navbar-text a:hover {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-dark .navbar-brand {\n color: #fff;\n}\n\n.navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {\n color: #fff;\n}\n\n.navbar-dark .navbar-nav .nav-link {\n color: rgba(255, 255, 255, 0.5);\n}\n\n.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {\n color: rgba(255, 255, 255, 0.75);\n}\n\n.navbar-dark .navbar-nav .nav-link.disabled {\n color: rgba(255, 255, 255, 0.25);\n}\n\n.navbar-dark .navbar-nav .show > .nav-link,\n.navbar-dark .navbar-nav .active > .nav-link,\n.navbar-dark .navbar-nav .nav-link.show,\n.navbar-dark .navbar-nav .nav-link.active {\n color: #fff;\n}\n\n.navbar-dark .navbar-toggler {\n color: rgba(255, 255, 255, 0.5);\n border-color: rgba(255, 255, 255, 0.1);\n}\n\n.navbar-dark .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\");\n}\n\n.navbar-dark .navbar-text {\n color: rgba(255, 255, 255, 0.5);\n}\n\n.navbar-dark .navbar-text a {\n color: #fff;\n}\n\n.navbar-dark .navbar-text a:focus, .navbar-dark .navbar-text a:hover {\n color: #fff;\n}\n\n.card {\n position: relative;\n display: flex;\n flex-direction: column;\n min-width: 0;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: border-box;\n border: 1px solid rgba(0, 0, 0, 0.125);\n border-radius: 0.25rem;\n}\n\n.card > hr {\n margin-right: 0;\n margin-left: 0;\n}\n\n.card > .list-group:first-child .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.card > .list-group:last-child .list-group-item:last-child {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.card-body {\n flex: 1 1 auto;\n padding: 1.25rem;\n}\n\n.card-title {\n margin-bottom: 0.75rem;\n}\n\n.card-subtitle {\n margin-top: -0.375rem;\n margin-bottom: 0;\n}\n\n.card-text:last-child {\n margin-bottom: 0;\n}\n\n.card-link:hover {\n text-decoration: none;\n}\n\n.card-link + .card-link {\n margin-left: 1.25rem;\n}\n\n.card-header {\n padding: 0.75rem 1.25rem;\n margin-bottom: 0;\n background-color: rgba(0, 0, 0, 0.03);\n border-bottom: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.card-header:first-child {\n border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;\n}\n\n.card-header + .list-group .list-group-item:first-child {\n border-top: 0;\n}\n\n.card-footer {\n padding: 0.75rem 1.25rem;\n background-color: rgba(0, 0, 0, 0.03);\n border-top: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.card-footer:last-child {\n border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);\n}\n\n.card-header-tabs {\n margin-right: -0.625rem;\n margin-bottom: -0.75rem;\n margin-left: -0.625rem;\n border-bottom: 0;\n}\n\n.card-header-pills {\n margin-right: -0.625rem;\n margin-left: -0.625rem;\n}\n\n.card-img-overlay {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n padding: 1.25rem;\n}\n\n.card-img {\n width: 100%;\n border-radius: calc(0.25rem - 1px);\n}\n\n.card-img-top {\n width: 100%;\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px);\n}\n\n.card-img-bottom {\n width: 100%;\n border-bottom-right-radius: calc(0.25rem - 1px);\n border-bottom-left-radius: calc(0.25rem - 1px);\n}\n\n.card-deck {\n display: flex;\n flex-direction: column;\n}\n\n.card-deck .card {\n margin-bottom: 15px;\n}\n\n@media (min-width: 576px) {\n .card-deck {\n flex-flow: row wrap;\n margin-right: -15px;\n margin-left: -15px;\n }\n .card-deck .card {\n display: flex;\n flex: 1 0 0%;\n flex-direction: column;\n margin-right: 15px;\n margin-bottom: 0;\n margin-left: 15px;\n }\n}\n\n.card-group {\n display: flex;\n flex-direction: column;\n}\n\n.card-group > .card {\n margin-bottom: 15px;\n}\n\n@media (min-width: 576px) {\n .card-group {\n flex-flow: row wrap;\n }\n .card-group > .card {\n flex: 1 0 0%;\n margin-bottom: 0;\n }\n .card-group > .card + .card {\n margin-left: 0;\n border-left: 0;\n }\n .card-group > .card:first-child {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n }\n .card-group > .card:first-child .card-img-top,\n .card-group > .card:first-child .card-header {\n border-top-right-radius: 0;\n }\n .card-group > .card:first-child .card-img-bottom,\n .card-group > .card:first-child .card-footer {\n border-bottom-right-radius: 0;\n }\n .card-group > .card:last-child {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n }\n .card-group > .card:last-child .card-img-top,\n .card-group > .card:last-child .card-header {\n border-top-left-radius: 0;\n }\n .card-group > .card:last-child .card-img-bottom,\n .card-group > .card:last-child .card-footer {\n border-bottom-left-radius: 0;\n }\n .card-group > .card:only-child {\n border-radius: 0.25rem;\n }\n .card-group > .card:only-child .card-img-top,\n .card-group > .card:only-child .card-header {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n }\n .card-group > .card:only-child .card-img-bottom,\n .card-group > .card:only-child .card-footer {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n }\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {\n border-radius: 0;\n }\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {\n border-radius: 0;\n }\n}\n\n.card-columns .card {\n margin-bottom: 0.75rem;\n}\n\n@media (min-width: 576px) {\n .card-columns {\n column-count: 3;\n column-gap: 1.25rem;\n }\n .card-columns .card {\n display: inline-block;\n width: 100%;\n }\n}\n\n.breadcrumb {\n display: flex;\n flex-wrap: wrap;\n padding: 0.75rem 1rem;\n margin-bottom: 1rem;\n list-style: none;\n background-color: #e9ecef;\n border-radius: 0.25rem;\n}\n\n.breadcrumb-item + .breadcrumb-item::before {\n display: inline-block;\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n color: #868e96;\n content: \"/\";\n}\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: underline;\n}\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: none;\n}\n\n.breadcrumb-item.active {\n color: #868e96;\n}\n\n.pagination {\n display: flex;\n padding-left: 0;\n list-style: none;\n border-radius: 0.25rem;\n}\n\n.page-link {\n position: relative;\n display: block;\n padding: 0.5rem 0.75rem;\n margin-left: -1px;\n line-height: 1.25;\n color: #007bff;\n background-color: #fff;\n border: 1px solid #dee2e6;\n}\n\n.page-link:focus, .page-link:hover {\n color: #0056b3;\n text-decoration: none;\n background-color: #e9ecef;\n border-color: #dee2e6;\n}\n\n.page-link:not([disabled]):not(.disabled) {\n cursor: pointer;\n}\n\n.page-item:first-child .page-link {\n margin-left: 0;\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.page-item:last-child .page-link {\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n}\n\n.page-item.active .page-link {\n z-index: 1;\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.page-item.disabled .page-link {\n color: #868e96;\n pointer-events: none;\n cursor: auto;\n background-color: #fff;\n border-color: #dee2e6;\n}\n\n.pagination-lg .page-link {\n padding: 0.75rem 1.5rem;\n font-size: 1.25rem;\n line-height: 1.5;\n}\n\n.pagination-lg .page-item:first-child .page-link {\n border-top-left-radius: 0.3rem;\n border-bottom-left-radius: 0.3rem;\n}\n\n.pagination-lg .page-item:last-child .page-link {\n border-top-right-radius: 0.3rem;\n border-bottom-right-radius: 0.3rem;\n}\n\n.pagination-sm .page-link {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n}\n\n.pagination-sm .page-item:first-child .page-link {\n border-top-left-radius: 0.2rem;\n border-bottom-left-radius: 0.2rem;\n}\n\n.pagination-sm .page-item:last-child .page-link {\n border-top-right-radius: 0.2rem;\n border-bottom-right-radius: 0.2rem;\n}\n\n.badge {\n display: inline-block;\n padding: 0.25em 0.4em;\n font-size: 75%;\n font-weight: 700;\n line-height: 1;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: 0.25rem;\n}\n\n.badge:empty {\n display: none;\n}\n\n.btn .badge {\n position: relative;\n top: -1px;\n}\n\n.badge-pill {\n padding-right: 0.6em;\n padding-left: 0.6em;\n border-radius: 10rem;\n}\n\n.badge-primary {\n color: #fff;\n background-color: #007bff;\n}\n\n.badge-primary[href]:focus, .badge-primary[href]:hover {\n color: #fff;\n text-decoration: none;\n background-color: #0062cc;\n}\n\n.badge-secondary {\n color: #fff;\n background-color: #868e96;\n}\n\n.badge-secondary[href]:focus, .badge-secondary[href]:hover {\n color: #fff;\n text-decoration: none;\n background-color: #6c757d;\n}\n\n.badge-success {\n color: #fff;\n background-color: #28a745;\n}\n\n.badge-success[href]:focus, .badge-success[href]:hover {\n color: #fff;\n text-decoration: none;\n background-color: #1e7e34;\n}\n\n.badge-info {\n color: #fff;\n background-color: #17a2b8;\n}\n\n.badge-info[href]:focus, .badge-info[href]:hover {\n color: #fff;\n text-decoration: none;\n background-color: #117a8b;\n}\n\n.badge-warning {\n color: #212529;\n background-color: #ffc107;\n}\n\n.badge-warning[href]:focus, .badge-warning[href]:hover {\n color: #212529;\n text-decoration: none;\n background-color: #d39e00;\n}\n\n.badge-danger {\n color: #fff;\n background-color: #dc3545;\n}\n\n.badge-danger[href]:focus, .badge-danger[href]:hover {\n color: #fff;\n text-decoration: none;\n background-color: #bd2130;\n}\n\n.badge-light {\n color: #212529;\n background-color: #f8f9fa;\n}\n\n.badge-light[href]:focus, .badge-light[href]:hover {\n color: #212529;\n text-decoration: none;\n background-color: #dae0e5;\n}\n\n.badge-dark {\n color: #fff;\n background-color: #343a40;\n}\n\n.badge-dark[href]:focus, .badge-dark[href]:hover {\n color: #fff;\n text-decoration: none;\n background-color: #1d2124;\n}\n\n.jumbotron {\n padding: 2rem 1rem;\n margin-bottom: 2rem;\n background-color: #e9ecef;\n border-radius: 0.3rem;\n}\n\n@media (min-width: 576px) {\n .jumbotron {\n padding: 4rem 2rem;\n }\n}\n\n.jumbotron-fluid {\n padding-right: 0;\n padding-left: 0;\n border-radius: 0;\n}\n\n.alert {\n position: relative;\n padding: 0.75rem 1.25rem;\n margin-bottom: 1rem;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n}\n\n.alert-heading {\n color: inherit;\n}\n\n.alert-link {\n font-weight: 700;\n}\n\n.alert-dismissible {\n padding-right: 4rem;\n}\n\n.alert-dismissible .close {\n position: absolute;\n top: 0;\n right: 0;\n padding: 0.75rem 1.25rem;\n color: inherit;\n}\n\n.alert-primary {\n color: #004085;\n background-color: #cce5ff;\n border-color: #b8daff;\n}\n\n.alert-primary hr {\n border-top-color: #9fcdff;\n}\n\n.alert-primary .alert-link {\n color: #002752;\n}\n\n.alert-secondary {\n color: #464a4e;\n background-color: #e7e8ea;\n border-color: #dddfe2;\n}\n\n.alert-secondary hr {\n border-top-color: #cfd2d6;\n}\n\n.alert-secondary .alert-link {\n color: #2e3133;\n}\n\n.alert-success {\n color: #155724;\n background-color: #d4edda;\n border-color: #c3e6cb;\n}\n\n.alert-success hr {\n border-top-color: #b1dfbb;\n}\n\n.alert-success .alert-link {\n color: #0b2e13;\n}\n\n.alert-info {\n color: #0c5460;\n background-color: #d1ecf1;\n border-color: #bee5eb;\n}\n\n.alert-info hr {\n border-top-color: #abdde5;\n}\n\n.alert-info .alert-link {\n color: #062c33;\n}\n\n.alert-warning {\n color: #856404;\n background-color: #fff3cd;\n border-color: #ffeeba;\n}\n\n.alert-warning hr {\n border-top-color: #ffe8a1;\n}\n\n.alert-warning .alert-link {\n color: #533f03;\n}\n\n.alert-danger {\n color: #721c24;\n background-color: #f8d7da;\n border-color: #f5c6cb;\n}\n\n.alert-danger hr {\n border-top-color: #f1b0b7;\n}\n\n.alert-danger .alert-link {\n color: #491217;\n}\n\n.alert-light {\n color: #818182;\n background-color: #fefefe;\n border-color: #fdfdfe;\n}\n\n.alert-light hr {\n border-top-color: #ececf6;\n}\n\n.alert-light .alert-link {\n color: #686868;\n}\n\n.alert-dark {\n color: #1b1e21;\n background-color: #d6d8d9;\n border-color: #c6c8ca;\n}\n\n.alert-dark hr {\n border-top-color: #b9bbbe;\n}\n\n.alert-dark .alert-link {\n color: #040505;\n}\n\n@keyframes progress-bar-stripes {\n from {\n background-position: 1rem 0;\n }\n to {\n background-position: 0 0;\n }\n}\n\n.progress {\n display: flex;\n height: 1rem;\n overflow: hidden;\n font-size: 0.75rem;\n background-color: #e9ecef;\n border-radius: 0.25rem;\n}\n\n.progress-bar {\n display: flex;\n flex-direction: column;\n justify-content: center;\n color: #fff;\n text-align: center;\n background-color: #007bff;\n transition: width 0.6s ease;\n}\n\n.progress-bar-striped {\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 1rem 1rem;\n}\n\n.progress-bar-animated {\n animation: progress-bar-stripes 1s linear infinite;\n}\n\n.media {\n display: flex;\n align-items: flex-start;\n}\n\n.media-body {\n flex: 1;\n}\n\n.list-group {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n}\n\n.list-group-item-action {\n width: 100%;\n color: #495057;\n text-align: inherit;\n}\n\n.list-group-item-action:focus, .list-group-item-action:hover {\n color: #495057;\n text-decoration: none;\n background-color: #f8f9fa;\n}\n\n.list-group-item-action:active {\n color: #212529;\n background-color: #e9ecef;\n}\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 0.75rem 1.25rem;\n margin-bottom: -1px;\n background-color: #fff;\n border: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.list-group-item:focus, .list-group-item:hover {\n z-index: 1;\n text-decoration: none;\n}\n\n.list-group-item.disabled, .list-group-item:disabled {\n color: #868e96;\n background-color: #fff;\n}\n\n.list-group-item.active {\n z-index: 2;\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.list-group-flush .list-group-item {\n border-right: 0;\n border-left: 0;\n border-radius: 0;\n}\n\n.list-group-flush:first-child .list-group-item:first-child {\n border-top: 0;\n}\n\n.list-group-flush:last-child .list-group-item:last-child {\n border-bottom: 0;\n}\n\n.list-group-item-primary {\n color: #004085;\n background-color: #b8daff;\n}\n\na.list-group-item-primary,\nbutton.list-group-item-primary {\n color: #004085;\n}\n\na.list-group-item-primary:focus, a.list-group-item-primary:hover,\nbutton.list-group-item-primary:focus,\nbutton.list-group-item-primary:hover {\n color: #004085;\n background-color: #9fcdff;\n}\n\na.list-group-item-primary.active,\nbutton.list-group-item-primary.active {\n color: #fff;\n background-color: #004085;\n border-color: #004085;\n}\n\n.list-group-item-secondary {\n color: #464a4e;\n background-color: #dddfe2;\n}\n\na.list-group-item-secondary,\nbutton.list-group-item-secondary {\n color: #464a4e;\n}\n\na.list-group-item-secondary:focus, a.list-group-item-secondary:hover,\nbutton.list-group-item-secondary:focus,\nbutton.list-group-item-secondary:hover {\n color: #464a4e;\n background-color: #cfd2d6;\n}\n\na.list-group-item-secondary.active,\nbutton.list-group-item-secondary.active {\n color: #fff;\n background-color: #464a4e;\n border-color: #464a4e;\n}\n\n.list-group-item-success {\n color: #155724;\n background-color: #c3e6cb;\n}\n\na.list-group-item-success,\nbutton.list-group-item-success {\n color: #155724;\n}\n\na.list-group-item-success:focus, a.list-group-item-success:hover,\nbutton.list-group-item-success:focus,\nbutton.list-group-item-success:hover {\n color: #155724;\n background-color: #b1dfbb;\n}\n\na.list-group-item-success.active,\nbutton.list-group-item-success.active {\n color: #fff;\n background-color: #155724;\n border-color: #155724;\n}\n\n.list-group-item-info {\n color: #0c5460;\n background-color: #bee5eb;\n}\n\na.list-group-item-info,\nbutton.list-group-item-info {\n color: #0c5460;\n}\n\na.list-group-item-info:focus, a.list-group-item-info:hover,\nbutton.list-group-item-info:focus,\nbutton.list-group-item-info:hover {\n color: #0c5460;\n background-color: #abdde5;\n}\n\na.list-group-item-info.active,\nbutton.list-group-item-info.active {\n color: #fff;\n background-color: #0c5460;\n border-color: #0c5460;\n}\n\n.list-group-item-warning {\n color: #856404;\n background-color: #ffeeba;\n}\n\na.list-group-item-warning,\nbutton.list-group-item-warning {\n color: #856404;\n}\n\na.list-group-item-warning:focus, a.list-group-item-warning:hover,\nbutton.list-group-item-warning:focus,\nbutton.list-group-item-warning:hover {\n color: #856404;\n background-color: #ffe8a1;\n}\n\na.list-group-item-warning.active,\nbutton.list-group-item-warning.active {\n color: #fff;\n background-color: #856404;\n border-color: #856404;\n}\n\n.list-group-item-danger {\n color: #721c24;\n background-color: #f5c6cb;\n}\n\na.list-group-item-danger,\nbutton.list-group-item-danger {\n color: #721c24;\n}\n\na.list-group-item-danger:focus, a.list-group-item-danger:hover,\nbutton.list-group-item-danger:focus,\nbutton.list-group-item-danger:hover {\n color: #721c24;\n background-color: #f1b0b7;\n}\n\na.list-group-item-danger.active,\nbutton.list-group-item-danger.active {\n color: #fff;\n background-color: #721c24;\n border-color: #721c24;\n}\n\n.list-group-item-light {\n color: #818182;\n background-color: #fdfdfe;\n}\n\na.list-group-item-light,\nbutton.list-group-item-light {\n color: #818182;\n}\n\na.list-group-item-light:focus, a.list-group-item-light:hover,\nbutton.list-group-item-light:focus,\nbutton.list-group-item-light:hover {\n color: #818182;\n background-color: #ececf6;\n}\n\na.list-group-item-light.active,\nbutton.list-group-item-light.active {\n color: #fff;\n background-color: #818182;\n border-color: #818182;\n}\n\n.list-group-item-dark {\n color: #1b1e21;\n background-color: #c6c8ca;\n}\n\na.list-group-item-dark,\nbutton.list-group-item-dark {\n color: #1b1e21;\n}\n\na.list-group-item-dark:focus, a.list-group-item-dark:hover,\nbutton.list-group-item-dark:focus,\nbutton.list-group-item-dark:hover {\n color: #1b1e21;\n background-color: #b9bbbe;\n}\n\na.list-group-item-dark.active,\nbutton.list-group-item-dark.active {\n color: #fff;\n background-color: #1b1e21;\n border-color: #1b1e21;\n}\n\n.close {\n float: right;\n font-size: 1.5rem;\n font-weight: 700;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n opacity: .5;\n}\n\n.close:focus, .close:hover {\n color: #000;\n text-decoration: none;\n opacity: .75;\n}\n\n.close:not([disabled]):not(.disabled) {\n cursor: pointer;\n}\n\nbutton.close {\n padding: 0;\n background-color: transparent;\n border: 0;\n -webkit-appearance: none;\n}\n\n.modal-open {\n overflow: hidden;\n}\n\n.modal {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1050;\n display: none;\n overflow: hidden;\n outline: 0;\n}\n\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 0.5rem;\n pointer-events: none;\n}\n\n.modal.fade .modal-dialog {\n transition: transform 0.3s ease-out;\n transform: translate(0, -25%);\n}\n\n.modal.show .modal-dialog {\n transform: translate(0, 0);\n}\n\n.modal-dialog-centered {\n display: flex;\n align-items: center;\n min-height: calc(100% - (0.5rem * 2));\n}\n\n.modal-content {\n position: relative;\n display: flex;\n flex-direction: column;\n width: 100%;\n pointer-events: auto;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.3rem;\n outline: 0;\n}\n\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n background-color: #000;\n}\n\n.modal-backdrop.fade {\n opacity: 0;\n}\n\n.modal-backdrop.show {\n opacity: 0.5;\n}\n\n.modal-header {\n display: flex;\n align-items: flex-start;\n justify-content: space-between;\n padding: 1rem;\n border-bottom: 1px solid #e9ecef;\n border-top-left-radius: 0.3rem;\n border-top-right-radius: 0.3rem;\n}\n\n.modal-header .close {\n padding: 1rem;\n margin: -1rem -1rem -1rem auto;\n}\n\n.modal-title {\n margin-bottom: 0;\n line-height: 1.5;\n}\n\n.modal-body {\n position: relative;\n flex: 1 1 auto;\n padding: 1rem;\n}\n\n.modal-footer {\n display: flex;\n align-items: center;\n justify-content: flex-end;\n padding: 1rem;\n border-top: 1px solid #e9ecef;\n}\n\n.modal-footer > :not(:first-child) {\n margin-left: .25rem;\n}\n\n.modal-footer > :not(:last-child) {\n margin-right: .25rem;\n}\n\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n\n@media (min-width: 576px) {\n .modal-dialog {\n max-width: 500px;\n margin: 1.75rem auto;\n }\n .modal-dialog-centered {\n min-height: calc(100% - (1.75rem * 2));\n }\n .modal-sm {\n max-width: 300px;\n }\n}\n\n@media (min-width: 992px) {\n .modal-lg {\n max-width: 800px;\n }\n}\n\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n opacity: 0;\n}\n\n.tooltip.show {\n opacity: 0.9;\n}\n\n.tooltip .arrow {\n position: absolute;\n display: block;\n width: 0.8rem;\n height: 0.4rem;\n}\n\n.tooltip .arrow::before {\n position: absolute;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-tooltip-top, .bs-tooltip-auto[x-placement^=\"top\"] {\n padding: 0.4rem 0;\n}\n\n.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=\"top\"] .arrow {\n bottom: 0;\n}\n\n.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=\"top\"] .arrow::before {\n top: 0;\n border-width: 0.4rem 0.4rem 0;\n border-top-color: #000;\n}\n\n.bs-tooltip-right, .bs-tooltip-auto[x-placement^=\"right\"] {\n padding: 0 0.4rem;\n}\n\n.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=\"right\"] .arrow {\n left: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n\n.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=\"right\"] .arrow::before {\n right: 0;\n border-width: 0.4rem 0.4rem 0.4rem 0;\n border-right-color: #000;\n}\n\n.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=\"bottom\"] {\n padding: 0.4rem 0;\n}\n\n.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow {\n top: 0;\n}\n\n.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow::before {\n bottom: 0;\n border-width: 0 0.4rem 0.4rem;\n border-bottom-color: #000;\n}\n\n.bs-tooltip-left, .bs-tooltip-auto[x-placement^=\"left\"] {\n padding: 0 0.4rem;\n}\n\n.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=\"left\"] .arrow {\n right: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n\n.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=\"left\"] .arrow::before {\n left: 0;\n border-width: 0.4rem 0 0.4rem 0.4rem;\n border-left-color: #000;\n}\n\n.tooltip-inner {\n max-width: 200px;\n padding: 0.25rem 0.5rem;\n color: #fff;\n text-align: center;\n background-color: #000;\n border-radius: 0.25rem;\n}\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: block;\n max-width: 276px;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.3rem;\n}\n\n.popover .arrow {\n position: absolute;\n display: block;\n width: 1rem;\n height: 0.5rem;\n margin: 0 0.3rem;\n}\n\n.popover .arrow::before, .popover .arrow::after {\n position: absolute;\n display: block;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-popover-top, .bs-popover-auto[x-placement^=\"top\"] {\n margin-bottom: 0.5rem;\n}\n\n.bs-popover-top .arrow, .bs-popover-auto[x-placement^=\"top\"] .arrow {\n bottom: calc((0.5rem + 1px) * -1);\n}\n\n.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=\"top\"] .arrow::before,\n.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^=\"top\"] .arrow::after {\n border-width: 0.5rem 0.5rem 0;\n}\n\n.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=\"top\"] .arrow::before {\n bottom: 0;\n border-top-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^=\"top\"] .arrow::after {\n bottom: 1px;\n border-top-color: #fff;\n}\n\n.bs-popover-right, .bs-popover-auto[x-placement^=\"right\"] {\n margin-left: 0.5rem;\n}\n\n.bs-popover-right .arrow, .bs-popover-auto[x-placement^=\"right\"] .arrow {\n left: calc((0.5rem + 1px) * -1);\n width: 0.5rem;\n height: 1rem;\n margin: 0.3rem 0;\n}\n\n.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=\"right\"] .arrow::before,\n.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^=\"right\"] .arrow::after {\n border-width: 0.5rem 0.5rem 0.5rem 0;\n}\n\n.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=\"right\"] .arrow::before {\n left: 0;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^=\"right\"] .arrow::after {\n left: 1px;\n border-right-color: #fff;\n}\n\n.bs-popover-bottom, .bs-popover-auto[x-placement^=\"bottom\"] {\n margin-top: 0.5rem;\n}\n\n.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^=\"bottom\"] .arrow {\n top: calc((0.5rem + 1px) * -1);\n}\n\n.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::before,\n.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::after {\n border-width: 0 0.5rem 0.5rem 0.5rem;\n}\n\n.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::before {\n top: 0;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::after {\n top: 1px;\n border-bottom-color: #fff;\n}\n\n.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=\"bottom\"] .popover-header::before {\n position: absolute;\n top: 0;\n left: 50%;\n display: block;\n width: 1rem;\n margin-left: -0.5rem;\n content: \"\";\n border-bottom: 1px solid #f7f7f7;\n}\n\n.bs-popover-left, .bs-popover-auto[x-placement^=\"left\"] {\n margin-right: 0.5rem;\n}\n\n.bs-popover-left .arrow, .bs-popover-auto[x-placement^=\"left\"] .arrow {\n right: calc((0.5rem + 1px) * -1);\n width: 0.5rem;\n height: 1rem;\n margin: 0.3rem 0;\n}\n\n.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=\"left\"] .arrow::before,\n.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^=\"left\"] .arrow::after {\n border-width: 0.5rem 0 0.5rem 0.5rem;\n}\n\n.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=\"left\"] .arrow::before {\n right: 0;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^=\"left\"] .arrow::after {\n right: 1px;\n border-left-color: #fff;\n}\n\n.popover-header {\n padding: 0.5rem 0.75rem;\n margin-bottom: 0;\n font-size: 1rem;\n color: inherit;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-top-left-radius: calc(0.3rem - 1px);\n border-top-right-radius: calc(0.3rem - 1px);\n}\n\n.popover-header:empty {\n display: none;\n}\n\n.popover-body {\n padding: 0.5rem 0.75rem;\n color: #212529;\n}\n\n.carousel {\n position: relative;\n}\n\n.carousel-inner {\n position: relative;\n width: 100%;\n overflow: hidden;\n}\n\n.carousel-item {\n position: relative;\n display: none;\n align-items: center;\n width: 100%;\n transition: transform 0.6s ease;\n backface-visibility: hidden;\n perspective: 1000px;\n}\n\n.carousel-item.active,\n.carousel-item-next,\n.carousel-item-prev {\n display: block;\n}\n\n.carousel-item-next,\n.carousel-item-prev {\n position: absolute;\n top: 0;\n}\n\n.carousel-item-next.carousel-item-left,\n.carousel-item-prev.carousel-item-right {\n transform: translateX(0);\n}\n\n@supports (transform-style: preserve-3d) {\n .carousel-item-next.carousel-item-left,\n .carousel-item-prev.carousel-item-right {\n transform: translate3d(0, 0, 0);\n }\n}\n\n.carousel-item-next,\n.active.carousel-item-right {\n transform: translateX(100%);\n}\n\n@supports (transform-style: preserve-3d) {\n .carousel-item-next,\n .active.carousel-item-right {\n transform: translate3d(100%, 0, 0);\n }\n}\n\n.carousel-item-prev,\n.active.carousel-item-left {\n transform: translateX(-100%);\n}\n\n@supports (transform-style: preserve-3d) {\n .carousel-item-prev,\n .active.carousel-item-left {\n transform: translate3d(-100%, 0, 0);\n }\n}\n\n.carousel-control-prev,\n.carousel-control-next {\n position: absolute;\n top: 0;\n bottom: 0;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 15%;\n color: #fff;\n text-align: center;\n opacity: 0.5;\n}\n\n.carousel-control-prev:focus, .carousel-control-prev:hover,\n.carousel-control-next:focus,\n.carousel-control-next:hover {\n color: #fff;\n text-decoration: none;\n outline: 0;\n opacity: .9;\n}\n\n.carousel-control-prev {\n left: 0;\n}\n\n.carousel-control-next {\n right: 0;\n}\n\n.carousel-control-prev-icon,\n.carousel-control-next-icon {\n display: inline-block;\n width: 20px;\n height: 20px;\n background: transparent no-repeat center center;\n background-size: 100% 100%;\n}\n\n.carousel-control-prev-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E\");\n}\n\n.carousel-control-next-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E\");\n}\n\n.carousel-indicators {\n position: absolute;\n right: 0;\n bottom: 10px;\n left: 0;\n z-index: 15;\n display: flex;\n justify-content: center;\n padding-left: 0;\n margin-right: 15%;\n margin-left: 15%;\n list-style: none;\n}\n\n.carousel-indicators li {\n position: relative;\n flex: 0 1 auto;\n width: 30px;\n height: 3px;\n margin-right: 3px;\n margin-left: 3px;\n text-indent: -999px;\n background-color: rgba(255, 255, 255, 0.5);\n}\n\n.carousel-indicators li::before {\n position: absolute;\n top: -10px;\n left: 0;\n display: inline-block;\n width: 100%;\n height: 10px;\n content: \"\";\n}\n\n.carousel-indicators li::after {\n position: absolute;\n bottom: -10px;\n left: 0;\n display: inline-block;\n width: 100%;\n height: 10px;\n content: \"\";\n}\n\n.carousel-indicators .active {\n background-color: #fff;\n}\n\n.carousel-caption {\n position: absolute;\n right: 15%;\n bottom: 20px;\n left: 15%;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #fff;\n text-align: center;\n}\n\n.align-baseline {\n vertical-align: baseline !important;\n}\n\n.align-top {\n vertical-align: top !important;\n}\n\n.align-middle {\n vertical-align: middle !important;\n}\n\n.align-bottom {\n vertical-align: bottom !important;\n}\n\n.align-text-bottom {\n vertical-align: text-bottom !important;\n}\n\n.align-text-top {\n vertical-align: text-top !important;\n}\n\n.bg-primary {\n background-color: #007bff !important;\n}\n\na.bg-primary:focus, a.bg-primary:hover,\nbutton.bg-primary:focus,\nbutton.bg-primary:hover {\n background-color: #0062cc !important;\n}\n\n.bg-secondary {\n background-color: #868e96 !important;\n}\n\na.bg-secondary:focus, a.bg-secondary:hover,\nbutton.bg-secondary:focus,\nbutton.bg-secondary:hover {\n background-color: #6c757d !important;\n}\n\n.bg-success {\n background-color: #28a745 !important;\n}\n\na.bg-success:focus, a.bg-success:hover,\nbutton.bg-success:focus,\nbutton.bg-success:hover {\n background-color: #1e7e34 !important;\n}\n\n.bg-info {\n background-color: #17a2b8 !important;\n}\n\na.bg-info:focus, a.bg-info:hover,\nbutton.bg-info:focus,\nbutton.bg-info:hover {\n background-color: #117a8b !important;\n}\n\n.bg-warning {\n background-color: #ffc107 !important;\n}\n\na.bg-warning:focus, a.bg-warning:hover,\nbutton.bg-warning:focus,\nbutton.bg-warning:hover {\n background-color: #d39e00 !important;\n}\n\n.bg-danger {\n background-color: #dc3545 !important;\n}\n\na.bg-danger:focus, a.bg-danger:hover,\nbutton.bg-danger:focus,\nbutton.bg-danger:hover {\n background-color: #bd2130 !important;\n}\n\n.bg-light {\n background-color: #f8f9fa !important;\n}\n\na.bg-light:focus, a.bg-light:hover,\nbutton.bg-light:focus,\nbutton.bg-light:hover {\n background-color: #dae0e5 !important;\n}\n\n.bg-dark {\n background-color: #343a40 !important;\n}\n\na.bg-dark:focus, a.bg-dark:hover,\nbutton.bg-dark:focus,\nbutton.bg-dark:hover {\n background-color: #1d2124 !important;\n}\n\n.bg-white {\n background-color: #fff !important;\n}\n\n.bg-transparent {\n background-color: transparent !important;\n}\n\n.border {\n border: 1px solid #e9ecef !important;\n}\n\n.border-0 {\n border: 0 !important;\n}\n\n.border-top-0 {\n border-top: 0 !important;\n}\n\n.border-right-0 {\n border-right: 0 !important;\n}\n\n.border-bottom-0 {\n border-bottom: 0 !important;\n}\n\n.border-left-0 {\n border-left: 0 !important;\n}\n\n.border-primary {\n border-color: #007bff !important;\n}\n\n.border-secondary {\n border-color: #868e96 !important;\n}\n\n.border-success {\n border-color: #28a745 !important;\n}\n\n.border-info {\n border-color: #17a2b8 !important;\n}\n\n.border-warning {\n border-color: #ffc107 !important;\n}\n\n.border-danger {\n border-color: #dc3545 !important;\n}\n\n.border-light {\n border-color: #f8f9fa !important;\n}\n\n.border-dark {\n border-color: #343a40 !important;\n}\n\n.border-white {\n border-color: #fff !important;\n}\n\n.rounded {\n border-radius: 0.25rem !important;\n}\n\n.rounded-top {\n border-top-left-radius: 0.25rem !important;\n border-top-right-radius: 0.25rem !important;\n}\n\n.rounded-right {\n border-top-right-radius: 0.25rem !important;\n border-bottom-right-radius: 0.25rem !important;\n}\n\n.rounded-bottom {\n border-bottom-right-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important;\n}\n\n.rounded-left {\n border-top-left-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important;\n}\n\n.rounded-circle {\n border-radius: 50% !important;\n}\n\n.rounded-0 {\n border-radius: 0 !important;\n}\n\n.clearfix::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.d-none {\n display: none !important;\n}\n\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-none {\n display: none !important;\n }\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 768px) {\n .d-md-none {\n display: none !important;\n }\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: flex !important;\n }\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 992px) {\n .d-lg-none {\n display: none !important;\n }\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 1200px) {\n .d-xl-none {\n display: none !important;\n }\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n}\n\n.d-print-block {\n display: none !important;\n}\n\n@media print {\n .d-print-block {\n display: block !important;\n }\n}\n\n.d-print-inline {\n display: none !important;\n}\n\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n}\n\n.d-print-inline-block {\n display: none !important;\n}\n\n@media print {\n .d-print-inline-block {\n display: inline-block !important;\n }\n}\n\n@media print {\n .d-print-none {\n display: none !important;\n }\n}\n\n.embed-responsive {\n position: relative;\n display: block;\n width: 100%;\n padding: 0;\n overflow: hidden;\n}\n\n.embed-responsive::before {\n display: block;\n content: \"\";\n}\n\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border: 0;\n}\n\n.embed-responsive-21by9::before {\n padding-top: 42.857143%;\n}\n\n.embed-responsive-16by9::before {\n padding-top: 56.25%;\n}\n\n.embed-responsive-4by3::before {\n padding-top: 75%;\n}\n\n.embed-responsive-1by1::before {\n padding-top: 100%;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n@media (min-width: 576px) {\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 768px) {\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 992px) {\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 1200px) {\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n}\n\n.float-left {\n float: left !important;\n}\n\n.float-right {\n float: right !important;\n}\n\n.float-none {\n float: none !important;\n}\n\n@media (min-width: 576px) {\n .float-sm-left {\n float: left !important;\n }\n .float-sm-right {\n float: right !important;\n }\n .float-sm-none {\n float: none !important;\n }\n}\n\n@media (min-width: 768px) {\n .float-md-left {\n float: left !important;\n }\n .float-md-right {\n float: right !important;\n }\n .float-md-none {\n float: none !important;\n }\n}\n\n@media (min-width: 992px) {\n .float-lg-left {\n float: left !important;\n }\n .float-lg-right {\n float: right !important;\n }\n .float-lg-none {\n float: none !important;\n }\n}\n\n@media (min-width: 1200px) {\n .float-xl-left {\n float: left !important;\n }\n .float-xl-right {\n float: right !important;\n }\n .float-xl-none {\n float: none !important;\n }\n}\n\n.position-static {\n position: static !important;\n}\n\n.position-relative {\n position: relative !important;\n}\n\n.position-absolute {\n position: absolute !important;\n}\n\n.position-fixed {\n position: fixed !important;\n}\n\n.position-sticky {\n position: sticky !important;\n}\n\n.fixed-top {\n position: fixed;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n\n.fixed-bottom {\n position: fixed;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1030;\n}\n\n@supports (position: sticky) {\n .sticky-top {\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n clip-path: inset(50%);\n border: 0;\n}\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n overflow: visible;\n clip: auto;\n white-space: normal;\n clip-path: none;\n}\n\n.w-25 {\n width: 25% !important;\n}\n\n.w-50 {\n width: 50% !important;\n}\n\n.w-75 {\n width: 75% !important;\n}\n\n.w-100 {\n width: 100% !important;\n}\n\n.h-25 {\n height: 25% !important;\n}\n\n.h-50 {\n height: 50% !important;\n}\n\n.h-75 {\n height: 75% !important;\n}\n\n.h-100 {\n height: 100% !important;\n}\n\n.mw-100 {\n max-width: 100% !important;\n}\n\n.mh-100 {\n max-height: 100% !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.mt-0,\n.my-0 {\n margin-top: 0 !important;\n}\n\n.mr-0,\n.mx-0 {\n margin-right: 0 !important;\n}\n\n.mb-0,\n.my-0 {\n margin-bottom: 0 !important;\n}\n\n.ml-0,\n.mx-0 {\n margin-left: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.mt-1,\n.my-1 {\n margin-top: 0.25rem !important;\n}\n\n.mr-1,\n.mx-1 {\n margin-right: 0.25rem !important;\n}\n\n.mb-1,\n.my-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.ml-1,\n.mx-1 {\n margin-left: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.mt-2,\n.my-2 {\n margin-top: 0.5rem !important;\n}\n\n.mr-2,\n.mx-2 {\n margin-right: 0.5rem !important;\n}\n\n.mb-2,\n.my-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.ml-2,\n.mx-2 {\n margin-left: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.mt-3,\n.my-3 {\n margin-top: 1rem !important;\n}\n\n.mr-3,\n.mx-3 {\n margin-right: 1rem !important;\n}\n\n.mb-3,\n.my-3 {\n margin-bottom: 1rem !important;\n}\n\n.ml-3,\n.mx-3 {\n margin-left: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.mt-4,\n.my-4 {\n margin-top: 1.5rem !important;\n}\n\n.mr-4,\n.mx-4 {\n margin-right: 1.5rem !important;\n}\n\n.mb-4,\n.my-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.ml-4,\n.mx-4 {\n margin-left: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.mt-5,\n.my-5 {\n margin-top: 3rem !important;\n}\n\n.mr-5,\n.mx-5 {\n margin-right: 3rem !important;\n}\n\n.mb-5,\n.my-5 {\n margin-bottom: 3rem !important;\n}\n\n.ml-5,\n.mx-5 {\n margin-left: 3rem !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.pt-0,\n.py-0 {\n padding-top: 0 !important;\n}\n\n.pr-0,\n.px-0 {\n padding-right: 0 !important;\n}\n\n.pb-0,\n.py-0 {\n padding-bottom: 0 !important;\n}\n\n.pl-0,\n.px-0 {\n padding-left: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.pt-1,\n.py-1 {\n padding-top: 0.25rem !important;\n}\n\n.pr-1,\n.px-1 {\n padding-right: 0.25rem !important;\n}\n\n.pb-1,\n.py-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pl-1,\n.px-1 {\n padding-left: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.pt-2,\n.py-2 {\n padding-top: 0.5rem !important;\n}\n\n.pr-2,\n.px-2 {\n padding-right: 0.5rem !important;\n}\n\n.pb-2,\n.py-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pl-2,\n.px-2 {\n padding-left: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.pt-3,\n.py-3 {\n padding-top: 1rem !important;\n}\n\n.pr-3,\n.px-3 {\n padding-right: 1rem !important;\n}\n\n.pb-3,\n.py-3 {\n padding-bottom: 1rem !important;\n}\n\n.pl-3,\n.px-3 {\n padding-left: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.pt-4,\n.py-4 {\n padding-top: 1.5rem !important;\n}\n\n.pr-4,\n.px-4 {\n padding-right: 1.5rem !important;\n}\n\n.pb-4,\n.py-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pl-4,\n.px-4 {\n padding-left: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.pt-5,\n.py-5 {\n padding-top: 3rem !important;\n}\n\n.pr-5,\n.px-5 {\n padding-right: 3rem !important;\n}\n\n.pb-5,\n.py-5 {\n padding-bottom: 3rem !important;\n}\n\n.pl-5,\n.px-5 {\n padding-left: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mt-auto,\n.my-auto {\n margin-top: auto !important;\n}\n\n.mr-auto,\n.mx-auto {\n margin-right: auto !important;\n}\n\n.mb-auto,\n.my-auto {\n margin-bottom: auto !important;\n}\n\n.ml-auto,\n.mx-auto {\n margin-left: auto !important;\n}\n\n@media (min-width: 576px) {\n .m-sm-0 {\n margin: 0 !important;\n }\n .mt-sm-0,\n .my-sm-0 {\n margin-top: 0 !important;\n }\n .mr-sm-0,\n .mx-sm-0 {\n margin-right: 0 !important;\n }\n .mb-sm-0,\n .my-sm-0 {\n margin-bottom: 0 !important;\n }\n .ml-sm-0,\n .mx-sm-0 {\n margin-left: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .mt-sm-1,\n .my-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mr-sm-1,\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n }\n .mb-sm-1,\n .my-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-sm-1,\n .mx-sm-1 {\n margin-left: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .mt-sm-2,\n .my-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mr-sm-2,\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n }\n .mb-sm-2,\n .my-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-sm-2,\n .mx-sm-2 {\n margin-left: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .mt-sm-3,\n .my-sm-3 {\n margin-top: 1rem !important;\n }\n .mr-sm-3,\n .mx-sm-3 {\n margin-right: 1rem !important;\n }\n .mb-sm-3,\n .my-sm-3 {\n margin-bottom: 1rem !important;\n }\n .ml-sm-3,\n .mx-sm-3 {\n margin-left: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .mt-sm-4,\n .my-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mr-sm-4,\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n }\n .mb-sm-4,\n .my-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-sm-4,\n .mx-sm-4 {\n margin-left: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .mt-sm-5,\n .my-sm-5 {\n margin-top: 3rem !important;\n }\n .mr-sm-5,\n .mx-sm-5 {\n margin-right: 3rem !important;\n }\n .mb-sm-5,\n .my-sm-5 {\n margin-bottom: 3rem !important;\n }\n .ml-sm-5,\n .mx-sm-5 {\n margin-left: 3rem !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .pt-sm-0,\n .py-sm-0 {\n padding-top: 0 !important;\n }\n .pr-sm-0,\n .px-sm-0 {\n padding-right: 0 !important;\n }\n .pb-sm-0,\n .py-sm-0 {\n padding-bottom: 0 !important;\n }\n .pl-sm-0,\n .px-sm-0 {\n padding-left: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .pt-sm-1,\n .py-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pr-sm-1,\n .px-sm-1 {\n padding-right: 0.25rem !important;\n }\n .pb-sm-1,\n .py-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-sm-1,\n .px-sm-1 {\n padding-left: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .pt-sm-2,\n .py-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pr-sm-2,\n .px-sm-2 {\n padding-right: 0.5rem !important;\n }\n .pb-sm-2,\n .py-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-sm-2,\n .px-sm-2 {\n padding-left: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .pt-sm-3,\n .py-sm-3 {\n padding-top: 1rem !important;\n }\n .pr-sm-3,\n .px-sm-3 {\n padding-right: 1rem !important;\n }\n .pb-sm-3,\n .py-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pl-sm-3,\n .px-sm-3 {\n padding-left: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .pt-sm-4,\n .py-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pr-sm-4,\n .px-sm-4 {\n padding-right: 1.5rem !important;\n }\n .pb-sm-4,\n .py-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-sm-4,\n .px-sm-4 {\n padding-left: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .pt-sm-5,\n .py-sm-5 {\n padding-top: 3rem !important;\n }\n .pr-sm-5,\n .px-sm-5 {\n padding-right: 3rem !important;\n }\n .pb-sm-5,\n .py-sm-5 {\n padding-bottom: 3rem !important;\n }\n .pl-sm-5,\n .px-sm-5 {\n padding-left: 3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mt-sm-auto,\n .my-sm-auto {\n margin-top: auto !important;\n }\n .mr-sm-auto,\n .mx-sm-auto {\n margin-right: auto !important;\n }\n .mb-sm-auto,\n .my-sm-auto {\n margin-bottom: auto !important;\n }\n .ml-sm-auto,\n .mx-sm-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 768px) {\n .m-md-0 {\n margin: 0 !important;\n }\n .mt-md-0,\n .my-md-0 {\n margin-top: 0 !important;\n }\n .mr-md-0,\n .mx-md-0 {\n margin-right: 0 !important;\n }\n .mb-md-0,\n .my-md-0 {\n margin-bottom: 0 !important;\n }\n .ml-md-0,\n .mx-md-0 {\n margin-left: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .mt-md-1,\n .my-md-1 {\n margin-top: 0.25rem !important;\n }\n .mr-md-1,\n .mx-md-1 {\n margin-right: 0.25rem !important;\n }\n .mb-md-1,\n .my-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-md-1,\n .mx-md-1 {\n margin-left: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .mt-md-2,\n .my-md-2 {\n margin-top: 0.5rem !important;\n }\n .mr-md-2,\n .mx-md-2 {\n margin-right: 0.5rem !important;\n }\n .mb-md-2,\n .my-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-md-2,\n .mx-md-2 {\n margin-left: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .mt-md-3,\n .my-md-3 {\n margin-top: 1rem !important;\n }\n .mr-md-3,\n .mx-md-3 {\n margin-right: 1rem !important;\n }\n .mb-md-3,\n .my-md-3 {\n margin-bottom: 1rem !important;\n }\n .ml-md-3,\n .mx-md-3 {\n margin-left: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .mt-md-4,\n .my-md-4 {\n margin-top: 1.5rem !important;\n }\n .mr-md-4,\n .mx-md-4 {\n margin-right: 1.5rem !important;\n }\n .mb-md-4,\n .my-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-md-4,\n .mx-md-4 {\n margin-left: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .mt-md-5,\n .my-md-5 {\n margin-top: 3rem !important;\n }\n .mr-md-5,\n .mx-md-5 {\n margin-right: 3rem !important;\n }\n .mb-md-5,\n .my-md-5 {\n margin-bottom: 3rem !important;\n }\n .ml-md-5,\n .mx-md-5 {\n margin-left: 3rem !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .pt-md-0,\n .py-md-0 {\n padding-top: 0 !important;\n }\n .pr-md-0,\n .px-md-0 {\n padding-right: 0 !important;\n }\n .pb-md-0,\n .py-md-0 {\n padding-bottom: 0 !important;\n }\n .pl-md-0,\n .px-md-0 {\n padding-left: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .pt-md-1,\n .py-md-1 {\n padding-top: 0.25rem !important;\n }\n .pr-md-1,\n .px-md-1 {\n padding-right: 0.25rem !important;\n }\n .pb-md-1,\n .py-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-md-1,\n .px-md-1 {\n padding-left: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .pt-md-2,\n .py-md-2 {\n padding-top: 0.5rem !important;\n }\n .pr-md-2,\n .px-md-2 {\n padding-right: 0.5rem !important;\n }\n .pb-md-2,\n .py-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-md-2,\n .px-md-2 {\n padding-left: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .pt-md-3,\n .py-md-3 {\n padding-top: 1rem !important;\n }\n .pr-md-3,\n .px-md-3 {\n padding-right: 1rem !important;\n }\n .pb-md-3,\n .py-md-3 {\n padding-bottom: 1rem !important;\n }\n .pl-md-3,\n .px-md-3 {\n padding-left: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .pt-md-4,\n .py-md-4 {\n padding-top: 1.5rem !important;\n }\n .pr-md-4,\n .px-md-4 {\n padding-right: 1.5rem !important;\n }\n .pb-md-4,\n .py-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-md-4,\n .px-md-4 {\n padding-left: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .pt-md-5,\n .py-md-5 {\n padding-top: 3rem !important;\n }\n .pr-md-5,\n .px-md-5 {\n padding-right: 3rem !important;\n }\n .pb-md-5,\n .py-md-5 {\n padding-bottom: 3rem !important;\n }\n .pl-md-5,\n .px-md-5 {\n padding-left: 3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mt-md-auto,\n .my-md-auto {\n margin-top: auto !important;\n }\n .mr-md-auto,\n .mx-md-auto {\n margin-right: auto !important;\n }\n .mb-md-auto,\n .my-md-auto {\n margin-bottom: auto !important;\n }\n .ml-md-auto,\n .mx-md-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 992px) {\n .m-lg-0 {\n margin: 0 !important;\n }\n .mt-lg-0,\n .my-lg-0 {\n margin-top: 0 !important;\n }\n .mr-lg-0,\n .mx-lg-0 {\n margin-right: 0 !important;\n }\n .mb-lg-0,\n .my-lg-0 {\n margin-bottom: 0 !important;\n }\n .ml-lg-0,\n .mx-lg-0 {\n margin-left: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .mt-lg-1,\n .my-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mr-lg-1,\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n }\n .mb-lg-1,\n .my-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-lg-1,\n .mx-lg-1 {\n margin-left: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .mt-lg-2,\n .my-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mr-lg-2,\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n }\n .mb-lg-2,\n .my-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-lg-2,\n .mx-lg-2 {\n margin-left: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .mt-lg-3,\n .my-lg-3 {\n margin-top: 1rem !important;\n }\n .mr-lg-3,\n .mx-lg-3 {\n margin-right: 1rem !important;\n }\n .mb-lg-3,\n .my-lg-3 {\n margin-bottom: 1rem !important;\n }\n .ml-lg-3,\n .mx-lg-3 {\n margin-left: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .mt-lg-4,\n .my-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mr-lg-4,\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n }\n .mb-lg-4,\n .my-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-lg-4,\n .mx-lg-4 {\n margin-left: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .mt-lg-5,\n .my-lg-5 {\n margin-top: 3rem !important;\n }\n .mr-lg-5,\n .mx-lg-5 {\n margin-right: 3rem !important;\n }\n .mb-lg-5,\n .my-lg-5 {\n margin-bottom: 3rem !important;\n }\n .ml-lg-5,\n .mx-lg-5 {\n margin-left: 3rem !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .pt-lg-0,\n .py-lg-0 {\n padding-top: 0 !important;\n }\n .pr-lg-0,\n .px-lg-0 {\n padding-right: 0 !important;\n }\n .pb-lg-0,\n .py-lg-0 {\n padding-bottom: 0 !important;\n }\n .pl-lg-0,\n .px-lg-0 {\n padding-left: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .pt-lg-1,\n .py-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pr-lg-1,\n .px-lg-1 {\n padding-right: 0.25rem !important;\n }\n .pb-lg-1,\n .py-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-lg-1,\n .px-lg-1 {\n padding-left: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .pt-lg-2,\n .py-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pr-lg-2,\n .px-lg-2 {\n padding-right: 0.5rem !important;\n }\n .pb-lg-2,\n .py-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-lg-2,\n .px-lg-2 {\n padding-left: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .pt-lg-3,\n .py-lg-3 {\n padding-top: 1rem !important;\n }\n .pr-lg-3,\n .px-lg-3 {\n padding-right: 1rem !important;\n }\n .pb-lg-3,\n .py-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pl-lg-3,\n .px-lg-3 {\n padding-left: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .pt-lg-4,\n .py-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pr-lg-4,\n .px-lg-4 {\n padding-right: 1.5rem !important;\n }\n .pb-lg-4,\n .py-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-lg-4,\n .px-lg-4 {\n padding-left: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .pt-lg-5,\n .py-lg-5 {\n padding-top: 3rem !important;\n }\n .pr-lg-5,\n .px-lg-5 {\n padding-right: 3rem !important;\n }\n .pb-lg-5,\n .py-lg-5 {\n padding-bottom: 3rem !important;\n }\n .pl-lg-5,\n .px-lg-5 {\n padding-left: 3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mt-lg-auto,\n .my-lg-auto {\n margin-top: auto !important;\n }\n .mr-lg-auto,\n .mx-lg-auto {\n margin-right: auto !important;\n }\n .mb-lg-auto,\n .my-lg-auto {\n margin-bottom: auto !important;\n }\n .ml-lg-auto,\n .mx-lg-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 1200px) {\n .m-xl-0 {\n margin: 0 !important;\n }\n .mt-xl-0,\n .my-xl-0 {\n margin-top: 0 !important;\n }\n .mr-xl-0,\n .mx-xl-0 {\n margin-right: 0 !important;\n }\n .mb-xl-0,\n .my-xl-0 {\n margin-bottom: 0 !important;\n }\n .ml-xl-0,\n .mx-xl-0 {\n margin-left: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .mt-xl-1,\n .my-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mr-xl-1,\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n }\n .mb-xl-1,\n .my-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-xl-1,\n .mx-xl-1 {\n margin-left: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .mt-xl-2,\n .my-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mr-xl-2,\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n }\n .mb-xl-2,\n .my-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-xl-2,\n .mx-xl-2 {\n margin-left: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .mt-xl-3,\n .my-xl-3 {\n margin-top: 1rem !important;\n }\n .mr-xl-3,\n .mx-xl-3 {\n margin-right: 1rem !important;\n }\n .mb-xl-3,\n .my-xl-3 {\n margin-bottom: 1rem !important;\n }\n .ml-xl-3,\n .mx-xl-3 {\n margin-left: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .mt-xl-4,\n .my-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mr-xl-4,\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n }\n .mb-xl-4,\n .my-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-xl-4,\n .mx-xl-4 {\n margin-left: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .mt-xl-5,\n .my-xl-5 {\n margin-top: 3rem !important;\n }\n .mr-xl-5,\n .mx-xl-5 {\n margin-right: 3rem !important;\n }\n .mb-xl-5,\n .my-xl-5 {\n margin-bottom: 3rem !important;\n }\n .ml-xl-5,\n .mx-xl-5 {\n margin-left: 3rem !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .pt-xl-0,\n .py-xl-0 {\n padding-top: 0 !important;\n }\n .pr-xl-0,\n .px-xl-0 {\n padding-right: 0 !important;\n }\n .pb-xl-0,\n .py-xl-0 {\n padding-bottom: 0 !important;\n }\n .pl-xl-0,\n .px-xl-0 {\n padding-left: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .pt-xl-1,\n .py-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pr-xl-1,\n .px-xl-1 {\n padding-right: 0.25rem !important;\n }\n .pb-xl-1,\n .py-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-xl-1,\n .px-xl-1 {\n padding-left: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .pt-xl-2,\n .py-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pr-xl-2,\n .px-xl-2 {\n padding-right: 0.5rem !important;\n }\n .pb-xl-2,\n .py-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-xl-2,\n .px-xl-2 {\n padding-left: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .pt-xl-3,\n .py-xl-3 {\n padding-top: 1rem !important;\n }\n .pr-xl-3,\n .px-xl-3 {\n padding-right: 1rem !important;\n }\n .pb-xl-3,\n .py-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pl-xl-3,\n .px-xl-3 {\n padding-left: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .pt-xl-4,\n .py-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pr-xl-4,\n .px-xl-4 {\n padding-right: 1.5rem !important;\n }\n .pb-xl-4,\n .py-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-xl-4,\n .px-xl-4 {\n padding-left: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .pt-xl-5,\n .py-xl-5 {\n padding-top: 3rem !important;\n }\n .pr-xl-5,\n .px-xl-5 {\n padding-right: 3rem !important;\n }\n .pb-xl-5,\n .py-xl-5 {\n padding-bottom: 3rem !important;\n }\n .pl-xl-5,\n .px-xl-5 {\n padding-left: 3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mt-xl-auto,\n .my-xl-auto {\n margin-top: auto !important;\n }\n .mr-xl-auto,\n .mx-xl-auto {\n margin-right: auto !important;\n }\n .mb-xl-auto,\n .my-xl-auto {\n margin-bottom: auto !important;\n }\n .ml-xl-auto,\n .mx-xl-auto {\n margin-left: auto !important;\n }\n}\n\n.text-justify {\n text-align: justify !important;\n}\n\n.text-nowrap {\n white-space: nowrap !important;\n}\n\n.text-truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.text-left {\n text-align: left !important;\n}\n\n.text-right {\n text-align: right !important;\n}\n\n.text-center {\n text-align: center !important;\n}\n\n@media (min-width: 576px) {\n .text-sm-left {\n text-align: left !important;\n }\n .text-sm-right {\n text-align: right !important;\n }\n .text-sm-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 768px) {\n .text-md-left {\n text-align: left !important;\n }\n .text-md-right {\n text-align: right !important;\n }\n .text-md-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 992px) {\n .text-lg-left {\n text-align: left !important;\n }\n .text-lg-right {\n text-align: right !important;\n }\n .text-lg-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 1200px) {\n .text-xl-left {\n text-align: left !important;\n }\n .text-xl-right {\n text-align: right !important;\n }\n .text-xl-center {\n text-align: center !important;\n }\n}\n\n.text-lowercase {\n text-transform: lowercase !important;\n}\n\n.text-uppercase {\n text-transform: uppercase !important;\n}\n\n.text-capitalize {\n text-transform: capitalize !important;\n}\n\n.font-weight-light {\n font-weight: 300 !important;\n}\n\n.font-weight-normal {\n font-weight: 400 !important;\n}\n\n.font-weight-bold {\n font-weight: 700 !important;\n}\n\n.font-italic {\n font-style: italic !important;\n}\n\n.text-white {\n color: #fff !important;\n}\n\n.text-primary {\n color: #007bff !important;\n}\n\na.text-primary:focus, a.text-primary:hover {\n color: #0062cc !important;\n}\n\n.text-secondary {\n color: #868e96 !important;\n}\n\na.text-secondary:focus, a.text-secondary:hover {\n color: #6c757d !important;\n}\n\n.text-success {\n color: #28a745 !important;\n}\n\na.text-success:focus, a.text-success:hover {\n color: #1e7e34 !important;\n}\n\n.text-info {\n color: #17a2b8 !important;\n}\n\na.text-info:focus, a.text-info:hover {\n color: #117a8b !important;\n}\n\n.text-warning {\n color: #ffc107 !important;\n}\n\na.text-warning:focus, a.text-warning:hover {\n color: #d39e00 !important;\n}\n\n.text-danger {\n color: #dc3545 !important;\n}\n\na.text-danger:focus, a.text-danger:hover {\n color: #bd2130 !important;\n}\n\n.text-light {\n color: #f8f9fa !important;\n}\n\na.text-light:focus, a.text-light:hover {\n color: #dae0e5 !important;\n}\n\n.text-dark {\n color: #343a40 !important;\n}\n\na.text-dark:focus, a.text-dark:hover {\n color: #1d2124 !important;\n}\n\n.text-muted {\n color: #868e96 !important;\n}\n\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n\n.visible {\n visibility: visible !important;\n}\n\n.invisible {\n visibility: hidden !important;\n}\n\n@media print {\n *,\n *::before,\n *::after {\n text-shadow: none !important;\n box-shadow: none !important;\n }\n a,\n a:visited {\n text-decoration: underline;\n }\n abbr[title]::after {\n content: \" (\" attr(title) \")\";\n }\n pre {\n white-space: pre-wrap !important;\n }\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n .navbar {\n display: none;\n }\n .badge {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #ddd !important;\n }\n}\n\n/*# sourceMappingURL=bootstrap.css.map */","// Variables\n//\n// Variables should follow the `$component-state-property-size` formula for\n// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.\n\n\n//\n// Color system\n//\n\n// stylelint-disable\n$white: #fff !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #868e96 !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n$black: #000 !default;\n\n$grays: () !default;\n$grays: map-merge((\n \"100\": $gray-100,\n \"200\": $gray-200,\n \"300\": $gray-300,\n \"400\": $gray-400,\n \"500\": $gray-500,\n \"600\": $gray-600,\n \"700\": $gray-700,\n \"800\": $gray-800,\n \"900\": $gray-900\n), $grays);\n\n$blue: #007bff !default;\n$indigo: #6610f2 !default;\n$purple: #6f42c1 !default;\n$pink: #e83e8c !default;\n$red: #dc3545 !default;\n$orange: #fd7e14 !default;\n$yellow: #ffc107 !default;\n$green: #28a745 !default;\n$teal: #20c997 !default;\n$cyan: #17a2b8 !default;\n\n$colors: () !default;\n$colors: map-merge((\n \"blue\": $blue,\n \"indigo\": $indigo,\n \"purple\": $purple,\n \"pink\": $pink,\n \"red\": $red,\n \"orange\": $orange,\n \"yellow\": $yellow,\n \"green\": $green,\n \"teal\": $teal,\n \"cyan\": $cyan,\n \"white\": $white,\n \"gray\": $gray-600,\n \"gray-dark\": $gray-800\n), $colors);\n\n$primary: $blue !default;\n$secondary: $gray-600 !default;\n$success: $green !default;\n$info: $cyan !default;\n$warning: $yellow !default;\n$danger: $red !default;\n$light: $gray-100 !default;\n$dark: $gray-800 !default;\n\n$theme-colors: () !default;\n$theme-colors: map-merge((\n \"primary\": $primary,\n \"secondary\": $secondary,\n \"success\": $success,\n \"info\": $info,\n \"warning\": $warning,\n \"danger\": $danger,\n \"light\": $light,\n \"dark\": $dark\n), $theme-colors);\n// stylelint-enable\n\n// Set a specific jump point for requesting color jumps\n$theme-color-interval: 8% !default;\n\n// The yiq lightness value that determines when the lightness of color changes from \"dark\" to \"light\". Acceptable values are between 0 and 255.\n$yiq-contrasted-threshold: 150 !default;\n\n// Customize the light and dark text colors for use in our YIQ color contrast function.\n$yiq-text-dark: $gray-900 !default;\n$yiq-text-light: $white !default;\n\n// Options\n//\n// Quickly modify global styling by enabling or disabling optional features.\n\n$enable-caret: true !default;\n$enable-rounded: true !default;\n$enable-shadows: false !default;\n$enable-gradients: false !default;\n$enable-transitions: true !default;\n$enable-hover-media-query: false !default;\n$enable-grid-classes: true !default;\n$enable-print-styles: true !default;\n\n\n// Spacing\n//\n// Control the default styling of most Bootstrap elements by modifying these\n// variables. Mostly focused on spacing.\n// You can add more entries to the $spacers map, should you need more variation.\n\n$spacer: 1rem !default;\n$spacers: (\n 0: 0,\n 1: ($spacer * .25),\n 2: ($spacer * .5),\n 3: $spacer,\n 4: ($spacer * 1.5),\n 5: ($spacer * 3)\n) !default;\n\n// This variable affects the `.h-*` and `.w-*` classes.\n$sizes: (\n 25: 25%,\n 50: 50%,\n 75: 75%,\n 100: 100%\n) !default;\n\n// Body\n//\n// Settings for the `` element.\n\n$body-bg: $white !default;\n$body-color: $gray-900 !default;\n\n// Links\n//\n// Style anchor elements.\n\n$link-color: theme-color(\"primary\") !default;\n$link-decoration: none !default;\n$link-hover-color: darken($link-color, 15%) !default;\n$link-hover-decoration: underline !default;\n\n// Paragraphs\n//\n// Style p element.\n\n$paragraph-margin-bottom: 1rem !default;\n\n\n// Grid breakpoints\n//\n// Define the minimum dimensions at which your layout will change,\n// adapting to different screen sizes, for use in media queries.\n\n$grid-breakpoints: (\n xs: 0,\n sm: 576px,\n md: 768px,\n lg: 992px,\n xl: 1200px\n) !default;\n\n@include _assert-ascending($grid-breakpoints, \"$grid-breakpoints\");\n@include _assert-starts-at-zero($grid-breakpoints);\n\n\n// Grid containers\n//\n// Define the maximum width of `.container` for different screen sizes.\n\n$container-max-widths: (\n sm: 540px,\n md: 720px,\n lg: 960px,\n xl: 1140px\n) !default;\n\n@include _assert-ascending($container-max-widths, \"$container-max-widths\");\n\n\n// Grid columns\n//\n// Set the number of columns and specify the width of the gutters.\n\n$grid-columns: 12 !default;\n$grid-gutter-width: 30px !default;\n\n// Components\n//\n// Define common padding and border radius sizes and more.\n\n$line-height-lg: 1.5 !default;\n$line-height-sm: 1.5 !default;\n\n$border-width: 1px !default;\n$border-color: $gray-200 !default;\n\n$border-radius: .25rem !default;\n$border-radius-lg: .3rem !default;\n$border-radius-sm: .2rem !default;\n\n$component-active-color: $white !default;\n$component-active-bg: theme-color(\"primary\") !default;\n\n$caret-width: .3em !default;\n\n$transition-base: all .2s ease-in-out !default;\n$transition-fade: opacity .15s linear !default;\n$transition-collapse: height .35s ease !default;\n\n\n// Fonts\n//\n// Font, line-height, and color for body text, headings, and more.\n\n// stylelint-disable value-keyword-case\n$font-family-sans-serif: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\" !default;\n$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !default;\n$font-family-base: $font-family-sans-serif !default;\n// stylelint-enable value-keyword-case\n\n$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`\n$font-size-lg: ($font-size-base * 1.25) !default;\n$font-size-sm: ($font-size-base * .875) !default;\n\n$font-weight-light: 300 !default;\n$font-weight-normal: 400 !default;\n$font-weight-bold: 700 !default;\n\n$font-weight-base: $font-weight-normal !default;\n$line-height-base: 1.5 !default;\n\n$h1-font-size: $font-size-base * 2.5 !default;\n$h2-font-size: $font-size-base * 2 !default;\n$h3-font-size: $font-size-base * 1.75 !default;\n$h4-font-size: $font-size-base * 1.5 !default;\n$h5-font-size: $font-size-base * 1.25 !default;\n$h6-font-size: $font-size-base !default;\n\n$headings-margin-bottom: ($spacer / 2) !default;\n$headings-font-family: inherit !default;\n$headings-font-weight: 500 !default;\n$headings-line-height: 1.2 !default;\n$headings-color: inherit !default;\n\n$display1-size: 6rem !default;\n$display2-size: 5.5rem !default;\n$display3-size: 4.5rem !default;\n$display4-size: 3.5rem !default;\n\n$display1-weight: 300 !default;\n$display2-weight: 300 !default;\n$display3-weight: 300 !default;\n$display4-weight: 300 !default;\n$display-line-height: $headings-line-height !default;\n\n$lead-font-size: ($font-size-base * 1.25) !default;\n$lead-font-weight: 300 !default;\n\n$small-font-size: 80% !default;\n\n$text-muted: $gray-600 !default;\n\n$blockquote-small-color: $gray-600 !default;\n$blockquote-font-size: ($font-size-base * 1.25) !default;\n\n$hr-border-color: rgba($black, .1) !default;\n$hr-border-width: $border-width !default;\n\n$mark-padding: .2em !default;\n\n$dt-font-weight: $font-weight-bold !default;\n\n$kbd-box-shadow: inset 0 -.1rem 0 rgba($black, .25) !default;\n$nested-kbd-font-weight: $font-weight-bold !default;\n\n$list-inline-padding: .5rem !default;\n\n$mark-bg: #fcf8e3 !default;\n\n$hr-margin-y: $spacer !default;\n\n\n// Tables\n//\n// Customizes the `.table` component with basic values, each used across all table variations.\n\n$table-cell-padding: .75rem !default;\n$table-cell-padding-sm: .3rem !default;\n\n$table-bg: transparent !default;\n$table-accent-bg: rgba($black, .05) !default;\n$table-hover-bg: rgba($black, .075) !default;\n$table-active-bg: $table-hover-bg !default;\n\n$table-border-width: $border-width !default;\n$table-border-color: $gray-300 !default;\n\n$table-head-bg: $gray-200 !default;\n$table-head-color: $gray-700 !default;\n\n$table-dark-bg: $gray-900 !default;\n$table-dark-accent-bg: rgba($white, .05) !default;\n$table-dark-hover-bg: rgba($white, .075) !default;\n$table-dark-border-color: lighten($gray-900, 7.5%) !default;\n$table-dark-color: $body-bg !default;\n\n\n// Buttons + Forms\n//\n// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.\n\n$input-btn-padding-y: .375rem !default;\n$input-btn-padding-x: .75rem !default;\n$input-btn-line-height: $line-height-base !default;\n\n$input-btn-focus-width: .2rem !default;\n$input-btn-focus-color: rgba(theme-color(\"primary\"), .25) !default;\n$input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default;\n\n$input-btn-padding-y-sm: .25rem !default;\n$input-btn-padding-x-sm: .5rem !default;\n$input-btn-line-height-sm: $line-height-sm !default;\n\n$input-btn-padding-y-lg: .5rem !default;\n$input-btn-padding-x-lg: 1rem !default;\n$input-btn-line-height-lg: $line-height-lg !default;\n\n$input-btn-border-width: $border-width !default;\n\n\n// Buttons\n//\n// For each of Bootstrap's buttons, define text, background, and border color.\n\n$btn-padding-y: $input-btn-padding-y !default;\n$btn-padding-x: $input-btn-padding-x !default;\n$btn-line-height: $input-btn-line-height !default;\n\n$btn-padding-y-sm: $input-btn-padding-y-sm !default;\n$btn-padding-x-sm: $input-btn-padding-x-sm !default;\n$btn-line-height-sm: $input-btn-line-height-sm !default;\n\n$btn-padding-y-lg: $input-btn-padding-y-lg !default;\n$btn-padding-x-lg: $input-btn-padding-x-lg !default;\n$btn-line-height-lg: $input-btn-line-height-lg !default;\n\n$btn-border-width: $input-btn-border-width !default;\n\n$btn-font-weight: $font-weight-normal !default;\n$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;\n$btn-focus-width: $input-btn-focus-width !default;\n$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$btn-disabled-opacity: .65 !default;\n$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;\n\n$btn-link-disabled-color: $gray-600 !default;\n\n$btn-block-spacing-y: .5rem !default;\n\n// Allows for customizing button radius independently from global border radius\n$btn-border-radius: $border-radius !default;\n$btn-border-radius-lg: $border-radius-lg !default;\n$btn-border-radius-sm: $border-radius-sm !default;\n\n$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n\n// Forms\n\n$input-padding-y: $input-btn-padding-y !default;\n$input-padding-x: $input-btn-padding-x !default;\n$input-line-height: $input-btn-line-height !default;\n\n$input-padding-y-sm: $input-btn-padding-y-sm !default;\n$input-padding-x-sm: $input-btn-padding-x-sm !default;\n$input-line-height-sm: $input-btn-line-height-sm !default;\n\n$input-padding-y-lg: $input-btn-padding-y-lg !default;\n$input-padding-x-lg: $input-btn-padding-x-lg !default;\n$input-line-height-lg: $input-btn-line-height-lg !default;\n\n$input-bg: $white !default;\n$input-disabled-bg: $gray-200 !default;\n\n$input-color: $gray-700 !default;\n$input-border-color: $gray-400 !default;\n$input-border-width: $input-btn-border-width !default;\n$input-box-shadow: inset 0 1px 1px rgba($black, .075) !default;\n\n$input-border-radius: $border-radius !default;\n$input-border-radius-lg: $border-radius-lg !default;\n$input-border-radius-sm: $border-radius-sm !default;\n\n$input-focus-bg: $input-bg !default;\n$input-focus-border-color: lighten(theme-color(\"primary\"), 25%) !default;\n$input-focus-color: $input-color !default;\n$input-focus-width: $input-btn-focus-width !default;\n$input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$input-placeholder-color: $gray-600 !default;\n\n$input-height-border: $input-btn-border-width * 2 !default;\n\n$input-height-inner: ($font-size-base * $input-btn-line-height) + ($input-btn-padding-y * 2) !default;\n$input-height: calc(#{$input-height-inner} + #{$input-height-border}) !default;\n\n$input-height-inner-sm: ($font-size-sm * $input-btn-line-height-sm) + ($input-btn-padding-y-sm * 2) !default;\n$input-height-sm: calc(#{$input-height-inner-sm} + #{$input-height-border}) !default;\n\n$input-height-inner-lg: ($font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2) !default;\n$input-height-lg: calc(#{$input-height-inner-lg} + #{$input-height-border}) !default;\n\n$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$form-text-margin-top: .25rem !default;\n\n$form-check-input-gutter: 1.25rem !default;\n$form-check-input-margin-y: .3rem !default;\n$form-check-input-margin-x: .25rem !default;\n\n$form-check-inline-margin-x: .75rem !default;\n$form-check-inline-input-margin-x: .3125rem !default;\n\n$form-group-margin-bottom: 1rem !default;\n\n$input-group-addon-color: $input-color !default;\n$input-group-addon-bg: $gray-200 !default;\n$input-group-addon-border-color: $input-border-color !default;\n\n$custom-control-gutter: 1.5rem !default;\n$custom-control-spacer-x: 1rem !default;\n\n$custom-control-indicator-size: 1rem !default;\n$custom-control-indicator-bg: $gray-300 !default;\n$custom-control-indicator-bg-size: 50% 50% !default;\n$custom-control-indicator-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;\n\n$custom-control-indicator-disabled-bg: $gray-200 !default;\n$custom-control-label-disabled-color: $gray-600 !default;\n\n$custom-control-indicator-checked-color: $white !default;\n$custom-control-indicator-checked-bg: theme-color(\"primary\") !default;\n$custom-control-indicator-checked-box-shadow: none !default;\n\n$custom-control-indicator-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;\n\n$custom-control-indicator-active-color: $white !default;\n$custom-control-indicator-active-bg: lighten(theme-color(\"primary\"), 35%) !default;\n$custom-control-indicator-active-box-shadow: none !default;\n\n$custom-checkbox-indicator-border-radius: $border-radius !default;\n$custom-checkbox-indicator-icon-checked: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$custom-checkbox-indicator-indeterminate-bg: theme-color(\"primary\") !default;\n$custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;\n$custom-checkbox-indicator-icon-indeterminate: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$custom-checkbox-indicator-indeterminate-box-shadow: none !default;\n\n$custom-radio-indicator-border-radius: 50% !default;\n$custom-radio-indicator-icon-checked: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='#{$custom-control-indicator-checked-color}'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$custom-select-padding-y: .375rem !default;\n$custom-select-padding-x: .75rem !default;\n$custom-select-height: $input-height !default;\n$custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator\n$custom-select-line-height: $input-btn-line-height !default;\n$custom-select-color: $input-color !default;\n$custom-select-disabled-color: $gray-600 !default;\n$custom-select-bg: $white !default;\n$custom-select-disabled-bg: $gray-200 !default;\n$custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions\n$custom-select-indicator-color: $gray-800 !default;\n$custom-select-indicator: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$custom-select-border-width: $input-btn-border-width !default;\n$custom-select-border-color: $input-border-color !default;\n$custom-select-border-radius: $border-radius !default;\n\n$custom-select-focus-border-color: $input-focus-border-color !default;\n$custom-select-focus-box-shadow: inset 0 1px 2px rgba($black, .075), $input-btn-focus-box-shadow !default;\n\n$custom-select-font-size-sm: 75% !default;\n$custom-select-height-sm: $input-height-sm !default;\n\n$custom-select-font-size-lg: 125% !default;\n$custom-select-height-lg: $input-height-lg !default;\n\n$custom-file-height: $input-height !default;\n$custom-file-focus-border-color: $input-focus-border-color !default;\n$custom-file-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$custom-file-padding-y: $input-btn-padding-y !default;\n$custom-file-padding-x: $input-btn-padding-x !default;\n$custom-file-line-height: $input-btn-line-height !default;\n$custom-file-color: $input-color !default;\n$custom-file-bg: $input-bg !default;\n$custom-file-border-width: $input-btn-border-width !default;\n$custom-file-border-color: $input-border-color !default;\n$custom-file-border-radius: $input-border-radius !default;\n$custom-file-box-shadow: $input-box-shadow !default;\n$custom-file-button-color: $custom-file-color !default;\n$custom-file-button-bg: $input-group-addon-bg !default;\n$custom-file-text: (\n en: \"Browse\"\n) !default;\n\n\n// Form validation\n$form-feedback-margin-top: $form-text-margin-top !default;\n$form-feedback-font-size: $small-font-size !default;\n$form-feedback-valid-color: theme-color(\"success\") !default;\n$form-feedback-invalid-color: theme-color(\"danger\") !default;\n\n\n// Dropdowns\n//\n// Dropdown menu container and contents.\n\n$dropdown-min-width: 10rem !default;\n$dropdown-padding-y: .5rem !default;\n$dropdown-spacer: .125rem !default;\n$dropdown-bg: $white !default;\n$dropdown-border-color: rgba($black, .15) !default;\n$dropdown-border-radius: $border-radius !default;\n$dropdown-border-width: $border-width !default;\n$dropdown-divider-bg: $gray-200 !default;\n$dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default;\n\n$dropdown-link-color: $gray-900 !default;\n$dropdown-link-hover-color: darken($gray-900, 5%) !default;\n$dropdown-link-hover-bg: $gray-100 !default;\n\n$dropdown-link-active-color: $component-active-color !default;\n$dropdown-link-active-bg: $component-active-bg !default;\n\n$dropdown-link-disabled-color: $gray-600 !default;\n\n$dropdown-item-padding-y: .25rem !default;\n$dropdown-item-padding-x: 1.5rem !default;\n\n$dropdown-header-color: $gray-600 !default;\n\n\n// Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n\n$zindex-dropdown: 1000 !default;\n$zindex-sticky: 1020 !default;\n$zindex-fixed: 1030 !default;\n$zindex-modal-backdrop: 1040 !default;\n$zindex-modal: 1050 !default;\n$zindex-popover: 1060 !default;\n$zindex-tooltip: 1070 !default;\n\n// Navs\n\n$nav-link-padding-y: .5rem !default;\n$nav-link-padding-x: 1rem !default;\n$nav-link-disabled-color: $gray-600 !default;\n\n$nav-tabs-border-color: $gray-300 !default;\n$nav-tabs-border-width: $border-width !default;\n$nav-tabs-border-radius: $border-radius !default;\n$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;\n$nav-tabs-link-active-color: $gray-700 !default;\n$nav-tabs-link-active-bg: $body-bg !default;\n$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;\n\n$nav-pills-border-radius: $border-radius !default;\n$nav-pills-link-active-color: $component-active-color !default;\n$nav-pills-link-active-bg: $component-active-bg !default;\n\n// Navbar\n\n$navbar-padding-y: ($spacer / 2) !default;\n$navbar-padding-x: $spacer !default;\n\n$navbar-brand-font-size: $font-size-lg !default;\n// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link\n$nav-link-height: ($font-size-base * $line-height-base + $nav-link-padding-y * 2) !default;\n$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;\n$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default;\n\n$navbar-toggler-padding-y: .25rem !default;\n$navbar-toggler-padding-x: .75rem !default;\n$navbar-toggler-font-size: $font-size-lg !default;\n$navbar-toggler-border-radius: $btn-border-radius !default;\n\n$navbar-dark-color: rgba($white, .5) !default;\n$navbar-dark-hover-color: rgba($white, .75) !default;\n$navbar-dark-active-color: $white !default;\n$navbar-dark-disabled-color: rgba($white, .25) !default;\n$navbar-dark-toggler-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$navbar-dark-toggler-border-color: rgba($white, .1) !default;\n\n$navbar-light-color: rgba($black, .5) !default;\n$navbar-light-hover-color: rgba($black, .7) !default;\n$navbar-light-active-color: rgba($black, .9) !default;\n$navbar-light-disabled-color: rgba($black, .3) !default;\n$navbar-light-toggler-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$navbar-light-toggler-border-color: rgba($black, .1) !default;\n\n// Pagination\n\n$pagination-padding-y: .5rem !default;\n$pagination-padding-x: .75rem !default;\n$pagination-padding-y-sm: .25rem !default;\n$pagination-padding-x-sm: .5rem !default;\n$pagination-padding-y-lg: .75rem !default;\n$pagination-padding-x-lg: 1.5rem !default;\n$pagination-line-height: 1.25 !default;\n\n$pagination-color: $link-color !default;\n$pagination-bg: $white !default;\n$pagination-border-width: $border-width !default;\n$pagination-border-color: $gray-300 !default;\n\n$pagination-hover-color: $link-hover-color !default;\n$pagination-hover-bg: $gray-200 !default;\n$pagination-hover-border-color: $gray-300 !default;\n\n$pagination-active-color: $white !default;\n$pagination-active-bg: theme-color(\"primary\") !default;\n$pagination-active-border-color: theme-color(\"primary\") !default;\n\n$pagination-disabled-color: $gray-600 !default;\n$pagination-disabled-bg: $white !default;\n$pagination-disabled-border-color: $gray-300 !default;\n\n\n// Jumbotron\n\n$jumbotron-padding: 2rem !default;\n$jumbotron-bg: $gray-200 !default;\n\n\n// Cards\n\n$card-spacer-y: .75rem !default;\n$card-spacer-x: 1.25rem !default;\n$card-border-width: $border-width !default;\n$card-border-radius: $border-radius !default;\n$card-border-color: rgba($black, .125) !default;\n$card-inner-border-radius: calc(#{$card-border-radius} - #{$card-border-width}) !default;\n$card-cap-bg: rgba($black, .03) !default;\n$card-bg: $white !default;\n\n$card-img-overlay-padding: 1.25rem !default;\n\n$card-group-margin: ($grid-gutter-width / 2) !default;\n$card-deck-margin: $card-group-margin !default;\n\n$card-columns-count: 3 !default;\n$card-columns-gap: 1.25rem !default;\n$card-columns-margin: $card-spacer-y !default;\n\n\n// Tooltips\n\n$tooltip-max-width: 200px !default;\n$tooltip-color: $white !default;\n$tooltip-bg: $black !default;\n$tooltip-opacity: .9 !default;\n$tooltip-padding-y: .25rem !default;\n$tooltip-padding-x: .5rem !default;\n$tooltip-margin: 0 !default;\n\n$tooltip-arrow-width: .8rem !default;\n$tooltip-arrow-height: .4rem !default;\n$tooltip-arrow-color: $tooltip-bg !default;\n\n\n// Popovers\n\n$popover-bg: $white !default;\n$popover-max-width: 276px !default;\n$popover-border-width: $border-width !default;\n$popover-border-color: rgba($black, .2) !default;\n$popover-box-shadow: 0 .25rem .5rem rgba($black, .2) !default;\n\n$popover-header-bg: darken($popover-bg, 3%) !default;\n$popover-header-color: $headings-color !default;\n$popover-header-padding-y: .5rem !default;\n$popover-header-padding-x: .75rem !default;\n\n$popover-body-color: $body-color !default;\n$popover-body-padding-y: $popover-header-padding-y !default;\n$popover-body-padding-x: $popover-header-padding-x !default;\n\n$popover-arrow-width: 1rem !default;\n$popover-arrow-height: .5rem !default;\n$popover-arrow-color: $popover-bg !default;\n\n$popover-arrow-outer-color: fade-in($popover-border-color, .05) !default;\n\n\n// Badges\n\n$badge-font-size: 75% !default;\n$badge-font-weight: $font-weight-bold !default;\n$badge-padding-y: .25em !default;\n$badge-padding-x: .4em !default;\n$badge-border-radius: $border-radius !default;\n\n$badge-pill-padding-x: .6em !default;\n// Use a higher than normal value to ensure completely rounded edges when\n// customizing padding or font-size on labels.\n$badge-pill-border-radius: 10rem !default;\n\n\n// Modals\n\n// Padding applied to the modal body\n$modal-inner-padding: 1rem !default;\n\n$modal-dialog-margin: .5rem !default;\n$modal-dialog-margin-y-sm-up: 1.75rem !default;\n\n$modal-title-line-height: $line-height-base !default;\n\n$modal-content-bg: $white !default;\n$modal-content-border-color: rgba($black, .2) !default;\n$modal-content-border-width: $border-width !default;\n$modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default;\n$modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .5) !default;\n\n$modal-backdrop-bg: $black !default;\n$modal-backdrop-opacity: .5 !default;\n$modal-header-border-color: $gray-200 !default;\n$modal-footer-border-color: $modal-header-border-color !default;\n$modal-header-border-width: $modal-content-border-width !default;\n$modal-footer-border-width: $modal-header-border-width !default;\n$modal-header-padding: 1rem !default;\n\n$modal-lg: 800px !default;\n$modal-md: 500px !default;\n$modal-sm: 300px !default;\n\n$modal-transition: transform .3s ease-out !default;\n\n\n// Alerts\n//\n// Define alert colors, border radius, and padding.\n\n$alert-padding-y: .75rem !default;\n$alert-padding-x: 1.25rem !default;\n$alert-margin-bottom: 1rem !default;\n$alert-border-radius: $border-radius !default;\n$alert-link-font-weight: $font-weight-bold !default;\n$alert-border-width: $border-width !default;\n\n\n// Progress bars\n\n$progress-height: 1rem !default;\n$progress-font-size: ($font-size-base * .75) !default;\n$progress-bg: $gray-200 !default;\n$progress-border-radius: $border-radius !default;\n$progress-box-shadow: inset 0 .1rem .1rem rgba($black, .1) !default;\n$progress-bar-color: $white !default;\n$progress-bar-bg: theme-color(\"primary\") !default;\n$progress-bar-animation-timing: 1s linear infinite !default;\n$progress-bar-transition: width .6s ease !default;\n\n// List group\n\n$list-group-bg: $white !default;\n$list-group-border-color: rgba($black, .125) !default;\n$list-group-border-width: $border-width !default;\n$list-group-border-radius: $border-radius !default;\n\n$list-group-item-padding-y: .75rem !default;\n$list-group-item-padding-x: 1.25rem !default;\n\n$list-group-hover-bg: $gray-100 !default;\n$list-group-active-color: $component-active-color !default;\n$list-group-active-bg: $component-active-bg !default;\n$list-group-active-border-color: $list-group-active-bg !default;\n\n$list-group-disabled-color: $gray-600 !default;\n$list-group-disabled-bg: $list-group-bg !default;\n\n$list-group-action-color: $gray-700 !default;\n$list-group-action-hover-color: $list-group-action-color !default;\n\n$list-group-action-active-color: $body-color !default;\n$list-group-action-active-bg: $gray-200 !default;\n\n\n// Image thumbnails\n\n$thumbnail-padding: .25rem !default;\n$thumbnail-bg: $body-bg !default;\n$thumbnail-border-width: $border-width !default;\n$thumbnail-border-color: $gray-300 !default;\n$thumbnail-border-radius: $border-radius !default;\n$thumbnail-box-shadow: 0 1px 2px rgba($black, .075) !default;\n\n\n// Figures\n\n$figure-caption-font-size: 90% !default;\n$figure-caption-color: $gray-600 !default;\n\n\n// Breadcrumbs\n\n$breadcrumb-padding-y: .75rem !default;\n$breadcrumb-padding-x: 1rem !default;\n$breadcrumb-item-padding: .5rem !default;\n\n$breadcrumb-margin-bottom: 1rem !default;\n\n$breadcrumb-bg: $gray-200 !default;\n$breadcrumb-divider-color: $gray-600 !default;\n$breadcrumb-active-color: $gray-600 !default;\n$breadcrumb-divider: \"/\" !default;\n\n\n// Carousel\n\n$carousel-control-color: $white !default;\n$carousel-control-width: 15% !default;\n$carousel-control-opacity: .5 !default;\n\n$carousel-indicator-width: 30px !default;\n$carousel-indicator-height: 3px !default;\n$carousel-indicator-spacer: 3px !default;\n$carousel-indicator-active-bg: $white !default;\n\n$carousel-caption-width: 70% !default;\n$carousel-caption-color: $white !default;\n\n$carousel-control-icon-width: 20px !default;\n\n$carousel-control-prev-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$carousel-control-next-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$carousel-transition: transform .6s ease !default;\n\n\n// Close\n\n$close-font-size: $font-size-base * 1.5 !default;\n$close-font-weight: $font-weight-bold !default;\n$close-color: $black !default;\n$close-text-shadow: 0 1px 0 $white !default;\n\n// Code\n\n$code-font-size: 87.5% !default;\n$code-color: $pink !default;\n\n$kbd-padding-y: .2rem !default;\n$kbd-padding-x: .4rem !default;\n$kbd-font-size: $code-font-size !default;\n$kbd-color: $white !default;\n$kbd-bg: $gray-900 !default;\n\n$pre-color: $gray-900 !default;\n$pre-scrollable-max-height: 340px !default;\n","// stylelint-disable indentation\n@mixin hover {\n // TODO: re-enable along with mq4-hover-shim\n// @if $enable-hover-media-query {\n// // See Media Queries Level 4: https://drafts.csswg.org/mediaqueries/#hover\n// // Currently shimmed by https://github.com/twbs/mq4-hover-shim\n// @media (hover: hover) {\n// &:hover { @content }\n// }\n// }\n// @else {\n &:hover { @content; }\n// }\n}\n\n\n@mixin hover-focus {\n @if $enable-hover-media-query {\n &:focus {\n @content;\n }\n @include hover { @content; }\n } @else {\n &:focus,\n &:hover {\n @content;\n }\n }\n}\n\n@mixin plain-hover-focus {\n @if $enable-hover-media-query {\n &,\n &:focus {\n @content;\n }\n @include hover { @content; }\n } @else {\n &,\n &:focus,\n &:hover {\n @content;\n }\n }\n}\n\n@mixin hover-focus-active {\n @if $enable-hover-media-query {\n &:focus,\n &:active {\n @content;\n }\n @include hover { @content; }\n } @else {\n &:focus,\n &:active,\n &:hover {\n @content;\n }\n }\n}\n","// stylelint-disable declaration-no-important, selector-list-comma-newline-after\n\n//\n// Headings\n//\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1, .h1 { font-size: $h1-font-size; }\nh2, .h2 { font-size: $h2-font-size; }\nh3, .h3 { font-size: $h3-font-size; }\nh4, .h4 { font-size: $h4-font-size; }\nh5, .h5 { font-size: $h5-font-size; }\nh6, .h6 { font-size: $h6-font-size; }\n\n.lead {\n font-size: $lead-font-size;\n font-weight: $lead-font-weight;\n}\n\n// Type display classes\n.display-1 {\n font-size: $display1-size;\n font-weight: $display1-weight;\n line-height: $display-line-height;\n}\n.display-2 {\n font-size: $display2-size;\n font-weight: $display2-weight;\n line-height: $display-line-height;\n}\n.display-3 {\n font-size: $display3-size;\n font-weight: $display3-weight;\n line-height: $display-line-height;\n}\n.display-4 {\n font-size: $display4-size;\n font-weight: $display4-weight;\n line-height: $display-line-height;\n}\n\n\n//\n// Horizontal rules\n//\n\nhr {\n margin-top: $hr-margin-y;\n margin-bottom: $hr-margin-y;\n border: 0;\n border-top: $hr-border-width solid $hr-border-color;\n}\n\n\n//\n// Emphasis\n//\n\nsmall,\n.small {\n font-size: $small-font-size;\n font-weight: $font-weight-normal;\n}\n\nmark,\n.mark {\n padding: $mark-padding;\n background-color: $mark-bg;\n}\n\n\n//\n// Lists\n//\n\n.list-unstyled {\n @include list-unstyled;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n @include list-unstyled;\n}\n.list-inline-item {\n display: inline-block;\n\n &:not(:last-child) {\n margin-right: $list-inline-padding;\n }\n}\n\n\n//\n// Misc\n//\n\n// Builds on `abbr`\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\n\n// Blockquotes\n.blockquote {\n margin-bottom: $spacer;\n font-size: $blockquote-font-size;\n}\n\n.blockquote-footer {\n display: block;\n font-size: 80%; // back to default font-size\n color: $blockquote-small-color;\n\n &::before {\n content: \"\\2014 \\00A0\"; // em dash, nbsp\n }\n}\n","// Lists\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n@mixin list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n","// Responsive images (ensure images don't scale beyond their parents)\n//\n// This is purposefully opt-in via an explicit class rather than being the default for all ``s.\n// We previously tried the \"images are responsive by default\" approach in Bootstrap v2,\n// and abandoned it in Bootstrap v3 because it breaks lots of third-party widgets (including Google Maps)\n// which weren't expecting the images within themselves to be involuntarily resized.\n// See also https://github.com/twbs/bootstrap/issues/18178\n.img-fluid {\n @include img-fluid;\n}\n\n\n// Image thumbnails\n.img-thumbnail {\n padding: $thumbnail-padding;\n background-color: $thumbnail-bg;\n border: $thumbnail-border-width solid $thumbnail-border-color;\n @include border-radius($thumbnail-border-radius);\n @include box-shadow($thumbnail-box-shadow);\n\n // Keep them at most 100% wide\n @include img-fluid;\n}\n\n//\n// Figures\n//\n\n.figure {\n // Ensures the caption's text aligns with the image.\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: ($spacer / 2);\n line-height: 1;\n}\n\n.figure-caption {\n font-size: $figure-caption-font-size;\n color: $figure-caption-color;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n\n@mixin img-fluid {\n // Part 1: Set a maximum relative to the parent\n max-width: 100%;\n // Part 2: Override the height to auto, otherwise images will be stretched\n // when setting a width and height attribute on the img element.\n height: auto;\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size.\n\n// stylelint-disable indentation, media-query-list-comma-newline-after\n@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {\n background-image: url($file-1x);\n\n // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,\n // but doesn't convert dppx=>dpi.\n // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.\n // Compatibility info: https://caniuse.com/#feat=css-media-resolution\n @media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx\n only screen and (min-resolution: 2dppx) { // Standardized\n background-image: url($file-2x);\n background-size: $width-1x $height-1x;\n }\n}\n","// Single side border-radius\n\n@mixin border-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-radius: $radius;\n }\n}\n\n@mixin border-top-radius($radius) {\n @if $enable-rounded {\n border-top-left-radius: $radius;\n border-top-right-radius: $radius;\n }\n}\n\n@mixin border-right-radius($radius) {\n @if $enable-rounded {\n border-top-right-radius: $radius;\n border-bottom-right-radius: $radius;\n }\n}\n\n@mixin border-bottom-radius($radius) {\n @if $enable-rounded {\n border-bottom-right-radius: $radius;\n border-bottom-left-radius: $radius;\n }\n}\n\n@mixin border-left-radius($radius) {\n @if $enable-rounded {\n border-top-left-radius: $radius;\n border-bottom-left-radius: $radius;\n }\n}\n","// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n font-family: $font-family-monospace;\n}\n\n// Inline code\ncode {\n font-size: $code-font-size;\n color: $code-color;\n word-break: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n font-size: $kbd-font-size;\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n @include box-shadow($kbd-box-shadow);\n\n kbd {\n padding: 0;\n font-size: 100%;\n font-weight: $nested-kbd-font-weight;\n @include box-shadow(none);\n }\n}\n\n// Blocks of code\npre {\n display: block;\n font-size: $code-font-size;\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: $pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-grid-classes {\n .container {\n @include make-container();\n @include make-container-max-widths();\n }\n}\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but with 100% width for\n// fluid, full width layouts.\n\n@if $enable-grid-classes {\n .container-fluid {\n @include make-container();\n }\n}\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n }\n\n // Remove the negative margin from default .row, then the horizontal padding\n // from all immediate children columns (to prevent runaway style inheritance).\n .no-gutters {\n margin-right: 0;\n margin-left: 0;\n\n > .col,\n > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n }\n }\n}\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","/// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-container() {\n width: 100%;\n padding-right: ($grid-gutter-width / 2);\n padding-left: ($grid-gutter-width / 2);\n margin-right: auto;\n margin-left: auto;\n}\n\n\n// For each breakpoint, define the maximum width of the container in a media query\n@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {\n @each $breakpoint, $container-max-width in $max-widths {\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n max-width: $container-max-width;\n }\n }\n}\n\n@mixin make-row() {\n display: flex;\n flex-wrap: wrap;\n margin-right: ($grid-gutter-width / -2);\n margin-left: ($grid-gutter-width / -2);\n}\n\n@mixin make-col-ready() {\n position: relative;\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we use `flex` values\n // later on to override this initial width.\n width: 100%;\n min-height: 1px; // Prevent collapsing\n padding-right: ($grid-gutter-width / 2);\n padding-left: ($grid-gutter-width / 2);\n}\n\n@mixin make-col($size, $columns: $grid-columns) {\n flex: 0 0 percentage($size / $columns);\n // Add a `max-width` to ensure content within each column does not blow out\n // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari\n // do not appear to require this.\n max-width: percentage($size / $columns);\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: $size / $columns;\n margin-left: if($num == 0, 0, percentage($num));\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width. Null for the largest (last) breakpoint.\n// The maximum value is calculated as the minimum of the next one less 0.01px\n// to work around the limitations of `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n//\n// >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 767px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $next: breakpoint-next($name, $breakpoints);\n @return if($next, breakpoint-min($next, $breakpoints) - .01px, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash infront.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $max: breakpoint-max($name, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($name) {\n @content;\n }\n }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n // Common properties for all breakpoints\n %grid-column {\n position: relative;\n width: 100%;\n min-height: 1px; // Prevent columns from collapsing when empty\n padding-right: ($gutter / 2);\n padding-left: ($gutter / 2);\n }\n\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n // Allow columns to stretch full width below their breakpoints\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @extend %grid-column;\n }\n }\n .col#{$infix},\n .col#{$infix}-auto {\n @extend %grid-column;\n }\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col#{$infix}-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none; // Reset earlier grid tiers\n }\n\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n .order#{$infix}-first {\n order: -1;\n }\n\n @for $i from 1 through $columns {\n .order#{$infix}-#{$i} {\n order: $i;\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n }\n}\n","//\n// Basic Bootstrap table\n//\n\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: $spacer;\n background-color: $table-bg; // Reset for nesting within parents with `background-color`.\n\n th,\n td {\n padding: $table-cell-padding;\n vertical-align: top;\n border-top: $table-border-width solid $table-border-color;\n }\n\n thead th {\n vertical-align: bottom;\n border-bottom: (2 * $table-border-width) solid $table-border-color;\n }\n\n tbody + tbody {\n border-top: (2 * $table-border-width) solid $table-border-color;\n }\n\n .table {\n background-color: $body-bg;\n }\n}\n\n\n//\n// Condensed table w/ half padding\n//\n\n.table-sm {\n th,\n td {\n padding: $table-cell-padding-sm;\n }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: $table-border-width solid $table-border-color;\n\n th,\n td {\n border: $table-border-width solid $table-border-color;\n }\n\n thead {\n th,\n td {\n border-bottom-width: (2 * $table-border-width);\n }\n }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n tbody tr:nth-of-type(odd) {\n background-color: $table-accent-bg;\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n tbody tr {\n @include hover {\n background-color: $table-hover-bg;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n@each $color, $value in $theme-colors {\n @include table-row-variant($color, theme-color-level($color, -9));\n}\n\n@include table-row-variant(active, $table-active-bg);\n\n\n// Dark styles\n//\n// Same table markup, but inverted color scheme: dark background and light text.\n\n// stylelint-disable-next-line no-duplicate-selectors\n.table {\n .thead-dark {\n th {\n color: $table-dark-color;\n background-color: $table-dark-bg;\n border-color: $table-dark-border-color;\n }\n }\n\n .thead-light {\n th {\n color: $table-head-color;\n background-color: $table-head-bg;\n border-color: $table-border-color;\n }\n }\n}\n\n.table-dark {\n color: $table-dark-color;\n background-color: $table-dark-bg;\n\n th,\n td,\n thead th {\n border-color: $table-dark-border-color;\n }\n\n &.table-bordered {\n border: 0;\n }\n\n &.table-striped {\n tbody tr:nth-of-type(odd) {\n background-color: $table-dark-accent-bg;\n }\n }\n\n &.table-hover {\n tbody tr {\n @include hover {\n background-color: $table-dark-hover-bg;\n }\n }\n }\n}\n\n\n// Responsive tables\n//\n// Generate series of `.table-responsive-*` classes for configuring the screen\n// size of where your table will overflow.\n\n.table-responsive {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $next: breakpoint-next($breakpoint, $grid-breakpoints);\n $infix: breakpoint-infix($next, $grid-breakpoints);\n\n &#{$infix} {\n @include media-breakpoint-down($breakpoint) {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar; // See https://github.com/twbs/bootstrap/pull/10057\n\n // Prevent double border on horizontal scroll due to use of `display: block;`\n > .table-bordered {\n border: 0;\n }\n }\n }\n }\n}\n","// Tables\n\n@mixin table-row-variant($state, $background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table-#{$state} {\n &,\n > th,\n > td {\n background-color: $background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover {\n $hover-background: darken($background, 5%);\n\n .table-#{$state} {\n @include hover {\n background-color: $hover-background;\n\n > td,\n > th {\n background-color: $hover-background;\n }\n }\n }\n }\n}\n","// Bootstrap functions\n//\n// Utility mixins and functions for evalutating source code across our variables, maps, and mixins.\n\n// Ascending\n// Used to evaluate Sass maps like our grid breakpoints.\n@mixin _assert-ascending($map, $map-name) {\n $prev-key: null;\n $prev-num: null;\n @each $key, $num in $map {\n @if $prev-num == null {\n // Do nothing\n } @else if not comparable($prev-num, $num) {\n @warn \"Potentially invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} whose unit makes it incomparable to #{$prev-num}, the value of the previous key '#{$prev-key}' !\";\n } @else if $prev-num >= $num {\n @warn \"Invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} which isn't greater than #{$prev-num}, the value of the previous key '#{$prev-key}' !\";\n }\n $prev-key: $key;\n $prev-num: $num;\n }\n}\n\n// Starts at zero\n// Another grid mixin that ensures the min-width of the lowest breakpoint starts at 0.\n@mixin _assert-starts-at-zero($map) {\n $values: map-values($map);\n $first-value: nth($values, 1);\n @if $first-value != 0 {\n @warn \"First breakpoint in `$grid-breakpoints` must start at 0, but starts at #{$first-value}.\";\n }\n}\n\n// Replace `$search` with `$replace` in `$string`\n// Used on our SVG icon backgrounds for custom forms.\n//\n// @author Hugo Giraudel\n// @param {String} $string - Initial string\n// @param {String} $search - Substring to replace\n// @param {String} $replace ('') - New value\n// @return {String} - Updated string\n@function str-replace($string, $search, $replace: \"\") {\n $index: str-index($string, $search);\n\n @if $index {\n @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);\n }\n\n @return $string;\n}\n\n// Color contrast\n@function color-yiq($color) {\n $r: red($color);\n $g: green($color);\n $b: blue($color);\n\n $yiq: (($r * 299) + ($g * 587) + ($b * 114)) / 1000;\n\n @if ($yiq >= $yiq-contrasted-threshold) {\n @return $yiq-text-dark;\n } @else {\n @return $yiq-text-light;\n }\n}\n\n// Retrieve color Sass maps\n@function color($key: \"blue\") {\n @return map-get($colors, $key);\n}\n\n@function theme-color($key: \"primary\") {\n @return map-get($theme-colors, $key);\n}\n\n@function gray($key: \"100\") {\n @return map-get($grays, $key);\n}\n\n// Request a theme color level\n@function theme-color-level($color-name: \"primary\", $level: 0) {\n $color: theme-color($color-name);\n $color-base: if($level > 0, #000, #fff);\n $level: abs($level);\n\n @return mix($color-base, $color, $level * $theme-color-interval);\n}\n","// stylelint-disable selector-no-qualifying-type\n\n//\n// Textual form controls\n//\n\n.form-control {\n display: block;\n width: 100%;\n padding: $input-padding-y $input-padding-x;\n font-size: $font-size-base;\n line-height: $input-line-height;\n color: $input-color;\n background-color: $input-bg;\n background-clip: padding-box;\n border: $input-border-width solid $input-border-color;\n\n // Note: This has no effect on `s in CSS.\n @if $enable-rounded {\n // Manually use the if/else instead of the mixin to account for iOS override\n border-radius: $input-border-radius;\n } @else {\n // Otherwise undo the iOS default\n border-radius: 0;\n }\n\n @include box-shadow($input-box-shadow);\n @include transition($input-transition);\n\n // Unstyle the caret on ` receives focus\n // in IE and (under certain conditions) Edge, as it looks bad and cannot be made to\n // match the appearance of the native widget.\n // See https://github.com/twbs/bootstrap/issues/19398.\n color: $input-color;\n background-color: $input-bg;\n }\n}\n\n// Make file inputs better match text inputs by forcing them to new lines.\n.form-control-file,\n.form-control-range {\n display: block;\n width: 100%;\n}\n\n\n//\n// Labels\n//\n\n// For use with horizontal and inline forms, when you need the label (or legend)\n// text to align with the form controls.\n.col-form-label {\n padding-top: calc(#{$input-padding-y} + #{$input-border-width});\n padding-bottom: calc(#{$input-padding-y} + #{$input-border-width});\n margin-bottom: 0; // Override the `
',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent"},d="show",_="out",g={HIDE:"hide"+a,HIDDEN:"hidden"+a,SHOW:"show"+a,SHOWN:"shown"+a,INSERTED:"inserted"+a,CLICK:"click"+a,FOCUSIN:"focusin"+a,FOCUSOUT:"focusout"+a,MOUSEENTER:"mouseenter"+a,MOUSELEAVE:"mouseleave"+a},m="fade",p="show",v=".tooltip-inner",E=".arrow",T="hover",y="focus",C="click",I="manual",A=function(){function l(t,e){if("undefined"==typeof n)throw new Error("Bootstrap tooltips require Popper.js (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var A=l.prototype;return A.enable=function(){this._isEnabled=!0},A.disable=function(){this._isEnabled=!1},A.toggleEnabled=function(){this._isEnabled=!this._isEnabled},A.toggle=function(e){if(this._isEnabled)if(e){var n=this.constructor.DATA_KEY,i=t(e.currentTarget).data(n);i||(i=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(n,i)),i._activeTrigger.click=!i._activeTrigger.click,i._isWithActiveTrigger()?i._enter(null,i):i._leave(null,i)}else{if(t(this.getTipElement()).hasClass(p))return void this._leave(null,this);this._enter(null,this)}},A.dispose=function(){clearTimeout(this._timeout),t.removeData(this.element,this.constructor.DATA_KEY),t(this.element).off(this.constructor.EVENT_KEY),t(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&t(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,null!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},A.show=function(){var e=this;if("none"===t(this.element).css("display"))throw new Error("Please use show on visible elements");var i=t.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){t(this.element).trigger(i);var s=t.contains(this.element.ownerDocument.documentElement,this.element);if(i.isDefaultPrevented()||!s)return;var r=this.getTipElement(),a=o.getUID(this.constructor.NAME);r.setAttribute("id",a),this.element.setAttribute("aria-describedby",a),this.setContent(),this.config.animation&&t(r).addClass(m);var h="function"==typeof this.config.placement?this.config.placement.call(this,r,this.element):this.config.placement,c=this._getAttachment(h);this.addAttachmentClass(c);var u=!1===this.config.container?document.body:t(this.config.container);t(r).data(this.constructor.DATA_KEY,this),t.contains(this.element.ownerDocument.documentElement,this.tip)||t(r).appendTo(u),t(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new n(this.element,r,{placement:c,modifiers:{offset:{offset:this.config.offset},flip:{behavior:this.config.fallbackPlacement},arrow:{element:E},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){e._handlePopperPlacementChange(t)}}),t(r).addClass(p),"ontouchstart"in document.documentElement&&t("body").children().on("mouseover",null,t.noop);var f=function(){e.config.animation&&e._fixTransition();var n=e._hoverState;e._hoverState=null,t(e.element).trigger(e.constructor.Event.SHOWN),n===_&&e._leave(null,e)};o.supportsTransitionEnd()&&t(this.tip).hasClass(m)?t(this.tip).one(o.TRANSITION_END,f).emulateTransitionEnd(l._TRANSITION_DURATION):f()}},A.hide=function(e){var n=this,i=this.getTipElement(),s=t.Event(this.constructor.Event.HIDE),r=function(){n._hoverState!==d&&i.parentNode&&i.parentNode.removeChild(i),n._cleanTipClass(),n.element.removeAttribute("aria-describedby"),t(n.element).trigger(n.constructor.Event.HIDDEN),null!==n._popper&&n._popper.destroy(),e&&e()};t(this.element).trigger(s),s.isDefaultPrevented()||(t(i).removeClass(p),"ontouchstart"in document.documentElement&&t("body").children().off("mouseover",null,t.noop),this._activeTrigger[C]=!1,this._activeTrigger[y]=!1,this._activeTrigger[T]=!1,o.supportsTransitionEnd()&&t(this.tip).hasClass(m)?t(i).one(o.TRANSITION_END,r).emulateTransitionEnd(150):r(),this._hoverState="")},A.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},A.isWithContent=function(){return Boolean(this.getTitle())},A.addAttachmentClass=function(e){t(this.getTipElement()).addClass("bs-tooltip-"+e)},A.getTipElement=function(){return this.tip=this.tip||t(this.config.template)[0],this.tip},A.setContent=function(){var e=t(this.getTipElement());this.setElementContent(e.find(v),this.getTitle()),e.removeClass(m+" "+p)},A.setElementContent=function(e,n){var i=this.config.html;"object"==typeof n&&(n.nodeType||n.jquery)?i?t(n).parent().is(e)||e.empty().append(n):e.text(t(n).text()):e[i?"html":"text"](n)},A.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},A._getAttachment=function(t){return u[t.toUpperCase()]},A._setListeners=function(){var e=this;this.config.trigger.split(" ").forEach(function(n){if("click"===n)t(e.element).on(e.constructor.Event.CLICK,e.config.selector,function(t){return e.toggle(t)});else if(n!==I){var i=n===T?e.constructor.Event.MOUSEENTER:e.constructor.Event.FOCUSIN,s=n===T?e.constructor.Event.MOUSELEAVE:e.constructor.Event.FOCUSOUT;t(e.element).on(i,e.config.selector,function(t){return e._enter(t)}).on(s,e.config.selector,function(t){return e._leave(t)})}t(e.element).closest(".modal").on("hide.bs.modal",function(){return e.hide()})}),this.config.selector?this.config=r({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},A._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},A._enter=function(e,n){var i=this.constructor.DATA_KEY;(n=n||t(e.currentTarget).data(i))||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(i,n)),e&&(n._activeTrigger["focusin"===e.type?y:T]=!0),t(n.getTipElement()).hasClass(p)||n._hoverState===d?n._hoverState=d:(clearTimeout(n._timeout),n._hoverState=d,n.config.delay&&n.config.delay.show?n._timeout=setTimeout(function(){n._hoverState===d&&n.show()},n.config.delay.show):n.show())},A._leave=function(e,n){var i=this.constructor.DATA_KEY;(n=n||t(e.currentTarget).data(i))||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(i,n)),e&&(n._activeTrigger["focusout"===e.type?y:T]=!1),n._isWithActiveTrigger()||(clearTimeout(n._timeout),n._hoverState=_,n.config.delay&&n.config.delay.hide?n._timeout=setTimeout(function(){n._hoverState===_&&n.hide()},n.config.delay.hide):n.hide())},A._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},A._getConfig=function(n){return"number"==typeof(n=r({},this.constructor.Default,t(this.element).data(),n)).delay&&(n.delay={show:n.delay,hide:n.delay}),"number"==typeof n.title&&(n.title=n.title.toString()),"number"==typeof n.content&&(n.content=n.content.toString()),o.typeCheckConfig(e,n,this.constructor.DefaultType),n},A._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},A._cleanTipClass=function(){var e=t(this.getTipElement()),n=e.attr("class").match(h);null!==n&&n.length>0&&e.removeClass(n.join(""))},A._handlePopperPlacementChange=function(t){this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},A._fixTransition=function(){var e=this.getTipElement(),n=this.config.animation;null===e.getAttribute("x-placement")&&(t(e).removeClass(m),this.config.animation=!1,this.hide(),this.show(),this.config.animation=n)},l._jQueryInterface=function(e){return this.each(function(){var n=t(this).data(i),s="object"==typeof e&&e;if((n||!/dispose|hide/.test(e))&&(n||(n=new l(this,s),t(this).data(i,n)),"string"==typeof e)){if("undefined"==typeof n[e])throw new Error('No method named "'+e+'"');n[e]()}})},s(l,null,[{key:"VERSION",get:function(){return"4.0.0-beta.3"}},{key:"Default",get:function(){return f}},{key:"NAME",get:function(){return e}},{key:"DATA_KEY",get:function(){return i}},{key:"Event",get:function(){return g}},{key:"EVENT_KEY",get:function(){return a}},{key:"DefaultType",get:function(){return c}}]),l}();return t.fn[e]=A._jQueryInterface,t.fn[e].Constructor=A,t.fn[e].noConflict=function(){return t.fn[e]=l,A._jQueryInterface},A}(e),_=function(t){var e="popover",n="bs.popover",i="."+n,o=t.fn[e],a=new RegExp("(^|\\s)bs-popover\\S+","g"),l=r({},d.Default,{placement:"right",trigger:"click",content:"",template:''}),h=r({},d.DefaultType,{content:"(string|element|function)"}),c="fade",u="show",f=".popover-header",_=".popover-body",g={HIDE:"hide"+i,HIDDEN:"hidden"+i,SHOW:"show"+i,SHOWN:"shown"+i,INSERTED:"inserted"+i,CLICK:"click"+i,FOCUSIN:"focusin"+i,FOCUSOUT:"focusout"+i,MOUSEENTER:"mouseenter"+i,MOUSELEAVE:"mouseleave"+i},m=function(r){function o(){return r.apply(this,arguments)||this}!function(t,e){t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t.__proto__=e}(o,r);var d=o.prototype;return d.isWithContent=function(){return this.getTitle()||this._getContent()},d.addAttachmentClass=function(e){t(this.getTipElement()).addClass("bs-popover-"+e)},d.getTipElement=function(){return this.tip=this.tip||t(this.config.template)[0],this.tip},d.setContent=function(){var e=t(this.getTipElement());this.setElementContent(e.find(f),this.getTitle());var n=this._getContent();"function"==typeof n&&(n=n.call(this.element)),this.setElementContent(e.find(_),n),e.removeClass(c+" "+u)},d._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},d._cleanTipClass=function(){var e=t(this.getTipElement()),n=e.attr("class").match(a);null!==n&&n.length>0&&e.removeClass(n.join(""))},o._jQueryInterface=function(e){return this.each(function(){var i=t(this).data(n),s="object"==typeof e?e:null;if((i||!/destroy|hide/.test(e))&&(i||(i=new o(this,s),t(this).data(n,i)),"string"==typeof e)){if("undefined"==typeof i[e])throw new Error('No method named "'+e+'"');i[e]()}})},s(o,null,[{key:"VERSION",get:function(){return"4.0.0-beta.3"}},{key:"Default",get:function(){return l}},{key:"NAME",get:function(){return e}},{key:"DATA_KEY",get:function(){return n}},{key:"Event",get:function(){return g}},{key:"EVENT_KEY",get:function(){return i}},{key:"DefaultType",get:function(){return h}}]),o}(d);return t.fn[e]=m._jQueryInterface,t.fn[e].Constructor=m,t.fn[e].noConflict=function(){return t.fn[e]=o,m._jQueryInterface},m}(e),g=function(t){var e="scrollspy",n="bs.scrollspy",i="."+n,a=t.fn[e],l={offset:10,method:"auto",target:""},h={offset:"number",method:"string",target:"(string|element)"},c={ACTIVATE:"activate"+i,SCROLL:"scroll"+i,LOAD_DATA_API:"load"+i+".data-api"},u="dropdown-item",f="active",d={DATA_SPY:'[data-spy="scroll"]',ACTIVE:".active",NAV_LIST_GROUP:".nav, .list-group",NAV_LINKS:".nav-link",NAV_ITEMS:".nav-item",LIST_ITEMS:".list-group-item",DROPDOWN:".dropdown",DROPDOWN_ITEMS:".dropdown-item",DROPDOWN_TOGGLE:".dropdown-toggle"},_="offset",g="position",m=function(){function a(e,n){var i=this;this._element=e,this._scrollElement="BODY"===e.tagName?window:e,this._config=this._getConfig(n),this._selector=this._config.target+" "+d.NAV_LINKS+","+this._config.target+" "+d.LIST_ITEMS+","+this._config.target+" "+d.DROPDOWN_ITEMS,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,t(this._scrollElement).on(c.SCROLL,function(t){return i._process(t)}),this.refresh(),this._process()}var m=a.prototype;return m.refresh=function(){var e=this,n=this._scrollElement!==this._scrollElement.window?g:_,i="auto"===this._config.method?n:this._config.method,s=i===g?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight();t.makeArray(t(this._selector)).map(function(e){var n,r=o.getSelectorFromElement(e);if(r&&(n=t(r)[0]),n){var a=n.getBoundingClientRect();if(a.width||a.height)return[t(n)[i]().top+s,r]}return null}).filter(function(t){return t}).sort(function(t,e){return t[0]-e[0]}).forEach(function(t){e._offsets.push(t[0]),e._targets.push(t[1])})},m.dispose=function(){t.removeData(this._element,n),t(this._scrollElement).off(i),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},m._getConfig=function(n){if("string"!=typeof(n=r({},l,n)).target){var i=t(n.target).attr("id");i||(i=o.getUID(e),t(n.target).attr("id",i)),n.target="#"+i}return o.typeCheckConfig(e,n,h),n},m._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},m._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},m._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},m._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(var s=this._offsets.length;s--;){this._activeTarget!==this._targets[s]&&t>=this._offsets[s]&&("undefined"==typeof this._offsets[s+1]||t=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}(e),t.Util=o,t.Alert=a,t.Button=l,t.Carousel=h,t.Collapse=c,t.Dropdown=u,t.Modal=f,t.Popover=_,t.Scrollspy=g,t.Tab=m,t.Tooltip=d,Object.defineProperty(t,"__esModule",{value:!0})}); +//# sourceMappingURL=bootstrap.min.js.map \ No newline at end of file diff --git a/frontend/assets/libs/bootstrap4/js/bootstrap.min.js.map b/frontend/assets/libs/bootstrap4/js/bootstrap.min.js.map new file mode 100644 index 0000000..b0aa5f8 --- /dev/null +++ b/frontend/assets/libs/bootstrap4/js/bootstrap.min.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../rollupPluginBabelHelpers","../../js/src/util.js","../../js/src/alert.js","../../js/src/button.js","../../js/src/carousel.js","../../js/src/collapse.js","../../js/src/dropdown.js","../../js/src/modal.js","../../js/src/tooltip.js","../../js/src/popover.js","../../js/src/scrollspy.js","../../js/src/tab.js","../../js/src/index.js"],"names":["_defineProperties","target","props","i","length","descriptor","enumerable","configurable","writable","Object","defineProperty","key","_createClass","Constructor","protoProps","staticProps","prototype","_extends","assign","arguments","source","hasOwnProperty","call","apply","this","Util","$","toType","obj","toString","match","toLowerCase","transitionEndEmulator","duration","called","one","TRANSITION_END","triggerTransitionEnd","_this","transition","prefix","Math","random","document","getElementById","element","selector","getAttribute","charAt","escapeSelector","substr","replace","escapeId","find","error","offsetHeight","trigger","end","Boolean","nodeType","componentName","config","configTypes","property","expectedTypes","value","valueType","isElement","RegExp","test","Error","toUpperCase","window","QUnit","fn","emulateTransitionEnd","supportsTransitionEnd","event","special","is","handleObj","handler","Alert","NAME","DATA_KEY","EVENT_KEY","JQUERY_NO_CONFLICT","Event","ClassName","_element","close","rootElement","_getRootElement","_triggerCloseEvent","isDefaultPrevented","_removeElement","dispose","removeData","getSelectorFromElement","parent","closest","closeEvent","CLOSE","removeClass","hasClass","_destroyElement","detach","CLOSED","remove","_jQueryInterface","each","$element","data","_handleDismiss","alertInstance","preventDefault","on","CLICK_DATA_API","noConflict","Button","DATA_API_KEY","Selector","toggle","triggerChangeEvent","addAriaPressed","input","type","checked","activeElement","hasAttribute","classList","contains","focus","setAttribute","toggleClass","button","FOCUS_BLUR_DATA_API","Carousel","Default","DefaultType","Direction","_items","_interval","_activeElement","_isPaused","_isSliding","touchTimeout","_config","_getConfig","_indicatorsElement","INDICATORS","_addEventListeners","next","_slide","nextWhenVisible","hidden","css","prev","pause","NEXT_PREV","cycle","interval","setInterval","visibilityState","bind","to","index","ACTIVE_ITEM","activeIndex","_getItemIndex","SLID","direction","off","typeCheckConfig","keyboard","KEYDOWN","_this2","_keydown","MOUSEENTER","MOUSELEAVE","documentElement","TOUCHEND","setTimeout","tagName","which","makeArray","ITEM","indexOf","_getItemByDirection","isNextDirection","isPrevDirection","lastItemIndex","wrap","itemIndex","_triggerSlideEvent","relatedTarget","eventDirectionName","targetIndex","fromIndex","slideEvent","SLIDE","_setActiveIndicatorElement","ACTIVE","nextIndicator","children","addClass","directionalClassName","orderClassName","activeElementIndex","nextElement","nextElementIndex","isCycling","slidEvent","reflow","_this3","action","slide","_dataApiClickHandler","slideIndex","DATA_SLIDE","LOAD_DATA_API","DATA_RIDE","$carousel","Collapse","Dimension","_isTransitioning","_triggerArray","id","tabToggles","DATA_TOGGLE","elem","filter","push","_parent","_getParent","_addAriaAndCollapsedClass","hide","show","actives","activesData","ACTIVES","startEvent","SHOW","dimension","_getDimension","style","attr","setTransitioning","complete","SHOWN","scrollSize","slice","HIDE","getBoundingClientRect","HIDDEN","isTransitioning","jquery","_getTargetFromElement","triggerArray","isOpen","$this","currentTarget","$trigger","$target","Dropdown","REGEXP_KEYDOWN","ARROW_UP_KEYCODE","AttachmentMap","_popper","_menu","_getMenuElement","_inNavbar","_detectNavbar","disabled","_getParentFromElement","isActive","_clearMenus","showEvent","Popper","boundary","_getPopperConfig","noop","destroy","update","scheduleUpdate","CLICK","stopPropagation","constructor","_getPlacement","$parentDropdown","placement","offsetConf","offset","offsets","flip","toggles","context","dropdownMenu","hideEvent","parentNode","_dataApiKeydownHandler","items","get","KEYDOWN_DATA_API","KEYUP_DATA_API","e","Modal","_dialog","DIALOG","_backdrop","_isShown","_isBodyOverflowing","_ignoreBackdropClick","_originalBodyPadding","_scrollbarWidth","_checkScrollbar","_setScrollbar","_adjustDialog","body","_setEscapeEvent","_setResizeEvent","CLICK_DISMISS","DATA_DISMISS","MOUSEDOWN_DISMISS","MOUSEUP_DISMISS","_showBackdrop","_showElement","FOCUSIN","_hideModal","handleUpdate","Node","ELEMENT_NODE","appendChild","display","removeAttribute","scrollTop","_enforceFocus","shownEvent","transitionComplete","_this4","has","KEYDOWN_DISMISS","RESIZE","_this6","_resetAdjustments","_resetScrollbar","_this7","_removeBackdrop","callback","animate","backdrop","doAnimate","createElement","className","appendTo","_this8","callbackRemove","isModalOverflowing","scrollHeight","clientHeight","paddingLeft","paddingRight","rect","left","right","innerWidth","_getScrollbarWidth","FIXED_CONTENT","actualPadding","calculatedPadding","parseFloat","_this9","STICKY_CONTENT","actualMargin","marginRight","calculatedMargin","NAVBAR_TOGGLER","padding","margin","scrollDiv","scrollbarWidth","width","clientWidth","removeChild","Tooltip","BSCLS_PREFIX_REGEX","HoverState","Trigger","_isEnabled","_timeout","_hoverState","_activeTrigger","tip","_setListeners","enable","disable","toggleEnabled","dataKey","_getDelegateConfig","click","_isWithActiveTrigger","_enter","_leave","getTipElement","isWithContent","isInTheDom","ownerDocument","tipId","getUID","setContent","animation","attachment","_getAttachment","addAttachmentClass","container","INSERTED","fallbackPlacement","originalPlacement","_handlePopperPlacementChange","_fixTransition","prevHoverState","_TRANSITION_DURATION","_cleanTipClass","getTitle","CLASS_PREFIX","template","$tip","setElementContent","content","html","empty","append","text","title","split","forEach","eventIn","eventOut","FOCUSOUT","_fixTitle","titleType","delay","tabClass","join","initConfigAnimation","Popover","subClass","superClass","create","__proto__","_getContent","ScrollSpy","OffsetMethod","_scrollElement","_selector","NAV_LINKS","LIST_ITEMS","DROPDOWN_ITEMS","_offsets","_targets","_activeTarget","_scrollHeight","SCROLL","_process","refresh","autoMethod","offsetMethod","method","offsetBase","_getScrollTop","_getScrollHeight","map","targetSelector","targetBCR","height","top","item","sort","a","b","pageYOffset","max","_getOffsetHeight","innerHeight","maxScroll","_activate","_clear","queries","$link","DROPDOWN","DROPDOWN_TOGGLE","parents","NAV_LIST_GROUP","NAV_ITEMS","ACTIVATE","scrollSpys","DATA_SPY","$spy","Tab","previous","listElement","itemSelector","nodeName","hiddenEvent","active","_transitionComplete","dropdownChild","dropdownElement","version"],"mappings":"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","sourcesContent":["export { _createClass as createClass, _extends as extends, _inheritsLoose as inheritsLoose };\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nfunction _extends() {\n _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n };\n\n return _extends.apply(this, arguments);\n}\n\nfunction _inheritsLoose(subClass, superClass) {\n subClass.prototype = Object.create(superClass.prototype);\n subClass.prototype.constructor = subClass;\n subClass.__proto__ = superClass;\n}","import $ from 'jquery'\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0-beta.3): util.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Util = (($) => {\n\n\n /**\n * ------------------------------------------------------------------------\n * Private TransitionEnd Helpers\n * ------------------------------------------------------------------------\n */\n\n let transition = false\n\n const MAX_UID = 1000000\n\n // shoutout AngusCroll (https://goo.gl/pxwQGp)\n function toType(obj) {\n return {}.toString.call(obj).match(/\\s([a-zA-Z]+)/)[1].toLowerCase()\n }\n\n function getSpecialTransitionEndEvent() {\n return {\n bindType: transition.end,\n delegateType: transition.end,\n handle(event) {\n if ($(event.target).is(this)) {\n return event.handleObj.handler.apply(this, arguments) // eslint-disable-line prefer-rest-params\n }\n return undefined // eslint-disable-line no-undefined\n }\n }\n }\n\n function transitionEndTest() {\n if (window.QUnit) {\n return false\n }\n\n return {\n end: 'transitionend'\n }\n }\n\n function transitionEndEmulator(duration) {\n let called = false\n\n $(this).one(Util.TRANSITION_END, () => {\n called = true\n })\n\n setTimeout(() => {\n if (!called) {\n Util.triggerTransitionEnd(this)\n }\n }, duration)\n\n return this\n }\n\n function setTransitionEndSupport() {\n transition = transitionEndTest()\n\n $.fn.emulateTransitionEnd = transitionEndEmulator\n\n if (Util.supportsTransitionEnd()) {\n $.event.special[Util.TRANSITION_END] = getSpecialTransitionEndEvent()\n }\n }\n\n function escapeId(selector) {\n // we escape IDs in case of special selectors (selector = '#myId:something')\n // $.escapeSelector does not exist in jQuery < 3\n selector = typeof $.escapeSelector === 'function' ? $.escapeSelector(selector).substr(1) :\n selector.replace(/(:|\\.|\\[|\\]|,|=|@)/g, '\\\\$1')\n\n return selector\n }\n\n /**\n * --------------------------------------------------------------------------\n * Public Util Api\n * --------------------------------------------------------------------------\n */\n\n const Util = {\n\n TRANSITION_END: 'bsTransitionEnd',\n\n getUID(prefix) {\n do {\n // eslint-disable-next-line no-bitwise\n prefix += ~~(Math.random() * MAX_UID) // \"~~\" acts like a faster Math.floor() here\n } while (document.getElementById(prefix))\n return prefix\n },\n\n getSelectorFromElement(element) {\n let selector = element.getAttribute('data-target')\n if (!selector || selector === '#') {\n selector = element.getAttribute('href') || ''\n }\n\n // if it's an ID\n if (selector.charAt(0) === '#') {\n selector = escapeId(selector)\n }\n\n try {\n const $selector = $(document).find(selector)\n return $selector.length > 0 ? selector : null\n } catch (error) {\n return null\n }\n },\n\n reflow(element) {\n return element.offsetHeight\n },\n\n triggerTransitionEnd(element) {\n $(element).trigger(transition.end)\n },\n\n supportsTransitionEnd() {\n return Boolean(transition)\n },\n\n isElement(obj) {\n return (obj[0] || obj).nodeType\n },\n\n typeCheckConfig(componentName, config, configTypes) {\n for (const property in configTypes) {\n if (Object.prototype.hasOwnProperty.call(configTypes, property)) {\n const expectedTypes = configTypes[property]\n const value = config[property]\n const valueType = value && Util.isElement(value) ?\n 'element' : toType(value)\n\n if (!new RegExp(expectedTypes).test(valueType)) {\n throw new Error(\n `${componentName.toUpperCase()}: ` +\n `Option \"${property}\" provided type \"${valueType}\" ` +\n `but expected type \"${expectedTypes}\".`)\n }\n }\n }\n }\n }\n\n setTransitionEndSupport()\n\n return Util\n\n})($)\n\nexport default Util\n","import $ from 'jquery'\nimport Util from './util'\n\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0-beta.3): alert.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Alert = (($) => {\n\n\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'alert'\n const VERSION = '4.0.0-beta.3'\n const DATA_KEY = 'bs.alert'\n const EVENT_KEY = `.${DATA_KEY}`\n const DATA_API_KEY = '.data-api'\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n const TRANSITION_DURATION = 150\n\n const Selector = {\n DISMISS : '[data-dismiss=\"alert\"]'\n }\n\n const Event = {\n CLOSE : `close${EVENT_KEY}`,\n CLOSED : `closed${EVENT_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`\n }\n\n const ClassName = {\n ALERT : 'alert',\n FADE : 'fade',\n SHOW : 'show'\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class Alert {\n\n constructor(element) {\n this._element = element\n }\n\n\n // getters\n\n static get VERSION() {\n return VERSION\n }\n\n\n // public\n\n close(element) {\n element = element || this._element\n\n const rootElement = this._getRootElement(element)\n const customEvent = this._triggerCloseEvent(rootElement)\n\n if (customEvent.isDefaultPrevented()) {\n return\n }\n\n this._removeElement(rootElement)\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n this._element = null\n }\n\n\n // private\n\n _getRootElement(element) {\n const selector = Util.getSelectorFromElement(element)\n let parent = false\n\n if (selector) {\n parent = $(selector)[0]\n }\n\n if (!parent) {\n parent = $(element).closest(`.${ClassName.ALERT}`)[0]\n }\n\n return parent\n }\n\n _triggerCloseEvent(element) {\n const closeEvent = $.Event(Event.CLOSE)\n\n $(element).trigger(closeEvent)\n return closeEvent\n }\n\n _removeElement(element) {\n $(element).removeClass(ClassName.SHOW)\n\n if (!Util.supportsTransitionEnd() ||\n !$(element).hasClass(ClassName.FADE)) {\n this._destroyElement(element)\n return\n }\n\n $(element)\n .one(Util.TRANSITION_END, (event) => this._destroyElement(element, event))\n .emulateTransitionEnd(TRANSITION_DURATION)\n }\n\n _destroyElement(element) {\n $(element)\n .detach()\n .trigger(Event.CLOSED)\n .remove()\n }\n\n\n // static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n const $element = $(this)\n let data = $element.data(DATA_KEY)\n\n if (!data) {\n data = new Alert(this)\n $element.data(DATA_KEY, data)\n }\n\n if (config === 'close') {\n data[config](this)\n }\n })\n }\n\n static _handleDismiss(alertInstance) {\n return function (event) {\n if (event) {\n event.preventDefault()\n }\n\n alertInstance.close(this)\n }\n }\n\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n $(document).on(\n Event.CLICK_DATA_API,\n Selector.DISMISS,\n Alert._handleDismiss(new Alert())\n )\n\n\n /**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n $.fn[NAME] = Alert._jQueryInterface\n $.fn[NAME].Constructor = Alert\n $.fn[NAME].noConflict = function () {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Alert._jQueryInterface\n }\n\n return Alert\n\n})($)\n\nexport default Alert\n","import $ from 'jquery'\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0-beta.3): button.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Button = (($) => {\n\n\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'button'\n const VERSION = '4.0.0-beta.3'\n const DATA_KEY = 'bs.button'\n const EVENT_KEY = `.${DATA_KEY}`\n const DATA_API_KEY = '.data-api'\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n\n const ClassName = {\n ACTIVE : 'active',\n BUTTON : 'btn',\n FOCUS : 'focus'\n }\n\n const Selector = {\n DATA_TOGGLE_CARROT : '[data-toggle^=\"button\"]',\n DATA_TOGGLE : '[data-toggle=\"buttons\"]',\n INPUT : 'input',\n ACTIVE : '.active',\n BUTTON : '.btn'\n }\n\n const Event = {\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`,\n FOCUS_BLUR_DATA_API : `focus${EVENT_KEY}${DATA_API_KEY} `\n + `blur${EVENT_KEY}${DATA_API_KEY}`\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class Button {\n\n constructor(element) {\n this._element = element\n }\n\n\n // getters\n\n static get VERSION() {\n return VERSION\n }\n\n\n // public\n\n toggle() {\n let triggerChangeEvent = true\n let addAriaPressed = true\n const rootElement = $(this._element).closest(\n Selector.DATA_TOGGLE\n )[0]\n\n if (rootElement) {\n const input = $(this._element).find(Selector.INPUT)[0]\n\n if (input) {\n if (input.type === 'radio') {\n if (input.checked &&\n $(this._element).hasClass(ClassName.ACTIVE)) {\n triggerChangeEvent = false\n\n } else {\n const activeElement = $(rootElement).find(Selector.ACTIVE)[0]\n\n if (activeElement) {\n $(activeElement).removeClass(ClassName.ACTIVE)\n }\n }\n }\n\n if (triggerChangeEvent) {\n if (input.hasAttribute('disabled') ||\n rootElement.hasAttribute('disabled') ||\n input.classList.contains('disabled') ||\n rootElement.classList.contains('disabled')) {\n return\n }\n input.checked = !$(this._element).hasClass(ClassName.ACTIVE)\n $(input).trigger('change')\n }\n\n input.focus()\n addAriaPressed = false\n }\n\n }\n\n if (addAriaPressed) {\n this._element.setAttribute('aria-pressed',\n !$(this._element).hasClass(ClassName.ACTIVE))\n }\n\n if (triggerChangeEvent) {\n $(this._element).toggleClass(ClassName.ACTIVE)\n }\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n this._element = null\n }\n\n\n // static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n\n if (!data) {\n data = new Button(this)\n $(this).data(DATA_KEY, data)\n }\n\n if (config === 'toggle') {\n data[config]()\n }\n })\n }\n\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n $(document)\n .on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE_CARROT, (event) => {\n event.preventDefault()\n\n let button = event.target\n\n if (!$(button).hasClass(ClassName.BUTTON)) {\n button = $(button).closest(Selector.BUTTON)\n }\n\n Button._jQueryInterface.call($(button), 'toggle')\n })\n .on(Event.FOCUS_BLUR_DATA_API, Selector.DATA_TOGGLE_CARROT, (event) => {\n const button = $(event.target).closest(Selector.BUTTON)[0]\n $(button).toggleClass(ClassName.FOCUS, /^focus(in)?$/.test(event.type))\n })\n\n\n /**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n $.fn[NAME] = Button._jQueryInterface\n $.fn[NAME].Constructor = Button\n $.fn[NAME].noConflict = function () {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Button._jQueryInterface\n }\n\n return Button\n\n})($)\n\nexport default Button\n","import $ from 'jquery'\nimport Util from './util'\n\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0-beta.3): carousel.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Carousel = (($) => {\n\n\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'carousel'\n const VERSION = '4.0.0-beta.3'\n const DATA_KEY = 'bs.carousel'\n const EVENT_KEY = `.${DATA_KEY}`\n const DATA_API_KEY = '.data-api'\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n const TRANSITION_DURATION = 600\n const ARROW_LEFT_KEYCODE = 37 // KeyboardEvent.which value for left arrow key\n const ARROW_RIGHT_KEYCODE = 39 // KeyboardEvent.which value for right arrow key\n const TOUCHEVENT_COMPAT_WAIT = 500 // Time for mouse compat events to fire after touch\n\n const Default = {\n interval : 5000,\n keyboard : true,\n slide : false,\n pause : 'hover',\n wrap : true\n }\n\n const DefaultType = {\n interval : '(number|boolean)',\n keyboard : 'boolean',\n slide : '(boolean|string)',\n pause : '(string|boolean)',\n wrap : 'boolean'\n }\n\n const Direction = {\n NEXT : 'next',\n PREV : 'prev',\n LEFT : 'left',\n RIGHT : 'right'\n }\n\n const Event = {\n SLIDE : `slide${EVENT_KEY}`,\n SLID : `slid${EVENT_KEY}`,\n KEYDOWN : `keydown${EVENT_KEY}`,\n MOUSEENTER : `mouseenter${EVENT_KEY}`,\n MOUSELEAVE : `mouseleave${EVENT_KEY}`,\n TOUCHEND : `touchend${EVENT_KEY}`,\n LOAD_DATA_API : `load${EVENT_KEY}${DATA_API_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`\n }\n\n const ClassName = {\n CAROUSEL : 'carousel',\n ACTIVE : 'active',\n SLIDE : 'slide',\n RIGHT : 'carousel-item-right',\n LEFT : 'carousel-item-left',\n NEXT : 'carousel-item-next',\n PREV : 'carousel-item-prev',\n ITEM : 'carousel-item'\n }\n\n const Selector = {\n ACTIVE : '.active',\n ACTIVE_ITEM : '.active.carousel-item',\n ITEM : '.carousel-item',\n NEXT_PREV : '.carousel-item-next, .carousel-item-prev',\n INDICATORS : '.carousel-indicators',\n DATA_SLIDE : '[data-slide], [data-slide-to]',\n DATA_RIDE : '[data-ride=\"carousel\"]'\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class Carousel {\n\n constructor(element, config) {\n this._items = null\n this._interval = null\n this._activeElement = null\n\n this._isPaused = false\n this._isSliding = false\n\n this.touchTimeout = null\n\n this._config = this._getConfig(config)\n this._element = $(element)[0]\n this._indicatorsElement = $(this._element).find(Selector.INDICATORS)[0]\n\n this._addEventListeners()\n }\n\n\n // getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n\n // public\n\n next() {\n if (!this._isSliding) {\n this._slide(Direction.NEXT)\n }\n }\n\n nextWhenVisible() {\n // Don't call next when the page isn't visible\n // or the carousel or its parent isn't visible\n if (!document.hidden &&\n ($(this._element).is(':visible') && $(this._element).css('visibility') !== 'hidden')) {\n this.next()\n }\n }\n\n prev() {\n if (!this._isSliding) {\n this._slide(Direction.PREV)\n }\n }\n\n pause(event) {\n if (!event) {\n this._isPaused = true\n }\n\n if ($(this._element).find(Selector.NEXT_PREV)[0] &&\n Util.supportsTransitionEnd()) {\n Util.triggerTransitionEnd(this._element)\n this.cycle(true)\n }\n\n clearInterval(this._interval)\n this._interval = null\n }\n\n cycle(event) {\n if (!event) {\n this._isPaused = false\n }\n\n if (this._interval) {\n clearInterval(this._interval)\n this._interval = null\n }\n\n if (this._config.interval && !this._isPaused) {\n this._interval = setInterval(\n (document.visibilityState ? this.nextWhenVisible : this.next).bind(this),\n this._config.interval\n )\n }\n }\n\n to(index) {\n this._activeElement = $(this._element).find(Selector.ACTIVE_ITEM)[0]\n\n const activeIndex = this._getItemIndex(this._activeElement)\n\n if (index > this._items.length - 1 || index < 0) {\n return\n }\n\n if (this._isSliding) {\n $(this._element).one(Event.SLID, () => this.to(index))\n return\n }\n\n if (activeIndex === index) {\n this.pause()\n this.cycle()\n return\n }\n\n const direction = index > activeIndex ?\n Direction.NEXT :\n Direction.PREV\n\n this._slide(direction, this._items[index])\n }\n\n dispose() {\n $(this._element).off(EVENT_KEY)\n $.removeData(this._element, DATA_KEY)\n\n this._items = null\n this._config = null\n this._element = null\n this._interval = null\n this._isPaused = null\n this._isSliding = null\n this._activeElement = null\n this._indicatorsElement = null\n }\n\n\n // private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...config\n }\n Util.typeCheckConfig(NAME, config, DefaultType)\n return config\n }\n\n _addEventListeners() {\n if (this._config.keyboard) {\n $(this._element)\n .on(Event.KEYDOWN, (event) => this._keydown(event))\n }\n\n if (this._config.pause === 'hover') {\n $(this._element)\n .on(Event.MOUSEENTER, (event) => this.pause(event))\n .on(Event.MOUSELEAVE, (event) => this.cycle(event))\n if ('ontouchstart' in document.documentElement) {\n // if it's a touch-enabled device, mouseenter/leave are fired as\n // part of the mouse compatibility events on first tap - the carousel\n // would stop cycling until user tapped out of it;\n // here, we listen for touchend, explicitly pause the carousel\n // (as if it's the second time we tap on it, mouseenter compat event\n // is NOT fired) and after a timeout (to allow for mouse compatibility\n // events to fire) we explicitly restart cycling\n $(this._element).on(Event.TOUCHEND, () => {\n this.pause()\n if (this.touchTimeout) {\n clearTimeout(this.touchTimeout)\n }\n this.touchTimeout = setTimeout((event) => this.cycle(event), TOUCHEVENT_COMPAT_WAIT + this._config.interval)\n })\n }\n }\n }\n\n _keydown(event) {\n if (/input|textarea/i.test(event.target.tagName)) {\n return\n }\n\n switch (event.which) {\n case ARROW_LEFT_KEYCODE:\n event.preventDefault()\n this.prev()\n break\n case ARROW_RIGHT_KEYCODE:\n event.preventDefault()\n this.next()\n break\n default:\n return\n }\n }\n\n _getItemIndex(element) {\n this._items = $.makeArray($(element).parent().find(Selector.ITEM))\n return this._items.indexOf(element)\n }\n\n _getItemByDirection(direction, activeElement) {\n const isNextDirection = direction === Direction.NEXT\n const isPrevDirection = direction === Direction.PREV\n const activeIndex = this._getItemIndex(activeElement)\n const lastItemIndex = this._items.length - 1\n const isGoingToWrap = isPrevDirection && activeIndex === 0 ||\n isNextDirection && activeIndex === lastItemIndex\n\n if (isGoingToWrap && !this._config.wrap) {\n return activeElement\n }\n\n const delta = direction === Direction.PREV ? -1 : 1\n const itemIndex = (activeIndex + delta) % this._items.length\n\n return itemIndex === -1 ?\n this._items[this._items.length - 1] : this._items[itemIndex]\n }\n\n\n _triggerSlideEvent(relatedTarget, eventDirectionName) {\n const targetIndex = this._getItemIndex(relatedTarget)\n const fromIndex = this._getItemIndex($(this._element).find(Selector.ACTIVE_ITEM)[0])\n const slideEvent = $.Event(Event.SLIDE, {\n relatedTarget,\n direction: eventDirectionName,\n from: fromIndex,\n to: targetIndex\n })\n\n $(this._element).trigger(slideEvent)\n\n return slideEvent\n }\n\n _setActiveIndicatorElement(element) {\n if (this._indicatorsElement) {\n $(this._indicatorsElement)\n .find(Selector.ACTIVE)\n .removeClass(ClassName.ACTIVE)\n\n const nextIndicator = this._indicatorsElement.children[\n this._getItemIndex(element)\n ]\n\n if (nextIndicator) {\n $(nextIndicator).addClass(ClassName.ACTIVE)\n }\n }\n }\n\n _slide(direction, element) {\n const activeElement = $(this._element).find(Selector.ACTIVE_ITEM)[0]\n const activeElementIndex = this._getItemIndex(activeElement)\n const nextElement = element || activeElement &&\n this._getItemByDirection(direction, activeElement)\n const nextElementIndex = this._getItemIndex(nextElement)\n const isCycling = Boolean(this._interval)\n\n let directionalClassName\n let orderClassName\n let eventDirectionName\n\n if (direction === Direction.NEXT) {\n directionalClassName = ClassName.LEFT\n orderClassName = ClassName.NEXT\n eventDirectionName = Direction.LEFT\n } else {\n directionalClassName = ClassName.RIGHT\n orderClassName = ClassName.PREV\n eventDirectionName = Direction.RIGHT\n }\n\n if (nextElement && $(nextElement).hasClass(ClassName.ACTIVE)) {\n this._isSliding = false\n return\n }\n\n const slideEvent = this._triggerSlideEvent(nextElement, eventDirectionName)\n if (slideEvent.isDefaultPrevented()) {\n return\n }\n\n if (!activeElement || !nextElement) {\n // some weirdness is happening, so we bail\n return\n }\n\n this._isSliding = true\n\n if (isCycling) {\n this.pause()\n }\n\n this._setActiveIndicatorElement(nextElement)\n\n const slidEvent = $.Event(Event.SLID, {\n relatedTarget: nextElement,\n direction: eventDirectionName,\n from: activeElementIndex,\n to: nextElementIndex\n })\n\n if (Util.supportsTransitionEnd() &&\n $(this._element).hasClass(ClassName.SLIDE)) {\n\n $(nextElement).addClass(orderClassName)\n\n Util.reflow(nextElement)\n\n $(activeElement).addClass(directionalClassName)\n $(nextElement).addClass(directionalClassName)\n\n $(activeElement)\n .one(Util.TRANSITION_END, () => {\n $(nextElement)\n .removeClass(`${directionalClassName} ${orderClassName}`)\n .addClass(ClassName.ACTIVE)\n\n $(activeElement).removeClass(`${ClassName.ACTIVE} ${orderClassName} ${directionalClassName}`)\n\n this._isSliding = false\n\n setTimeout(() => $(this._element).trigger(slidEvent), 0)\n\n })\n .emulateTransitionEnd(TRANSITION_DURATION)\n\n } else {\n $(activeElement).removeClass(ClassName.ACTIVE)\n $(nextElement).addClass(ClassName.ACTIVE)\n\n this._isSliding = false\n $(this._element).trigger(slidEvent)\n }\n\n if (isCycling) {\n this.cycle()\n }\n }\n\n\n // static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n let _config = {\n ...Default,\n ...$(this).data()\n }\n\n if (typeof config === 'object') {\n _config = {\n ..._config,\n ...config\n }\n }\n\n const action = typeof config === 'string' ? config : _config.slide\n\n if (!data) {\n data = new Carousel(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'number') {\n data.to(config)\n } else if (typeof action === 'string') {\n if (typeof data[action] === 'undefined') {\n throw new Error(`No method named \"${action}\"`)\n }\n data[action]()\n } else if (_config.interval) {\n data.pause()\n data.cycle()\n }\n })\n }\n\n static _dataApiClickHandler(event) {\n const selector = Util.getSelectorFromElement(this)\n\n if (!selector) {\n return\n }\n\n const target = $(selector)[0]\n\n if (!target || !$(target).hasClass(ClassName.CAROUSEL)) {\n return\n }\n\n const config = {\n ...$(target).data(),\n ...$(this).data()\n }\n const slideIndex = this.getAttribute('data-slide-to')\n\n if (slideIndex) {\n config.interval = false\n }\n\n Carousel._jQueryInterface.call($(target), config)\n\n if (slideIndex) {\n $(target).data(DATA_KEY).to(slideIndex)\n }\n\n event.preventDefault()\n }\n\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n $(document)\n .on(Event.CLICK_DATA_API, Selector.DATA_SLIDE, Carousel._dataApiClickHandler)\n\n $(window).on(Event.LOAD_DATA_API, () => {\n $(Selector.DATA_RIDE).each(function () {\n const $carousel = $(this)\n Carousel._jQueryInterface.call($carousel, $carousel.data())\n })\n })\n\n\n /**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n $.fn[NAME] = Carousel._jQueryInterface\n $.fn[NAME].Constructor = Carousel\n $.fn[NAME].noConflict = function () {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Carousel._jQueryInterface\n }\n\n return Carousel\n\n})($)\n\nexport default Carousel\n","import $ from 'jquery'\nimport Util from './util'\n\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0-beta.3): collapse.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Collapse = (($) => {\n\n\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'collapse'\n const VERSION = '4.0.0-beta.3'\n const DATA_KEY = 'bs.collapse'\n const EVENT_KEY = `.${DATA_KEY}`\n const DATA_API_KEY = '.data-api'\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n const TRANSITION_DURATION = 600\n\n const Default = {\n toggle : true,\n parent : ''\n }\n\n const DefaultType = {\n toggle : 'boolean',\n parent : '(string|element)'\n }\n\n const Event = {\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`\n }\n\n const ClassName = {\n SHOW : 'show',\n COLLAPSE : 'collapse',\n COLLAPSING : 'collapsing',\n COLLAPSED : 'collapsed'\n }\n\n const Dimension = {\n WIDTH : 'width',\n HEIGHT : 'height'\n }\n\n const Selector = {\n ACTIVES : '.show, .collapsing',\n DATA_TOGGLE : '[data-toggle=\"collapse\"]'\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class Collapse {\n\n constructor(element, config) {\n this._isTransitioning = false\n this._element = element\n this._config = this._getConfig(config)\n this._triggerArray = $.makeArray($(\n `[data-toggle=\"collapse\"][href=\"#${element.id}\"],` +\n `[data-toggle=\"collapse\"][data-target=\"#${element.id}\"]`\n ))\n const tabToggles = $(Selector.DATA_TOGGLE)\n for (let i = 0; i < tabToggles.length; i++) {\n const elem = tabToggles[i]\n const selector = Util.getSelectorFromElement(elem)\n if (selector !== null && $(selector).filter(element).length > 0) {\n this._triggerArray.push(elem)\n }\n }\n\n this._parent = this._config.parent ? this._getParent() : null\n\n if (!this._config.parent) {\n this._addAriaAndCollapsedClass(this._element, this._triggerArray)\n }\n\n if (this._config.toggle) {\n this.toggle()\n }\n }\n\n\n // getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n\n // public\n\n toggle() {\n if ($(this._element).hasClass(ClassName.SHOW)) {\n this.hide()\n } else {\n this.show()\n }\n }\n\n show() {\n if (this._isTransitioning ||\n $(this._element).hasClass(ClassName.SHOW)) {\n return\n }\n\n let actives\n let activesData\n\n if (this._parent) {\n actives = $.makeArray($(this._parent).children().children(Selector.ACTIVES))\n if (!actives.length) {\n actives = null\n }\n }\n\n if (actives) {\n activesData = $(actives).data(DATA_KEY)\n if (activesData && activesData._isTransitioning) {\n return\n }\n }\n\n const startEvent = $.Event(Event.SHOW)\n $(this._element).trigger(startEvent)\n if (startEvent.isDefaultPrevented()) {\n return\n }\n\n if (actives) {\n Collapse._jQueryInterface.call($(actives), 'hide')\n if (!activesData) {\n $(actives).data(DATA_KEY, null)\n }\n }\n\n const dimension = this._getDimension()\n\n $(this._element)\n .removeClass(ClassName.COLLAPSE)\n .addClass(ClassName.COLLAPSING)\n\n this._element.style[dimension] = 0\n\n if (this._triggerArray.length) {\n $(this._triggerArray)\n .removeClass(ClassName.COLLAPSED)\n .attr('aria-expanded', true)\n }\n\n this.setTransitioning(true)\n\n const complete = () => {\n $(this._element)\n .removeClass(ClassName.COLLAPSING)\n .addClass(ClassName.COLLAPSE)\n .addClass(ClassName.SHOW)\n\n this._element.style[dimension] = ''\n\n this.setTransitioning(false)\n\n $(this._element).trigger(Event.SHOWN)\n }\n\n if (!Util.supportsTransitionEnd()) {\n complete()\n return\n }\n\n const capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1)\n const scrollSize = `scroll${capitalizedDimension}`\n\n $(this._element)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(TRANSITION_DURATION)\n\n this._element.style[dimension] = `${this._element[scrollSize]}px`\n }\n\n hide() {\n if (this._isTransitioning ||\n !$(this._element).hasClass(ClassName.SHOW)) {\n return\n }\n\n const startEvent = $.Event(Event.HIDE)\n $(this._element).trigger(startEvent)\n if (startEvent.isDefaultPrevented()) {\n return\n }\n\n const dimension = this._getDimension()\n\n this._element.style[dimension] = `${this._element.getBoundingClientRect()[dimension]}px`\n\n Util.reflow(this._element)\n\n $(this._element)\n .addClass(ClassName.COLLAPSING)\n .removeClass(ClassName.COLLAPSE)\n .removeClass(ClassName.SHOW)\n\n if (this._triggerArray.length) {\n for (let i = 0; i < this._triggerArray.length; i++) {\n const trigger = this._triggerArray[i]\n const selector = Util.getSelectorFromElement(trigger)\n if (selector !== null) {\n const $elem = $(selector)\n if (!$elem.hasClass(ClassName.SHOW)) {\n $(trigger).addClass(ClassName.COLLAPSED)\n .attr('aria-expanded', false)\n }\n }\n }\n }\n\n this.setTransitioning(true)\n\n const complete = () => {\n this.setTransitioning(false)\n $(this._element)\n .removeClass(ClassName.COLLAPSING)\n .addClass(ClassName.COLLAPSE)\n .trigger(Event.HIDDEN)\n }\n\n this._element.style[dimension] = ''\n\n if (!Util.supportsTransitionEnd()) {\n complete()\n return\n }\n\n $(this._element)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(TRANSITION_DURATION)\n }\n\n setTransitioning(isTransitioning) {\n this._isTransitioning = isTransitioning\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n\n this._config = null\n this._parent = null\n this._element = null\n this._triggerArray = null\n this._isTransitioning = null\n }\n\n\n // private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...config\n }\n config.toggle = Boolean(config.toggle) // coerce string values\n Util.typeCheckConfig(NAME, config, DefaultType)\n return config\n }\n\n _getDimension() {\n const hasWidth = $(this._element).hasClass(Dimension.WIDTH)\n return hasWidth ? Dimension.WIDTH : Dimension.HEIGHT\n }\n\n _getParent() {\n let parent = null\n if (Util.isElement(this._config.parent)) {\n parent = this._config.parent\n\n // it's a jQuery object\n if (typeof this._config.parent.jquery !== 'undefined') {\n parent = this._config.parent[0]\n }\n } else {\n parent = $(this._config.parent)[0]\n }\n\n const selector =\n `[data-toggle=\"collapse\"][data-parent=\"${this._config.parent}\"]`\n\n $(parent).find(selector).each((i, element) => {\n this._addAriaAndCollapsedClass(\n Collapse._getTargetFromElement(element),\n [element]\n )\n })\n\n return parent\n }\n\n _addAriaAndCollapsedClass(element, triggerArray) {\n if (element) {\n const isOpen = $(element).hasClass(ClassName.SHOW)\n\n if (triggerArray.length) {\n $(triggerArray)\n .toggleClass(ClassName.COLLAPSED, !isOpen)\n .attr('aria-expanded', isOpen)\n }\n }\n }\n\n\n // static\n\n static _getTargetFromElement(element) {\n const selector = Util.getSelectorFromElement(element)\n return selector ? $(selector)[0] : null\n }\n\n static _jQueryInterface(config) {\n return this.each(function () {\n const $this = $(this)\n let data = $this.data(DATA_KEY)\n const _config = {\n ...Default,\n ...$this.data(),\n ...typeof config === 'object' && config\n }\n\n if (!data && _config.toggle && /show|hide/.test(config)) {\n _config.toggle = false\n }\n\n if (!data) {\n data = new Collapse(this, _config)\n $this.data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new Error(`No method named \"${config}\"`)\n }\n data[config]()\n }\n })\n }\n\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n $(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {\n // preventDefault only for elements (which change the URL) not inside the collapsible element\n if (event.currentTarget.tagName === 'A') {\n event.preventDefault()\n }\n\n const $trigger = $(this)\n const selector = Util.getSelectorFromElement(this)\n $(selector).each(function () {\n const $target = $(this)\n const data = $target.data(DATA_KEY)\n const config = data ? 'toggle' : $trigger.data()\n Collapse._jQueryInterface.call($target, config)\n })\n })\n\n\n /**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n $.fn[NAME] = Collapse._jQueryInterface\n $.fn[NAME].Constructor = Collapse\n $.fn[NAME].noConflict = function () {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Collapse._jQueryInterface\n }\n\n return Collapse\n\n})($)\n\nexport default Collapse\n","import $ from 'jquery'\nimport Popper from 'popper.js'\nimport Util from './util'\n\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0-beta.3): dropdown.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Dropdown = (($) => {\n\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'dropdown'\n const VERSION = '4.0.0-beta.3'\n const DATA_KEY = 'bs.dropdown'\n const EVENT_KEY = `.${DATA_KEY}`\n const DATA_API_KEY = '.data-api'\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n const ESCAPE_KEYCODE = 27 // KeyboardEvent.which value for Escape (Esc) key\n const SPACE_KEYCODE = 32 // KeyboardEvent.which value for space key\n const TAB_KEYCODE = 9 // KeyboardEvent.which value for tab key\n const ARROW_UP_KEYCODE = 38 // KeyboardEvent.which value for up arrow key\n const ARROW_DOWN_KEYCODE = 40 // KeyboardEvent.which value for down arrow key\n const RIGHT_MOUSE_BUTTON_WHICH = 3 // MouseEvent.which value for the right button (assuming a right-handed mouse)\n const REGEXP_KEYDOWN = new RegExp(`${ARROW_UP_KEYCODE}|${ARROW_DOWN_KEYCODE}|${ESCAPE_KEYCODE}`)\n\n const Event = {\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n CLICK : `click${EVENT_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`,\n KEYDOWN_DATA_API : `keydown${EVENT_KEY}${DATA_API_KEY}`,\n KEYUP_DATA_API : `keyup${EVENT_KEY}${DATA_API_KEY}`\n }\n\n const ClassName = {\n DISABLED : 'disabled',\n SHOW : 'show',\n DROPUP : 'dropup',\n DROPRIGHT : 'dropright',\n DROPLEFT : 'dropleft',\n MENURIGHT : 'dropdown-menu-right',\n MENULEFT : 'dropdown-menu-left',\n POSITION_STATIC : 'position-static'\n }\n\n const Selector = {\n DATA_TOGGLE : '[data-toggle=\"dropdown\"]',\n FORM_CHILD : '.dropdown form',\n MENU : '.dropdown-menu',\n NAVBAR_NAV : '.navbar-nav',\n VISIBLE_ITEMS : '.dropdown-menu .dropdown-item:not(.disabled)'\n }\n\n const AttachmentMap = {\n TOP : 'top-start',\n TOPEND : 'top-end',\n BOTTOM : 'bottom-start',\n BOTTOMEND : 'bottom-end',\n RIGHT : 'right-start',\n RIGHTEND : 'right-end',\n LEFT : 'left-start',\n LEFTEND : 'left-end'\n }\n\n const Default = {\n offset : 0,\n flip : true,\n boundary : 'scrollParent'\n }\n\n const DefaultType = {\n offset : '(number|string|function)',\n flip : 'boolean',\n boundary : '(string|element)'\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class Dropdown {\n\n constructor(element, config) {\n this._element = element\n this._popper = null\n this._config = this._getConfig(config)\n this._menu = this._getMenuElement()\n this._inNavbar = this._detectNavbar()\n\n this._addEventListeners()\n }\n\n\n // getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n // public\n\n toggle() {\n if (this._element.disabled || $(this._element).hasClass(ClassName.DISABLED)) {\n return\n }\n\n const parent = Dropdown._getParentFromElement(this._element)\n const isActive = $(this._menu).hasClass(ClassName.SHOW)\n\n Dropdown._clearMenus()\n\n if (isActive) {\n return\n }\n\n const relatedTarget = {\n relatedTarget : this._element\n }\n const showEvent = $.Event(Event.SHOW, relatedTarget)\n\n $(parent).trigger(showEvent)\n\n if (showEvent.isDefaultPrevented()) {\n return\n }\n\n // Disable totally Popper.js for Dropdown in Navbar\n if (!this._inNavbar) {\n /**\n * Check for Popper dependency\n * Popper - https://popper.js.org\n */\n if (typeof Popper === 'undefined') {\n throw new Error('Bootstrap dropdown require Popper.js (https://popper.js.org)')\n }\n let element = this._element\n // for dropup with alignment we use the parent as popper container\n if ($(parent).hasClass(ClassName.DROPUP)) {\n if ($(this._menu).hasClass(ClassName.MENULEFT) || $(this._menu).hasClass(ClassName.MENURIGHT)) {\n element = parent\n }\n }\n // If boundary is not `scrollParent`, then set position to `static`\n // to allow the menu to \"escape\" the scroll parent's boundaries\n // https://github.com/twbs/bootstrap/issues/24251\n if (this._config.boundary !== 'scrollParent') {\n $(parent).addClass(ClassName.POSITION_STATIC)\n }\n this._popper = new Popper(element, this._menu, this._getPopperConfig())\n }\n\n\n // if this is a touch-enabled device we add extra\n // empty mouseover listeners to the body's immediate children;\n // only needed because of broken event delegation on iOS\n // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n if ('ontouchstart' in document.documentElement &&\n !$(parent).closest(Selector.NAVBAR_NAV).length) {\n $('body').children().on('mouseover', null, $.noop)\n }\n\n this._element.focus()\n this._element.setAttribute('aria-expanded', true)\n\n $(this._menu).toggleClass(ClassName.SHOW)\n $(parent)\n .toggleClass(ClassName.SHOW)\n .trigger($.Event(Event.SHOWN, relatedTarget))\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n $(this._element).off(EVENT_KEY)\n this._element = null\n this._menu = null\n if (this._popper !== null) {\n this._popper.destroy()\n this._popper = null\n }\n }\n\n update() {\n this._inNavbar = this._detectNavbar()\n if (this._popper !== null) {\n this._popper.scheduleUpdate()\n }\n }\n\n // private\n\n _addEventListeners() {\n $(this._element).on(Event.CLICK, (event) => {\n event.preventDefault()\n event.stopPropagation()\n this.toggle()\n })\n }\n\n _getConfig(config) {\n config = {\n ...this.constructor.Default,\n ...$(this._element).data(),\n ...config\n }\n\n Util.typeCheckConfig(\n NAME,\n config,\n this.constructor.DefaultType\n )\n\n return config\n }\n\n _getMenuElement() {\n if (!this._menu) {\n const parent = Dropdown._getParentFromElement(this._element)\n this._menu = $(parent).find(Selector.MENU)[0]\n }\n return this._menu\n }\n\n _getPlacement() {\n const $parentDropdown = $(this._element).parent()\n let placement = AttachmentMap.BOTTOM\n\n // Handle dropup\n if ($parentDropdown.hasClass(ClassName.DROPUP)) {\n placement = AttachmentMap.TOP\n if ($(this._menu).hasClass(ClassName.MENURIGHT)) {\n placement = AttachmentMap.TOPEND\n }\n } else if ($parentDropdown.hasClass(ClassName.DROPRIGHT)) {\n placement = AttachmentMap.RIGHT\n } else if ($parentDropdown.hasClass(ClassName.DROPLEFT)) {\n placement = AttachmentMap.LEFT\n } else if ($(this._menu).hasClass(ClassName.MENURIGHT)) {\n placement = AttachmentMap.BOTTOMEND\n }\n return placement\n }\n\n _detectNavbar() {\n return $(this._element).closest('.navbar').length > 0\n }\n\n _getPopperConfig() {\n const offsetConf = {}\n if (typeof this._config.offset === 'function') {\n offsetConf.fn = (data) => {\n data.offsets = {\n ...data.offsets,\n ...this._config.offset(data.offsets) || {}\n }\n return data\n }\n } else {\n offsetConf.offset = this._config.offset\n }\n const popperConfig = {\n placement : this._getPlacement(),\n modifiers : {\n offset : offsetConf,\n flip : {\n enabled : this._config.flip\n },\n preventOverflow : {\n boundariesElement : this._config.boundary\n }\n }\n }\n\n return popperConfig\n }\n\n // static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = typeof config === 'object' ? config : null\n\n if (!data) {\n data = new Dropdown(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new Error(`No method named \"${config}\"`)\n }\n data[config]()\n }\n })\n }\n\n static _clearMenus(event) {\n if (event && (event.which === RIGHT_MOUSE_BUTTON_WHICH ||\n event.type === 'keyup' && event.which !== TAB_KEYCODE)) {\n return\n }\n\n const toggles = $.makeArray($(Selector.DATA_TOGGLE))\n for (let i = 0; i < toggles.length; i++) {\n const parent = Dropdown._getParentFromElement(toggles[i])\n const context = $(toggles[i]).data(DATA_KEY)\n const relatedTarget = {\n relatedTarget : toggles[i]\n }\n\n if (!context) {\n continue\n }\n\n const dropdownMenu = context._menu\n if (!$(parent).hasClass(ClassName.SHOW)) {\n continue\n }\n\n if (event && (event.type === 'click' &&\n /input|textarea/i.test(event.target.tagName) || event.type === 'keyup' && event.which === TAB_KEYCODE)\n && $.contains(parent, event.target)) {\n continue\n }\n\n const hideEvent = $.Event(Event.HIDE, relatedTarget)\n $(parent).trigger(hideEvent)\n if (hideEvent.isDefaultPrevented()) {\n continue\n }\n\n // if this is a touch-enabled device we remove the extra\n // empty mouseover listeners we added for iOS support\n if ('ontouchstart' in document.documentElement) {\n $('body').children().off('mouseover', null, $.noop)\n }\n\n toggles[i].setAttribute('aria-expanded', 'false')\n\n $(dropdownMenu).removeClass(ClassName.SHOW)\n $(parent)\n .removeClass(ClassName.SHOW)\n .trigger($.Event(Event.HIDDEN, relatedTarget))\n }\n }\n\n static _getParentFromElement(element) {\n let parent\n const selector = Util.getSelectorFromElement(element)\n\n if (selector) {\n parent = $(selector)[0]\n }\n\n return parent || element.parentNode\n }\n\n static _dataApiKeydownHandler(event) {\n // If not input/textarea:\n // - And not a key in REGEXP_KEYDOWN => not a dropdown command\n // If input/textarea:\n // - If space key => not a dropdown command\n // - If key is other than escape\n // - If key is not up or down => not a dropdown command\n // - If trigger inside the menu => not a dropdown command\n if (/input|textarea/i.test(event.target.tagName) ?\n event.which === SPACE_KEYCODE || event.which !== ESCAPE_KEYCODE &&\n (event.which !== ARROW_DOWN_KEYCODE && event.which !== ARROW_UP_KEYCODE ||\n $(event.target).closest(Selector.MENU).length) : !REGEXP_KEYDOWN.test(event.which)) {\n return\n }\n\n event.preventDefault()\n event.stopPropagation()\n\n if (this.disabled || $(this).hasClass(ClassName.DISABLED)) {\n return\n }\n\n const parent = Dropdown._getParentFromElement(this)\n const isActive = $(parent).hasClass(ClassName.SHOW)\n\n if (!isActive && (event.which !== ESCAPE_KEYCODE || event.which !== SPACE_KEYCODE) ||\n isActive && (event.which === ESCAPE_KEYCODE || event.which === SPACE_KEYCODE)) {\n\n if (event.which === ESCAPE_KEYCODE) {\n const toggle = $(parent).find(Selector.DATA_TOGGLE)[0]\n $(toggle).trigger('focus')\n }\n\n $(this).trigger('click')\n return\n }\n\n const items = $(parent).find(Selector.VISIBLE_ITEMS).get()\n\n if (!items.length) {\n return\n }\n\n let index = items.indexOf(event.target)\n\n if (event.which === ARROW_UP_KEYCODE && index > 0) { // up\n index--\n }\n\n if (event.which === ARROW_DOWN_KEYCODE && index < items.length - 1) { // down\n index++\n }\n\n if (index < 0) {\n index = 0\n }\n\n items[index].focus()\n }\n\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n $(document)\n .on(Event.KEYDOWN_DATA_API, Selector.DATA_TOGGLE, Dropdown._dataApiKeydownHandler)\n .on(Event.KEYDOWN_DATA_API, Selector.MENU, Dropdown._dataApiKeydownHandler)\n .on(`${Event.CLICK_DATA_API} ${Event.KEYUP_DATA_API}`, Dropdown._clearMenus)\n .on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {\n event.preventDefault()\n event.stopPropagation()\n Dropdown._jQueryInterface.call($(this), 'toggle')\n })\n .on(Event.CLICK_DATA_API, Selector.FORM_CHILD, (e) => {\n e.stopPropagation()\n })\n\n\n /**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n $.fn[NAME] = Dropdown._jQueryInterface\n $.fn[NAME].Constructor = Dropdown\n $.fn[NAME].noConflict = function () {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Dropdown._jQueryInterface\n }\n\n return Dropdown\n\n})($, Popper)\n\nexport default Dropdown\n","import $ from 'jquery'\nimport Util from './util'\n\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0-beta.3): modal.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Modal = (($) => {\n\n\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'modal'\n const VERSION = '4.0.0-beta.3'\n const DATA_KEY = 'bs.modal'\n const EVENT_KEY = `.${DATA_KEY}`\n const DATA_API_KEY = '.data-api'\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n const TRANSITION_DURATION = 300\n const BACKDROP_TRANSITION_DURATION = 150\n const ESCAPE_KEYCODE = 27 // KeyboardEvent.which value for Escape (Esc) key\n\n const Default = {\n backdrop : true,\n keyboard : true,\n focus : true,\n show : true\n }\n\n const DefaultType = {\n backdrop : '(boolean|string)',\n keyboard : 'boolean',\n focus : 'boolean',\n show : 'boolean'\n }\n\n const Event = {\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n FOCUSIN : `focusin${EVENT_KEY}`,\n RESIZE : `resize${EVENT_KEY}`,\n CLICK_DISMISS : `click.dismiss${EVENT_KEY}`,\n KEYDOWN_DISMISS : `keydown.dismiss${EVENT_KEY}`,\n MOUSEUP_DISMISS : `mouseup.dismiss${EVENT_KEY}`,\n MOUSEDOWN_DISMISS : `mousedown.dismiss${EVENT_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`\n }\n\n const ClassName = {\n SCROLLBAR_MEASURER : 'modal-scrollbar-measure',\n BACKDROP : 'modal-backdrop',\n OPEN : 'modal-open',\n FADE : 'fade',\n SHOW : 'show'\n }\n\n const Selector = {\n DIALOG : '.modal-dialog',\n DATA_TOGGLE : '[data-toggle=\"modal\"]',\n DATA_DISMISS : '[data-dismiss=\"modal\"]',\n FIXED_CONTENT : '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top',\n STICKY_CONTENT : '.sticky-top',\n NAVBAR_TOGGLER : '.navbar-toggler'\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class Modal {\n\n constructor(element, config) {\n this._config = this._getConfig(config)\n this._element = element\n this._dialog = $(element).find(Selector.DIALOG)[0]\n this._backdrop = null\n this._isShown = false\n this._isBodyOverflowing = false\n this._ignoreBackdropClick = false\n this._originalBodyPadding = 0\n this._scrollbarWidth = 0\n }\n\n\n // getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n\n // public\n\n toggle(relatedTarget) {\n return this._isShown ? this.hide() : this.show(relatedTarget)\n }\n\n show(relatedTarget) {\n if (this._isTransitioning || this._isShown) {\n return\n }\n\n if (Util.supportsTransitionEnd() && $(this._element).hasClass(ClassName.FADE)) {\n this._isTransitioning = true\n }\n\n const showEvent = $.Event(Event.SHOW, {\n relatedTarget\n })\n\n $(this._element).trigger(showEvent)\n\n if (this._isShown || showEvent.isDefaultPrevented()) {\n return\n }\n\n this._isShown = true\n\n this._checkScrollbar()\n this._setScrollbar()\n\n this._adjustDialog()\n\n $(document.body).addClass(ClassName.OPEN)\n\n this._setEscapeEvent()\n this._setResizeEvent()\n\n $(this._element).on(\n Event.CLICK_DISMISS,\n Selector.DATA_DISMISS,\n (event) => this.hide(event)\n )\n\n $(this._dialog).on(Event.MOUSEDOWN_DISMISS, () => {\n $(this._element).one(Event.MOUSEUP_DISMISS, (event) => {\n if ($(event.target).is(this._element)) {\n this._ignoreBackdropClick = true\n }\n })\n })\n\n this._showBackdrop(() => this._showElement(relatedTarget))\n }\n\n hide(event) {\n if (event) {\n event.preventDefault()\n }\n\n if (this._isTransitioning || !this._isShown) {\n return\n }\n\n const hideEvent = $.Event(Event.HIDE)\n\n $(this._element).trigger(hideEvent)\n\n if (!this._isShown || hideEvent.isDefaultPrevented()) {\n return\n }\n\n this._isShown = false\n\n const transition = Util.supportsTransitionEnd() && $(this._element).hasClass(ClassName.FADE)\n\n if (transition) {\n this._isTransitioning = true\n }\n\n this._setEscapeEvent()\n this._setResizeEvent()\n\n $(document).off(Event.FOCUSIN)\n\n $(this._element).removeClass(ClassName.SHOW)\n\n $(this._element).off(Event.CLICK_DISMISS)\n $(this._dialog).off(Event.MOUSEDOWN_DISMISS)\n\n if (transition) {\n\n $(this._element)\n .one(Util.TRANSITION_END, (event) => this._hideModal(event))\n .emulateTransitionEnd(TRANSITION_DURATION)\n } else {\n this._hideModal()\n }\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n\n $(window, document, this._element, this._backdrop).off(EVENT_KEY)\n\n this._config = null\n this._element = null\n this._dialog = null\n this._backdrop = null\n this._isShown = null\n this._isBodyOverflowing = null\n this._ignoreBackdropClick = null\n this._scrollbarWidth = null\n }\n\n handleUpdate() {\n this._adjustDialog()\n }\n\n // private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...config\n }\n Util.typeCheckConfig(NAME, config, DefaultType)\n return config\n }\n\n _showElement(relatedTarget) {\n const transition = Util.supportsTransitionEnd() &&\n $(this._element).hasClass(ClassName.FADE)\n\n if (!this._element.parentNode ||\n this._element.parentNode.nodeType !== Node.ELEMENT_NODE) {\n // don't move modals dom position\n document.body.appendChild(this._element)\n }\n\n this._element.style.display = 'block'\n this._element.removeAttribute('aria-hidden')\n this._element.scrollTop = 0\n\n if (transition) {\n Util.reflow(this._element)\n }\n\n $(this._element).addClass(ClassName.SHOW)\n\n if (this._config.focus) {\n this._enforceFocus()\n }\n\n const shownEvent = $.Event(Event.SHOWN, {\n relatedTarget\n })\n\n const transitionComplete = () => {\n if (this._config.focus) {\n this._element.focus()\n }\n this._isTransitioning = false\n $(this._element).trigger(shownEvent)\n }\n\n if (transition) {\n $(this._dialog)\n .one(Util.TRANSITION_END, transitionComplete)\n .emulateTransitionEnd(TRANSITION_DURATION)\n } else {\n transitionComplete()\n }\n }\n\n _enforceFocus() {\n $(document)\n .off(Event.FOCUSIN) // guard against infinite focus loop\n .on(Event.FOCUSIN, (event) => {\n if (document !== event.target &&\n this._element !== event.target &&\n !$(this._element).has(event.target).length) {\n this._element.focus()\n }\n })\n }\n\n _setEscapeEvent() {\n if (this._isShown && this._config.keyboard) {\n $(this._element).on(Event.KEYDOWN_DISMISS, (event) => {\n if (event.which === ESCAPE_KEYCODE) {\n event.preventDefault()\n this.hide()\n }\n })\n\n } else if (!this._isShown) {\n $(this._element).off(Event.KEYDOWN_DISMISS)\n }\n }\n\n _setResizeEvent() {\n if (this._isShown) {\n $(window).on(Event.RESIZE, (event) => this.handleUpdate(event))\n } else {\n $(window).off(Event.RESIZE)\n }\n }\n\n _hideModal() {\n this._element.style.display = 'none'\n this._element.setAttribute('aria-hidden', true)\n this._isTransitioning = false\n this._showBackdrop(() => {\n $(document.body).removeClass(ClassName.OPEN)\n this._resetAdjustments()\n this._resetScrollbar()\n $(this._element).trigger(Event.HIDDEN)\n })\n }\n\n _removeBackdrop() {\n if (this._backdrop) {\n $(this._backdrop).remove()\n this._backdrop = null\n }\n }\n\n _showBackdrop(callback) {\n const animate = $(this._element).hasClass(ClassName.FADE) ?\n ClassName.FADE : ''\n\n if (this._isShown && this._config.backdrop) {\n const doAnimate = Util.supportsTransitionEnd() && animate\n\n this._backdrop = document.createElement('div')\n this._backdrop.className = ClassName.BACKDROP\n\n if (animate) {\n $(this._backdrop).addClass(animate)\n }\n\n $(this._backdrop).appendTo(document.body)\n\n $(this._element).on(Event.CLICK_DISMISS, (event) => {\n if (this._ignoreBackdropClick) {\n this._ignoreBackdropClick = false\n return\n }\n if (event.target !== event.currentTarget) {\n return\n }\n if (this._config.backdrop === 'static') {\n this._element.focus()\n } else {\n this.hide()\n }\n })\n\n if (doAnimate) {\n Util.reflow(this._backdrop)\n }\n\n $(this._backdrop).addClass(ClassName.SHOW)\n\n if (!callback) {\n return\n }\n\n if (!doAnimate) {\n callback()\n return\n }\n\n $(this._backdrop)\n .one(Util.TRANSITION_END, callback)\n .emulateTransitionEnd(BACKDROP_TRANSITION_DURATION)\n\n } else if (!this._isShown && this._backdrop) {\n $(this._backdrop).removeClass(ClassName.SHOW)\n\n const callbackRemove = () => {\n this._removeBackdrop()\n if (callback) {\n callback()\n }\n }\n\n if (Util.supportsTransitionEnd() &&\n $(this._element).hasClass(ClassName.FADE)) {\n $(this._backdrop)\n .one(Util.TRANSITION_END, callbackRemove)\n .emulateTransitionEnd(BACKDROP_TRANSITION_DURATION)\n } else {\n callbackRemove()\n }\n\n } else if (callback) {\n callback()\n }\n }\n\n\n // ----------------------------------------------------------------------\n // the following methods are used to handle overflowing modals\n // todo (fat): these should probably be refactored out of modal.js\n // ----------------------------------------------------------------------\n\n _adjustDialog() {\n const isModalOverflowing =\n this._element.scrollHeight > document.documentElement.clientHeight\n\n if (!this._isBodyOverflowing && isModalOverflowing) {\n this._element.style.paddingLeft = `${this._scrollbarWidth}px`\n }\n\n if (this._isBodyOverflowing && !isModalOverflowing) {\n this._element.style.paddingRight = `${this._scrollbarWidth}px`\n }\n }\n\n _resetAdjustments() {\n this._element.style.paddingLeft = ''\n this._element.style.paddingRight = ''\n }\n\n _checkScrollbar() {\n const rect = document.body.getBoundingClientRect()\n this._isBodyOverflowing = rect.left + rect.right < window.innerWidth\n this._scrollbarWidth = this._getScrollbarWidth()\n }\n\n _setScrollbar() {\n if (this._isBodyOverflowing) {\n // Note: DOMNode.style.paddingRight returns the actual value or '' if not set\n // while $(DOMNode).css('padding-right') returns the calculated value or 0 if not set\n\n // Adjust fixed content padding\n $(Selector.FIXED_CONTENT).each((index, element) => {\n const actualPadding = $(element)[0].style.paddingRight\n const calculatedPadding = $(element).css('padding-right')\n $(element).data('padding-right', actualPadding).css('padding-right', `${parseFloat(calculatedPadding) + this._scrollbarWidth}px`)\n })\n\n // Adjust sticky content margin\n $(Selector.STICKY_CONTENT).each((index, element) => {\n const actualMargin = $(element)[0].style.marginRight\n const calculatedMargin = $(element).css('margin-right')\n $(element).data('margin-right', actualMargin).css('margin-right', `${parseFloat(calculatedMargin) - this._scrollbarWidth}px`)\n })\n\n // Adjust navbar-toggler margin\n $(Selector.NAVBAR_TOGGLER).each((index, element) => {\n const actualMargin = $(element)[0].style.marginRight\n const calculatedMargin = $(element).css('margin-right')\n $(element).data('margin-right', actualMargin).css('margin-right', `${parseFloat(calculatedMargin) + this._scrollbarWidth}px`)\n })\n\n // Adjust body padding\n const actualPadding = document.body.style.paddingRight\n const calculatedPadding = $('body').css('padding-right')\n $('body').data('padding-right', actualPadding).css('padding-right', `${parseFloat(calculatedPadding) + this._scrollbarWidth}px`)\n }\n }\n\n _resetScrollbar() {\n // Restore fixed content padding\n $(Selector.FIXED_CONTENT).each((index, element) => {\n const padding = $(element).data('padding-right')\n if (typeof padding !== 'undefined') {\n $(element).css('padding-right', padding).removeData('padding-right')\n }\n })\n\n // Restore sticky content and navbar-toggler margin\n $(`${Selector.STICKY_CONTENT}, ${Selector.NAVBAR_TOGGLER}`).each((index, element) => {\n const margin = $(element).data('margin-right')\n if (typeof margin !== 'undefined') {\n $(element).css('margin-right', margin).removeData('margin-right')\n }\n })\n\n // Restore body padding\n const padding = $('body').data('padding-right')\n if (typeof padding !== 'undefined') {\n $('body').css('padding-right', padding).removeData('padding-right')\n }\n }\n\n _getScrollbarWidth() { // thx d.walsh\n const scrollDiv = document.createElement('div')\n scrollDiv.className = ClassName.SCROLLBAR_MEASURER\n document.body.appendChild(scrollDiv)\n const scrollbarWidth = scrollDiv.getBoundingClientRect().width - scrollDiv.clientWidth\n document.body.removeChild(scrollDiv)\n return scrollbarWidth\n }\n\n\n // static\n\n static _jQueryInterface(config, relatedTarget) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = {\n ...Modal.Default,\n ...$(this).data(),\n ...typeof config === 'object' && config\n }\n\n if (!data) {\n data = new Modal(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new Error(`No method named \"${config}\"`)\n }\n data[config](relatedTarget)\n } else if (_config.show) {\n data.show(relatedTarget)\n }\n })\n }\n\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n $(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {\n let target\n const selector = Util.getSelectorFromElement(this)\n\n if (selector) {\n target = $(selector)[0]\n }\n\n const config = $(target).data(DATA_KEY) ?\n 'toggle' : {\n ...$(target).data(),\n ...$(this).data()\n }\n\n if (this.tagName === 'A' || this.tagName === 'AREA') {\n event.preventDefault()\n }\n\n const $target = $(target).one(Event.SHOW, (showEvent) => {\n if (showEvent.isDefaultPrevented()) {\n // only register focus restorer if modal will actually get shown\n return\n }\n\n $target.one(Event.HIDDEN, () => {\n if ($(this).is(':visible')) {\n this.focus()\n }\n })\n })\n\n Modal._jQueryInterface.call($(target), config, this)\n })\n\n\n /**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n $.fn[NAME] = Modal._jQueryInterface\n $.fn[NAME].Constructor = Modal\n $.fn[NAME].noConflict = function () {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Modal._jQueryInterface\n }\n\n return Modal\n\n})($)\n\nexport default Modal\n","import $ from 'jquery'\nimport Popper from 'popper.js'\nimport Util from './util'\n\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0-beta.3): tooltip.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Tooltip = (($) => {\n\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'tooltip'\n const VERSION = '4.0.0-beta.3'\n const DATA_KEY = 'bs.tooltip'\n const EVENT_KEY = `.${DATA_KEY}`\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n const TRANSITION_DURATION = 150\n const CLASS_PREFIX = 'bs-tooltip'\n const BSCLS_PREFIX_REGEX = new RegExp(`(^|\\\\s)${CLASS_PREFIX}\\\\S+`, 'g')\n\n const DefaultType = {\n animation : 'boolean',\n template : 'string',\n title : '(string|element|function)',\n trigger : 'string',\n delay : '(number|object)',\n html : 'boolean',\n selector : '(string|boolean)',\n placement : '(string|function)',\n offset : '(number|string)',\n container : '(string|element|boolean)',\n fallbackPlacement : '(string|array)',\n boundary : '(string|element)'\n }\n\n const AttachmentMap = {\n AUTO : 'auto',\n TOP : 'top',\n RIGHT : 'right',\n BOTTOM : 'bottom',\n LEFT : 'left'\n }\n\n const Default = {\n animation : true,\n template : '
'\n + '
'\n + '
',\n trigger : 'hover focus',\n title : '',\n delay : 0,\n html : false,\n selector : false,\n placement : 'top',\n offset : 0,\n container : false,\n fallbackPlacement : 'flip',\n boundary : 'scrollParent'\n }\n\n const HoverState = {\n SHOW : 'show',\n OUT : 'out'\n }\n\n const Event = {\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n INSERTED : `inserted${EVENT_KEY}`,\n CLICK : `click${EVENT_KEY}`,\n FOCUSIN : `focusin${EVENT_KEY}`,\n FOCUSOUT : `focusout${EVENT_KEY}`,\n MOUSEENTER : `mouseenter${EVENT_KEY}`,\n MOUSELEAVE : `mouseleave${EVENT_KEY}`\n }\n\n const ClassName = {\n FADE : 'fade',\n SHOW : 'show'\n }\n\n const Selector = {\n TOOLTIP : '.tooltip',\n TOOLTIP_INNER : '.tooltip-inner',\n ARROW : '.arrow'\n }\n\n const Trigger = {\n HOVER : 'hover',\n FOCUS : 'focus',\n CLICK : 'click',\n MANUAL : 'manual'\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class Tooltip {\n\n constructor(element, config) {\n /**\n * Check for Popper dependency\n * Popper - https://popper.js.org\n */\n if (typeof Popper === 'undefined') {\n throw new Error('Bootstrap tooltips require Popper.js (https://popper.js.org)')\n }\n\n // private\n this._isEnabled = true\n this._timeout = 0\n this._hoverState = ''\n this._activeTrigger = {}\n this._popper = null\n\n // protected\n this.element = element\n this.config = this._getConfig(config)\n this.tip = null\n\n this._setListeners()\n\n }\n\n\n // getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n static get NAME() {\n return NAME\n }\n\n static get DATA_KEY() {\n return DATA_KEY\n }\n\n static get Event() {\n return Event\n }\n\n static get EVENT_KEY() {\n return EVENT_KEY\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n\n // public\n\n enable() {\n this._isEnabled = true\n }\n\n disable() {\n this._isEnabled = false\n }\n\n toggleEnabled() {\n this._isEnabled = !this._isEnabled\n }\n\n toggle(event) {\n if (!this._isEnabled) {\n return\n }\n\n if (event) {\n const dataKey = this.constructor.DATA_KEY\n let context = $(event.currentTarget).data(dataKey)\n\n if (!context) {\n context = new this.constructor(\n event.currentTarget,\n this._getDelegateConfig()\n )\n $(event.currentTarget).data(dataKey, context)\n }\n\n context._activeTrigger.click = !context._activeTrigger.click\n\n if (context._isWithActiveTrigger()) {\n context._enter(null, context)\n } else {\n context._leave(null, context)\n }\n\n } else {\n\n if ($(this.getTipElement()).hasClass(ClassName.SHOW)) {\n this._leave(null, this)\n return\n }\n\n this._enter(null, this)\n }\n }\n\n dispose() {\n clearTimeout(this._timeout)\n\n $.removeData(this.element, this.constructor.DATA_KEY)\n\n $(this.element).off(this.constructor.EVENT_KEY)\n $(this.element).closest('.modal').off('hide.bs.modal')\n\n if (this.tip) {\n $(this.tip).remove()\n }\n\n this._isEnabled = null\n this._timeout = null\n this._hoverState = null\n this._activeTrigger = null\n if (this._popper !== null) {\n this._popper.destroy()\n }\n\n this._popper = null\n this.element = null\n this.config = null\n this.tip = null\n }\n\n show() {\n if ($(this.element).css('display') === 'none') {\n throw new Error('Please use show on visible elements')\n }\n\n const showEvent = $.Event(this.constructor.Event.SHOW)\n if (this.isWithContent() && this._isEnabled) {\n $(this.element).trigger(showEvent)\n\n const isInTheDom = $.contains(\n this.element.ownerDocument.documentElement,\n this.element\n )\n\n if (showEvent.isDefaultPrevented() || !isInTheDom) {\n return\n }\n\n const tip = this.getTipElement()\n const tipId = Util.getUID(this.constructor.NAME)\n\n tip.setAttribute('id', tipId)\n this.element.setAttribute('aria-describedby', tipId)\n\n this.setContent()\n\n if (this.config.animation) {\n $(tip).addClass(ClassName.FADE)\n }\n\n const placement = typeof this.config.placement === 'function' ?\n this.config.placement.call(this, tip, this.element) :\n this.config.placement\n\n const attachment = this._getAttachment(placement)\n this.addAttachmentClass(attachment)\n\n const container = this.config.container === false ? document.body : $(this.config.container)\n\n $(tip).data(this.constructor.DATA_KEY, this)\n\n if (!$.contains(this.element.ownerDocument.documentElement, this.tip)) {\n $(tip).appendTo(container)\n }\n\n $(this.element).trigger(this.constructor.Event.INSERTED)\n\n this._popper = new Popper(this.element, tip, {\n placement: attachment,\n modifiers: {\n offset: {\n offset: this.config.offset\n },\n flip: {\n behavior: this.config.fallbackPlacement\n },\n arrow: {\n element: Selector.ARROW\n },\n preventOverflow: {\n boundariesElement: this.config.boundary\n }\n },\n onCreate: (data) => {\n if (data.originalPlacement !== data.placement) {\n this._handlePopperPlacementChange(data)\n }\n },\n onUpdate : (data) => {\n this._handlePopperPlacementChange(data)\n }\n })\n\n $(tip).addClass(ClassName.SHOW)\n\n // if this is a touch-enabled device we add extra\n // empty mouseover listeners to the body's immediate children;\n // only needed because of broken event delegation on iOS\n // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n if ('ontouchstart' in document.documentElement) {\n $('body').children().on('mouseover', null, $.noop)\n }\n\n const complete = () => {\n if (this.config.animation) {\n this._fixTransition()\n }\n const prevHoverState = this._hoverState\n this._hoverState = null\n\n $(this.element).trigger(this.constructor.Event.SHOWN)\n\n if (prevHoverState === HoverState.OUT) {\n this._leave(null, this)\n }\n }\n\n if (Util.supportsTransitionEnd() && $(this.tip).hasClass(ClassName.FADE)) {\n $(this.tip)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(Tooltip._TRANSITION_DURATION)\n } else {\n complete()\n }\n }\n }\n\n hide(callback) {\n const tip = this.getTipElement()\n const hideEvent = $.Event(this.constructor.Event.HIDE)\n const complete = () => {\n if (this._hoverState !== HoverState.SHOW && tip.parentNode) {\n tip.parentNode.removeChild(tip)\n }\n\n this._cleanTipClass()\n this.element.removeAttribute('aria-describedby')\n $(this.element).trigger(this.constructor.Event.HIDDEN)\n if (this._popper !== null) {\n this._popper.destroy()\n }\n\n if (callback) {\n callback()\n }\n }\n\n $(this.element).trigger(hideEvent)\n\n if (hideEvent.isDefaultPrevented()) {\n return\n }\n\n $(tip).removeClass(ClassName.SHOW)\n\n // if this is a touch-enabled device we remove the extra\n // empty mouseover listeners we added for iOS support\n if ('ontouchstart' in document.documentElement) {\n $('body').children().off('mouseover', null, $.noop)\n }\n\n this._activeTrigger[Trigger.CLICK] = false\n this._activeTrigger[Trigger.FOCUS] = false\n this._activeTrigger[Trigger.HOVER] = false\n\n if (Util.supportsTransitionEnd() &&\n $(this.tip).hasClass(ClassName.FADE)) {\n\n $(tip)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(TRANSITION_DURATION)\n\n } else {\n complete()\n }\n\n this._hoverState = ''\n\n }\n\n update() {\n if (this._popper !== null) {\n this._popper.scheduleUpdate()\n }\n }\n\n // protected\n\n isWithContent() {\n return Boolean(this.getTitle())\n }\n\n addAttachmentClass(attachment) {\n $(this.getTipElement()).addClass(`${CLASS_PREFIX}-${attachment}`)\n }\n\n getTipElement() {\n this.tip = this.tip || $(this.config.template)[0]\n return this.tip\n }\n\n setContent() {\n const $tip = $(this.getTipElement())\n this.setElementContent($tip.find(Selector.TOOLTIP_INNER), this.getTitle())\n $tip.removeClass(`${ClassName.FADE} ${ClassName.SHOW}`)\n }\n\n setElementContent($element, content) {\n const html = this.config.html\n if (typeof content === 'object' && (content.nodeType || content.jquery)) {\n // content is a DOM node or a jQuery\n if (html) {\n if (!$(content).parent().is($element)) {\n $element.empty().append(content)\n }\n } else {\n $element.text($(content).text())\n }\n } else {\n $element[html ? 'html' : 'text'](content)\n }\n }\n\n getTitle() {\n let title = this.element.getAttribute('data-original-title')\n\n if (!title) {\n title = typeof this.config.title === 'function' ?\n this.config.title.call(this.element) :\n this.config.title\n }\n\n return title\n }\n\n\n // private\n\n _getAttachment(placement) {\n return AttachmentMap[placement.toUpperCase()]\n }\n\n _setListeners() {\n const triggers = this.config.trigger.split(' ')\n\n triggers.forEach((trigger) => {\n if (trigger === 'click') {\n $(this.element).on(\n this.constructor.Event.CLICK,\n this.config.selector,\n (event) => this.toggle(event)\n )\n\n } else if (trigger !== Trigger.MANUAL) {\n const eventIn = trigger === Trigger.HOVER ?\n this.constructor.Event.MOUSEENTER :\n this.constructor.Event.FOCUSIN\n const eventOut = trigger === Trigger.HOVER ?\n this.constructor.Event.MOUSELEAVE :\n this.constructor.Event.FOCUSOUT\n\n $(this.element)\n .on(\n eventIn,\n this.config.selector,\n (event) => this._enter(event)\n )\n .on(\n eventOut,\n this.config.selector,\n (event) => this._leave(event)\n )\n }\n\n $(this.element).closest('.modal').on(\n 'hide.bs.modal',\n () => this.hide()\n )\n })\n\n if (this.config.selector) {\n this.config = {\n ...this.config,\n trigger : 'manual',\n selector : ''\n }\n } else {\n this._fixTitle()\n }\n }\n\n _fixTitle() {\n const titleType = typeof this.element.getAttribute('data-original-title')\n if (this.element.getAttribute('title') ||\n titleType !== 'string') {\n this.element.setAttribute(\n 'data-original-title',\n this.element.getAttribute('title') || ''\n )\n this.element.setAttribute('title', '')\n }\n }\n\n _enter(event, context) {\n const dataKey = this.constructor.DATA_KEY\n\n context = context || $(event.currentTarget).data(dataKey)\n\n if (!context) {\n context = new this.constructor(\n event.currentTarget,\n this._getDelegateConfig()\n )\n $(event.currentTarget).data(dataKey, context)\n }\n\n if (event) {\n context._activeTrigger[\n event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER\n ] = true\n }\n\n if ($(context.getTipElement()).hasClass(ClassName.SHOW) ||\n context._hoverState === HoverState.SHOW) {\n context._hoverState = HoverState.SHOW\n return\n }\n\n clearTimeout(context._timeout)\n\n context._hoverState = HoverState.SHOW\n\n if (!context.config.delay || !context.config.delay.show) {\n context.show()\n return\n }\n\n context._timeout = setTimeout(() => {\n if (context._hoverState === HoverState.SHOW) {\n context.show()\n }\n }, context.config.delay.show)\n }\n\n _leave(event, context) {\n const dataKey = this.constructor.DATA_KEY\n\n context = context || $(event.currentTarget).data(dataKey)\n\n if (!context) {\n context = new this.constructor(\n event.currentTarget,\n this._getDelegateConfig()\n )\n $(event.currentTarget).data(dataKey, context)\n }\n\n if (event) {\n context._activeTrigger[\n event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER\n ] = false\n }\n\n if (context._isWithActiveTrigger()) {\n return\n }\n\n clearTimeout(context._timeout)\n\n context._hoverState = HoverState.OUT\n\n if (!context.config.delay || !context.config.delay.hide) {\n context.hide()\n return\n }\n\n context._timeout = setTimeout(() => {\n if (context._hoverState === HoverState.OUT) {\n context.hide()\n }\n }, context.config.delay.hide)\n }\n\n _isWithActiveTrigger() {\n for (const trigger in this._activeTrigger) {\n if (this._activeTrigger[trigger]) {\n return true\n }\n }\n\n return false\n }\n\n _getConfig(config) {\n config = {\n ...this.constructor.Default,\n ...$(this.element).data(),\n ...config\n }\n\n if (typeof config.delay === 'number') {\n config.delay = {\n show : config.delay,\n hide : config.delay\n }\n }\n\n if (typeof config.title === 'number') {\n config.title = config.title.toString()\n }\n\n if (typeof config.content === 'number') {\n config.content = config.content.toString()\n }\n\n Util.typeCheckConfig(\n NAME,\n config,\n this.constructor.DefaultType\n )\n\n return config\n }\n\n _getDelegateConfig() {\n const config = {}\n\n if (this.config) {\n for (const key in this.config) {\n if (this.constructor.Default[key] !== this.config[key]) {\n config[key] = this.config[key]\n }\n }\n }\n\n return config\n }\n\n _cleanTipClass() {\n const $tip = $(this.getTipElement())\n const tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX)\n if (tabClass !== null && tabClass.length > 0) {\n $tip.removeClass(tabClass.join(''))\n }\n }\n\n _handlePopperPlacementChange(data) {\n this._cleanTipClass()\n this.addAttachmentClass(this._getAttachment(data.placement))\n }\n\n _fixTransition() {\n const tip = this.getTipElement()\n const initConfigAnimation = this.config.animation\n if (tip.getAttribute('x-placement') !== null) {\n return\n }\n $(tip).removeClass(ClassName.FADE)\n this.config.animation = false\n this.hide()\n this.show()\n this.config.animation = initConfigAnimation\n }\n\n // static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = typeof config === 'object' && config\n\n if (!data && /dispose|hide/.test(config)) {\n return\n }\n\n if (!data) {\n data = new Tooltip(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new Error(`No method named \"${config}\"`)\n }\n data[config]()\n }\n })\n }\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n $.fn[NAME] = Tooltip._jQueryInterface\n $.fn[NAME].Constructor = Tooltip\n $.fn[NAME].noConflict = function () {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Tooltip._jQueryInterface\n }\n\n return Tooltip\n\n})($, Popper)\n\nexport default Tooltip\n","import $ from 'jquery'\nimport Tooltip from './tooltip'\n\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0-beta.3): popover.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Popover = (($) => {\n\n\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'popover'\n const VERSION = '4.0.0-beta.3'\n const DATA_KEY = 'bs.popover'\n const EVENT_KEY = `.${DATA_KEY}`\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n const CLASS_PREFIX = 'bs-popover'\n const BSCLS_PREFIX_REGEX = new RegExp(`(^|\\\\s)${CLASS_PREFIX}\\\\S+`, 'g')\n\n const Default = {\n ...Tooltip.Default,\n placement : 'right',\n trigger : 'click',\n content : '',\n template : '
'\n + '
'\n + '

'\n + '
'\n }\n\n const DefaultType = {\n ...Tooltip.DefaultType,\n content : '(string|element|function)'\n }\n\n const ClassName = {\n FADE : 'fade',\n SHOW : 'show'\n }\n\n const Selector = {\n TITLE : '.popover-header',\n CONTENT : '.popover-body'\n }\n\n const Event = {\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n INSERTED : `inserted${EVENT_KEY}`,\n CLICK : `click${EVENT_KEY}`,\n FOCUSIN : `focusin${EVENT_KEY}`,\n FOCUSOUT : `focusout${EVENT_KEY}`,\n MOUSEENTER : `mouseenter${EVENT_KEY}`,\n MOUSELEAVE : `mouseleave${EVENT_KEY}`\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class Popover extends Tooltip {\n\n\n // getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n static get NAME() {\n return NAME\n }\n\n static get DATA_KEY() {\n return DATA_KEY\n }\n\n static get Event() {\n return Event\n }\n\n static get EVENT_KEY() {\n return EVENT_KEY\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n\n // overrides\n\n isWithContent() {\n return this.getTitle() || this._getContent()\n }\n\n addAttachmentClass(attachment) {\n $(this.getTipElement()).addClass(`${CLASS_PREFIX}-${attachment}`)\n }\n\n getTipElement() {\n this.tip = this.tip || $(this.config.template)[0]\n return this.tip\n }\n\n setContent() {\n const $tip = $(this.getTipElement())\n\n // we use append for html objects to maintain js events\n this.setElementContent($tip.find(Selector.TITLE), this.getTitle())\n let content = this._getContent()\n if (typeof content === 'function') {\n content = content.call(this.element)\n }\n this.setElementContent($tip.find(Selector.CONTENT), content)\n\n $tip.removeClass(`${ClassName.FADE} ${ClassName.SHOW}`)\n }\n\n // private\n\n _getContent() {\n return this.element.getAttribute('data-content')\n || this.config.content\n }\n\n _cleanTipClass() {\n const $tip = $(this.getTipElement())\n const tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX)\n if (tabClass !== null && tabClass.length > 0) {\n $tip.removeClass(tabClass.join(''))\n }\n }\n\n\n // static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = typeof config === 'object' ? config : null\n\n if (!data && /destroy|hide/.test(config)) {\n return\n }\n\n if (!data) {\n data = new Popover(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new Error(`No method named \"${config}\"`)\n }\n data[config]()\n }\n })\n }\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n $.fn[NAME] = Popover._jQueryInterface\n $.fn[NAME].Constructor = Popover\n $.fn[NAME].noConflict = function () {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Popover._jQueryInterface\n }\n\n return Popover\n\n})($)\n\nexport default Popover\n","import $ from 'jquery'\nimport Util from './util'\n\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0-beta.3): scrollspy.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst ScrollSpy = (($) => {\n\n\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'scrollspy'\n const VERSION = '4.0.0-beta.3'\n const DATA_KEY = 'bs.scrollspy'\n const EVENT_KEY = `.${DATA_KEY}`\n const DATA_API_KEY = '.data-api'\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n\n const Default = {\n offset : 10,\n method : 'auto',\n target : ''\n }\n\n const DefaultType = {\n offset : 'number',\n method : 'string',\n target : '(string|element)'\n }\n\n const Event = {\n ACTIVATE : `activate${EVENT_KEY}`,\n SCROLL : `scroll${EVENT_KEY}`,\n LOAD_DATA_API : `load${EVENT_KEY}${DATA_API_KEY}`\n }\n\n const ClassName = {\n DROPDOWN_ITEM : 'dropdown-item',\n DROPDOWN_MENU : 'dropdown-menu',\n ACTIVE : 'active'\n }\n\n const Selector = {\n DATA_SPY : '[data-spy=\"scroll\"]',\n ACTIVE : '.active',\n NAV_LIST_GROUP : '.nav, .list-group',\n NAV_LINKS : '.nav-link',\n NAV_ITEMS : '.nav-item',\n LIST_ITEMS : '.list-group-item',\n DROPDOWN : '.dropdown',\n DROPDOWN_ITEMS : '.dropdown-item',\n DROPDOWN_TOGGLE : '.dropdown-toggle'\n }\n\n const OffsetMethod = {\n OFFSET : 'offset',\n POSITION : 'position'\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class ScrollSpy {\n\n constructor(element, config) {\n this._element = element\n this._scrollElement = element.tagName === 'BODY' ? window : element\n this._config = this._getConfig(config)\n this._selector = `${this._config.target} ${Selector.NAV_LINKS},`\n + `${this._config.target} ${Selector.LIST_ITEMS},`\n + `${this._config.target} ${Selector.DROPDOWN_ITEMS}`\n this._offsets = []\n this._targets = []\n this._activeTarget = null\n this._scrollHeight = 0\n\n $(this._scrollElement).on(Event.SCROLL, (event) => this._process(event))\n\n this.refresh()\n this._process()\n }\n\n\n // getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n\n // public\n\n refresh() {\n const autoMethod = this._scrollElement !== this._scrollElement.window ?\n OffsetMethod.POSITION : OffsetMethod.OFFSET\n\n const offsetMethod = this._config.method === 'auto' ?\n autoMethod : this._config.method\n\n const offsetBase = offsetMethod === OffsetMethod.POSITION ?\n this._getScrollTop() : 0\n\n this._offsets = []\n this._targets = []\n\n this._scrollHeight = this._getScrollHeight()\n\n const targets = $.makeArray($(this._selector))\n\n targets\n .map((element) => {\n let target\n const targetSelector = Util.getSelectorFromElement(element)\n\n if (targetSelector) {\n target = $(targetSelector)[0]\n }\n\n if (target) {\n const targetBCR = target.getBoundingClientRect()\n if (targetBCR.width || targetBCR.height) {\n // todo (fat): remove sketch reliance on jQuery position/offset\n return [\n $(target)[offsetMethod]().top + offsetBase,\n targetSelector\n ]\n }\n }\n return null\n })\n .filter((item) => item)\n .sort((a, b) => a[0] - b[0])\n .forEach((item) => {\n this._offsets.push(item[0])\n this._targets.push(item[1])\n })\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n $(this._scrollElement).off(EVENT_KEY)\n\n this._element = null\n this._scrollElement = null\n this._config = null\n this._selector = null\n this._offsets = null\n this._targets = null\n this._activeTarget = null\n this._scrollHeight = null\n }\n\n\n // private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...config\n }\n\n if (typeof config.target !== 'string') {\n let id = $(config.target).attr('id')\n if (!id) {\n id = Util.getUID(NAME)\n $(config.target).attr('id', id)\n }\n config.target = `#${id}`\n }\n\n Util.typeCheckConfig(NAME, config, DefaultType)\n\n return config\n }\n\n _getScrollTop() {\n return this._scrollElement === window ?\n this._scrollElement.pageYOffset : this._scrollElement.scrollTop\n }\n\n _getScrollHeight() {\n return this._scrollElement.scrollHeight || Math.max(\n document.body.scrollHeight,\n document.documentElement.scrollHeight\n )\n }\n\n _getOffsetHeight() {\n return this._scrollElement === window ?\n window.innerHeight : this._scrollElement.getBoundingClientRect().height\n }\n\n _process() {\n const scrollTop = this._getScrollTop() + this._config.offset\n const scrollHeight = this._getScrollHeight()\n const maxScroll = this._config.offset\n + scrollHeight\n - this._getOffsetHeight()\n\n if (this._scrollHeight !== scrollHeight) {\n this.refresh()\n }\n\n if (scrollTop >= maxScroll) {\n const target = this._targets[this._targets.length - 1]\n\n if (this._activeTarget !== target) {\n this._activate(target)\n }\n return\n }\n\n if (this._activeTarget && scrollTop < this._offsets[0] && this._offsets[0] > 0) {\n this._activeTarget = null\n this._clear()\n return\n }\n\n for (let i = this._offsets.length; i--;) {\n const isActiveTarget = this._activeTarget !== this._targets[i]\n && scrollTop >= this._offsets[i]\n && (typeof this._offsets[i + 1] === 'undefined' ||\n scrollTop < this._offsets[i + 1])\n\n if (isActiveTarget) {\n this._activate(this._targets[i])\n }\n }\n }\n\n _activate(target) {\n this._activeTarget = target\n\n this._clear()\n\n let queries = this._selector.split(',')\n // eslint-disable-next-line arrow-body-style\n queries = queries.map((selector) => {\n return `${selector}[data-target=\"${target}\"],` +\n `${selector}[href=\"${target}\"]`\n })\n\n const $link = $(queries.join(','))\n\n if ($link.hasClass(ClassName.DROPDOWN_ITEM)) {\n $link.closest(Selector.DROPDOWN).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE)\n $link.addClass(ClassName.ACTIVE)\n } else {\n // Set triggered link as active\n $link.addClass(ClassName.ACTIVE)\n // Set triggered links parents as active\n // With both
    and
":n[t].content=!1)}),n};a.fn.googleMap=function(n){n=a.extend(!0,{},t,n),a(this).each(function(){var t=a(this),s=a.extend(!0,{},o,{map:{x:t.data("x"),y:t.data("y"),zoom:t.data("zoom")},marker:{basic:t.data("marker"),active:t.data("marker-active")},locations:e(t,n)}),i=new google.maps.Map(this,{center:new google.maps.LatLng(parseFloat(s.map.y),parseFloat(s.map.x)),styles:n.styles,zoom:s.map.zoom,scrollwheel:!1});n.onInit&&n.onInit.call(this,i);var c,l=new google.maps.InfoWindow,r=[];for(c in s.locations)r[c]=new google.maps.Marker({position:new google.maps.LatLng(parseFloat(s.locations[c].y),parseFloat(s.locations[c].x)),map:i,icon:s.locations[c].basic,index:c}),s.locations[c].content&&(google.maps.event.addListener(r[c],"click",function(){for(var t in r)r[t].setIcon(s.locations[t].basic);l.setContent(s.locations[this.index].content),l.open(i,this),a(".gm-style-iw").parent().parent().addClass("gm-wrapper"),this.setIcon(s.locations[this.index].active)}),google.maps.event.addListener(l,"closeclick",function(){for(var a in r)r[a].setIcon(s.locations[a].basic)}));google.maps.event.addDomListener(window,"resize",function(){i.setCenter(new google.maps.LatLng(parseFloat(s.map.y),parseFloat(s.map.x)))})})}}(jQuery); + +/** + * @module Materianize Parallax + * @see http://materializecss.com/parallax-demo.html + * @licesne MIT + */ +!function(i){i.fn.parallax=function(){var a=i(window).width();return this.each(function(t){function n(t){var n;n=a<601?r.height()>0?r.height():r.children("img").height():r.height()>0?r.height():500;var e=r.children("img").first(),l=e.height()-n,o=r.offset().top+n,h=r.offset().top,d=i(window).scrollTop(),s=window.innerHeight,c=(d+s-h)/(n+s),g=Math.round(l*c);t&&e.css("display","block"),o>d&&h
').find(".material-parallax");r.children("img").first().attr("src",r.parents("[data-parallax-img]").data("parallax-img")),r.children("img").one("load",function(){n(!0)}).each(function(){this.complete&&i(this).trigger("load")}),i(window).scroll(function(){a=i(window).width(),n(!1)}),i(window).resize(function(){a=i(window).width(),n(!1)})})}}(jQuery); + + +/** + * @module jQuery RD Instafeed + * @author Rafael Shayvolodyan(raffa) + * @version 1.2.0 + */ +(function(){!function(a,b,c){var d;return d=function(){function b(b,c){this.options=a.extend(!0,{},this.Defaults,c),this.$element=a(b),this.element=b,this.$items=this.$element.find("[data-instafeed-item]"),this.unique=this.genKey(),this.nextUrl="",this.initialize()}return b.prototype.Defaults={accessToken:"3229350923.ba4c844.4f02100c368f4df7a4139183800edf26",clientId:"641b85f46ee943acb06c8180f7e522f7",get:"user",tagName:"awesome",userId:"3229350923",locationId:"",sortBy:"most-recent",useHttp:!1,showLog:"false",dateFormat:{seconds:"less than a minute ago",minute:"about a minute ago",minutes:" minutes ago",hour:"about an hour ago",hours:" hours ago",day:"1 day ago",days:"%b/%d/%Y"}},b.prototype.initialize=function(){var a;if("string"!=typeof this.options.clientId&&"string"!=typeof this.options.accessToken)throw new Error("Missing clientId or accessToken.");null!=this.options.before&&"function"==typeof this.options.before&&this.options.before.call(this),a=null,this.fetchData(this,this.buildUrl(),a)},b.prototype.fetchData=function(b,c,d){var e;e=b.element.getAttribute("data-instafeed-get")?b.element.getAttribute("data-instafeed-get"):b.options.get,a.ajax({type:"GET",dataType:"jsonp",cache:!1,url:c,success:function(a){var c,f,g;if(null!=d?(c=d,c.push.apply(c,a.data)):c=a.data,null!=a.pagination&&(b.nextUrl=a.pagination.next_url),"profile"!==e){if(f=parseInt(b.$items.length,10),c.length>=f)return c=b.sorting(b,c),c=c.slice(0,f),b.validate(b,a),g=b.element.getAttribute("data-instafeed-showlog")?b.element.getAttribute("data-instafeed-showlog"):b.options.showLog,"true"===g&&console.log(c),b.loopData(c);if(null!=b.nextUrl)return b.fetchData(b,a.pagination.next_url,c);if(c.length-1)return!0;return!1},b.prototype.parseAttributes=function(a,b,c){var d,e,f,g,h,i,j,k,l,m,n,o,p,q,r;g=a.attributes;for(h in g)if(null!=g[h]&&"object"==typeof g[h]&&g[h].name.indexOf("data-")!==-1&&g[h].name.indexOf("data-instafeed-")===-1){if(r=g[h].name.substring(5),p=null,r.indexOf("-")!==-1)for(q=r.split("-"),p=b,j=0,l=q.length;j="0"&&f<="9"||a.setAttribute(d,n))}},b.prototype.arrToString=function(a){return a.join(" ")},b.prototype.dating=function(a,b){var c,d,e,f,g,h,i,j,k,l;if(e=new Date(1e3*a),d=new Date,g=parseInt((d.getTime()-e.getTime())/1e3),g+=60*d.getTimezoneOffset(),l=["January","February","March","April","May","June","July","August","September","October","November","December"],c={"%d":e.getDate(),"%m":e.getMonth()+1,"%b":l[e.getMonth()].substring(0,3),"%B":l[e.getMonth()],"%y":String(e.getFullYear()).slice(-2),"%Y":e.getFullYear()},f=b?"%Y-%m-%d":element.getAttribute("data-instafeed-date-format")?element.getAttribute("data-instafeed-date-format"):this.options.dateFormat.days,g<60)return this.options.dateFormat.seconds;if(g<120)return this.options.dateFormat.minute;if(g<3600)return parseInt(g/60).toString()+this.options.dateFormat.minutes;if(g<7200)return this.options.dateFormat.hour;if(g<86400)return"about "+parseInt(g/3600).toString()+this.options.dateFormat.hours;if(g<172800)return this.options.dateFormat.day;for(i=f.match(/%[dmbByY]/g),j=0,k=i.length;jf?1:-1:e-1},_attach:function(a,b){a=$(a);if(a.hasClass(this._getMarker())){return}a.addClass(this._getMarker());b=$.extend({},this.defaultOptions,this._getMetadata(a),b||{});var c=$.extend({name:this.name,elem:a,options:b},this._instSettings(a,b));a.data(this.name,c);this._postAttach(a,c);this.option(a,b)},_instSettings:function(a,b){return{}},_postAttach:function(a,b){},_getMetadata:function(d){try{var f=d.data(this.name.toLowerCase())||'';f=f.replace(/'/g,'"');f=f.replace(/([a-zA-Z0-9]+):/g,function(a,b,i){var c=f.substring(0,i).match(/"/g);return(!c||c.length%2===0?'"'+b+'":':b+':')});f=$.parseJSON('{'+f+'}');for(var g in f){var h=f[g];if(typeof h==='string'&&h.match(/^new Date\((.*)\)$/)){f[g]=eval(h)}}return f}catch(e){return{}}},_getInst:function(a){return $(a).data(this.name)||{}},option:function(a,b,c){a=$(a);var d=a.data(this.name);if(!b||(typeof b==='string'&&c==null)){var e=(d||{}).options;return(e&&b?e[b]:e)}if(!a.hasClass(this._getMarker())){return}var e=b||{};if(typeof b==='string'){e={};e[b]=c}this._optionsChanged(a,d,e);$.extend(d.options,e)},_optionsChanged:function(a,b,c){},destroy:function(a){a=$(a);if(!a.hasClass(this._getMarker())){return}this._preDestroy(a,this._getInst(a));a.removeData(this.name).removeClass(this._getMarker())},_preDestroy:function(a,b){}});function camelCase(c){return c.replace(/-([a-z])/g,function(a,b){return b.toUpperCase()})}$.JQPlugin={createPlugin:function(a,b){if(typeof a==='object'){b=a;a='JQPlugin'}a=camelCase(a);var c=camelCase(b.name);JQClass.classes[c]=JQClass.classes[a].extend(b);new JQClass.classes[c]()}}})(jQuery); + + +/** + * @module Countdown for jQuery v2.0.2. + * @author Keith Wood + * @see http://keith-wood.name/countdown.html + * @license MIT + */ +(function($){var w='countdown';var Y=0;var O=1;var W=2;var D=3;var H=4;var M=5;var S=6;$.JQPlugin.createPlugin({name:w,defaultOptions:{until:null,since:null,timezone:null,serverSync:null,format:'dHMS',layout:'',compact:false,padZeroes:false,significant:0,description:'',expiryUrl:'',expiryText:'',alwaysExpire:false,onExpiry:null,onTick:null,tickInterval:1},regionalOptions:{'':{labels:['Years','Months','Weeks','Days','Hours','Minutes','Seconds'],labels1:['Year','Month','Week','Day','Hour','Minute','Second'],compactLabels:['y','m','w','d'],whichLabels:null,digits:['0','1','2','3','4','5','6','7','8','9'],timeSeparator:':',isRTL:false}},_getters:['getTimes'],_rtlClass:w+'-rtl',_sectionClass:w+'-section',_amountClass:w+'-amount',_periodClass:w+'-period',_rowClass:w+'-row',_holdingClass:w+'-holding',_showClass:w+'-show',_descrClass:w+'-descr',_timerElems:[],_init:function(){var c=this;this._super();this._serverSyncs=[];var d=(typeof Date.now=='function'?Date.now:function(){return new Date().getTime()});var e=(window.performance&&typeof window.performance.now=='function');function timerCallBack(a){var b=(a<1e12?(e?(performance.now()+performance.timing.navigationStart):d()):a||d());if(b-g>=1000){c._updateElems();g=b}f(timerCallBack)}var f=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||null;var g=0;if(!f||$.noRequestAnimationFrame){$.noRequestAnimationFrame=null;setInterval(function(){c._updateElems()},980)}else{g=window.animationStartTime||window.webkitAnimationStartTime||window.mozAnimationStartTime||window.oAnimationStartTime||window.msAnimationStartTime||d();f(timerCallBack)}},UTCDate:function(a,b,c,e,f,g,h,i){if(typeof b=='object'&&b.constructor==Date){i=b.getMilliseconds();h=b.getSeconds();g=b.getMinutes();f=b.getHours();e=b.getDate();c=b.getMonth();b=b.getFullYear()}var d=new Date();d.setUTCFullYear(b);d.setUTCDate(1);d.setUTCMonth(c||0);d.setUTCDate(e||1);d.setUTCHours(f||0);d.setUTCMinutes((g||0)-(Math.abs(a)<30?a*60:a));d.setUTCSeconds(h||0);d.setUTCMilliseconds(i||0);return d},periodsToSeconds:function(a){return a[0]*31557600+a[1]*2629800+a[2]*604800+a[3]*86400+a[4]*3600+a[5]*60+a[6]},resync:function(){var d=this;$('.'+this._getMarker()).each(function(){var a=$.data(this,d.name);if(a.options.serverSync){var b=null;for(var i=0;i-1)},_removeElem:function(b){this._timerElems=$.map(this._timerElems,function(a){return(a==b?null:a)})},_updateElems:function(){for(var i=this._timerElems.length-1;i>=0;i--){this._updateCountdown(this._timerElems[i])}},_optionsChanged:function(a,b,c){if(c.layout){c.layout=c.layout.replace(/</g,'<').replace(/>/g,'>')}this._resetExtraLabels(b.options,c);var d=(b.options.timezone!=c.timezone);$.extend(b.options,c);this._adjustSettings(a,b,c.until!=null||c.since!=null||d);var e=new Date();if((b._since&&b._sincee)){this._addElem(a[0])}this._updateCountdown(a,b)},_updateCountdown:function(a,b){a=a.jquery?a:$(a);b=b||this._getInst(a);if(!b){return}a.html(this._generateHTML(b)).toggleClass(this._rtlClass,b.options.isRTL);if($.isFunction(b.options.onTick)){var c=b._hold!='lap'?b._periods:this._calculatePeriods(b,b._show,b.options.significant,new Date());if(b.options.tickInterval==1||this.periodsToSeconds(c)%b.options.tickInterval==0){b.options.onTick.apply(a[0],[c])}}var d=b._hold!='pause'&&(b._since?b._now.getTime()=b._until.getTime());if(d&&!b._expiring){b._expiring=true;if(this._hasElem(a[0])||b.options.alwaysExpire){this._removeElem(a[0]);if($.isFunction(b.options.onExpiry)){b.options.onExpiry.apply(a[0],[])}if(b.options.expiryText){var e=b.options.layout;b.options.layout=b.options.expiryText;this._updateCountdown(a[0],b);b.options.layout=e}if(b.options.expiryUrl){window.location=b.options.expiryUrl}}b._expiring=false}else if(b._hold=='pause'){this._removeElem(a[0])}},_resetExtraLabels:function(a,b){for(var n in b){if(n.match(/[Ll]abels[02-9]|compactLabels1/)){a[n]=b[n]}}for(var n in a){if(n.match(/[Ll]abels[02-9]|compactLabels1/)&&typeof b[n]==='undefined'){a[n]=null}}},_adjustSettings:function(a,b,c){var d=null;for(var i=0;i0);h[i]=(c._show[i]=='?'&&!e?null:c._show[i]);f+=(h[i]?1:0);g-=(c._periods[i]>0?1:0)}var j=[false,false,false,false,false,false,false];for(var i=S;i>=Y;i--){if(c._show[i]){if(c._periods[i]){j[i]=true}else{j[i]=g>0;g--}}}var k=(c.options.compact?c.options.compactLabels:c.options.labels);var l=c.options.whichLabels||this._normalLabels;var m=function(a){var b=c.options['compactLabels'+l(c._periods[a])];return(h[a]?d._translateDigits(c,c._periods[a])+(b?b[a]:k[a])+' ':'')};var n=(c.options.padZeroes?2:1);var o=function(a){var b=c.options['labels'+l(c._periods[a])];return((!c.options.significant&&h[a])||(c.options.significant&&j[a])?''+''+d._minDigits(c,c._periods[a],n)+''+''+(b?b[a]:k[a])+'':'')};return(c.options.layout?this._buildLayout(c,h,c.options.layout,c.options.compact,c.options.significant,j):((c.options.compact?''+m(Y)+m(O)+m(W)+m(D)+(h[H]?this._minDigits(c,c._periods[H],2):'')+(h[M]?(h[H]?c.options.timeSeparator:'')+this._minDigits(c,c._periods[M],2):'')+(h[S]?(h[H]||h[M]?c.options.timeSeparator:'')+this._minDigits(c,c._periods[S],2):''):''+o(Y)+o(O)+o(W)+o(D)+o(H)+o(M)+o(S))+''+(c.options.description?''+c.options.description+'':'')))},_buildLayout:function(c,d,e,f,g,h){var j=c.options[f?'compactLabels':'labels'];var k=c.options.whichLabels||this._normalLabels;var l=function(a){return(c.options[(f?'compactLabels':'labels')+k(c._periods[a])]||j)[a]};var m=function(a,b){return c.options.digits[Math.floor(a/b)%10]};var o={desc:c.options.description,sep:c.options.timeSeparator,yl:l(Y),yn:this._minDigits(c,c._periods[Y],1),ynn:this._minDigits(c,c._periods[Y],2),ynnn:this._minDigits(c,c._periods[Y],3),y1:m(c._periods[Y],1),y10:m(c._periods[Y],10),y100:m(c._periods[Y],100),y1000:m(c._periods[Y],1000),ol:l(O),on:this._minDigits(c,c._periods[O],1),onn:this._minDigits(c,c._periods[O],2),onnn:this._minDigits(c,c._periods[O],3),o1:m(c._periods[O],1),o10:m(c._periods[O],10),o100:m(c._periods[O],100),o1000:m(c._periods[O],1000),wl:l(W),wn:this._minDigits(c,c._periods[W],1),wnn:this._minDigits(c,c._periods[W],2),wnnn:this._minDigits(c,c._periods[W],3),w1:m(c._periods[W],1),w10:m(c._periods[W],10),w100:m(c._periods[W],100),w1000:m(c._periods[W],1000),dl:l(D),dn:this._minDigits(c,c._periods[D],1),dnn:this._minDigits(c,c._periods[D],2),dnnn:this._minDigits(c,c._periods[D],3),d1:m(c._periods[D],1),d10:m(c._periods[D],10),d100:m(c._periods[D],100),d1000:m(c._periods[D],1000),hl:l(H),hn:this._minDigits(c,c._periods[H],1),hnn:this._minDigits(c,c._periods[H],2),hnnn:this._minDigits(c,c._periods[H],3),h1:m(c._periods[H],1),h10:m(c._periods[H],10),h100:m(c._periods[H],100),h1000:m(c._periods[H],1000),ml:l(M),mn:this._minDigits(c,c._periods[M],1),mnn:this._minDigits(c,c._periods[M],2),mnnn:this._minDigits(c,c._periods[M],3),m1:m(c._periods[M],1),m10:m(c._periods[M],10),m100:m(c._periods[M],100),m1000:m(c._periods[M],1000),sl:l(S),sn:this._minDigits(c,c._periods[S],1),snn:this._minDigits(c,c._periods[S],2),snnn:this._minDigits(c,c._periods[S],3),s1:m(c._periods[S],1),s10:m(c._periods[S],10),s100:m(c._periods[S],100),s1000:m(c._periods[S],1000)};var p=e;for(var i=Y;i<=S;i++){var q='yowdhms'.charAt(i);var r=new RegExp('\\{'+q+'<\\}([\\s\\S]*)\\{'+q+'>\\}','g');p=p.replace(r,((!g&&d[i])||(g&&h[i])?'$1':''))}$.each(o,function(n,v){var a=new RegExp('\\{'+n+'\\}','g');p=p.replace(a,v)});return p},_minDigits:function(a,b,c){b=''+b;if(b.length>=c){return this._translateDigits(a,b)}b='0000000000'+b;return this._translateDigits(a,b.substr(b.length-c))},_translateDigits:function(b,c){return(''+c).replace(/[0-9]/g,function(a){return b.options.digits[a]})},_determineShow:function(a){var b=a.options.format;var c=[];c[Y]=(b.match('y')?'?':(b.match('Y')?'!':null));c[O]=(b.match('o')?'?':(b.match('O')?'!':null));c[W]=(b.match('w')?'?':(b.match('W')?'!':null));c[D]=(b.match('d')?'?':(b.match('D')?'!':null));c[H]=(b.match('h')?'?':(b.match('H')?'!':null));c[M]=(b.match('m')?'?':(b.match('M')?'!':null));c[S]=(b.match('s')?'?':(b.match('S')?'!':null));return c},_calculatePeriods:function(c,d,e,f){c._now=f;c._now.setMilliseconds(0);var g=new Date(c._now.getTime());if(c._since){if(f.getTime()c._until.getTime()){c._now=f=g}}var h=[0,0,0,0,0,0,0];if(d[Y]||d[O]){var i=this._getDaysInMonth(f.getFullYear(),f.getMonth());var j=this._getDaysInMonth(g.getFullYear(),g.getMonth());var k=(g.getDate()==f.getDate()||(g.getDate()>=Math.min(i,j)&&f.getDate()>=Math.min(i,j)));var l=function(a){return(a.getHours()*60+a.getMinutes())*60+a.getSeconds()};var m=Math.max(0,(g.getFullYear()-f.getFullYear())*12+g.getMonth()-f.getMonth()+((g.getDate()o){f.setDate(o)}f.setFullYear(f.getFullYear()+h[Y]);f.setMonth(f.getMonth()+h[O]);if(n){f.setDate(o)}}var p=Math.floor((g.getTime()-f.getTime())/1000);var q=function(a,b){h[a]=(d[a]?Math.floor(p/b):0);p-=h[a]*b};q(W,604800);q(D,86400);q(H,3600);q(M,60);q(S,1);if(p>0&&!c._since){var r=[1,12,4.3482,7,24,60,60];var s=S;var t=1;for(var u=S;u>=Y;u--){if(d[u]){if(h[s]>=t){h[s]=0;p=1}if(p>0){h[u]++;p=0;s=u;t=1}}t*=r[u]}}if(e){for(var u=Y;u<=S;u++){if(e&&h[u]){e--}else if(!e){h[u]=0}}}return h}})})(jQuery); + + +/** + * @module Stepper + * @version 3.0.8 + * @license MIT + * @link http://classic.formstone.it/stepper/ + */ +!function(a,b){"use strict";function c(b){b=a.extend({},m,b||{});for(var c=a(this),e=0,f=c.length;f>e;e++)d(c.eq(e),b);return c}function d(b,c){if(!b.hasClass("stepper-input")){c=a.extend({},c,b.data("stepper-options"));var d=parseFloat(b.attr("min")),g=parseFloat(b.attr("max")),h=parseFloat(b.attr("step"))||1;b.addClass("stepper-input").wrap('
').after(''+c.labels.up+''+c.labels.down+"");var i=b.parent(".stepper"),j=a.extend({$stepper:i,$input:b,$arrow:i.find(".stepper-arrow"),min:void 0===typeof d||isNaN(d)?!1:d,max:void 0===typeof g||isNaN(g)?!1:g,step:void 0===typeof h||isNaN(h)?1:h,timer:null},c);j.digits=k(j.step),b.is(":disabled")&&i.addClass("disabled"),i.on("keypress",".stepper-input",j,e),i.on("touchstart.stepper mousedown.stepper",".stepper-arrow",j,f).data("stepper",j)}}function e(a){var b=a.data;(38===a.keyCode||40===a.keyCode)&&(a.preventDefault(),h(b,38===a.keyCode?b.step:-b.step))}function f(b){b.preventDefault(),b.stopPropagation(),g(b);var c=b.data;if(!c.$input.is(":disabled")&&!c.$stepper.hasClass("disabled")){var d=a(b.target).hasClass("up")?c.step:-c.step;c.timer=i(c.timer,125,function(){h(c,d,!1)}),h(c,d),a("body").on("touchend.stepper mouseup.stepper",c,g)}}function g(b){b.preventDefault(),b.stopPropagation();var c=b.data;j(c.timer),a("body").off(".stepper")}function h(a,b){var c=parseFloat(a.$input.val()),d=b;void 0===typeof c||isNaN(c)?d=a.min!==!1?a.min:0:a.min!==!1&&ca.max&&(d-=a.step),d!==c&&(d=l(d,a.digits),a.$input.val(d).trigger("change"))}function i(a,b,c){return j(a),setInterval(c,b)}function j(a){a&&(clearInterval(a),a=null)}function k(a){var b=String(a);return b.indexOf(".")>-1?b.length-b.indexOf(".")-1:0}function l(a,b){var c=Math.pow(10,b);return Math.round(a*c)/c}var m={customClass:"",labels:{up:"Up",down:"Down"}},n={defaults:function(b){return m=a.extend(m,b||{}),"object"==typeof this?a(this):!0},destroy:function(){return a(this).each(function(b){var c=a(this).data("stepper");c&&(c.$stepper.off(".stepper").find(".stepper-arrow").remove(),c.$input.unwrap().removeClass("stepper-input"))})},disable:function(){return a(this).each(function(b){var c=a(this).data("stepper");c&&(c.$input.attr("disabled","disabled"),c.$stepper.addClass("disabled"))})},enable:function(){return a(this).each(function(b){var c=a(this).data("stepper");c&&(c.$input.attr("disabled",null),c.$stepper.removeClass("disabled"))})}};a.fn.stepper=function(a){return n[a]?n[a].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof a&&a?this:c.apply(this,arguments)},a.stepper=function(a){"defaults"===a&&n.defaults.apply(this,Array.prototype.slice.call(arguments,1))}}(jQuery,this); + + +/** + * @module drawDoughnutChart + * @author hiro + * @version 0.4(Beta) + * @license MIT + * @link https://github.com/githiro/drawDoughnutChart + */ +(function(a){a.fn.drawDoughnutChart=function(c,d){function f(ca,da){var ea=-1.57,ga=4.7131,ha=B+D(ea)*ca,ia=C+E(ea)*ca,ja=B+D(ea)*da,ka=C+E(ea)*da,la=B+D(ga)*ca,ma=C+E(ga)*ca,na=B+D(ga)*da,oa=C+E(ga)*da,pa=["M",ha,ia,"A",ca,ca,0,1,1,la,ma,"Z","M",na,oa,"A",da,da,0,1,0,ja,ka,"Z"];return pa=pa.join(" "),pa}function g(ca){var da=a(this).data().order;if(G.showTip&&T.text(c[da].title+": "+c[da].value).fadeIn(200),G.showLabel){Z.text(c[da].title).css("font-size",x(Z,c[da].title));var ea=G.shortInt?w(c[da].value):c[da].value;_.html(ea).css("font-size",x(_,ea))}G.onPathEnter.apply(a(this),[ca,c])}function h(ca){if(G.showTip&&T.hide(),G.showLabel){Z.text(G.summaryTitle).css("font-size",x(Z,G.summaryTitle));var da=G.shortInt?w(P):P;_.html(da).css("font-size",x(_,da))}G.onPathLeave.apply(a(this),[ca,c])}function j(ca){G.showTip&&T.css({top:ca.pageY+G.tipOffsetY,left:ca.pageX-T.width()/2+G.tipOffsetX})}function k(){var da=a(this).data().order;"undefined"!=typeof c[da].action&&c[da].action()}function m(ca,da){_.css({opacity:ca}).text((da*ca).toFixed(1));var ea=G.shortInt?w(da):da;_.html(ea).css("font-size",x(_,ea))}function o(ca,da){var ea=G.animation?u(M(ca),null,0):1;da(ea)}function s(ca){return!isNaN(parseFloat(ca))&&isFinite(ca)}function u(ca,da,ea){return s(da)&&ca>da?da:s(ea)&&cada?ca:8>da?""+ca.substring(0,da-3)+"K":""+ca.substring(0,da-6)+"M"}function x(ca,da){ca.css("font-size",""),da=da.toString().replace(/(<([^>]+)>)/ig,"");var ea=ca.width()/da.length*G.ratioFont,fa=ca.width()-da.length*ca.css("font-size").replace(/px/,"")/G.ratioFont;return 0>fa?ea+"px":""}var y=this,z=y.width(),A=y.height(),B=z/2,C=A/2,D=Math.cos,E=Math.sin,F=Math.PI,G=a.extend({segmentShowStroke:!0,segmentStrokeColor:"#0C1013",segmentStrokeWidth:1,baseColor:"rgba(0,0,0,0.5)",baseOffset:4,edgeOffset:10,percentageInnerCutout:75,animation:!0,animationSteps:90,animationEasing:"easeInOutExpo",animateRotate:!0,tipOffsetX:-8,tipOffsetY:-45,showTip:!0,showLabel:!1,ratioFont:1.5,shortInt:!1,tipClass:"doughnutTip",summaryClass:"doughnutSummary",summaryTitle:"TOTAL:",summaryTitleClass:"doughnutSummaryTitle",summaryNumberClass:"doughnutSummaryNumber",beforeDraw:function(){},afterDrawed:function(){},onPathEnter:function(){},onPathLeave:function(){}},d),J=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(ca){window.setTimeout(ca,1e3/60)}}();G.beforeDraw.call(y);var K=a("").appendTo(y),L=[],M={linear:function(ca){return ca},easeInOutExpo:function(ca){var da=.5>ca?8*ca*ca*ca*ca:1-8*--ca*ca*ca*ca;return 1").appendTo("body").hide(),U=T.width(),V=T.height();var X=2*(O-(N-O)),Y=a("
").appendTo(y).css({width:X+"px",height:X+"px","margin-left":-(X/2)+"px","margin-top":-(X/2)+"px"}),Z=a("

"+G.summaryTitle+"

").appendTo(Y);Z.css("font-size",x(Z,G.summaryTitle));for(var _=a("

").appendTo(Y).css({opacity:0}),aa=0,ba=c.length;aa=ea?J(arguments.callee):G.afterDrawed.call(y)})}(function(ca){var da=-F/2,ea=1;if(G.animation&&G.animateRotate&&(ea=ca),m(ca,P),S.attr("opacity",ca),1===c.length&&4.7122F?1:0,ka=B+D(da)*N,la=C+E(da)*N,ma=B+D(da)*O,na=C+E(da)*O,oa=B+D(ia)*N,pa=C+E(ia)*N,qa=B+D(ia)*O,ra=C+E(ia)*O;L[fa].attr("d",["M",ka,la,"A",N,N,0,ja,1,oa,pa,"L",qa,ra,"A",O,O,0,ja,0,ma,na,"Z"].join(" ")),da+=ha}}),y}})(jQuery); + diff --git a/frontend/web/themes/sport/images/Home_files/core.js b/frontend/web/themes/sport/images/Home_files/core.js new file mode 100644 index 0000000..4f9ba67 --- /dev/null +++ b/frontend/web/themes/sport/images/Home_files/core.js @@ -0,0 +1,293 @@ +/** + * @module jQuery Migrate + * @author jQuery Foundation and other contributors + * @see https://code.jquery.com/jquery/ + * @license MIT + * @version 3.0.0 + */ +"undefined"==typeof jQuery.migrateMute&&(jQuery.migrateMute=!0),function(a,b){"use strict";function c(c){var d=b.console;e[c]||(e[c]=!0,a.migrateWarnings.push(c),d&&d.warn&&!a.migrateMute&&(d.warn("JQMIGRATE: "+c),a.migrateTrace&&d.trace&&d.trace()))}function d(a,b,d,e){Object.defineProperty(a,b,{configurable:!0,enumerable:!0,get:function(){return c(e),d}})}a.migrateVersion="3.0.0",function(){var c=b.console&&b.console.log&&function(){b.console.log.apply(b.console,arguments)},d=/^[12]\./;c&&(a&&!d.test(a.fn.jquery)||c("JQMIGRATE: jQuery 3.0.0+ REQUIRED"),a.migrateWarnings&&c("JQMIGRATE: Migrate plugin loaded multiple times"),c("JQMIGRATE: Migrate is installed"+(a.migrateMute?"":" with logging active")+", version "+a.migrateVersion))}();var e={};a.migrateWarnings=[],void 0===a.migrateTrace&&(a.migrateTrace=!0),a.migrateReset=function(){e={},a.migrateWarnings.length=0},"BackCompat"===document.compatMode&&c("jQuery is not compatible with Quirks Mode");var f=a.fn.init,g=a.isNumeric,h=a.find,i=/\[(\s*[-\w]+\s*)([~|^$*]?=)\s*([-\w#]*?#[-\w#]*)\s*\]/,j=/\[(\s*[-\w]+\s*)([~|^$*]?=)\s*([-\w#]*?#[-\w#]*)\s*\]/g;a.fn.init=function(a){var b=Array.prototype.slice.call(arguments);return"string"==typeof a&&"#"===a&&(c("jQuery( '#' ) is not a valid selector"),b[0]=[]),f.apply(this,b)},a.fn.init.prototype=a.fn,a.find=function(a){var b=Array.prototype.slice.call(arguments);if("string"==typeof a&&i.test(a))try{document.querySelector(a)}catch(d){a=a.replace(j,function(a,b,c,d){return"["+b+c+'"'+d+'"]'});try{document.querySelector(a),c("Attribute selector with '#' must be quoted: "+b[0]),b[0]=a}catch(e){c("Attribute selector with '#' was not fixed: "+b[0])}}return h.apply(this,b)};var k;for(k in h)Object.prototype.hasOwnProperty.call(h,k)&&(a.find[k]=h[k]);a.fn.size=function(){return c("jQuery.fn.size() is deprecated; use the .length property"),this.length},a.parseJSON=function(){return c("jQuery.parseJSON is deprecated; use JSON.parse"),JSON.parse.apply(null,arguments)},a.isNumeric=function(b){function d(b){var c=b&&b.toString();return!a.isArray(b)&&c-parseFloat(c)+1>=0}var e=g(b),f=d(b);return e!==f&&c("jQuery.isNumeric() should not be called on constructed objects"),f},d(a,"unique",a.uniqueSort,"jQuery.unique is deprecated, use jQuery.uniqueSort"),d(a.expr,"filters",a.expr.pseudos,"jQuery.expr.filters is now jQuery.expr.pseudos"),d(a.expr,":",a.expr.pseudos,'jQuery.expr[":"] is now jQuery.expr.pseudos');var l=a.ajax;a.ajax=function(){var a=l.apply(this,arguments);return a.promise&&(d(a,"success",a.done,"jQXHR.success is deprecated and removed"),d(a,"error",a.fail,"jQXHR.error is deprecated and removed"),d(a,"complete",a.always,"jQXHR.complete is deprecated and removed")),a};var m=a.fn.removeAttr,n=a.fn.toggleClass,o=/\S+/g;a.fn.removeAttr=function(b){var d=this;return a.each(b.match(o),function(b,e){a.expr.match.bool.test(e)&&(c("jQuery.fn.removeAttr no longer sets boolean properties: "+e),d.prop(e,!1))}),m.apply(this,arguments)},a.fn.toggleClass=function(b){return void 0!==b&&"boolean"!=typeof b?n.apply(this,arguments):(c("jQuery.fn.toggleClass( boolean ) is deprecated"),this.each(function(){var c=this.getAttribute&&this.getAttribute("class")||"";c&&a.data(this,"__className__",c),this.setAttribute&&this.setAttribute("class",c||b===!1?"":a.data(this,"__className__")||"")}))};var p=!1;a.swap&&a.each(["height","width","reliableMarginRight"],function(b,c){var d=a.cssHooks[c]&&a.cssHooks[c].get;d&&(a.cssHooks[c].get=function(){var a;return p=!0,a=d.apply(this,arguments),p=!1,a})}),a.swap=function(a,b,d,e){var f,g,h={};p||c("jQuery.swap() is undocumented and deprecated");for(g in b)h[g]=a.style[g],a.style[g]=b[g];f=d.apply(a,e||[]);for(g in b)a.style[g]=h[g];return f};var q=a.data;a.data=function(b,d,e){var f;return d&&d!==a.camelCase(d)&&(f=a.hasData(b)&&q.call(this,b),f&&d in f)?(c("jQuery.data() always sets/gets camelCased names: "+d),arguments.length>2&&(f[d]=e),f[d]):q.apply(this,arguments)};var r=a.Tween.prototype.run;a.Tween.prototype.run=function(b){a.easing[this.easing].length>1&&(c('easing function "jQuery.easing.'+this.easing.toString()+'" should use only first argument'),a.easing[this.easing]=a.easing[this.easing].bind(a.easing,b,this.options.duration*b,0,1,this.options.duration)),r.apply(this,arguments)};var s=a.fn.load,t=a.event.fix;a.event.props=[],a.event.fixHooks={},a.event.fix=function(b){var d,e=b.type,f=this.fixHooks[e],g=a.event.props;if(g.length)for(c("jQuery.event.props are deprecated and removed: "+g.join());g.length;)a.event.addProp(g.pop());if(f&&!f._migrated_&&(f._migrated_=!0,c("jQuery.event.fixHooks are deprecated and removed: "+e),(g=f.props)&&g.length))for(;g.length;)a.event.addProp(g.pop());return d=t.call(this,b),f&&f.filter?f.filter(d,b):d},a.each(["load","unload","error"],function(b,d){a.fn[d]=function(){var a=Array.prototype.slice.call(arguments,0);return"load"===d&&"string"==typeof a[0]?s.apply(this,a):(c("jQuery.fn."+d+"() is deprecated"),a.splice(0,0,d),arguments.length?this.on.apply(this,a):(this.triggerHandler.apply(this,a),this))}}),a(function(){a(document).triggerHandler("ready")}),a.event.special.ready={setup:function(){this===document&&c("'ready' event is deprecated")}},a.fn.extend({bind:function(a,b,d){return c("jQuery.fn.bind() is deprecated"),this.on(a,null,b,d)},unbind:function(a,b){return c("jQuery.fn.unbind() is deprecated"),this.off(a,null,b)},delegate:function(a,b,d,e){return c("jQuery.fn.delegate() is deprecated"),this.on(b,a,d,e)},undelegate:function(a,b,d){return c("jQuery.fn.undelegate() is deprecated"),1===arguments.length?this.off(a,"**"):this.off(b,a||"**",d)}});var u=a.fn.offset;a.fn.offset=function(){var b,d=this[0],e={top:0,left:0};return d&&d.nodeType?(b=(d.ownerDocument||document).documentElement,a.contains(b,d)?u.apply(this,arguments):(c("jQuery.fn.offset() requires an element connected to a document"),e)):(c("jQuery.fn.offset() requires a valid DOM element"),e)};var v=a.param;a.param=function(b,d){var e=a.ajaxSettings&&a.ajaxSettings.traditional;return void 0===d&&e&&(c("jQuery.param() no longer uses jQuery.ajaxSettings.traditional"),d=e),v.call(this,b,d)};var w=a.fn.andSelf||a.fn.addBack;a.fn.andSelf=function(){return c("jQuery.fn.andSelf() replaced by jQuery.fn.addBack()"),w.apply(this,arguments)};var x=a.Deferred,y=[["resolve","done",a.Callbacks("once memory"),a.Callbacks("once memory"),"resolved"],["reject","fail",a.Callbacks("once memory"),a.Callbacks("once memory"),"rejected"],["notify","progress",a.Callbacks("memory"),a.Callbacks("memory")]];a.Deferred=function(b){var d=x(),e=d.promise();return d.pipe=e.pipe=function(){var b=arguments;return c("deferred.pipe() is deprecated"),a.Deferred(function(c){a.each(y,function(f,g){var h=a.isFunction(b[f])&&b[f];d[g[1]](function(){var b=h&&h.apply(this,arguments);b&&a.isFunction(b.promise)?b.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[g[0]+"With"](this===e?c.promise():this,h?[b]:arguments)})}),b=null}).promise()},b&&b.call(d,d),d}}(jQuery,window); + + +/** + * @module jQuery Cookie Plugin + * @see https://github.com/carhartl/jquery-cookie + * @license MIT + */ +!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof exports?module.exports=e(require("jquery")):e(jQuery)}(function(e){function n(e){return u.raw?e:encodeURIComponent(e)}function o(e){return u.raw?e:decodeURIComponent(e)}function i(e){return n(u.json?JSON.stringify(e):String(e))}function t(e){0===e.indexOf('"')&&(e=e.slice(1,-1).replace(/\\"/g,'"').replace(/\\\\/g,"\\"));try{return e=decodeURIComponent(e.replace(c," ")),u.json?JSON.parse(e):e}catch(e){}}function r(n,o){var i=u.raw?n:t(n);return e.isFunction(o)?o(i):i}var c=/\+/g,u=e.cookie=function(t,c,s){if(arguments.length>1&&!e.isFunction(c)){if("number"==typeof(s=e.extend({},u.defaults,s)).expires){var d=s.expires,f=s.expires=new Date;f.setMilliseconds(f.getMilliseconds()+864e5*d)}return document.cookie=[n(t),"=",i(c),s.expires?"; expires="+s.expires.toUTCString():"",s.path?"; path="+s.path:"",s.domain?"; domain="+s.domain:"",s.secure?"; secure":""].join("")}for(var a=t?void 0:{},p=document.cookie?document.cookie.split("; "):[],l=0,m=p.length;l1},n.landscape=function(){return window.innerHeight/window.innerWidth<1},n.noConflict=function(){return window.device=e,this},i=function(n){return-1!==l.indexOf(n)},d=function(n){var e;return e=new RegExp(n,"i"),t.className.match(e)},o=function(n){var e=null;d(n)||(e=t.className.replace(/^\s+|\s+$/g,""),t.className=e+" "+n)},c=function(n){d(n)&&(t.className=t.className.replace(" "+n,""))},n.ios()?n.ipad()?o("ios ipad tablet"):n.iphone()?o("ios iphone mobile"):n.ipod()&&o("ios ipod mobile"):n.android()?o(n.androidTablet()?"android tablet":"android mobile"):n.blackberry()?o(n.blackberryTablet()?"blackberry tablet":"blackberry mobile"):n.windows()?o(n.windowsTablet()?"windows tablet":n.windowsPhone()?"windows mobile":"desktop"):n.fxos()?o(n.fxosTablet()?"fxos tablet":"fxos mobile"):n.meego()?o("meego mobile"):n.nodeWebkit()?o("node-webkit"):n.television()?o("television"):n.desktop()&&o("desktop"),n.cordova()&&o("cordova"),r=function(){n.landscape()?(c("portrait"),o("landscape")):(c("landscape"),o("portrait"))},a=Object.prototype.hasOwnProperty.call(window,"onorientationchange")?"orientationchange":"resize",window.addEventListener?window.addEventListener(a,r,!1):window.attachEvent?window.attachEvent(a,r):window[a]=r,r(),"function"==typeof define&&"object"==typeof define.amd&&define.amd?define(function(){return n}):"undefined"!=typeof module&&module.exports?module.exports=n:window.device=n}).call(this); + + +/** + * @module jQuery resize event + * @see http://benalman.com/projects/jquery-resize-plugin/ + * @license MIT + */ +(function($,h,c){var a=$([]),e=$.resize=$.extend($.resize,{}),i,k="setTimeout",j="resize",d=j+"-special-event",b="delay",f="throttleWindow";e[b]=250;e[f]=true;$.event.special[j]={setup:function(){if(!e[f]&&this[k]){return false}var l=$(this);a=a.add(l);$.data(this,d,{w:l.width(),h:l.height()});if(a.length===1){g()}},teardown:function(){if(!e[f]&&this[k]){return false}var l=$(this);a=a.not(l);l.removeData(d);if(!a.length){clearTimeout(i)}},add:function(l){if(!e[f]&&this[k]){return false}var n;function m(s,o,p){var q=$(this),r=$.data(this,d);r.w=o!==c?o:q.width();r.h=p!==c?p:q.height();n.apply(this,arguments)}if($.isFunction(l)){n=l;return m}else{n=l.handler;l.handler=m}}};function g(){i=h[k](function(){a.each(function(){var n=$(this),m=n.width(),l=n.height(),o=$.data(this,d);if(m!==o.w||l!==o.h){n.trigger(j,[o.w=m,o.h=l])}});g()},e[b])}})(jQuery,this); + + +/** + * @module jQuery easing + * @author George McGinley Smith + * @see http://gsgd.co.uk/sandbox/jquery/easing/ + * @license BSD + * @version 1.4.0 + */ +!function(n){"function"==typeof define&&define.amd?define(["jquery"],function(e){return n(e)}):"object"==typeof module&&"object"==typeof module.exports?exports=n(require("jquery")):n(jQuery)}(function(n){function e(n){var e=7.5625,t=2.75;return n<1/t?e*n*n:n<2/t?e*(n-=1.5/t)*n+.75:n<2.5/t?e*(n-=2.25/t)*n+.9375:e*(n-=2.625/t)*n+.984375}n.easing.jswing=n.easing.swing;var t=Math.pow,u=Math.sqrt,r=Math.sin,i=Math.cos,a=Math.PI,c=1.70158,o=1.525*c,s=2*a/3,f=2*a/4.5;n.extend(n.easing,{def:"easeOutQuad",swing:function(e){return n.easing[n.easing.def](e)},easeInQuad:function(n){return n*n},easeOutQuad:function(n){return 1-(1-n)*(1-n)},easeInOutQuad:function(n){return n<.5?2*n*n:1-t(-2*n+2,2)/2},easeInCubic:function(n){return n*n*n},easeOutCubic:function(n){return 1-t(1-n,3)},easeInOutCubic:function(n){return n<.5?4*n*n*n:1-t(-2*n+2,3)/2},easeInQuart:function(n){return n*n*n*n},easeOutQuart:function(n){return 1-t(1-n,4)},easeInOutQuart:function(n){return n<.5?8*n*n*n*n:1-t(-2*n+2,4)/2},easeInQuint:function(n){return n*n*n*n*n},easeOutQuint:function(n){return 1-t(1-n,5)},easeInOutQuint:function(n){return n<.5?16*n*n*n*n*n:1-t(-2*n+2,5)/2},easeInSine:function(n){return 1-i(n*a/2)},easeOutSine:function(n){return r(n*a/2)},easeInOutSine:function(n){return-(i(a*n)-1)/2},easeInExpo:function(n){return 0===n?0:t(2,10*n-10)},easeOutExpo:function(n){return 1===n?1:1-t(2,-10*n)},easeInOutExpo:function(n){return 0===n?0:1===n?1:n<.5?t(2,20*n-10)/2:(2-t(2,-20*n+10))/2},easeInCirc:function(n){return 1-u(1-t(n,2))},easeOutCirc:function(n){return u(1-t(n-1,2))},easeInOutCirc:function(n){return n<.5?(1-u(1-t(2*n,2)))/2:(u(1-t(-2*n+2,2))+1)/2},easeInElastic:function(n){return 0===n?0:1===n?1:-t(2,10*n-10)*r((10*n-10.75)*s)},easeOutElastic:function(n){return 0===n?0:1===n?1:t(2,-10*n)*r((10*n-.75)*s)+1},easeInOutElastic:function(n){return 0===n?0:1===n?1:n<.5?-t(2,20*n-10)*r((20*n-11.125)*f)/2:t(2,-20*n+10)*r((20*n-11.125)*f)/2+1},easeInBack:function(n){return 2.70158*n*n*n-c*n*n},easeOutBack:function(n){return 1+2.70158*t(n-1,3)+c*t(n-1,2)},easeInOutBack:function(n){return n<.5?t(2*n,2)*(7.189819*n-o)/2:(t(2*n-2,2)*((o+1)*(2*n-2)+o)+2)/2},easeInBounce:function(n){return 1-e(1-n)},easeOutBounce:e,easeInOutBounce:function(n){return n<.5?(1-e(1-2*n))/2:(1+e(2*n-1))/2}})}); + + +/** + * animsition v4.0.2 + * A simple and easy jQuery plugin for CSS animated page transitions. + * http://blivesta.github.io/animsition + * License : MIT + * Author : blivesta (http://blivesta.com/) + */ +!function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],t):"object"==typeof exports?module.exports=t(require("jquery")):t(jQuery)}(function(t){"use strict";var n="animsition",i={init:function(a){a=t.extend({inClass:"fade-in",outClass:"fade-out",inDuration:1500,outDuration:800,linkElement:".animsition-link",loading:!0,loadingParentElement:"body",loadingClass:"animsition-loading",loadingInner:"",timeout:!1,timeoutCountdown:5e3,onLoadEvent:!0,browser:["animation-duration","-webkit-animation-duration"],overlay:!1,overlayClass:"animsition-overlay-slide",overlayParentElement:"body",transition:function(t){window.location.href=t}},a),i.settings={timer:!1,data:{inClass:"animsition-in-class",inDuration:"animsition-in-duration",outClass:"animsition-out-class",outDuration:"animsition-out-duration",overlay:"animsition-overlay"},events:{inStart:"animsition.inStart",inEnd:"animsition.inEnd",outStart:"animsition.outStart",outEnd:"animsition.outEnd"}};var o=i.supportCheck.call(this,a);if(!o&&a.browser.length>0&&(!o||!this.length))return"console"in window||(window.console={},window.console.log=function(t){return t}),this.length||console.log("Animsition: Element does not exist on page."),o||console.log("Animsition: Does not support this browser."),i.destroy.call(this);var e=i.optionCheck.call(this,a);return e&&t("."+a.overlayClass).length<=0&&i.addOverlay.call(this,a),a.loading&&t("."+a.loadingClass).length<=0&&i.addLoading.call(this,a),this.each(function(){var o=this,e=t(this),s=t(window),r=t(document),l=e.data(n);l||(a=t.extend({},a),e.data(n,{options:a}),a.timeout&&i.addTimer.call(o),a.onLoadEvent&&s.on("load."+n,function(){i.settings.timer&&clearTimeout(i.settings.timer),i["in"].call(o)}),s.on("pageshow."+n,function(t){t.originalEvent.persisted&&i["in"].call(o)}),s.on("unload."+n,function(){}),r.on("click."+n,a.linkElement,function(n){n.preventDefault();var a=t(this),e=a.attr("href");2===n.which||n.metaKey||n.shiftKey||-1!==navigator.platform.toUpperCase().indexOf("WIN")&&n.ctrlKey?window.open(e,"_blank"):i.out.call(o,a,e)}))})},addOverlay:function(n){t(n.overlayParentElement).prepend('
')},addLoading:function(n){t(n.loadingParentElement).append('
'+n.loadingInner+"
")},removeLoading:function(){var i=t(this),a=i.data(n).options,o=t(a.loadingParentElement).children("."+a.loadingClass);o.fadeOut().remove()},addTimer:function(){var a=this,o=t(this),e=o.data(n).options;i.settings.timer=setTimeout(function(){i["in"].call(a),t(window).off("load."+n)},e.timeoutCountdown)},supportCheck:function(n){var i=t(this),a=n.browser,o=a.length,e=!1;0===o&&(e=!0);for(var s=0;o>s;s++)if("string"==typeof i.css(a[s])){e=!0;break}return e},optionCheck:function(n){var a,o=t(this);return a=n.overlay||o.data(i.settings.data.overlay)?!0:!1},animationCheck:function(i,a,o){var e=t(this),s=e.data(n).options,r=typeof i,l=!a&&"number"===r,d=a&&"string"===r&&i.length>0;return l||d?i=i:a&&o?i=s.inClass:!a&&o?i=s.inDuration:a&&!o?i=s.outClass:a||o||(i=s.outDuration),i},"in":function(){var a=this,o=t(this),e=o.data(n).options,s=o.data(i.settings.data.inDuration),r=o.data(i.settings.data.inClass),l=i.animationCheck.call(a,s,!1,!0),d=i.animationCheck.call(a,r,!0,!0),u=i.optionCheck.call(a,e),c=o.data(n).outClass;e.loading&&i.removeLoading.call(a),c&&o.removeClass(c),u?i.inOverlay.call(a,d,l):i.inDefault.call(a,d,l)},inDefault:function(n,a){var o=t(this);o.css({"animation-duration":a+"ms"}).addClass(n).trigger(i.settings.events.inStart).animateCallback(function(){o.removeClass(n).css({opacity:1}).trigger(i.settings.events.inEnd)})},inOverlay:function(a,o){var e=t(this),s=e.data(n).options;e.css({opacity:1}).trigger(i.settings.events.inStart),t(s.overlayParentElement).children("."+s.overlayClass).css({"animation-duration":o+"ms"}).addClass(a).animateCallback(function(){e.trigger(i.settings.events.inEnd)})},out:function(a,o){var e=this,s=t(this),r=s.data(n).options,l=a.data(i.settings.data.outClass),d=s.data(i.settings.data.outClass),u=a.data(i.settings.data.outDuration),c=s.data(i.settings.data.outDuration),m=l?l:d,g=u?u:c,f=i.animationCheck.call(e,m,!0,!1),v=i.animationCheck.call(e,g,!1,!1),h=i.optionCheck.call(e,r);s.data(n).outClass=f,h?i.outOverlay.call(e,f,v,o):i.outDefault.call(e,f,v,o)},outDefault:function(a,o,e){var s=t(this),r=s.data(n).options;s.css({"animation-duration":o+1+"ms"}).addClass(a).trigger(i.settings.events.outStart).animateCallback(function(){s.trigger(i.settings.events.outEnd),r.transition(e)})},outOverlay:function(a,o,e){var s=this,r=t(this),l=r.data(n).options,d=r.data(i.settings.data.inClass),u=i.animationCheck.call(s,d,!0,!0);t(l.overlayParentElement).children("."+l.overlayClass).css({"animation-duration":o+1+"ms"}).removeClass(u).addClass(a).trigger(i.settings.events.outStart).animateCallback(function(){r.trigger(i.settings.events.outEnd),l.transition(e)})},destroy:function(){return this.each(function(){var i=t(this);t(window).off("."+n),i.css({opacity:1}).removeData(n)})}};t.fn.animateCallback=function(n){var i="animationend webkitAnimationEnd";return this.each(function(){var a=t(this);a.on(i,function(){return a.off(i),n.call(this)})})},t.fn.animsition=function(a){return i[a]?i[a].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof a&&a?void t.error("Method "+a+" does not exist on jQuery."+n):i.init.apply(this,arguments)}}); + + +/** + * @module TouchSwipe + * @see https://github.com/mattbryson/TouchSwipe-Jquery-Plugin + * @license MIT + * @version 1.6.18 + */ +!function(e){"function"==typeof define&&define.amd&&define.amd.jQuery?define(["jquery"],e):e("undefined"!=typeof module&&module.exports?require("jquery"):jQuery)}(function(e){"use strict";function n(n){return!n||void 0!==n.allowPageScroll||void 0===n.swipe&&void 0===n.swipeStatus||(n.allowPageScroll=c),void 0!==n.click&&void 0===n.tap&&(n.tap=n.click),n||(n={}),n=e.extend({},e.fn.swipe.defaults,n),this.each(function(){var r=e(this),i=r.data(D);i||(i=new t(this,n),r.data(D,i))})}function t(n,t){function P(n){if(!(ce()||e(n.target).closest(t.excludedElements,Ve).length>0)){var r=n.originalEvent?n.originalEvent:n;if(!r.pointerType||"mouse"!=r.pointerType||0!=t.fallbackToMouseEvents){var i,l=r.touches,o=l?l[0]:r;return We=y,l?ze=l.length:!1!==t.preventDefaultEvents&&n.preventDefault(),je=0,Ne=null,He=null,Xe=null,_e=0,qe=0,Qe=0,Ce=1,Fe=0,Ye=we(),ue(),pe(0,o),!l||ze===t.fingers||t.fingers===T||X()?(Ze=Oe(),2==ze&&(pe(1,l[1]),qe=Qe=be(Ge[0].start,Ge[1].start)),(t.swipeStatus||t.pinchStatus)&&(i=j(r,We))):i=!1,!1===i?(We=x,j(r,We),i):(t.hold&&(nn=setTimeout(e.proxy(function(){Ve.trigger("hold",[r.target]),t.hold&&(i=t.hold.call(Ve,r,r.target))},this),t.longTapThreshold)),se(!0),null)}}}function L(e){var n=e.originalEvent?e.originalEvent:e;if(We!==m&&We!==x&&!ae()){var r,i=n.touches,l=fe(i?i[0]:n);if(Be=Oe(),i&&(ze=i.length),t.hold&&clearTimeout(nn),We=E,2==ze&&(0==qe?(pe(1,i[1]),qe=Qe=be(Ge[0].start,Ge[1].start)):(fe(i[1]),Qe=be(Ge[0].end,Ge[1].end),Xe=Ee(Ge[0].end,Ge[1].end)),Ce=ye(qe,Qe),Fe=Math.abs(qe-Qe)),ze===t.fingers||t.fingers===T||!i||X()){if(Ne=Se(l.start,l.end),He=Se(l.last,l.end),C(e,He),je=me(l.start,l.end),_e=Te(),de(Ne,je),r=j(n,We),!t.triggerOnTouchEnd||t.triggerOnTouchLeave){var o=!0;if(t.triggerOnTouchLeave){var u=Me(this);o=De(l.end,u)}!t.triggerOnTouchEnd&&o?We=U(E):t.triggerOnTouchLeave&&!o&&(We=U(m)),We!=x&&We!=m||j(n,We)}}else We=x,j(n,We);!1===r&&(We=x,j(n,We))}}function R(e){var n=e.originalEvent?e.originalEvent:e,r=n.touches;if(r){if(r.length&&!ae())return oe(n),!0;if(r.length&&ae())return!0}return ae()&&(ze=Ke),Be=Oe(),_e=Te(),_()||!H()?(We=x,j(n,We)):t.triggerOnTouchEnd||!1===t.triggerOnTouchEnd&&We===E?(!1!==t.preventDefaultEvents&&!1!==e.cancelable&&e.preventDefault(),We=m,j(n,We)):!t.triggerOnTouchEnd&&B()?(We=m,N(n,We,h)):We===E&&(We=x,j(n,We)),se(!1),null}function k(){ze=0,Be=0,Ze=0,qe=0,Qe=0,Ce=1,ue(),se(!1)}function A(e){var n=e.originalEvent?e.originalEvent:e;t.triggerOnTouchLeave&&(We=U(m),j(n,We))}function I(){Ve.unbind(Re,P),Ve.unbind(Ue,k),Ve.unbind(ke,L),Ve.unbind(Ae,R),Ie&&Ve.unbind(Ie,A),se(!1)}function U(e){var n=e,r=Q(),i=H(),l=_();return!r||l?n=x:!i||e!=E||t.triggerOnTouchEnd&&!t.triggerOnTouchLeave?!i&&e==m&&t.triggerOnTouchLeave&&(n=x):n=m,n}function j(e,n){var t,r=e.touches;return(z()||W())&&(t=N(e,n,p)),(Y()||X())&&!1!==t&&(t=N(e,n,f)),ie()&&!1!==t?t=N(e,n,d):le()&&!1!==t?t=N(e,n,g):re()&&!1!==t&&(t=N(e,n,h)),n===x&&k(e),n===m&&(r?r.length||k(e):k(e)),t}function N(n,c,s){var w;if(s==p){if(Ve.trigger("swipeStatus",[c,Ne||null,je||0,_e||0,ze,Ge,He]),t.swipeStatus&&!1===(w=t.swipeStatus.call(Ve,n,c,Ne||null,je||0,_e||0,ze,Ge,He)))return!1;if(c==m&&V()){if(clearTimeout(en),clearTimeout(nn),Ve.trigger("swipe",[Ne,je,_e,ze,Ge,He]),t.swipe&&!1===(w=t.swipe.call(Ve,n,Ne,je,_e,ze,Ge,He)))return!1;switch(Ne){case r:Ve.trigger("swipeLeft",[Ne,je,_e,ze,Ge,He]),t.swipeLeft&&(w=t.swipeLeft.call(Ve,n,Ne,je,_e,ze,Ge,He));break;case i:Ve.trigger("swipeRight",[Ne,je,_e,ze,Ge,He]),t.swipeRight&&(w=t.swipeRight.call(Ve,n,Ne,je,_e,ze,Ge,He));break;case l:Ve.trigger("swipeUp",[Ne,je,_e,ze,Ge,He]),t.swipeUp&&(w=t.swipeUp.call(Ve,n,Ne,je,_e,ze,Ge,He));break;case o:Ve.trigger("swipeDown",[Ne,je,_e,ze,Ge,He]),t.swipeDown&&(w=t.swipeDown.call(Ve,n,Ne,je,_e,ze,Ge,He))}}}if(s==f){if(Ve.trigger("pinchStatus",[c,Xe||null,Fe||0,_e||0,ze,Ce,Ge]),t.pinchStatus&&!1===(w=t.pinchStatus.call(Ve,n,c,Xe||null,Fe||0,_e||0,ze,Ce,Ge)))return!1;if(c==m&&F())switch(Xe){case u:Ve.trigger("pinchIn",[Xe||null,Fe||0,_e||0,ze,Ce,Ge]),t.pinchIn&&(w=t.pinchIn.call(Ve,n,Xe||null,Fe||0,_e||0,ze,Ce,Ge));break;case a:Ve.trigger("pinchOut",[Xe||null,Fe||0,_e||0,ze,Ce,Ge]),t.pinchOut&&(w=t.pinchOut.call(Ve,n,Xe||null,Fe||0,_e||0,ze,Ce,Ge))}}return s==h?c!==x&&c!==m||(clearTimeout(en),clearTimeout(nn),J()&&!ee()?($e=Oe(),en=setTimeout(e.proxy(function(){$e=null,Ve.trigger("tap",[n.target]),t.tap&&(w=t.tap.call(Ve,n,n.target))},this),t.doubleTapThreshold)):($e=null,Ve.trigger("tap",[n.target]),t.tap&&(w=t.tap.call(Ve,n,n.target)))):s==d?c!==x&&c!==m||(clearTimeout(en),clearTimeout(nn),$e=null,Ve.trigger("doubletap",[n.target]),t.doubleTap&&(w=t.doubleTap.call(Ve,n,n.target))):s==g&&(c!==x&&c!==m||(clearTimeout(en),$e=null,Ve.trigger("longtap",[n.target]),t.longTap&&(w=t.longTap.call(Ve,n,n.target)))),w}function H(){var e=!0;return null!==t.threshold&&(e=je>=t.threshold),e}function _(){var e=!1;return null!==t.cancelThreshold&&null!==Ne&&(e=ge(Ne)-je>=t.cancelThreshold),e}function q(){return null===t.pinchThreshold||Fe>=t.pinchThreshold}function Q(){return!(t.maxTimeThreshold&&_e>=t.maxTimeThreshold)}function C(e,n){if(!1!==t.preventDefaultEvents)if(t.allowPageScroll===c)e.preventDefault();else{var u=t.allowPageScroll===s;switch(n){case r:(t.swipeLeft&&u||!u&&t.allowPageScroll!=w)&&e.preventDefault();break;case i:(t.swipeRight&&u||!u&&t.allowPageScroll!=w)&&e.preventDefault();break;case l:(t.swipeUp&&u||!u&&t.allowPageScroll!=v)&&e.preventDefault();break;case o:(t.swipeDown&&u||!u&&t.allowPageScroll!=v)&&e.preventDefault()}}}function F(){var e=G(),n=Z(),t=q();return e&&n&&t}function X(){return!!(t.pinchStatus||t.pinchIn||t.pinchOut)}function Y(){return!(!F()||!X())}function V(){var e=Q(),n=H(),t=G(),r=Z();return!_()&&r&&t&&n&&e}function W(){return!!(t.swipe||t.swipeStatus||t.swipeLeft||t.swipeRight||t.swipeUp||t.swipeDown)}function z(){return!(!V()||!W())}function G(){return ze===t.fingers||t.fingers===T||!S}function Z(){return 0!==Ge[0].end.x}function B(){return!!t.tap}function J(){return!!t.doubleTap}function K(){return!!t.longTap}function $(){if(null==$e)return!1;var e=Oe();return J()&&e-$e<=t.doubleTapThreshold}function ee(){return $()}function ne(){return(1===ze||!S)&&(isNaN(je)||jet.longTapThreshold&&je=0?r:t<=360&&t>=315?r:t>=135&&t<=225?i:t>45&&t<135?o:l}function Oe(){return(new Date).getTime()}function Me(n){var t=(n=e(n)).offset();return{left:t.left,right:t.left+n.outerWidth(),top:t.top,bottom:t.top+n.outerHeight()}}function De(e,n){return e.x>n.left&&e.xn.top&&e.y=o.clientWidth&&i>=o.clientHeight}),f=0i[e]&&!t.escapeWithReference&&(n=z(p[o],i[e]-('right'===e?p.width:p.height))),pe({},o,n)}};return n.forEach(function(e){var t=-1===['left','top'].indexOf(e)?'secondary':'primary';p=se({},p,s[t](e))}),e.offsets.popper=p,e},priority:['left','right','top','bottom'],padding:5,boundariesElement:'scrollParent'},keepTogether:{order:400,enabled:!0,fn:function(e){var t=e.offsets,o=t.popper,i=t.reference,n=e.placement.split('-')[0],r=V,p=-1!==['top','bottom'].indexOf(n),s=p?'right':'bottom',d=p?'left':'top',a=p?'width':'height';return o[s]r(i[s])&&(e.offsets.popper[d]=r(i[s])),e}},arrow:{order:500,enabled:!0,fn:function(e,t){if(!F(e.instance.modifiers,'arrow','keepTogether'))return e;var o=t.element;if('string'==typeof o){if(o=e.instance.popper.querySelector(o),!o)return e;}else if(!e.instance.popper.contains(o))return console.warn('WARNING: `arrow.element` must be child of its popper element!'),e;var i=e.placement.split('-')[0],n=e.offsets,r=n.popper,p=n.reference,s=-1!==['left','right'].indexOf(i),d=s?'height':'width',a=s?'top':'left',f=s?'left':'top',l=s?'bottom':'right',m=O(o)[d];p[l]-mr[l]&&(e.offsets.popper[a]+=p[a]+m-r[l]);var h=p[a]+p[d]/2-m/2,g=h-c(e.offsets.popper)[a];return g=_(z(r[d]-m,g),0),e.arrowElement=o,e.offsets.arrow={},e.offsets.arrow[a]=Math.round(g),e.offsets.arrow[f]='',e},element:'[x-arrow]'},flip:{order:600,enabled:!0,fn:function(e,t){if(W(e.instance.modifiers,'inner'))return e;if(e.flipped&&e.placement===e.originalPlacement)return e;var o=w(e.instance.popper,e.instance.reference,t.padding,t.boundariesElement),i=e.placement.split('-')[0],n=L(i),r=e.placement.split('-')[1]||'',p=[];switch(t.behavior){case fe.FLIP:p=[i,n];break;case fe.CLOCKWISE:p=K(i);break;case fe.COUNTERCLOCKWISE:p=K(i,!0);break;default:p=t.behavior;}return p.forEach(function(s,d){if(i!==s||p.length===d+1)return e;i=e.placement.split('-')[0],n=L(i);var a=e.offsets.popper,f=e.offsets.reference,l=V,m='left'===i&&l(a.right)>l(f.left)||'right'===i&&l(a.left)l(f.top)||'bottom'===i&&l(a.top)l(o.right),g=l(a.top)l(o.bottom),b='left'===i&&h||'right'===i&&c||'top'===i&&g||'bottom'===i&&u,y=-1!==['top','bottom'].indexOf(i),w=!!t.flipVariations&&(y&&'start'===r&&h||y&&'end'===r&&c||!y&&'start'===r&&g||!y&&'end'===r&&u);(m||b||w)&&(e.flipped=!0,(m||b)&&(i=p[d+1]),w&&(r=j(r)),e.placement=i+(r?'-'+r:''),e.offsets.popper=se({},e.offsets.popper,S(e.instance.popper,e.offsets.reference,e.placement)),e=N(e.instance.modifiers,e,'flip'))}),e},behavior:'flip',padding:5,boundariesElement:'viewport'},inner:{order:700,enabled:!1,fn:function(e){var t=e.placement,o=t.split('-')[0],i=e.offsets,n=i.popper,r=i.reference,p=-1!==['left','right'].indexOf(o),s=-1===['top','left'].indexOf(o);return n[p?'left':'top']=r[t]-(s?n[p?'width':'height']:0),e.placement=L(t),e.offsets.popper=c(n),e}},hide:{order:800,enabled:!0,fn:function(e){if(!F(e.instance.modifiers,'hide','preventOverflow'))return e;var t=e.offsets.reference,o=T(e.instance.modifiers,function(e){return'preventOverflow'===e.name}).boundaries;if(t.bottomo.right||t.top>o.bottom||t.right0&&(typeof r=="undefined"||o&&o.test(a))&&s.push(u);return s}function n(e,t){var n=e.getAttribute&&e.getAttribute(t)||null;if(!n){var r=e.attributes;for(var i=0;i0)for(var s in e)e.hasOwnProperty(s)&&s!="__size__"&&t.put(i,s,e[s]);return i}function f(e,t,n,i){var s=o[y.constraintType],a=W(t,s,i),f={group:n,constraintName:e.constraintName,custom:u[s].custom,compound:u[s].compound,async:u[s].async,constraintParameters:y.params,failingElements:e.failingElements,message:a};return r.reportAsSingleViolation||(f.composingConstraintViolations=e.composingConstraintViolations||[]),f}var l=[],c=[];for(var h=0;h0){v=[];for(var h=0;h0){v===null&&(v=[]);var T=0;for(var h=0;h0)throw new r.Exception.IllegalArgumentException("No constraints have been bound to the specified elements: "+i.explode(p)+". "+r.explodeParameters(e));return n=M(n),D(n,e)}function N(e){var t=[],n={asyncContexts:[],syncContexts:[]};for(var s in a)if(a.hasOwnProperty(s)){var o=a[s];for(var u=0;u0)throw new r.Exception.IllegalArgumentException("No constraints have been bound to the specified elements: "+i.explode(t)+". "+r.explodeParameters(e));return n=M(n),D(n,e)}function C(e){var t=!1,n={groupedContexts:{}},i=0;while(i0)throw new r.Exception.IllegalArgumentException("The following elements: "+i.explode(n)+" were not found in one or more of the following group(s): ["+i.explode(t,",").replace(/,/g,", ")+"]. "+r.explodeParameters(e));var m=_(o);return e.groups=m.groups,o=m.uniqueConstraintsToValidate,P(e,o,s)}function A(e){var t=!1,n={groupedContexts:{}},r=0;while(r0&&(n=B(e));if(e.asyncContexts.length>0){if(!t.callback)throw new r.Exception.IllegalArgumentException("One or more constraints to be validated are asynchronous, but a callback has not been provided.");j(e,function(e){n.length>0?n=n.concat(e):n=e,t.callback(n)})}else t.callback&&t.callback(n);return n}function P(e,t,n){var i=F(e.groups,e.independent,t);if(n){if(!e.callback)throw new r.Exception.IllegalArgumentException("One or more constraints to be validated are asynchronous, but a callback has not been provided.");if(!e.independent&&i.length>0){var s=i[0].group,o=t.groupedContexts[s];t.groupedContexts={},t.groupedContexts[s]=o}I(e.groups,e.independent,t,function(t){i.length>0?i=i.concat(t):i=t,e.callback(i)})}else e.callback&&e.callback(i);return i}function H(e,t,n){var i=a[e];if(!i)throw new r.Exception.IllegalArgumentException("Undefined group in group list (group: "+e+", elementId: "+t+", constraint: "+n+")");var s=i[t];if(!s)throw new r.Exception.IllegalArgumentException("No constraints have been defined for the element with id: "+t+" in group "+e);var o=s[n];if(!o)throw new r.Exception.IllegalArgumentException("Constraint "+n+" in group "+e+" hasn't been bound to the element with id "+t);return{group:e,elementId:t,elementConstraint:n,params:o,async:u[n].async}}function B(e){var t=[],n=0;while(n0},max:function(e){var t=!0;return g(this,e)&&(t=parseFloat(this.value)<=parseFloat(e.value)),t},min:function(e){var t=!0;return g(this,e)&&(t=parseFloat(this.value)>=parseFloat(e.value)),t},range:function(e){var t=!0;return g(this,e)&&(t=this.value.replace(/\s/g,"")!=""&&parseFloat(this.value)<=parseFloat(e.max)&&parseFloat(this.value)>=parseFloat(e.min)),t},notBlank:function(e){return this.value.replace(/\s/g,"")!=""},blank:function(e){return this.value.replace(/\s/g,"")===""},matches:function(e){var t=!0;if(g(this,e)){var n,r;typeof e["regex"]=="string"?r=e.regex.replace(/^\//,"").replace(/\/$/,""):r=e.regex,typeof e["flags"]!="undefined"?n=new RegExp(r.toString().replace(/^\//,"").replace(/\/[^\/]*$/,""),e.flags):n=new RegExp(r),t=n.test(this.value)}return t},email:function(e){var t=!0;return g(this,e)&&(t=/^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i.test(this.value)),t},alpha:function(e){var t=!0;return g(this,e)&&(t=/^[A-Za-z]+$/.test(this.value)),t},numeric:function(e){var t=!0;return g(this,e)&&(t=/^[0-9]+$/.test(this.value)),t},integer:function(e){var t=!0;return g(this,e)&&(t=/^-?[0-9]+$/.test(this.value)),t},real:function(e){var t=!0;return g(this,e)&&(t=/^-?([0-9]+(\.[0-9]+)?|\.[0-9]+)$/.test(this.value)),t},alphaNumeric:function(e){var t=!0;return g(this,e)&&(t=/^[0-9A-Za-z]+$/.test(this.value)),t},completelyFilled:function(e){var t=[];for(var n=0;n=e.min&&this.value.length<=e.max),t},digits:function(e){var t=!0;if(g(this,e)){var n=this.value.replace(/\s/g,""),r=n.split(/\./);t=!1,n.length>0&&(r.length==1&&(r[1]=""),e.integer>0?t=r[0].length<=e.integer:t=!0,e.fraction>0&&(t=t&&r[1].length<=e.fraction))}return t},past:function(e){var t=!0;if(g(this,e)){var n=y.call(this,e);t=n.dateToValidaten.dateToTestAgainst}return t},url:function(e){var t=!0;return g(this,e)&&(t=/^([a-z]([a-z]|\d|\+|-|\.)*):(\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?((\[(|(v[\da-f]{1,}\.(([a-z]|\d|-|\.|_|~)|[!\$&'\(\)\*\+,;=]|:)+))\])|((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=])*)(:\d*)?)(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*|(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)|((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)|((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)){0})(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(this.value)),t},step:function(e){var t=!0;if(g(this,e)){var n=parseFloat(this.value),r=parseFloat(e.max),i=parseFloat(e.min),s=parseFloat(e.value);t=n<=r&&n>=i&&n%s===0}return t},html5Required:function(e){return!this.validity.valueMissing},html5Email:w,html5URL:w,html5Number:w,html5DateTime:w,html5DateTimeLocal:w,html5Date:w,html5Month:w,html5Time:w,html5Week:w,html5Range:w,html5Tel:w,html5Color:w,html5Pattern:function(e){return!this.validity.patternMismatch},html5MaxLength:function(e){return!this.validity.tooLong},html5Min:function(e){return!this.validity.rowUnderflow},html5Max:function(e){return!this.validity.rowOverflow},html5Step:function(e){return!this.validity.stepMismatch}};return{Validator:d,init:p,wrapValidatorWithEmptyCheck:b,initializePublicValidators:h,compoundValidator:m,validate:E,runValidatorFor:U,interpolateConstraintDefaultMessage:W,createPublicValidator:v}}),function(e,t){typeof define=="function"&&define.amd?define("domain/CompositionGraph",t):(typeof e.regulaModules=="undefined"&&(e.regulaModules={}),e.regulaModules.CompositionGraph=t())}(this,function(){function n(n){var r=n.type,i=n.name,s=n.parent,o=typeof e[r]=="undefined"?{visited:!1,name:i,type:r,parents:[],children:[]}:e[r];s==null?t.children.push(o):(s.children.push(o),o.parents.push(s)),e[r]=o}function r(){var e={},n=function r(t,n){var i=typeof e[t.type]=="undefined"?{visited:t.visited,name:t.name,type:t.type,parents:[],children:[]}:e[t.type];n!==null&&i.parents.push(n);for(var s=0;s0&&(s={error:!0,message:n.generateExceptionMessage(e,o[t.constraintType],"You seem to have provided some optional or required parameters for @"+o[t.constraintType]+", but you are still missing the following "+u.length+" required parameter(s): "+i.explode(u,", ")),data:null}),s}function d(e,n){var r=t.getNodeByType(s[e]);r==null&&(t.addNode({type:s[e],name:e,parent:null}),r=t.getNodeByType(s[e]));for(var i=0;i0&&t.successful)t=c(e),n.push(t.data);return t.data=n,t}function c(e){var n={successful:!0,message:"",data:null},i=e.shift();return r(i).length==0&&(i=e.shift()),i=="@"?n=h(e):n={successful:!1,message:t.generateExceptionMessage(o,a,"Invalid constraint. Constraint definitions need to start with '@'")+" "+n.message,data:null},n}function h(e){var r={Between:"Range",Matches:"Pattern",Empty:"Blank",NotEmpty:"NotBlank",IsAlpha:"Alpha",IsNumeric:"Integer",IsAlphaNumeric:"AlphaNumeric"},i=p(e);if(i.successful){a=i.data,a=r[a]?r[a]:a;if(n.constraintDefinitions[a]){i=m(e);if(i.successful){i=n.verifyConstraintDefinition(o,a,i.data);if(i.successful){var s=i.data;i.data={element:o,constraintName:a,definedParameters:s}}}}else i={successful:!1,message:t.generateExceptionMessage(o,a,"I cannot find the specified constraint name. If this is a custom constraint, you need to define it before you bind to it")+" "+i.message,data:null}}else i={successful:!1,message:t.generateExceptionMessage(o,a,"Invalid constraint name in constraint definition")+" "+i.message,data:null};return i}function p(e){var n=r(e.shift()),i=d(n.charAt(0));if(i.successful){var s=1;while(s0&&i(n)==","&&s.successful)n.shift(),s=g(n),s.successful&&(e.put(u,s.data.name,s.data.value),r(i(n)).length==0&&n.shift());if(s.successful){var f=n.shift();r(f).length==0&&(f=n.shift()),f!=")"?s={successful:!1,message:t.generateExceptionMessage(o,a,"Cannot find matching closing ) in parameter list")+" "+s.message,data:null}:s.data=u}}else s={successful:!1,message:t.generateExceptionMessage(o,a,"Invalid parameter definition")+" "+s.message,data:null}}}else i(n)!==undefined&&i(n)!="@"&&(s={successful:!1,message:t.generateExceptionMessage(o,a,"Unexpected character '"+i(n)+"'"+" after constraint definition")+" "+s.message,data:null});return s}function g(e){var n=y(e);if(n.successful){var r=n.data,i=e.shift();i=="="?(n=b(e),n.successful?n.data={name:r,value:n.data}:n={successful:!1,message:t.generateExceptionMessage(o,a,"Invalid parameter value")+" "+n.message,data:null}):(e.unshift(i),n={successful:!1,message:t.generateExceptionMessage(o,a,"'=' expected after parameter name "+n.message),data:null})}else n={successful:!1,message:t.generateExceptionMessage(o,a,"Invalid parameter name. You might have unmatched parentheses")+" "+n.message,data:null};return n}function y(e){var n=r(e.shift());n.length==0&&(n=e.shift());var i={successful:!1,message:t.generateExceptionMessage(o,a,"Invalid starting character for parameter name. Can only include A-Z, a-z, and _"),data:null};if(typeof n!="undefined"){i=d(n.charAt(0));if(i.successful){var s=1;while(s0&&s.successful&&!u)i(e)=='"'?(u=!0,e.shift()):(s=k(e),r+=s.data);u||(s={successful:!1,message:t.generateExceptionMessage(o,a,"Unterminated string literal"),data:null})}else e.unshift(n),s={successful:!1,message:t.generateExceptionMessage(o,a,"Invalid quoted string"),data:null};return s.successful=s.successful&&u,s.data=r,s}function k(e){var t="",n=e.shift();return n=="\\"&&(t=e.shift()),{successful:!0,message:"",data:n+t}}function L(e){var n="",r=e.shift(),s={successful:!0,message:"",data:null};if(r=="/"){n=r;var u=!1;while(e.length>0&&s.successful&&!u)i(e)=="/"?(n+=e.shift(),u=!0):(s=k(e),n+=s.data);u||(s={successful:!1,message:t.generateExceptionMessage(o,a,"Unterminated regex literal"),data:null})}else e.unshift(r),s={successful:!1,message:t.generateExceptionMessage(o,a,"Not a regular expression"),data:null};return s.successful=s.successful&&u,s.data=n,s}function A(e){var n=e.shift(),i={successful:!0,message:"",data:null};return r(n)=="true"||r(n)=="false"?i={successful:!0,message:"",data:n==="true"}:(e.unshift(n),i={successful:!1,message:t.generateExceptionMessage(o,a,"Not a boolean"),data:null}),i}function O(e){var n=[],s=e.shift(),u={successful:!0,message:"",data:null};if(s=="["){r(i(e)).length==0&&e.shift(),i(e)=="]"?u={successful:!0,message:"",data:""}:u=M(e);if(u.successful){n.push(u.data),r(i(e)).length==0&&e.shift();while(e.length>0&&i(e)==","&&u.successful)e.shift(),u=M(e),n.push(u.data),r(i(e)).length==0&&e.shift();u.data=n,s=e.shift(),r(s).length==0&&e.shift(),s!="]"&&(u={successful:!1,message:t.generateExceptionMessage(o,a,"Cannot find matching closing ] in group definition")+" "+u.message,data:null})}else u={successful:!1,message:t.generateExceptionMessage(o,a,"Invalid group definition")+" "+u.message,data:null}}else e.unshift(s),u={successful:!1,message:t.generateExceptionMessage(o,a,"Not a valid group definition"),data:null};return u}function M(e){var n={successful:!0,message:"",data:""},i=r(e.shift());i.length==0&&(i=e.shift()),n=d(i.charAt(0));if(n.successful){var s=1;while(s0){var o=0;while(o0?h=t.deletedGroupIndices.pop():h=t.firstCustomGroupIndex++,t.Group[c]=h,t.ReverseGroup[h]=c,o[c]={}}o[c][n.id]||(o[c][n.id]={}),o[c][n.id][r]=u}if(i.constraintDefinitions[r].html5)if(n.getAttribute("type")!==null&&i.constraintDefinitions[r].inputType!==null&&n.getAttribute("type")!==i.constraintDefinitions[r].inputType)a={successful:!1,message:s.generateExceptionMessage(n,r,"Element type of "+n.getAttribute("type")+" conflicts with type of constraint @"+r+": "+i.constraintDefinitions[r].inputType),data:null};else{var p=i.constraintDefinitions[r].attribute,d=i.constraintDefinitions[r].inputType;(p!==null&&n.getAttribute(p)===null||d!==null&&n.getAttribute("type")===null)&&y(n,r,u)}return a}function y(e,t,n){if(t===i.ReverseConstraint[i.Constraint.HTML5Required])e.setAttribute("required","true");else{var r=i.constraintDefinitions[t];for(var s=0;s0&&!t)throw new s.Exception.IllegalArgumentException("Element with id "+r+" does not have any constraints bound to it. "+s.explodeParameters(e))}function w(e){var n=e.elementId,r=e.group,s=e.constraint,u=typeof o[t.ReverseGroup[t.Group.Default]][n]!="undefined";if(u&&typeof r!="undefined"&&typeof s=="undefined"){var a=t.ReverseGroup[r];u=typeof a!="undefined"&&typeof o[a][n]!="undefined"}else if(u&&typeof r=="undefined"&&typeof s!="undefined"){var f=i.ReverseConstraint[s];u=typeof f!="undefined"&&typeof o[t.ReverseGroup[t.Group.Default]][n][f]!="undefined"}else if(u&&typeof r!="undefined"&&typeof s!="undefined"){var a=t.ReverseGroup[r],f=i.ReverseConstraint[s];u=typeof a!="undefined"&&typeof f!="undefined"&&typeof o[a][n]!="undefined"&&typeof o[a][n][f]!="undefined"}return u}var o=null,u={};return{initializeBoundConstraints:a,resetBoundConstraints:f,getBoundConstraints:l,removeElementAndGroupFromBoundConstraintsIfEmpty:c,bindAfterParsing:p,bindHTML5ValidationConstraints:d,bindFromOptions:v,unbind:b,isBound:w}}),function(e,t){typeof define=="function"&&define.amd?define("regula",["utils/MapUtils","utils/DOMUtils","service/BindingService","service/ExceptionService","service/ConstraintService","service/ValidationService","service/GroupService"],t):(e.regula=t(e.regulaModules.MapUtils,e.regulaModules.DOMUtils,e.regulaModules.BindingService,e.regulaModules.ExceptionService,e.regulaModules.ConstraintService,e.regulaModules.ValidationService,e.regulaModules.GroupService),e.regula._modules=e.regulaModules,e.regulaModules=undefined)}(this,function(e,t,n,r,i,s,o){function f(t){e.iterateOverMap(t,function(e,t,n){typeof u[e]!="undefined"&&(u[e]=t)})}function l(e){var i={successful:!0,message:"",data:null};if(typeof e=="undefined"||!e)n.resetBoundConstraints(),u.enableHTML5Validation&&t.supportsHTML5Validation()&&(i=n.bindHTML5ValidationConstraints({element:null})),i.successful&&(i=n.bindAfterParsing({element:null}));else{var s=e.elements;if(typeof s=="undefined"||!s)u.enableHTML5Validation&&t.supportsHTML5Validation()&&typeof e.element!="undefined"&&e.element!==null&&(i=n.bindHTML5ValidationConstraints({element:e.element})),i.successful&&(i=n.bindFromOptions(e));else{var o=0;while(i.successful&&o0&&n.extend(!0,t,{elements:this.get()})),regula.bind(t),this},unbind:function(t){return this instanceof e&&(t||(t={}),this.get().length>0&&n.extend(!0,t,{elements:this.get()})),regula.unbind(t),this},isBound:function(t){return this instanceof e&&(t||(t={}),this.get().length>0&&n.extend(!0,t,{element:this.get(0)})),regula.isBound(t),this},validate:function(t){return this instanceof e&&(t||(t={}),this.get().length>0&&n.extend(!0,t,{elements:this.get()})),regula.validate(t)},custom:function(e){return regula.custom(e),this},compound:function(e){return regula.compound(e),this},override:function(e){return regula.override(e),this}};i.on=i.bind,i.off=i.unbind,n.fn.regula=t,n.regula=t}); + + +/** + * @module jQuery Form Plugin + * @author M. Alsup + * @see http://malsup.com/jquery/form/ + * @license MIT and GPL + * @version 3.51 + */ +!function(e){"use strict";"function"==typeof define&&define.amd?define(["../jquery"],e):e("undefined"!=typeof jQuery?jQuery:window.Zepto)}(function(e){"use strict";function t(t){var r=t.data;t.isDefaultPrevented()||(t.preventDefault(),e(t.target).ajaxSubmit(r))}function r(t){var r=t.target,a=e(r);if(!a.is("[type=submit],[type=image]")){var n=a.closest("[type=submit]");if(0===n.length)return;r=n[0]}var i=this;if(i.clk=r,"image"==r.type)if(void 0!==t.offsetX)i.clk_x=t.offsetX,i.clk_y=t.offsetY;else if("function"==typeof e.fn.offset){var o=a.offset();i.clk_x=t.pageX-o.left,i.clk_y=t.pageY-o.top}else i.clk_x=t.pageX-r.offsetLeft,i.clk_y=t.pageY-r.offsetTop;setTimeout(function(){i.clk=i.clk_x=i.clk_y=null},100)}function a(){if(e.fn.ajaxSubmit.debug){var t="[jquery.form] "+Array.prototype.join.call(arguments,"");window.console&&window.console.log?window.console.log(t):window.opera&&window.opera.postError&&window.opera.postError(t)}}var n={};n.fileapi=void 0!==e("").get(0).files,n.formdata=void 0!==window.FormData;var i=!!e.fn.prop;e.fn.attr2=function(){if(!i)return this.attr.apply(this,arguments);var e=this.prop.apply(this,arguments);return e&&e.jquery||"string"==typeof e?e:this.attr.apply(this,arguments)},e.fn.ajaxSubmit=function(t){function r(r){var a,n,i=e.param(r,t.traditional).split("&"),o=i.length,s=[];for(a=0;o>a;a++)i[a]=i[a].replace(/\+/g," "),n=i[a].split("="),s.push([decodeURIComponent(n[0]),decodeURIComponent(n[1])]);return s}function o(a){for(var n=new FormData,i=0;i').val(m.extraData[d].value).appendTo(w)[0]:e('').val(m.extraData[d]).appendTo(w)[0]);m.iframeTarget||v.appendTo("body"),g.attachEvent?g.attachEvent("onload",s):g.addEventListener("load",s,!1),setTimeout(t,15);try{w.submit()}catch(h){var x=document.createElement("form").submit;x.apply(w)}}finally{w.setAttribute("action",i),w.setAttribute("enctype",c),r?w.setAttribute("target",r):f.removeAttr("target"),e(l).remove()}}function s(t){if(!x.aborted&&!F){if(M=n(g),M||(a("cannot access response document"),t=k),t===D&&x)return x.abort("timeout"),void S.reject(x,"timeout");if(t==k&&x)return x.abort("server abort"),void S.reject(x,"error","server abort");if(M&&M.location.href!=m.iframeSrc||T){g.detachEvent?g.detachEvent("onload",s):g.removeEventListener("load",s,!1);var r,i="success";try{if(T)throw"timeout";var o="xml"==m.dataType||M.XMLDocument||e.isXMLDoc(M);if(a("isXml="+o),!o&&window.opera&&(null===M.body||!M.body.innerHTML)&&--O)return a("requeing onLoad callback, DOM not available"),void setTimeout(s,250);var u=M.body?M.body:M.documentElement;x.responseText=u?u.innerHTML:null,x.responseXML=M.XMLDocument?M.XMLDocument:M,o&&(m.dataType="xml"),x.getResponseHeader=function(e){var t={"content-type":m.dataType};return t[e.toLowerCase()]},u&&(x.status=Number(u.getAttribute("status"))||x.status,x.statusText=u.getAttribute("statusText")||x.statusText);var c=(m.dataType||"").toLowerCase(),l=/(json|script|text)/.test(c);if(l||m.textarea){var f=M.getElementsByTagName("textarea")[0];if(f)x.responseText=f.value,x.status=Number(f.getAttribute("status"))||x.status,x.statusText=f.getAttribute("statusText")||x.statusText;else if(l){var p=M.getElementsByTagName("pre")[0],h=M.getElementsByTagName("body")[0];p?x.responseText=p.textContent?p.textContent:p.innerText:h&&(x.responseText=h.textContent?h.textContent:h.innerText)}}else"xml"==c&&!x.responseXML&&x.responseText&&(x.responseXML=X(x.responseText));try{E=_(x,c,m)}catch(y){i="parsererror",x.error=r=y||i}}catch(y){a("error caught: ",y),i="error",x.error=r=y||i}x.aborted&&(a("upload aborted"),i=null),x.status&&(i=x.status>=200&&x.status<300||304===x.status?"success":"error"),"success"===i?(m.success&&m.success.call(m.context,E,"success",x),S.resolve(x.responseText,"success",x),d&&e.event.trigger("ajaxSuccess",[x,m])):i&&(void 0===r&&(r=x.statusText),m.error&&m.error.call(m.context,x,i,r),S.reject(x,"error",r),d&&e.event.trigger("ajaxError",[x,m,r])),d&&e.event.trigger("ajaxComplete",[x,m]),d&&!--e.active&&e.event.trigger("ajaxStop"),m.complete&&m.complete.call(m.context,x,i),F=!0,m.timeout&&clearTimeout(j),setTimeout(function(){m.iframeTarget?v.attr("src",m.iframeSrc):v.remove(),x.responseXML=null},100)}}}var c,l,m,d,p,v,g,x,y,b,T,j,w=f[0],S=e.Deferred();if(S.abort=function(e){x.abort(e)},r)for(l=0;l'),v.css({position:"absolute",top:"-1000px",left:"-1000px"})),g=v[0],x={aborted:0,responseText:null,responseXML:null,status:0,statusText:"n/a",getAllResponseHeaders:function(){},getResponseHeader:function(){},setRequestHeader:function(){},abort:function(t){var r="timeout"===t?"timeout":"aborted";a("aborting upload... "+r),this.aborted=1;try{g.contentWindow.document.execCommand&&g.contentWindow.document.execCommand("Stop")}catch(n){}v.attr("src",m.iframeSrc),x.error=r,m.error&&m.error.call(m.context,x,r,t),d&&e.event.trigger("ajaxError",[x,m,r]),m.complete&&m.complete.call(m.context,x,r)}},d=m.global,d&&0===e.active++&&e.event.trigger("ajaxStart"),d&&e.event.trigger("ajaxSend",[x,m]),m.beforeSend&&m.beforeSend.call(m.context,x,m)===!1)return m.global&&e.active--,S.reject(),S;if(x.aborted)return S.reject(),S;y=w.clk,y&&(b=y.name,b&&!y.disabled&&(m.extraData=m.extraData||{},m.extraData[b]=y.value,"image"==y.type&&(m.extraData[b+".x"]=w.clk_x,m.extraData[b+".y"]=w.clk_y)));var D=1,k=2,A=e("meta[name=csrf-token]").attr("content"),L=e("meta[name=csrf-param]").attr("content");L&&A&&(m.extraData=m.extraData||{},m.extraData[L]=A),m.forceSync?o():setTimeout(o,10);var E,M,F,O=50,X=e.parseXML||function(e,t){return window.ActiveXObject?(t=new ActiveXObject("Microsoft.XMLDOM"),t.async="false",t.loadXML(e)):t=(new DOMParser).parseFromString(e,"text/xml"),t&&t.documentElement&&"parsererror"!=t.documentElement.nodeName?t:null},C=e.parseJSON||function(e){return window.eval("("+e+")")},_=function(t,r,a){var n=t.getResponseHeader("content-type")||"",i="xml"===r||!r&&n.indexOf("xml")>=0,o=i?t.responseXML:t.responseText;return i&&"parsererror"===o.documentElement.nodeName&&e.error&&e.error("parsererror"),a&&a.dataFilter&&(o=a.dataFilter(o,r)),"string"==typeof o&&("json"===r||!r&&n.indexOf("json")>=0?o=C(o):("script"===r||!r&&n.indexOf("javascript")>=0)&&e.globalEval(o)),o};return S}if(!this.length)return a("ajaxSubmit: skipping submit process - no element selected"),this;var u,c,l,f=this;"function"==typeof t?t={success:t}:void 0===t&&(t={}),u=t.type||this.attr2("method"),c=t.url||this.attr2("action"),l="string"==typeof c?e.trim(c):"",l=l||window.location.href||"",l&&(l=(l.match(/^([^#]+)/)||[])[1]),t=e.extend(!0,{url:l,success:e.ajaxSettings.success,type:u||e.ajaxSettings.type,iframeSrc:/^https/i.test(window.location.href||"")?"javascript:false":"about:blank"},t);var m={};if(this.trigger("form-pre-serialize",[this,t,m]),m.veto)return a("ajaxSubmit: submit vetoed via form-pre-serialize trigger"),this;if(t.beforeSerialize&&t.beforeSerialize(this,t)===!1)return a("ajaxSubmit: submit aborted via beforeSerialize callback"),this;var d=t.traditional;void 0===d&&(d=e.ajaxSettings.traditional);var p,h=[],v=this.formToArray(t.semantic,h);if(t.data&&(t.extraData=t.data,p=e.param(t.data,d)),t.beforeSubmit&&t.beforeSubmit(v,this,t)===!1)return a("ajaxSubmit: submit aborted via beforeSubmit callback"),this;if(this.trigger("form-submit-validate",[v,this,t,m]),m.veto)return a("ajaxSubmit: submit vetoed via form-submit-validate trigger"),this;var g=e.param(v,d);p&&(g=g?g+"&"+p:p),"GET"==t.type.toUpperCase()?(t.url+=(t.url.indexOf("?")>=0?"&":"?")+g,t.data=null):t.data=g;var x=[];if(t.resetForm&&x.push(function(){f.resetForm()}),t.clearForm&&x.push(function(){f.clearForm(t.includeHidden)}),!t.dataType&&t.target){var y=t.success||function(){};x.push(function(r){var a=t.replaceTarget?"replaceWith":"html";e(t.target)[a](r).each(y,arguments)})}else t.success&&x.push(t.success);if(t.success=function(e,r,a){for(var n=t.context||this,i=0,o=x.length;o>i;i++)x[i].apply(n,[e,r,a||f,f])},t.error){var b=t.error;t.error=function(e,r,a){var n=t.context||this;b.apply(n,[e,r,a,f])}}if(t.complete){var T=t.complete;t.complete=function(e,r){var a=t.context||this;T.apply(a,[e,r,f])}}var j=e("input[type=file]:enabled",this).filter(function(){return""!==e(this).val()}),w=j.length>0,S="multipart/form-data",D=f.attr("enctype")==S||f.attr("encoding")==S,k=n.fileapi&&n.formdata;a("fileAPI :"+k);var A,L=(w||D)&&!k;t.iframe!==!1&&(t.iframe||L)?t.closeKeepAlive?e.get(t.closeKeepAlive,function(){A=s(v)}):A=s(v):A=(w||D)&&k?o(v):e.ajax(t),f.removeData("jqxhr").data("jqxhr",A);for(var E=0;Ec;c++)if(d=u[c],f=d.name,f&&!d.disabled)if(t&&o.clk&&"image"==d.type)o.clk==d&&(a.push({name:f,value:e(d).val(),type:d.type}),a.push({name:f+".x",value:o.clk_x},{name:f+".y",value:o.clk_y}));else if(m=e.fieldValue(d,!0),m&&m.constructor==Array)for(r&&r.push(d),l=0,h=m.length;h>l;l++)a.push({name:f,value:m[l]});else if(n.fileapi&&"file"==d.type){r&&r.push(d);var v=d.files;if(v.length)for(l=0;li;i++)r.push({name:a,value:n[i]});else null!==n&&"undefined"!=typeof n&&r.push({name:this.name,value:n})}}),e.param(r)},e.fn.fieldValue=function(t){for(var r=[],a=0,n=this.length;n>a;a++){var i=this[a],o=e.fieldValue(i,t);null===o||"undefined"==typeof o||o.constructor==Array&&!o.length||(o.constructor==Array?e.merge(r,o):r.push(o))}return r},e.fieldValue=function(t,r){var a=t.name,n=t.type,i=t.tagName.toLowerCase();if(void 0===r&&(r=!0),r&&(!a||t.disabled||"reset"==n||"button"==n||("checkbox"==n||"radio"==n)&&!t.checked||("submit"==n||"image"==n)&&t.form&&t.form.clk!=t||"select"==i&&-1==t.selectedIndex))return null;if("select"==i){var o=t.selectedIndex;if(0>o)return null;for(var s=[],u=t.options,c="select-one"==n,l=c?o+1:u.length,f=c?o:0;l>f;f++){var m=u[f];if(m.selected){var d=m.value;if(d||(d=m.attributes&&m.attributes.value&&!m.attributes.value.specified?m.text:m.value),c)return d;s.push(d)}}return s}return e(t).val()},e.fn.clearForm=function(t){return this.each(function(){e("input,select,textarea",this).clearFields(t)})},e.fn.clearFields=e.fn.clearInputs=function(t){var r=/^(?:color|date|datetime|email|month|number|password|range|search|tel|text|time|url|week)$/i;return this.each(function(){var a=this.type,n=this.tagName.toLowerCase();r.test(a)||"textarea"==n?this.value="":"checkbox"==a||"radio"==a?this.checked=!1:"select"==n?this.selectedIndex=-1:"file"==a?/MSIE/.test(navigator.userAgent)?e(this).replaceWith(e(this).clone(!0)):e(this).val(""):t&&(t===!0&&/hidden/.test(a)||"string"==typeof t&&e(this).is(t))&&(this.value="")})},e.fn.resetForm=function(){return this.each(function(){("function"==typeof this.reset||"object"==typeof this.reset&&!this.reset.nodeType)&&this.reset()})},e.fn.enable=function(e){return void 0===e&&(e=!0),this.each(function(){this.disabled=!e})},e.fn.selected=function(t){return void 0===t&&(t=!0),this.each(function(){var r=this.type;if("checkbox"==r||"radio"==r)this.checked=t;else if("option"==this.tagName.toLowerCase()){var a=e(this).parent("select");t&&a[0]&&"select-one"==a[0].type&&a.find("option").selected(!1),this.selected=t}})},e.fn.ajaxSubmit.debug=!1}); + +/** + * @module RD Range + * @author Roman Kholiavko + * @see http://cms.devoffice.com/coding-demo/marathoner/rd-range/documentation + * @version 1.0 + */ +(function(){!function(t,e,n){var o,i;return i="ontouchstart"in n,o=function(){function o(n,o){this.$element=t(n),this.options=t.extend(!0,{},this.Defaults,o),this.setClientOptions(this),this.createDOM(this),this.$pointer=t(n).find(".rd-range__pointer-1"),this.options.tooltip&&(this.$pointerTooltip=this.$pointer.find(".rd-range__pointer-tooltip"),this.$element.addClass("hasTooltip")),this.$line=t(n).find(".rd-range__line"),null!=t(n).attr("data-input")?this.$input=t(t(n).attr("data-input")):this.$input=t(this.Defaults.inputClassName),this.range&&(this.$pointer2=t(n).find(".rd-range__pointer-2"),null!=t(n).attr("data-input-2")?this.$input2=t(t(n).attr("data-input-2")):this.$input2=t(this.Defaults.inputClassName2),this.options.tooltip&&(this.$pointerTooltip2=this.$pointer2.find(".rd-range__pointer-tooltip"))),this.$doc=t(e),this.isMove=!1,this.initialization()}return o.prototype.Defaults={min:0,start:0,max:100,start2:0,step:1,minDiff:0,inputClassName:".rd-range-input-value",inputClassName2:".rd-range-input-value-2",tooltip:!1,callbacks:{onInit:!1,onChange:!1,onInputChange:!1,onMoveStart:!1,onMoveEnd:!1}},o.prototype.initialization=function(){var t;return t=this,t.setRange(t),t.applyHandlers(t),t.options.callbacks.onInit&&t.options.callbacks.onInit.call(this,t),t},o.prototype.createDOM=function(t){var e;e='
',t.options.tooltip&&(e+='
'),e+="
",t.range&&(e+='
',t.options.tooltip&&(e+='
'),e+="
"),t.$element.wrapInner('
'+e+'
')},o.prototype.setClientOptions=function(t){var e;e={min:t.$element.attr("data-min"),max:t.$element.attr("data-max"),step:t.$element.attr("data-step"),start:t.$element.data("start"),minDiff:t.$element.attr("data-min-diff"),precision:t.$element.attr("data-precision"),tooltip:t.$element.attr("data-tooltip")},t.options.start=[],(null!=e.start&&e.start.length>1||null!=t.options.start&&t.options.start.length>1)&&(t.range=!0),null!=e.min&&(t.options.min=Number(e.min)),null!=e.max&&(t.options.max=Number(e.max)),null!=e.start?t.options.start=e.start:t.options.start.push(t.options.min),t.currentValue=t.options.start[0],null!=e.step&&(t.options.step=Number(e.step)),null!=e.tooltip&&(t.options.tooltip=e.tooltip),null!=e.precision?t.options.precision=t.getNumDigitsAfterDecimalPlace(Number(e.precision)):t.options.precision=t.getNumDigitsAfterDecimalPlace(t.options.step),t.range&&(t.currentValue2=t.options.start[1],null!=e.minDiff?t.options.minDiff=Number(e.minDiff):null!=t.options.minDiff&&(t.options.minDiff=t.options.step))},o.prototype.setRange=function(t){return t.diff=t.options.max-t.options.min,t.delta=100*t.options.step/t.diff,t.currentPercentage=t.getPercentageByValue(t,t.currentValue),t.updatePointer1(t,t.currentPercentage,t.currentValue),t.range?(t.currentPercentage2=t.getPercentageByValue(t,t.currentValue2),t.updatePointer2(t,t.currentPercentage2,t.currentValue2)):void 0},o.prototype.applyHandlers=function(e){return e.$pointer.on(i?"touchstart":"mousedown",function(n){var o,r,a,u;if(!e.isMove)return e.isMove=!0,o=t(this),o.addClass("active"),a="touchmove"===n.type?n.originalEvent.targetTouches[0].pageX:n.pageX,r=e.getCoords(e.$element),u=e.getPercentage(e,a,r.left),e.options.callbacks.onMoveStart&&e.options.callbacks.onMoveStart.call(this,e),e.$doc.on(i?"touchmove":"mousemove",function(t){var n;return a="touchmove"===t.type?t.originalEvent.targetTouches[0].pageX:t.pageX,n=e.getPercentage(e,a,r.left),n!==u?(u=n,e.currentValue=e.getCurrentValue(e,u),e.range&&e.currentValue>=e.currentValue2-e.options.minDiff&&(n=e.checkPointer1Bounds(e)),e.updatePointer1(e,n,e.currentValue)):void 0}).on(i?"touchend":"mouseup",function(t){return setTimeout(function(){return e.isMove=!1},100),o.removeClass("active"),e.options.callbacks.onMoveEnd&&e.options.callbacks.onMoveEnd.call(this,e),i?e.$doc.off("touchmove"):e.$doc.off("mousemove"),e.$doc.off(t.type)}),!1}),"hidden"!==e.$input.attr("type")&&"readonly"!==e.$input.attr("readOnly")&&e.$input.on("keypress",function(t){return e.isAllowTyped(t.which)}).on("change",function(n){var o;return o=Math.abs(Number(t(this).val())),e.range&&(o>=e.currentValue2||o>e.currentValue2-e.options.minDiff)&&(e.checkPointer1Bounds(e),o=e.currentValue),oe.options.max&&(o=e.options.max),e.currentValue2=o,e.setRange(e),e.options.callbacks.onInputChange?e.options.callbacks.onInputChange.call(this,e):void 0})),e.$element.on("click",function(t){var n,o,i,r,a,u;if(!e.isMove)return a="touch"===t.type?t.originalEvent.targetTouches[0].pageX:t.pageX,r=e.getCoords(e.$element),u=e.getPercentage(e,a,r.left),n=e.getCurrentValue(e,u),e.range&&(o=Math.abs(+(u-e.currentPercentage)),i=Math.abs(+(u-e.currentPercentage2)),o>i)?(n<=e.currentValue+e.options.minDiff&&(u=e.checkPointer2Bounds(e),n=e.getCurrentValue(e,u)),e.updatePointer2(e,u,n),!1):(n>=e.currentValue2-e.options.minDiff&&(u=e.checkPointer1Bounds(e),n=e.getCurrentValue(e,u)),e.updatePointer1(e,u,n),!1)})},o.prototype.updatePointer1=function(t,e,n){t.currentPercentage=e,t.currentValue=n,t.updatePositions(t,t.$pointer,t.currentPercentage),t.updateValue(t),t.options.tooltip&&t.$pointerTooltip.html(t.currentValue)},o.prototype.updatePointer2=function(t,e,n){t.currentPercentage2=e,t.currentValue2=n,t.updatePositions(t,t.$pointer2,t.currentPercentage2),t.updateValue(t),t.options.tooltip&&t.$pointerTooltip2.html(t.currentValue2)},o.prototype.updateValue=function(t){t.options.callbacks.onChange&&t.options.callbacks.onChange.call(this,t),t.range&&(t.$input2.is("input")?t.$input2.val(t.currentValue2):t.$input2.html(t.currentValue2)),t.$input.is("input")?t.$input.val(t.currentValue):t.$input.html(t.currentValue)},o.prototype.checkPointer1Bounds=function(t){return t.currentValue=t.currentValue2-t.options.minDiff,t.getPercentageByValue(t,t.currentValue)},o.prototype.checkPointer2Bounds=function(t){return t.currentValue2=t.currentValue+t.options.minDiff,t.getPercentageByValue(t,t.currentValue2)},o.prototype.getPercentageByValue=function(t,e){return Math.round(100*(e-t.options.min)/(t.options.max-t.options.min))},o.prototype.getPercentage=function(t,e,n){var o;return o=(e-n)/t.$element.width()*100,o=Math.round(o/t.delta)*t.delta,Math.max(0,Math.min(100,o))},o.prototype.getCurrentValue=function(t,e){return+(t.options.min+Math.round(t.diff*e/100/t.options.step)*t.options.step).toFixed(t.options.precision)},o.prototype.getOffsetByPercentage=function(t,e){return t.$element.width()*e/100},o.prototype.updatePositions=function(t,e,n){var o;e.css("left",n+"%"),t.range?(o=t.currentPercentage2-t.currentPercentage,t.$line.css("left",t.currentPercentage+"%"),t.$line.css("width",o+"%")):t.$line.css("width",n+"%")},o.prototype.getCoords=function(t){return{top:t.offset().top+pageYOffset,left:t.offset().left+pageXOffset}},o.prototype.isAllowTyped=function(t){return 9!==t&&8!==t&&0!==t&&13!==t&&46!==t&&(48>t||t>57)?!1:!0},o.prototype.getNumDigitsAfterDecimalPlace=function(t){var e,n;return n=""+t,e=n.indexOf("."),0>e?0:n.substr(e+1).length},t.fn.extend({RDRange:function(e){return this.each(function(){var n;return n=t(this),n.data("RDRange")?void 0:n.data("RDRange",new o(this,e))})}}),n.RDRange=o,o}()}(window.jQuery,document,window),"undefined"!=typeof module&&null!==module?module.exports=window.RDRange:"function"==typeof define&&define.amd&&define(["jquery"],function(){"use strict";return window.RDRange})}).call(this); + +/** + * @module RDInputLabel + * @author Evgeniy Gusarov + * @license MIT + */ +(function(){!function(t,e,i){var s,n;return n=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent),isWebkit=/safari|chrome/i.test(navigator.userAgent),s=function(){function s(s,n){this.options=t.extend(!0,{},this.Defaults,n),this.$element=t(s).addClass("rd-input-label"),this.$target=t("#"+this.$element.attr("for")),this.$win=t(i),this.$doc=t(e),this.initialize()}return s.prototype.Defaults={callbacks:null},s.prototype.initialize=function(){return this.$target.on("input",t.proxy(this.change,this)).on("focus",t.proxy(this.focus,this)).on("blur",t.proxy(this.blur,this)).on("hover",t.proxy(this.hover,this)).parents("form").on("reset",t.proxy(this.reset,this)),this.change(),this.hover(),this},s.prototype.hover=function(){return isWebkit&&(this.$target.is(":-webkit-autofill")?this.$element.addClass("auto-fill"):this.$element.removeClass("auto-fill")),this},s.prototype.change=function(){return isWebkit&&(this.$target.is(":-webkit-autofill")?this.$element.addClass("auto-fill"):this.$element.removeClass("auto-fill")),""!==this.$target.val()?(this.$element.hasClass("focus")||this.focus(),this.$element.addClass("not-empty")):this.$element.removeClass("not-empty"),this},s.prototype.focus=function(){return this.$element.addClass("focus"),this},s.prototype.reset=function(){return setTimeout(t.proxy(this.blur,this)),this},s.prototype.blur=function(t){return""===this.$target.val()&&this.$element.removeClass("focus").removeClass("not-empty"),this},s}(),t.fn.extend({RDInputLabel:function(e){return this.each(function(){var i;return i=t(this),i.data("RDInputLabel")?void 0:i.data("RDInputLabel",new s(this,e))})}}),i.RDInputLabel=s}(window.jQuery,document,window),"undefined"!=typeof module&&null!==module?module.exports=window.RDInputLabel:"function"==typeof define&&define.amd&&define(["jquery"],function(){"use strict";return window.RDInputLabel})}).call(this); + + +/** + * @module Owl carousel + * @version 2.2.1 + * @author Bartosz Wojciechowski + * @license MIT + */ +!function(a,b,c,d){function e(b,c){this.settings=null,this.options=a.extend({},e.Defaults,c),this.$element=a(b),this._handlers={},this._plugins={},this._supress={},this._current=null,this._speed=null,this._coordinates=[],this._breakpoint=null,this._width=null,this._items=[],this._clones=[],this._mergers=[],this._widths=[],this._invalidated={},this._pipe=[],this._drag={time:null,target:null,pointer:null,stage:{start:null,current:null},direction:null},this._states={current:{},tags:{initializing:["busy"],animating:["busy"],dragging:["interacting"]}},a.each(["onResize","onThrottledResize"],a.proxy(function(b,c){this._handlers[c]=a.proxy(this[c],this)},this)),a.each(e.Plugins,a.proxy(function(a,b){this._plugins[a.charAt(0).toLowerCase()+a.slice(1)]=new b(this)},this)),a.each(e.Workers,a.proxy(function(b,c){this._pipe.push({filter:c.filter,run:a.proxy(c.run,this)})},this)),this.setup(),this.initialize()}e.Defaults={items:3,loop:!1,center:!1,rewind:!1,mouseDrag:!0,touchDrag:!0,pullDrag:!0,freeDrag:!1,margin:0,stagePadding:0,merge:!1,mergeFit:!0,autoWidth:!1,startPosition:0,rtl:!1,smartSpeed:250,fluidSpeed:!1,dragEndSpeed:!1,responsive:{},responsiveRefreshRate:200,responsiveBaseElement:b,fallbackEasing:"swing",info:!1,nestedItemSelector:!1,itemElement:"div",stageElement:"div",refreshClass:"owl-refresh",loadedClass:"owl-loaded",loadingClass:"owl-loading",rtlClass:"owl-rtl",responsiveClass:"owl-responsive",dragClass:"owl-drag",itemClass:"owl-item",stageClass:"owl-stage",stageOuterClass:"owl-stage-outer",grabClass:"owl-grab"},e.Width={Default:"default",Inner:"inner",Outer:"outer"},e.Type={Event:"event",State:"state"},e.Plugins={},e.Workers=[{filter:["width","settings"],run:function(){this._width=this.$element.width()}},{filter:["width","items","settings"],run:function(a){a.current=this._items&&this._items[this.relative(this._current)]}},{filter:["items","settings"],run:function(){this.$stage.children(".cloned").remove()}},{filter:["width","items","settings"],run:function(a){var b=this.settings.margin||"",c=!this.settings.autoWidth,d=this.settings.rtl,e={width:"auto","margin-left":d?b:"","margin-right":d?"":b};!c&&this.$stage.children().css(e),a.css=e}},{filter:["width","items","settings"],run:function(a){var b=(this.width()/this.settings.items).toFixed(3)-this.settings.margin,c=null,d=this._items.length,e=!this.settings.autoWidth,f=[];for(a.items={merge:!1,width:b};d--;)c=this._mergers[d],c=this.settings.mergeFit&&Math.min(c,this.settings.items)||c,a.items.merge=c>1||a.items.merge,f[d]=e?b*c:this._items[d].width();this._widths=f}},{filter:["items","settings"],run:function(){var b=[],c=this._items,d=this.settings,e=Math.max(2*d.items,4),f=2*Math.ceil(c.length/2),g=d.loop&&c.length?d.rewind?e:Math.max(e,f):0,h="",i="";for(g/=2;g--;)b.push(this.normalize(b.length/2,!0)),h+=c[b[b.length-1]][0].outerHTML,b.push(this.normalize(c.length-1-(b.length-1)/2,!0)),i=c[b[b.length-1]][0].outerHTML+i;this._clones=b,a(h).addClass("cloned").appendTo(this.$stage),a(i).addClass("cloned").prependTo(this.$stage)}},{filter:["width","items","settings"],run:function(){for(var a=this.settings.rtl?1:-1,b=this._clones.length+this._items.length,c=-1,d=0,e=0,f=[];++c",h)||this.op(b,"<",g)&&this.op(b,">",h))&&i.push(c);this.$stage.children(".active").removeClass("active"),this.$stage.children(":eq("+i.join("), :eq(")+")").addClass("active"),this.settings.center&&(this.$stage.children(".center").removeClass("center"),this.$stage.children().eq(this.current()).addClass("center"))}}],e.prototype.initialize=function(){if(this.enter("initializing"),this.trigger("initialize"),this.$element.toggleClass(this.settings.rtlClass,this.settings.rtl),this.settings.autoWidth&&!this.is("pre-loading")){var b,c,e;b=this.$element.find("img"),c=this.settings.nestedItemSelector?"."+this.settings.nestedItemSelector:d,e=this.$element.children(c).width(),b.length&&e<=0&&this.preloadAutoWidthImages(b)}this.$element.addClass(this.options.loadingClass),this.$stage=a("<"+this.settings.stageElement+' class="'+this.settings.stageClass+'"/>').wrap('
'),this.$element.append(this.$stage.parent()),this.replace(this.$element.children().not(this.$stage.parent())),this.$element.is(":visible")?this.refresh():this.invalidate("width"),this.$element.removeClass(this.options.loadingClass).addClass(this.options.loadedClass),this.registerEventHandlers(),this.leave("initializing"),this.trigger("initialized")},e.prototype.setup=function(){var b=this.viewport(),c=this.options.responsive,d=-1,e=null;c?(a.each(c,function(a){a<=b&&a>d&&(d=Number(a))}),e=a.extend({},this.options,c[d]),"function"==typeof e.stagePadding&&(e.stagePadding=e.stagePadding()),delete e.responsive,e.responsiveClass&&this.$element.attr("class",this.$element.attr("class").replace(new RegExp("("+this.options.responsiveClass+"-)\\S+\\s","g"),"$1"+d))):e=a.extend({},this.options),this.trigger("change",{property:{name:"settings",value:e}}),this._breakpoint=d,this.settings=e,this.invalidate("settings"),this.trigger("changed",{property:{name:"settings",value:this.settings}})},e.prototype.optionsLogic=function(){this.settings.autoWidth&&(this.settings.stagePadding=!1,this.settings.merge=!1)},e.prototype.prepare=function(b){var c=this.trigger("prepare",{content:b});return c.data||(c.data=a("<"+this.settings.itemElement+"/>").addClass(this.options.itemClass).append(b)),this.trigger("prepared",{content:c.data}),c.data},e.prototype.update=function(){for(var b=0,c=this._pipe.length,d=a.proxy(function(a){return this[a]},this._invalidated),e={};b0)&&this._pipe[b].run(e),b++;this._invalidated={},!this.is("valid")&&this.enter("valid")},e.prototype.width=function(a){switch(a=a||e.Width.Default){case e.Width.Inner:case e.Width.Outer:return this._width;default:return this._width-2*this.settings.stagePadding+this.settings.margin}},e.prototype.refresh=function(){this.enter("refreshing"),this.trigger("refresh"),this.setup(),this.optionsLogic(),this.$element.addClass(this.options.refreshClass),this.update(),this.$element.removeClass(this.options.refreshClass),this.leave("refreshing"),this.trigger("refreshed")},e.prototype.onThrottledResize=function(){b.clearTimeout(this.resizeTimer),this.resizeTimer=b.setTimeout(this._handlers.onResize,this.settings.responsiveRefreshRate)},e.prototype.onResize=function(){return!!this._items.length&&(this._width!==this.$element.width()&&(!!this.$element.is(":visible")&&(this.enter("resizing"),this.trigger("resize").isDefaultPrevented()?(this.leave("resizing"),!1):(this.invalidate("width"),this.refresh(),this.leave("resizing"),void this.trigger("resized")))))},e.prototype.registerEventHandlers=function(){a.support.transition&&this.$stage.on(a.support.transition.end+".owl.core",a.proxy(this.onTransitionEnd,this)),this.settings.responsive!==!1&&this.on(b,"resize",this._handlers.onThrottledResize),this.settings.mouseDrag&&(this.$element.addClass(this.options.dragClass),this.$stage.on("mousedown.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("dragstart.owl.core selectstart.owl.core",function(){return!1})),this.settings.touchDrag&&(this.$stage.on("touchstart.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("touchcancel.owl.core",a.proxy(this.onDragEnd,this)))},e.prototype.onDragStart=function(b){var d=null;3!==b.which&&(a.support.transform?(d=this.$stage.css("transform").replace(/.*\(|\)| /g,"").split(","),d={x:d[16===d.length?12:4],y:d[16===d.length?13:5]}):(d=this.$stage.position(),d={x:this.settings.rtl?d.left+this.$stage.width()-this.width()+this.settings.margin:d.left,y:d.top}),this.is("animating")&&(a.support.transform?this.animate(d.x):this.$stage.stop(),this.invalidate("position")),this.$element.toggleClass(this.options.grabClass,"mousedown"===b.type),this.speed(0),this._drag.time=(new Date).getTime(),this._drag.target=a(b.target),this._drag.stage.start=d,this._drag.stage.current=d,this._drag.pointer=this.pointer(b),a(c).on("mouseup.owl.core touchend.owl.core",a.proxy(this.onDragEnd,this)),a(c).one("mousemove.owl.core touchmove.owl.core",a.proxy(function(b){var d=this.difference(this._drag.pointer,this.pointer(b));a(c).on("mousemove.owl.core touchmove.owl.core",a.proxy(this.onDragMove,this)),Math.abs(d.x)0^this.settings.rtl?"left":"right";a(c).off(".owl.core"),this.$element.removeClass(this.options.grabClass),(0!==d.x&&this.is("dragging")||!this.is("valid"))&&(this.speed(this.settings.dragEndSpeed||this.settings.smartSpeed),this.current(this.closest(e.x,0!==d.x?f:this._drag.direction)),this.invalidate("position"),this.update(),this._drag.direction=f,(Math.abs(d.x)>3||(new Date).getTime()-this._drag.time>300)&&this._drag.target.one("click.owl.core",function(){return!1})),this.is("dragging")&&(this.leave("dragging"),this.trigger("dragged"))},e.prototype.closest=function(b,c){var d=-1,e=30,f=this.width(),g=this.coordinates();return this.settings.freeDrag||a.each(g,a.proxy(function(a,h){return"left"===c&&b>h-e&&bh-f-e&&b",g[a+1]||h-f)&&(d="left"===c?a+1:a),d===-1},this)),this.settings.loop||(this.op(b,">",g[this.minimum()])?d=b=this.minimum():this.op(b,"<",g[this.maximum()])&&(d=b=this.maximum())),d},e.prototype.animate=function(b){var c=this.speed()>0;this.is("animating")&&this.onTransitionEnd(),c&&(this.enter("animating"),this.trigger("translate")),a.support.transform3d&&a.support.transition?this.$stage.css({transform:"translate3d("+b+"px,0px,0px)",transition:this.speed()/1e3+"s"}):c?this.$stage.animate({left:b+"px"},this.speed(),this.settings.fallbackEasing,a.proxy(this.onTransitionEnd,this)):this.$stage.css({left:b+"px"})},e.prototype.is=function(a){return this._states.current[a]&&this._states.current[a]>0},e.prototype.current=function(a){if(a===d)return this._current;if(0===this._items.length)return d;if(a=this.normalize(a),this._current!==a){var b=this.trigger("change",{property:{name:"position",value:a}});b.data!==d&&(a=this.normalize(b.data)),this._current=a,this.invalidate("position"),this.trigger("changed",{property:{name:"position",value:this._current}})}return this._current},e.prototype.invalidate=function(b){return"string"===a.type(b)&&(this._invalidated[b]=!0,this.is("valid")&&this.leave("valid")),a.map(this._invalidated,function(a,b){return b})},e.prototype.reset=function(a){a=this.normalize(a),a!==d&&(this._speed=0,this._current=a,this.suppress(["translate","translated"]),this.animate(this.coordinates(a)),this.release(["translate","translated"]))},e.prototype.normalize=function(a,b){var c=this._items.length,e=b?0:this._clones.length;return!this.isNumeric(a)||c<1?a=d:(a<0||a>=c+e)&&(a=((a-e/2)%c+c)%c+e/2),a},e.prototype.relative=function(a){return a-=this._clones.length/2,this.normalize(a,!0)},e.prototype.maximum=function(a){var b,c,d,e=this.settings,f=this._coordinates.length;if(e.loop)f=this._clones.length/2+this._items.length-1;else if(e.autoWidth||e.merge){for(b=this._items.length,c=this._items[--b].width(),d=this.$element.width();b--&&(c+=this._items[b].width()+this.settings.margin,!(c>d)););f=b+1}else f=e.center?this._items.length-1:this._items.length-e.items;return a&&(f-=this._clones.length/2),Math.max(f,0)},e.prototype.minimum=function(a){return a?0:this._clones.length/2},e.prototype.items=function(a){return a===d?this._items.slice():(a=this.normalize(a,!0),this._items[a])},e.prototype.mergers=function(a){return a===d?this._mergers.slice():(a=this.normalize(a,!0),this._mergers[a])},e.prototype.clones=function(b){var c=this._clones.length/2,e=c+this._items.length,f=function(a){return a%2===0?e+a/2:c-(a+1)/2};return b===d?a.map(this._clones,function(a,b){return f(b)}):a.map(this._clones,function(a,c){return a===b?f(c):null})},e.prototype.speed=function(a){return a!==d&&(this._speed=a),this._speed},e.prototype.coordinates=function(b){var c,e=1,f=b-1;return b===d?a.map(this._coordinates,a.proxy(function(a,b){return this.coordinates(b)},this)):(this.settings.center?(this.settings.rtl&&(e=-1,f=b+1),c=this._coordinates[b],c+=(this.width()-c+(this._coordinates[f]||0))/2*e):c=this._coordinates[f]||0,c=Math.ceil(c))},e.prototype.duration=function(a,b,c){return 0===c?0:Math.min(Math.max(Math.abs(b-a),1),6)*Math.abs(c||this.settings.smartSpeed)},e.prototype.to=function(a,b){var c=this.current(),d=null,e=a-this.relative(c),f=(e>0)-(e<0),g=this._items.length,h=this.minimum(),i=this.maximum();this.settings.loop?(!this.settings.rewind&&Math.abs(e)>g/2&&(e+=f*-1*g),a=c+e,d=((a-h)%g+g)%g+h,d!==a&&d-e<=i&&d-e>0&&(c=d-e,a=d,this.reset(c))):this.settings.rewind?(i+=1,a=(a%i+i)%i):a=Math.max(h,Math.min(i,a)),this.speed(this.duration(c,a,b)),this.current(a),this.$element.is(":visible")&&this.update()},e.prototype.next=function(a){a=a||!1,this.to(this.relative(this.current())+1,a)},e.prototype.prev=function(a){a=a||!1,this.to(this.relative(this.current())-1,a)},e.prototype.onTransitionEnd=function(a){if(a!==d&&(a.stopPropagation(),(a.target||a.srcElement||a.originalTarget)!==this.$stage.get(0)))return!1;this.leave("animating"),this.trigger("translated")},e.prototype.viewport=function(){var d;return this.options.responsiveBaseElement!==b?d=a(this.options.responsiveBaseElement).width():b.innerWidth?d=b.innerWidth:c.documentElement&&c.documentElement.clientWidth?d=c.documentElement.clientWidth:console.warn("Can not detect viewport width."),d},e.prototype.replace=function(b){this.$stage.empty(),this._items=[],b&&(b=b instanceof jQuery?b:a(b)),this.settings.nestedItemSelector&&(b=b.find("."+this.settings.nestedItemSelector)),b.filter(function(){return 1===this.nodeType}).each(a.proxy(function(a,b){b=this.prepare(b),this.$stage.append(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)},this)),this.reset(this.isNumeric(this.settings.startPosition)?this.settings.startPosition:0),this.invalidate("items")},e.prototype.add=function(b,c){var e=this.relative(this._current);c=c===d?this._items.length:this.normalize(c,!0),b=b instanceof jQuery?b:a(b),this.trigger("add",{content:b,position:c}),b=this.prepare(b),0===this._items.length||c===this._items.length?(0===this._items.length&&this.$stage.append(b),0!==this._items.length&&this._items[c-1].after(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)):(this._items[c].before(b),this._items.splice(c,0,b),this._mergers.splice(c,0,1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)),this._items[e]&&this.reset(this._items[e].index()),this.invalidate("items"),this.trigger("added",{content:b,position:c})},e.prototype.remove=function(a){a=this.normalize(a,!0),a!==d&&(this.trigger("remove",{content:this._items[a],position:a}),this._items[a].remove(),this._items.splice(a,1),this._mergers.splice(a,1),this.invalidate("items"),this.trigger("removed",{content:null,position:a}))},e.prototype.preloadAutoWidthImages=function(b){b.each(a.proxy(function(b,c){this.enter("pre-loading"),c=a(c),a(new Image).one("load",a.proxy(function(a){c.attr("src",a.target.src),c.css("opacity",1),this.leave("pre-loading"),!this.is("pre-loading")&&!this.is("initializing")&&this.refresh()},this)).attr("src",c.attr("src")||c.attr("data-src")||c.attr("data-src-retina"))},this))},e.prototype.destroy=function(){this.$element.off(".owl.core"),this.$stage.off(".owl.core"),a(c).off(".owl.core"),this.settings.responsive!==!1&&(b.clearTimeout(this.resizeTimer),this.off(b,"resize",this._handlers.onThrottledResize));for(var d in this._plugins)this._plugins[d].destroy();this.$stage.children(".cloned").remove(),this.$stage.unwrap(),this.$stage.children().contents().unwrap(),this.$stage.children().unwrap(),this.$element.removeClass(this.options.refreshClass).removeClass(this.options.loadingClass).removeClass(this.options.loadedClass).removeClass(this.options.rtlClass).removeClass(this.options.dragClass).removeClass(this.options.grabClass).attr("class",this.$element.attr("class").replace(new RegExp(this.options.responsiveClass+"-\\S+\\s","g"),"")).removeData("owl.carousel")},e.prototype.op=function(a,b,c){var d=this.settings.rtl;switch(b){case"<":return d?a>c:a":return d?ac;case">=":return d?a<=c:a>=c;case"<=":return d?a>=c:a<=c}},e.prototype.on=function(a,b,c,d){a.addEventListener?a.addEventListener(b,c,d):a.attachEvent&&a.attachEvent("on"+b,c)},e.prototype.off=function(a,b,c,d){a.removeEventListener?a.removeEventListener(b,c,d):a.detachEvent&&a.detachEvent("on"+b,c)},e.prototype.trigger=function(b,c,d,f,g){var h={item:{count:this._items.length,index:this.current()}},i=a.camelCase(a.grep(["on",b,d],function(a){return a}).join("-").toLowerCase()),j=a.Event([b,"owl",d||"carousel"].join(".").toLowerCase(),a.extend({relatedTarget:this},h,c));return this._supress[b]||(a.each(this._plugins,function(a,b){b.onTrigger&&b.onTrigger(j)}),this.register({type:e.Type.Event,name:b}),this.$element.trigger(j),this.settings&&"function"==typeof this.settings[i]&&this.settings[i].call(this,j)),j},e.prototype.enter=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]===d&&(this._states.current[b]=0),this._states.current[b]++},this))},e.prototype.leave=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]--},this))},e.prototype.register=function(b){if(b.type===e.Type.Event){if(a.event.special[b.name]||(a.event.special[b.name]={}),!a.event.special[b.name].owl){var c=a.event.special[b.name]._default;a.event.special[b.name]._default=function(a){return!c||!c.apply||a.namespace&&a.namespace.indexOf("owl")!==-1?a.namespace&&a.namespace.indexOf("owl")>-1:c.apply(this,arguments)},a.event.special[b.name].owl=!0}}else b.type===e.Type.State&&(this._states.tags[b.name]?this._states.tags[b.name]=this._states.tags[b.name].concat(b.tags):this._states.tags[b.name]=b.tags,this._states.tags[b.name]=a.grep(this._states.tags[b.name],a.proxy(function(c,d){return a.inArray(c,this._states.tags[b.name])===d},this)))},e.prototype.suppress=function(b){a.each(b,a.proxy(function(a,b){this._supress[b]=!0},this))},e.prototype.release=function(b){a.each(b,a.proxy(function(a,b){delete this._supress[b]},this))},e.prototype.pointer=function(a){var c={x:null,y:null};return a=a.originalEvent||a||b.event,a=a.touches&&a.touches.length?a.touches[0]:a.changedTouches&&a.changedTouches.length?a.changedTouches[0]:a,a.pageX?(c.x=a.pageX,c.y=a.pageY):(c.x=a.clientX,c.y=a.clientY),c},e.prototype.isNumeric=function(a){return!isNaN(parseFloat(a))},e.prototype.difference=function(a,b){return{x:a.x-b.x,y:a.y-b.y}},a.fn.owlCarousel=function(b){var c=Array.prototype.slice.call(arguments,1);return this.each(function(){var d=a(this),f=d.data("owl.carousel");f||(f=new e(this,"object"==typeof b&&b),d.data("owl.carousel",f),a.each(["next","prev","to","destroy","refresh","replace","add","remove"],function(b,c){f.register({type:e.Type.Event,name:c}),f.$element.on(c+".owl.carousel.core",a.proxy(function(a){a.namespace&&a.relatedTarget!==this&&(this.suppress([c]),f[c].apply(this,[].slice.call(arguments,1)),this.release([c]))},f))})),"string"==typeof b&&"_"!==b.charAt(0)&&f[b].apply(f,c)})},a.fn.owlCarousel.Constructor=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._interval=null,this._visible=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoRefresh&&this.watch()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={autoRefresh:!0,autoRefreshInterval:500},e.prototype.watch=function(){this._interval||(this._visible=this._core.$element.is(":visible"),this._interval=b.setInterval(a.proxy(this.refresh,this),this._core.settings.autoRefreshInterval))},e.prototype.refresh=function(){this._core.$element.is(":visible")!==this._visible&&(this._visible=!this._visible,this._core.$element.toggleClass("owl-hidden",!this._visible),this._visible&&this._core.invalidate("width")&&this._core.refresh())},e.prototype.destroy=function(){var a,c;b.clearInterval(this._interval);for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoRefresh=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._loaded=[],this._handlers={"initialized.owl.carousel change.owl.carousel resized.owl.carousel":a.proxy(function(b){if(b.namespace&&this._core.settings&&this._core.settings.lazyLoad&&(b.property&&"position"==b.property.name||"initialized"==b.type))for(var c=this._core.settings,e=c.center&&Math.ceil(c.items/2)||c.items,f=c.center&&e*-1||0,g=(b.property&&b.property.value!==d?b.property.value:this._core.current())+f,h=this._core.clones().length,i=a.proxy(function(a,b){this.load(b)},this);f++-1||(e.each(a.proxy(function(c,d){var e,f=a(d),g=b.devicePixelRatio>1&&f.attr("data-src-retina")||f.attr("data-src");this._core.trigger("load",{element:f,url:g},"lazy"),f.is("img")?f.one("load.owl.lazy",a.proxy(function(){f.css("opacity",1),this._core.trigger("loaded",{element:f,url:g},"lazy")},this)).attr("src",g):(e=new Image,e.onload=a.proxy(function(){f.css({"background-image":'url("'+g+'")',opacity:"1"}),this._core.trigger("loaded",{element:f,url:g},"lazy")},this),e.src=g)},this)),this._loaded.push(d.get(0)))},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this._core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Lazy=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._handlers={"initialized.owl.carousel refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&this.update()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&"position"==a.property.name&&this.update()},this),"loaded.owl.lazy":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&a.element.closest("."+this._core.settings.itemClass).index()===this._core.current()&&this.update()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={autoHeight:!1,autoHeightClass:"owl-height"},e.prototype.update=function(){var b=this._core._current,c=b+this._core.settings.items,d=this._core.$stage.children().toArray().slice(b,c),e=[],f=0;a.each(d,function(b,c){e.push(a(c).height())}),f=Math.max.apply(null,e),this._core.$stage.parent().height(f).addClass(this._core.settings.autoHeightClass)},e.prototype.destroy=function(){var a,b;for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoHeight=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._videos={},this._playing=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.register({type:"state",name:"playing",tags:["interacting"]})},this),"resize.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.video&&this.isInFullScreen()&&a.preventDefault()},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.is("resizing")&&this._core.$stage.find(".cloned .owl-video-frame").remove()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"===a.property.name&&this._playing&&this.stop()},this),"prepared.owl.carousel":a.proxy(function(b){if(b.namespace){var c=a(b.content).find(".owl-video");c.length&&(c.css("display","none"),this.fetch(c,a(b.content)))}},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers),this._core.$element.on("click.owl.video",".owl-video-play-icon",a.proxy(function(a){this.play(a)},this))};e.Defaults={video:!1,videoHeight:!1,videoWidth:!1},e.prototype.fetch=function(a,b){var c=function(){return a.attr("data-vimeo-id")?"vimeo":a.attr("data-vzaar-id")?"vzaar":"youtube"}(),d=a.attr("data-vimeo-id")||a.attr("data-youtube-id")||a.attr("data-vzaar-id"),e=a.attr("data-width")||this._core.settings.videoWidth,f=a.attr("data-height")||this._core.settings.videoHeight,g=a.attr("href");if(!g)throw new Error("Missing video URL.");if(d=g.match(/(http:|https:|)\/\/(player.|www.|app.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com)|vzaar\.com)\/(video\/|videos\/|embed\/|channels\/.+\/|groups\/.+\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/),d[3].indexOf("youtu")>-1)c="youtube";else if(d[3].indexOf("vimeo")>-1)c="vimeo";else{if(!(d[3].indexOf("vzaar")>-1))throw new Error("Video URL not supported.");c="vzaar"}d=d[6],this._videos[g]={type:c,id:d,width:e,height:f},b.attr("data-video",g),this.thumbnail(a,this._videos[g])},e.prototype.thumbnail=function(b,c){var d,e,f,g=c.width&&c.height?'style="width:'+c.width+"px;height:"+c.height+'px;"':"",h=b.find("img"),i="src",j="",k=this._core.settings,l=function(a){e='
',d=k.lazyLoad?'
':'
',b.after(d),b.after(e)};if(b.wrap('
"),this._core.settings.lazyLoad&&(i="data-src",j="owl-lazy"),h.length)return l(h.attr(i)),h.remove(),!1;"youtube"===c.type?(f="//img.youtube.com/vi/"+c.id+"/hqdefault.jpg",l(f)):"vimeo"===c.type?a.ajax({type:"GET",url:"//vimeo.com/api/v2/video/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a[0].thumbnail_large,l(f)}}):"vzaar"===c.type&&a.ajax({type:"GET",url:"//vzaar.com/api/videos/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a.framegrab_url,l(f)}})},e.prototype.stop=function(){this._core.trigger("stop",null,"video"),this._playing.find(".owl-video-frame").remove(),this._playing.removeClass("owl-video-playing"),this._playing=null,this._core.leave("playing"),this._core.trigger("stopped",null,"video")},e.prototype.play=function(b){var c,d=a(b.target),e=d.closest("."+this._core.settings.itemClass),f=this._videos[e.attr("data-video")],g=f.width||"100%",h=f.height||this._core.$stage.height();this._playing||(this._core.enter("playing"),this._core.trigger("play",null,"video"),e=this._core.items(this._core.relative(e.index())),this._core.reset(e.index()),"youtube"===f.type?c='':"vimeo"===f.type?c='':"vzaar"===f.type&&(c=''),a('
'+c+"
").insertAfter(e.find(".owl-video")),this._playing=e.addClass("owl-video-playing"))},e.prototype.isInFullScreen=function(){var b=c.fullscreenElement||c.mozFullScreenElement||c.webkitFullscreenElement;return b&&a(b).parent().hasClass("owl-video-frame")},e.prototype.destroy=function(){var a,b;this._core.$element.off("click.owl.video");for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Video=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this.core=b,this.core.options=a.extend({},e.Defaults,this.core.options),this.swapping=!0,this.previous=d,this.next=d,this.handlers={"change.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&(this.previous=this.core.current(),this.next=a.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":a.proxy(function(a){a.namespace&&(this.swapping="translated"==a.type)},this),"translate.owl.carousel":a.proxy(function(a){a.namespace&&this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};e.Defaults={animateOut:!1,animateIn:!1},e.prototype.swap=function(){if(1===this.core.settings.items&&a.support.animation&&a.support.transition){this.core.speed(0);var b,c=a.proxy(this.clear,this),d=this.core.$stage.children().eq(this.previous),e=this.core.$stage.children().eq(this.next),f=this.core.settings.animateIn,g=this.core.settings.animateOut;this.core.current()!==this.previous&&(g&&(b=this.core.coordinates(this.previous)-this.core.coordinates(this.next),d.one(a.support.animation.end,c).css({left:b+"px"}).addClass("animated owl-animated-out").addClass(g)),f&&e.one(a.support.animation.end,c).addClass("animated owl-animated-in").addClass(f))}},e.prototype.clear=function(b){a(b.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.onTransitionEnd()},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)}, + a.fn.owlCarousel.Constructor.Plugins.Animate=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._timeout=null,this._paused=!1,this._handlers={"changed.owl.carousel":a.proxy(function(a){a.namespace&&"settings"===a.property.name?this._core.settings.autoplay?this.play():this.stop():a.namespace&&"position"===a.property.name&&this._core.settings.autoplay&&this._setAutoPlayInterval()},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoplay&&this.play()},this),"play.owl.autoplay":a.proxy(function(a,b,c){a.namespace&&this.play(b,c)},this),"stop.owl.autoplay":a.proxy(function(a){a.namespace&&this.stop()},this),"mouseover.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"mouseleave.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.play()},this),"touchstart.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"touchend.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this.play()},this)},this._core.$element.on(this._handlers),this._core.options=a.extend({},e.Defaults,this._core.options)};e.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},e.prototype.play=function(a,b){this._paused=!1,this._core.is("rotating")||(this._core.enter("rotating"),this._setAutoPlayInterval())},e.prototype._getNextTimeout=function(d,e){return this._timeout&&b.clearTimeout(this._timeout),b.setTimeout(a.proxy(function(){this._paused||this._core.is("busy")||this._core.is("interacting")||c.hidden||this._core.next(e||this._core.settings.autoplaySpeed)},this),d||this._core.settings.autoplayTimeout)},e.prototype._setAutoPlayInterval=function(){this._timeout=this._getNextTimeout()},e.prototype.stop=function(){this._core.is("rotating")&&(b.clearTimeout(this._timeout),this._core.leave("rotating"))},e.prototype.pause=function(){this._core.is("rotating")&&(this._paused=!0)},e.prototype.destroy=function(){var a,b;this.stop();for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.autoplay=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(b){this._core=b,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={"prepared.owl.carousel":a.proxy(function(b){b.namespace&&this._core.settings.dotsData&&this._templates.push('
'+a(b.content).find("[data-dot]").addBack("[data-dot]").attr("data-dot")+"
")},this),"added.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,0,this._templates.pop())},this),"remove.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,1)},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&this.draw()},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&!this._initialized&&(this._core.trigger("initialize",null,"navigation"),this.initialize(),this.update(),this.draw(),this._initialized=!0,this._core.trigger("initialized",null,"navigation"))},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._initialized&&(this._core.trigger("refresh",null,"navigation"),this.update(),this.draw(),this._core.trigger("refreshed",null,"navigation"))},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers)};e.Defaults={nav:!1,navText:["prev","next"],navSpeed:!1,navElement:"div",navContainer:!1,navContainerClass:"owl-nav",navClass:["owl-prev","owl-next"],slideBy:1,dotClass:"owl-dot",dotsClass:"owl-dots",dots:!0,dotsEach:!1,dotsData:!1,dotsSpeed:!1,dotsContainer:!1},e.prototype.initialize=function(){var b,c=this._core.settings;this._controls.$relative=(c.navContainer?a(c.navContainer):a("
").addClass(c.navContainerClass).appendTo(this.$element)).addClass("disabled"),this._controls.$previous=a("<"+c.navElement+">").addClass(c.navClass[0]).html(c.navText[0]).prependTo(this._controls.$relative).on("click",a.proxy(function(a){this.prev(c.navSpeed)},this)),this._controls.$next=a("<"+c.navElement+">").addClass(c.navClass[1]).html(c.navText[1]).appendTo(this._controls.$relative).on("click",a.proxy(function(a){this.next(c.navSpeed)},this)),c.dotsData||(this._templates=[a("
").addClass(c.dotClass).append(a("")).prop("outerHTML")]),this._controls.$absolute=(c.dotsContainer?a(c.dotsContainer):a("
").addClass(c.dotsClass).appendTo(this.$element)).addClass("disabled"),this._controls.$absolute.on("click","div",a.proxy(function(b){var d=a(b.target).parent().is(this._controls.$absolute)?a(b.target).index():a(b.target).parent().index();b.preventDefault(),this.to(d,c.dotsSpeed)},this));for(b in this._overrides)this._core[b]=a.proxy(this[b],this)},e.prototype.destroy=function(){var a,b,c,d;for(a in this._handlers)this.$element.off(a,this._handlers[a]);for(b in this._controls)this._controls[b].remove();for(d in this.overides)this._core[d]=this._overrides[d];for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},e.prototype.update=function(){var a,b,c,d=this._core.clones().length/2,e=d+this._core.items().length,f=this._core.maximum(!0),g=this._core.settings,h=g.center||g.autoWidth||g.dotsData?1:g.dotsEach||g.items;if("page"!==g.slideBy&&(g.slideBy=Math.min(g.slideBy,g.items)),g.dots||"page"==g.slideBy)for(this._pages=[],a=d,b=0,c=0;a=h||0===b){if(this._pages.push({start:Math.min(f,a-d),end:a-d+h-1}),Math.min(f,a-d)===f)break;b=0,++c}b+=this._core.mergers(this._core.relative(a))}},e.prototype.draw=function(){var b,c=this._core.settings,d=this._core.items().length<=c.items,e=this._core.relative(this._core.current()),f=c.loop||c.rewind;this._controls.$relative.toggleClass("disabled",!c.nav||d),c.nav&&(this._controls.$previous.toggleClass("disabled",!f&&e<=this._core.minimum(!0)),this._controls.$next.toggleClass("disabled",!f&&e>=this._core.maximum(!0))),this._controls.$absolute.toggleClass("disabled",!c.dots||d),c.dots&&(b=this._pages.length-this._controls.$absolute.children().length,c.dotsData&&0!==b?this._controls.$absolute.html(this._templates.join("")):b>0?this._controls.$absolute.append(new Array(b+1).join(this._templates[0])):b<0&&this._controls.$absolute.children().slice(b).remove(),this._controls.$absolute.find(".active").removeClass("active"),this._controls.$absolute.children().eq(a.inArray(this.current(),this._pages)).addClass("active"))},e.prototype.onTrigger=function(b){var c=this._core.settings;b.page={index:a.inArray(this.current(),this._pages),count:this._pages.length,size:c&&(c.center||c.autoWidth||c.dotsData?1:c.dotsEach||c.items)}},e.prototype.current=function(){var b=this._core.relative(this._core.current());return a.grep(this._pages,a.proxy(function(a,c){return a.start<=b&&a.end>=b},this)).pop()},e.prototype.getPosition=function(b){var c,d,e=this._core.settings;return"page"==e.slideBy?(c=a.inArray(this.current(),this._pages),d=this._pages.length,b?++c:--c,c=this._pages[(c%d+d)%d].start):(c=this._core.relative(this._core.current()),d=this._core.items().length,b?c+=e.slideBy:c-=e.slideBy),c},e.prototype.next=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!0),b)},e.prototype.prev=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!1),b)},e.prototype.to=function(b,c,d){var e;!d&&this._pages.length?(e=this._pages.length,a.proxy(this._overrides.to,this._core)(this._pages[(b%e+e)%e].start,c)):a.proxy(this._overrides.to,this._core)(b,c)},a.fn.owlCarousel.Constructor.Plugins.Navigation=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(c){this._core=c,this._hashes={},this.$element=this._core.$element,this._handlers={"initialized.owl.carousel":a.proxy(function(c){c.namespace&&"URLHash"===this._core.settings.startPosition&&a(b).trigger("hashchange.owl.navigation")},this),"prepared.owl.carousel":a.proxy(function(b){if(b.namespace){var c=a(b.content).find("[data-hash]").addBack("[data-hash]").attr("data-hash");if(!c)return;this._hashes[c]=b.content}},this),"changed.owl.carousel":a.proxy(function(c){if(c.namespace&&"position"===c.property.name){var d=this._core.items(this._core.relative(this._core.current())),e=a.map(this._hashes,function(a,b){return a===d?b:null}).join();if(!e||b.location.hash.slice(1)===e)return;b.location.hash=e}},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers),a(b).on("hashchange.owl.navigation",a.proxy(function(a){var c=b.location.hash.substring(1),e=this._core.$stage.children(),f=this._hashes[c]&&e.index(this._hashes[c]);f!==d&&f!==this._core.current()&&this._core.to(this._core.relative(f),!1,!0)},this))};e.Defaults={URLhashListener:!1},e.prototype.destroy=function(){var c,d;a(b).off("hashchange.owl.navigation");for(c in this._handlers)this._core.$element.off(c,this._handlers[c]);for(d in Object.getOwnPropertyNames(this))"function"!=typeof this[d]&&(this[d]=null)},a.fn.owlCarousel.Constructor.Plugins.Hash=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){function e(b,c){var e=!1,f=b.charAt(0).toUpperCase()+b.slice(1);return a.each((b+" "+h.join(f+" ")+f).split(" "),function(a,b){if(g[b]!==d)return e=!c||b,!1}),e}function f(a){return e(a,!0)}var g=a("").get(0).style,h="Webkit Moz O ms".split(" "),i={transition:{end:{WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd",transition:"transitionend"}},animation:{end:{WebkitAnimation:"webkitAnimationEnd",MozAnimation:"animationend",OAnimation:"oAnimationEnd",animation:"animationend"}}},j={csstransforms:function(){return!!e("transform")},csstransforms3d:function(){return!!e("perspective")},csstransitions:function(){return!!e("transition")},cssanimations:function(){return!!e("animation")}};j.csstransitions()&&(a.support.transition=new String(f("transition")),a.support.transition.end=i.transition.end[a.support.transition]),j.cssanimations()&&(a.support.animation=new String(f("animation")),a.support.animation.end=i.animation.end[a.support.animation]),j.csstransforms()&&(a.support.transform=new String(f("transform")),a.support.transform3d=j.csstransforms3d())}(window.Zepto||window.jQuery,window,document); + + +/** + * @module Isotope PACKAGED + * @license GPLv3 + * @see http://isotope.metafizzy.co + * @version 2.2.2 + */ +!function(t){function e(){}function i(t){function i(e){e.prototype.option||(e.prototype.option=function(e){t.isPlainObject(e)&&(this.options=t.extend(!0,this.options,e))})}function n(e,i){t.fn[e]=function(n){if("string"==typeof n){for(var s=o.call(arguments,1),a=0,u=this.length;u>a;a++){var p=this[a],h=t.data(p,e);if(h)if(t.isFunction(h[n])&&"_"!==n.charAt(0)){var f=h[n].apply(h,s);if(void 0!==f)return f}else r("no such method '"+n+"' for "+e+" instance");else r("cannot call methods on "+e+" prior to initialization; attempted to call '"+n+"'")}return this}return this.each(function(){var o=t.data(this,e);o?(o.option(n),o._init()):(o=new i(this,n),t.data(this,e,o))})}}if(t){var r="undefined"==typeof console?e:function(t){console.error(t)};return t.bridget=function(t,e){i(e),n(t,e)},t.bridget}}var o=Array.prototype.slice;"function"==typeof define&&define.amd?define("jquery-bridget/jquery.bridget",["jquery"],i):i("object"==typeof exports?require("jquery"):t.jQuery)}(window),function(t){function e(e){var i=t.event;return i.target=i.target||i.srcElement||e,i}var i=document.documentElement,o=function(){};i.addEventListener?o=function(t,e,i){t.addEventListener(e,i,!1)}:i.attachEvent&&(o=function(t,i,o){t[i+o]=o.handleEvent?function(){var i=e(t);o.handleEvent.call(o,i)}:function(){var i=e(t);o.call(t,i)},t.attachEvent("on"+i,t[i+o])});var n=function(){};i.removeEventListener?n=function(t,e,i){t.removeEventListener(e,i,!1)}:i.detachEvent&&(n=function(t,e,i){t.detachEvent("on"+e,t[e+i]);try{delete t[e+i]}catch(o){t[e+i]=void 0}});var r={bind:o,unbind:n};"function"==typeof define&&define.amd?define("eventie/eventie",r):"object"==typeof exports?module.exports=r:t.eventie=r}(window),function(){"use strict";function t(){}function e(t,e){for(var i=t.length;i--;)if(t[i].listener===e)return i;return-1}function i(t){return function(){return this[t].apply(this,arguments)}}var o=t.prototype,n=this,r=n.EventEmitter;o.getListeners=function(t){var e,i,o=this._getEvents();if(t instanceof RegExp){e={};for(i in o)o.hasOwnProperty(i)&&t.test(i)&&(e[i]=o[i])}else e=o[t]||(o[t]=[]);return e},o.flattenListeners=function(t){var e,i=[];for(e=0;en;n++)if(e=i[n]+t,"string"==typeof o[e])return e}}var i="Webkit Moz ms Ms O".split(" "),o=document.documentElement.style;"function"==typeof define&&define.amd?define("get-style-property/get-style-property",[],function(){return e}):"object"==typeof exports?module.exports=e:t.getStyleProperty=e}(window),function(t,e){function i(t){var e=parseFloat(t);return-1===t.indexOf("%")&&!isNaN(e)&&e}function o(){for(var t={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},e=0,i=s.length;i>e;e++)t[s[e]]=0;return t}function n(e){function n(){if(!f){f=!0;var o=t.getComputedStyle;if(u=function(){var t=o?function(t){return o(t,null)}:function(t){return t.currentStyle};return function(e){var i=t(e);return i||r("Style returned "+i+". Are you running this code in a hidden iframe on Firefox? See http://bit.ly/getsizebug1"),i}}(),p=e("boxSizing")){var n=document.createElement("div");n.style.width="200px",n.style.padding="1px 2px 3px 4px",n.style.borderStyle="solid",n.style.borderWidth="1px 2px 3px 4px",n.style[p]="border-box";var s=document.body||document.documentElement;s.appendChild(n);var a=u(n);h=200===i(a.width),s.removeChild(n)}}}function a(e,i){if(t.getComputedStyle||-1===i.indexOf("%"))return i;var o=e.style,n=o.left,r=e.runtimeStyle,s=r&&r.left;return s&&(r.left=e.currentStyle.left),o.left=i,i=o.pixelLeft,o.left=n,s&&(r.left=s),i}var u,p,h,f=!1;return function(t){if(n(),"string"==typeof t&&(t=document.querySelector(t)),t&&"object"==typeof t&&t.nodeType){var e=u(t);if("none"===e.display)return o();var r={};r.width=t.offsetWidth,r.height=t.offsetHeight;for(var f=r.isBorderBox=!(!p||!e[p]||"border-box"!==e[p]),l=0,d=s.length;d>l;l++){var c=s[l],y=e[c];y=a(t,y);var m=parseFloat(y);r[c]=isNaN(m)?0:m}var g=r.paddingLeft+r.paddingRight,v=r.paddingTop+r.paddingBottom,_=r.marginLeft+r.marginRight,I=r.marginTop+r.marginBottom,z=r.borderLeftWidth+r.borderRightWidth,L=r.borderTopWidth+r.borderBottomWidth,x=f&&h,E=i(e.width);!1!==E&&(r.width=E+(x?0:g+z));var b=i(e.height);return!1!==b&&(r.height=b+(x?0:v+L)),r.innerWidth=r.width-(g+z),r.innerHeight=r.height-(v+L),r.outerWidth=r.width+_,r.outerHeight=r.height+I,r}}}var r="undefined"==typeof console?function(){}:function(t){console.error(t)},s=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"];"function"==typeof define&&define.amd?define("get-size/get-size",["get-style-property/get-style-property"],n):"object"==typeof exports?module.exports=n(require("desandro-get-style-property")):t.getSize=n(t.getStyleProperty)}(window),function(t){function e(t){"function"==typeof t&&(e.isReady?t():s.push(t))}function i(t){var i="readystatechange"===t.type&&"complete"!==r.readyState;e.isReady||i||o()}function o(){e.isReady=!0;for(var t=0,i=s.length;i>t;t++)(0,s[t])()}function n(n){return"complete"===r.readyState?o():(n.bind(r,"DOMContentLoaded",i),n.bind(r,"readystatechange",i),n.bind(t,"load",i)),e}var r=t.document,s=[];e.isReady=!1,"function"==typeof define&&define.amd?define("doc-ready/doc-ready",["eventie/eventie"],n):"object"==typeof exports?module.exports=n(require("eventie")):t.docReady=n(t.eventie)}(window),function(t){"use strict";function e(t,e){return t[n](e)}function i(t){t.parentNode||document.createDocumentFragment().appendChild(t)}var o,n=function(){if(t.matches)return"matches";if(t.matchesSelector)return"matchesSelector";for(var e=["webkit","moz","ms","o"],i=0,o=e.length;o>i;i++){var n=e[i]+"MatchesSelector";if(t[n])return n}}();if(n){var r=e(document.createElement("div"),"div");o=r?e:function(t,o){return i(t),e(t,o)}}else o=function(t,e){i(t);for(var o=t.parentNode.querySelectorAll(e),n=0,r=o.length;r>n;n++)if(o[n]===t)return!0;return!1};"function"==typeof define&&define.amd?define("matches-selector/matches-selector",[],function(){return o}):"object"==typeof exports?module.exports=o:window.matchesSelector=o}(Element.prototype),function(t,e){"use strict";"function"==typeof define&&define.amd?define("fizzy-ui-utils/utils",["doc-ready/doc-ready","matches-selector/matches-selector"],function(i,o){return e(t,i,o)}):"object"==typeof exports?module.exports=e(t,require("doc-ready"),require("desandro-matches-selector")):t.fizzyUIUtils=e(t,t.docReady,t.matchesSelector)}(window,function(t,e,i){var o={};o.extend=function(t,e){for(var i in e)t[i]=e[i];return t},o.modulo=function(t,e){return(t%e+e)%e};var n=Object.prototype.toString;o.isArray=function(t){return"[object Array]"==n.call(t)},o.makeArray=function(t){var e=[];if(o.isArray(t))e=t;else if(t&&"number"==typeof t.length)for(var i=0,n=t.length;n>i;i++)e.push(t[i]);else e.push(t);return e},o.indexOf=Array.prototype.indexOf?function(t,e){return t.indexOf(e)}:function(t,e){for(var i=0,o=t.length;o>i;i++)if(t[i]===e)return i;return-1},o.removeFrom=function(t,e){var i=o.indexOf(t,e);-1!=i&&t.splice(i,1)},o.isElement="function"==typeof HTMLElement||"object"==typeof HTMLElement?function(t){return t instanceof HTMLElement}:function(t){return t&&"object"==typeof t&&1==t.nodeType&&"string"==typeof t.nodeName},o.setText=function(){var t;return function(e,i){e[t=t||(void 0!==document.documentElement.textContent?"textContent":"innerText")]=i}}(),o.getParent=function(t,e){for(;t!=document.body;)if(t=t.parentNode,i(t,e))return t},o.getQueryElement=function(t){return"string"==typeof t?document.querySelector(t):t},o.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},o.filterFindElements=function(t,e){for(var n=[],r=0,s=(t=o.makeArray(t)).length;s>r;r++){var a=t[r];if(o.isElement(a))if(e){i(a,e)&&n.push(a);for(var u=a.querySelectorAll(e),p=0,h=u.length;h>p;p++)n.push(u[p])}else n.push(a)}return n},o.debounceMethod=function(t,e,i){var o=t.prototype[e],n=e+"Timeout";t.prototype[e]=function(){var t=this[n];t&&clearTimeout(t);var e=arguments,r=this;this[n]=setTimeout(function(){o.apply(r,e),delete r[n]},i||100)}},o.toDashed=function(t){return t.replace(/(.)([A-Z])/g,function(t,e,i){return e+"-"+i}).toLowerCase()};var r=t.console;return o.htmlInit=function(i,n){e(function(){for(var e=o.toDashed(n),s=document.querySelectorAll(".js-"+e),a="data-"+e+"-options",u=0,p=s.length;p>u;u++){var h,f=s[u],l=f.getAttribute(a);try{h=l&&JSON.parse(l)}catch(t){r&&r.error("Error parsing "+a+" on "+f.nodeName.toLowerCase()+(f.id?"#"+f.id:"")+": "+t);continue}var d=new i(f,h),c=t.jQuery;c&&c.data(f,n,d)}})},o}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("outlayer/item",["eventEmitter/EventEmitter","get-size/get-size","get-style-property/get-style-property","fizzy-ui-utils/utils"],function(i,o,n,r){return e(t,i,o,n,r)}):"object"==typeof exports?module.exports=e(t,require("wolfy87-eventemitter"),require("get-size"),require("desandro-get-style-property"),require("fizzy-ui-utils")):(t.Outlayer={},t.Outlayer.Item=e(t,t.EventEmitter,t.getSize,t.getStyleProperty,t.fizzyUIUtils))}(window,function(t,e,i,o,n){"use strict";function r(t){for(var e in t)return!1;return null,!0}function s(t,e){t&&(this.element=t,this.layout=e,this.position={x:0,y:0},this._create())}var a=t.getComputedStyle,u=a?function(t){return a(t,null)}:function(t){return t.currentStyle},p=o("transition"),h=o("transform"),f=p&&h,l=!!o("perspective"),d={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"otransitionend",transition:"transitionend"}[p],c=["transform","transition","transitionDuration","transitionProperty"],y=function(){for(var t={},e=0,i=c.length;i>e;e++){var n=c[e],r=o(n);r&&r!==n&&(t[n]=r)}return t}();n.extend(s.prototype,e.prototype),s.prototype._create=function(){this._transn={ingProperties:{},clean:{},onEnd:{}},this.css({position:"absolute"})},s.prototype.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},s.prototype.getSize=function(){this.size=i(this.element)},s.prototype.css=function(t){var e=this.element.style;for(var i in t)e[y[i]||i]=t[i]},s.prototype.getPosition=function(){var t=u(this.element),e=this.layout.options,i=e.isOriginLeft,o=e.isOriginTop,n=t[i?"left":"right"],r=t[o?"top":"bottom"],s=this.layout.size,a=-1!=n.indexOf("%")?parseFloat(n)/100*s.width:parseInt(n,10),p=-1!=r.indexOf("%")?parseFloat(r)/100*s.height:parseInt(r,10);a=isNaN(a)?0:a,p=isNaN(p)?0:p,a-=i?s.paddingLeft:s.paddingRight,p-=o?s.paddingTop:s.paddingBottom,this.position.x=a,this.position.y=p},s.prototype.layoutPosition=function(){var t=this.layout.size,e=this.layout.options,i={},o=e.isOriginLeft?"paddingLeft":"paddingRight",n=e.isOriginLeft?"left":"right",r=e.isOriginLeft?"right":"left",s=this.position.x+t[o];i[n]=this.getXValue(s),i[r]="";var a=e.isOriginTop?"paddingTop":"paddingBottom",u=e.isOriginTop?"top":"bottom",p=e.isOriginTop?"bottom":"top",h=this.position.y+t[a];i[u]=this.getYValue(h),i[p]="",this.css(i),this.emitEvent("layout",[this])},s.prototype.getXValue=function(t){var e=this.layout.options;return e.percentPosition&&!e.isHorizontal?t/this.layout.size.width*100+"%":t+"px"},s.prototype.getYValue=function(t){var e=this.layout.options;return e.percentPosition&&e.isHorizontal?t/this.layout.size.height*100+"%":t+"px"},s.prototype._transitionTo=function(t,e){this.getPosition();var i=this.position.x,o=this.position.y,n=parseInt(t,10),r=parseInt(e,10),s=n===this.position.x&&r===this.position.y;if(this.setPosition(t,e),!s||this.isTransitioning){var a=t-i,u=e-o,p={};p.transform=this.getTranslate(a,u),this.transition({to:p,onTransitionEnd:{transform:this.layoutPosition},isCleaning:!0})}else this.layoutPosition()},s.prototype.getTranslate=function(t,e){var i=this.layout.options;return t=i.isOriginLeft?t:-t,e=i.isOriginTop?e:-e,l?"translate3d("+t+"px, "+e+"px, 0)":"translate("+t+"px, "+e+"px)"},s.prototype.goTo=function(t,e){this.setPosition(t,e),this.layoutPosition()},s.prototype.moveTo=f?s.prototype._transitionTo:s.prototype.goTo,s.prototype.setPosition=function(t,e){this.position.x=parseInt(t,10),this.position.y=parseInt(e,10)},s.prototype._nonTransition=function(t){this.css(t.to),t.isCleaning&&this._removeStyles(t.to);for(var e in t.onTransitionEnd)t.onTransitionEnd[e].call(this)},s.prototype._transition=function(t){if(parseFloat(this.layout.options.transitionDuration)){var e=this._transn;for(var i in t.onTransitionEnd)e.onEnd[i]=t.onTransitionEnd[i];for(i in t.to)e.ingProperties[i]=!0,t.isCleaning&&(e.clean[i]=!0);if(t.from){this.css(t.from);this.element.offsetHeight;null}this.enableTransition(t.to),this.css(t.to),this.isTransitioning=!0}else this._nonTransition(t)};var m="opacity,"+(y.transform||"transform").replace(/([A-Z])/g,function(t){return"-"+t.toLowerCase()});s.prototype.enableTransition=function(){this.isTransitioning||(this.css({transitionProperty:m,transitionDuration:this.layout.options.transitionDuration}),this.element.addEventListener(d,this,!1))},s.prototype.transition=s.prototype[p?"_transition":"_nonTransition"],s.prototype.onwebkitTransitionEnd=function(t){this.ontransitionend(t)},s.prototype.onotransitionend=function(t){this.ontransitionend(t)};var g={"-webkit-transform":"transform","-moz-transform":"transform","-o-transform":"transform"};s.prototype.ontransitionend=function(t){if(t.target===this.element){var e=this._transn,i=g[t.propertyName]||t.propertyName;delete e.ingProperties[i],r(e.ingProperties)&&this.disableTransition(),i in e.clean&&(this.element.style[t.propertyName]="",delete e.clean[i]),i in e.onEnd&&(e.onEnd[i].call(this),delete e.onEnd[i]),this.emitEvent("transitionEnd",[this])}},s.prototype.disableTransition=function(){this.removeTransitionStyles(),this.element.removeEventListener(d,this,!1),this.isTransitioning=!1},s.prototype._removeStyles=function(t){var e={};for(var i in t)e[i]="";this.css(e)};var v={transitionProperty:"",transitionDuration:""};return s.prototype.removeTransitionStyles=function(){this.css(v)},s.prototype.removeElem=function(){this.element.parentNode.removeChild(this.element),this.css({display:""}),this.emitEvent("remove",[this])},s.prototype.remove=function(){if(p&&parseFloat(this.layout.options.transitionDuration)){var t=this;this.once("transitionEnd",function(){t.removeElem()}),this.hide()}else this.removeElem()},s.prototype.reveal=function(){delete this.isHidden,this.css({display:""});var t=this.layout.options,e={};e[this.getHideRevealTransitionEndProperty("visibleStyle")]=this.onRevealTransitionEnd,this.transition({from:t.hiddenStyle,to:t.visibleStyle,isCleaning:!0,onTransitionEnd:e})},s.prototype.onRevealTransitionEnd=function(){this.isHidden||this.emitEvent("reveal")},s.prototype.getHideRevealTransitionEndProperty=function(t){var e=this.layout.options[t];if(e.opacity)return"opacity";for(var i in e)return i},s.prototype.hide=function(){this.isHidden=!0,this.css({display:""});var t=this.layout.options,e={};e[this.getHideRevealTransitionEndProperty("hiddenStyle")]=this.onHideTransitionEnd,this.transition({from:t.visibleStyle,to:t.hiddenStyle,isCleaning:!0,onTransitionEnd:e})},s.prototype.onHideTransitionEnd=function(){this.isHidden&&(this.css({display:"none"}),this.emitEvent("hide"))},s.prototype.destroy=function(){this.css({position:"",left:"",right:"",top:"",bottom:"",transition:"",transform:""})},s}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("outlayer/outlayer",["eventie/eventie","eventEmitter/EventEmitter","get-size/get-size","fizzy-ui-utils/utils","./item"],function(i,o,n,r,s){return e(t,i,o,n,r,s)}):"object"==typeof exports?module.exports=e(t,require("eventie"),require("wolfy87-eventemitter"),require("get-size"),require("fizzy-ui-utils"),require("./item")):t.Outlayer=e(t,t.eventie,t.EventEmitter,t.getSize,t.fizzyUIUtils,t.Outlayer.Item)}(window,function(t,e,i,o,n,r){"use strict";function s(t,e){var i=n.getQueryElement(t);if(i){this.element=i,u&&(this.$element=u(this.element)),this.options=n.extend({},this.constructor.defaults),this.option(e);var o=++h;this.element.outlayerGUID=o,f[o]=this,this._create(),this.options.isInitLayout&&this.layout()}else a&&a.error("Bad element for "+this.constructor.namespace+": "+(i||t))}var a=t.console,u=t.jQuery,p=function(){},h=0,f={};return s.namespace="outlayer",s.Item=r,s.defaults={containerStyle:{position:"relative"},isInitLayout:!0,isOriginLeft:!0,isOriginTop:!0,isResizeBound:!0,isResizingContainer:!0,transitionDuration:"0.4s",hiddenStyle:{opacity:0,transform:"scale(0.001)"},visibleStyle:{opacity:1,transform:"scale(1)"}},n.extend(s.prototype,i.prototype),s.prototype.option=function(t){n.extend(this.options,t)},s.prototype._create=function(){this.reloadItems(),this.stamps=[],this.stamp(this.options.stamp),n.extend(this.element.style,this.options.containerStyle),this.options.isResizeBound&&this.bindResize()},s.prototype.reloadItems=function(){this.items=this._itemize(this.element.children)},s.prototype._itemize=function(t){for(var e=this._filterFindItemElements(t),i=this.constructor.Item,o=[],n=0,r=e.length;r>n;n++){var s=new i(e[n],this);o.push(s)}return o},s.prototype._filterFindItemElements=function(t){return n.filterFindElements(t,this.options.itemSelector)},s.prototype.getItemElements=function(){for(var t=[],e=0,i=this.items.length;i>e;e++)t.push(this.items[e].element);return t},s.prototype.layout=function(){this._resetLayout(),this._manageStamps();var t=void 0!==this.options.isLayoutInstant?this.options.isLayoutInstant:!this._isLayoutInited;this.layoutItems(this.items,t),this._isLayoutInited=!0},s.prototype._init=s.prototype.layout,s.prototype._resetLayout=function(){this.getSize()},s.prototype.getSize=function(){this.size=o(this.element)},s.prototype._getMeasurement=function(t,e){var i,r=this.options[t];r?("string"==typeof r?i=this.element.querySelector(r):n.isElement(r)&&(i=r),this[t]=i?o(i)[e]:r):this[t]=0},s.prototype.layoutItems=function(t,e){t=this._getItemsForLayout(t),this._layoutItems(t,e),this._postLayout()},s.prototype._getItemsForLayout=function(t){for(var e=[],i=0,o=t.length;o>i;i++){var n=t[i];n.isIgnored||e.push(n)}return e},s.prototype._layoutItems=function(t,e){if(this._emitCompleteOnItems("layout",t),t&&t.length){for(var i=[],o=0,n=t.length;n>o;o++){var r=t[o],s=this._getItemLayoutPosition(r);s.item=r,s.isInstant=e||r.isLayoutInstant,i.push(s)}this._processLayoutQueue(i)}},s.prototype._getItemLayoutPosition=function(){return{x:0,y:0}},s.prototype._processLayoutQueue=function(t){for(var e=0,i=t.length;i>e;e++){var o=t[e];this._positionItem(o.item,o.x,o.y,o.isInstant)}},s.prototype._positionItem=function(t,e,i,o){o?t.goTo(e,i):t.moveTo(e,i)},s.prototype._postLayout=function(){this.resizeContainer()},s.prototype.resizeContainer=function(){if(this.options.isResizingContainer){var t=this._getContainerSize();t&&(this._setContainerMeasure(t.width,!0),this._setContainerMeasure(t.height,!1))}},s.prototype._getContainerSize=p,s.prototype._setContainerMeasure=function(t,e){if(void 0!==t){var i=this.size;i.isBorderBox&&(t+=e?i.paddingLeft+i.paddingRight+i.borderLeftWidth+i.borderRightWidth:i.paddingBottom+i.paddingTop+i.borderTopWidth+i.borderBottomWidth),t=Math.max(t,0),this.element.style[e?"width":"height"]=t+"px"}},s.prototype._emitCompleteOnItems=function(t,e){function i(){o.dispatchEvent(t+"Complete",null,[e])}var o=this,n=e.length;if(e&&n)for(var r=0,s=0,a=e.length;a>s;s++)e[s].once(t,function(){++r===n&&i()});else i()},s.prototype.dispatchEvent=function(t,e,i){var o=e?[e].concat(i):i;if(this.emitEvent(t,o),u)if(this.$element=this.$element||u(this.element),e){var n=u.Event(e);n.type=t,this.$element.trigger(n,i)}else this.$element.trigger(t,i)},s.prototype.ignore=function(t){var e=this.getItem(t);e&&(e.isIgnored=!0)},s.prototype.unignore=function(t){var e=this.getItem(t);e&&delete e.isIgnored},s.prototype.stamp=function(t){if(t=this._find(t)){this.stamps=this.stamps.concat(t);for(var e=0,i=t.length;i>e;e++){var o=t[e];this.ignore(o)}}},s.prototype.unstamp=function(t){if(t=this._find(t))for(var e=0,i=t.length;i>e;e++){var o=t[e];n.removeFrom(this.stamps,o),this.unignore(o)}},s.prototype._find=function(t){return t?("string"==typeof t&&(t=this.element.querySelectorAll(t)),t=n.makeArray(t)):void 0},s.prototype._manageStamps=function(){if(this.stamps&&this.stamps.length){this._getBoundingRect();for(var t=0,e=this.stamps.length;e>t;t++){var i=this.stamps[t];this._manageStamp(i)}}},s.prototype._getBoundingRect=function(){var t=this.element.getBoundingClientRect(),e=this.size;this._boundingRect={left:t.left+e.paddingLeft+e.borderLeftWidth,top:t.top+e.paddingTop+e.borderTopWidth,right:t.right-(e.paddingRight+e.borderRightWidth),bottom:t.bottom-(e.paddingBottom+e.borderBottomWidth)}},s.prototype._manageStamp=p,s.prototype._getElementOffset=function(t){var e=t.getBoundingClientRect(),i=this._boundingRect,n=o(t);return{left:e.left-i.left-n.marginLeft,top:e.top-i.top-n.marginTop,right:i.right-e.right-n.marginRight,bottom:i.bottom-e.bottom-n.marginBottom}},s.prototype.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},s.prototype.bindResize=function(){this.isResizeBound||(e.bind(t,"resize",this),this.isResizeBound=!0)},s.prototype.unbindResize=function(){this.isResizeBound&&e.unbind(t,"resize",this),this.isResizeBound=!1},s.prototype.onresize=function(){this.resizeTimeout&&clearTimeout(this.resizeTimeout);var t=this;this.resizeTimeout=setTimeout(function(){t.resize(),delete t.resizeTimeout},100)},s.prototype.resize=function(){this.isResizeBound&&this.needsResizeLayout()&&this.layout()},s.prototype.needsResizeLayout=function(){var t=o(this.element);return this.size&&t&&t.innerWidth!==this.size.innerWidth},s.prototype.addItems=function(t){var e=this._itemize(t);return e.length&&(this.items=this.items.concat(e)),e},s.prototype.appended=function(t){var e=this.addItems(t);e.length&&(this.layoutItems(e,!0),this.reveal(e))},s.prototype.prepended=function(t){var e=this._itemize(t);if(e.length){var i=this.items.slice(0);this.items=e.concat(i),this._resetLayout(),this._manageStamps(),this.layoutItems(e,!0),this.reveal(e),this.layoutItems(i)}},s.prototype.reveal=function(t){this._emitCompleteOnItems("reveal",t);for(var e=t&&t.length,i=0;e&&e>i;i++)t[i].reveal()},s.prototype.hide=function(t){this._emitCompleteOnItems("hide",t);for(var e=t&&t.length,i=0;e&&e>i;i++)t[i].hide()},s.prototype.revealItemElements=function(t){var e=this.getItems(t);this.reveal(e)},s.prototype.hideItemElements=function(t){var e=this.getItems(t);this.hide(e)},s.prototype.getItem=function(t){for(var e=0,i=this.items.length;i>e;e++){var o=this.items[e];if(o.element===t)return o}},s.prototype.getItems=function(t){for(var e=[],i=0,o=(t=n.makeArray(t)).length;o>i;i++){var r=t[i],s=this.getItem(r);s&&e.push(s)}return e},s.prototype.remove=function(t){var e=this.getItems(t);if(this._emitCompleteOnItems("remove",e),e&&e.length)for(var i=0,o=e.length;o>i;i++){var r=e[i];r.remove(),n.removeFrom(this.items,r)}},s.prototype.destroy=function(){var t=this.element.style;t.height="",t.position="",t.width="";for(var e=0,i=this.items.length;i>e;e++)this.items[e].destroy();this.unbindResize();var o=this.element.outlayerGUID;delete f[o],delete this.element.outlayerGUID,u&&u.removeData(this.element,this.constructor.namespace)},s.data=function(t){var e=(t=n.getQueryElement(t))&&t.outlayerGUID;return e&&f[e]},s.create=function(t,e){function i(){s.apply(this,arguments)}return Object.create?i.prototype=Object.create(s.prototype):n.extend(i.prototype,s.prototype),i.prototype.constructor=i,i.defaults=n.extend({},s.defaults),n.extend(i.defaults,e),i.prototype.settings={},i.namespace=t,i.data=s.data,i.Item=function(){r.apply(this,arguments)},i.Item.prototype=new r,n.htmlInit(i,t),u&&u.bridget&&u.bridget(t,i),i},s.Item=r,s}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("isotope/js/item",["outlayer/outlayer"],e):"object"==typeof exports?module.exports=e(require("outlayer")):(t.Isotope=t.Isotope||{},t.Isotope.Item=e(t.Outlayer))}(window,function(t){"use strict";function e(){t.Item.apply(this,arguments)}(e.prototype=new t.Item)._create=function(){this.id=this.layout.itemGUID++,t.Item.prototype._create.call(this),this.sortData={}},e.prototype.updateSortData=function(){if(!this.isIgnored){this.sortData.id=this.id,this.sortData["original-order"]=this.id,this.sortData.random=Math.random();var t=this.layout.options.getSortData,e=this.layout._sorters;for(var i in t){var o=e[i];this.sortData[i]=o(this.element,this)}}};var i=e.prototype.destroy;return e.prototype.destroy=function(){i.apply(this,arguments),this.css({display:""})},e}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("isotope/js/layout-mode",["get-size/get-size","outlayer/outlayer"],e):"object"==typeof exports?module.exports=e(require("get-size"),require("outlayer")):(t.Isotope=t.Isotope||{},t.Isotope.LayoutMode=e(t.getSize,t.Outlayer))}(window,function(t,e){"use strict";function i(t){this.isotope=t,t&&(this.options=t.options[this.namespace],this.element=t.element,this.items=t.filteredItems,this.size=t.size)}return function(){for(var t=["_resetLayout","_getItemLayoutPosition","_manageStamp","_getContainerSize","_getElementOffset","needsResizeLayout"],o=0,n=t.length;n>o;o++){var r=t[o];i.prototype[r]=function(t){return function(){return e.prototype[t].apply(this.isotope,arguments)}}(r)}}(),i.prototype.needsVerticalResizeLayout=function(){var e=t(this.isotope.element);return this.isotope.size&&e&&e.innerHeight!=this.isotope.size.innerHeight},i.prototype._getMeasurement=function(){this.isotope._getMeasurement.apply(this,arguments)},i.prototype.getColumnWidth=function(){this.getSegmentSize("column","Width")},i.prototype.getRowHeight=function(){this.getSegmentSize("row","Height")},i.prototype.getSegmentSize=function(t,e){var i=t+e,o="outer"+e;if(this._getMeasurement(i,o),!this[i]){var n=this.getFirstItemSize();this[i]=n&&n[o]||this.isotope.size["inner"+e]}},i.prototype.getFirstItemSize=function(){var e=this.isotope.filteredItems[0];return e&&e.element&&t(e.element)},i.prototype.layout=function(){this.isotope.layout.apply(this.isotope,arguments)},i.prototype.getSize=function(){this.isotope.getSize(),this.size=this.isotope.size},i.modes={},i.create=function(t,e){function o(){i.apply(this,arguments)}return o.prototype=new i,e&&(o.options=e),o.prototype.namespace=t,i.modes[t]=o,o},i}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("masonry/masonry",["outlayer/outlayer","get-size/get-size","fizzy-ui-utils/utils"],e):"object"==typeof exports?module.exports=e(require("outlayer"),require("get-size"),require("fizzy-ui-utils")):t.Masonry=e(t.Outlayer,t.getSize,t.fizzyUIUtils)}(window,function(t,e,i){var o=t.create("masonry");return o.prototype._resetLayout=function(){this.getSize(),this._getMeasurement("columnWidth","outerWidth"),this._getMeasurement("gutter","outerWidth"),this.measureColumns();var t=this.cols;for(this.colYs=[];t--;)this.colYs.push(0);this.maxY=0},o.prototype.measureColumns=function(){if(this.getContainerWidth(),!this.columnWidth){var t=this.items[0],i=t&&t.element;this.columnWidth=i&&e(i).outerWidth||this.containerWidth}var o=this.columnWidth+=this.gutter,n=this.containerWidth+this.gutter,r=n/o,s=o-n%o,a=s&&1>s?"round":"floor";r=Math[a](r),this.cols=Math.max(r,1)},o.prototype.getContainerWidth=function(){var t=this.options.isFitWidth?this.element.parentNode:this.element,i=e(t);this.containerWidth=i&&i.innerWidth},o.prototype._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth%this.columnWidth,o=e&&1>e?"round":"ceil",n=Math[o](t.size.outerWidth/this.columnWidth);n=Math.min(n,this.cols);for(var r=this._getColGroup(n),s=Math.min.apply(Math,r),a=i.indexOf(r,s),u={x:this.columnWidth*a,y:s},p=s+t.size.outerHeight,h=this.cols+1-r.length,f=0;h>f;f++)this.colYs[a+f]=p;return u},o.prototype._getColGroup=function(t){if(2>t)return this.colYs;for(var e=[],i=this.cols+1-t,o=0;i>o;o++){var n=this.colYs.slice(o,o+t);e[o]=Math.max.apply(Math,n)}return e},o.prototype._manageStamp=function(t){var i=e(t),o=this._getElementOffset(t),n=this.options.isOriginLeft?o.left:o.right,r=n+i.outerWidth,s=Math.floor(n/this.columnWidth);s=Math.max(0,s);var a=Math.floor(r/this.columnWidth);a-=r%this.columnWidth?0:1,a=Math.min(this.cols-1,a);for(var u=(this.options.isOriginTop?o.top:o.bottom)+i.outerHeight,p=s;a>=p;p++)this.colYs[p]=Math.max(u,this.colYs[p])},o.prototype._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var t={height:this.maxY};return this.options.isFitWidth&&(t.width=this._getContainerFitWidth()),t},o.prototype._getContainerFitWidth=function(){for(var t=0,e=this.cols;--e&&0===this.colYs[e];)t++;return(this.cols-t)*this.columnWidth-this.gutter},o.prototype.needsResizeLayout=function(){var t=this.containerWidth;return this.getContainerWidth(),t!==this.containerWidth},o}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("isotope/js/layout-modes/masonry",["../layout-mode","masonry/masonry"],e):"object"==typeof exports?module.exports=e(require("../layout-mode"),require("masonry-layout")):e(t.Isotope.LayoutMode,t.Masonry)}(window,function(t,e){"use strict";var i=t.create("masonry"),o=i.prototype._getElementOffset,n=i.prototype.layout,r=i.prototype._getMeasurement;(function(t,e){for(var i in e)t[i]=e[i]})(i.prototype,e.prototype),i.prototype._getElementOffset=o,i.prototype.layout=n,i.prototype._getMeasurement=r;var s=i.prototype.measureColumns;i.prototype.measureColumns=function(){this.items=this.isotope.filteredItems,s.call(this)};var a=i.prototype._manageStamp;return i.prototype._manageStamp=function(){this.options.isOriginLeft=this.isotope.options.isOriginLeft,this.options.isOriginTop=this.isotope.options.isOriginTop,a.apply(this,arguments)},i}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("isotope/js/layout-modes/fit-rows",["../layout-mode"],e):"object"==typeof exports?module.exports=e(require("../layout-mode")):e(t.Isotope.LayoutMode)}(window,function(t){"use strict";var e=t.create("fitRows");return e.prototype._resetLayout=function(){this.x=0,this.y=0,this.maxY=0,this._getMeasurement("gutter","outerWidth")},e.prototype._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth+this.gutter,i=this.isotope.size.innerWidth+this.gutter;0!==this.x&&e+this.x>i&&(this.x=0,this.y=this.maxY);var o={x:this.x,y:this.y};return this.maxY=Math.max(this.maxY,this.y+t.size.outerHeight),this.x+=e,o},e.prototype._getContainerSize=function(){return{height:this.maxY}},e}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("isotope/js/layout-modes/vertical",["../layout-mode"],e):"object"==typeof exports?module.exports=e(require("../layout-mode")):e(t.Isotope.LayoutMode)}(window,function(t){"use strict";var e=t.create("vertical",{horizontalAlignment:0});return e.prototype._resetLayout=function(){this.y=0},e.prototype._getItemLayoutPosition=function(t){t.getSize();var e=(this.isotope.size.innerWidth-t.size.outerWidth)*this.options.horizontalAlignment,i=this.y;return this.y+=t.size.outerHeight,{x:e,y:i}},e.prototype._getContainerSize=function(){return{height:this.y}},e}),function(t,e){"use strict";"function"==typeof define&&define.amd?define(["outlayer/outlayer","get-size/get-size","matches-selector/matches-selector","fizzy-ui-utils/utils","isotope/js/item","isotope/js/layout-mode","isotope/js/layout-modes/masonry","isotope/js/layout-modes/fit-rows","isotope/js/layout-modes/vertical"],function(i,o,n,r,s,a){return e(t,i,o,n,r,s,a)}):"object"==typeof exports?module.exports=e(t,require("outlayer"),require("get-size"),require("desandro-matches-selector"),require("fizzy-ui-utils"),require("./item"),require("./layout-mode"),require("./layout-modes/masonry"),require("./layout-modes/fit-rows"),require("./layout-modes/vertical")):t.Isotope=e(t,t.Outlayer,t.getSize,t.matchesSelector,t.fizzyUIUtils,t.Isotope.Item,t.Isotope.LayoutMode)}(window,function(t,e,i,o,n,r,s){function a(t,e){return function(i,o){for(var n=0,r=t.length;r>n;n++){var s=t[n],a=i.sortData[s],u=o.sortData[s];if(a>u||u>a){var p=(void 0!==e[s]?e[s]:e)?1:-1;return(a>u?1:-1)*p}}return 0}}var u=t.jQuery,p=String.prototype.trim?function(t){return t.trim()}:function(t){return t.replace(/^\s+|\s+$/g,"")},h=document.documentElement.textContent?function(t){return t.textContent}:function(t){return t.innerText},f=e.create("isotope",{layoutMode:"masonry",isJQueryFiltering:!0,sortAscending:!0});f.Item=r,f.LayoutMode=s,f.prototype._create=function(){this.itemGUID=0,this._sorters={},this._getSorters(),e.prototype._create.call(this),this.modes={},this.filteredItems=this.items,this.sortHistory=["original-order"];for(var t in s.modes)this._initLayoutMode(t)},f.prototype.reloadItems=function(){this.itemGUID=0,e.prototype.reloadItems.call(this)},f.prototype._itemize=function(){for(var t=e.prototype._itemize.apply(this,arguments),i=0,o=t.length;o>i;i++)t[i].id=this.itemGUID++;return this._updateItemsSortData(t),t},f.prototype._initLayoutMode=function(t){var e=s.modes[t],i=this.options[t]||{};this.options[t]=e.options?n.extend(e.options,i):i,this.modes[t]=new e(this)},f.prototype.layout=function(){return!this._isLayoutInited&&this.options.isInitLayout?void this.arrange():void this._layout()},f.prototype._layout=function(){var t=this._getIsInstant();this._resetLayout(),this._manageStamps(),this.layoutItems(this.filteredItems,t),this._isLayoutInited=!0},f.prototype.arrange=function(t){function e(){o.reveal(i.needReveal),o.hide(i.needHide)}this.option(t),this._getIsInstant();var i=this._filter(this.items);this.filteredItems=i.matches;var o=this;this._bindArrangeComplete(),this._isInstant?this._noTransition(e):e(),this._sort(),this._layout()},f.prototype._init=f.prototype.arrange,f.prototype._getIsInstant=function(){var t=void 0!==this.options.isLayoutInstant?this.options.isLayoutInstant:!this._isLayoutInited;return this._isInstant=t,t},f.prototype._bindArrangeComplete=function(){function t(){e&&i&&o&&n.dispatchEvent("arrangeComplete",null,[n.filteredItems])}var e,i,o,n=this;this.once("layoutComplete",function(){e=!0,t()}),this.once("hideComplete",function(){i=!0,t()}),this.once("revealComplete",function(){o=!0,t()})},f.prototype._filter=function(t){var e=this.options.filter;e=e||"*";for(var i=[],o=[],n=[],r=this._getFilterTest(e),s=0,a=t.length;a>s;s++){var u=t[s];if(!u.isIgnored){var p=r(u);p&&i.push(u),p&&u.isHidden?o.push(u):p||u.isHidden||n.push(u)}}return{matches:i,needReveal:o,needHide:n}},f.prototype._getFilterTest=function(t){return u&&this.options.isJQueryFiltering?function(e){return u(e.element).is(t)}:"function"==typeof t?function(e){return t(e.element)}:function(e){return o(e.element,t)}},f.prototype.updateSortData=function(t){var e;t?(t=n.makeArray(t),e=this.getItems(t)):e=this.items,this._getSorters(),this._updateItemsSortData(e)},f.prototype._getSorters=function(){var t=this.options.getSortData;for(var e in t){var i=t[e];this._sorters[e]=l(i)}},f.prototype._updateItemsSortData=function(t){for(var e=t&&t.length,i=0;e&&e>i;i++)t[i].updateSortData()};var l=function(){function t(t,e){return t?function(e){return e.getAttribute(t)}:function(t){var i=t.querySelector(e);return i&&h(i)}}return function(e){if("string"!=typeof e)return e;var i=p(e).split(" "),o=i[0],n=o.match(/^\[(.+)\]$/),r=t(n&&n[1],o),s=f.sortDataParsers[i[1]];return e=s?function(t){return t&&s(r(t))}:function(t){return t&&r(t)}}}();f.sortDataParsers={parseInt:function(t){return parseInt(t,10)},parseFloat:function(t){return parseFloat(t)}},f.prototype._sort=function(){var t=this.options.sortBy;if(t){var e=a([].concat.apply(t,this.sortHistory),this.options.sortAscending);this.filteredItems.sort(e),t!=this.sortHistory[0]&&this.sortHistory.unshift(t)}},f.prototype._mode=function(){var t=this.options.layoutMode,e=this.modes[t];if(!e)throw new Error("No layout mode: "+t);return e.options=this.options[t],e},f.prototype._resetLayout=function(){e.prototype._resetLayout.call(this),this._mode()._resetLayout()},f.prototype._getItemLayoutPosition=function(t){return this._mode()._getItemLayoutPosition(t)},f.prototype._manageStamp=function(t){this._mode()._manageStamp(t)},f.prototype._getContainerSize=function(){return this._mode()._getContainerSize()},f.prototype.needsResizeLayout=function(){return this._mode().needsResizeLayout()},f.prototype.appended=function(t){var e=this.addItems(t);if(e.length){var i=this._filterRevealAdded(e);this.filteredItems=this.filteredItems.concat(i)}},f.prototype.prepended=function(t){var e=this._itemize(t);if(e.length){this._resetLayout(),this._manageStamps();var i=this._filterRevealAdded(e);this.layoutItems(this.filteredItems),this.filteredItems=i.concat(this.filteredItems),this.items=e.concat(this.items)}},f.prototype._filterRevealAdded=function(t){var e=this._filter(t);return this.hide(e.needHide),this.reveal(e.matches),this.layoutItems(e.matches,!0),e.matches},f.prototype.insert=function(t){var e=this.addItems(t);if(e.length){var i,o,n=e.length;for(i=0;n>i;i++)o=e[i],this.element.appendChild(o.element);var r=this._filter(e).matches;for(i=0;n>i;i++)e[i].isLayoutInstant=!0;for(this.arrange(),i=0;n>i;i++)delete e[i].isLayoutInstant;this.reveal(r)}};var d=f.prototype.remove;return f.prototype.remove=function(t){t=n.makeArray(t);var e=this.getItems(t);d.call(this,t);var i=e&&e.length;if(i)for(var o=0;i>o;o++){var r=e[o];n.removeFrom(this.filteredItems,r)}},f.prototype.shuffle=function(){for(var t=0,e=this.items.length;e>t;t++)this.items[t].sortData.random=Math.random();this.options.sortBy="random",this._sort(),this._layout()},f.prototype._noTransition=function(t){var e=this.options.transitionDuration;this.options.transitionDuration=0;var i=t.call(this);return this.options.transitionDuration=e,i},f.prototype.getFilteredItemElements=function(){for(var t=[],e=0,i=this.filteredItems.length;i>e;e++)t.push(this.filteredItems[e].element);return t},f}); + + +/** + * @module RD Navbar + * @author Evgeniy Gusarov + * @see https://ua.linkedin.com/pub/evgeniy-gusarov/8a/a40/54a + * @version 2.2.5 + */ +(function(){var t;t="ontouchstart"in window,function(n,o,e){var a;a=function(){function a(t,a){this.options=n.extend(!0,{},this.Defaults,a),this.$element=n(t),this.$clone=null,this.$win=n(e),this.$doc=n(o),this.currentLayout=this.options.layout,this.loaded=!1,this.focusOnHover=this.options.focusOnHover,this.focusTimer=!1,this.cloneTimer=!1,this.isStuck=!1,this.initialize()}return a.prototype.Defaults={layout:"rd-navbar-static",deviceLayout:"rd-navbar-fixed",focusOnHover:!0,focusOnHoverTimeout:800,linkedElements:["html"],domAppend:!0,stickUp:!0,stickUpClone:!0,stickUpOffset:"100%",anchorNav:!0,anchorNavSpeed:400,anchorNavOffset:0,anchorNavEasing:"swing",autoHeight:!0,responsive:{0:{layout:"rd-navbar-fixed",deviceLayout:"rd-navbar-fixed",focusOnHover:!1,stickUp:!1},992:{layout:"rd-navbar-static",deviceLayout:"rd-navbar-static",focusOnHover:!0,stickUp:!0}},callbacks:{onToggleSwitch:!1,onToggleClose:!1,onDomAppend:!1,onDropdownOver:!1,onDropdownOut:!1,onDropdownToggle:!1,onDropdownClose:!1,onStuck:!1,onUnstuck:!1,onAnchorChange:!1}},a.prototype.initialize=function(){var n;return(n=this).$element.addClass("rd-navbar").addClass(n.options.layout),t&&n.$element.addClass("rd-navbar--is-touch"),n.options.domAppend&&n.createNav(n),n.options.stickUpClone&&n.createClone(n),n.$element.addClass("rd-navbar-original"),n.addAdditionalClassToToggles(".rd-navbar-original","toggle-original","toggle-original-elements"),n.applyHandlers(n),n.offset=n.$element.offset().top,n.height=n.$element.outerHeight(),n.loaded=!0,n},a.prototype.resize=function(o,e){var a,s;return s=t?o.getOption("deviceLayout"):o.getOption("layout"),a=o.$element.add(o.$clone),s===o.currentLayout&&o.loaded||(o.switchClass(a,o.currentLayout,s),null!=o.options.linkedElements&&n.grep(o.options.linkedElements,function(t,n){return o.switchClass(t,o.currentLayout+"-linked",s+"-linked")}),o.currentLayout=s),o.focusOnHover=o.getOption("focusOnHover"),o},a.prototype.stickUp=function(t,o){function e(){"resize"===o.type?t.switchClass(i,"","rd-navbar--is-stuck"):i.addClass("rd-navbar--is-stuck"),t.isStuck=!0}var a,s,r,i,l;return s=t.getOption("stickUp"),(n("html").hasClass("ios")||t.$element.hasClass("rd-navbar-fixed"))&&(s=!1),a=t.$doc.scrollTop(),i=null!=t.$clone?t.$clone:t.$element,r=t.getOption("stickUpOffset"),l="string"==typeof r?r.indexOf("%")>0?parseFloat(r)*t.height/100:parseFloat(r):r,s?(a>=l&&!t.isStuck||a=l&&!t.isStuck&&!t.$element.hasClass("rd-navbar-fixed")?(t.options.callbacks.onStuck&&t.options.callbacks.onStuck.call(t),navigator.platform.match(/(Mac)/i)?setTimeout(e,10):e()):("resize"===o.type?t.switchClass(i,"rd-navbar--is-stuck",""):i.removeClass("rd-navbar--is-stuck").one("transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd",n.proxy(t.resizeWrap,t,o)),t.isStuck=!1,t.options.callbacks.onUnstuck&&t.options.callbacks.onUnstuck.call(t))):(t.$element.find(".rd-navbar-submenu").removeClass("opened").removeClass("focus"),t.isStuck&&(t.switchClass(i,"rd-navbar--is-stuck",""),t.isStuck=!1,t.resizeWrap(o))),t},a.prototype.resizeWrap=function(t){var n,o;if(null==(o=this).$clone&&!o.isStuck)return n=o.$element.parent(),o.getOption("autoHeight")?(o.height=o.$element.outerHeight(),"resize"===t.type?(n.addClass("rd-navbar--no-transition").css("height",o.height),n[0].offsetHeight,n.removeClass("rd-navbar--no-transition")):n.css("height",o.height)):void n.css("height","auto")},a.prototype.createNav=function(t){return t.$element.find(".rd-navbar-dropdown, .rd-navbar-megamenu").each(function(){var t;return t=n(this),this.getBoundingClientRect(),t.hasClass("rd-navbar-megamenu")?t.parent().addClass("rd-navbar--has-megamenu"):t.parent().addClass("rd-navbar--has-dropdown")}).parents("li").addClass("rd-navbar-submenu"),n('').insertAfter(".rd-navbar-nav li.rd-navbar-submenu > a"),t.options.callbacks.onDomAppend&&t.options.callbacks.onDomAppend.call(this),t},a.prototype.createClone=function(t){return t.$clone=t.$element.clone().insertAfter(t.$element).addClass("rd-navbar--is-clone"),t.addAdditionalClassToToggles(".rd-navbar--is-clone","toggle-cloned","toggle-cloned-elements"),t},a.prototype.closeToggle=function(t,o){var e,a,s,r,i,l,c;return a=n(o.target),i=!1,l=this.getAttribute("data-rd-navbar-toggle"),t.options.stickUpClone&&t.isStuck?(r=".toggle-cloned",s=".toggle-cloned-elements",c=!a.hasClass("toggle-cloned")):(r=".toggle-original",s=".toggle-original-elements",c=!a.hasClass("toggle-original")),o.target!==this&&!a.parents(r+"[data-rd-navbar-toggle]").length&&!a.parents(s).length&&l&&c&&((e=n(this).parents("body").find(l).add(n(this).parents(".rd-navbar")[0])).each(function(){if(!i)return i=!0===(o.target===this||n.contains(this,o.target))}),i||(e.add(this).removeClass("active"),t.options.callbacks.onToggleClose&&t.options.callbacks.onToggleClose.call(this,t))),this},a.prototype.switchToggle=function(t,o){var e,a,s;return o.preventDefault(),n(this).hasClass("toggle-cloned")?(s=".rd-navbar--is-clone",e=".toggle-cloned-elements"):(s=".rd-navbar-original",e=".toggle-original-elements"),(a=this.getAttribute("data-rd-navbar-toggle"))&&(n(s+" [data-rd-navbar-toggle]").not(this).each(function(){var t;if(t=this.getAttribute("data-rd-navbar-toggle"))return n(this).parents("body").find(s+" "+t+e).add(this).add(n.inArray(".rd-navbar",t.split(/\s*,\s*/i))>-1&&n(this).parents("body")[0]).removeClass("active")}),n(this).parents("body").find(s+" "+a+e).add(this).add(n.inArray(".rd-navbar",a.split(/\s*,\s*/i))>-1&&n(this).parents(".rd-navbar")[0]).toggleClass("active")),t.options.callbacks.onToggleSwitch&&t.options.callbacks.onToggleSwitch.call(this,t),this},a.prototype.dropdownOver=function(t,o){var e;if(t.focusOnHover){if(e=n(this),clearTimeout(o),t.options.callbacks.onDropdownOver&&!t.options.callbacks.onDropdownOver.call(this,t))return this;e.addClass("focus").siblings().removeClass("opened").each(t.dropdownUnfocus)}return this},a.prototype.dropdownTouch=function(t,o){var e,a;if(e=n(this),clearTimeout(o),t.focusOnHover){if(a=!1,e.hasClass("focus")&&(a=!0),!a)return e.addClass("focus").siblings().removeClass("opened").each(t.dropdownUnfocus),!1;t.options.callbacks.onDropdownOver&&t.options.callbacks.onDropdownOver.call(this,t)}return this},a.prototype.dropdownOut=function(t,o){return t.focusOnHover&&(n(this).one("mouseenter.navbar",function(){return clearTimeout(o)}),t.options.callbacks.onDropdownOut&&t.options.callbacks.onDropdownOut.call(this,t),clearTimeout(o),o=setTimeout(n.proxy(t.dropdownUnfocus,this,t),t.options.focusOnHoverTimeout)),this},a.prototype.dropdownUnfocus=function(t){return n(this).find("li.focus").add(this).removeClass("focus"),this},a.prototype.dropdownClose=function(t,o){return o.target===this||n(o.target).parents(".rd-navbar-submenu").length||(n(this).find("li.focus").add(this).removeClass("focus").removeClass("opened"),t.options.callbacks.onDropdownClose&&t.options.callbacks.onDropdownClose.call(this,t)),this},a.prototype.dropdownToggle=function(t){return n(this).toggleClass("opened").siblings().removeClass("opened"),t.options.callbacks.onDropdownToggle&&t.options.callbacks.onDropdownToggle.call(this,t),this},a.prototype.goToAnchor=function(t,o){var e,a;return a=this.hash,e=n(a),!!t.getOption("anchorNav")&&(e.length&&(o.preventDefault(),n("html, body").stop().animate({scrollTop:e.offset().top+t.getOption("anchorNavOffset")+1},t.getOption("anchorNavSpeed"),t.getOption("anchorNavEasing"),function(){return t.changeAnchor(a)})),this)},a.prototype.activateAnchor=function(t){var o,e,a,s,r,i,l,c,d,p,u,h;if(s=this,u=s.$doc.scrollTop(),h=s.$win.height(),r=s.$doc.height(),p=s.getOption("anchorNavOffset"),!s.options.anchorNav)return!1;if(u+h>r-50)return(o=n('[data-type="anchor"]').last()).length&&o.offset().top>=u&&(i="#"+o.attr("id"),(e=n('.rd-navbar-nav a[href^="'+i+'"]').parent()).hasClass("active")||(e.addClass("active").siblings().removeClass("active"),s.options.callbacks.onAnchorChange&&s.options.callbacks.onAnchorChange.call(o[0],s))),o;d=n('.rd-navbar-nav a[href^="#"]').get();for(l in d)c=d[l],i=(a=n(c)).attr("href"),(o=n(i)).length&&o.offset().top+p<=u&&o.offset().top+o.outerHeight()>u&&(a.parent().addClass("active").siblings().removeClass("active"),s.options.callbacks.onAnchorChange&&s.options.callbacks.onAnchorChange.call(o[0],s));return null},a.prototype.getAnchor=function(){return history&&history.state?history.state.id:null},a.prototype.changeAnchor=function(t){return history&&(history.state&&history.state.id!==t?history.replaceState({anchorId:t},null,t):history.pushState({anchorId:t},null,t)),this},a.prototype.applyHandlers=function(t){return null!=t.options.responsive&&t.$win.on("resize.navbar",n.proxy(t.resize,t.$win[0],t)).on("resize.navbar",n.proxy(t.resizeWrap,t)).on("resize.navbar",n.proxy(t.stickUp,null!=t.$clone?t.$clone:t.$element,t)).on("orientationchange.navbar",n.proxy(t.resize,t.$win[0],t)).trigger("resize.navbar"),t.$doc.on("scroll.navbar",n.proxy(t.stickUp,null!=t.$clone?t.$clone:t.$element,t)).on("scroll.navbar",n.proxy(t.activateAnchor,t)),t.$element.add(t.$clone).find("[data-rd-navbar-toggle]").each(function(){var o;return(o=n(this)).on("click",n.proxy(t.switchToggle,this,t)),o.parents("body").on("click",n.proxy(t.closeToggle,this,t))}),t.$element.add(t.$clone).find(".rd-navbar-submenu").each(function(){var o,e;return o=n(this),e=o.parents(".rd-navbar--is-clone").length?t.cloneTimer:t.focusTimer,o.on("mouseleave.navbar",n.proxy(t.dropdownOut,this,t,e)),o.find("> a").on("mouseenter.navbar",n.proxy(t.dropdownOver,this,t,e)),o.find("> a").on("touchstart.navbar",n.proxy(t.dropdownTouch,this,t,e)),o.find("> .rd-navbar-submenu-toggle").on("click",n.proxy(t.dropdownToggle,this,t)),o.parents("body").on("click",n.proxy(t.dropdownClose,this,t))}),t.$element.add(t.$clone).find('.rd-navbar-nav a[href^="#"]').each(function(){return n(this).on("click",n.proxy(t.goToAnchor,this,t))}),t.$element.find(".rd-navbar-dropdown, .rd-navbar-megamenu").each(function(){var t,o;t=n(this),(o=this.getBoundingClientRect()).left+t.outerWidth()>=e.innerWidth-10?this.className+=" rd-navbar-open-left":o.left-t.outerWidth()<=10&&(this.className+=" rd-navbar-open-right")}),t},a.prototype.switchClass=function(t,o,e){var a;return(a=t instanceof jQuery?t:n(t)).addClass("rd-navbar--no-transition").removeClass(o).addClass(e),a[0].offsetHeight,a.removeClass("rd-navbar--no-transition")},a.prototype.getOption=function(t){var n,o;for(n in this.options.responsive)n<=e.innerWidth&&(o=n);return null!=this.options.responsive&&null!=this.options.responsive[o][t]?this.options.responsive[o][t]:this.options[t]},a.prototype.addAdditionalClassToToggles=function(t,o,e){return n(t).find("[data-rd-navbar-toggle]").each(function(){var a;return n(this).addClass(o),a=this.getAttribute("data-rd-navbar-toggle"),n(this).parents("body").find(t).find(a).addClass(e)})},a}(),n.fn.extend({RDNavbar:function(t){var o;if(!(o=n(this)).data("RDNavbar"))return o.data("RDNavbar",new a(this,t))}}),e.RDNavbar=a}(window.jQuery,document,window),"undefined"!=typeof module&&null!==module?module.exports=window.RDNavbar:"function"==typeof define&&define.amd&&define(["jquery"],function(){"use strict";return window.RDNavbar})}).call(this); + + +/** + * @module UIToTop + * @author Matt Varone + * @see http://www.mattvarone.com/web-design/uitotop-jquery-plugin/ + * @license MIT + */ +!function(o){o.fn.UItoTop=function(n){var e={text:"",min:500,scrollSpeed:800,containerID:"ui-to-top",containerClass:"ui-to-top fa fa-angle-up",easingType:"easeIn"},t=o.extend(e,n),i="#"+t.containerID;o("body").append(''+t.text+""),o(i).click(function(){return o("html, body").stop().animate({scrollTop:0},t.scrollSpeed,t.easingType),!1}),o(window).scroll(function(){var n=o(window).scrollTop();"undefined"==typeof document.body.style.maxHeight&&o(i).css({position:"absolute",top:o(window).scrollTop()+o(window).height()-50}),n>t.min?o(i).stop(!0,!0).addClass("active"):o(i).removeClass("active")})}}(jQuery); + + +/** + * @module RD-Google Map + * @author Evgeniy Gusarov + * @see https://ua.linkedin.com/pub/evgeniy-gusarov/8a/a40/54a + * @version 0.1.6 + */ +!function(a){var t={cntClass:"map",mapClass:"map_model",locationsClass:"map_locations",marker:{basic:"images/gmap_marker.png",active:"images/gmap_marker_active.png"},styles:[],onInit:!1},o={map:{x:-73.9924068,y:40.646197,zoom:14},locations:[]},e=function(t,o){var e=t.parent().find("."+o.locationsClass).find("li"),n=[];return 0'+e.html()+"
":n[t].content=!1)}),n};a.fn.googleMap=function(n){n=a.extend(!0,{},t,n),a(this).each(function(){var t=a(this),s=a.extend(!0,{},o,{map:{x:t.data("x"),y:t.data("y"),zoom:t.data("zoom")},marker:{basic:t.data("marker"),active:t.data("marker-active")},locations:e(t,n)}),i=new google.maps.Map(this,{center:new google.maps.LatLng(parseFloat(s.map.y),parseFloat(s.map.x)),styles:n.styles,zoom:s.map.zoom,scrollwheel:!1});n.onInit&&n.onInit.call(this,i);var c,l=new google.maps.InfoWindow,r=[];for(c in s.locations)r[c]=new google.maps.Marker({position:new google.maps.LatLng(parseFloat(s.locations[c].y),parseFloat(s.locations[c].x)),map:i,icon:s.locations[c].basic,index:c}),s.locations[c].content&&(google.maps.event.addListener(r[c],"click",function(){for(var t in r)r[t].setIcon(s.locations[t].basic);l.setContent(s.locations[this.index].content),l.open(i,this),a(".gm-style-iw").parent().parent().addClass("gm-wrapper"),this.setIcon(s.locations[this.index].active)}),google.maps.event.addListener(l,"closeclick",function(){for(var a in r)r[a].setIcon(s.locations[a].basic)}));google.maps.event.addDomListener(window,"resize",function(){i.setCenter(new google.maps.LatLng(parseFloat(s.map.y),parseFloat(s.map.x)))})})}}(jQuery); + +/** + * @module Materianize Parallax + * @see http://materializecss.com/parallax-demo.html + * @licesne MIT + */ +!function(i){i.fn.parallax=function(){var a=i(window).width();return this.each(function(t){function n(t){var n;n=a<601?r.height()>0?r.height():r.children("img").height():r.height()>0?r.height():500;var e=r.children("img").first(),l=e.height()-n,o=r.offset().top+n,h=r.offset().top,d=i(window).scrollTop(),s=window.innerHeight,c=(d+s-h)/(n+s),g=Math.round(l*c);t&&e.css("display","block"),o>d&&h
').find(".material-parallax");r.children("img").first().attr("src",r.parents("[data-parallax-img]").data("parallax-img")),r.children("img").one("load",function(){n(!0)}).each(function(){this.complete&&i(this).trigger("load")}),i(window).scroll(function(){a=i(window).width(),n(!1)}),i(window).resize(function(){a=i(window).width(),n(!1)})})}}(jQuery); + + +/** + * @module Swiper + * @description Most modern mobile touch slider and framework with hardware accelerated transitions + * @author Vladimir Kharlampidi + * @see http://www.idangero.us/swiper/ + * @licesne MIT + * @version 3.4.2 + */ +!function(){"use strict";var e,a=function(t,s){function r(e){return Math.floor(e)}function i(){var e=x.params.autoplay,a=x.slides.eq(x.activeIndex);a.attr("data-swiper-autoplay")&&(e=a.attr("data-swiper-autoplay")||x.params.autoplay),x.autoplayTimeoutId=setTimeout(function(){x.params.loop?(x.fixLoop(),x._slideNext(),x.emit("onAutoplay",x)):x.isEnd?s.autoplayStopOnLast?x.stopAutoplay():(x._slideTo(0),x.emit("onAutoplay",x)):(x._slideNext(),x.emit("onAutoplay",x))},e)}function n(a,t){var s=e(a.target);if(!s.is(t))if("string"==typeof t)s=s.parents(t);else if(t.nodeType){var r;return s.parents().each(function(e,a){a===t&&(r=t)}),r?t:void 0}if(0!==s.length)return s[0]}function o(e,a){a=a||{};var t=window.MutationObserver||window.WebkitMutationObserver,s=new t(function(e){e.forEach(function(e){x.onResize(!0),x.emit("onObserverUpdate",x,e)})});s.observe(e,{attributes:void 0===a.attributes||a.attributes,childList:void 0===a.childList||a.childList,characterData:void 0===a.characterData||a.characterData}),x.observers.push(s)}function l(e){e.originalEvent&&(e=e.originalEvent);var a=e.keyCode||e.charCode;if(!x.params.allowSwipeToNext&&(x.isHorizontal()&&39===a||!x.isHorizontal()&&40===a))return!1;if(!x.params.allowSwipeToPrev&&(x.isHorizontal()&&37===a||!x.isHorizontal()&&38===a))return!1;if(!(e.shiftKey||e.altKey||e.ctrlKey||e.metaKey||document.activeElement&&document.activeElement.nodeName&&("input"===document.activeElement.nodeName.toLowerCase()||"textarea"===document.activeElement.nodeName.toLowerCase()))){if(37===a||39===a||38===a||40===a){var t=!1;if(x.container.parents("."+x.params.slideClass).length>0&&0===x.container.parents("."+x.params.slideActiveClass).length)return;var s={left:window.pageXOffset,top:window.pageYOffset},r=window.innerWidth,i=window.innerHeight,n=x.container.offset();x.rtl&&(n.left=n.left-x.container[0].scrollLeft);for(var o=[[n.left,n.top],[n.left+x.width,n.top],[n.left,n.top+x.height],[n.left+x.width,n.top+x.height]],l=0;l=s.left&&p[0]<=s.left+r&&p[1]>=s.top&&p[1]<=s.top+i&&(t=!0)}if(!t)return}x.isHorizontal()?(37!==a&&39!==a||(e.preventDefault?e.preventDefault():e.returnValue=!1),(39===a&&!x.rtl||37===a&&x.rtl)&&x.slideNext(),(37===a&&!x.rtl||39===a&&x.rtl)&&x.slidePrev()):(38!==a&&40!==a||(e.preventDefault?e.preventDefault():e.returnValue=!1),40===a&&x.slideNext(),38===a&&x.slidePrev()),x.emit("onKeyPress",x,a)}}function p(e){var a=0,t=0,s=0,r=0;return"detail"in e&&(t=e.detail),"wheelDelta"in e&&(t=-e.wheelDelta/120),"wheelDeltaY"in e&&(t=-e.wheelDeltaY/120),"wheelDeltaX"in e&&(a=-e.wheelDeltaX/120),"axis"in e&&e.axis===e.HORIZONTAL_AXIS&&(a=t,t=0),s=10*a,r=10*t,"deltaY"in e&&(r=e.deltaY),"deltaX"in e&&(s=e.deltaX),(s||r)&&e.deltaMode&&(1===e.deltaMode?(s*=40,r*=40):(s*=800,r*=800)),s&&!a&&(a=s<1?-1:1),r&&!t&&(t=r<1?-1:1),{spinX:a,spinY:t,pixelX:s,pixelY:r}}function d(e){e.originalEvent&&(e=e.originalEvent);var a=0,t=x.rtl?-1:1,s=p(e);if(x.params.mousewheelForceToAxis)if(x.isHorizontal()){if(!(Math.abs(s.pixelX)>Math.abs(s.pixelY)))return;a=s.pixelX*t}else{if(!(Math.abs(s.pixelY)>Math.abs(s.pixelX)))return;a=s.pixelY}else a=Math.abs(s.pixelX)>Math.abs(s.pixelY)?-s.pixelX*t:-s.pixelY;if(0!==a){if(x.params.mousewheelInvert&&(a=-a),x.params.freeMode){var r=x.getWrapperTranslate()+a*x.params.mousewheelSensitivity,i=x.isBeginning,n=x.isEnd;if(r>=x.minTranslate()&&(r=x.minTranslate()),r<=x.maxTranslate()&&(r=x.maxTranslate()),x.setWrapperTransition(0),x.setWrapperTranslate(r),x.updateProgress(),x.updateActiveIndex(),(!i&&x.isBeginning||!n&&x.isEnd)&&x.updateClasses(),x.params.freeModeSticky?(clearTimeout(x.mousewheel.timeout),x.mousewheel.timeout=setTimeout(function(){x.slideReset()},300)):x.params.lazyLoading&&x.lazy&&x.lazy.load(),x.emit("onScroll",x,e),x.params.autoplay&&x.params.autoplayDisableOnInteraction&&x.stopAutoplay(),0===r||r===x.maxTranslate())return}else{if((new window.Date).getTime()-x.mousewheel.lastScrollTime>60)if(a<0)if(x.isEnd&&!x.params.loop||x.animating){if(x.params.mousewheelReleaseOnEdges)return!0}else x.slideNext(),x.emit("onScroll",x,e);else if(x.isBeginning&&!x.params.loop||x.animating){if(x.params.mousewheelReleaseOnEdges)return!0}else x.slidePrev(),x.emit("onScroll",x,e);x.mousewheel.lastScrollTime=(new window.Date).getTime()}return e.preventDefault?e.preventDefault():e.returnValue=!1,!1}}function m(a,t){a=e(a);var s,r,i,n=x.rtl?-1:1;s=a.attr("data-swiper-parallax")||"0",r=a.attr("data-swiper-parallax-x"),i=a.attr("data-swiper-parallax-y"),r||i?(r=r||"0",i=i||"0"):x.isHorizontal()?(r=s,i="0"):(i=s,r="0"),r=r.indexOf("%")>=0?parseInt(r,10)*t*n+"%":r*t*n+"px",i=i.indexOf("%")>=0?parseInt(i,10)*t+"%":i*t+"px",a.transform("translate3d("+r+", "+i+",0px)")}function u(e){return 0!==e.indexOf("on")&&(e=e[0]!==e[0].toUpperCase()?"on"+e[0].toUpperCase()+e.substring(1):"on"+e),e}if(!(this instanceof a))return new a(t,s);var c={direction:"horizontal",touchEventsTarget:"container",initialSlide:0,speed:300,autoplay:!1,autoplayDisableOnInteraction:!0,autoplayStopOnLast:!1,iOSEdgeSwipeDetection:!1,iOSEdgeSwipeThreshold:20,freeMode:!1,freeModeMomentum:!0,freeModeMomentumRatio:1,freeModeMomentumBounce:!0,freeModeMomentumBounceRatio:1,freeModeMomentumVelocityRatio:1,freeModeSticky:!1,freeModeMinimumVelocity:.02,autoHeight:!1,setWrapperSize:!1,virtualTranslate:!1,effect:"slide",coverflow:{rotate:50,stretch:0,depth:100,modifier:1,slideShadows:!0},flip:{slideShadows:!0,limitRotation:!0},cube:{slideShadows:!0,shadow:!0,shadowOffset:20,shadowScale:.94},fade:{crossFade:!1},parallax:!1,zoom:!1,zoomMax:3,zoomMin:1,zoomToggle:!0,scrollbar:null,scrollbarHide:!0,scrollbarDraggable:!1,scrollbarSnapOnRelease:!1,keyboardControl:!1,mousewheelControl:!1,mousewheelReleaseOnEdges:!1,mousewheelInvert:!1,mousewheelForceToAxis:!1,mousewheelSensitivity:1,mousewheelEventsTarged:"container",hashnav:!1,hashnavWatchState:!1,history:!1,replaceState:!1,breakpoints:void 0,spaceBetween:0,slidesPerView:1,slidesPerColumn:1,slidesPerColumnFill:"column",slidesPerGroup:1,centeredSlides:!1,slidesOffsetBefore:0,slidesOffsetAfter:0,roundLengths:!1,touchRatio:1,touchAngle:45,simulateTouch:!0,shortSwipes:!0,longSwipes:!0,longSwipesRatio:.5,longSwipesMs:300,followFinger:!0,onlyExternal:!1,threshold:0,touchMoveStopPropagation:!0,touchReleaseOnEdges:!1,uniqueNavElements:!0,pagination:null,paginationElement:"span",paginationClickable:!1,paginationHide:!1,paginationBulletRender:null,paginationProgressRender:null,paginationFractionRender:null,paginationCustomRender:null,paginationType:"bullets",resistance:!0,resistanceRatio:.85,nextButton:null,prevButton:null,watchSlidesProgress:!1,watchSlidesVisibility:!1,grabCursor:!1,preventClicks:!0,preventClicksPropagation:!0,slideToClickedSlide:!1,lazyLoading:!1,lazyLoadingInPrevNext:!1,lazyLoadingInPrevNextAmount:1,lazyLoadingOnTransitionStart:!1,preloadImages:!0,updateOnImagesReady:!0,loop:!1,loopAdditionalSlides:0,loopedSlides:null,control:void 0,controlInverse:!1,controlBy:"slide",normalizeSlideIndex:!0,allowSwipeToPrev:!0,allowSwipeToNext:!0,swipeHandler:null,noSwiping:!0,noSwipingClass:"swiper-no-swiping",passiveListeners:!0,containerModifierClass:"swiper-container-",slideClass:"swiper-slide",slideActiveClass:"swiper-slide-active",slideDuplicateActiveClass:"swiper-slide-duplicate-active",slideVisibleClass:"swiper-slide-visible",slideDuplicateClass:"swiper-slide-duplicate",slideNextClass:"swiper-slide-next",slideDuplicateNextClass:"swiper-slide-duplicate-next",slidePrevClass:"swiper-slide-prev",slideDuplicatePrevClass:"swiper-slide-duplicate-prev",wrapperClass:"swiper-wrapper",bulletClass:"swiper-pagination-bullet",bulletActiveClass:"swiper-pagination-bullet-active",buttonDisabledClass:"swiper-button-disabled",paginationCurrentClass:"swiper-pagination-current",paginationTotalClass:"swiper-pagination-total",paginationHiddenClass:"swiper-pagination-hidden",paginationProgressbarClass:"swiper-pagination-progressbar",paginationClickableClass:"swiper-pagination-clickable",paginationModifierClass:"swiper-pagination-",lazyLoadingClass:"swiper-lazy",lazyStatusLoadingClass:"swiper-lazy-loading",lazyStatusLoadedClass:"swiper-lazy-loaded",lazyPreloaderClass:"swiper-lazy-preloader",notificationClass:"swiper-notification",preloaderClass:"preloader",zoomContainerClass:"swiper-zoom-container",observer:!1,observeParents:!1,a11y:!1,prevSlideMessage:"Previous slide",nextSlideMessage:"Next slide",firstSlideMessage:"This is the first slide",lastSlideMessage:"This is the last slide",paginationBulletMessage:"Go to slide {{index}}",runCallbacksOnInit:!0},g=s&&s.virtualTranslate;s=s||{};var h={};for(var v in s)if("object"!=typeof s[v]||null===s[v]||(s[v].nodeType||s[v]===window||s[v]===document||"undefined"!=typeof Dom7&&s[v]instanceof Dom7||"undefined"!=typeof jQuery&&s[v]instanceof jQuery))h[v]=s[v];else{h[v]={};for(var f in s[v])h[v][f]=s[v][f]}for(var w in c)if(void 0===s[w])s[w]=c[w];else if("object"==typeof s[w])for(var y in c[w])void 0===s[w][y]&&(s[w][y]=c[w][y]);var x=this;if(x.params=s,x.originalParams=h,x.classNames=[],void 0!==e&&"undefined"!=typeof Dom7&&(e=Dom7),(void 0!==e||(e="undefined"==typeof Dom7?window.Dom7||window.Zepto||window.jQuery:Dom7))&&(x.$=e,x.currentBreakpoint=void 0,x.getActiveBreakpoint=function(){if(!x.params.breakpoints)return!1;var e,a=!1,t=[];for(e in x.params.breakpoints)x.params.breakpoints.hasOwnProperty(e)&&t.push(e);t.sort(function(e,a){return parseInt(e,10)>parseInt(a,10)});for(var s=0;s=window.innerWidth&&!a&&(a=e);return a||"max"},x.setBreakpoint=function(){var e=x.getActiveBreakpoint();if(e&&x.currentBreakpoint!==e){var a=e in x.params.breakpoints?x.params.breakpoints[e]:x.originalParams,t=x.params.loop&&a.slidesPerView!==x.params.slidesPerView;for(var s in a)x.params[s]=a[s];x.currentBreakpoint=e,t&&x.destroyLoop&&x.reLoop(!0)}},x.params.breakpoints&&x.setBreakpoint(),x.container=e(t),0!==x.container.length)){if(x.container.length>1){var T=[];return x.container.each(function(){T.push(new a(this,s))}),T}x.container[0].swiper=x,x.container.data("swiper",x),x.classNames.push(x.params.containerModifierClass+x.params.direction),x.params.freeMode&&x.classNames.push(x.params.containerModifierClass+"free-mode"),x.support.flexbox||(x.classNames.push(x.params.containerModifierClass+"no-flexbox"),x.params.slidesPerColumn=1),x.params.autoHeight&&x.classNames.push(x.params.containerModifierClass+"autoheight"),(x.params.parallax||x.params.watchSlidesVisibility)&&(x.params.watchSlidesProgress=!0),x.params.touchReleaseOnEdges&&(x.params.resistanceRatio=0),["cube","coverflow","flip"].indexOf(x.params.effect)>=0&&(x.support.transforms3d?(x.params.watchSlidesProgress=!0,x.classNames.push(x.params.containerModifierClass+"3d")):x.params.effect="slide"),"slide"!==x.params.effect&&x.classNames.push(x.params.containerModifierClass+x.params.effect),"cube"===x.params.effect&&(x.params.resistanceRatio=0,x.params.slidesPerView=1,x.params.slidesPerColumn=1,x.params.slidesPerGroup=1,x.params.centeredSlides=!1,x.params.spaceBetween=0,x.params.virtualTranslate=!0),"fade"!==x.params.effect&&"flip"!==x.params.effect||(x.params.slidesPerView=1,x.params.slidesPerColumn=1,x.params.slidesPerGroup=1,x.params.watchSlidesProgress=!0,x.params.spaceBetween=0,void 0===g&&(x.params.virtualTranslate=!0)),x.params.grabCursor&&x.support.touch&&(x.params.grabCursor=!1),x.wrapper=x.container.children("."+x.params.wrapperClass),x.params.pagination&&(x.paginationContainer=e(x.params.pagination),x.params.uniqueNavElements&&"string"==typeof x.params.pagination&&x.paginationContainer.length>1&&1===x.container.find(x.params.pagination).length&&(x.paginationContainer=x.container.find(x.params.pagination)),"bullets"===x.params.paginationType&&x.params.paginationClickable?x.paginationContainer.addClass(x.params.paginationModifierClass+"clickable"):x.params.paginationClickable=!1,x.paginationContainer.addClass(x.params.paginationModifierClass+x.params.paginationType)),(x.params.nextButton||x.params.prevButton)&&(x.params.nextButton&&(x.nextButton=e(x.params.nextButton),x.params.uniqueNavElements&&"string"==typeof x.params.nextButton&&x.nextButton.length>1&&1===x.container.find(x.params.nextButton).length&&(x.nextButton=x.container.find(x.params.nextButton))),x.params.prevButton&&(x.prevButton=e(x.params.prevButton),x.params.uniqueNavElements&&"string"==typeof x.params.prevButton&&x.prevButton.length>1&&1===x.container.find(x.params.prevButton).length&&(x.prevButton=x.container.find(x.params.prevButton)))),x.isHorizontal=function(){return"horizontal"===x.params.direction},x.rtl=x.isHorizontal()&&("rtl"===x.container[0].dir.toLowerCase()||"rtl"===x.container.css("direction")),x.rtl&&x.classNames.push(x.params.containerModifierClass+"rtl"),x.rtl&&(x.wrongRTL="-webkit-box"===x.wrapper.css("display")),x.params.slidesPerColumn>1&&x.classNames.push(x.params.containerModifierClass+"multirow"),x.device.android&&x.classNames.push(x.params.containerModifierClass+"android"),x.container.addClass(x.classNames.join(" ")),x.translate=0,x.progress=0,x.velocity=0,x.lockSwipeToNext=function(){x.params.allowSwipeToNext=!1,x.params.allowSwipeToPrev===!1&&x.params.grabCursor&&x.unsetGrabCursor()},x.lockSwipeToPrev=function(){x.params.allowSwipeToPrev=!1,x.params.allowSwipeToNext===!1&&x.params.grabCursor&&x.unsetGrabCursor()},x.lockSwipes=function(){x.params.allowSwipeToNext=x.params.allowSwipeToPrev=!1,x.params.grabCursor&&x.unsetGrabCursor()},x.unlockSwipeToNext=function(){x.params.allowSwipeToNext=!0,x.params.allowSwipeToPrev===!0&&x.params.grabCursor&&x.setGrabCursor()},x.unlockSwipeToPrev=function(){x.params.allowSwipeToPrev=!0,x.params.allowSwipeToNext===!0&&x.params.grabCursor&&x.setGrabCursor()},x.unlockSwipes=function(){x.params.allowSwipeToNext=x.params.allowSwipeToPrev=!0,x.params.grabCursor&&x.setGrabCursor()},x.setGrabCursor=function(e){x.container[0].style.cursor="move",x.container[0].style.cursor=e?"-webkit-grabbing":"-webkit-grab",x.container[0].style.cursor=e?"-moz-grabbin":"-moz-grab",x.container[0].style.cursor=e?"grabbing":"grab"},x.unsetGrabCursor=function(){x.container[0].style.cursor=""},x.params.grabCursor&&x.setGrabCursor(),x.imagesToLoad=[],x.imagesLoaded=0,x.loadImage=function(e,a,t,s,r,i){function n(){i&&i()}var o;e.complete&&r?n():a?(o=new window.Image,o.onload=n,o.onerror=n,s&&(o.sizes=s),t&&(o.srcset=t),a&&(o.src=a)):n()},x.preloadImages=function(){function e(){void 0!==x&&null!==x&&x&&(void 0!==x.imagesLoaded&&x.imagesLoaded++,x.imagesLoaded===x.imagesToLoad.length&&(x.params.updateOnImagesReady&&x.update(),x.emit("onImagesReady",x)))}x.imagesToLoad=x.container.find("img");for(var a=0;a1)for(e=0;ex.slides.length)break;a.push(x.slides.eq(s)[0])}else a.push(x.slides.eq(x.activeIndex)[0]);for(e=0;et?r:t}t&&x.wrapper.css("height",t+"px")},x.updateContainerSize=function(){var e,a;e=void 0!==x.params.width?x.params.width:x.container[0].clientWidth,a=void 0!==x.params.height?x.params.height:x.container[0].clientHeight,0===e&&x.isHorizontal()||0===a&&!x.isHorizontal()||(e=e-parseInt(x.container.css("padding-left"),10)-parseInt(x.container.css("padding-right"),10),a=a-parseInt(x.container.css("padding-top"),10)-parseInt(x.container.css("padding-bottom"),10),x.width=e,x.height=a,x.size=x.isHorizontal()?x.width:x.height)},x.updateSlidesSize=function(){x.slides=x.wrapper.children("."+x.params.slideClass),x.snapGrid=[],x.slidesGrid=[],x.slidesSizesGrid=[];var e,a=x.params.spaceBetween,t=-x.params.slidesOffsetBefore,s=0,i=0;if(void 0!==x.size){"string"==typeof a&&a.indexOf("%")>=0&&(a=parseFloat(a.replace("%",""))/100*x.size),x.virtualSize=-a,x.rtl?x.slides.css({marginLeft:"",marginTop:""}):x.slides.css({marginRight:"",marginBottom:""});var n;x.params.slidesPerColumn>1&&(n=Math.floor(x.slides.length/x.params.slidesPerColumn)===x.slides.length/x.params.slidesPerColumn?x.slides.length:Math.ceil(x.slides.length/x.params.slidesPerColumn)*x.params.slidesPerColumn,"auto"!==x.params.slidesPerView&&"row"===x.params.slidesPerColumnFill&&(n=Math.max(n,x.params.slidesPerView*x.params.slidesPerColumn)));var o,l=x.params.slidesPerColumn,p=n/l,d=p-(x.params.slidesPerColumn*p-x.slides.length);for(e=0;e1){var u,c,g;"column"===x.params.slidesPerColumnFill?(c=Math.floor(e/l),g=e-c*l,(c>d||c===d&&g===l-1)&&++g>=l&&(g=0,c++),u=c+g*n/l,m.css({"-webkit-box-ordinal-group":u,"-moz-box-ordinal-group":u,"-ms-flex-order":u,"-webkit-order":u,order:u})):(g=Math.floor(e/p),c=e-g*p),m.css("margin-"+(x.isHorizontal()?"top":"left"),0!==g&&x.params.spaceBetween&&x.params.spaceBetween+"px").attr("data-swiper-column",c).attr("data-swiper-row",g)}"none"!==m.css("display")&&("auto"===x.params.slidesPerView?(o=x.isHorizontal()?m.outerWidth(!0):m.outerHeight(!0),x.params.roundLengths&&(o=r(o))):(o=(x.size-(x.params.slidesPerView-1)*a)/x.params.slidesPerView,x.params.roundLengths&&(o=r(o)),x.isHorizontal()?x.slides[e].style.width=o+"px":x.slides[e].style.height=o+"px"),x.slides[e].swiperSlideSize=o,x.slidesSizesGrid.push(o),x.params.centeredSlides?(t=t+o/2+s/2+a,0===s&&0!==e&&(t=t-x.size/2-a),0===e&&(t=t-x.size/2-a),Math.abs(t)<.001&&(t=0),i%x.params.slidesPerGroup==0&&x.snapGrid.push(t),x.slidesGrid.push(t)):(i%x.params.slidesPerGroup==0&&x.snapGrid.push(t),x.slidesGrid.push(t),t=t+o+a),x.virtualSize+=o+a,s=o,i++)}x.virtualSize=Math.max(x.virtualSize,x.size)+x.params.slidesOffsetAfter;var h;if(x.rtl&&x.wrongRTL&&("slide"===x.params.effect||"coverflow"===x.params.effect)&&x.wrapper.css({width:x.virtualSize+x.params.spaceBetween+"px"}),x.support.flexbox&&!x.params.setWrapperSize||(x.isHorizontal()?x.wrapper.css({width:x.virtualSize+x.params.spaceBetween+"px"}):x.wrapper.css({height:x.virtualSize+x.params.spaceBetween+"px"})),x.params.slidesPerColumn>1&&(x.virtualSize=(o+x.params.spaceBetween)*n,x.virtualSize=Math.ceil(x.virtualSize/x.params.slidesPerColumn)-x.params.spaceBetween,x.isHorizontal()?x.wrapper.css({width:x.virtualSize+x.params.spaceBetween+"px"}):x.wrapper.css({height:x.virtualSize+x.params.spaceBetween+"px"}),x.params.centeredSlides)){for(h=[],e=0;e1&&x.snapGrid.push(x.virtualSize-x.size)}0===x.snapGrid.length&&(x.snapGrid=[0]),0!==x.params.spaceBetween&&(x.isHorizontal()?x.rtl?x.slides.css({marginLeft:a+"px"}):x.slides.css({marginRight:a+"px"}):x.slides.css({marginBottom:a+"px"})),x.params.watchSlidesProgress&&x.updateSlidesOffset()}},x.updateSlidesOffset=function(){for(var e=0;ex.size&&(s=!0));for(a=x.activeIndex-1;a>=0;a--)x.slides[a]&&!s&&(r+=x.slides[a].swiperSlideSize,t++,r>x.size&&(s=!0))}else for(e=x.activeIndex+1;e=0&&i0&&n<=x.size||i<=0&&n>=x.size)&&x.slides.eq(t).addClass(x.params.slideVisibleClass)}s.progress=x.rtl?-r:r}}},x.updateProgress=function(e){void 0===e&&(e=x.translate||0);var a=x.maxTranslate()-x.minTranslate(),t=x.isBeginning,s=x.isEnd;0===a?(x.progress=0,x.isBeginning=x.isEnd=!0):(x.progress=(e-x.minTranslate())/a,x.isBeginning=x.progress<=0,x.isEnd=x.progress>=1),x.isBeginning&&!t&&x.emit("onReachBeginning",x),x.isEnd&&!s&&x.emit("onReachEnd",x),x.params.watchSlidesProgress&&x.updateSlidesProgress(e),x.emit("onProgress",x,x.progress)},x.updateActiveIndex=function(){var e,a,t,s=x.rtl?x.translate:-x.translate;for(a=0;a=x.slidesGrid[a]&&s=x.slidesGrid[a]&&s=x.slidesGrid[a]&&(e=a);x.params.normalizeSlideIndex&&(e<0||void 0===e)&&(e=0),t=Math.floor(e/x.params.slidesPerGroup),t>=x.snapGrid.length&&(t=x.snapGrid.length-1),e!==x.activeIndex&&(x.snapIndex=t,x.previousIndex=x.activeIndex,x.activeIndex=e,x.updateClasses(),x.updateRealIndex())},x.updateRealIndex=function(){x.realIndex=parseInt(x.slides.eq(x.activeIndex).attr("data-swiper-slide-index")||x.activeIndex,10)},x.updateClasses=function(){x.slides.removeClass(x.params.slideActiveClass+" "+x.params.slideNextClass+" "+x.params.slidePrevClass+" "+x.params.slideDuplicateActiveClass+" "+x.params.slideDuplicateNextClass+" "+x.params.slideDuplicatePrevClass);var a=x.slides.eq(x.activeIndex);a.addClass(x.params.slideActiveClass),s.loop&&(a.hasClass(x.params.slideDuplicateClass)?x.wrapper.children("."+x.params.slideClass+":not(."+x.params.slideDuplicateClass+')[data-swiper-slide-index="'+x.realIndex+'"]').addClass(x.params.slideDuplicateActiveClass):x.wrapper.children("."+x.params.slideClass+"."+x.params.slideDuplicateClass+'[data-swiper-slide-index="'+x.realIndex+'"]').addClass(x.params.slideDuplicateActiveClass));var t=a.next("."+x.params.slideClass).addClass(x.params.slideNextClass);x.params.loop&&0===t.length&&(t=x.slides.eq(0),t.addClass(x.params.slideNextClass));var r=a.prev("."+x.params.slideClass).addClass(x.params.slidePrevClass);if(x.params.loop&&0===r.length&&(r=x.slides.eq(-1),r.addClass(x.params.slidePrevClass)),s.loop&&(t.hasClass(x.params.slideDuplicateClass)?x.wrapper.children("."+x.params.slideClass+":not(."+x.params.slideDuplicateClass+')[data-swiper-slide-index="'+t.attr("data-swiper-slide-index")+'"]').addClass(x.params.slideDuplicateNextClass):x.wrapper.children("."+x.params.slideClass+"."+x.params.slideDuplicateClass+'[data-swiper-slide-index="'+t.attr("data-swiper-slide-index")+'"]').addClass(x.params.slideDuplicateNextClass),r.hasClass(x.params.slideDuplicateClass)?x.wrapper.children("."+x.params.slideClass+":not(."+x.params.slideDuplicateClass+')[data-swiper-slide-index="'+r.attr("data-swiper-slide-index")+'"]').addClass(x.params.slideDuplicatePrevClass):x.wrapper.children("."+x.params.slideClass+"."+x.params.slideDuplicateClass+'[data-swiper-slide-index="'+r.attr("data-swiper-slide-index")+'"]').addClass(x.params.slideDuplicatePrevClass)),x.paginationContainer&&x.paginationContainer.length>0){var i,n=x.params.loop?Math.ceil((x.slides.length-2*x.loopedSlides)/x.params.slidesPerGroup):x.snapGrid.length;if(x.params.loop?(i=Math.ceil((x.activeIndex-x.loopedSlides)/x.params.slidesPerGroup),i>x.slides.length-1-2*x.loopedSlides&&(i-=x.slides.length-2*x.loopedSlides),i>n-1&&(i-=n),i<0&&"bullets"!==x.params.paginationType&&(i=n+i)):i=void 0!==x.snapIndex?x.snapIndex:x.activeIndex||0,"bullets"===x.params.paginationType&&x.bullets&&x.bullets.length>0&&(x.bullets.removeClass(x.params.bulletActiveClass),x.paginationContainer.length>1?x.bullets.each(function(){e(this).index()===i&&e(this).addClass(x.params.bulletActiveClass)}):x.bullets.eq(i).addClass(x.params.bulletActiveClass)),"fraction"===x.params.paginationType&&(x.paginationContainer.find("."+x.params.paginationCurrentClass).text(i+1),x.paginationContainer.find("."+x.params.paginationTotalClass).text(n)),"progress"===x.params.paginationType){var o=(i+1)/n,l=o,p=1;x.isHorizontal()||(p=o,l=1),x.paginationContainer.find("."+x.params.paginationProgressbarClass).transform("translate3d(0,0,0) scaleX("+l+") scaleY("+p+")").transition(x.params.speed)}"custom"===x.params.paginationType&&x.params.paginationCustomRender&&(x.paginationContainer.html(x.params.paginationCustomRender(x,i+1,n)),x.emit("onPaginationRendered",x,x.paginationContainer[0]))}x.params.loop||(x.params.prevButton&&x.prevButton&&x.prevButton.length>0&&(x.isBeginning?(x.prevButton.addClass(x.params.buttonDisabledClass),x.params.a11y&&x.a11y&&x.a11y.disable(x.prevButton)):(x.prevButton.removeClass(x.params.buttonDisabledClass),x.params.a11y&&x.a11y&&x.a11y.enable(x.prevButton))),x.params.nextButton&&x.nextButton&&x.nextButton.length>0&&(x.isEnd?(x.nextButton.addClass(x.params.buttonDisabledClass),x.params.a11y&&x.a11y&&x.a11y.disable(x.nextButton)):(x.nextButton.removeClass(x.params.buttonDisabledClass),x.params.a11y&&x.a11y&&x.a11y.enable(x.nextButton))))},x.updatePagination=function(){if(x.params.pagination&&x.paginationContainer&&x.paginationContainer.length>0){var e="";if("bullets"===x.params.paginationType){for(var a=x.params.loop?Math.ceil((x.slides.length-2*x.loopedSlides)/x.params.slidesPerGroup):x.snapGrid.length,t=0;t";x.paginationContainer.html(e),x.bullets=x.paginationContainer.find("."+x.params.bulletClass),x.params.paginationClickable&&x.params.a11y&&x.a11y&&x.a11y.initPagination()}"fraction"===x.params.paginationType&&(e=x.params.paginationFractionRender?x.params.paginationFractionRender(x,x.params.paginationCurrentClass,x.params.paginationTotalClass):' / ',x.paginationContainer.html(e)),"progress"===x.params.paginationType&&(e=x.params.paginationProgressRender?x.params.paginationProgressRender(x,x.params.paginationProgressbarClass):'',x.paginationContainer.html(e)),"custom"!==x.params.paginationType&&x.emit("onPaginationRendered",x,x.paginationContainer[0])}},x.update=function(e){function a(){x.rtl,x.translate;t=Math.min(Math.max(x.translate,x.maxTranslate()),x.minTranslate()),x.setWrapperTranslate(t),x.updateActiveIndex(),x.updateClasses()}if(x){x.updateContainerSize(),x.updateSlidesSize(),x.updateProgress(),x.updatePagination(),x.updateClasses(),x.params.scrollbar&&x.scrollbar&&x.scrollbar.set();var t;if(e){x.controller&&x.controller.spline&&(x.controller.spline=void 0),x.params.freeMode?(a(),x.params.autoHeight&&x.updateAutoHeight()):(("auto"===x.params.slidesPerView||x.params.slidesPerView>1)&&x.isEnd&&!x.params.centeredSlides?x.slideTo(x.slides.length-1,0,!1,!0):x.slideTo(x.activeIndex,0,!1,!0))||a()}else x.params.autoHeight&&x.updateAutoHeight()}},x.onResize=function(e){x.params.onBeforeResize&&x.params.onBeforeResize(x),x.params.breakpoints&&x.setBreakpoint();var a=x.params.allowSwipeToPrev,t=x.params.allowSwipeToNext;x.params.allowSwipeToPrev=x.params.allowSwipeToNext=!0,x.updateContainerSize(),x.updateSlidesSize(),("auto"===x.params.slidesPerView||x.params.freeMode||e)&&x.updatePagination(),x.params.scrollbar&&x.scrollbar&&x.scrollbar.set(),x.controller&&x.controller.spline&&(x.controller.spline=void 0);var s=!1;if(x.params.freeMode){var r=Math.min(Math.max(x.translate,x.maxTranslate()),x.minTranslate());x.setWrapperTranslate(r),x.updateActiveIndex(),x.updateClasses(),x.params.autoHeight&&x.updateAutoHeight()}else x.updateClasses(),s=("auto"===x.params.slidesPerView||x.params.slidesPerView>1)&&x.isEnd&&!x.params.centeredSlides?x.slideTo(x.slides.length-1,0,!1,!0):x.slideTo(x.activeIndex,0,!1,!0);x.params.lazyLoading&&!s&&x.lazy&&x.lazy.load(),x.params.allowSwipeToPrev=a,x.params.allowSwipeToNext=t,x.params.onAfterResize&&x.params.onAfterResize(x)},x.touchEventsDesktop={start:"mousedown",move:"mousemove",end:"mouseup"},window.navigator.pointerEnabled?x.touchEventsDesktop={start:"pointerdown",move:"pointermove",end:"pointerup"}:window.navigator.msPointerEnabled&&(x.touchEventsDesktop={start:"MSPointerDown",move:"MSPointerMove",end:"MSPointerUp"}),x.touchEvents={start:x.support.touch||!x.params.simulateTouch?"touchstart":x.touchEventsDesktop.start,move:x.support.touch||!x.params.simulateTouch?"touchmove":x.touchEventsDesktop.move,end:x.support.touch||!x.params.simulateTouch?"touchend":x.touchEventsDesktop.end},(window.navigator.pointerEnabled||window.navigator.msPointerEnabled)&&("container"===x.params.touchEventsTarget?x.container:x.wrapper).addClass("swiper-wp8-"+x.params.direction),x.initEvents=function(e){var a=e?"off":"on",t=e?"removeEventListener":"addEventListener",r="container"===x.params.touchEventsTarget?x.container[0]:x.wrapper[0],i=x.support.touch?r:document,n=!!x.params.nested;if(x.browser.ie)r[t](x.touchEvents.start,x.onTouchStart,!1),i[t](x.touchEvents.move,x.onTouchMove,n),i[t](x.touchEvents.end,x.onTouchEnd,!1);else{if(x.support.touch){var o=!("touchstart"!==x.touchEvents.start||!x.support.passiveListener||!x.params.passiveListeners)&&{passive:!0,capture:!1};r[t](x.touchEvents.start,x.onTouchStart,o),r[t](x.touchEvents.move,x.onTouchMove,n),r[t](x.touchEvents.end,x.onTouchEnd,o)}(s.simulateTouch&&!x.device.ios&&!x.device.android||s.simulateTouch&&!x.support.touch&&x.device.ios)&&(r[t]("mousedown",x.onTouchStart,!1),document[t]("mousemove",x.onTouchMove,n),document[t]("mouseup",x.onTouchEnd,!1))}window[t]("resize",x.onResize),x.params.nextButton&&x.nextButton&&x.nextButton.length>0&&(x.nextButton[a]("click",x.onClickNext),x.params.a11y&&x.a11y&&x.nextButton[a]("keydown",x.a11y.onEnterKey)),x.params.prevButton&&x.prevButton&&x.prevButton.length>0&&(x.prevButton[a]("click",x.onClickPrev),x.params.a11y&&x.a11y&&x.prevButton[a]("keydown",x.a11y.onEnterKey)),x.params.pagination&&x.params.paginationClickable&&(x.paginationContainer[a]("click","."+x.params.bulletClass,x.onClickIndex),x.params.a11y&&x.a11y&&x.paginationContainer[a]("keydown","."+x.params.bulletClass,x.a11y.onEnterKey)),(x.params.preventClicks||x.params.preventClicksPropagation)&&r[t]("click",x.preventClicks,!0)},x.attachEvents=function(){x.initEvents()},x.detachEvents=function(){x.initEvents(!0)},x.allowClick=!0,x.preventClicks=function(e){x.allowClick||(x.params.preventClicks&&e.preventDefault(),x.params.preventClicksPropagation&&x.animating&&(e.stopPropagation(),e.stopImmediatePropagation()))},x.onClickNext=function(e){e.preventDefault(),x.isEnd&&!x.params.loop||x.slideNext()},x.onClickPrev=function(e){e.preventDefault(),x.isBeginning&&!x.params.loop||x.slidePrev()},x.onClickIndex=function(a){a.preventDefault();var t=e(this).index()*x.params.slidesPerGroup + ;x.params.loop&&(t+=x.loopedSlides),x.slideTo(t)},x.updateClickedSlide=function(a){var t=n(a,"."+x.params.slideClass),s=!1;if(t)for(var r=0;rx.slides.length-x.loopedSlides+l/2?(x.fixLoop(),o=x.wrapper.children("."+x.params.slideClass+'[data-swiper-slide-index="'+i+'"]:not(.'+x.params.slideDuplicateClass+")").eq(0).index(),setTimeout(function(){x.slideTo(o)},0)):x.slideTo(o):o>x.slides.length-l?(x.fixLoop(),o=x.wrapper.children("."+x.params.slideClass+'[data-swiper-slide-index="'+i+'"]:not(.'+x.params.slideDuplicateClass+")").eq(0).index(),setTimeout(function(){x.slideTo(o)},0)):x.slideTo(o)}else x.slideTo(o)}};var b,C,S,z,M,P,E,I,k,D,L="input, select, textarea, button, video",B=Date.now(),H=[];x.animating=!1,x.touches={startX:0,startY:0,currentX:0,currentY:0,diff:0};var G,X;x.onTouchStart=function(a){if(a.originalEvent&&(a=a.originalEvent),(G="touchstart"===a.type)||!("which"in a)||3!==a.which){if(x.params.noSwiping&&n(a,"."+x.params.noSwipingClass))return void(x.allowClick=!0);if(!x.params.swipeHandler||n(a,x.params.swipeHandler)){var t=x.touches.currentX="touchstart"===a.type?a.targetTouches[0].pageX:a.pageX,s=x.touches.currentY="touchstart"===a.type?a.targetTouches[0].pageY:a.pageY;if(!(x.device.ios&&x.params.iOSEdgeSwipeDetection&&t<=x.params.iOSEdgeSwipeThreshold)){if(b=!0,C=!1,S=!0,M=void 0,X=void 0,x.touches.startX=t,x.touches.startY=s,z=Date.now(),x.allowClick=!0,x.updateContainerSize(),x.swipeDirection=void 0,x.params.threshold>0&&(I=!1),"touchstart"!==a.type){var r=!0;e(a.target).is(L)&&(r=!1),document.activeElement&&e(document.activeElement).is(L)&&document.activeElement.blur(),r&&a.preventDefault()}x.emit("onTouchStart",x,a)}}}},x.onTouchMove=function(a){if(a.originalEvent&&(a=a.originalEvent),!G||"mousemove"!==a.type){if(a.preventedByNestedSwiper)return x.touches.startX="touchmove"===a.type?a.targetTouches[0].pageX:a.pageX,void(x.touches.startY="touchmove"===a.type?a.targetTouches[0].pageY:a.pageY);if(x.params.onlyExternal)return x.allowClick=!1,void(b&&(x.touches.startX=x.touches.currentX="touchmove"===a.type?a.targetTouches[0].pageX:a.pageX,x.touches.startY=x.touches.currentY="touchmove"===a.type?a.targetTouches[0].pageY:a.pageY,z=Date.now()));if(G&&x.params.touchReleaseOnEdges&&!x.params.loop)if(x.isHorizontal()){if(x.touches.currentXx.touches.startX&&x.translate>=x.minTranslate())return}else if(x.touches.currentYx.touches.startY&&x.translate>=x.minTranslate())return;if(G&&document.activeElement&&a.target===document.activeElement&&e(a.target).is(L))return C=!0,void(x.allowClick=!1);if(S&&x.emit("onTouchMove",x,a),!(a.targetTouches&&a.targetTouches.length>1)){if(x.touches.currentX="touchmove"===a.type?a.targetTouches[0].pageX:a.pageX,x.touches.currentY="touchmove"===a.type?a.targetTouches[0].pageY:a.pageY,void 0===M){var t;x.isHorizontal()&&x.touches.currentY===x.touches.startY||!x.isHorizontal()&&x.touches.currentX===x.touches.startX?M=!1:(t=180*Math.atan2(Math.abs(x.touches.currentY-x.touches.startY),Math.abs(x.touches.currentX-x.touches.startX))/Math.PI,M=x.isHorizontal()?t>x.params.touchAngle:90-t>x.params.touchAngle)}if(M&&x.emit("onTouchMoveOpposite",x,a),void 0===X&&(x.touches.currentX===x.touches.startX&&x.touches.currentY===x.touches.startY||(X=!0)),b){if(M)return void(b=!1);if(X){x.allowClick=!1,x.emit("onSliderMove",x,a),a.preventDefault(),x.params.touchMoveStopPropagation&&!x.params.nested&&a.stopPropagation(),C||(s.loop&&x.fixLoop(),E=x.getWrapperTranslate(),x.setWrapperTransition(0),x.animating&&x.wrapper.trigger("webkitTransitionEnd transitionend oTransitionEnd MSTransitionEnd msTransitionEnd"),x.params.autoplay&&x.autoplaying&&(x.params.autoplayDisableOnInteraction?x.stopAutoplay():x.pauseAutoplay()),D=!1,!x.params.grabCursor||x.params.allowSwipeToNext!==!0&&x.params.allowSwipeToPrev!==!0||x.setGrabCursor(!0)),C=!0;var r=x.touches.diff=x.isHorizontal()?x.touches.currentX-x.touches.startX:x.touches.currentY-x.touches.startY;r*=x.params.touchRatio,x.rtl&&(r=-r),x.swipeDirection=r>0?"prev":"next",P=r+E;var i=!0;if(r>0&&P>x.minTranslate()?(i=!1,x.params.resistance&&(P=x.minTranslate()-1+Math.pow(-x.minTranslate()+E+r,x.params.resistanceRatio))):r<0&&PE&&(P=E),x.params.threshold>0){if(!(Math.abs(r)>x.params.threshold||I))return void(P=E);if(!I)return I=!0,x.touches.startX=x.touches.currentX,x.touches.startY=x.touches.currentY,P=E,void(x.touches.diff=x.isHorizontal()?x.touches.currentX-x.touches.startX:x.touches.currentY-x.touches.startY)}x.params.followFinger&&((x.params.freeMode||x.params.watchSlidesProgress)&&x.updateActiveIndex(),x.params.freeMode&&(0===H.length&&H.push({position:x.touches[x.isHorizontal()?"startX":"startY"],time:z}),H.push({position:x.touches[x.isHorizontal()?"currentX":"currentY"],time:(new window.Date).getTime()})),x.updateProgress(P),x.setWrapperTranslate(P))}}}}},x.onTouchEnd=function(a){if(a.originalEvent&&(a=a.originalEvent),S&&x.emit("onTouchEnd",x,a),S=!1,b){x.params.grabCursor&&C&&b&&(x.params.allowSwipeToNext===!0||x.params.allowSwipeToPrev===!0)&&x.setGrabCursor(!1);var t=Date.now(),s=t-z;if(x.allowClick&&(x.updateClickedSlide(a),x.emit("onTap",x,a),s<300&&t-B>300&&(k&&clearTimeout(k),k=setTimeout(function(){x&&(x.params.paginationHide&&x.paginationContainer.length>0&&!e(a.target).hasClass(x.params.bulletClass)&&x.paginationContainer.toggleClass(x.params.paginationHiddenClass),x.emit("onClick",x,a))},300)),s<300&&t-B<300&&(k&&clearTimeout(k),x.emit("onDoubleTap",x,a))),B=Date.now(),setTimeout(function(){x&&(x.allowClick=!0)},0),!b||!C||!x.swipeDirection||0===x.touches.diff||P===E)return void(b=C=!1);b=C=!1;var r;if(r=x.params.followFinger?x.rtl?x.translate:-x.translate:-P,x.params.freeMode){if(r<-x.minTranslate())return void x.slideTo(x.activeIndex);if(r>-x.maxTranslate())return void(x.slides.length1){var i=H.pop(),n=H.pop(),o=i.position-n.position,l=i.time-n.time;x.velocity=o/l,x.velocity=x.velocity/2,Math.abs(x.velocity)150||(new window.Date).getTime()-i.time>300)&&(x.velocity=0)}else x.velocity=0;x.velocity=x.velocity*x.params.freeModeMomentumVelocityRatio,H.length=0;var p=1e3*x.params.freeModeMomentumRatio,d=x.velocity*p,m=x.translate+d;x.rtl&&(m=-m);var u,c=!1,g=20*Math.abs(x.velocity)*x.params.freeModeMomentumBounceRatio;if(mx.minTranslate())x.params.freeModeMomentumBounce?(m-x.minTranslate()>g&&(m=x.minTranslate()+g),u=x.minTranslate(),c=!0,D=!0):m=x.minTranslate();else if(x.params.freeModeSticky){var h,v=0;for(v=0;v-m){h=v;break}m=Math.abs(x.snapGrid[h]-m)=x.params.longSwipesMs)&&(x.updateProgress(),x.updateActiveIndex()))}var f,w=0,y=x.slidesSizesGrid[0];for(f=0;f=x.slidesGrid[f]&&r=x.slidesGrid[f]&&(w=f,y=x.slidesGrid[x.slidesGrid.length-1]-x.slidesGrid[x.slidesGrid.length-2]);var T=(r-x.slidesGrid[w])/y;if(s>x.params.longSwipesMs){if(!x.params.longSwipes)return void x.slideTo(x.activeIndex);"next"===x.swipeDirection&&(T>=x.params.longSwipesRatio?x.slideTo(w+x.params.slidesPerGroup):x.slideTo(w)),"prev"===x.swipeDirection&&(T>1-x.params.longSwipesRatio?x.slideTo(w+x.params.slidesPerGroup):x.slideTo(w))}else{if(!x.params.shortSwipes)return void x.slideTo(x.activeIndex);"next"===x.swipeDirection&&x.slideTo(w+x.params.slidesPerGroup),"prev"===x.swipeDirection&&x.slideTo(w)}}},x._slideTo=function(e,a){return x.slideTo(e,a,!0,!0)},x.slideTo=function(e,a,t,s){void 0===t&&(t=!0),void 0===e&&(e=0),e<0&&(e=0),x.snapIndex=Math.floor(e/x.params.slidesPerGroup),x.snapIndex>=x.snapGrid.length&&(x.snapIndex=x.snapGrid.length-1);var r=-x.snapGrid[x.snapIndex];if(x.params.autoplay&&x.autoplaying&&(s||!x.params.autoplayDisableOnInteraction?x.pauseAutoplay(a):x.stopAutoplay()),x.updateProgress(r),x.params.normalizeSlideIndex)for(var i=0;i=Math.floor(100*x.slidesGrid[i])&&(e=i);return!(!x.params.allowSwipeToNext&&rx.translate&&r>x.maxTranslate()&&(x.activeIndex||0)!==e)&&(void 0===a&&(a=x.params.speed),x.previousIndex=x.activeIndex||0,x.activeIndex=e,x.updateRealIndex(),x.rtl&&-r===x.translate||!x.rtl&&r===x.translate?(x.params.autoHeight&&x.updateAutoHeight(),x.updateClasses(),"slide"!==x.params.effect&&x.setWrapperTranslate(r),!1):(x.updateClasses(),x.onTransitionStart(t),0===a||x.browser.lteIE9?(x.setWrapperTranslate(r),x.setWrapperTransition(0),x.onTransitionEnd(t)):(x.setWrapperTranslate(r),x.setWrapperTransition(a),x.animating||(x.animating=!0,x.wrapper.transitionEnd(function(){x&&x.onTransitionEnd(t)}))),!0)))},x.onTransitionStart=function(e){void 0===e&&(e=!0),x.params.autoHeight&&x.updateAutoHeight(),x.lazy&&x.lazy.onTransitionStart(),e&&(x.emit("onTransitionStart",x),x.activeIndex!==x.previousIndex&&(x.emit("onSlideChangeStart",x),x.activeIndex>x.previousIndex?x.emit("onSlideNextStart",x):x.emit("onSlidePrevStart",x)))},x.onTransitionEnd=function(e){x.animating=!1,x.setWrapperTransition(0),void 0===e&&(e=!0),x.lazy&&x.lazy.onTransitionEnd(),e&&(x.emit("onTransitionEnd",x),x.activeIndex!==x.previousIndex&&(x.emit("onSlideChangeEnd",x),x.activeIndex>x.previousIndex?x.emit("onSlideNextEnd",x):x.emit("onSlidePrevEnd",x))),x.params.history&&x.history&&x.history.setHistory(x.params.history,x.activeIndex),x.params.hashnav&&x.hashnav&&x.hashnav.setHash()},x.slideNext=function(e,a,t){if(x.params.loop){if(x.animating)return!1;x.fixLoop();x.container[0].clientLeft;return x.slideTo(x.activeIndex+x.params.slidesPerGroup,a,e,t)}return x.slideTo(x.activeIndex+x.params.slidesPerGroup,a,e,t)},x._slideNext=function(e){return x.slideNext(!0,e,!0)},x.slidePrev=function(e,a,t){if(x.params.loop){if(x.animating)return!1;x.fixLoop();x.container[0].clientLeft;return x.slideTo(x.activeIndex-1,a,e,t)}return x.slideTo(x.activeIndex-1,a,e,t)},x._slidePrev=function(e){return x.slidePrev(!0,e,!0)},x.slideReset=function(e,a,t){return x.slideTo(x.activeIndex,a,e)},x.disableTouchControl=function(){return x.params.onlyExternal=!0,!0},x.enableTouchControl=function(){return x.params.onlyExternal=!1,!0},x.setWrapperTransition=function(e,a){x.wrapper.transition(e),"slide"!==x.params.effect&&x.effects[x.params.effect]&&x.effects[x.params.effect].setTransition(e),x.params.parallax&&x.parallax&&x.parallax.setTransition(e),x.params.scrollbar&&x.scrollbar&&x.scrollbar.setTransition(e),x.params.control&&x.controller&&x.controller.setTransition(e,a),x.emit("onSetTransition",x,e)},x.setWrapperTranslate=function(e,a,t){var s=0,i=0;x.isHorizontal()?s=x.rtl?-e:e:i=e,x.params.roundLengths&&(s=r(s),i=r(i)),x.params.virtualTranslate||(x.support.transforms3d?x.wrapper.transform("translate3d("+s+"px, "+i+"px, 0px)"):x.wrapper.transform("translate("+s+"px, "+i+"px)")),x.translate=x.isHorizontal()?s:i;var n,o=x.maxTranslate()-x.minTranslate();n=0===o?0:(e-x.minTranslate())/o,n!==x.progress&&x.updateProgress(e),a&&x.updateActiveIndex(),"slide"!==x.params.effect&&x.effects[x.params.effect]&&x.effects[x.params.effect].setTranslate(x.translate),x.params.parallax&&x.parallax&&x.parallax.setTranslate(x.translate),x.params.scrollbar&&x.scrollbar&&x.scrollbar.setTranslate(x.translate),x.params.control&&x.controller&&x.controller.setTranslate(x.translate,t),x.emit("onSetTranslate",x,x.translate)},x.getTranslate=function(e,a){var t,s,r,i;return void 0===a&&(a="x"),x.params.virtualTranslate?x.rtl?-x.translate:x.translate:(r=window.getComputedStyle(e,null),window.WebKitCSSMatrix?(s=r.transform||r.webkitTransform,s.split(",").length>6&&(s=s.split(", ").map(function(e){return e.replace(",",".")}).join(", ")),i=new window.WebKitCSSMatrix("none"===s?"":s)):(i=r.MozTransform||r.OTransform||r.MsTransform||r.msTransform||r.transform||r.getPropertyValue("transform").replace("translate(","matrix(1, 0, 0, 1,"),t=i.toString().split(",")),"x"===a&&(s=window.WebKitCSSMatrix?i.m41:16===t.length?parseFloat(t[12]):parseFloat(t[4])),"y"===a&&(s=window.WebKitCSSMatrix?i.m42:16===t.length?parseFloat(t[13]):parseFloat(t[5])),x.rtl&&s&&(s=-s),s||0)},x.getWrapperTranslate=function(e){return void 0===e&&(e=x.isHorizontal()?"x":"y"),x.getTranslate(x.wrapper[0],e)},x.observers=[],x.initObservers=function(){if(x.params.observeParents)for(var e=x.container.parents(),a=0;aa.length&&(x.loopedSlides=a.length);var t,s=[],r=[];for(a.each(function(t,i){var n=e(this);t=a.length-x.loopedSlides&&s.push(i),n.attr("data-swiper-slide-index",t)}),t=0;t=0;t--)x.wrapper.prepend(e(s[t].cloneNode(!0)).addClass(x.params.slideDuplicateClass))},x.destroyLoop=function(){x.wrapper.children("."+x.params.slideClass+"."+x.params.slideDuplicateClass).remove(),x.slides.removeAttr("data-swiper-slide-index")},x.reLoop=function(e){var a=x.activeIndex-x.loopedSlides;x.destroyLoop(),x.createLoop(),x.updateSlidesSize(),e&&x.slideTo(a+x.loopedSlides,0,!1)},x.fixLoop=function(){var e;x.activeIndex=2*x.loopedSlides||x.activeIndex>x.slides.length-2*x.params.slidesPerView)&&(e=-x.slides.length+x.activeIndex+x.loopedSlides,e+=x.loopedSlides,x.slideTo(e,0,!1,!0))},x.appendSlide=function(e){if(x.params.loop&&x.destroyLoop(),"object"==typeof e&&e.length)for(var a=0;a
'),t.append(d)),0===m.length&&(m=e('
'),t.append(m)),d.length&&(d[0].style.opacity=Math.max(-s,0)),m.length&&(m[0].style.opacity=Math.max(s,0))}t.transform("translate3d("+l+"px, "+p+"px, 0px) rotateX("+o+"deg) rotateY("+n+"deg)")}},setTransition:function(a){if(x.slides.transition(a).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(a),x.params.virtualTranslate&&0!==a){var t=!1;x.slides.eq(x.activeIndex).transitionEnd(function(){if(!t&&x&&e(this).hasClass(x.params.slideActiveClass)){t=!0,x.animating=!1;for(var a=["webkitTransitionEnd","transitionend","oTransitionEnd","MSTransitionEnd","msTransitionEnd"],s=0;s
'),x.wrapper.append(a)),a.css({height:x.width+"px"})):(a=x.container.find(".swiper-cube-shadow"),0===a.length&&(a=e('
'),x.container.append(a))));for(var s=0;s-1&&(t=90*s+90*o,x.rtl&&(t=90*-s-90*o)),r.transform(m),x.params.cube.slideShadows){var u=x.isHorizontal()?r.find(".swiper-slide-shadow-left"):r.find(".swiper-slide-shadow-top"),c=x.isHorizontal()?r.find(".swiper-slide-shadow-right"):r.find(".swiper-slide-shadow-bottom");0===u.length&&(u=e('
'),r.append(u)),0===c.length&&(c=e('
'),r.append(c)),u.length&&(u[0].style.opacity=Math.max(-o,0)),c.length&&(c[0].style.opacity=Math.max(o,0))}}if(x.wrapper.css({"-webkit-transform-origin":"50% 50% -"+x.size/2+"px","-moz-transform-origin":"50% 50% -"+x.size/2+"px","-ms-transform-origin":"50% 50% -"+x.size/2+"px","transform-origin":"50% 50% -"+x.size/2+"px"}),x.params.cube.shadow)if(x.isHorizontal())a.transform("translate3d(0px, "+(x.width/2+x.params.cube.shadowOffset)+"px, "+-x.width/2+"px) rotateX(90deg) rotateZ(0deg) scale("+x.params.cube.shadowScale+")");else{var g=Math.abs(t)-90*Math.floor(Math.abs(t)/90),h=1.5-(Math.sin(2*g*Math.PI/360)/2+Math.cos(2*g*Math.PI/360)/2),v=x.params.cube.shadowScale,f=x.params.cube.shadowScale/h,w=x.params.cube.shadowOffset;a.transform("scale3d("+v+", 1, "+f+") translate3d(0px, "+(x.height/2+w)+"px, "+-x.height/2/f+"px) rotateX(-90deg)")}var y=x.isSafari||x.isUiWebView?-x.size/2:0;x.wrapper.transform("translate3d(0px,0,"+y+"px) rotateX("+(x.isHorizontal()?0:t)+"deg) rotateY("+(x.isHorizontal()?-t:0)+"deg)")},setTransition:function(e){x.slides.transition(e).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(e),x.params.cube.shadow&&!x.isHorizontal()&&x.container.find(".swiper-cube-shadow").transition(e)}},coverflow:{setTranslate:function(){for(var a=x.translate,t=x.isHorizontal()?-a+x.width/2:-a+x.height/2,s=x.isHorizontal()?x.params.coverflow.rotate:-x.params.coverflow.rotate,r=x.params.coverflow.depth,i=0,n=x.slides.length;i
'),o.append(f)),0===w.length&&(w=e('
'),o.append(w)),f.length&&(f[0].style.opacity=d>0?d:0),w.length&&(w[0].style.opacity=-d>0?-d:0)}}if(x.browser.ie){x.wrapper[0].style.perspectiveOrigin=t+"px 50%"}},setTransition:function(e){x.slides.transition(e).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(e)}}},x.lazy={initialImageLoaded:!1,loadImageInSlide:function(a,t){if(void 0!==a&&(void 0===t&&(t=!0),0!==x.slides.length)){var s=x.slides.eq(a),r=s.find("."+x.params.lazyLoadingClass+":not(."+x.params.lazyStatusLoadedClass+"):not(."+x.params.lazyStatusLoadingClass+")");!s.hasClass(x.params.lazyLoadingClass)||s.hasClass(x.params.lazyStatusLoadedClass)||s.hasClass(x.params.lazyStatusLoadingClass)||(r=r.add(s[0])),0!==r.length&&r.each(function(){var a=e(this);a.addClass(x.params.lazyStatusLoadingClass);var r=a.attr("data-background"),i=a.attr("data-src"),n=a.attr("data-srcset"),o=a.attr("data-sizes");x.loadImage(a[0],i||r,n,o,!1,function(){if(void 0!==x&&null!==x&&x){if(r?(a.css("background-image",'url("'+r+'")'),a.removeAttr("data-background")):(n&&(a.attr("srcset",n),a.removeAttr("data-srcset")),o&&(a.attr("sizes",o),a.removeAttr("data-sizes")),i&&(a.attr("src",i),a.removeAttr("data-src"))),a.addClass(x.params.lazyStatusLoadedClass).removeClass(x.params.lazyStatusLoadingClass),s.find("."+x.params.lazyPreloaderClass+", ."+x.params.preloaderClass).remove(),x.params.loop&&t){var e=s.attr("data-swiper-slide-index");if(s.hasClass(x.params.slideDuplicateClass)){var l=x.wrapper.children('[data-swiper-slide-index="'+e+'"]:not(.'+x.params.slideDuplicateClass+")");x.lazy.loadImageInSlide(l.index(),!1)}else{var p=x.wrapper.children("."+x.params.slideDuplicateClass+'[data-swiper-slide-index="'+e+'"]');x.lazy.loadImageInSlide(p.index(),!1)}}x.emit("onLazyImageReady",x,s[0],a[0])}}),x.emit("onLazyImageLoad",x,s[0],a[0])})}},load:function(){var a,t=x.params.slidesPerView;if("auto"===t&&(t=0),x.lazy.initialImageLoaded||(x.lazy.initialImageLoaded=!0),x.params.watchSlidesVisibility)x.wrapper.children("."+x.params.slideVisibleClass).each(function(){x.lazy.loadImageInSlide(e(this).index())});else if(t>1)for(a=x.activeIndex;a1||x.params.lazyLoadingInPrevNextAmount&&x.params.lazyLoadingInPrevNextAmount>1){var s=x.params.lazyLoadingInPrevNextAmount,r=t,i=Math.min(x.activeIndex+r+Math.max(s,r),x.slides.length),n=Math.max(x.activeIndex-Math.max(r,s),0);for(a=x.activeIndex+t;a0&&x.lazy.loadImageInSlide(o.index());var l=x.wrapper.children("."+x.params.slidePrevClass);l.length>0&&x.lazy.loadImageInSlide(l.index())}},onTransitionStart:function(){x.params.lazyLoading&&(x.params.lazyLoadingOnTransitionStart||!x.params.lazyLoadingOnTransitionStart&&!x.lazy.initialImageLoaded)&&x.lazy.load()},onTransitionEnd:function(){x.params.lazyLoading&&!x.params.lazyLoadingOnTransitionStart&&x.lazy.load()}},x.scrollbar={isTouched:!1,setDragPosition:function(e){var a=x.scrollbar,t=x.isHorizontal()?"touchstart"===e.type||"touchmove"===e.type?e.targetTouches[0].pageX:e.pageX||e.clientX:"touchstart"===e.type||"touchmove"===e.type?e.targetTouches[0].pageY:e.pageY||e.clientY,s=t-a.track.offset()[x.isHorizontal()?"left":"top"]-a.dragSize/2,r=-x.minTranslate()*a.moveDivider,i=-x.maxTranslate()*a.moveDivider;si&&(s=i),s=-s/a.moveDivider,x.updateProgress(s),x.setWrapperTranslate(s,!0)},dragStart:function(e){var a=x.scrollbar;a.isTouched=!0,e.preventDefault(),e.stopPropagation(),a.setDragPosition(e),clearTimeout(a.dragTimeout),a.track.transition(0),x.params.scrollbarHide&&a.track.css("opacity",1),x.wrapper.transition(100),a.drag.transition(100),x.emit("onScrollbarDragStart",x)},dragMove:function(e){var a=x.scrollbar;a.isTouched&&(e.preventDefault?e.preventDefault():e.returnValue=!1,a.setDragPosition(e),x.wrapper.transition(0),a.track.transition(0),a.drag.transition(0),x.emit("onScrollbarDragMove",x))},dragEnd:function(e){var a=x.scrollbar;a.isTouched&&(a.isTouched=!1,x.params.scrollbarHide&&(clearTimeout(a.dragTimeout),a.dragTimeout=setTimeout(function(){a.track.css("opacity",0),a.track.transition(400)},1e3)),x.emit("onScrollbarDragEnd",x),x.params.scrollbarSnapOnRelease&&x.slideReset())},draggableEvents:function(){return x.params.simulateTouch!==!1||x.support.touch?x.touchEvents:x.touchEventsDesktop}(),enableDraggable:function(){var a=x.scrollbar,t=x.support.touch?a.track:document;e(a.track).on(a.draggableEvents.start,a.dragStart),e(t).on(a.draggableEvents.move,a.dragMove),e(t).on(a.draggableEvents.end,a.dragEnd)},disableDraggable:function(){var a=x.scrollbar,t=x.support.touch?a.track:document;e(a.track).off(a.draggableEvents.start,a.dragStart),e(t).off(a.draggableEvents.move,a.dragMove),e(t).off(a.draggableEvents.end,a.dragEnd)},set:function(){if(x.params.scrollbar){var a=x.scrollbar;a.track=e(x.params.scrollbar),x.params.uniqueNavElements&&"string"==typeof x.params.scrollbar&&a.track.length>1&&1===x.container.find(x.params.scrollbar).length&&(a.track=x.container.find(x.params.scrollbar)),a.drag=a.track.find(".swiper-scrollbar-drag"),0===a.drag.length&&(a.drag=e('
'),a.track.append(a.drag)),a.drag[0].style.width="",a.drag[0].style.height="",a.trackSize=x.isHorizontal()?a.track[0].offsetWidth:a.track[0].offsetHeight,a.divider=x.size/x.virtualSize,a.moveDivider=a.divider*(a.trackSize/x.size),a.dragSize=a.trackSize*a.divider,x.isHorizontal()?a.drag[0].style.width=a.dragSize+"px":a.drag[0].style.height=a.dragSize+"px",a.divider>=1?a.track[0].style.display="none":a.track[0].style.display="",x.params.scrollbarHide&&(a.track[0].style.opacity=0)}},setTranslate:function(){if(x.params.scrollbar){var e,a=x.scrollbar,t=(x.translate,a.dragSize);e=(a.trackSize-a.dragSize)*x.progress,x.rtl&&x.isHorizontal()?(e=-e,e>0?(t=a.dragSize-e,e=0):-e+a.dragSize>a.trackSize&&(t=a.trackSize+e)):e<0?(t=a.dragSize+e,e=0):e+a.dragSize>a.trackSize&&(t=a.trackSize-e),x.isHorizontal()?(x.support.transforms3d?a.drag.transform("translate3d("+e+"px, 0, 0)"):a.drag.transform("translateX("+e+"px)"),a.drag[0].style.width=t+"px"):(x.support.transforms3d?a.drag.transform("translate3d(0px, "+e+"px, 0)"):a.drag.transform("translateY("+e+"px)"),a.drag[0].style.height=t+"px"),x.params.scrollbarHide&&(clearTimeout(a.timeout),a.track[0].style.opacity=1,a.timeout=setTimeout(function(){a.track[0].style.opacity=0,a.track.transition(400)},1e3))}},setTransition:function(e){x.params.scrollbar&&x.scrollbar.drag.transition(e)}},x.controller={LinearSpline:function(e,a){var t=function(){var e,a,t;return function(s,r){for(a=-1,e=s.length;e-a>1;)s[t=e+a>>1]<=r?a=t:e=t;return e}}();this.x=e,this.y=a,this.lastIndex=e.length-1;var s,r;this.x.length;this.interpolate=function(e){return e?(r=t(this.x,e),s=r-1,(e-this.x[s])*(this.y[r]-this.y[s])/(this.x[r]-this.x[s])+this.y[s]):0}},getInterpolateFunction:function(e){x.controller.spline||(x.controller.spline=x.params.loop?new x.controller.LinearSpline(x.slidesGrid,e.slidesGrid):new x.controller.LinearSpline(x.snapGrid,e.snapGrid))},setTranslate:function(e,t){function s(a){e=a.rtl&&"horizontal"===a.params.direction?-x.translate:x.translate,"slide"===x.params.controlBy&&(x.controller.getInterpolateFunction(a),i=-x.controller.spline.interpolate(-e)),i&&"container"!==x.params.controlBy||(r=(a.maxTranslate()-a.minTranslate())/(x.maxTranslate()-x.minTranslate()),i=(e-x.minTranslate())*r+a.minTranslate()),x.params.controlInverse&&(i=a.maxTranslate()-i),a.updateProgress(i),a.setWrapperTranslate(i,!1,x),a.updateActiveIndex()}var r,i,n=x.params.control;if(Array.isArray(n))for(var o=0;o-1?"DOMMouseScroll":function(){var e="onwheel"in document;if(!e){var a=document.createElement("div");a.setAttribute("onwheel","return;"),e="function"==typeof a.onwheel}return!e&&document.implementation&&document.implementation.hasFeature&&document.implementation.hasFeature("","")!==!0&&(e=document.implementation.hasFeature("Events.wheel","3.0")),e}()?"wheel":"mousewheel"),x.disableMousewheelControl=function(){if(!x.mousewheel.event)return!1;var a=x.container;return"container"!==x.params.mousewheelEventsTarged&&(a=e(x.params.mousewheelEventsTarged)),a.off(x.mousewheel.event,d),x.params.mousewheelControl=!1,!0},x.enableMousewheelControl=function(){if(!x.mousewheel.event)return!1;var a=x.container;return"container"!==x.params.mousewheelEventsTarged&&(a=e(x.params.mousewheelEventsTarged)),a.on(x.mousewheel.event,d),x.params.mousewheelControl=!0,!0},x.parallax={setTranslate:function(){x.container.children("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y]").each(function(){m(this,x.progress)}),x.slides.each(function(){var a=e(this);a.find("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y]").each(function(){m(this,Math.min(Math.max(a[0].progress,-1),1))})})},setTransition:function(a){void 0===a&&(a=x.params.speed),x.container.find("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y]").each(function(){var t=e(this),s=parseInt(t.attr("data-swiper-parallax-duration"),10)||a;0===a&&(s=0),t.transition(s)})}},x.zoom={scale:1,currentScale:1,isScaling:!1,gesture:{slide:void 0,slideWidth:void 0,slideHeight:void 0,image:void 0,imageWrap:void 0,zoomMax:x.params.zoomMax},image:{isTouched:void 0,isMoved:void 0,currentX:void 0,currentY:void 0,minX:void 0,minY:void 0,maxX:void 0,maxY:void 0,width:void 0,height:void 0,startX:void 0,startY:void 0,touchesStart:{},touchesCurrent:{}},velocity:{x:void 0,y:void 0,prevPositionX:void 0,prevPositionY:void 0,prevTime:void 0},getDistanceBetweenTouches:function(e){if(e.targetTouches.length<2)return 1;var a=e.targetTouches[0].pageX,t=e.targetTouches[0].pageY,s=e.targetTouches[1].pageX,r=e.targetTouches[1].pageY;return Math.sqrt(Math.pow(s-a,2)+Math.pow(r-t,2))},onGestureStart:function(a){var t=x.zoom;if(!x.support.gestures){if("touchstart"!==a.type||"touchstart"===a.type&&a.targetTouches.length<2)return;t.gesture.scaleStart=t.getDistanceBetweenTouches(a)}if(!(t.gesture.slide&&t.gesture.slide.length||(t.gesture.slide=e(this),0===t.gesture.slide.length&&(t.gesture.slide=x.slides.eq(x.activeIndex)),t.gesture.image=t.gesture.slide.find("img, svg, canvas"),t.gesture.imageWrap=t.gesture.image.parent("."+x.params.zoomContainerClass),t.gesture.zoomMax=t.gesture.imageWrap.attr("data-swiper-zoom")||x.params.zoomMax,0!==t.gesture.imageWrap.length)))return void(t.gesture.image=void 0);t.gesture.image.transition(0),t.isScaling=!0},onGestureChange:function(e){var a=x.zoom;if(!x.support.gestures){if("touchmove"!==e.type||"touchmove"===e.type&&e.targetTouches.length<2)return;a.gesture.scaleMove=a.getDistanceBetweenTouches(e)}a.gesture.image&&0!==a.gesture.image.length&&(x.support.gestures?a.scale=e.scale*a.currentScale:a.scale=a.gesture.scaleMove/a.gesture.scaleStart*a.currentScale,a.scale>a.gesture.zoomMax&&(a.scale=a.gesture.zoomMax-1+Math.pow(a.scale-a.gesture.zoomMax+1,.5)),a.scalea.image.touchesStart.x)return void(a.image.isTouched=!1);if(!x.isHorizontal()&&Math.floor(a.image.minY)===Math.floor(a.image.startY)&&a.image.touchesCurrent.ya.image.touchesStart.y)return void(a.image.isTouched=!1)}e.preventDefault(),e.stopPropagation(),a.image.isMoved=!0,a.image.currentX=a.image.touchesCurrent.x-a.image.touchesStart.x+a.image.startX,a.image.currentY=a.image.touchesCurrent.y-a.image.touchesStart.y+a.image.startY,a.image.currentXa.image.maxX&&(a.image.currentX=a.image.maxX-1+Math.pow(a.image.currentX-a.image.maxX+1,.8)),a.image.currentYa.image.maxY&&(a.image.currentY=a.image.maxY-1+Math.pow(a.image.currentY-a.image.maxY+1,.8)),a.velocity.prevPositionX||(a.velocity.prevPositionX=a.image.touchesCurrent.x),a.velocity.prevPositionY||(a.velocity.prevPositionY=a.image.touchesCurrent.y),a.velocity.prevTime||(a.velocity.prevTime=Date.now()),a.velocity.x=(a.image.touchesCurrent.x-a.velocity.prevPositionX)/(Date.now()-a.velocity.prevTime)/2,a.velocity.y=(a.image.touchesCurrent.y-a.velocity.prevPositionY)/(Date.now()-a.velocity.prevTime)/2,Math.abs(a.image.touchesCurrent.x-a.velocity.prevPositionX)<2&&(a.velocity.x=0),Math.abs(a.image.touchesCurrent.y-a.velocity.prevPositionY)<2&&(a.velocity.y=0),a.velocity.prevPositionX=a.image.touchesCurrent.x,a.velocity.prevPositionY=a.image.touchesCurrent.y,a.velocity.prevTime=Date.now(),a.gesture.imageWrap.transform("translate3d("+a.image.currentX+"px, "+a.image.currentY+"px,0)")}}},onTouchEnd:function(e,a){var t=e.zoom;if(t.gesture.image&&0!==t.gesture.image.length){if(!t.image.isTouched||!t.image.isMoved)return t.image.isTouched=!1,void(t.image.isMoved=!1);t.image.isTouched=!1,t.image.isMoved=!1;var s=300,r=300,i=t.velocity.x*s,n=t.image.currentX+i,o=t.velocity.y*r,l=t.image.currentY+o;0!==t.velocity.x&&(s=Math.abs((n-t.image.currentX)/t.velocity.x)),0!==t.velocity.y&&(r=Math.abs((l-t.image.currentY)/t.velocity.y));var p=Math.max(s,r);t.image.currentX=n,t.image.currentY=l;var d=t.image.width*t.scale,m=t.image.height*t.scale;t.image.minX=Math.min(t.gesture.slideWidth/2-d/2,0),t.image.maxX=-t.image.minX,t.image.minY=Math.min(t.gesture.slideHeight/2-m/2,0),t.image.maxY=-t.image.minY,t.image.currentX=Math.max(Math.min(t.image.currentX,t.image.maxX),t.image.minX),t.image.currentY=Math.max(Math.min(t.image.currentY,t.image.maxY),t.image.minY),t.gesture.imageWrap.transition(p).transform("translate3d("+t.image.currentX+"px, "+t.image.currentY+"px,0)")}},onTransitionEnd:function(e){var a=e.zoom;a.gesture.slide&&e.previousIndex!==e.activeIndex&&(a.gesture.image.transform("translate3d(0,0,0) scale(1)"),a.gesture.imageWrap.transform("translate3d(0,0,0)"),a.gesture.slide=a.gesture.image=a.gesture.imageWrap=void 0,a.scale=a.currentScale=1)},toggleZoom:function(a,t){var s=a.zoom;if(s.gesture.slide||(s.gesture.slide=a.clickedSlide?e(a.clickedSlide):a.slides.eq(a.activeIndex),s.gesture.image=s.gesture.slide.find("img, svg, canvas"),s.gesture.imageWrap=s.gesture.image.parent("."+a.params.zoomContainerClass)),s.gesture.image&&0!==s.gesture.image.length){var r,i,n,o,l,p,d,m,u,c,g,h,v,f,w,y,x,T;void 0===s.image.touchesStart.x&&t?(r="touchend"===t.type?t.changedTouches[0].pageX:t.pageX,i="touchend"===t.type?t.changedTouches[0].pageY:t.pageY):(r=s.image.touchesStart.x,i=s.image.touchesStart.y),s.scale&&1!==s.scale?(s.scale=s.currentScale=1,s.gesture.imageWrap.transition(300).transform("translate3d(0,0,0)"),s.gesture.image.transition(300).transform("translate3d(0,0,0) scale(1)"),s.gesture.slide=void 0):(s.scale=s.currentScale=s.gesture.imageWrap.attr("data-swiper-zoom")||a.params.zoomMax,t?(x=s.gesture.slide[0].offsetWidth,T=s.gesture.slide[0].offsetHeight,n=s.gesture.slide.offset().left,o=s.gesture.slide.offset().top,l=n+x/2-r,p=o+T/2-i,u=s.gesture.image[0].offsetWidth,c=s.gesture.image[0].offsetHeight,g=u*s.scale,h=c*s.scale,v=Math.min(x/2-g/2,0),f=Math.min(T/2-h/2,0),w=-v,y=-f,d=l*s.scale,m=p*s.scale,dw&&(d=w),my&&(m=y)):(d=0,m=0),s.gesture.imageWrap.transition(300).transform("translate3d("+d+"px, "+m+"px,0)"),s.gesture.image.transition(300).transform("translate3d(0,0,0) scale("+s.scale+")"))}},attachEvents:function(a){var t=a?"off":"on";if(x.params.zoom){var s=(x.slides,!("touchstart"!==x.touchEvents.start||!x.support.passiveListener||!x.params.passiveListeners)&&{passive:!0,capture:!1});x.support.gestures?(x.slides[t]("gesturestart",x.zoom.onGestureStart,s),x.slides[t]("gesturechange",x.zoom.onGestureChange,s),x.slides[t]("gestureend",x.zoom.onGestureEnd,s)):"touchstart"===x.touchEvents.start&&(x.slides[t](x.touchEvents.start,x.zoom.onGestureStart,s),x.slides[t](x.touchEvents.move,x.zoom.onGestureChange,s),x.slides[t](x.touchEvents.end,x.zoom.onGestureEnd,s)),x[t]("touchStart",x.zoom.onTouchStart),x.slides.each(function(a,s){e(s).find("."+x.params.zoomContainerClass).length>0&&e(s)[t](x.touchEvents.move,x.zoom.onTouchMove)}),x[t]("touchEnd",x.zoom.onTouchEnd),x[t]("transitionEnd",x.zoom.onTransitionEnd),x.params.zoomToggle&&x.on("doubleTap",x.zoom.toggleZoom)}},init:function(){x.zoom.attachEvents()},destroy:function(){x.zoom.attachEvents(!0)}},x._plugins=[];for(var Y in x.plugins){var A=x.plugins[Y](x,x.params[Y]);A&&x._plugins.push(A)}return x.callPlugins=function(e){for(var a=0;a'),notify:function(e){var a=x.a11y.liveRegion;0!==a.length&&(a.html(""),a.html(e))},init:function(){x.params.nextButton&&x.nextButton&&x.nextButton.length>0&&(x.a11y.makeFocusable(x.nextButton),x.a11y.addRole(x.nextButton,"button"),x.a11y.addLabel(x.nextButton,x.params.nextSlideMessage)),x.params.prevButton&&x.prevButton&&x.prevButton.length>0&&(x.a11y.makeFocusable(x.prevButton),x.a11y.addRole(x.prevButton,"button"),x.a11y.addLabel(x.prevButton,x.params.prevSlideMessage)),e(x.container).append(x.a11y.liveRegion)},initPagination:function(){x.params.pagination&&x.params.paginationClickable&&x.bullets&&x.bullets.length&&x.bullets.each(function(){var a=e(this);x.a11y.makeFocusable(a),x.a11y.addRole(a,"button"),x.a11y.addLabel(a,x.params.paginationBulletMessage.replace(/{{index}}/,a.index()+1))})},destroy:function(){x.a11y.liveRegion&&x.a11y.liveRegion.length>0&&x.a11y.liveRegion.remove()}},x.init=function(){x.params.loop&&x.createLoop(),x.updateContainerSize(),x.updateSlidesSize(),x.updatePagination(),x.params.scrollbar&&x.scrollbar&&(x.scrollbar.set(),x.params.scrollbarDraggable&&x.scrollbar.enableDraggable()),"slide"!==x.params.effect&&x.effects[x.params.effect]&&(x.params.loop||x.updateProgress(),x.effects[x.params.effect].setTranslate()),x.params.loop?x.slideTo(x.params.initialSlide+x.loopedSlides,0,x.params.runCallbacksOnInit):(x.slideTo(x.params.initialSlide,0,x.params.runCallbacksOnInit),0===x.params.initialSlide&&(x.parallax&&x.params.parallax&&x.parallax.setTranslate(),x.lazy&&x.params.lazyLoading&&(x.lazy.load(),x.lazy.initialImageLoaded=!0))),x.attachEvents(),x.params.observer&&x.support.observer&&x.initObservers(),x.params.preloadImages&&!x.params.lazyLoading&&x.preloadImages(),x.params.zoom&&x.zoom&&x.zoom.init(),x.params.autoplay&&x.startAutoplay(),x.params.keyboardControl&&x.enableKeyboardControl&&x.enableKeyboardControl(),x.params.mousewheelControl&&x.enableMousewheelControl&&x.enableMousewheelControl(),x.params.hashnavReplaceState&&(x.params.replaceState=x.params.hashnavReplaceState),x.params.history&&x.history&&x.history.init(),x.params.hashnav&&x.hashnav&&x.hashnav.init(),x.params.a11y&&x.a11y&&x.a11y.init(),x.emit("onInit",x)},x.cleanupStyles=function(){x.container.removeClass(x.classNames.join(" ")).removeAttr("style"),x.wrapper.removeAttr("style"),x.slides&&x.slides.length&&x.slides.removeClass([x.params.slideVisibleClass,x.params.slideActiveClass,x.params.slideNextClass,x.params.slidePrevClass].join(" ")).removeAttr("style").removeAttr("data-swiper-column").removeAttr("data-swiper-row"),x.paginationContainer&&x.paginationContainer.length&&x.paginationContainer.removeClass(x.params.paginationHiddenClass),x.bullets&&x.bullets.length&&x.bullets.removeClass(x.params.bulletActiveClass),x.params.prevButton&&e(x.params.prevButton).removeClass(x.params.buttonDisabledClass),x.params.nextButton&&e(x.params.nextButton).removeClass(x.params.buttonDisabledClass),x.params.scrollbar&&x.scrollbar&&(x.scrollbar.track&&x.scrollbar.track.length&&x.scrollbar.track.removeAttr("style"),x.scrollbar.drag&&x.scrollbar.drag.length&&x.scrollbar.drag.removeAttr("style"))},x.destroy=function(e,a){x.detachEvents(),x.stopAutoplay(),x.params.scrollbar&&x.scrollbar&&x.params.scrollbarDraggable&&x.scrollbar.disableDraggable(),x.params.loop&&x.destroyLoop(),a&&x.cleanupStyles(),x.disconnectObservers(),x.params.zoom&&x.zoom&&x.zoom.destroy(),x.params.keyboardControl&&x.disableKeyboardControl&&x.disableKeyboardControl(),x.params.mousewheelControl&&x.disableMousewheelControl&&x.disableMousewheelControl(),x.params.a11y&&x.a11y&&x.a11y.destroy(),x.params.history&&!x.params.replaceState&&window.removeEventListener("popstate",x.history.setHistoryPopState),x.params.hashnav&&x.hashnav&&x.hashnav.destroy(),x.emit("onDestroy"),e!==!1&&(x=null)},x.init(),x}};a.prototype={isSafari:function(){var e=window.navigator.userAgent.toLowerCase();return e.indexOf("safari")>=0&&e.indexOf("chrome")<0&&e.indexOf("android")<0}(),isUiWebView:/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(window.navigator.userAgent),isArray:function(e){return"[object Array]"===Object.prototype.toString.apply(e)},browser:{ie:window.navigator.pointerEnabled||window.navigator.msPointerEnabled,ieTouch:window.navigator.msPointerEnabled&&window.navigator.msMaxTouchPoints>1||window.navigator.pointerEnabled&&window.navigator.maxTouchPoints>1,lteIE9:function(){var e=document.createElement("div");return e.innerHTML="",1===e.getElementsByTagName("i").length}()},device:function(){var e=window.navigator.userAgent,a=e.match(/(Android);?[\s\/]+([\d.]+)?/),t=e.match(/(iPad).*OS\s([\d_]+)/),s=e.match(/(iPod)(.*OS\s([\d_]+))?/),r=!t&&e.match(/(iPhone\sOS|iOS)\s([\d_]+)/);return{ios:t||r||s,android:a}}(),support:{touch:window.Modernizr&&Modernizr.touch===!0||function(){return!!("ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch)}(),transforms3d:window.Modernizr&&Modernizr.csstransforms3d===!0||function(){var e=document.createElement("div").style;return"webkitPerspective"in e||"MozPerspective"in e||"OPerspective"in e||"MsPerspective"in e||"perspective"in e}(),flexbox:function(){for(var e=document.createElement("div").style,a="alignItems webkitAlignItems webkitBoxAlign msFlexAlign mozBoxAlign webkitFlexDirection msFlexDirection mozBoxDirection mozBoxOrient webkitBoxDirection webkitBoxOrient".split(" "),t=0;t0?e?this[0].offsetWidth+parseFloat(this.css("margin-right"))+parseFloat(this.css("margin-left")):this[0].offsetWidth:null})),window.Swiper=a}(),"undefined"!=typeof module?module.exports=window.Swiper:"function"==typeof define&&define.amd&&define([],function(){"use strict";return window.Swiper}); + +/** + * @module jQuery Count To + * @author Matt Huggins + * @see https://github.com/mhuggins/jquery-countTo + * @license MIT + */ +!function(t){function e(t,e){return t.toFixed(e.decimals)}var o=function(e,i){this.$element=t(e),this.options=t.extend({},o.DEFAULTS,this.dataOptions(),i),this.init()};o.DEFAULTS={from:0,to:0,speed:1e3,refreshInterval:100,decimals:0,formatter:e,onUpdate:null,onComplete:null},o.prototype.init=function(){this.value=this.options.from,this.loops=Math.ceil(this.options.speed/this.options.refreshInterval),this.loopCount=0,this.increment=(this.options.to-this.options.from)/this.loops},o.prototype.dataOptions=function(){var t={from:this.$element.data("from"),to:this.$element.data("to"),speed:this.$element.data("speed"),refreshInterval:this.$element.data("refresh-interval"),decimals:this.$element.data("decimals")},e=Object.keys(t);for(var o in e){var i=e[o];"undefined"==typeof t[i]&&delete t[i]}return t},o.prototype.update=function(){this.value+=this.increment,this.loopCount++,this.render(),"function"==typeof this.options.onUpdate&&this.options.onUpdate.call(this.$element,this.value),this.loopCount>=this.loops&&(clearInterval(this.interval),this.value=this.options.to,"function"==typeof this.options.onComplete&&this.options.onComplete.call(this.$element,this.value))},o.prototype.render=function(){var t=this.options.formatter.call(this.$element,this.value,this.options);this.$element.text(t)},o.prototype.restart=function(){this.stop(),this.init(),this.start()},o.prototype.start=function(){this.stop(),this.render(),this.interval=setInterval(this.update.bind(this),this.options.refreshInterval)},o.prototype.stop=function(){this.interval&&clearInterval(this.interval)},o.prototype.toggle=function(){this.interval?this.stop():this.start()},t.fn.countTo=function(e){return this.each(function(){var i=t(this),n=i.data("countTo"),s=!n||"object"==typeof e,r="object"==typeof e?e:{},a="string"==typeof e?e:"start";s&&(n&&n.stop(),i.data("countTo",n=new o(this,r))),n[a].call(n)})}}(jQuery); + + +/** + * @module ProgressBar.js + * @see https://kimmobrunfeldt.github.io/progressbar.js + * @license: MIT + * @version 1.0.1 + */ +!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).ProgressBar=t()}}(function(){return function t(e,n,i){function r(s,a){if(!n[s]){if(!e[s]){var u="function"==typeof require&&require;if(!a&&u)return u(s,!0);if(o)return o(s,!0);var h=new Error("Cannot find module '"+s+"'");throw h.code="MODULE_NOT_FOUND",h}var c=n[s]={exports:{}};e[s][0].call(c.exports,function(t){var n=e[s][1][t];return r(n||t)},c,c.exports,t,e,n,i)}return n[s].exports}for(var o="function"==typeof require&&require,s=0;st?0:(t-o)/r;for(a in e)e.hasOwnProperty(a)&&(h=s[a],c="function"==typeof h?h:f[h],e[a]=u(n[a],i[a],c,p));return e}function u(t,e,n,i){return t+(e-t)*n(i)}function h(t,e){var n=l.prototype.filter,i=t._filterArgs;r(n,function(r){void 0!==n[r][e]&&n[r][e].apply(t,i)})}function c(t,e,n,i,r,o,s,u,c,p,l){m=e+n+i,v=Math.min(l||y(),m),S=v>=m,x=i-(m-v),t.isPlaying()&&(S?(c(s,t._attachment,x),t.stop(!0)):(t._scheduleId=p(t._timeoutHandler,g),h(t,"beforeTween"),e+n>v?a(1,r,o,s,1,1,u):a(v,r,o,s,i,e+n,u),h(t,"afterTween"),c(r,t._attachment,x)))}function p(t,e){var n={},i=typeof e;return"string"===i||"function"===i?r(t,function(t){n[t]=e}):r(t,function(t){n[t]||(n[t]=e[t]||d)}),n}function l(t,e){this._currentState=t||{},this._configured=!1,this._scheduleFunction=_,void 0!==e&&this.setConfig(e)}var f,_,d="linear",g=1e3/60,w=Date.now?Date.now:function(){return+new Date},y="undefined"!=typeof SHIFTY_DEBUG_NOW?SHIFTY_DEBUG_NOW:w;_="undefined"!=typeof window?window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||window.mozCancelRequestAnimationFrame&&window.mozRequestAnimationFrame||setTimeout:setTimeout;var m,v,S,x;return l.prototype.tween=function(t){return this._isTweening?this:(void 0===t&&this._configured||this.setConfig(t),this._timestamp=y(),this._start(this.get(),this._attachment),this.resume())},l.prototype.setConfig=function(t){t=t||{},this._configured=!0,this._attachment=t.attachment,this._pausedAtTime=null,this._scheduleId=null,this._delay=t.delay||0,this._start=t.start||i,this._step=t.step||i,this._finish=t.finish||i,this._duration=t.duration||500,this._currentState=o({},t.from)||this.get(),this._originalState=this.get(),this._targetState=o({},t.to)||this.get();var e=this;this._timeoutHandler=function(){c(e,e._timestamp,e._delay,e._duration,e._currentState,e._originalState,e._targetState,e._easing,e._step,e._scheduleFunction)};var n=this._currentState,r=this._targetState;return s(r,n),this._easing=p(n,t.easing||d),this._filterArgs=[n,this._originalState,r,this._easing],h(this,"tweenCreated"),this},l.prototype.get=function(){return o({},this._currentState)},l.prototype.set=function(t){this._currentState=t},l.prototype.pause=function(){return this._pausedAtTime=y(),this._isPaused=!0,this},l.prototype.resume=function(){return this._isPaused&&(this._timestamp+=y()-this._pausedAtTime),this._isPaused=!1,this._isTweening=!0,this._timeoutHandler(),this},l.prototype.seek=function(t){t=Math.max(t,0);var e=y();return this._timestamp+t===0?this:(this._timestamp=e-t,this.isPlaying()||(this._isTweening=!0,this._isPaused=!1,c(this,this._timestamp,this._delay,this._duration,this._currentState,this._originalState,this._targetState,this._easing,this._step,this._scheduleFunction,e),this.pause()),this)},l.prototype.stop=function(e){return this._isTweening=!1,this._isPaused=!1,this._timeoutHandler=i,(t.cancelAnimationFrame||t.webkitCancelAnimationFrame||t.oCancelAnimationFrame||t.msCancelAnimationFrame||t.mozCancelRequestAnimationFrame||t.clearTimeout)(this._scheduleId),e&&(h(this,"beforeTween"),a(1,this._currentState,this._originalState,this._targetState,1,0,this._easing),h(this,"afterTween"),h(this,"afterTweenEnd"),this._finish.call(this,this._currentState,this._attachment)),this},l.prototype.isPlaying=function(){return this._isTweening&&!this._isPaused},l.prototype.setScheduleFunction=function(t){this._scheduleFunction=t},l.prototype.dispose=function(){var t;for(t in this)this.hasOwnProperty(t)&&delete this[t]},l.prototype.filter={},l.prototype.formula={linear:function(t){return t}},f=l.prototype.formula,o(l,{now:y,each:r,tweenProps:a,tweenProp:u,applyFilter:h,shallowCopy:o,defaults:s,composeEasingObject:p}),"function"==typeof SHIFTY_DEBUG_NOW&&(t.timeoutHandler=c),"object"==typeof n?e.exports=l:void 0===t.Tweenable&&(t.Tweenable=l),l}();i.shallowCopy(i.prototype.formula,{easeInQuad:function(t){return Math.pow(t,2)},easeOutQuad:function(t){return-(Math.pow(t-1,2)-1)},easeInOutQuad:function(t){return(t/=.5)<1?.5*Math.pow(t,2):-.5*((t-=2)*t-2)},easeInCubic:function(t){return Math.pow(t,3)},easeOutCubic:function(t){return Math.pow(t-1,3)+1},easeInOutCubic:function(t){return(t/=.5)<1?.5*Math.pow(t,3):.5*(Math.pow(t-2,3)+2)},easeInQuart:function(t){return Math.pow(t,4)},easeOutQuart:function(t){return-(Math.pow(t-1,4)-1)},easeInOutQuart:function(t){return(t/=.5)<1?.5*Math.pow(t,4):-.5*((t-=2)*Math.pow(t,3)-2)},easeInQuint:function(t){return Math.pow(t,5)},easeOutQuint:function(t){return Math.pow(t-1,5)+1},easeInOutQuint:function(t){return(t/=.5)<1?.5*Math.pow(t,5):.5*(Math.pow(t-2,5)+2)},easeInSine:function(t){return 1-Math.cos(t*(Math.PI/2))},easeOutSine:function(t){return Math.sin(t*(Math.PI/2))},easeInOutSine:function(t){return-.5*(Math.cos(Math.PI*t)-1)},easeInExpo:function(t){return 0===t?0:Math.pow(2,10*(t-1))},easeOutExpo:function(t){return 1===t?1:1-Math.pow(2,-10*t)},easeInOutExpo:function(t){return 0===t?0:1===t?1:(t/=.5)<1?.5*Math.pow(2,10*(t-1)):.5*(2-Math.pow(2,-10*--t))},easeInCirc:function(t){return-(Math.sqrt(1-t*t)-1)},easeOutCirc:function(t){return Math.sqrt(1-Math.pow(t-1,2))},easeInOutCirc:function(t){return(t/=.5)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},easeOutBounce:function(t){return 1/2.75>t?7.5625*t*t:2/2.75>t?7.5625*(t-=1.5/2.75)*t+.75:2.5/2.75>t?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},easeInBack:function(t){var e=1.70158;return t*t*((e+1)*t-e)},easeOutBack:function(t){var e=1.70158;return(t-=1)*t*((e+1)*t+e)+1},easeInOutBack:function(t){var e=1.70158;return(t/=.5)<1?t*t*((1+(e*=1.525))*t-e)*.5:.5*((t-=2)*t*((1+(e*=1.525))*t+e)+2)},elastic:function(t){return-1*Math.pow(4,-8*t)*Math.sin((6*t-1)*(2*Math.PI)/2)+1},swingFromTo:function(t){var e=1.70158;return(t/=.5)<1?t*t*((1+(e*=1.525))*t-e)*.5:.5*((t-=2)*t*((1+(e*=1.525))*t+e)+2)},swingFrom:function(t){var e=1.70158;return t*t*((e+1)*t-e)},swingTo:function(t){var e=1.70158;return(t-=1)*t*((e+1)*t+e)+1},bounce:function(t){return 1/2.75>t?7.5625*t*t:2/2.75>t?7.5625*(t-=1.5/2.75)*t+.75:2.5/2.75>t?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},bouncePast:function(t){return 1/2.75>t?7.5625*t*t:2/2.75>t?2-(7.5625*(t-=1.5/2.75)*t+.75):2.5/2.75>t?2-(7.5625*(t-=2.25/2.75)*t+.9375):2-(7.5625*(t-=2.625/2.75)*t+.984375)},easeFromTo:function(t){return(t/=.5)<1?.5*Math.pow(t,4):-.5*((t-=2)*Math.pow(t,3)-2)},easeFrom:function(t){return Math.pow(t,4)},easeTo:function(t){return Math.pow(t,.25)}}),function(){function t(t,e,n,i,r,o){function s(t){return((p*t+l)*t+f)*t}function a(t){return((_*t+d)*t+g)*t}function u(t){return(3*p*t+2*l)*t+f}function h(t){return t>=0?t:0-t}function c(t,e){var n,i,r,o,a,c;for(r=t,c=0;8>c;c++){if(o=s(r)-t,h(o)r)return n;if(r>i)return i;for(;i>n;){if(o=s(r),h(o-t)o?n=r:i=r,r=.5*(i-n)+n}return r}var p=0,l=0,f=0,_=0,d=0,g=0;return f=3*e,l=3*(i-e)-f,p=1-f-l,g=3*n,d=3*(r-n)-g,_=1-g-d,a(c(t,1/(200*o)))}function e(e,n,i,r){return function(o){return t(o,e,n,i,r,1)}}i.setBezierFunction=function(t,n,r,o,s){var a=e(n,r,o,s);return a.displayName=t,a.x1=n,a.y1=r,a.x2=o,a.y2=s,i.prototype.formula[t]=a},i.unsetBezierFunction=function(t){delete i.prototype.formula[t]}}(),function(){function t(t,e,n,r,o,s){return i.tweenProps(r,e,t,n,1,s,o)}var e=new i;e._filterArgs=[],i.interpolate=function(n,r,o,s,a){var u=i.shallowCopy({},n),h=a||0,c=i.composeEasingObject(n,s||"linear");e.set({});var p=e._filterArgs;p.length=0,p[0]=u,p[1]=n,p[2]=r,p[3]=c,i.applyFilter(e,"tweenCreated"),i.applyFilter(e,"beforeTween");var l=t(n,u,r,o,c,h);return i.applyFilter(e,"afterTween"),l}}(),function(t){function e(t,e){var n,i=[],r=t.length;for(n=0;r>n;n++)i.push("_"+e+"_"+n);return i}function n(t){var e=t.match(S);return e?(1===e.length||t[0].match(v))&&e.unshift(""):e=["",""],e.join(O)}function i(e){t.each(e,function(t){var n=e[t];"string"==typeof n&&n.match(T)&&(e[t]=r(n))})}function r(t){return u(T,t,o)}function o(t){var e=s(t);return"rgb("+e[0]+","+e[1]+","+e[2]+")"}function s(t){return 3===(t=t.replace(/#/,"")).length&&(t=t.split(""),t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]),P[0]=a(t.substr(0,2)),P[1]=a(t.substr(2,2)),P[2]=a(t.substr(4,2)),P}function a(t){return parseInt(t,16)}function u(t,e,n){var i=e.match(t),r=e.replace(t,O);if(i)for(var o,s=i.length,a=0;s>a;a++)o=i.shift(),r=r.replace(O,n(o));return r}function h(t){return u(b,t,c)}function c(t){for(var e=t.match(x),n=e.length,i=t.match(C)[0],r=0;n>r;r++)i+=parseInt(e[r],10)+",";return i=i.slice(0,-1)+")"}function p(i){var r={};return t.each(i,function(t){var o=i[t];if("string"==typeof o){var s=w(o);r[t]={formatString:n(o),chunkNames:e(s,t)}}}),r}function l(e,n){t.each(n,function(t){for(var i=w(e[t]),r=i.length,o=0;r>o;o++)e[n[t].chunkNames[o]]=+i[o];delete e[t]})}function f(e,n){t.each(n,function(t){var i=e[t],r=d(_(e,n[t].chunkNames),n[t].chunkNames);i=g(n[t].formatString,r),e[t]=h(i)})}function _(t,e){for(var n,i={},r=e.length,o=0;r>o;o++)n=e[o],i[n]=t[n],delete t[n];return i}function d(t,e){M.length=0;for(var n=e.length,i=0;n>i;i++)M.push(t[e[i]]);return M}function g(t,e){for(var n=t,i=e.length,r=0;i>r;r++)n=n.replace(O,+e[r].toFixed(4));return n}function w(t){return t.match(x)}function y(e,n){t.each(n,function(t){var i,r=n[t].chunkNames,o=r.length,s=e[t];if("string"==typeof s){var a=s.split(" "),u=a[a.length-1];for(i=0;o>i;i++)e[r[i]]=a[i]||u}else for(i=0;o>i;i++)e[r[i]]=s;delete e[t]})}function m(e,n){t.each(n,function(t){var i=n[t].chunkNames,r=i.length,o=e[i[0]];if("string"===typeof o){for(var s="",a=0;r>a;a++)s+=" "+e[i[a]],delete e[i[a]];e[t]=s.substr(1)}else e[t]=o})}var v=/(\d|\-|\.)/,S=/([^\-0-9\.]+)/g,x=/[0-9.\-]+/g,b=new RegExp("rgb\\("+x.source+/,\s*/.source+x.source+/,\s*/.source+x.source+"\\)","g"),C=/^.*\(/,T=/#([0-9]|[a-f]){3,6}/gi,O="VAL",P=[],M=[];t.prototype.filter.token={tweenCreated:function(t,e,n,r){i(t),i(e),i(n),this._tokenData=p(t)},beforeTween:function(t,e,n,i){y(i,this._tokenData),l(t,this._tokenData),l(e,this._tokenData),l(n,this._tokenData)},afterTween:function(t,e,n,i){f(t,this._tokenData),f(e,this._tokenData),f(n,this._tokenData),m(i,this._tokenData)}}}(i)}).call(null)},{}],2:[function(t,e,n){var i=t("./shape"),r=t("./utils"),o=function(t,e){this._pathTemplate="M 50,50 m 0,-{radius} a {radius},{radius} 0 1 1 0,{2radius} a {radius},{radius} 0 1 1 0,-{2radius}",this.containerAspectRatio=1,i.apply(this,arguments)};(o.prototype=new i).constructor=o,o.prototype._pathString=function(t){var e=t.strokeWidth;t.trailWidth&&t.trailWidth>t.strokeWidth&&(e=t.trailWidth);var n=50-e/2;return r.render(this._pathTemplate,{radius:n,"2radius":2*n})},o.prototype._trailString=function(t){return this._pathString(t)},e.exports=o},{"./shape":7,"./utils":8}],3:[function(t,e,n){var i=t("./shape"),r=t("./utils"),o=function(t,e){this._pathTemplate="M 0,{center} L 100,{center}",i.apply(this,arguments)};(o.prototype=new i).constructor=o,o.prototype._initializeSvg=function(t,e){t.setAttribute("viewBox","0 0 100 "+e.strokeWidth),t.setAttribute("preserveAspectRatio","none")},o.prototype._pathString=function(t){return r.render(this._pathTemplate,{center:t.strokeWidth/2})},o.prototype._trailString=function(t){return this._pathString(t)},e.exports=o},{"./shape":7,"./utils":8}],4:[function(t,e,n){e.exports={Line:t("./line"),Circle:t("./circle"),SemiCircle:t("./semicircle"),Path:t("./path"),Shape:t("./shape"),utils:t("./utils")}},{"./circle":2,"./line":3,"./path":5,"./semicircle":6,"./shape":7,"./utils":8}],5:[function(t,e,n){var i=t("shifty"),r=t("./utils"),o={easeIn:"easeInCubic",easeOut:"easeOutCubic",easeInOut:"easeInOutCubic"},s=function t(e,n){if(!(this instanceof t))throw new Error("Constructor was called without new keyword");n=r.extend({duration:800,easing:"linear",from:{},to:{},step:function(){}},n);var i;i=r.isString(e)?document.querySelector(e):e,this.path=i,this._opts=n,this._tweenable=null;var o=this.path.getTotalLength();this.path.style.strokeDasharray=o+" "+o,this.set(0)};s.prototype.value=function(){var t=1-this._getComputedDashOffset()/this.path.getTotalLength();return parseFloat(t.toFixed(6),10)},s.prototype.set=function(t){this.stop(),this.path.style.strokeDashoffset=this._progressToOffset(t);var e=this._opts.step;if(r.isFunction(e)){var n=this._easing(this._opts.easing);e(this._calculateTo(t,n),this._opts.shape||this,this._opts.attachment)}},s.prototype.stop=function(){this._stopTween(),this.path.style.strokeDashoffset=this._getComputedDashOffset()},s.prototype.animate=function(t,e,n){e=e||{},r.isFunction(e)&&(n=e,e={});var o=r.extend({},e),s=r.extend({},this._opts);e=r.extend(s,e);var a=this._easing(e.easing),u=this._resolveFromAndTo(t,a,o);this.stop(),this.path.getBoundingClientRect();var h=this._getComputedDashOffset(),c=this._progressToOffset(t),p=this;this._tweenable=new i,this._tweenable.tween({from:r.extend({offset:h},u.from),to:r.extend({offset:c},u.to),duration:e.duration,easing:a,step:function(t){p.path.style.strokeDashoffset=t.offset;var n=e.shape||p;e.step(t,n,e.attachment)},finish:function(t){r.isFunction(n)&&n()}})},s.prototype._getComputedDashOffset=function(){var t=window.getComputedStyle(this.path,null);return parseFloat(t.getPropertyValue("stroke-dashoffset"),10)},s.prototype._progressToOffset=function(t){var e=this.path.getTotalLength();return e-t*e},s.prototype._resolveFromAndTo=function(t,e,n){return n.from&&n.to?{from:n.from,to:n.to}:{from:this._calculateFrom(e),to:this._calculateTo(t,e)}},s.prototype._calculateFrom=function(t){return i.interpolate(this._opts.from,this._opts.to,this.value(),t)},s.prototype._calculateTo=function(t,e){return i.interpolate(this._opts.from,this._opts.to,t,e)},s.prototype._stopTween=function(){null!==this._tweenable&&(this._tweenable.stop(),this._tweenable=null)},s.prototype._easing=function(t){return o.hasOwnProperty(t)?o[t]:t},e.exports=s},{"./utils":8,shifty:1}],6:[function(t,e,n){var i=t("./shape"),r=t("./circle"),o=t("./utils"),s=function(t,e){this._pathTemplate="M 50,50 m -{radius},0 a {radius},{radius} 0 1 1 {2radius},0",this.containerAspectRatio=2,i.apply(this,arguments)};(s.prototype=new i).constructor=s,s.prototype._initializeSvg=function(t,e){t.setAttribute("viewBox","0 0 100 50")},s.prototype._initializeTextContainer=function(t,e,n){t.text.style&&(n.style.top="auto",n.style.bottom="0",t.text.alignToBottom?o.setStyle(n,"transform","translate(-50%, 0)"):o.setStyle(n,"transform","translate(-50%, 50%)"))},s.prototype._pathString=r.prototype._pathString,s.prototype._trailString=r.prototype._trailString,e.exports=s},{"./circle":2,"./shape":7,"./utils":8}],7:[function(t,e,n){var i=t("./path"),r=t("./utils"),o="Object is destroyed",s=function t(e,n){if(!(this instanceof t))throw new Error("Constructor was called without new keyword");if(0!==arguments.length){this._opts=r.extend({color:"#555",strokeWidth:1,trailColor:null,trailWidth:null,fill:null,text:{style:{color:null,position:"absolute",left:"50%",top:"50%",padding:0,margin:0,transform:{prefix:!0,value:"translate(-50%, -50%)"}},autoStyleContainer:!0,alignToBottom:!0,value:null,className:"progressbar-text"},svgStyle:{display:"block",width:"100%"},warnings:!1},n,!0),r.isObject(n)&&void 0!==n.svgStyle&&(this._opts.svgStyle=n.svgStyle),r.isObject(n)&&r.isObject(n.text)&&void 0!==n.text.style&&(this._opts.text.style=n.text.style);var o,s=this._createSvgView(this._opts);if(!(o=r.isString(e)?document.querySelector(e):e))throw new Error("Container does not exist: "+e);this._container=o,this._container.appendChild(s.svg),this._opts.warnings&&this._warnContainerAspectRatio(this._container),this._opts.svgStyle&&r.setStyles(s.svg,this._opts.svgStyle),this.svg=s.svg,this.path=s.path,this.trail=s.trail,this.text=null;var a=r.extend({attachment:void 0,shape:this},this._opts);this._progressPath=new i(s.path,a),r.isObject(this._opts.text)&&null!==this._opts.text.value&&this.setText(this._opts.text.value)}};s.prototype.animate=function(t,e,n){if(null===this._progressPath)throw new Error(o);this._progressPath.animate(t,e,n)},s.prototype.stop=function(){if(null===this._progressPath)throw new Error(o);void 0!==this._progressPath&&this._progressPath.stop()},s.prototype.destroy=function(){if(null===this._progressPath)throw new Error(o);this.stop(),this.svg.parentNode.removeChild(this.svg),this.svg=null,this.path=null,this.trail=null,this._progressPath=null,null!==this.text&&(this.text.parentNode.removeChild(this.text),this.text=null)},s.prototype.set=function(t){if(null===this._progressPath)throw new Error(o);this._progressPath.set(t)},s.prototype.value=function(){if(null===this._progressPath)throw new Error(o);return void 0===this._progressPath?0:this._progressPath.value()},s.prototype.setText=function(t){if(null===this._progressPath)throw new Error(o);null===this.text&&(this.text=this._createTextContainer(this._opts,this._container),this._container.appendChild(this.text)),r.isObject(t)?(r.removeChildren(this.text),this.text.appendChild(t)):this.text.innerHTML=t},s.prototype._createSvgView=function(t){var e=document.createElementNS("http://www.w3.org/2000/svg","svg");this._initializeSvg(e,t);var n=null;(t.trailColor||t.trailWidth)&&(n=this._createTrail(t),e.appendChild(n));var i=this._createPath(t);return e.appendChild(i),{svg:e,path:i,trail:n}},s.prototype._initializeSvg=function(t,e){t.setAttribute("viewBox","0 0 100 100")},s.prototype._createPath=function(t){var e=this._pathString(t);return this._createPathElement(e,t)},s.prototype._createTrail=function(t){var e=this._trailString(t),n=r.extend({},t);return n.trailColor||(n.trailColor="#eee"),n.trailWidth||(n.trailWidth=n.strokeWidth),n.color=n.trailColor,n.strokeWidth=n.trailWidth,n.fill=null,this._createPathElement(e,n)},s.prototype._createPathElement=function(t,e){var n=document.createElementNS("http://www.w3.org/2000/svg","path");return n.setAttribute("d",t),n.setAttribute("stroke",e.color),n.setAttribute("stroke-width",e.strokeWidth),e.fill?n.setAttribute("fill",e.fill):n.setAttribute("fill-opacity","0"),n},s.prototype._createTextContainer=function(t,e){var n=document.createElement("div");n.className=t.text.className;var i=t.text.style;return i&&(t.text.autoStyleContainer&&(e.style.position="relative"),r.setStyles(n,i),i.color||(n.style.color=t.color)),this._initializeTextContainer(t,e,n),n},s.prototype._initializeTextContainer=function(t,e,n){},s.prototype._pathString=function(t){throw new Error("Override this function for each progress bar")},s.prototype._trailString=function(t){throw new Error("Override this function for each progress bar")},s.prototype._warnContainerAspectRatio=function(t){if(this.containerAspectRatio){var e=window.getComputedStyle(t,null),n=parseFloat(e.getPropertyValue("width"),10),i=parseFloat(e.getPropertyValue("height"),10);r.floatEquals(this.containerAspectRatio,n/i)||(console.warn("Incorrect aspect ratio of container","#"+t.id,"detected:",e.getPropertyValue("width")+"(width)","/",e.getPropertyValue("height")+"(height)","=",n/i),console.warn("Aspect ratio of should be",this.containerAspectRatio))}},e.exports=s},{"./path":5,"./utils":8}],8:[function(t,e,n){function i(t,e,n){t=t||{},e=e||{},n=n||!1;for(var r in e)if(e.hasOwnProperty(r)){var o=t[r],s=e[r];n&&a(o)&&a(s)?t[r]=i(o,s,n):t[r]=s}return t}function r(t,e,n){for(var i=t.style,r=0;r>> 0, d = Number(c) || 0, d = 0 > d ? Math.ceil(d) : Math.floor(d); for (0 > d && (d += b); d < b; d++)if (d in this && this[d] === a)return d; return -1 }); var w = {}, g = function (a, c) { this.element = a; this.container; this.listeners = null; this.data = { paused: !1, last_frame: 0, animation_frame: null, interval_fallback: null, timer: !1, total_duration: null, prev_time: null, drawn_units: [], text_elements: {Days: null, Hours: null, Minutes: null, Seconds: null}, attributes: {canvas: null, context: null, item_size: null, line_width: null, radius: null, outer_radius:null}, state:{fading:{Days:!1,Hours:!1,Minutes:!1,Seconds:!1}}};this.config=null;this.setOptions(c);this.initialize()};g.prototype.clearListeners=function(){this.listeners={all:[],visible:[]}};g.prototype.addTime=function(a){if(this.data.attributes.ref_date instanceof Date){var c=this.data.attributes.ref_date;c.setSeconds(c.getSeconds()+a)}else isNaN(this.data.attributes.ref_date)||(this.data.attributes.ref_date+=1E3*a)};g.prototype.initialize=function(a){this.data.drawn_units=[];for(var c=0;c");this.container.addClass("time_circles");this.container.appendTo(this.element);c=this.element.offsetHeight;a=this.element.offsetWidth;0===c&&(c=f(this.element).height());0===a&&(a=f(this.element).width());0===c&&0"),a.addClass("textDiv_"+e),a.css("top",Math.round(.35*this.data.attributes.item_size)),a.css("left",Math.round(c++*this.data.attributes.item_size)),a.css("width",this.data.attributes.item_size), a.appendTo(this.container),b=f("

"),b.text(this.config.time[e].text),b.css("font-size",Math.round(this.config.text_size*this.data.attributes.item_size)),b.css("line-height",Math.round(this.config.text_size*this.data.attributes.item_size)+"px"),b.appendTo(a),b=f(""),b.css("font-size",Math.round(3*this.config.text_size*this.data.attributes.item_size)),b.css("line-height",Math.round(this.config.text_size*this.data.attributes.item_size)+"px"),b.appendTo(a),this.data.text_elements[e]=b);this.start(); this.config.start||(this.data.paused=!0);var h=this;this.data.interval_fallback=m.setInterval(function(){h.update.call(h,!0)},100)};g.prototype.update=function(a){if("undefined"===typeof a)a=!1;else if(a&&this.data.paused)return;x&&this.data.attributes.context.clearRect(0,0,this.data.attributes.canvas[0].width,this.data.attributes.canvas[0].hright);var c,b,d=this.data.prev_time;c=new Date;this.data.prev_time=c;null===d&&(d=c);if(!this.config.count_past_zero&&c>this.data.attributes.ref_date){for(b=0;br.indexOf(e)||(Math.floor(d.raw_time[e])!==Math.floor(d.raw_old_time[e])&&this.notifyListeners(e,Math.floor(d.time[e]),Math.floor(c),"visible"),a||(this.data.text_elements[e].text(Math.floor(Math.abs(d.time[e]))),h=k*this.data.attributes.item_size+this.data.attributes.item_size/2,l=this.data.attributes.item_size/2,f=this.config.time[e].color,"smooth"===this.config.animation? (null===n||x||(Math.floor(d.time[n])>Math.floor(d.old_time[n])?(this.radialFade(h,l,f,1,e),this.data.state.fading[e]=!0):Math.floor(d.time[n])a&&(a=1E3+a),q.data.animation_frame=m.setTimeout(function(){q.data.animation_frame=m.requestAnimationFrame(p,q.element,q)},a+50))}}};g.prototype.animateArc=function(a,c,b,d,e,h){if(null!==this.data.attributes.context)if(.5=d&&0<=d;k++)(function(){var b="rgba("+f.r+", "+f.g+", "+f.b+", "+Math.round(10*d)/10+")";m.setTimeout(function(){g.drawArc(a,c,b,1)},50*k)})(),d+=b;m.setTimeout(function(){g.data.state.fading[e]=!1},50*k)};g.prototype.timeLeft=function(){return this.data.paused&&"number"===typeof this.data.timer?this.data.timer:(this.data.attributes.ref_date-new Date)/1E3};g.prototype.start=function(){m.cancelAnimationFrame(this.data.animation_frame); m.clearTimeout(this.data.animation_frame);var a=f(this.element).data("date");"undefined"===typeof a&&(a=f(this.element).attr("data-date"));if("string"===typeof a){var c=this.data.attributes;var b=a.match(/^[0-9]{4}-[0-9]{2}-[0-9]{2}\s[0-9]{1,2}:[0-9]{2}:[0-9]{2}$/);null!==b&&0b.$items.length&&(b.s.preload=b.$items.length);var c=window.location.hash;c.indexOf("lg="+this.s.galleryId)>0&&(b.index=parseInt(c.split("&slide=")[1],10),a("body").addClass("lg-from-hash"),a("body").hasClass("lg-on")||(setTimeout(function(){b.build(b.index)}),a("body").addClass("lg-on"))),b.s.dynamic?(b.$el.trigger("onBeforeOpen.lg"),b.index=b.s.index||0,a("body").hasClass("lg-on")||setTimeout(function(){b.build(b.index),a("body").addClass("lg-on")})):b.$items.on("click.lgcustom",function(c){try{c.preventDefault(),c.preventDefault()}catch(a){c.returnValue=!1}b.$el.trigger("onBeforeOpen.lg"),b.index=b.s.index||b.$items.index(this),a("body").hasClass("lg-on")||(b.build(b.index),a("body").addClass("lg-on"))})},b.prototype.build=function(b){var c=this;c.structure(),a.each(a.fn.lightGallery.modules,function(b){c.modules[b]=new a.fn.lightGallery.modules[b](c.el)}),c.slide(b,!1,!1,!1),c.s.keyPress&&c.keyPress(),c.$items.length>1?(c.arrow(),setTimeout(function(){c.enableDrag(),c.enableSwipe()},50),c.s.mousewheel&&c.mousewheel()):c.$slide.on("click.lg",function(){c.$el.trigger("onSlideClick.lg")}),c.counter(),c.closeGallery(),c.$el.trigger("onAfterOpen.lg"),c.$outer.on("mousemove.lg click.lg touchstart.lg",function(){c.$outer.removeClass("lg-hide-items"),clearTimeout(c.hideBartimeout),c.hideBartimeout=setTimeout(function(){c.$outer.addClass("lg-hide-items")},c.s.hideBarsDelay)}),c.$outer.trigger("mousemove.lg")},b.prototype.structure=function(){var b,c="",d="",e=0,f="",g=this;for(a("body").append('
'),a(".lg-backdrop").css("transition-duration",this.s.backdropDuration+"ms"),e=0;e

';if(this.s.controls&&this.$items.length>1&&(d='
"),".lg-sub-html"===this.s.appendSubHtmlTo&&(f='
'),b='
'+c+'
'+d+f+"
",a("body").append(b),this.$outer=a(".lg-outer"),this.$slide=this.$outer.find(".lg-item"),this.s.useLeft?(this.$outer.addClass("lg-use-left"),this.s.mode="lg-slide"):this.$outer.addClass("lg-use-css3"),g.setTop(),a(window).on("resize.lg orientationchange.lg",function(){setTimeout(function(){g.setTop()},100)}),this.$slide.eq(this.index).addClass("lg-current"),this.doCss()?this.$outer.addClass("lg-css3"):(this.$outer.addClass("lg-css"),this.s.speed=0),this.$outer.addClass(this.s.mode),this.s.enableDrag&&this.$items.length>1&&this.$outer.addClass("lg-grab"),this.s.showAfterLoad&&this.$outer.addClass("lg-show-after-load"),this.doCss()){var h=this.$outer.find(".lg-inner");h.css("transition-timing-function",this.s.cssEasing),h.css("transition-duration",this.s.speed+"ms")}setTimeout(function(){a(".lg-backdrop").addClass("in")}),setTimeout(function(){g.$outer.addClass("lg-visible")},this.s.backdropDuration),this.s.download&&this.$outer.find(".lg-toolbar").append(''),this.prevScrollTop=a(window).scrollTop()},b.prototype.setTop=function(){if("100%"!==this.s.height){var b=a(window).height(),c=(b-parseInt(this.s.height,10))/2,d=this.$outer.find(".lg");b>=parseInt(this.s.height,10)?d.css("top",c+"px"):d.css("top","0px")}},b.prototype.doCss=function(){var a=function(){var a=["transition","MozTransition","WebkitTransition","OTransition","msTransition","KhtmlTransition"],b=document.documentElement,c=0;for(c=0;c'+(parseInt(this.index,10)+1)+' / '+this.$items.length+"")},b.prototype.addHtml=function(b){var c,d,e=null;if(this.s.dynamic?this.s.dynamicEl[b].subHtmlUrl?c=this.s.dynamicEl[b].subHtmlUrl:e=this.s.dynamicEl[b].subHtml:(d=this.$items.eq(b),d.attr("data-sub-html-url")?c=d.attr("data-sub-html-url"):(e=d.attr("data-sub-html"),this.s.getCaptionFromTitleOrAlt&&!e&&(e=d.attr("title")||d.find("img").first().attr("alt")))),!c)if("undefined"!=typeof e&&null!==e){var f=e.substring(0,1);"."!==f&&"#"!==f||(e=this.s.subHtmlSelectorRelative&&!this.s.dynamic?d.find(e).html():a(e).html())}else e="";".lg-sub-html"===this.s.appendSubHtmlTo?c?this.$outer.find(this.s.appendSubHtmlTo).load(c):this.$outer.find(this.s.appendSubHtmlTo).html(e):c?this.$slide.eq(b).load(c):this.$slide.eq(b).append(e),"undefined"!=typeof e&&null!==e&&(""===e?this.$outer.find(this.s.appendSubHtmlTo).addClass("lg-empty-html"):this.$outer.find(this.s.appendSubHtmlTo).removeClass("lg-empty-html")),this.$el.trigger("onAfterAppendSubHtml.lg",[b])},b.prototype.preload=function(a){var b=1,c=1;for(b=1;b<=this.s.preload&&!(b>=this.$items.length-a);b++)this.loadContent(a+b,!1,0);for(c=1;c<=this.s.preload&&!(a-c<0);c++)this.loadContent(a-c,!1,0)},b.prototype.loadContent=function(b,c,d){var e,f,g,h,i,j,k=this,l=!1,m=function(b){for(var c=[],d=[],e=0;eh){f=d[i];break}};if(k.s.dynamic){if(k.s.dynamicEl[b].poster&&(l=!0,g=k.s.dynamicEl[b].poster),j=k.s.dynamicEl[b].html,f=k.s.dynamicEl[b].src,k.s.dynamicEl[b].responsive){var n=k.s.dynamicEl[b].responsive.split(",");m(n)}h=k.s.dynamicEl[b].srcset,i=k.s.dynamicEl[b].sizes}else{if(k.$items.eq(b).attr("data-poster")&&(l=!0,g=k.$items.eq(b).attr("data-poster")),j=k.$items.eq(b).attr("data-html"),f=k.$items.eq(b).attr("href")||k.$items.eq(b).attr("data-src"),k.$items.eq(b).attr("data-responsive")){var o=k.$items.eq(b).attr("data-responsive").split(",");m(o)}h=k.$items.eq(b).attr("data-srcset"),i=k.$items.eq(b).attr("data-sizes")}var p=!1;k.s.dynamic?k.s.dynamicEl[b].iframe&&(p=!0):"true"===k.$items.eq(b).attr("data-iframe")&&(p=!0);var q=k.isVideo(f,b);if(!k.$slide.eq(b).hasClass("lg-loaded")){if(p)k.$slide.eq(b).prepend('
');else if(l){var r="";r=q&&q.youtube?"lg-has-youtube":q&&q.vimeo?"lg-has-vimeo":"lg-has-html5",k.$slide.eq(b).prepend('
')}else q?(k.$slide.eq(b).prepend('
'),k.$el.trigger("hasVideo.lg",[b,f,j])):k.$slide.eq(b).prepend('
');if(k.$el.trigger("onAferAppendSlide.lg",[b]),e=k.$slide.eq(b).find(".lg-object"),i&&e.attr("sizes",i),h){e.attr("srcset",h);try{picturefill({elements:[e[0]]})}catch(a){console.warn("lightGallery :- If you want srcset to be supported for older browser please include picturefil version 2 javascript library in your document.")}}".lg-sub-html"!==this.s.appendSubHtmlTo&&k.addHtml(b),k.$slide.eq(b).addClass("lg-loaded")}k.$slide.eq(b).find(".lg-object").on("load.lg error.lg",function(){var c=0;d&&!a("body").hasClass("lg-from-hash")&&(c=d),setTimeout(function(){k.$slide.eq(b).addClass("lg-complete"),k.$el.trigger("onSlideItemLoad.lg",[b,d||0])},c)}),q&&q.html5&&!l&&k.$slide.eq(b).addClass("lg-complete"),c===!0&&(k.$slide.eq(b).hasClass("lg-complete")?k.preload(b):k.$slide.eq(b).find(".lg-object").on("load.lg error.lg",function(){k.preload(b)}))},b.prototype.slide=function(b,c,d,e){var f=this.$outer.find(".lg-current").index(),g=this;if(!g.lGalleryOn||f!==b){var h=this.$slide.length,i=g.lGalleryOn?this.s.speed:0;if(!g.lgBusy){if(this.s.download){var j;j=g.s.dynamic?g.s.dynamicEl[b].downloadUrl!==!1&&(g.s.dynamicEl[b].downloadUrl||g.s.dynamicEl[b].src):"false"!==g.$items.eq(b).attr("data-download-url")&&(g.$items.eq(b).attr("data-download-url")||g.$items.eq(b).attr("href")||g.$items.eq(b).attr("data-src")),j?(a("#lg-download").attr("href",j),g.$outer.removeClass("lg-hide-download")):g.$outer.addClass("lg-hide-download")}if(this.$el.trigger("onBeforeSlide.lg",[f,b,c,d]),g.lgBusy=!0,clearTimeout(g.hideBartimeout),".lg-sub-html"===this.s.appendSubHtmlTo&&setTimeout(function(){g.addHtml(b)},i),this.arrowDisable(b),e||(bf&&(e="next")),c){this.$slide.removeClass("lg-prev-slide lg-current lg-next-slide");var k,l;h>2?(k=b-1,l=b+1,0===b&&f===h-1?(l=0,k=h-1):b===h-1&&0===f&&(l=0,k=h-1)):(k=0,l=1),"prev"===e?g.$slide.eq(l).addClass("lg-next-slide"):g.$slide.eq(k).addClass("lg-prev-slide"),g.$slide.eq(b).addClass("lg-current")}else g.$outer.addClass("lg-no-trans"),this.$slide.removeClass("lg-prev-slide lg-next-slide"),"prev"===e?(this.$slide.eq(b).addClass("lg-prev-slide"),this.$slide.eq(f).addClass("lg-next-slide")):(this.$slide.eq(b).addClass("lg-next-slide"),this.$slide.eq(f).addClass("lg-prev-slide")),setTimeout(function(){g.$slide.removeClass("lg-current"),g.$slide.eq(b).addClass("lg-current"),g.$outer.removeClass("lg-no-trans")},50);g.lGalleryOn?(setTimeout(function(){g.loadContent(b,!0,0)},this.s.speed+50),setTimeout(function(){g.lgBusy=!1,g.$el.trigger("onAfterSlide.lg",[f,b,c,d])},this.s.speed)):(g.loadContent(b,!0,g.s.backdropDuration),g.lgBusy=!1,g.$el.trigger("onAfterSlide.lg",[f,b,c,d])),g.lGalleryOn=!0,this.s.counter&&a("#lg-counter-current").text(b+1)}g.index=b}},b.prototype.goToNextSlide=function(a){var b=this,c=b.s.loop;a&&b.$slide.length<3&&(c=!1),b.lgBusy||(b.index+10?(b.index--,b.$el.trigger("onBeforePrevSlide.lg",[b.index,a]),b.slide(b.index,a,!1,"prev")):c?(b.index=b.$items.length-1,b.$el.trigger("onBeforePrevSlide.lg",[b.index,a]),b.slide(b.index,a,!1,"prev")):b.s.slideEndAnimatoin&&!a&&(b.$outer.addClass("lg-left-end"),setTimeout(function(){b.$outer.removeClass("lg-left-end")},400)))},b.prototype.keyPress=function(){var b=this;this.$items.length>1&&a(window).on("keyup.lg",function(a){b.$items.length>1&&(37===a.keyCode&&(a.preventDefault(),b.goToPrevSlide()),39===a.keyCode&&(a.preventDefault(),b.goToNextSlide()))}),a(window).on("keydown.lg",function(a){b.s.escKey===!0&&27===a.keyCode&&(a.preventDefault(),b.$outer.hasClass("lg-thumb-open")?b.$outer.removeClass("lg-thumb-open"):b.destroy())})},b.prototype.arrow=function(){var a=this;this.$outer.find(".lg-prev").on("click.lg",function(){a.goToPrevSlide()}),this.$outer.find(".lg-next").on("click.lg",function(){a.goToNextSlide()})},b.prototype.arrowDisable=function(a){!this.s.loop&&this.s.hideControlOnEnd&&(a+10?this.$outer.find(".lg-prev").removeAttr("disabled").removeClass("disabled"):this.$outer.find(".lg-prev").attr("disabled","disabled").addClass("disabled"))},b.prototype.setTranslate=function(a,b,c){this.s.useLeft?a.css("left",b):a.css({transform:"translate3d("+b+"px, "+c+"px, 0px)"})},b.prototype.touchMove=function(b,c){var d=c-b;Math.abs(d)>15&&(this.$outer.addClass("lg-dragging"),this.setTranslate(this.$slide.eq(this.index),d,0),this.setTranslate(a(".lg-prev-slide"),-this.$slide.eq(this.index).width()+d,0),this.setTranslate(a(".lg-next-slide"),this.$slide.eq(this.index).width()+d,0))},b.prototype.touchEnd=function(a){var b=this;"lg-slide"!==b.s.mode&&b.$outer.addClass("lg-slide"),this.$slide.not(".lg-current, .lg-prev-slide, .lg-next-slide").css("opacity","0"),setTimeout(function(){b.$outer.removeClass("lg-dragging"),a<0&&Math.abs(a)>b.s.swipeThreshold?b.goToNextSlide(!0):a>0&&Math.abs(a)>b.s.swipeThreshold?b.goToPrevSlide(!0):Math.abs(a)<5&&b.$el.trigger("onSlideClick.lg"),b.$slide.removeAttr("style")}),setTimeout(function(){b.$outer.hasClass("lg-dragging")||"lg-slide"===b.s.mode||b.$outer.removeClass("lg-slide")},b.s.speed+100)},b.prototype.enableSwipe=function(){var a=this,b=0,c=0,d=!1;a.s.enableSwipe&&a.doCss()&&(a.$slide.on("touchstart.lg",function(c){a.$outer.hasClass("lg-zoomed")||a.lgBusy||(c.preventDefault(),a.manageSwipeClass(),b=c.originalEvent.targetTouches[0].pageX)}),a.$slide.on("touchmove.lg",function(e){a.$outer.hasClass("lg-zoomed")||(e.preventDefault(),c=e.originalEvent.targetTouches[0].pageX,a.touchMove(b,c),d=!0)}),a.$slide.on("touchend.lg",function(){a.$outer.hasClass("lg-zoomed")||(d?(d=!1,a.touchEnd(c-b)):a.$el.trigger("onSlideClick.lg"))}))},b.prototype.enableDrag=function(){var b=this,c=0,d=0,e=!1,f=!1;b.s.enableDrag&&b.doCss()&&(b.$slide.on("mousedown.lg",function(d){b.$outer.hasClass("lg-zoomed")||(a(d.target).hasClass("lg-object")||a(d.target).hasClass("lg-video-play"))&&(d.preventDefault(),b.lgBusy||(b.manageSwipeClass(),c=d.pageX,e=!0,b.$outer.scrollLeft+=1,b.$outer.scrollLeft-=1,b.$outer.removeClass("lg-grab").addClass("lg-grabbing"),b.$el.trigger("onDragstart.lg")))}),a(window).on("mousemove.lg",function(a){e&&(f=!0,d=a.pageX,b.touchMove(c,d),b.$el.trigger("onDragmove.lg"))}),a(window).on("mouseup.lg",function(g){f?(f=!1,b.touchEnd(d-c),b.$el.trigger("onDragend.lg")):(a(g.target).hasClass("lg-object")||a(g.target).hasClass("lg-video-play"))&&b.$el.trigger("onSlideClick.lg"),e&&(e=!1,b.$outer.removeClass("lg-grabbing").addClass("lg-grab"))}))},b.prototype.manageSwipeClass=function(){var a=this.index+1,b=this.index-1;this.s.loop&&this.$slide.length>2&&(0===this.index?b=this.$slide.length-1:this.index===this.$slide.length-1&&(a=0)),this.$slide.removeClass("lg-next-slide lg-prev-slide"),b>-1&&this.$slide.eq(b).addClass("lg-prev-slide"),this.$slide.eq(a).addClass("lg-next-slide")},b.prototype.mousewheel=function(){var a=this;a.$outer.on("mousewheel.lg",function(b){b.deltaY&&(b.deltaY>0?a.goToPrevSlide():a.goToNextSlide(),b.preventDefault())})},b.prototype.closeGallery=function(){var b=this,c=!1;this.$outer.find(".lg-close").on("click.lg",function(){b.destroy()}),b.s.closable&&(b.$outer.on("mousedown.lg",function(b){c=!!(a(b.target).is(".lg-outer")||a(b.target).is(".lg-item ")||a(b.target).is(".lg-img-wrap"))}),b.$outer.on("mouseup.lg",function(d){(a(d.target).is(".lg-outer")||a(d.target).is(".lg-item ")||a(d.target).is(".lg-img-wrap")&&c)&&(b.$outer.hasClass("lg-dragging")||b.destroy())}))},b.prototype.destroy=function(b){var c=this;b||(c.$el.trigger("onBeforeClose.lg"),a(window).scrollTop(c.prevScrollTop)),b&&(c.s.dynamic||this.$items.off("click.lg click.lgcustom"),a.removeData(c.el,"lightGallery")),this.$el.off(".lg.tm"),a.each(a.fn.lightGallery.modules,function(a){c.modules[a]&&c.modules[a].destroy()}),this.lGalleryOn=!1,clearTimeout(c.hideBartimeout),this.hideBartimeout=!1,a(window).off(".lg"),a("body").removeClass("lg-on lg-from-hash"),c.$outer&&c.$outer.removeClass("lg-visible"),a(".lg-backdrop").removeClass("in"),setTimeout(function(){c.$outer&&c.$outer.remove(),a(".lg-backdrop").remove(),b||c.$el.trigger("onCloseAfter.lg")},c.s.backdropDuration+50)},a.fn.lightGallery=function(c){return this.each(function(){if(a.data(this,"lightGallery"))try{a(this).data("lightGallery").init()}catch(a){console.error("lightGallery has not initiated properly")}else a.data(this,"lightGallery",new b(this,c))})},a.fn.lightGallery.modules={}}()}),function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(){"use strict";var b={autoplay:!1,pause:5e3,progressBar:!0,fourceAutoplay:!1,autoplayControls:!0,appendAutoplayControlsTo:".lg-toolbar"},c=function(c){return this.core=a(c).data("lightGallery"),this.$el=a(c),!(this.core.$items.length<2)&&(this.core.s=a.extend({},b,this.core.s),this.interval=!1,this.fromAuto=!0,this.canceledOnTouch=!1,this.fourceAutoplayTemp=this.core.s.fourceAutoplay,this.core.doCss()||(this.core.s.progressBar=!1),this.init(),this)};c.prototype.init=function(){var a=this;a.core.s.autoplayControls&&a.controls(),a.core.s.progressBar&&a.core.$outer.find(".lg").append('
'),a.progress(),a.core.s.autoplay&&a.$el.one("onSlideItemLoad.lg.tm",function(){a.startlAuto()}),a.$el.on("onDragstart.lg.tm touchstart.lg.tm",function(){a.interval&&(a.cancelAuto(),a.canceledOnTouch=!0)}),a.$el.on("onDragend.lg.tm touchend.lg.tm onSlideClick.lg.tm",function(){!a.interval&&a.canceledOnTouch&&(a.startlAuto(),a.canceledOnTouch=!1)})},c.prototype.progress=function(){var a,b,c=this;c.$el.on("onBeforeSlide.lg.tm",function(){c.core.s.progressBar&&c.fromAuto&&(a=c.core.$outer.find(".lg-progress-bar"),b=c.core.$outer.find(".lg-progress"),c.interval&&(b.removeAttr("style"),a.removeClass("lg-start"),setTimeout(function(){b.css("transition","width "+(c.core.s.speed+c.core.s.pause)+"ms ease 0s"),a.addClass("lg-start")},20))),c.fromAuto||c.core.s.fourceAutoplay||c.cancelAuto(),c.fromAuto=!1})},c.prototype.controls=function(){var b=this,c='';a(this.core.s.appendAutoplayControlsTo).append(c),b.core.$outer.find(".lg-autoplay-button").on("click.lg",function(){a(b.core.$outer).hasClass("lg-show-autoplay")?(b.cancelAuto(),b.core.s.fourceAutoplay=!1):b.interval||(b.startlAuto(),b.core.s.fourceAutoplay=b.fourceAutoplayTemp)})},c.prototype.startlAuto=function(){var a=this;a.core.$outer.find(".lg-progress").css("transition","width "+(a.core.s.speed+a.core.s.pause)+"ms ease 0s"),a.core.$outer.addClass("lg-show-autoplay"),a.core.$outer.find(".lg-progress-bar").addClass("lg-start"),a.interval=setInterval(function(){a.core.index+11&&this.init(),this};c.prototype.init=function(){var b,c,d,e=this,f="";if(e.core.$outer.find(".lg").append('
'),e.core.s.dynamic)for(var g=0;g
';else e.core.$items.each(function(){f+=e.core.s.exThumbImage?'
':'
'});c=e.core.$outer.find(".lg-pager-outer"),c.html(f),b=e.core.$outer.find(".lg-pager-cont"),b.on("click.lg touchend.lg",function(){var b=a(this);e.core.index=b.index(),e.core.slide(e.core.index,!1,!0,!1)}),c.on("mouseover.lg",function(){clearTimeout(d),c.addClass("lg-pager-hover")}),c.on("mouseout.lg",function(){d=setTimeout(function(){c.removeClass("lg-pager-hover")})}),e.core.$el.on("onBeforeSlide.lg.tm",function(a,c,d){b.removeClass("lg-pager-active"),b.eq(d).addClass("lg-pager-active")})},c.prototype.destroy=function(){},a.fn.lightGallery.modules.pager=c}()}),function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(){"use strict";var b={thumbnail:!0,animateThumb:!0,currentPagerPosition:"middle",thumbWidth:100,thumbHeight:"80px",thumbContHeight:100,thumbMargin:5,exThumbImage:!1,showThumbByDefault:!0,toogleThumb:!0,pullCaptionUp:!0,enableThumbDrag:!0,enableThumbSwipe:!0,swipeThreshold:50,loadYoutubeThumbnail:!0,youtubeThumbSize:1,loadVimeoThumbnail:!0,vimeoThumbSize:"thumbnail_small",loadDailymotionThumbnail:!0},c=function(c){return this.core=a(c).data("lightGallery"),this.core.s=a.extend({},b,this.core.s),this.$el=a(c),this.$thumbOuter=null,this.thumbOuterWidth=0,this.thumbTotalWidth=this.core.$items.length*(this.core.s.thumbWidth+this.core.s.thumbMargin),this.thumbIndex=this.core.index,this.core.s.animateThumb&&(this.core.s.thumbHeight="100%"),this.left=0,this.init(),this};c.prototype.init=function(){var a=this;this.core.s.thumbnail&&this.core.$items.length>1&&(this.core.s.showThumbByDefault&&setTimeout(function(){a.core.$outer.addClass("lg-thumb-open")},700),this.core.s.pullCaptionUp&&this.core.$outer.addClass("lg-pull-caption-up"),this.build(),this.core.s.animateThumb&&this.core.doCss()?(this.core.s.enableThumbDrag&&this.enableThumbDrag(),this.core.s.enableThumbSwipe&&this.enableThumbSwipe(),this.thumbClickable=!1):this.thumbClickable=!0,this.toogle(),this.thumbkeyPress())},c.prototype.build=function(){function b(a,b,c){var g,h=d.core.isVideo(a,c)||{},i="";h.youtube||h.vimeo||h.dailymotion?h.youtube?g=d.core.s.loadYoutubeThumbnail?"//img.youtube.com/vi/"+h.youtube[1]+"/"+d.core.s.youtubeThumbSize+".jpg":b:h.vimeo?d.core.s.loadVimeoThumbnail?(g="//i.vimeocdn.com/video/error_"+f+".jpg",i=h.vimeo[1]):g=b:h.dailymotion&&(g=d.core.s.loadDailymotionThumbnail?"//www.dailymotion.com/thumbnail/video/"+h.dailymotion[1]:b):g=b,e+='
',i=""}var c,d=this,e="",f="",g='
';switch(this.core.s.vimeoThumbSize){case"thumbnail_large":f="640";break;case"thumbnail_medium":f="200x150";break;case"thumbnail_small":f="100x75"}if(d.core.$outer.addClass("lg-has-thumb"),d.core.$outer.find(".lg").append(g),d.$thumbOuter=d.core.$outer.find(".lg-thumb-outer"),d.thumbOuterWidth=d.$thumbOuter.width(),d.core.s.animateThumb&&d.core.$outer.find(".lg-thumb").css({width:d.thumbTotalWidth+"px",position:"relative"}),this.core.s.animateThumb&&d.$thumbOuter.css("height",d.core.s.thumbContHeight+"px"),d.core.s.dynamic)for(var h=0;hthis.thumbTotalWidth-this.thumbOuterWidth&&(this.left=this.thumbTotalWidth-this.thumbOuterWidth),this.left<0&&(this.left=0),this.core.lGalleryOn?(b.hasClass("on")||this.core.$outer.find(".lg-thumb").css("transition-duration",this.core.s.speed+"ms"),this.core.doCss()||b.animate({left:-this.left+"px"},this.core.s.speed)):this.core.doCss()||b.css("left",-this.left+"px"),this.setTranslate(this.left)}},c.prototype.enableThumbDrag=function(){var b=this,c=0,d=0,e=!1,f=!1,g=0;b.$thumbOuter.addClass("lg-grab"),b.core.$outer.find(".lg-thumb").on("mousedown.lg.thumb",function(a){b.thumbTotalWidth>b.thumbOuterWidth&&(a.preventDefault(),c=a.pageX,e=!0,b.core.$outer.scrollLeft+=1,b.core.$outer.scrollLeft-=1,b.thumbClickable=!1,b.$thumbOuter.removeClass("lg-grab").addClass("lg-grabbing"))}),a(window).on("mousemove.lg.thumb",function(a){e&&(g=b.left,f=!0,d=a.pageX,b.$thumbOuter.addClass("lg-dragging"),g-=d-c,g>b.thumbTotalWidth-b.thumbOuterWidth&&(g=b.thumbTotalWidth-b.thumbOuterWidth),g<0&&(g=0),b.setTranslate(g))}),a(window).on("mouseup.lg.thumb",function(){f?(f=!1,b.$thumbOuter.removeClass("lg-dragging"),b.left=g,Math.abs(d-c)a.thumbOuterWidth&&(c.preventDefault(),b=c.originalEvent.targetTouches[0].pageX,a.thumbClickable=!1)}),a.core.$outer.find(".lg-thumb").on("touchmove.lg",function(f){a.thumbTotalWidth>a.thumbOuterWidth&&(f.preventDefault(),c=f.originalEvent.targetTouches[0].pageX,d=!0,a.$thumbOuter.addClass("lg-dragging"),e=a.left,e-=c-b,e>a.thumbTotalWidth-a.thumbOuterWidth&&(e=a.thumbTotalWidth-a.thumbOuterWidth),e<0&&(e=0),a.setTranslate(e))}),a.core.$outer.find(".lg-thumb").on("touchend.lg",function(){a.thumbTotalWidth>a.thumbOuterWidth&&d?(d=!1,a.$thumbOuter.removeClass("lg-dragging"),Math.abs(c-b)'),a.core.$outer.find(".lg-toogle-thumb").on("click.lg",function(){a.core.$outer.toggleClass("lg-thumb-open")}))},c.prototype.thumbkeyPress=function(){var b=this;a(window).on("keydown.lg.thumb",function(a){38===a.keyCode?(a.preventDefault(),b.core.$outer.addClass("lg-thumb-open")):40===a.keyCode&&(a.preventDefault(),b.core.$outer.removeClass("lg-thumb-open"))})},c.prototype.destroy=function(){this.core.s.thumbnail&&this.core.$items.length>1&&(a(window).off("resize.lg.thumb orientationchange.lg.thumb keydown.lg.thumb"), + this.$thumbOuter.remove(),this.core.$outer.removeClass("lg-has-thumb"))},a.fn.lightGallery.modules.Thumbnail=c}()}),function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(){"use strict";var b={videoMaxWidth:"855px",youtubePlayerParams:!1,vimeoPlayerParams:!1,dailymotionPlayerParams:!1,vkPlayerParams:!1,videojs:!1,videojsOptions:{}},c=function(c){return this.core=a(c).data("lightGallery"),this.$el=a(c),this.core.s=a.extend({},b,this.core.s),this.videoLoaded=!1,this.init(),this};c.prototype.init=function(){var b=this;b.core.$el.on("hasVideo.lg.tm",function(a,c,d,e){if(b.core.$slide.eq(c).find(".lg-video").append(b.loadVideo(d,"lg-object",!0,c,e)),e)if(b.core.s.videojs)try{videojs(b.core.$slide.eq(c).find(".lg-html5").get(0),b.core.s.videojsOptions,function(){b.videoLoaded||this.play()})}catch(a){console.error("Make sure you have included videojs")}else b.videoLoaded||b.core.$slide.eq(c).find(".lg-html5").get(0).play()}),b.core.$el.on("onAferAppendSlide.lg.tm",function(a,c){var d=b.core.$slide.eq(c).find(".lg-video-cont");d.hasClass("lg-has-iframe")||(d.css("max-width",b.core.s.videoMaxWidth),b.videoLoaded=!0)});var c=function(a){if(a.find(".lg-object").hasClass("lg-has-poster")&&a.find(".lg-object").is(":visible"))if(a.hasClass("lg-has-video")){var c=a.find(".lg-youtube").get(0),d=a.find(".lg-vimeo").get(0),e=a.find(".lg-dailymotion").get(0),f=a.find(".lg-html5").get(0);if(c)c.contentWindow.postMessage('{"event":"command","func":"playVideo","args":""}',"*");else if(d)try{$f(d).api("play")}catch(a){console.error("Make sure you have included froogaloop2 js")}else if(e)e.contentWindow.postMessage("play","*");else if(f)if(b.core.s.videojs)try{videojs(f).play()}catch(a){console.error("Make sure you have included videojs")}else f.play();a.addClass("lg-video-playing")}else{a.addClass("lg-video-playing lg-has-video");var g,h,i=function(c,d){if(a.find(".lg-video").append(b.loadVideo(c,"",!1,b.core.index,d)),d)if(b.core.s.videojs)try{videojs(b.core.$slide.eq(b.core.index).find(".lg-html5").get(0),b.core.s.videojsOptions,function(){this.play()})}catch(a){console.error("Make sure you have included videojs")}else b.core.$slide.eq(b.core.index).find(".lg-html5").get(0).play()};b.core.s.dynamic?(g=b.core.s.dynamicEl[b.core.index].src,h=b.core.s.dynamicEl[b.core.index].html,i(g,h)):(g=b.core.$items.eq(b.core.index).attr("href")||b.core.$items.eq(b.core.index).attr("data-src"),h=b.core.$items.eq(b.core.index).attr("data-html"),i(g,h));var j=a.find(".lg-object");a.find(".lg-video").append(j),a.find(".lg-video-object").hasClass("lg-html5")||(a.removeClass("lg-complete"),a.find(".lg-video-object").on("load.lg error.lg",function(){a.addClass("lg-complete")}))}};b.core.doCss()&&b.core.$items.length>1&&(b.core.s.enableSwipe||b.core.s.enableDrag)?b.core.$el.on("onSlideClick.lg.tm",function(){var a=b.core.$slide.eq(b.core.index);c(a)}):b.core.$slide.on("click.lg",function(){c(a(this))}),b.core.$el.on("onBeforeSlide.lg.tm",function(c,d,e){var f=b.core.$slide.eq(d),g=f.find(".lg-youtube").get(0),h=f.find(".lg-vimeo").get(0),i=f.find(".lg-dailymotion").get(0),j=f.find(".lg-vk").get(0),k=f.find(".lg-html5").get(0);if(g)g.contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}',"*");else if(h)try{$f(h).api("pause")}catch(a){console.error("Make sure you have included froogaloop2 js")}else if(i)i.contentWindow.postMessage("pause","*");else if(k)if(b.core.s.videojs)try{videojs(k).pause()}catch(a){console.error("Make sure you have included videojs")}else k.pause();j&&a(j).attr("src",a(j).attr("src").replace("&autoplay","&noplay"));var l;l=b.core.s.dynamic?b.core.s.dynamicEl[e].src:b.core.$items.eq(e).attr("href")||b.core.$items.eq(e).attr("data-src");var m=b.core.isVideo(l,e)||{};(m.youtube||m.vimeo||m.dailymotion||m.vk)&&b.core.$outer.addClass("lg-hide-download")}),b.core.$el.on("onAfterSlide.lg.tm",function(a,c){b.core.$slide.eq(c).removeClass("lg-video-playing")})},c.prototype.loadVideo=function(b,c,d,e,f){var g="",h=1,i="",j=this.core.isVideo(b,e)||{};if(d&&(h=this.videoLoaded?0:1),j.youtube)i="?wmode=opaque&autoplay="+h+"&enablejsapi=1",this.core.s.youtubePlayerParams&&(i=i+"&"+a.param(this.core.s.youtubePlayerParams)),g='';else if(j.vimeo)i="?autoplay="+h+"&api=1",this.core.s.vimeoPlayerParams&&(i=i+"&"+a.param(this.core.s.vimeoPlayerParams)),g='';else if(j.dailymotion)i="?wmode=opaque&autoplay="+h+"&api=postMessage",this.core.s.dailymotionPlayerParams&&(i=i+"&"+a.param(this.core.s.dailymotionPlayerParams)),g='';else if(j.html5){var k=f.substring(0,1);"."!==k&&"#"!==k||(f=a(f).html()),g=f}else j.vk&&(i="&autoplay="+h,this.core.s.vkPlayerParams&&(i=i+"&"+a.param(this.core.s.vkPlayerParams)),g='');return g},c.prototype.destroy=function(){this.videoLoaded=!1},a.fn.lightGallery.modules.video=c}()}),function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(){"use strict";var b=function(){var a=!1,b=navigator.userAgent.match(/Chrom(e|ium)\/([0-9]+)\./);return b&&parseInt(b[2],10)<54&&(a=!0),a},c={scale:1,zoom:!0,actualSize:!0,enableZoomAfter:300,useLeftForZoom:b()},d=function(b){return this.core=a(b).data("lightGallery"),this.core.s=a.extend({},c,this.core.s),this.core.s.zoom&&this.core.doCss()&&(this.init(),this.zoomabletimeout=!1,this.pageX=a(window).width()/2,this.pageY=a(window).height()/2+a(window).scrollTop()),this};d.prototype.init=function(){var b=this,c='';b.core.s.actualSize&&(c+=''),b.core.s.useLeftForZoom?b.core.$outer.addClass("lg-use-left-for-zoom"):b.core.$outer.addClass("lg-use-transition-for-zoom"),this.core.$outer.find(".lg-toolbar").append(c),b.core.$el.on("onSlideItemLoad.lg.tm.zoom",function(c,d,e){var f=b.core.s.enableZoomAfter+e;a("body").hasClass("lg-from-hash")&&e?f=0:a("body").removeClass("lg-from-hash"),b.zoomabletimeout=setTimeout(function(){b.core.$slide.eq(d).addClass("lg-zoomable")},f+30)});var d=1,e=function(c){var d,e,f=b.core.$outer.find(".lg-current .lg-image"),g=(a(window).width()-f.prop("offsetWidth"))/2,h=(a(window).height()-f.prop("offsetHeight"))/2+a(window).scrollTop();d=b.pageX-g,e=b.pageY-h;var i=(c-1)*d,j=(c-1)*e;f.css("transform","scale3d("+c+", "+c+", 1)").attr("data-scale",c),b.core.s.useLeftForZoom?f.parent().css({left:-i+"px",top:-j+"px"}).attr("data-x",i).attr("data-y",j):f.parent().css("transform","translate3d(-"+i+"px, -"+j+"px, 0)").attr("data-x",i).attr("data-y",j)},f=function(){d>1?b.core.$outer.addClass("lg-zoomed"):b.resetZoom(),d<1&&(d=1),e(d)},g=function(c,e,g,h){var i,j=e.prop("offsetWidth");i=b.core.s.dynamic?b.core.s.dynamicEl[g].width||e[0].naturalWidth||j:b.core.$items.eq(g).attr("data-width")||e[0].naturalWidth||j;var k;b.core.$outer.hasClass("lg-zoomed")?d=1:i>j&&(k=i/j,d=k||2),h?(b.pageX=a(window).width()/2,b.pageY=a(window).height()/2+a(window).scrollTop()):(b.pageX=c.pageX||c.originalEvent.targetTouches[0].pageX,b.pageY=c.pageY||c.originalEvent.targetTouches[0].pageY),f(),setTimeout(function(){b.core.$outer.removeClass("lg-grabbing").addClass("lg-grab")},10)},h=!1;b.core.$el.on("onAferAppendSlide.lg.tm.zoom",function(a,c){var d=b.core.$slide.eq(c).find(".lg-image");d.on("dblclick",function(a){g(a,d,c)}),d.on("touchstart",function(a){h?(clearTimeout(h),h=null,g(a,d,c)):h=setTimeout(function(){h=null},300),a.preventDefault()})}),a(window).on("resize.lg.zoom scroll.lg.zoom orientationchange.lg.zoom",function(){b.pageX=a(window).width()/2,b.pageY=a(window).height()/2+a(window).scrollTop(),e(d)}),a("#lg-zoom-out").on("click.lg",function(){b.core.$outer.find(".lg-current .lg-image").length&&(d-=b.core.s.scale,f())}),a("#lg-zoom-in").on("click.lg",function(){b.core.$outer.find(".lg-current .lg-image").length&&(d+=b.core.s.scale,f())}),a("#lg-actual-size").on("click.lg",function(a){g(a,b.core.$slide.eq(b.core.index).find(".lg-image"),b.core.index,!0)}),b.core.$el.on("onBeforeSlide.lg.tm",function(){d=1,b.resetZoom()}),b.zoomDrag(),b.zoomSwipe()},d.prototype.resetZoom=function(){this.core.$outer.removeClass("lg-zoomed"),this.core.$slide.find(".lg-img-wrap").removeAttr("style data-x data-y"),this.core.$slide.find(".lg-image").removeAttr("style data-scale"),this.pageX=a(window).width()/2,this.pageY=a(window).height()/2+a(window).scrollTop()},d.prototype.zoomSwipe=function(){var a=this,b={},c={},d=!1,e=!1,f=!1;a.core.$slide.on("touchstart.lg",function(c){if(a.core.$outer.hasClass("lg-zoomed")){var d=a.core.$slide.eq(a.core.index).find(".lg-object");f=d.prop("offsetHeight")*d.attr("data-scale")>a.core.$outer.find(".lg").height(),e=d.prop("offsetWidth")*d.attr("data-scale")>a.core.$outer.find(".lg").width(),(e||f)&&(c.preventDefault(),b={x:c.originalEvent.targetTouches[0].pageX,y:c.originalEvent.targetTouches[0].pageY})}}),a.core.$slide.on("touchmove.lg",function(g){if(a.core.$outer.hasClass("lg-zoomed")){var h,i,j=a.core.$slide.eq(a.core.index).find(".lg-img-wrap");g.preventDefault(),d=!0,c={x:g.originalEvent.targetTouches[0].pageX,y:g.originalEvent.targetTouches[0].pageY},a.core.$outer.addClass("lg-zoom-dragging"),i=f?-Math.abs(j.attr("data-y"))+(c.y-b.y):-Math.abs(j.attr("data-y")),h=e?-Math.abs(j.attr("data-x"))+(c.x-b.x):-Math.abs(j.attr("data-x")),(Math.abs(c.x-b.x)>15||Math.abs(c.y-b.y)>15)&&(a.core.s.useLeftForZoom?j.css({left:h+"px",top:i+"px"}):j.css("transform","translate3d("+h+"px, "+i+"px, 0)"))}}),a.core.$slide.on("touchend.lg",function(){a.core.$outer.hasClass("lg-zoomed")&&d&&(d=!1,a.core.$outer.removeClass("lg-zoom-dragging"),a.touchendZoom(b,c,e,f))})},d.prototype.zoomDrag=function(){var b=this,c={},d={},e=!1,f=!1,g=!1,h=!1;b.core.$slide.on("mousedown.lg.zoom",function(d){var f=b.core.$slide.eq(b.core.index).find(".lg-object");h=f.prop("offsetHeight")*f.attr("data-scale")>b.core.$outer.find(".lg").height(),g=f.prop("offsetWidth")*f.attr("data-scale")>b.core.$outer.find(".lg").width(),b.core.$outer.hasClass("lg-zoomed")&&a(d.target).hasClass("lg-object")&&(g||h)&&(d.preventDefault(),c={x:d.pageX,y:d.pageY},e=!0,b.core.$outer.scrollLeft+=1,b.core.$outer.scrollLeft-=1,b.core.$outer.removeClass("lg-grab").addClass("lg-grabbing"))}),a(window).on("mousemove.lg.zoom",function(a){if(e){var i,j,k=b.core.$slide.eq(b.core.index).find(".lg-img-wrap");f=!0,d={x:a.pageX,y:a.pageY},b.core.$outer.addClass("lg-zoom-dragging"),j=h?-Math.abs(k.attr("data-y"))+(d.y-c.y):-Math.abs(k.attr("data-y")),i=g?-Math.abs(k.attr("data-x"))+(d.x-c.x):-Math.abs(k.attr("data-x")),b.core.s.useLeftForZoom?k.css({left:i+"px",top:j+"px"}):k.css("transform","translate3d("+i+"px, "+j+"px, 0)")}}),a(window).on("mouseup.lg.zoom",function(a){e&&(e=!1,b.core.$outer.removeClass("lg-zoom-dragging"),!f||c.x===d.x&&c.y===d.y||(d={x:a.pageX,y:a.pageY},b.touchendZoom(c,d,g,h)),f=!1),b.core.$outer.removeClass("lg-grabbing").addClass("lg-grab")})},d.prototype.touchendZoom=function(a,b,c,d){var e=this,f=e.core.$slide.eq(e.core.index).find(".lg-img-wrap"),g=e.core.$slide.eq(e.core.index).find(".lg-object"),h=-Math.abs(f.attr("data-x"))+(b.x-a.x),i=-Math.abs(f.attr("data-y"))+(b.y-a.y),j=(e.core.$outer.find(".lg").height()-g.prop("offsetHeight"))/2,k=Math.abs(g.prop("offsetHeight")*Math.abs(g.attr("data-scale"))-e.core.$outer.find(".lg").height()+j),l=(e.core.$outer.find(".lg").width()-g.prop("offsetWidth"))/2,m=Math.abs(g.prop("offsetWidth")*Math.abs(g.attr("data-scale"))-e.core.$outer.find(".lg").width()+l);(Math.abs(b.x-a.x)>15||Math.abs(b.y-a.y)>15)&&(d&&(i<=-k?i=-k:i>=-j&&(i=-j)),c&&(h<=-m?h=-m:h>=-l&&(h=-l)),d?f.attr("data-y",Math.abs(i)):i=-Math.abs(f.attr("data-y")),c?f.attr("data-x",Math.abs(h)):h=-Math.abs(f.attr("data-x")),e.core.s.useLeftForZoom?f.css({left:h+"px",top:i+"px"}):f.css("transform","translate3d("+h+"px, "+i+"px, 0)"))},d.prototype.destroy=function(){var b=this;b.core.$el.off(".lg.zoom"),a(window).off(".lg.zoom"),b.core.$slide.off(".lg.zoom"),b.core.$el.off(".lg.tm.zoom"),b.resetZoom(),clearTimeout(b.zoomabletimeout),b.zoomabletimeout=!1},a.fn.lightGallery.modules.zoom=d}()}),function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(){"use strict";var b={hash:!0},c=function(c){return this.core=a(c).data("lightGallery"),this.core.s=a.extend({},b,this.core.s),this.core.s.hash&&(this.oldHash=window.location.hash,this.init()),this};c.prototype.init=function(){var b,c=this;c.core.$el.on("onAfterSlide.lg.tm",function(a,b,d){history.replaceState?history.replaceState(null,null,"#lg="+c.core.s.galleryId+"&slide="+d):window.location.hash="lg="+c.core.s.galleryId+"&slide="+d}),a(window).on("hashchange.lg.hash",function(){b=window.location.hash;var a=parseInt(b.split("&slide=")[1],10);b.indexOf("lg="+c.core.s.galleryId)>-1?c.core.slide(a,!1,!1):c.core.lGalleryOn&&c.core.destroy()})},c.prototype.destroy=function(){this.core.s.hash&&(this.oldHash&&this.oldHash.indexOf("lg="+this.core.s.galleryId)<0?history.replaceState?history.replaceState(null,null,this.oldHash):window.location.hash=this.oldHash:history.replaceState?history.replaceState(null,document.title,window.location.pathname+window.location.search):window.location.hash="",this.core.$el.off(".lg.hash"))},a.fn.lightGallery.modules.hash=c}()}),function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){!function(){"use strict";var b={share:!0,facebook:!0,facebookDropdownText:"Facebook",twitter:!0,twitterDropdownText:"Twitter",googlePlus:!0,googlePlusDropdownText:"GooglePlus",pinterest:!0,pinterestDropdownText:"Pinterest"},c=function(c){return this.core=a(c).data("lightGallery"),this.core.s=a.extend({},b,this.core.s),this.core.s.share&&this.init(),this};c.prototype.init=function(){var b=this,c='",this.core.$outer.find(".lg-toolbar").append(c),this.core.$outer.find(".lg").append('
'),a("#lg-share").on("click.lg",function(){b.core.$outer.toggleClass("lg-dropdown-active")}),a("#lg-dropdown-overlay").on("click.lg",function(){b.core.$outer.removeClass("lg-dropdown-active")}),b.core.$el.on("onAfterSlide.lg.tm",function(c,d,e){setTimeout(function(){a("#lg-share-facebook").attr("href","https://www.facebook.com/sharer/sharer.php?u="+encodeURIComponent(b.getSahreProps(e,"facebookShareUrl")||window.location.href)),a("#lg-share-twitter").attr("href","https://twitter.com/intent/tweet?text="+b.getSahreProps(e,"tweetText")+"&url="+encodeURIComponent(b.getSahreProps(e,"twitterShareUrl")||window.location.href)),a("#lg-share-googleplus").attr("href","https://plus.google.com/share?url="+encodeURIComponent(b.getSahreProps(e,"googleplusShareUrl")||window.location.href)),a("#lg-share-pinterest").attr("href","http://www.pinterest.com/pin/create/button/?url="+encodeURIComponent(b.getSahreProps(e,"pinterestShareUrl")||window.location.href)+"&media="+encodeURIComponent(b.getSahreProps(e,"src"))+"&description="+b.getSahreProps(e,"pinterestText"))},100)})},c.prototype.getSahreProps=function(a,b){var c="";if(this.core.s.dynamic)c=this.core.s.dynamicEl[a][b];else{var d=this.core.$items.eq(a).attr("href"),e=this.core.$items.eq(a).data(b);c="src"===b?d||e:e}return c},c.prototype.destroy=function(){},a.fn.lightGallery.modules.share=c}()}); + + +/** + * @module WOW + * @author Matthieu Aussaguel + * @license MIT + * @version 1.1.2 + */ +(function(){var t,e,n,i,o,r=function(t,e){return function(){return t.apply(e,arguments)}},s=[].indexOf||function(t){for(var e=0,n=this.length;n>e;e++)if(e in this&&this[e]===t)return e;return-1};e=function(){function t(){}return t.prototype.extend=function(t,e){var n,i;for(n in e)i=e[n],null==t[n]&&(t[n]=i);return t},t.prototype.isMobile=function(t){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(t)},t.prototype.createEvent=function(t,e,n,i){var o;return null==e&&(e=!1),null==n&&(n=!1),null==i&&(i=null),null!=document.createEvent?(o=document.createEvent("CustomEvent"),o.initCustomEvent(t,e,n,i)):null!=document.createEventObject?(o=document.createEventObject(),o.eventType=t):o.eventName=t,o},t.prototype.emitEvent=function(t,e){return null!=t.dispatchEvent?t.dispatchEvent(e):e in(null!=t)?t[e]():"on"+e in(null!=t)?t["on"+e]():void 0},t.prototype.addEvent=function(t,e,n){return null!=t.addEventListener?t.addEventListener(e,n,!1):null!=t.attachEvent?t.attachEvent("on"+e,n):t[e]=n},t.prototype.removeEvent=function(t,e,n){return null!=t.removeEventListener?t.removeEventListener(e,n,!1):null!=t.detachEvent?t.detachEvent("on"+e,n):delete t[e]},t.prototype.innerHeight=function(){return"innerHeight"in window?window.innerHeight:document.documentElement.clientHeight},t}(),n=this.WeakMap||this.MozWeakMap||(n=function(){function t(){this.keys=[],this.values=[]}return t.prototype.get=function(t){var e,n,i,o,r;for(r=this.keys,e=i=0,o=r.length;o>i;e=++i)if(n=r[e],n===t)return this.values[e]},t.prototype.set=function(t,e){var n,i,o,r,s;for(s=this.keys,n=o=0,r=s.length;r>o;n=++o)if(i=s[n],i===t)return void(this.values[n]=e);return this.keys.push(t),this.values.push(e)},t}()),t=this.MutationObserver||this.WebkitMutationObserver||this.MozMutationObserver||(t=function(){function t(){"undefined"!=typeof console&&null!==console&&console.warn("MutationObserver is not supported by your browser."),"undefined"!=typeof console&&null!==console&&console.warn("WOW.js cannot detect dom mutations, please call .sync() after loading new content.")}return t.notSupported=!0,t.prototype.observe=function(){},t}()),i=this.getComputedStyle||function(t){return this.getPropertyValue=function(e){var n;return"float"===e&&(e="styleFloat"),o.test(e)&&e.replace(o,function(t,e){return e.toUpperCase()}),(null!=(n=t.currentStyle)?n[e]:void 0)||null},this},o=/(\-([a-z]){1})/g,this.WOW=function(){function o(t){null==t&&(t={}),this.scrollCallback=r(this.scrollCallback,this),this.scrollHandler=r(this.scrollHandler,this),this.resetAnimation=r(this.resetAnimation,this),this.start=r(this.start,this),this.scrolled=!0,this.config=this.util().extend(t,this.defaults),null!=t.scrollContainer&&(this.config.scrollContainer=document.querySelector(t.scrollContainer)),this.animationNameCache=new n,this.wowEvent=this.util().createEvent(this.config.boxClass)}return o.prototype.defaults={boxClass:"wow",animateClass:"animated",offset:0,mobile:!0,live:!0,callback:null,scrollContainer:null},o.prototype.init=function(){var t;return this.element=window.document.documentElement,"interactive"===(t=document.readyState)||"complete"===t?this.start():this.util().addEvent(document,"DOMContentLoaded",this.start),this.finished=[]},o.prototype.start=function(){var e,n,i,o;if(this.stopped=!1,this.boxes=function(){var t,n,i,o;for(i=this.element.querySelectorAll("."+this.config.boxClass),o=[],t=0,n=i.length;n>t;t++)e=i[t],o.push(e);return o}.call(this),this.all=function(){var t,n,i,o;for(i=this.boxes,o=[],t=0,n=i.length;n>t;t++)e=i[t],o.push(e);return o}.call(this),this.boxes.length)if(this.disabled())this.resetStyle();else for(o=this.boxes,n=0,i=o.length;i>n;n++)e=o[n],this.applyStyle(e,!0);return this.disabled()||(this.util().addEvent(this.config.scrollContainer||window,"scroll",this.scrollHandler),this.util().addEvent(window,"resize",this.scrollHandler),this.interval=setInterval(this.scrollCallback,50)),this.config.live?new t(function(t){return function(e){var n,i,o,r,s;for(s=[],n=0,i=e.length;i>n;n++)r=e[n],s.push(function(){var t,e,n,i;for(n=r.addedNodes||[],i=[],t=0,e=n.length;e>t;t++)o=n[t],i.push(this.doSync(o));return i}.call(t));return s}}(this)).observe(document.body,{childList:!0,subtree:!0}):void 0},o.prototype.stop=function(){return this.stopped=!0,this.util().removeEvent(this.config.scrollContainer||window,"scroll",this.scrollHandler),this.util().removeEvent(window,"resize",this.scrollHandler),null!=this.interval?clearInterval(this.interval):void 0},o.prototype.sync=function(){return t.notSupported?this.doSync(this.element):void 0},o.prototype.doSync=function(t){var e,n,i,o,r;if(null==t&&(t=this.element),1===t.nodeType){for(t=t.parentNode||t,o=t.querySelectorAll("."+this.config.boxClass),r=[],n=0,i=o.length;i>n;n++)e=o[n],s.call(this.all,e)<0?(this.boxes.push(e),this.all.push(e),this.stopped||this.disabled()?this.resetStyle():this.applyStyle(e,!0),r.push(this.scrolled=!0)):r.push(void 0);return r}},o.prototype.show=function(t){return this.applyStyle(t),t.className=t.className+" "+this.config.animateClass,null!=this.config.callback&&this.config.callback(t),this.util().emitEvent(t,this.wowEvent),this.util().addEvent(t,"animationend",this.resetAnimation),this.util().addEvent(t,"oanimationend",this.resetAnimation),this.util().addEvent(t,"webkitAnimationEnd",this.resetAnimation),this.util().addEvent(t,"MSAnimationEnd",this.resetAnimation),t},o.prototype.applyStyle=function(t,e){var n,i,o;return i=t.getAttribute("data-wow-duration"),n=t.getAttribute("data-wow-delay"),o=t.getAttribute("data-wow-iteration"),this.animate(function(r){return function(){return r.customStyle(t,e,i,n,o)}}(this))},o.prototype.animate=function(){return"requestAnimationFrame"in window?function(t){return window.requestAnimationFrame(t)}:function(t){return t()}}(),o.prototype.resetStyle=function(){var t,e,n,i,o;for(i=this.boxes,o=[],e=0,n=i.length;n>e;e++)t=i[e],o.push(t.style.visibility="visible");return o},o.prototype.resetAnimation=function(t){var e;return t.type.toLowerCase().indexOf("animationend")>=0?(e=t.target||t.srcElement,e.className=e.className.replace(this.config.animateClass,"").trim()):void 0},o.prototype.customStyle=function(t,e,n,i,o){return e&&this.cacheAnimationName(t),t.style.visibility=e?"hidden":"visible",n&&this.vendorSet(t.style,{animationDuration:n}),i&&this.vendorSet(t.style,{animationDelay:i}),o&&this.vendorSet(t.style,{animationIterationCount:o}),this.vendorSet(t.style,{animationName:e?"none":this.cachedAnimationName(t)}),t},o.prototype.vendors=["moz","webkit"],o.prototype.vendorSet=function(t,e){var n,i,o,r;i=[];for(n in e)o=e[n],t[""+n]=o,i.push(function(){var e,i,s,l;for(s=this.vendors,l=[],e=0,i=s.length;i>e;e++)r=s[e],l.push(t[""+r+n.charAt(0).toUpperCase()+n.substr(1)]=o);return l}.call(this));return i},o.prototype.vendorCSS=function(t,e){var n,o,r,s,l,a;for(l=i(t),s=l.getPropertyCSSValue(e),r=this.vendors,n=0,o=r.length;o>n;n++)a=r[n],s=s||l.getPropertyCSSValue("-"+a+"-"+e);return s},o.prototype.animationName=function(t){var e;try{e=this.vendorCSS(t,"animation-name").cssText}catch(n){e=i(t).getPropertyValue("animation-name")}return"none"===e?"":e},o.prototype.cacheAnimationName=function(t){return this.animationNameCache.set(t,this.animationName(t))},o.prototype.cachedAnimationName=function(t){return this.animationNameCache.get(t)},o.prototype.scrollHandler=function(){return this.scrolled=!0},o.prototype.scrollCallback=function(){var t;return!this.scrolled||(this.scrolled=!1,this.boxes=function(){var e,n,i,o;for(i=this.boxes,o=[],e=0,n=i.length;n>e;e++)t=i[e],t&&(this.isVisible(t)?this.show(t):o.push(t));return o}.call(this),this.boxes.length||this.config.live)?void 0:this.stop()},o.prototype.offsetTop=function(t){for(var e;void 0===t.offsetTop;)t=t.parentNode;for(e=t.offsetTop;t=t.offsetParent;)e+=t.offsetTop;return e},o.prototype.isVisible=function(t){var e,n,i,o,r;return n=t.getAttribute("data-wow-offset")||this.config.offset,r=this.config.scrollContainer&&this.config.scrollContainer.scrollTop||window.pageYOffset,o=r+Math.min(this.element.clientHeight,this.util().innerHeight())-n,i=this.offsetTop(t),e=i+t.clientHeight,o>=i&&e>=r},o.prototype.util=function(){return null!=this._util?this._util:this._util=new e},o.prototype.disabled=function(){return!this.config.mobile&&this.util().isMobile(navigator.userAgent)},o}()}).call(this); + + +/** + * @module Select2 + * @see https://github.com/select2/select2 + * @license MIT + * @version 3.5.4 + */ +!function(a){"undefined"==typeof a.fn.each2&&a.extend(a.fn,{each2:function(b){for(var c=a([0]),d=-1,e=this.length;++dc;c+=1)if(r(a,b[c]))return c;return-1}function q(){var b=a(l);b.appendTo(document.body);var c={width:b.width()-b[0].clientWidth,height:b.height()-b[0].clientHeight};return b.remove(),c}function r(a,c){return a===c?!0:a===b||c===b?!1:null===a||null===c?!1:a.constructor===String?a+""==c+"":c.constructor===String?c+""==a+"":!1}function s(a,b,c){var d,e,f;if(null===a||a.length<1)return[];for(d=a.split(b),e=0,f=d.length;f>e;e+=1)d[e]=c(d[e]);return d}function t(a){return a.outerWidth(!1)-a.width()}function u(c){var d="keyup-change-value";c.on("keydown",function(){a.data(c,d)===b&&a.data(c,d,c.val())}),c.on("keyup",function(){var e=a.data(c,d);e!==b&&c.val()!==e&&(a.removeData(c,d),c.trigger("keyup-change"))})}function v(c){c.on("mousemove",function(c){var d=h;(d===b||d.x!==c.pageX||d.y!==c.pageY)&&a(c.target).trigger("mousemove-filtered",c)})}function w(a,c,d){d=d||b;var e;return function(){var b=arguments;window.clearTimeout(e),e=window.setTimeout(function(){c.apply(d,b)},a)}}function x(a,b){var c=w(a,function(a){b.trigger("scroll-debounced",a)});b.on("scroll",function(a){p(a.target,b.get())>=0&&c(a)})}function y(a){a[0]!==document.activeElement&&window.setTimeout(function(){var d,b=a[0],c=a.val().length;a.focus();var e=b.offsetWidth>0||b.offsetHeight>0;e&&b===document.activeElement&&(b.setSelectionRange?b.setSelectionRange(c,c):b.createTextRange&&(d=b.createTextRange(),d.collapse(!1),d.select()))},0)}function z(b){b=a(b)[0];var c=0,d=0;if("selectionStart"in b)c=b.selectionStart,d=b.selectionEnd-c;else if("selection"in document){b.focus();var e=document.selection.createRange();d=document.selection.createRange().text.length,e.moveStart("character",-b.value.length),c=e.text.length-d}return{offset:c,length:d}}function A(a){a.preventDefault(),a.stopPropagation()}function B(a){a.preventDefault(),a.stopImmediatePropagation()}function C(b){if(!g){var c=b[0].currentStyle||window.getComputedStyle(b[0],null);g=a(document.createElement("div")).css({position:"absolute",left:"-10000px",top:"-10000px",display:"none",fontSize:c.fontSize,fontFamily:c.fontFamily,fontStyle:c.fontStyle,fontWeight:c.fontWeight,letterSpacing:c.letterSpacing,textTransform:c.textTransform,whiteSpace:"nowrap"}),g.attr("class","select2-sizer"),a(document.body).append(g)}return g.text(b.val()),g.width()}function D(b,c,d){var e,g,f=[];e=a.trim(b.attr("class")),e&&(e=""+e,a(e.split(/\s+/)).each2(function(){0===this.indexOf("select2-")&&f.push(this)})),e=a.trim(c.attr("class")),e&&(e=""+e,a(e.split(/\s+/)).each2(function(){0!==this.indexOf("select2-")&&(g=d(this),g&&f.push(g))})),b.attr("class",f.join(" "))}function E(a,b,c,d){var e=o(a.toUpperCase()).indexOf(o(b.toUpperCase())),f=b.length;return 0>e?void c.push(d(a)):(c.push(d(a.substring(0,e))),c.push(""),c.push(d(a.substring(e,e+f))),c.push(""),void c.push(d(a.substring(e+f,a.length))))}function F(a){var b={"\\":"\","&":"&","<":"<",">":">",'"':""","'":"'","/":"/"};return String(a).replace(/[&<>"'\/\\]/g,function(a){return b[a]})}function G(c){var d,e=null,f=c.quietMillis||100,g=c.url,h=this;return function(i){window.clearTimeout(d),d=window.setTimeout(function(){var d=c.data,f=g,j=c.transport||a.fn.select2.ajaxDefaults.transport,k={type:c.type||"GET",cache:c.cache||!1,jsonpCallback:c.jsonpCallback||b,dataType:c.dataType||"json"},l=a.extend({},a.fn.select2.ajaxDefaults.params,k);d=d?d.call(h,i.term,i.page,i.context):null,f="function"==typeof f?f.call(h,i.term,i.page,i.context):f,e&&"function"==typeof e.abort&&e.abort(),c.params&&(a.isFunction(c.params)?a.extend(l,c.params.call(h)):a.extend(l,c.params)),a.extend(l,{url:f,dataType:c.dataType,data:d,success:function(a){var b=c.results(a,i.page,i);i.callback(b)},error:function(a,b,c){var d={hasError:!0,jqXHR:a,textStatus:b,errorThrown:c};i.callback(d)}}),e=j.call(h,l)},f)}}function H(b){var d,e,c=b,f=function(a){return""+a.text};a.isArray(c)&&(e=c,c={results:e}),a.isFunction(c)===!1&&(e=c,c=function(){return e});var g=c();return g.text&&(f=g.text,a.isFunction(f)||(d=g.text,f=function(a){return a[d]})),function(b){var g,d=b.term,e={results:[]};return""===d?void b.callback(c()):(g=function(c,e){var h,i;if(c=c[0],c.children){h={};for(i in c)c.hasOwnProperty(i)&&(h[i]=c[i]);h.children=[],a(c.children).each2(function(a,b){g(b,h.children)}),(h.children.length||b.matcher(d,f(h),c))&&e.push(h)}else b.matcher(d,f(c),c)&&e.push(c)},a(c().results).each2(function(a,b){g(b,e.results)}),void b.callback(e))}}function I(c){var d=a.isFunction(c);return function(e){var f=e.term,g={results:[]},h=d?c(e):c;a.isArray(h)&&(a(h).each(function(){var a=this.text!==b,c=a?this.text:this;(""===f||e.matcher(f,c))&&g.results.push(a?this:{id:this,text:this})}),e.callback(g))}}function J(b,c){if(a.isFunction(b))return!0;if(!b)return!1;if("string"==typeof b)return!0;throw new Error(c+" must be a string, function, or falsy value")}function K(b,c){if(a.isFunction(b)){var d=Array.prototype.slice.call(arguments,2);return b.apply(c,d)}return b}function L(b){var c=0;return a.each(b,function(a,b){b.children?c+=L(b.children):c++}),c}function M(a,c,d,e){var h,i,j,k,l,f=a,g=!1;if(!e.createSearchChoice||!e.tokenSeparators||e.tokenSeparators.length<1)return b;for(;;){for(i=-1,j=0,k=e.tokenSeparators.length;k>j&&(l=e.tokenSeparators[j],i=a.indexOf(l),!(i>=0));j++);if(0>i)break;if(h=a.substring(0,i),a=a.substring(i+l.length),h.length>0&&(h=e.createSearchChoice.call(this,h,c),h!==b&&null!==h&&e.id(h)!==b&&null!==e.id(h))){for(g=!1,j=0,k=c.length;k>j;j++)if(r(e.id(h),e.id(c[j]))){g=!0;break}g||d(h)}}return f!==a?a:void 0}function N(){var b=this;a.each(arguments,function(a,c){b[c].remove(),b[c]=null})}function O(b,c){var d=function(){};return d.prototype=new b,d.prototype.constructor=d,d.prototype.parent=b.prototype,d.prototype=a.extend(d.prototype,c),d}if(window.Select2===b){var c,d,e,f,g,i,j,h={x:0,y:0},k={TAB:9,ENTER:13,ESC:27,SPACE:32,LEFT:37,UP:38,RIGHT:39,DOWN:40,SHIFT:16,CTRL:17,ALT:18,PAGE_UP:33,PAGE_DOWN:34,HOME:36,END:35,BACKSPACE:8,DELETE:46,isArrow:function(a){switch(a=a.which?a.which:a){case k.LEFT:case k.RIGHT:case k.UP:case k.DOWN:return!0}return!1},isControl:function(a){var b=a.which;switch(b){case k.SHIFT:case k.CTRL:case k.ALT:return!0}return a.metaKey?!0:!1},isFunctionKey:function(a){return a=a.which?a.which:a,a>=112&&123>=a}},l="
",m={"\u24b6":"A","\uff21":"A","\xc0":"A","\xc1":"A","\xc2":"A","\u1ea6":"A","\u1ea4":"A","\u1eaa":"A","\u1ea8":"A","\xc3":"A","\u0100":"A","\u0102":"A","\u1eb0":"A","\u1eae":"A","\u1eb4":"A","\u1eb2":"A","\u0226":"A","\u01e0":"A","\xc4":"A","\u01de":"A","\u1ea2":"A","\xc5":"A","\u01fa":"A","\u01cd":"A","\u0200":"A","\u0202":"A","\u1ea0":"A","\u1eac":"A","\u1eb6":"A","\u1e00":"A","\u0104":"A","\u023a":"A","\u2c6f":"A","\ua732":"AA","\xc6":"AE","\u01fc":"AE","\u01e2":"AE","\ua734":"AO","\ua736":"AU","\ua738":"AV","\ua73a":"AV","\ua73c":"AY","\u24b7":"B","\uff22":"B","\u1e02":"B","\u1e04":"B","\u1e06":"B","\u0243":"B","\u0182":"B","\u0181":"B","\u24b8":"C","\uff23":"C","\u0106":"C","\u0108":"C","\u010a":"C","\u010c":"C","\xc7":"C","\u1e08":"C","\u0187":"C","\u023b":"C","\ua73e":"C","\u24b9":"D","\uff24":"D","\u1e0a":"D","\u010e":"D","\u1e0c":"D","\u1e10":"D","\u1e12":"D","\u1e0e":"D","\u0110":"D","\u018b":"D","\u018a":"D","\u0189":"D","\ua779":"D","\u01f1":"DZ","\u01c4":"DZ","\u01f2":"Dz","\u01c5":"Dz","\u24ba":"E","\uff25":"E","\xc8":"E","\xc9":"E","\xca":"E","\u1ec0":"E","\u1ebe":"E","\u1ec4":"E","\u1ec2":"E","\u1ebc":"E","\u0112":"E","\u1e14":"E","\u1e16":"E","\u0114":"E","\u0116":"E","\xcb":"E","\u1eba":"E","\u011a":"E","\u0204":"E","\u0206":"E","\u1eb8":"E","\u1ec6":"E","\u0228":"E","\u1e1c":"E","\u0118":"E","\u1e18":"E","\u1e1a":"E","\u0190":"E","\u018e":"E","\u24bb":"F","\uff26":"F","\u1e1e":"F","\u0191":"F","\ua77b":"F","\u24bc":"G","\uff27":"G","\u01f4":"G","\u011c":"G","\u1e20":"G","\u011e":"G","\u0120":"G","\u01e6":"G","\u0122":"G","\u01e4":"G","\u0193":"G","\ua7a0":"G","\ua77d":"G","\ua77e":"G","\u24bd":"H","\uff28":"H","\u0124":"H","\u1e22":"H","\u1e26":"H","\u021e":"H","\u1e24":"H","\u1e28":"H","\u1e2a":"H","\u0126":"H","\u2c67":"H","\u2c75":"H","\ua78d":"H","\u24be":"I","\uff29":"I","\xcc":"I","\xcd":"I","\xce":"I","\u0128":"I","\u012a":"I","\u012c":"I","\u0130":"I","\xcf":"I","\u1e2e":"I","\u1ec8":"I","\u01cf":"I","\u0208":"I","\u020a":"I","\u1eca":"I","\u012e":"I","\u1e2c":"I","\u0197":"I","\u24bf":"J","\uff2a":"J","\u0134":"J","\u0248":"J","\u24c0":"K","\uff2b":"K","\u1e30":"K","\u01e8":"K","\u1e32":"K","\u0136":"K","\u1e34":"K","\u0198":"K","\u2c69":"K","\ua740":"K","\ua742":"K","\ua744":"K","\ua7a2":"K","\u24c1":"L","\uff2c":"L","\u013f":"L","\u0139":"L","\u013d":"L","\u1e36":"L","\u1e38":"L","\u013b":"L","\u1e3c":"L","\u1e3a":"L","\u0141":"L","\u023d":"L","\u2c62":"L","\u2c60":"L","\ua748":"L","\ua746":"L","\ua780":"L","\u01c7":"LJ","\u01c8":"Lj","\u24c2":"M","\uff2d":"M","\u1e3e":"M","\u1e40":"M","\u1e42":"M","\u2c6e":"M","\u019c":"M","\u24c3":"N","\uff2e":"N","\u01f8":"N","\u0143":"N","\xd1":"N","\u1e44":"N","\u0147":"N","\u1e46":"N","\u0145":"N","\u1e4a":"N","\u1e48":"N","\u0220":"N","\u019d":"N","\ua790":"N","\ua7a4":"N","\u01ca":"NJ","\u01cb":"Nj","\u24c4":"O","\uff2f":"O","\xd2":"O","\xd3":"O","\xd4":"O","\u1ed2":"O","\u1ed0":"O","\u1ed6":"O","\u1ed4":"O","\xd5":"O","\u1e4c":"O","\u022c":"O","\u1e4e":"O","\u014c":"O","\u1e50":"O","\u1e52":"O","\u014e":"O","\u022e":"O","\u0230":"O","\xd6":"O","\u022a":"O","\u1ece":"O","\u0150":"O","\u01d1":"O","\u020c":"O","\u020e":"O","\u01a0":"O","\u1edc":"O","\u1eda":"O","\u1ee0":"O","\u1ede":"O","\u1ee2":"O","\u1ecc":"O","\u1ed8":"O","\u01ea":"O","\u01ec":"O","\xd8":"O","\u01fe":"O","\u0186":"O","\u019f":"O","\ua74a":"O","\ua74c":"O","\u01a2":"OI","\ua74e":"OO","\u0222":"OU","\u24c5":"P","\uff30":"P","\u1e54":"P","\u1e56":"P","\u01a4":"P","\u2c63":"P","\ua750":"P","\ua752":"P","\ua754":"P","\u24c6":"Q","\uff31":"Q","\ua756":"Q","\ua758":"Q","\u024a":"Q","\u24c7":"R","\uff32":"R","\u0154":"R","\u1e58":"R","\u0158":"R","\u0210":"R","\u0212":"R","\u1e5a":"R","\u1e5c":"R","\u0156":"R","\u1e5e":"R","\u024c":"R","\u2c64":"R","\ua75a":"R","\ua7a6":"R","\ua782":"R","\u24c8":"S","\uff33":"S","\u1e9e":"S","\u015a":"S","\u1e64":"S","\u015c":"S","\u1e60":"S","\u0160":"S","\u1e66":"S","\u1e62":"S","\u1e68":"S","\u0218":"S","\u015e":"S","\u2c7e":"S","\ua7a8":"S","\ua784":"S","\u24c9":"T","\uff34":"T","\u1e6a":"T","\u0164":"T","\u1e6c":"T","\u021a":"T","\u0162":"T","\u1e70":"T","\u1e6e":"T","\u0166":"T","\u01ac":"T","\u01ae":"T","\u023e":"T","\ua786":"T","\ua728":"TZ","\u24ca":"U","\uff35":"U","\xd9":"U","\xda":"U","\xdb":"U","\u0168":"U","\u1e78":"U","\u016a":"U","\u1e7a":"U","\u016c":"U","\xdc":"U","\u01db":"U","\u01d7":"U","\u01d5":"U","\u01d9":"U","\u1ee6":"U","\u016e":"U","\u0170":"U","\u01d3":"U","\u0214":"U","\u0216":"U","\u01af":"U","\u1eea":"U","\u1ee8":"U","\u1eee":"U","\u1eec":"U","\u1ef0":"U","\u1ee4":"U","\u1e72":"U","\u0172":"U","\u1e76":"U","\u1e74":"U","\u0244":"U","\u24cb":"V","\uff36":"V","\u1e7c":"V","\u1e7e":"V","\u01b2":"V","\ua75e":"V","\u0245":"V","\ua760":"VY","\u24cc":"W","\uff37":"W","\u1e80":"W","\u1e82":"W","\u0174":"W","\u1e86":"W","\u1e84":"W","\u1e88":"W","\u2c72":"W","\u24cd":"X","\uff38":"X","\u1e8a":"X","\u1e8c":"X","\u24ce":"Y","\uff39":"Y","\u1ef2":"Y","\xdd":"Y","\u0176":"Y","\u1ef8":"Y","\u0232":"Y","\u1e8e":"Y","\u0178":"Y","\u1ef6":"Y","\u1ef4":"Y","\u01b3":"Y","\u024e":"Y","\u1efe":"Y","\u24cf":"Z","\uff3a":"Z","\u0179":"Z","\u1e90":"Z","\u017b":"Z","\u017d":"Z","\u1e92":"Z","\u1e94":"Z","\u01b5":"Z","\u0224":"Z","\u2c7f":"Z","\u2c6b":"Z","\ua762":"Z","\u24d0":"a","\uff41":"a","\u1e9a":"a","\xe0":"a","\xe1":"a","\xe2":"a","\u1ea7":"a","\u1ea5":"a","\u1eab":"a","\u1ea9":"a","\xe3":"a","\u0101":"a","\u0103":"a","\u1eb1":"a","\u1eaf":"a","\u1eb5":"a","\u1eb3":"a","\u0227":"a","\u01e1":"a","\xe4":"a","\u01df":"a","\u1ea3":"a","\xe5":"a","\u01fb":"a","\u01ce":"a","\u0201":"a","\u0203":"a","\u1ea1":"a","\u1ead":"a","\u1eb7":"a","\u1e01":"a","\u0105":"a","\u2c65":"a","\u0250":"a","\ua733":"aa","\xe6":"ae","\u01fd":"ae","\u01e3":"ae","\ua735":"ao","\ua737":"au","\ua739":"av","\ua73b":"av","\ua73d":"ay","\u24d1":"b","\uff42":"b","\u1e03":"b","\u1e05":"b","\u1e07":"b","\u0180":"b","\u0183":"b","\u0253":"b","\u24d2":"c","\uff43":"c","\u0107":"c","\u0109":"c","\u010b":"c","\u010d":"c","\xe7":"c","\u1e09":"c","\u0188":"c","\u023c":"c","\ua73f":"c","\u2184":"c","\u24d3":"d","\uff44":"d","\u1e0b":"d","\u010f":"d","\u1e0d":"d","\u1e11":"d","\u1e13":"d","\u1e0f":"d","\u0111":"d","\u018c":"d","\u0256":"d","\u0257":"d","\ua77a":"d","\u01f3":"dz","\u01c6":"dz","\u24d4":"e","\uff45":"e","\xe8":"e","\xe9":"e","\xea":"e","\u1ec1":"e","\u1ebf":"e","\u1ec5":"e","\u1ec3":"e","\u1ebd":"e","\u0113":"e","\u1e15":"e","\u1e17":"e","\u0115":"e","\u0117":"e","\xeb":"e","\u1ebb":"e","\u011b":"e","\u0205":"e","\u0207":"e","\u1eb9":"e","\u1ec7":"e","\u0229":"e","\u1e1d":"e","\u0119":"e","\u1e19":"e","\u1e1b":"e","\u0247":"e","\u025b":"e","\u01dd":"e","\u24d5":"f","\uff46":"f","\u1e1f":"f","\u0192":"f","\ua77c":"f","\u24d6":"g","\uff47":"g","\u01f5":"g","\u011d":"g","\u1e21":"g","\u011f":"g","\u0121":"g","\u01e7":"g","\u0123":"g","\u01e5":"g","\u0260":"g","\ua7a1":"g","\u1d79":"g","\ua77f":"g","\u24d7":"h","\uff48":"h","\u0125":"h","\u1e23":"h","\u1e27":"h","\u021f":"h","\u1e25":"h","\u1e29":"h","\u1e2b":"h","\u1e96":"h","\u0127":"h","\u2c68":"h","\u2c76":"h","\u0265":"h","\u0195":"hv","\u24d8":"i","\uff49":"i","\xec":"i","\xed":"i","\xee":"i","\u0129":"i","\u012b":"i","\u012d":"i","\xef":"i","\u1e2f":"i","\u1ec9":"i","\u01d0":"i","\u0209":"i","\u020b":"i","\u1ecb":"i","\u012f":"i","\u1e2d":"i","\u0268":"i","\u0131":"i","\u24d9":"j","\uff4a":"j","\u0135":"j","\u01f0":"j","\u0249":"j","\u24da":"k","\uff4b":"k","\u1e31":"k","\u01e9":"k","\u1e33":"k","\u0137":"k","\u1e35":"k","\u0199":"k","\u2c6a":"k","\ua741":"k","\ua743":"k","\ua745":"k","\ua7a3":"k","\u24db":"l","\uff4c":"l","\u0140":"l","\u013a":"l","\u013e":"l","\u1e37":"l","\u1e39":"l","\u013c":"l","\u1e3d":"l","\u1e3b":"l","\u017f":"l","\u0142":"l","\u019a":"l","\u026b":"l","\u2c61":"l","\ua749":"l","\ua781":"l","\ua747":"l","\u01c9":"lj","\u24dc":"m","\uff4d":"m","\u1e3f":"m","\u1e41":"m","\u1e43":"m","\u0271":"m","\u026f":"m","\u24dd":"n","\uff4e":"n","\u01f9":"n","\u0144":"n","\xf1":"n","\u1e45":"n","\u0148":"n","\u1e47":"n","\u0146":"n","\u1e4b":"n","\u1e49":"n","\u019e":"n","\u0272":"n","\u0149":"n","\ua791":"n","\ua7a5":"n","\u01cc":"nj","\u24de":"o","\uff4f":"o","\xf2":"o","\xf3":"o","\xf4":"o","\u1ed3":"o","\u1ed1":"o","\u1ed7":"o","\u1ed5":"o","\xf5":"o","\u1e4d":"o","\u022d":"o","\u1e4f":"o","\u014d":"o","\u1e51":"o","\u1e53":"o","\u014f":"o","\u022f":"o","\u0231":"o","\xf6":"o","\u022b":"o","\u1ecf":"o","\u0151":"o","\u01d2":"o","\u020d":"o","\u020f":"o","\u01a1":"o","\u1edd":"o","\u1edb":"o","\u1ee1":"o","\u1edf":"o","\u1ee3":"o","\u1ecd":"o","\u1ed9":"o","\u01eb":"o","\u01ed":"o","\xf8":"o","\u01ff":"o","\u0254":"o","\ua74b":"o","\ua74d":"o","\u0275":"o","\u01a3":"oi","\u0223":"ou","\ua74f":"oo","\u24df":"p","\uff50":"p","\u1e55":"p","\u1e57":"p","\u01a5":"p","\u1d7d":"p","\ua751":"p","\ua753":"p","\ua755":"p","\u24e0":"q","\uff51":"q","\u024b":"q","\ua757":"q","\ua759":"q","\u24e1":"r","\uff52":"r","\u0155":"r","\u1e59":"r","\u0159":"r","\u0211":"r","\u0213":"r","\u1e5b":"r","\u1e5d":"r","\u0157":"r","\u1e5f":"r","\u024d":"r","\u027d":"r","\ua75b":"r","\ua7a7":"r","\ua783":"r","\u24e2":"s","\uff53":"s","\xdf":"s","\u015b":"s","\u1e65":"s","\u015d":"s","\u1e61":"s","\u0161":"s","\u1e67":"s","\u1e63":"s","\u1e69":"s","\u0219":"s","\u015f":"s","\u023f":"s","\ua7a9":"s","\ua785":"s","\u1e9b":"s","\u24e3":"t","\uff54":"t","\u1e6b":"t","\u1e97":"t","\u0165":"t","\u1e6d":"t","\u021b":"t","\u0163":"t","\u1e71":"t","\u1e6f":"t","\u0167":"t","\u01ad":"t","\u0288":"t","\u2c66":"t","\ua787":"t","\ua729":"tz","\u24e4":"u","\uff55":"u","\xf9":"u","\xfa":"u","\xfb":"u","\u0169":"u","\u1e79":"u","\u016b":"u","\u1e7b":"u","\u016d":"u","\xfc":"u","\u01dc":"u","\u01d8":"u","\u01d6":"u","\u01da":"u","\u1ee7":"u","\u016f":"u","\u0171":"u","\u01d4":"u","\u0215":"u","\u0217":"u","\u01b0":"u","\u1eeb":"u","\u1ee9":"u","\u1eef":"u","\u1eed":"u","\u1ef1":"u","\u1ee5":"u","\u1e73":"u","\u0173":"u","\u1e77":"u","\u1e75":"u","\u0289":"u","\u24e5":"v","\uff56":"v","\u1e7d":"v","\u1e7f":"v","\u028b":"v","\ua75f":"v","\u028c":"v","\ua761":"vy","\u24e6":"w","\uff57":"w","\u1e81":"w","\u1e83":"w","\u0175":"w","\u1e87":"w","\u1e85":"w","\u1e98":"w","\u1e89":"w","\u2c73":"w","\u24e7":"x","\uff58":"x","\u1e8b":"x","\u1e8d":"x","\u24e8":"y","\uff59":"y","\u1ef3":"y","\xfd":"y","\u0177":"y","\u1ef9":"y","\u0233":"y","\u1e8f":"y","\xff":"y","\u1ef7":"y","\u1e99":"y","\u1ef5":"y","\u01b4":"y","\u024f":"y","\u1eff":"y","\u24e9":"z","\uff5a":"z","\u017a":"z","\u1e91":"z","\u017c":"z","\u017e":"z","\u1e93":"z","\u1e95":"z","\u01b6":"z","\u0225":"z","\u0240":"z","\u2c6c":"z","\ua763":"z","\u0386":"\u0391","\u0388":"\u0395","\u0389":"\u0397","\u038a":"\u0399","\u03aa":"\u0399","\u038c":"\u039f","\u038e":"\u03a5","\u03ab":"\u03a5","\u038f":"\u03a9","\u03ac":"\u03b1","\u03ad":"\u03b5","\u03ae":"\u03b7","\u03af":"\u03b9","\u03ca":"\u03b9","\u0390":"\u03b9","\u03cc":"\u03bf","\u03cd":"\u03c5","\u03cb":"\u03c5","\u03b0":"\u03c5","\u03c9":"\u03c9","\u03c2":"\u03c3"};i=a(document),f=function(){var a=1;return function(){return a++}}(),c=O(Object,{bind:function(a){var b=this;return function(){a.apply(b,arguments)}},init:function(c){var d,e,g=".select2-results";this.opts=c=this.prepareOpts(c),this.id=c.id,c.element.data("select2")!==b&&null!==c.element.data("select2")&&c.element.data("select2").destroy(),this.container=this.createContainer(),this.liveRegion=a(".select2-hidden-accessible"),0==this.liveRegion.length&&(this.liveRegion=a("",{role:"status","aria-live":"polite"}).addClass("select2-hidden-accessible").appendTo(document.body)),this.containerId="s2id_"+(c.element.attr("id")||"autogen"+f()),this.containerEventName=this.containerId.replace(/([.])/g,"_").replace(/([;&,\-\.\+\*\~':"\!\^#$%@\[\]\(\)=>\|])/g,"\\$1"),this.container.attr("id",this.containerId),this.container.attr("title",c.element.attr("title")),this.body=a(document.body),D(this.container,this.opts.element,this.opts.adaptContainerCssClass),this.container.attr("style",c.element.attr("style")),this.container.css(K(c.containerCss,this.opts.element)),this.container.addClass(K(c.containerCssClass,this.opts.element)),this.elementTabIndex=this.opts.element.attr("tabindex"),this.opts.element.data("select2",this).attr("tabindex","-1").before(this.container).on("click.select2",A),this.container.data("select2",this),this.dropdown=this.container.find(".select2-drop"),D(this.dropdown,this.opts.element,this.opts.adaptDropdownCssClass),this.dropdown.addClass(K(c.dropdownCssClass,this.opts.element)),this.dropdown.data("select2",this),this.dropdown.on("click",A),this.results=d=this.container.find(g),this.search=e=this.container.find("input.select2-input"),this.queryCount=0,this.resultsPage=0,this.context=null,this.initContainer(),this.container.on("click",A),v(this.results),this.dropdown.on("mousemove-filtered",g,this.bind(this.highlightUnderEvent)),this.dropdown.on("touchstart touchmove touchend",g,this.bind(function(a){this._touchEvent=!0,this.highlightUnderEvent(a)})),this.dropdown.on("touchmove",g,this.bind(this.touchMoved)),this.dropdown.on("touchstart touchend",g,this.bind(this.clearTouchMoved)),this.dropdown.on("click",this.bind(function(a){this._touchEvent&&(this._touchEvent=!1,this.selectHighlighted())})),x(80,this.results),this.dropdown.on("scroll-debounced",g,this.bind(this.loadMoreIfNeeded)),a(this.container).on("change",".select2-input",function(a){a.stopPropagation()}),a(this.dropdown).on("change",".select2-input",function(a){a.stopPropagation()}),a.fn.mousewheel&&d.mousewheel(function(a,b,c,e){var f=d.scrollTop();e>0&&0>=f-e?(d.scrollTop(0),A(a)):0>e&&d.get(0).scrollHeight-d.scrollTop()+e<=d.height()&&(d.scrollTop(d.get(0).scrollHeight-d.height()),A(a))}),u(e),e.on("keyup-change input paste",this.bind(this.updateResults)),e.on("focus",function(){e.addClass("select2-focused")}),e.on("blur",function(){e.removeClass("select2-focused")}),this.dropdown.on("mouseup",g,this.bind(function(b){a(b.target).closest(".select2-result-selectable").length>0&&(this.highlightUnderEvent(b),this.selectHighlighted(b))})),this.dropdown.on("click mouseup mousedown touchstart touchend focusin",function(a){a.stopPropagation()}),this.lastSearchTerm=b,a.isFunction(this.opts.initSelection)&&(this.initSelection(),this.monitorSource()),null!==c.maximumInputLength&&this.search.attr("maxlength",c.maximumInputLength);var h=c.element.prop("disabled");h===b&&(h=!1),this.enable(!h);var i=c.element.prop("readonly");i===b&&(i=!1),this.readonly(i),j=j||q(),this.autofocus=c.element.prop("autofocus"),c.element.prop("autofocus",!1),this.autofocus&&this.focus(),this.search.attr("placeholder",c.searchInputPlaceholder)},destroy:function(){var a=this.opts.element,c=a.data("select2"),d=this;this.close(),a.length&&a[0].detachEvent&&d._sync&&a.each(function(){d._sync&&this.detachEvent("onpropertychange",d._sync)}),this.propertyObserver&&(this.propertyObserver.disconnect(),this.propertyObserver=null),this._sync=null,c!==b&&(c.container.remove(),c.liveRegion.remove(),c.dropdown.remove(),a.removeData("select2").off(".select2"),a.is("input[type='hidden']")?a.css("display",""):(a.show().prop("autofocus",this.autofocus||!1),this.elementTabIndex?a.attr({tabindex:this.elementTabIndex}):a.removeAttr("tabindex"),a.show())),N.call(this,"container","liveRegion","dropdown","results","search")},optionToData:function(a){return a.is("option")?{id:a.prop("value"),text:a.text(),element:a.get(),css:a.attr("class"),disabled:a.prop("disabled"),locked:r(a.attr("locked"),"locked")||r(a.data("locked"),!0)}:a.is("optgroup")?{text:a.attr("label"),children:[],element:a.get(),css:a.attr("class")}:void 0},prepareOpts:function(c){var d,e,g,h,i=this;if(d=c.element,"select"===d.get(0).tagName.toLowerCase()&&(this.select=e=c.element),e&&a.each(["id","multiple","ajax","query","createSearchChoice","initSelection","data","tags"],function(){if(this in c)throw new Error("Option '"+this+"' is not allowed for Select2 when attached to a ","
"," ","
    ","
","
"].join(""));return b},enableInterface:function(){this.parent.enableInterface.apply(this,arguments)&&this.focusser.prop("disabled",!this.isInterfaceEnabled())},opening:function(){var b,c,d;this.opts.minimumResultsForSearch>=0&&this.showSearch(!0),this.parent.opening.apply(this,arguments),this.showSearchInput!==!1&&this.search.val(this.focusser.val()),this.opts.shouldFocusInput(this)&&(this.search.focus(),b=this.search.get(0),b.createTextRange?(c=b.createTextRange(),c.collapse(!1),c.select()):b.setSelectionRange&&(d=this.search.val().length,b.setSelectionRange(d,d))),this.prefillNextSearchTerm(),this.focusser.prop("disabled",!0).val(""),this.updateResults(!0),this.opts.element.trigger(a.Event("select2-open"))},close:function(){this.opened()&&(this.parent.close.apply(this,arguments),this.focusser.prop("disabled",!1),this.opts.shouldFocusInput(this)&&this.focusser.focus())},focus:function(){this.opened()?this.close():(this.focusser.prop("disabled",!1),this.opts.shouldFocusInput(this)&&this.focusser.focus())},isFocused:function(){return this.container.hasClass("select2-container-active")},cancel:function(){this.parent.cancel.apply(this,arguments),this.focusser.prop("disabled",!1),this.opts.shouldFocusInput(this)&&this.focusser.focus()},destroy:function(){a("label[for='"+this.focusser.attr("id")+"']").attr("for",this.opts.element.attr("id")),this.parent.destroy.apply(this,arguments),N.call(this,"selection","focusser")},initContainer:function(){var b,g,c=this.container,d=this.dropdown,e=f();this.opts.minimumResultsForSearch<0?this.showSearch(!1):this.showSearch(!0),this.selection=b=c.find(".select2-choice"),this.focusser=c.find(".select2-focusser"),b.find(".select2-chosen").attr("id","select2-chosen-"+e),this.focusser.attr("aria-labelledby","select2-chosen-"+e),this.results.attr("id","select2-results-"+e),this.search.attr("aria-owns","select2-results-"+e),this.focusser.attr("id","s2id_autogen"+e),g=a("label[for='"+this.opts.element.attr("id")+"']"),this.opts.element.on("focus.select2",this.bind(function(){this.focus()})),this.focusser.prev().text(g.text()).attr("for",this.focusser.attr("id"));var h=this.opts.element.attr("title");this.opts.element.attr("title",h||g.text()),this.focusser.attr("tabindex",this.elementTabIndex),this.search.attr("id",this.focusser.attr("id")+"_search"),this.search.prev().text(a("label[for='"+this.focusser.attr("id")+"']").text()).attr("for",this.search.attr("id")),this.search.on("keydown",this.bind(function(a){if(this.isInterfaceEnabled()&&229!=a.keyCode){if(a.which===k.PAGE_UP||a.which===k.PAGE_DOWN)return void A(a);switch(a.which){case k.UP:case k.DOWN:return this.moveHighlight(a.which===k.UP?-1:1),void A(a);case k.ENTER:return this.selectHighlighted(),void A(a);case k.TAB:return void this.selectHighlighted({noFocus:!0});case k.ESC:return this.cancel(a),void A(a)}}})),this.search.on("blur",this.bind(function(a){document.activeElement===this.body.get(0)&&window.setTimeout(this.bind(function(){this.opened()&&this.results&&this.results.length>1&&this.search.focus()}),0)})),this.focusser.on("keydown",this.bind(function(a){if(this.isInterfaceEnabled()&&a.which!==k.TAB&&!k.isControl(a)&&!k.isFunctionKey(a)&&a.which!==k.ESC){if(this.opts.openOnEnter===!1&&a.which===k.ENTER)return void A(a);if(a.which==k.DOWN||a.which==k.UP||a.which==k.ENTER&&this.opts.openOnEnter){if(a.altKey||a.ctrlKey||a.shiftKey||a.metaKey)return;return this.open(),void A(a)}return a.which==k.DELETE||a.which==k.BACKSPACE?(this.opts.allowClear&&this.clear(),void A(a)):void 0}})),u(this.focusser),this.focusser.on("keyup-change input",this.bind(function(a){if(this.opts.minimumResultsForSearch>=0){if(a.stopPropagation(),this.opened())return;this.open()}})),b.on("mousedown touchstart","abbr",this.bind(function(a){this.isInterfaceEnabled()&&(this.clear(),B(a),this.close(),this.selection&&this.selection.focus())})),b.on("mousedown touchstart",this.bind(function(c){n(b),this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.opened()?this.close():this.isInterfaceEnabled()&&this.open(),A(c)})),d.on("mousedown touchstart",this.bind(function(){this.opts.shouldFocusInput(this)&&this.search.focus()})),b.on("focus",this.bind(function(a){A(a)})),this.focusser.on("focus",this.bind(function(){this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.container.addClass("select2-container-active")})).on("blur",this.bind(function(){this.opened()||(this.container.removeClass("select2-container-active"),this.opts.element.trigger(a.Event("select2-blur")))})),this.search.on("focus",this.bind(function(){this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.container.addClass("select2-container-active")})),this.initContainerWidth(),this.opts.element.hide(),this.setPlaceholder()},clear:function(b){var c=this.selection.data("select2-data");if(c){var d=a.Event("select2-clearing");if(this.opts.element.trigger(d),d.isDefaultPrevented())return;var e=this.getPlaceholderOption();this.opts.element.val(e?e.val():""),this.selection.find(".select2-chosen").empty(),this.selection.removeData("select2-data"),this.setPlaceholder(),b!==!1&&(this.opts.element.trigger({type:"select2-removed",val:this.id(c),choice:c}),this.triggerChange({removed:c}))}},initSelection:function(){if(this.isPlaceholderOptionSelected())this.updateSelection(null),this.close(),this.setPlaceholder();else{var c=this;this.opts.initSelection.call(null,this.opts.element,function(a){a!==b&&null!==a&&(c.updateSelection(a),c.close(),c.setPlaceholder(),c.lastSearchTerm=c.search.val())})}},isPlaceholderOptionSelected:function(){var a;return this.getPlaceholder()===b?!1:(a=this.getPlaceholderOption())!==b&&a.prop("selected")||""===this.opts.element.val()||this.opts.element.val()===b||null===this.opts.element.val()},prepareOpts:function(){var b=this.parent.prepareOpts.apply(this,arguments),c=this;return"select"===b.element.get(0).tagName.toLowerCase()?b.initSelection=function(a,b){var d=a.find("option").filter(function(){return this.selected&&!this.disabled});b(c.optionToData(d))}:"data"in b&&(b.initSelection=b.initSelection||function(c,d){var e=c.val(),f=null;b.query({matcher:function(a,c,d){var g=r(e,b.id(d));return g&&(f=d),g},callback:a.isFunction(d)?function(){d(f)}:a.noop})}),b},getPlaceholder:function(){return this.select&&this.getPlaceholderOption()===b?b:this.parent.getPlaceholder.apply(this,arguments)},setPlaceholder:function(){var a=this.getPlaceholder();if(this.isPlaceholderOptionSelected()&&a!==b){if(this.select&&this.getPlaceholderOption()===b)return;this.selection.find(".select2-chosen").html(this.opts.escapeMarkup(a)),this.selection.addClass("select2-default"),this.container.removeClass("select2-allowclear")}},postprocessResults:function(a,b,c){var d=0,e=this;if(this.findHighlightableChoices().each2(function(a,b){return r(e.id(b.data("select2-data")),e.opts.element.val())?(d=a,!1):void 0}),c!==!1&&(b===!0&&d>=0?this.highlight(d):this.highlight(0)),b===!0){var g=this.opts.minimumResultsForSearch;g>=0&&this.showSearch(L(a.results)>=g)}},showSearch:function(b){this.showSearchInput!==b&&(this.showSearchInput=b,this.dropdown.find(".select2-search").toggleClass("select2-search-hidden",!b),this.dropdown.find(".select2-search").toggleClass("select2-offscreen",!b),a(this.dropdown,this.container).toggleClass("select2-with-searchbox",b))},onSelect:function(a,b){if(this.triggerSelect(a)){var c=this.opts.element.val(),d=this.data();this.opts.element.val(this.id(a)),this.updateSelection(a),this.opts.element.trigger({type:"select2-selected",val:this.id(a),choice:a}),this.lastSearchTerm=this.search.val(),this.close(),b&&b.noFocus||!this.opts.shouldFocusInput(this)||this.focusser.focus(),r(c,this.id(a))||this.triggerChange({added:a,removed:d})}},updateSelection:function(a){var d,e,c=this.selection.find(".select2-chosen");this.selection.data("select2-data",a),c.empty(),null!==a&&(d=this.opts.formatSelection(a,c,this.opts.escapeMarkup)),d!==b&&c.append(d),e=this.opts.formatSelectionCssClass(a,c),e!==b&&c.addClass(e),this.selection.removeClass("select2-default"),this.opts.allowClear&&this.getPlaceholder()!==b&&this.container.addClass("select2-allowclear")},val:function(){var a,c=!1,d=null,e=this,f=this.data();if(0===arguments.length)return this.opts.element.val();if(a=arguments[0],arguments.length>1&&(c=arguments[1],this.opts.debug&&console&&console.warn&&console.warn('Select2: The second option to `select2("val")` is not supported in Select2 4.0.0. The `change` event will always be triggered in 4.0.0.')),this.select)this.opts.debug&&console&&console.warn&&console.warn('Select2: Setting the value on a "," ","","
","
    ","
","
"].join(""));return b},prepareOpts:function(){var b=this.parent.prepareOpts.apply(this,arguments),c=this;return"select"===b.element.get(0).tagName.toLowerCase()?b.initSelection=function(a,b){var d=[];a.find("option").filter(function(){return this.selected&&!this.disabled}).each2(function(a,b){d.push(c.optionToData(b))}),b(d)}:"data"in b&&(b.initSelection=b.initSelection||function(c,d){var e=s(c.val(),b.separator,b.transformVal),f=[];b.query({matcher:function(c,d,g){var h=a.grep(e,function(a){return r(a,b.id(g))}).length;return h&&f.push(g),h},callback:a.isFunction(d)?function(){for(var a=[],c=0;c0||(this.selectChoice(null),this.clearPlaceholder(),this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.open(),this.focusSearch(),b.preventDefault()))})),this.container.on("focus",b,this.bind(function(){this.isInterfaceEnabled()&&(this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.container.addClass("select2-container-active"),this.dropdown.addClass("select2-drop-active"),this.clearPlaceholder())})),this.initContainerWidth(),this.opts.element.hide(),this.clearSearch()},enableInterface:function(){this.parent.enableInterface.apply(this,arguments)&&this.search.prop("disabled",!this.isInterfaceEnabled())},initSelection:function(){if(""===this.opts.element.val()&&""===this.opts.element.text()&&(this.updateSelection([]),this.close(),this.clearSearch()),this.select||""!==this.opts.element.val()){var c=this;this.opts.initSelection.call(null,this.opts.element,function(a){a!==b&&null!==a&&(c.updateSelection(a),c.close(),c.clearSearch())})}},clearSearch:function(){var a=this.getPlaceholder(),c=this.getMaxSearchWidth();a!==b&&0===this.getVal().length&&this.search.hasClass("select2-focused")===!1?(this.search.val(a).addClass("select2-default"),this.search.width(c>0?c:this.container.css("width"))):this.search.val("").width(10)},clearPlaceholder:function(){this.search.hasClass("select2-default")&&this.search.val("").removeClass("select2-default")},opening:function(){this.clearPlaceholder(),this.resizeSearch(),this.parent.opening.apply(this,arguments),this.focusSearch(),this.prefillNextSearchTerm(),this.updateResults(!0),this.opts.shouldFocusInput(this)&&this.search.focus(),this.opts.element.trigger(a.Event("select2-open"))},close:function(){this.opened()&&this.parent.close.apply(this,arguments)},focus:function(){this.close(),this.search.focus()},isFocused:function(){return this.search.hasClass("select2-focused")},updateSelection:function(b){var c={},d=[],e=this;a(b).each(function(){e.id(this)in c||(c[e.id(this)]=0,d.push(this))}),this.selection.find(".select2-search-choice").remove(),this.addSelectedChoice(d),e.postprocessResults()},tokenize:function(){var a=this.search.val();a=this.opts.tokenizer.call(this,a,this.data(),this.bind(this.onSelect),this.opts),null!=a&&a!=b&&(this.search.val(a),a.length>0&&this.open())},onSelect:function(a,b){this.triggerSelect(a)&&""!==a.text&&(this.addSelectedChoice(a),this.opts.element.trigger({type:"selected",val:this.id(a),choice:a}),this.lastSearchTerm=this.search.val(),this.clearSearch(),this.updateResults(),(this.select||!this.opts.closeOnSelect)&&this.postprocessResults(a,!1,this.opts.closeOnSelect===!0),this.opts.closeOnSelect?(this.close(),this.search.width(10)):this.countSelectableResults()>0?(this.search.width(10),this.resizeSearch(),this.getMaximumSelectionSize()>0&&this.val().length>=this.getMaximumSelectionSize()?this.updateResults(!0):this.prefillNextSearchTerm()&&this.updateResults(),this.positionDropdown()):(this.close(),this.search.width(10)),this.triggerChange({added:a}),b&&b.noFocus||this.focusSearch())},cancel:function(){this.close(),this.focusSearch()},addSelectedChoice:function(b){var c=this.getVal(),d=this;a(b).each(function(){c.push(d.createChoice(this))}),this.setVal(c)},createChoice:function(c){var i,j,d=!c.locked,e=a("
  • "),f=a("
  • "),g=d?e:f,h=this.id(c);return i=this.opts.formatSelection(c,g.find("div"),this.opts.escapeMarkup),i!=b&&g.find("div").replaceWith(a("
    ").html(i)),j=this.opts.formatSelectionCssClass(c,g.find("div")),j!=b&&g.addClass(j),d&&g.find(".select2-search-choice-close").on("mousedown",A).on("click dblclick",this.bind(function(b){this.isInterfaceEnabled()&&(this.unselect(a(b.target)),this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus"),A(b),this.close(),this.focusSearch())})).on("focus",this.bind(function(){this.isInterfaceEnabled()&&(this.container.addClass("select2-container-active"),this.dropdown.addClass("select2-drop-active"))})),g.data("select2-data",c),g.insertBefore(this.searchContainer),h},unselect:function(b){var d,e,c=this.getVal();if(b=b.closest(".select2-search-choice"),0===b.length)throw"Invalid argument: "+b+". Must be .select2-search-choice";if(d=b.data("select2-data")){var f=a.Event("select2-removing");if(f.val=this.id(d),f.choice=d,this.opts.element.trigger(f),f.isDefaultPrevented())return!1;for(;(e=p(this.id(d),c))>=0;)c.splice(e,1),this.setVal(c),this.select&&this.postprocessResults();return b.remove(),this.opts.element.trigger({type:"select2-removed",val:this.id(d),choice:d}),this.triggerChange({removed:d}),!0}},postprocessResults:function(a,b,c){var d=this.getVal(),e=this.results.find(".select2-result"),f=this.results.find(".select2-result-with-children"),g=this;e.each2(function(a,b){var c=g.id(b.data("select2-data"));p(c,d)>=0&&(b.addClass("select2-selected"),b.find(".select2-result-selectable").addClass("select2-selected"))}),f.each2(function(a,b){b.is(".select2-result-selectable")||0!==b.find(".select2-result-selectable:not(.select2-selected)").length||b.addClass("select2-selected")}),-1==this.highlight()&&c!==!1&&this.opts.closeOnSelect===!0&&g.highlight(0),!this.opts.createSearchChoice&&!e.filter(".select2-result:not(.select2-selected)").length>0&&(!a||a&&!a.more&&0===this.results.find(".select2-no-results").length)&&J(g.opts.formatNoMatches,"formatNoMatches")&&this.results.append("
  • "+K(g.opts.formatNoMatches,g.opts.element,g.search.val())+"
  • ")},getMaxSearchWidth:function(){return this.selection.width()-t(this.search)},resizeSearch:function(){var a,b,c,d,e,f=t(this.search);a=C(this.search)+10,b=this.search.offset().left,c=this.selection.width(),d=this.selection.offset().left,e=c-(b-d)-f,a>e&&(e=c-f),40>e&&(e=c-f),0>=e&&(e=a),this.search.width(Math.floor(e))},getVal:function(){var a;return this.select?(a=this.select.val(),null===a?[]:a):(a=this.opts.element.val(),s(a,this.opts.separator,this.opts.transformVal))},setVal:function(b){if(this.select)this.select.val(b);else{var c=[],d={};a(b).each(function(){this in d||(c.push(this),d[this]=0)}),this.opts.element.val(0===c.length?"":c.join(this.opts.separator))}},buildChangeDetails:function(a,b){ + for(var b=b.slice(0),a=a.slice(0),c=0;c. Attach to instead.");this.search.width(0),this.searchContainer.hide()},onSortEnd:function(){var b=[],c=this;this.searchContainer.show(),this.searchContainer.appendTo(this.searchContainer.parent()),this.resizeSearch(),this.selection.find(".select2-search-choice").each(function(){b.push(c.opts.id(a(this).data("select2-data")))}),this.setVal(b),this.triggerChange()},data:function(b,c){var e,f,d=this;return 0===arguments.length?this.selection.children(".select2-search-choice").map(function(){return a(this).data("select2-data")}).get():(f=this.data(),b||(b=[]),e=a.map(b,function(a){return d.opts.id(a)}),this.setVal(e),this.updateSelection(b),this.clearSearch(),c&&this.triggerChange(this.buildChangeDetails(f,this.data())),void 0)}}),a.fn.select2=function(){var d,e,f,g,h,c=Array.prototype.slice.call(arguments,0),i=["val","destroy","opened","open","close","focus","isFocused","container","dropdown","onSortStart","onSortEnd","enable","disable","readonly","positionDropdown","data","search"],j=["opened","isFocused","container","dropdown"],k=["val","data"],l={search:"externalSearch"};return this.each(function(){if(0===c.length||"object"==typeof c[0])d=0===c.length?{}:a.extend({},c[0]),d.element=a(this),"select"===d.element.get(0).tagName.toLowerCase()?h=d.element.prop("multiple"):(h=d.multiple||!1,"tags"in d&&(d.multiple=h=!0)),e=h?new window.Select2["class"].multi:new window.Select2["class"].single,e.init(d);else{if("string"!=typeof c[0])throw"Invalid arguments to select2 plugin: "+c;if(p(c[0],i)<0)throw"Unknown method: "+c[0];if(g=b,e=a(this).data("select2"),e===b)return;if(f=c[0],"container"===f?g=e.container:"dropdown"===f?g=e.dropdown:(l[f]&&(f=l[f]),g=e[f].apply(e,c.slice(1))),p(c[0],j)>=0||p(c[0],k)>=0&&1==c.length)return!1}}),g===b?this:g},a.fn.select2.defaults={debug:!1,width:"copy",loadMorePadding:0,closeOnSelect:!0,openOnEnter:!0,containerCss:{},dropdownCss:{},containerCssClass:"",dropdownCssClass:"",formatResult:function(a,b,c,d){var e=[];return E(this.text(a),c.term,e,d),e.join("")},transformVal:function(b){return a.trim(b)},formatSelection:function(a,c,d){return a?d(this.text(a)):b},sortResults:function(a,b,c){return a},formatResultCssClass:function(a){return a.css},formatSelectionCssClass:function(a,c){return b},minimumResultsForSearch:0,minimumInputLength:0,maximumInputLength:null,maximumSelectionSize:0,id:function(a){return a==b?null:a.id},text:function(b){return b&&this.data&&this.data.text?a.isFunction(this.data.text)?this.data.text(b):b[this.data.text]:b.text},matcher:function(a,b){return o(""+b).toUpperCase().indexOf(o(""+a).toUpperCase())>=0},separator:",",tokenSeparators:[],tokenizer:M,escapeMarkup:F,blurOnChange:!1,selectOnBlur:!1,adaptContainerCssClass:function(a){return a},adaptDropdownCssClass:function(a){return null},nextSearchTerm:function(a,c){return b},searchInputPlaceholder:"",createSearchChoicePosition:"top",shouldFocusInput:function(a){var b="ontouchstart"in window||navigator.msMaxTouchPoints>0;return b&&a.opts.minimumResultsForSearch<0?!1:!0}},a.fn.select2.locales=[],a.fn.select2.locales.en={formatMatches:function(a){return 1===a?"One result is available, press enter to select it.":a+" results are available, use up and down arrow keys to navigate."},formatNoMatches:function(){return"No matches found"},formatAjaxError:function(a,b,c){return"Loading failed"},formatInputTooShort:function(a,b){var c=b-a.length;return"Please enter "+c+" or more character"+(1==c?"":"s")},formatInputTooLong:function(a,b){var c=a.length-b;return"Please delete "+c+" character"+(1==c?"":"s")},formatSelectionTooBig:function(a){return"You can only select "+a+" item"+(1==a?"":"s")},formatLoadMore:function(a){return"Loading more results\u2026"},formatSearching:function(){return"Searching\u2026"}},a.extend(a.fn.select2.defaults,a.fn.select2.locales.en),a.fn.select2.ajaxDefaults={transport:a.ajax,params:{type:"GET",cache:!1,dataType:"json"}},window.Select2={query:{ajax:G,local:H,tags:I},util:{debounce:w,markMatch:E,escapeMarkup:F,stripDiacritics:o},"class":{"abstract":c,single:d,multi:e}}}}(jQuery); + +/** + * @module jQuery RD Instafeed + * @author Rafael Shayvolodyan(raffa) + * @version 1.2.0 + */ +//(function(){!function(a,b,c){var d;return d=function(){function b(b,c){this.options=a.extend(!0,{},this.Defaults,c),this.$element=a(b),this.element=b,this.$items=this.$element.find("[data-instafeed-item]"),this.unique=this.genKey(),this.nextUrl="",this.initialize()}return b.prototype.Defaults={accessToken:"3229350923.ba4c844.4f02100c368f4df7a4139183800edf26",clientId:"641b85f46ee943acb06c8180f7e522f7",get:"user",tagName:"awesome",userId:"3229350923",locationId:"",sortBy:"most-recent",useHttp:!1,showLog:"false",dateFormat:{seconds:"less than a minute ago",minute:"about a minute ago",minutes:" minutes ago",hour:"about an hour ago",hours:" hours ago",day:"1 day ago",days:"%b/%d/%Y"}},b.prototype.initialize=function(){var a;if("string"!=typeof this.options.clientId&&"string"!=typeof this.options.accessToken)throw new Error("Missing clientId or accessToken.");null!=this.options.before&&"function"==typeof this.options.before&&this.options.before.call(this),a=null,this.fetchData(this,this.buildUrl(),a)},b.prototype.fetchData=function(b,c,d){var e;e=b.element.getAttribute("data-instafeed-get")?b.element.getAttribute("data-instafeed-get"):b.options.get,a.ajax({type:"GET",dataType:"jsonp",cache:!1,url:c,success:function(a){var c,f,g;if(null!=d?(c=d,c.push.apply(c,a.data)):c=a.data,null!=a.pagination&&(b.nextUrl=a.pagination.next_url),"profile"!==e){if(f=parseInt(b.$items.length,10),c.length>=f)return c=b.sorting(b,c),c=c.slice(0,f),b.validate(b,a),g=b.element.getAttribute("data-instafeed-showlog")?b.element.getAttribute("data-instafeed-showlog"):b.options.showLog,"true"===g&&console.log(c),b.loopData(c);if(null!=b.nextUrl)return b.fetchData(b,a.pagination.next_url,c);if(c.length-1)return!0;return!1},b.prototype.parseAttributes=function(a,b,c){var d,e,f,g,h,i,j,k,l,m,n,o,p,q,r;g=a.attributes;for(h in g)if(null!=g[h]&&"object"==typeof g[h]&&g[h].name.indexOf("data-")!==-1&&g[h].name.indexOf("data-instafeed-")===-1){if(r=g[h].name.substring(5),p=null,r.indexOf("-")!==-1)for(q=r.split("-"),p=b,j=0,l=q.length;j="0"&&f<="9"||a.setAttribute(d,n))}},b.prototype.arrToString=function(a){return a.join(" ")},b.prototype.dating=function(a,b){var c,d,e,f,g,h,i,j,k,l;if(e=new Date(1e3*a),d=new Date,g=parseInt((d.getTime()-e.getTime())/1e3),g+=60*d.getTimezoneOffset(),l=["January","February","March","April","May","June","July","August","September","October","November","December"],c={"%d":e.getDate(),"%m":e.getMonth()+1,"%b":l[e.getMonth()].substring(0,3),"%B":l[e.getMonth()],"%y":String(e.getFullYear()).slice(-2),"%Y":e.getFullYear()},f=b?"%Y-%m-%d":element.getAttribute("data-instafeed-date-format")?element.getAttribute("data-instafeed-date-format"):this.options.dateFormat.days,g<60)return this.options.dateFormat.seconds;if(g<120)return this.options.dateFormat.minute;if(g<3600)return parseInt(g/60).toString()+this.options.dateFormat.minutes;if(g<7200)return this.options.dateFormat.hour;if(g<86400)return"about "+parseInt(g/3600).toString()+this.options.dateFormat.hours;if(g<172800)return this.options.dateFormat.day;for(i=f.match(/%[dmbByY]/g),j=0,k=i.length;jf?1:-1:e-1},_attach:function(a,b){a=$(a);if(a.hasClass(this._getMarker())){return}a.addClass(this._getMarker());b=$.extend({},this.defaultOptions,this._getMetadata(a),b||{});var c=$.extend({name:this.name,elem:a,options:b},this._instSettings(a,b));a.data(this.name,c);this._postAttach(a,c);this.option(a,b)},_instSettings:function(a,b){return{}},_postAttach:function(a,b){},_getMetadata:function(d){try{var f=d.data(this.name.toLowerCase())||'';f=f.replace(/'/g,'"');f=f.replace(/([a-zA-Z0-9]+):/g,function(a,b,i){var c=f.substring(0,i).match(/"/g);return(!c||c.length%2===0?'"'+b+'":':b+':')});f=$.parseJSON('{'+f+'}');for(var g in f){var h=f[g];if(typeof h==='string'&&h.match(/^new Date\((.*)\)$/)){f[g]=eval(h)}}return f}catch(e){return{}}},_getInst:function(a){return $(a).data(this.name)||{}},option:function(a,b,c){a=$(a);var d=a.data(this.name);if(!b||(typeof b==='string'&&c==null)){var e=(d||{}).options;return(e&&b?e[b]:e)}if(!a.hasClass(this._getMarker())){return}var e=b||{};if(typeof b==='string'){e={};e[b]=c}this._optionsChanged(a,d,e);$.extend(d.options,e)},_optionsChanged:function(a,b,c){},destroy:function(a){a=$(a);if(!a.hasClass(this._getMarker())){return}this._preDestroy(a,this._getInst(a));a.removeData(this.name).removeClass(this._getMarker())},_preDestroy:function(a,b){}});function camelCase(c){return c.replace(/-([a-z])/g,function(a,b){return b.toUpperCase()})}$.JQPlugin={createPlugin:function(a,b){if(typeof a==='object'){b=a;a='JQPlugin'}a=camelCase(a);var c=camelCase(b.name);JQClass.classes[c]=JQClass.classes[a].extend(b);new JQClass.classes[c]()}}})(jQuery); + + +/** + * @module Countdown for jQuery v2.0.2. + * @author Keith Wood + * @see http://keith-wood.name/countdown.html + * @license MIT + */ +(function($){var w='countdown';var Y=0;var O=1;var W=2;var D=3;var H=4;var M=5;var S=6;$.JQPlugin.createPlugin({name:w,defaultOptions:{until:null,since:null,timezone:null,serverSync:null,format:'dHMS',layout:'',compact:false,padZeroes:false,significant:0,description:'',expiryUrl:'',expiryText:'',alwaysExpire:false,onExpiry:null,onTick:null,tickInterval:1},regionalOptions:{'':{labels:['Years','Months','Weeks','Days','Hours','Minutes','Seconds'],labels1:['Year','Month','Week','Day','Hour','Minute','Second'],compactLabels:['y','m','w','d'],whichLabels:null,digits:['0','1','2','3','4','5','6','7','8','9'],timeSeparator:':',isRTL:false}},_getters:['getTimes'],_rtlClass:w+'-rtl',_sectionClass:w+'-section',_amountClass:w+'-amount',_periodClass:w+'-period',_rowClass:w+'-row',_holdingClass:w+'-holding',_showClass:w+'-show',_descrClass:w+'-descr',_timerElems:[],_init:function(){var c=this;this._super();this._serverSyncs=[];var d=(typeof Date.now=='function'?Date.now:function(){return new Date().getTime()});var e=(window.performance&&typeof window.performance.now=='function');function timerCallBack(a){var b=(a<1e12?(e?(performance.now()+performance.timing.navigationStart):d()):a||d());if(b-g>=1000){c._updateElems();g=b}f(timerCallBack)}var f=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||null;var g=0;if(!f||$.noRequestAnimationFrame){$.noRequestAnimationFrame=null;setInterval(function(){c._updateElems()},980)}else{g=window.animationStartTime||window.webkitAnimationStartTime||window.mozAnimationStartTime||window.oAnimationStartTime||window.msAnimationStartTime||d();f(timerCallBack)}},UTCDate:function(a,b,c,e,f,g,h,i){if(typeof b=='object'&&b.constructor==Date){i=b.getMilliseconds();h=b.getSeconds();g=b.getMinutes();f=b.getHours();e=b.getDate();c=b.getMonth();b=b.getFullYear()}var d=new Date();d.setUTCFullYear(b);d.setUTCDate(1);d.setUTCMonth(c||0);d.setUTCDate(e||1);d.setUTCHours(f||0);d.setUTCMinutes((g||0)-(Math.abs(a)<30?a*60:a));d.setUTCSeconds(h||0);d.setUTCMilliseconds(i||0);return d},periodsToSeconds:function(a){return a[0]*31557600+a[1]*2629800+a[2]*604800+a[3]*86400+a[4]*3600+a[5]*60+a[6]},resync:function(){var d=this;$('.'+this._getMarker()).each(function(){var a=$.data(this,d.name);if(a.options.serverSync){var b=null;for(var i=0;i-1)},_removeElem:function(b){this._timerElems=$.map(this._timerElems,function(a){return(a==b?null:a)})},_updateElems:function(){for(var i=this._timerElems.length-1;i>=0;i--){this._updateCountdown(this._timerElems[i])}},_optionsChanged:function(a,b,c){if(c.layout){c.layout=c.layout.replace(/</g,'<').replace(/>/g,'>')}this._resetExtraLabels(b.options,c);var d=(b.options.timezone!=c.timezone);$.extend(b.options,c);this._adjustSettings(a,b,c.until!=null||c.since!=null||d);var e=new Date();if((b._since&&b._sincee)){this._addElem(a[0])}this._updateCountdown(a,b)},_updateCountdown:function(a,b){a=a.jquery?a:$(a);b=b||this._getInst(a);if(!b){return}a.html(this._generateHTML(b)).toggleClass(this._rtlClass,b.options.isRTL);if($.isFunction(b.options.onTick)){var c=b._hold!='lap'?b._periods:this._calculatePeriods(b,b._show,b.options.significant,new Date());if(b.options.tickInterval==1||this.periodsToSeconds(c)%b.options.tickInterval==0){b.options.onTick.apply(a[0],[c])}}var d=b._hold!='pause'&&(b._since?b._now.getTime()=b._until.getTime());if(d&&!b._expiring){b._expiring=true;if(this._hasElem(a[0])||b.options.alwaysExpire){this._removeElem(a[0]);if($.isFunction(b.options.onExpiry)){b.options.onExpiry.apply(a[0],[])}if(b.options.expiryText){var e=b.options.layout;b.options.layout=b.options.expiryText;this._updateCountdown(a[0],b);b.options.layout=e}if(b.options.expiryUrl){window.location=b.options.expiryUrl}}b._expiring=false}else if(b._hold=='pause'){this._removeElem(a[0])}},_resetExtraLabels:function(a,b){for(var n in b){if(n.match(/[Ll]abels[02-9]|compactLabels1/)){a[n]=b[n]}}for(var n in a){if(n.match(/[Ll]abels[02-9]|compactLabels1/)&&typeof b[n]==='undefined'){a[n]=null}}},_adjustSettings:function(a,b,c){var d=null;for(var i=0;i0);h[i]=(c._show[i]=='?'&&!e?null:c._show[i]);f+=(h[i]?1:0);g-=(c._periods[i]>0?1:0)}var j=[false,false,false,false,false,false,false];for(var i=S;i>=Y;i--){if(c._show[i]){if(c._periods[i]){j[i]=true}else{j[i]=g>0;g--}}}var k=(c.options.compact?c.options.compactLabels:c.options.labels);var l=c.options.whichLabels||this._normalLabels;var m=function(a){var b=c.options['compactLabels'+l(c._periods[a])];return(h[a]?d._translateDigits(c,c._periods[a])+(b?b[a]:k[a])+' ':'')};var n=(c.options.padZeroes?2:1);var o=function(a){var b=c.options['labels'+l(c._periods[a])];return((!c.options.significant&&h[a])||(c.options.significant&&j[a])?''+''+d._minDigits(c,c._periods[a],n)+''+''+(b?b[a]:k[a])+'':'')};return(c.options.layout?this._buildLayout(c,h,c.options.layout,c.options.compact,c.options.significant,j):((c.options.compact?''+m(Y)+m(O)+m(W)+m(D)+(h[H]?this._minDigits(c,c._periods[H],2):'')+(h[M]?(h[H]?c.options.timeSeparator:'')+this._minDigits(c,c._periods[M],2):'')+(h[S]?(h[H]||h[M]?c.options.timeSeparator:'')+this._minDigits(c,c._periods[S],2):''):''+o(Y)+o(O)+o(W)+o(D)+o(H)+o(M)+o(S))+''+(c.options.description?''+c.options.description+'':'')))},_buildLayout:function(c,d,e,f,g,h){var j=c.options[f?'compactLabels':'labels'];var k=c.options.whichLabels||this._normalLabels;var l=function(a){return(c.options[(f?'compactLabels':'labels')+k(c._periods[a])]||j)[a]};var m=function(a,b){return c.options.digits[Math.floor(a/b)%10]};var o={desc:c.options.description,sep:c.options.timeSeparator,yl:l(Y),yn:this._minDigits(c,c._periods[Y],1),ynn:this._minDigits(c,c._periods[Y],2),ynnn:this._minDigits(c,c._periods[Y],3),y1:m(c._periods[Y],1),y10:m(c._periods[Y],10),y100:m(c._periods[Y],100),y1000:m(c._periods[Y],1000),ol:l(O),on:this._minDigits(c,c._periods[O],1),onn:this._minDigits(c,c._periods[O],2),onnn:this._minDigits(c,c._periods[O],3),o1:m(c._periods[O],1),o10:m(c._periods[O],10),o100:m(c._periods[O],100),o1000:m(c._periods[O],1000),wl:l(W),wn:this._minDigits(c,c._periods[W],1),wnn:this._minDigits(c,c._periods[W],2),wnnn:this._minDigits(c,c._periods[W],3),w1:m(c._periods[W],1),w10:m(c._periods[W],10),w100:m(c._periods[W],100),w1000:m(c._periods[W],1000),dl:l(D),dn:this._minDigits(c,c._periods[D],1),dnn:this._minDigits(c,c._periods[D],2),dnnn:this._minDigits(c,c._periods[D],3),d1:m(c._periods[D],1),d10:m(c._periods[D],10),d100:m(c._periods[D],100),d1000:m(c._periods[D],1000),hl:l(H),hn:this._minDigits(c,c._periods[H],1),hnn:this._minDigits(c,c._periods[H],2),hnnn:this._minDigits(c,c._periods[H],3),h1:m(c._periods[H],1),h10:m(c._periods[H],10),h100:m(c._periods[H],100),h1000:m(c._periods[H],1000),ml:l(M),mn:this._minDigits(c,c._periods[M],1),mnn:this._minDigits(c,c._periods[M],2),mnnn:this._minDigits(c,c._periods[M],3),m1:m(c._periods[M],1),m10:m(c._periods[M],10),m100:m(c._periods[M],100),m1000:m(c._periods[M],1000),sl:l(S),sn:this._minDigits(c,c._periods[S],1),snn:this._minDigits(c,c._periods[S],2),snnn:this._minDigits(c,c._periods[S],3),s1:m(c._periods[S],1),s10:m(c._periods[S],10),s100:m(c._periods[S],100),s1000:m(c._periods[S],1000)};var p=e;for(var i=Y;i<=S;i++){var q='yowdhms'.charAt(i);var r=new RegExp('\\{'+q+'<\\}([\\s\\S]*)\\{'+q+'>\\}','g');p=p.replace(r,((!g&&d[i])||(g&&h[i])?'$1':''))}$.each(o,function(n,v){var a=new RegExp('\\{'+n+'\\}','g');p=p.replace(a,v)});return p},_minDigits:function(a,b,c){b=''+b;if(b.length>=c){return this._translateDigits(a,b)}b='0000000000'+b;return this._translateDigits(a,b.substr(b.length-c))},_translateDigits:function(b,c){return(''+c).replace(/[0-9]/g,function(a){return b.options.digits[a]})},_determineShow:function(a){var b=a.options.format;var c=[];c[Y]=(b.match('y')?'?':(b.match('Y')?'!':null));c[O]=(b.match('o')?'?':(b.match('O')?'!':null));c[W]=(b.match('w')?'?':(b.match('W')?'!':null));c[D]=(b.match('d')?'?':(b.match('D')?'!':null));c[H]=(b.match('h')?'?':(b.match('H')?'!':null));c[M]=(b.match('m')?'?':(b.match('M')?'!':null));c[S]=(b.match('s')?'?':(b.match('S')?'!':null));return c},_calculatePeriods:function(c,d,e,f){c._now=f;c._now.setMilliseconds(0);var g=new Date(c._now.getTime());if(c._since){if(f.getTime()c._until.getTime()){c._now=f=g}}var h=[0,0,0,0,0,0,0];if(d[Y]||d[O]){var i=this._getDaysInMonth(f.getFullYear(),f.getMonth());var j=this._getDaysInMonth(g.getFullYear(),g.getMonth());var k=(g.getDate()==f.getDate()||(g.getDate()>=Math.min(i,j)&&f.getDate()>=Math.min(i,j)));var l=function(a){return(a.getHours()*60+a.getMinutes())*60+a.getSeconds()};var m=Math.max(0,(g.getFullYear()-f.getFullYear())*12+g.getMonth()-f.getMonth()+((g.getDate()o){f.setDate(o)}f.setFullYear(f.getFullYear()+h[Y]);f.setMonth(f.getMonth()+h[O]);if(n){f.setDate(o)}}var p=Math.floor((g.getTime()-f.getTime())/1000);var q=function(a,b){h[a]=(d[a]?Math.floor(p/b):0);p-=h[a]*b};q(W,604800);q(D,86400);q(H,3600);q(M,60);q(S,1);if(p>0&&!c._since){var r=[1,12,4.3482,7,24,60,60];var s=S;var t=1;for(var u=S;u>=Y;u--){if(d[u]){if(h[s]>=t){h[s]=0;p=1}if(p>0){h[u]++;p=0;s=u;t=1}}t*=r[u]}}if(e){for(var u=Y;u<=S;u++){if(e&&h[u]){e--}else if(!e){h[u]=0}}}return h}})})(jQuery); + + +/** + * @module Stepper + * @version 3.0.8 + * @license MIT + * @link http://classic.formstone.it/stepper/ + */ +!function(a,b){"use strict";function c(b){b=a.extend({},m,b||{});for(var c=a(this),e=0,f=c.length;f>e;e++)d(c.eq(e),b);return c}function d(b,c){if(!b.hasClass("stepper-input")){c=a.extend({},c,b.data("stepper-options"));var d=parseFloat(b.attr("min")),g=parseFloat(b.attr("max")),h=parseFloat(b.attr("step"))||1;b.addClass("stepper-input").wrap('
    ').after(''+c.labels.up+''+c.labels.down+"");var i=b.parent(".stepper"),j=a.extend({$stepper:i,$input:b,$arrow:i.find(".stepper-arrow"),min:void 0===typeof d||isNaN(d)?!1:d,max:void 0===typeof g||isNaN(g)?!1:g,step:void 0===typeof h||isNaN(h)?1:h,timer:null},c);j.digits=k(j.step),b.is(":disabled")&&i.addClass("disabled"),i.on("keypress",".stepper-input",j,e),i.on("touchstart.stepper mousedown.stepper",".stepper-arrow",j,f).data("stepper",j)}}function e(a){var b=a.data;(38===a.keyCode||40===a.keyCode)&&(a.preventDefault(),h(b,38===a.keyCode?b.step:-b.step))}function f(b){b.preventDefault(),b.stopPropagation(),g(b);var c=b.data;if(!c.$input.is(":disabled")&&!c.$stepper.hasClass("disabled")){var d=a(b.target).hasClass("up")?c.step:-c.step;c.timer=i(c.timer,125,function(){h(c,d,!1)}),h(c,d),a("body").on("touchend.stepper mouseup.stepper",c,g)}}function g(b){b.preventDefault(),b.stopPropagation();var c=b.data;j(c.timer),a("body").off(".stepper")}function h(a,b){var c=parseFloat(a.$input.val()),d=b;void 0===typeof c||isNaN(c)?d=a.min!==!1?a.min:0:a.min!==!1&&ca.max&&(d-=a.step),d!==c&&(d=l(d,a.digits),a.$input.val(d).trigger("change"))}function i(a,b,c){return j(a),setInterval(c,b)}function j(a){a&&(clearInterval(a),a=null)}function k(a){var b=String(a);return b.indexOf(".")>-1?b.length-b.indexOf(".")-1:0}function l(a,b){var c=Math.pow(10,b);return Math.round(a*c)/c}var m={customClass:"",labels:{up:"Up",down:"Down"}},n={defaults:function(b){return m=a.extend(m,b||{}),"object"==typeof this?a(this):!0},destroy:function(){return a(this).each(function(b){var c=a(this).data("stepper");c&&(c.$stepper.off(".stepper").find(".stepper-arrow").remove(),c.$input.unwrap().removeClass("stepper-input"))})},disable:function(){return a(this).each(function(b){var c=a(this).data("stepper");c&&(c.$input.attr("disabled","disabled"),c.$stepper.addClass("disabled"))})},enable:function(){return a(this).each(function(b){var c=a(this).data("stepper");c&&(c.$input.attr("disabled",null),c.$stepper.removeClass("disabled"))})}};a.fn.stepper=function(a){return n[a]?n[a].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof a&&a?this:c.apply(this,arguments)},a.stepper=function(a){"defaults"===a&&n.defaults.apply(this,Array.prototype.slice.call(arguments,1))}}(jQuery,this); + + +/** + * @module drawDoughnutChart + * @author hiro + * @version 0.4(Beta) + * @license MIT + * @link https://github.com/githiro/drawDoughnutChart + */ +(function(a){a.fn.drawDoughnutChart=function(c,d){function f(ca,da){var ea=-1.57,ga=4.7131,ha=B+D(ea)*ca,ia=C+E(ea)*ca,ja=B+D(ea)*da,ka=C+E(ea)*da,la=B+D(ga)*ca,ma=C+E(ga)*ca,na=B+D(ga)*da,oa=C+E(ga)*da,pa=["M",ha,ia,"A",ca,ca,0,1,1,la,ma,"Z","M",na,oa,"A",da,da,0,1,0,ja,ka,"Z"];return pa=pa.join(" "),pa}function g(ca){var da=a(this).data().order;if(G.showTip&&T.text(c[da].title+": "+c[da].value).fadeIn(200),G.showLabel){Z.text(c[da].title).css("font-size",x(Z,c[da].title));var ea=G.shortInt?w(c[da].value):c[da].value;_.html(ea).css("font-size",x(_,ea))}G.onPathEnter.apply(a(this),[ca,c])}function h(ca){if(G.showTip&&T.hide(),G.showLabel){Z.text(G.summaryTitle).css("font-size",x(Z,G.summaryTitle));var da=G.shortInt?w(P):P;_.html(da).css("font-size",x(_,da))}G.onPathLeave.apply(a(this),[ca,c])}function j(ca){G.showTip&&T.css({top:ca.pageY+G.tipOffsetY,left:ca.pageX-T.width()/2+G.tipOffsetX})}function k(){var da=a(this).data().order;"undefined"!=typeof c[da].action&&c[da].action()}function m(ca,da){_.css({opacity:ca}).text((da*ca).toFixed(1));var ea=G.shortInt?w(da):da;_.html(ea).css("font-size",x(_,ea))}function o(ca,da){var ea=G.animation?u(M(ca),null,0):1;da(ea)}function s(ca){return!isNaN(parseFloat(ca))&&isFinite(ca)}function u(ca,da,ea){return s(da)&&ca>da?da:s(ea)&&cada?ca:8>da?""+ca.substring(0,da-3)+"K":""+ca.substring(0,da-6)+"M"}function x(ca,da){ca.css("font-size",""),da=da.toString().replace(/(<([^>]+)>)/ig,"");var ea=ca.width()/da.length*G.ratioFont,fa=ca.width()-da.length*ca.css("font-size").replace(/px/,"")/G.ratioFont;return 0>fa?ea+"px":""}var y=this,z=y.width(),A=y.height(),B=z/2,C=A/2,D=Math.cos,E=Math.sin,F=Math.PI,G=a.extend({segmentShowStroke:!0,segmentStrokeColor:"#0C1013",segmentStrokeWidth:1,baseColor:"rgba(0,0,0,0.5)",baseOffset:4,edgeOffset:10,percentageInnerCutout:75,animation:!0,animationSteps:90,animationEasing:"easeInOutExpo",animateRotate:!0,tipOffsetX:-8,tipOffsetY:-45,showTip:!0,showLabel:!1,ratioFont:1.5,shortInt:!1,tipClass:"doughnutTip",summaryClass:"doughnutSummary",summaryTitle:"TOTAL:",summaryTitleClass:"doughnutSummaryTitle",summaryNumberClass:"doughnutSummaryNumber",beforeDraw:function(){},afterDrawed:function(){},onPathEnter:function(){},onPathLeave:function(){}},d),J=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(ca){window.setTimeout(ca,1e3/60)}}();G.beforeDraw.call(y);var K=a("").appendTo(y),L=[],M={linear:function(ca){return ca},easeInOutExpo:function(ca){var da=.5>ca?8*ca*ca*ca*ca:1-8*--ca*ca*ca*ca;return 1").appendTo("body").hide(),U=T.width(),V=T.height();var X=2*(O-(N-O)),Y=a("
    ").appendTo(y).css({width:X+"px",height:X+"px","margin-left":-(X/2)+"px","margin-top":-(X/2)+"px"}),Z=a("

    "+G.summaryTitle+"

    ").appendTo(Y);Z.css("font-size",x(Z,G.summaryTitle));for(var _=a("

    ").appendTo(Y).css({opacity:0}),aa=0,ba=c.length;aa=ea?J(arguments.callee):G.afterDrawed.call(y)})}(function(ca){var da=-F/2,ea=1;if(G.animation&&G.animateRotate&&(ea=ca),m(ca,P),S.attr("opacity",ca),1===c.length&&4.7122F?1:0,ka=B+D(da)*N,la=C+E(da)*N,ma=B+D(da)*O,na=C+E(da)*O,oa=B+D(ia)*N,pa=C+E(ia)*N,qa=B+D(ia)*O,ra=C+E(ia)*O;L[fa].attr("d",["M",ka,la,"A",N,N,0,ja,1,oa,pa,"L",qa,ra,"A",O,O,0,ja,0,ma,na,"Z"].join(" ")),da+=ha}}),y}})(jQuery); + + +/** + * @module Theme Switcher + * @author Bazaev Yuri (ATOM) + * @license CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/) + * @version 0.1.2 + * @description Themes switch and dynamic color change on the site + */ +var _typeof=typeof Symbol==='function'&&typeof Symbol.iterator==='symbol'?function(obj){return typeof obj}:function(obj){return obj&&typeof Symbol==='function'&&obj.constructor===Symbol&&obj!==Symbol.prototype?'symbol':typeof obj};(function(root){var setTimeoutFunc=setTimeout;function noop(){}function bind(fn,thisArg){return function(){fn.apply(thisArg,arguments)}}function Promise(fn){if(_typeof(this)!=='object')throw new TypeError('Promises must be constructed via new');if(typeof fn!=='function')throw new TypeError('not a function');this._state=0;this._handled=false;this._value=undefined;this._deferreds=[];doResolve(fn,this)}function handle(self,deferred){while(self._state===3){self=self._value}if(self._state===0){self._deferreds.push(deferred);return}self._handled=true;Promise._immediateFn(function(){var cb=self._state===1?deferred.onFulfilled:deferred.onRejected;if(cb===null){(self._state===1?resolve:reject)(deferred.promise,self._value);return}var ret;try{ret=cb(self._value)}catch(e){reject(deferred.promise,e);return}resolve(deferred.promise,ret)})}function resolve(self,newValue){try{if(newValue===self)throw new TypeError('A promise cannot be resolved with itself.');if(newValue&&((typeof newValue==='undefined'?'undefined':_typeof(newValue))==='object'||typeof newValue==='function')){var then=newValue.then;if(newValue instanceof Promise){self._state=3;self._value=newValue;finale(self);return}else if(typeof then==='function'){doResolve(bind(then,newValue),self);return}}self._state=1;self._value=newValue;finale(self)}catch(e){reject(self,e)}}function reject(self,newValue){self._state=2;self._value=newValue;finale(self)}function finale(self){if(self._state===2&&self._deferreds.length===0){Promise._immediateFn(function(){if(!self._handled){Promise._unhandledRejectionFn(self._value)}})}for(var i=0,len=self._deferreds.length;i1)return this.each(function(){t(this).bxSlider(n)}),this;var s={},o=this,r=t(window).width(),a=t(window).height();if(!t(o).data("bxSlider")){var l=function(){t(o).data("bxSlider")||(s.settings=t.extend({},e,n),s.settings.slideWidth=parseInt(s.settings.slideWidth),s.children=o.children(s.settings.slideSelector),s.children.length1||s.settings.maxSlides>1,s.carousel&&(s.settings.preloadImages="all"),s.minThreshold=s.settings.minSlides*s.settings.slideWidth+(s.settings.minSlides-1)*s.settings.slideMargin,s.maxThreshold=s.settings.maxSlides*s.settings.slideWidth+(s.settings.maxSlides-1)*s.settings.slideMargin,s.working=!1,s.controls={},s.interval=null,s.animProp="vertical"===s.settings.mode?"top":"left",s.usingCSS=s.settings.useCSS&&"fade"!==s.settings.mode&&function(){for(var t=document.createElement("div"),e=["WebkitPerspective","MozPerspective","OPerspective","msPerspective"],i=0;i
    '),s.viewport=o.parent(),s.settings.ariaLive&&!s.settings.ticker&&s.viewport.attr("aria-live","polite"),s.loader=t('
    '),s.viewport.prepend(s.loader),o.css({width:"horizontal"===s.settings.mode?1e3*s.children.length+215+"%":"auto",position:"relative"}),s.usingCSS&&s.settings.easing?o.css("-"+s.cssPrefix+"-transition-timing-function",s.settings.easing):s.settings.easing||(s.settings.easing="swing"),s.viewport.css({width:"100%",overflow:"hidden",position:"relative"}),s.viewport.parent().css({maxWidth:h()}),s.children.css({float:"horizontal"===s.settings.mode?"left":"none",listStyle:"none",position:"relative"}),s.children.css("width",u()),"horizontal"===s.settings.mode&&s.settings.slideMargin>0&&s.children.css("marginRight",s.settings.slideMargin),"vertical"===s.settings.mode&&s.settings.slideMargin>0&&s.children.css("marginBottom",s.settings.slideMargin),"fade"===s.settings.mode&&(s.children.css({position:"absolute",zIndex:0,display:"none"}),s.children.eq(s.settings.startSlide).css({zIndex:s.settings.slideZIndex,display:"block"})),s.controls.el=t('
    '),s.settings.captions&&P(),s.active.last=s.settings.startSlide===f()-1,s.settings.video&&o.fitVids(),("all"===s.settings.preloadImages||s.settings.ticker)&&(e=s.children),s.settings.ticker?s.settings.pager=!1:(s.settings.controls&&C(),s.settings.auto&&s.settings.autoControls&&T(),s.settings.pager&&w(),(s.settings.controls||s.settings.autoControls||s.settings.pager)&&s.viewport.after(s.controls.el)),c(e,g)},c=function(e,i){var n=e.find('img:not([src=""]), iframe').length,s=0;0!==n?e.find('img:not([src=""]), iframe').each(function(){t(this).one("load error",function(){++s===n&&i()}).each(function(){this.complete&&t(this).trigger("load")})}):i()},g=function(){if(s.settings.infiniteLoop&&"fade"!==s.settings.mode&&!s.settings.ticker){var e="vertical"===s.settings.mode?s.settings.minSlides:s.settings.maxSlides,i=s.children.slice(0,e).clone(!0).addClass("bx-clone"),n=s.children.slice(-e).clone(!0).addClass("bx-clone");s.settings.ariaHidden&&(i.attr("aria-hidden",!0),n.attr("aria-hidden",!0)),o.append(i).prepend(n)}s.loader.remove(),m(),"vertical"===s.settings.mode&&(s.settings.adaptiveHeight=!0),s.viewport.height(p()),o.redrawSlider(),s.settings.onSliderLoad.call(o,s.active.index),s.initialized=!0,s.settings.responsive&&t(window).bind("resize",Z),s.settings.auto&&s.settings.autoStart&&(f()>1||s.settings.autoSlideForOnePage)&&H(),s.settings.ticker&&W(),s.settings.pager&&I(s.settings.startSlide),s.settings.controls&&D(),s.settings.touchEnabled&&!s.settings.ticker&&N(),s.settings.keyboardEnabled&&!s.settings.ticker&&t(document).keydown(F)},p=function(){var e=0,n=t();if("vertical"===s.settings.mode||s.settings.adaptiveHeight)if(s.carousel){var o=1===s.settings.moveSlides?s.active.index:s.active.index*x();for(n=s.children.eq(o),i=1;i<=s.settings.maxSlides-1;i++)n=o+i>=s.children.length?n.add(s.children.eq(i-1)):n.add(s.children.eq(o+i))}else n=s.children.eq(s.active.index);else n=s.children;return"vertical"===s.settings.mode?(n.each(function(i){e+=t(this).outerHeight()}),s.settings.slideMargin>0&&(e+=s.settings.slideMargin*(s.settings.minSlides-1))):e=Math.max.apply(Math,n.map(function(){return t(this).outerHeight(!1)}).get()),"border-box"===s.viewport.css("box-sizing")?e+=parseFloat(s.viewport.css("padding-top"))+parseFloat(s.viewport.css("padding-bottom"))+parseFloat(s.viewport.css("border-top-width"))+parseFloat(s.viewport.css("border-bottom-width")):"padding-box"===s.viewport.css("box-sizing")&&(e+=parseFloat(s.viewport.css("padding-top"))+parseFloat(s.viewport.css("padding-bottom"))),e},h=function(){var t="100%";return s.settings.slideWidth>0&&(t="horizontal"===s.settings.mode?s.settings.maxSlides*s.settings.slideWidth+(s.settings.maxSlides-1)*s.settings.slideMargin:s.settings.slideWidth),t},u=function(){var t=s.settings.slideWidth,e=s.viewport.width();if(0===s.settings.slideWidth||s.settings.slideWidth>e&&!s.carousel||"vertical"===s.settings.mode)t=e;else if(s.settings.maxSlides>1&&"horizontal"===s.settings.mode){if(e>s.maxThreshold)return t;e0?s.viewport.width()s.maxThreshold?t=s.settings.maxSlides:(e=s.children.first().width()+s.settings.slideMargin,t=Math.floor((s.viewport.width()+s.settings.slideMargin)/e)):"vertical"===s.settings.mode&&(t=s.settings.minSlides),t},f=function(){var t=0,e=0,i=0;if(s.settings.moveSlides>0)if(s.settings.infiniteLoop)t=Math.ceil(s.children.length/x());else for(;e0&&s.settings.moveSlides<=v()?s.settings.moveSlides:v()},m=function(){var t,e,i;s.children.length>s.settings.maxSlides&&s.active.last&&!s.settings.infiniteLoop?"horizontal"===s.settings.mode?(t=(e=s.children.last()).position(),S(-(t.left-(s.viewport.width()-e.outerWidth())),"reset",0)):"vertical"===s.settings.mode&&(i=s.children.length-s.settings.minSlides,t=s.children.eq(i).position(),S(-t.top,"reset",0)):(t=s.children.eq(s.active.index*x()).position(),s.active.index===f()-1&&(s.active.last=!0),void 0!==t&&("horizontal"===s.settings.mode?S(-t.left,"reset",0):"vertical"===s.settings.mode&&S(-t.top,"reset",0)))},S=function(e,i,n,r){var a,l;s.usingCSS?(l="vertical"===s.settings.mode?"translate3d(0, "+e+"px, 0)":"translate3d("+e+"px, 0, 0)",o.css("-"+s.cssPrefix+"-transition-duration",n/1e3+"s"),"slide"===i?(o.css(s.animProp,l),0!==n?o.bind("transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd",function(e){t(e.target).is(o)&&(o.unbind("transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd"),q())}):q()):"reset"===i?o.css(s.animProp,l):"ticker"===i&&(o.css("-"+s.cssPrefix+"-transition-timing-function","linear"),o.css(s.animProp,l),0!==n?o.bind("transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd",function(e){t(e.target).is(o)&&(o.unbind("transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd"),S(r.resetValue,"reset",0),L())}):(S(r.resetValue,"reset",0),L()))):((a={})[s.animProp]=e,"slide"===i?o.animate(a,n,s.settings.easing,function(){q()}):"reset"===i?o.css(s.animProp,e):"ticker"===i&&o.animate(a,n,"linear",function(){S(r.resetValue,"reset",0),L()}))},b=function(){for(var e="",i="",n=f(),o=0;o'+i+"
    ";s.pagerEl.html(e)},w=function(){s.settings.pagerCustom?s.pagerEl=t(s.settings.pagerCustom):(s.pagerEl=t('
    '),s.settings.pagerSelector?t(s.settings.pagerSelector).html(s.pagerEl):s.controls.el.addClass("bx-has-pager").append(s.pagerEl),b()),s.pagerEl.on("click touchend","a",z)},C=function(){s.controls.next=t(''+s.settings.nextText+""),s.controls.prev=t(''+s.settings.prevText+""),s.controls.next.bind("click touchend",E),s.controls.prev.bind("click touchend",k),s.settings.nextSelector&&t(s.settings.nextSelector).append(s.controls.next),s.settings.prevSelector&&t(s.settings.prevSelector).append(s.controls.prev),s.settings.nextSelector||s.settings.prevSelector||(s.controls.directionEl=t('
    '),s.controls.directionEl.append(s.controls.prev).append(s.controls.next),s.controls.el.addClass("bx-has-controls-direction").append(s.controls.directionEl))},T=function(){s.controls.start=t('"),s.controls.stop=t('"),s.controls.autoEl=t('
    '),s.controls.autoEl.on("click",".bx-start",M),s.controls.autoEl.on("click",".bx-stop",y),s.settings.autoControlsCombine?s.controls.autoEl.append(s.controls.start):s.controls.autoEl.append(s.controls.start).append(s.controls.stop),s.settings.autoControlsSelector?t(s.settings.autoControlsSelector).html(s.controls.autoEl):s.controls.el.addClass("bx-has-controls-auto").append(s.controls.autoEl),A(s.settings.autoStart?"stop":"start")},P=function(){s.children.each(function(e){var i=t(this).find("img:first").attr("title");void 0!==i&&(""+i).length&&t(this).append('
    '+i+"
    ")})},E=function(t){t.preventDefault(),s.controls.el.hasClass("disabled")||(s.settings.auto&&s.settings.stopAutoOnClick&&o.stopAuto(),o.goToNextSlide())},k=function(t){t.preventDefault(),s.controls.el.hasClass("disabled")||(s.settings.auto&&s.settings.stopAutoOnClick&&o.stopAuto(),o.goToPrevSlide())},M=function(t){o.startAuto(),t.preventDefault()},y=function(t){o.stopAuto(),t.preventDefault()},z=function(e){var i,n;e.preventDefault(),s.controls.el.hasClass("disabled")||(s.settings.auto&&s.settings.stopAutoOnClick&&o.stopAuto(),void 0!==(i=t(e.currentTarget)).attr("data-slide-index")&&(n=parseInt(i.attr("data-slide-index")))!==s.active.index&&o.goToSlide(n))},I=function(e){var i=s.children.length;if("short"===s.settings.pagerType)return s.settings.maxSlides>1&&(i=Math.ceil(s.children.length/s.settings.maxSlides)),void s.pagerEl.html(e+1+s.settings.pagerShortSeparator+i);s.pagerEl.find("a").removeClass("active"),s.pagerEl.each(function(i,n){t(n).find("a").eq(e).addClass("active")})},q=function(){if(s.settings.infiniteLoop){var t="";0===s.active.index?t=s.children.eq(0).position():s.active.index===f()-1&&s.carousel?t=s.children.eq((f()-1)*x()).position():s.active.index===s.children.length-1&&(t=s.children.eq(s.children.length-1).position()),t&&("horizontal"===s.settings.mode?S(-t.left,"reset",0):"vertical"===s.settings.mode&&S(-t.top,"reset",0))}s.working=!1,s.settings.onSlideAfter.call(o,s.children.eq(s.active.index),s.oldIndex,s.active.index)},A=function(t){s.settings.autoControlsCombine?s.controls.autoEl.html(s.controls[t]):(s.controls.autoEl.find("a").removeClass("active"),s.controls.autoEl.find("a:not(.bx-"+t+")").addClass("active"))},D=function(){1===f()?(s.controls.prev.addClass("disabled"),s.controls.next.addClass("disabled")):!s.settings.infiniteLoop&&s.settings.hideControlOnEnd&&(0===s.active.index?(s.controls.prev.addClass("disabled"),s.controls.next.removeClass("disabled")):s.active.index===f()-1?(s.controls.next.addClass("disabled"),s.controls.prev.removeClass("disabled")):(s.controls.prev.removeClass("disabled"),s.controls.next.removeClass("disabled")))},H=function(){if(s.settings.autoDelay>0)setTimeout(o.startAuto,s.settings.autoDelay);else o.startAuto(),t(window).focus(function(){o.startAuto()}).blur(function(){o.stopAuto()});s.settings.autoHover&&o.hover(function(){s.interval&&(o.stopAuto(!0),s.autoPaused=!0)},function(){s.autoPaused&&(o.startAuto(!0),s.autoPaused=null)})},W=function(){var e,i,n,r,a,l,d,c,g=0;"next"===s.settings.autoDirection?o.append(s.children.clone().addClass("bx-clone")):(o.prepend(s.children.clone().addClass("bx-clone")),e=s.children.first().position(),g="horizontal"===s.settings.mode?-e.left:-e.top),S(g,"reset",0),s.settings.pager=!1,s.settings.controls=!1,s.settings.autoControls=!1,s.settings.tickerHover&&(s.usingCSS?(r="horizontal"===s.settings.mode?4:5,s.viewport.hover(function(){i=o.css("-"+s.cssPrefix+"-transform"),n=parseFloat(i.split(",")[r]),S(n,"reset",0)},function(){c=0,s.children.each(function(e){c+="horizontal"===s.settings.mode?t(this).outerWidth(!0):t(this).outerHeight(!0)}),a=s.settings.speed/c,l="horizontal"===s.settings.mode?"left":"top",d=a*(c-Math.abs(parseInt(n))),L(d)})):s.viewport.hover(function(){o.stop()},function(){c=0,s.children.each(function(e){c+="horizontal"===s.settings.mode?t(this).outerWidth(!0):t(this).outerHeight(!0)}),a=s.settings.speed/c,l="horizontal"===s.settings.mode?"left":"top",d=a*(c-Math.abs(parseInt(o.css(l)))),L(d)})),L()},L=function(t){var e,i,n=t||s.settings.speed,r={left:0,top:0},a={left:0,top:0};"next"===s.settings.autoDirection?r=o.find(".bx-clone").first().position():a=s.children.first().position(),e="horizontal"===s.settings.mode?-r.left:-r.top,i="horizontal"===s.settings.mode?-a.left:-a.top,S(e,"ticker",n,{resetValue:i})},O=function(e){var i=t(window),n={top:i.scrollTop(),left:i.scrollLeft()},s=e.offset();return n.right=n.left+i.width(),n.bottom=n.top+i.height(),s.right=s.left+e.outerWidth(),s.bottom=s.top+e.outerHeight(),!(n.rights.right||n.bottoms.bottom)},F=function(t){var e=document.activeElement.tagName.toLowerCase();if(null==new RegExp(e,["i"]).exec("input|textarea")&&O(o)){if(39===t.keyCode)return E(t),!1;if(37===t.keyCode)return k(t),!1}},N=function(){s.touch={start:{x:0,y:0},end:{x:0,y:0}},s.viewport.bind("touchstart MSPointerDown pointerdown",X),s.viewport.on("click",".bxslider a",function(t){s.viewport.hasClass("click-disabled")&&(t.preventDefault(),s.viewport.removeClass("click-disabled"))})},X=function(t){if(s.controls.el.addClass("disabled"),s.working)t.preventDefault(),s.controls.el.removeClass("disabled");else{s.touch.originalPos=o.position();var e=t.originalEvent,i=void 0!==e.changedTouches?e.changedTouches:[e];s.touch.start.x=i[0].pageX,s.touch.start.y=i[0].pageY,s.viewport.get(0).setPointerCapture&&(s.pointerId=e.pointerId,s.viewport.get(0).setPointerCapture(s.pointerId)),s.viewport.bind("touchmove MSPointerMove pointermove",V),s.viewport.bind("touchend MSPointerUp pointerup",R),s.viewport.bind("MSPointerCancel pointercancel",Y)}},Y=function(t){S(s.touch.originalPos.left,"reset",0),s.controls.el.removeClass("disabled"),s.viewport.unbind("MSPointerCancel pointercancel",Y),s.viewport.unbind("touchmove MSPointerMove pointermove",V),s.viewport.unbind("touchend MSPointerUp pointerup",R),s.viewport.get(0).releasePointerCapture&&s.viewport.get(0).releasePointerCapture(s.pointerId)},V=function(t){var e=t.originalEvent,i=void 0!==e.changedTouches?e.changedTouches:[e],n=Math.abs(i[0].pageX-s.touch.start.x),o=Math.abs(i[0].pageY-s.touch.start.y),r=0,a=0;3*n>o&&s.settings.preventDefaultSwipeX?t.preventDefault():3*o>n&&s.settings.preventDefaultSwipeY&&t.preventDefault(),"fade"!==s.settings.mode&&s.settings.oneToOneTouch&&("horizontal"===s.settings.mode?(a=i[0].pageX-s.touch.start.x,r=s.touch.originalPos.left+a):(a=i[0].pageY-s.touch.start.y,r=s.touch.originalPos.top+a),S(r,"reset",0))},R=function(t){s.viewport.unbind("touchmove MSPointerMove pointermove",V),s.controls.el.removeClass("disabled");var e=t.originalEvent,i=void 0!==e.changedTouches?e.changedTouches:[e],n=0,r=0;s.touch.end.x=i[0].pageX,s.touch.end.y=i[0].pageY,"fade"===s.settings.mode?(r=Math.abs(s.touch.start.x-s.touch.end.x))>=s.settings.swipeThreshold&&(s.touch.start.x>s.touch.end.x?o.goToNextSlide():o.goToPrevSlide(),o.stopAuto()):("horizontal"===s.settings.mode?(r=s.touch.end.x-s.touch.start.x,n=s.touch.originalPos.left):(r=s.touch.end.y-s.touch.start.y,n=s.touch.originalPos.top),!s.settings.infiniteLoop&&(0===s.active.index&&r>0||s.active.last&&r<0)?S(n,"reset",200):Math.abs(r)>=s.settings.swipeThreshold?(r<0?o.goToNextSlide():o.goToPrevSlide(),o.stopAuto()):S(n,"reset",200)),s.viewport.unbind("touchend MSPointerUp pointerup",R),s.viewport.get(0).releasePointerCapture&&s.viewport.get(0).releasePointerCapture(s.pointerId)},Z=function(e){if(s.initialized)if(s.working)window.setTimeout(Z,10);else{var i=t(window).width(),n=t(window).height();r===i&&a===n||(r=i,a=n,o.redrawSlider(),s.settings.onSliderResize.call(o,s.active.index))}},B=function(t){var e=v();s.settings.ariaHidden&&!s.settings.ticker&&(s.children.attr("aria-hidden","true"),s.children.slice(t,t+e).attr("aria-hidden","false"))},U=function(t){return t<0?s.settings.infiniteLoop?f()-1:s.active.index:t>=f()?s.settings.infiniteLoop?0:s.active.index:t};return o.goToSlide=function(e,i){var n,r,a,l,d=!0,c=0,g={left:0,top:0},h=null;if(s.oldIndex=s.active.index,s.active.index=U(e),!s.working&&s.active.index!==s.oldIndex){if(s.working=!0,void 0!==(d=s.settings.onSlideBefore.call(o,s.children.eq(s.active.index),s.oldIndex,s.active.index))&&!d)return s.active.index=s.oldIndex,void(s.working=!1);"next"===i?s.settings.onSlideNext.call(o,s.children.eq(s.active.index),s.oldIndex,s.active.index)||(d=!1):"prev"===i&&(s.settings.onSlidePrev.call(o,s.children.eq(s.active.index),s.oldIndex,s.active.index)||(d=!1)),s.active.last=s.active.index>=f()-1,(s.settings.pager||s.settings.pagerCustom)&&I(s.active.index),s.settings.controls&&D(),"fade"===s.settings.mode?(s.settings.adaptiveHeight&&s.viewport.height()!==p()&&s.viewport.animate({height:p()},s.settings.adaptiveHeightSpeed),s.children.filter(":visible").fadeOut(s.settings.speed).css({zIndex:0}),s.children.eq(s.active.index).css("zIndex",s.settings.slideZIndex+1).fadeIn(s.settings.speed,function(){t(this).css("zIndex",s.settings.slideZIndex),q()})):(s.settings.adaptiveHeight&&s.viewport.height()!==p()&&s.viewport.animate({height:p()},s.settings.adaptiveHeightSpeed),!s.settings.infiniteLoop&&s.carousel&&s.active.last?"horizontal"===s.settings.mode?(g=(h=s.children.eq(s.children.length-1)).position(),c=s.viewport.width()-h.outerWidth()):(n=s.children.length-s.settings.minSlides,g=s.children.eq(n).position()):s.carousel&&s.active.last&&"prev"===i?(r=1===s.settings.moveSlides?s.settings.maxSlides-x():(f()-1)*x()-(s.children.length-s.settings.maxSlides),g=(h=o.children(".bx-clone").eq(r)).position()):"next"===i&&0===s.active.index?(g=o.find("> .bx-clone").eq(s.settings.maxSlides).position(),s.active.last=!1):e>=0&&(l=e*parseInt(x()),g=s.children.eq(l).position()),void 0!==g?(a="horizontal"===s.settings.mode?-(g.left-c):-g.top,S(a,"slide",s.settings.speed)):s.working=!1),s.settings.ariaHidden&&B(s.active.index*x())}},o.goToNextSlide=function(){if(s.settings.infiniteLoop||!s.active.last){var t=parseInt(s.active.index)+1;o.goToSlide(t,"next")}},o.goToPrevSlide=function(){if(s.settings.infiniteLoop||0!==s.active.index){var t=parseInt(s.active.index)-1;o.goToSlide(t,"prev")}},o.startAuto=function(t){s.interval||(s.interval=setInterval(function(){"next"===s.settings.autoDirection?o.goToNextSlide():o.goToPrevSlide()},s.settings.pause),s.settings.autoControls&&!0!==t&&A("stop"))},o.stopAuto=function(t){s.interval&&(clearInterval(s.interval),s.interval=null,s.settings.autoControls&&!0!==t&&A("start"))},o.getCurrentSlide=function(){return s.active.index},o.getCurrentSlideElement=function(){return s.children.eq(s.active.index)},o.getSlideElement=function(t){return s.children.eq(t)},o.getSlideCount=function(){return s.children.length},o.isWorking=function(){return s.working},o.redrawSlider=function(){s.children.add(o.find(".bx-clone")).outerWidth(u()),s.viewport.css("height",p()),s.settings.ticker||m(),s.active.last&&(s.active.index=f()-1),s.active.index>=f()&&(s.active.last=!0),s.settings.pager&&!s.settings.pagerCustom&&(b(),I(s.active.index)),s.settings.ariaHidden&&B(s.active.index*x())},o.destroySlider=function(){s.initialized&&(s.initialized=!1,t(".bx-clone",this).remove(),s.children.each(function(){void 0!==t(this).data("origStyle")?t(this).attr("style",t(this).data("origStyle")):t(this).removeAttr("style")}),void 0!==t(this).data("origStyle")?this.attr("style",t(this).data("origStyle")):t(this).removeAttr("style"),t(this).unwrap().unwrap(),s.controls.el&&s.controls.el.remove(),s.controls.next&&s.controls.next.remove(),s.controls.prev&&s.controls.prev.remove(),s.pagerEl&&s.settings.controls&&!s.settings.pagerCustom&&s.pagerEl.remove(),t(".bx-caption",this).remove(),s.controls.autoEl&&s.controls.autoEl.remove(),clearInterval(s.interval),s.settings.responsive&&t(window).unbind("resize",Z),s.settings.keyboardEnabled&&t(document).unbind("keydown",F),t(this).removeData("bxSlider"))},o.reloadSlider=function(e){void 0!==e&&(n=e),o.destroySlider(),l(),t(o).data("bxSlider",this)},l(),t(o).data("bxSlider",this),this}}}(jQuery); \ No newline at end of file diff --git a/frontend/web/themes/sport/images/Home_files/css.css b/frontend/web/themes/sport/images/Home_files/css.css new file mode 100644 index 0000000..2b9f330 --- /dev/null +++ b/frontend/web/themes/sport/images/Home_files/css.css @@ -0,0 +1,5 @@ +@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&subset=cyrillic'); +@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&subset=cyrillic'); + +/* BX-Slider */ +.bx-wrapper{position:relative;margin-bottom:60px;padding:0;-ms-touch-action:pan-y;touch-action:pan-y;-moz-box-shadow:0 0 5px #ccc;-webkit-box-shadow:0 0 5px #ccc;box-shadow:0 0 5px #ccc;border:5px solid #fff;background:#fff}.bx-wrapper img{max-width:100%;display:block}.bxslider{margin:0;padding:0}ul.bxslider{list-style:none}.bx-viewport{-webkit-transform:translatez(0)}.bx-wrapper .bx-controls-auto,.bx-wrapper .bx-pager{position:absolute;bottom:-30px;width:100%}.bx-wrapper .bx-loading{min-height:50px;background:url(../../images/bx_loader.gif) center center no-repeat #fff;height:100%;width:100%;position:absolute;top:0;left:0;z-index:2000}.bx-wrapper .bx-pager{text-align:center;font-size:.85em;font-family:Arial;font-weight:700;color:#666;padding-top:20px}.bx-wrapper .bx-pager.bx-default-pager a{background:#666;text-indent:-9999px;display:block;width:10px;height:10px;margin:0 5px;outline:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.bx-wrapper .bx-pager.bx-default-pager a.active,.bx-wrapper .bx-pager.bx-default-pager a:focus,.bx-wrapper .bx-pager.bx-default-pager a:hover{background:#000}.bx-wrapper .bx-controls-auto .bx-controls-auto-item,.bx-wrapper .bx-pager-item{display:inline-block;vertical-align:bottom}.bx-wrapper .bx-pager-item{font-size:0;line-height:0}.bx-wrapper .bx-prev{left:10px;background:url(../../images/controls.png) 0 -32px no-repeat}.bx-wrapper .bx-prev:focus,.bx-wrapper .bx-prev:hover{background-position:0 0}.bx-wrapper .bx-next{right:10px;background:url(../../images/controls.png) -43px -32px no-repeat}.bx-wrapper .bx-next:focus,.bx-wrapper .bx-next:hover{background-position:-43px 0}.bx-wrapper .bx-controls-direction a{position:absolute;top:50%;margin-top:-16px;outline:0;width:32px;height:32px;text-indent:-9999px;z-index:9999}.bx-wrapper .bx-controls-direction a.disabled{display:none}.bx-wrapper .bx-controls-auto{text-align:center}.bx-wrapper .bx-controls-auto .bx-start{display:block;text-indent:-9999px;width:10px;height:11px;outline:0;background:url(images/controls.png) -86px -11px no-repeat;margin:0 3px}.bx-wrapper .bx-controls-auto .bx-start.active,.bx-wrapper .bx-controls-auto .bx-start:focus,.bx-wrapper .bx-controls-auto .bx-start:hover{background-position:-86px 0}.bx-wrapper .bx-controls-auto .bx-stop{display:block;text-indent:-9999px;width:9px;height:11px;outline:0;background:url(images/controls.png) -86px -44px no-repeat;margin:0 3px}.bx-wrapper .bx-controls-auto .bx-stop.active,.bx-wrapper .bx-controls-auto .bx-stop:focus,.bx-wrapper .bx-controls-auto .bx-stop:hover{background-position:-86px -33px}.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager{text-align:left;width:80%}.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto{right:0;width:35px}.bx-wrapper .bx-caption{position:absolute;bottom:0;left:0;background:#666;background:rgba(80,80,80,.75);width:100%}.bx-wrapper .bx-caption span{color:#fff;font-family:Arial;display:block;font-size:.85em;padding:10px} diff --git a/frontend/web/themes/sport/images/Home_files/dot-dark.svg b/frontend/web/themes/sport/images/Home_files/dot-dark.svg new file mode 100644 index 0000000..7b4115f --- /dev/null +++ b/frontend/web/themes/sport/images/Home_files/dot-dark.svg @@ -0,0 +1,8 @@ + + + + + + + diff --git a/frontend/web/themes/sport/images/Home_files/dot.svg b/frontend/web/themes/sport/images/Home_files/dot.svg new file mode 100644 index 0000000..0cba3c3 --- /dev/null +++ b/frontend/web/themes/sport/images/Home_files/dot.svg @@ -0,0 +1,8 @@ + + + + + + + diff --git a/frontend/web/themes/sport/images/Home_files/ec.js b/frontend/web/themes/sport/images/Home_files/ec.js new file mode 100644 index 0000000..eab5888 --- /dev/null +++ b/frontend/web/themes/sport/images/Home_files/ec.js @@ -0,0 +1,7 @@ +(function(){var e=window,f="push",k="length",l="prototype",q=function(a){if(a.get&&a.set){this.clear();var d=a.get("buildHitTask");a.set("buildHitTask",n(this,d));a.set("_rlt",p(this,a.get("_rlt")))}},r={action:"pa",promoAction:"promoa",id:"ti",affiliation:"ta",revenue:"tr",tax:"tt",shipping:"ts",coupon:"tcc",step:"cos",label:"col",option:"col",options:"col",list:"pal",listSource:"pls"},t={id:"id",name:"nm",brand:"br",category:"ca",variant:"va",position:"ps",price:"pr",quantity:"qt",coupon:"cc","dimension(\\d+)":"cd", +"metric(\\d+)":"cm"},u={id:"id",name:"nm",creative:"cr",position:"ps"},v=function(a,d){this.name=a;this.source=d;this.e=[]},w="detail checkout checkout_option click add remove purchase refund".split(" ");q[l].clear=function(){this.b=void 0;this.f=[];this.a=[];this.g=[];this.d=void 0};q[l].h=function(a,d){var b=d||{};"promo_click"==a?b.promoAction="click":b.action=a;this.b=x(b)};q[l].j=function(a){(a=x(a))&&this.f[f](a)}; +q[l].i=function(a){var d=x(a);if(d){var b,c=a.list||"";a=a.listSource||"";for(var g=0;g
    +
    +
    +
    +
    + + +
    +
    +
    +
    Choose your color scheme:
    +
    + + + + + + +
    +
    +
    +
    + + +
    + + endBody() ?> + + + + + + +endPage() ?> \ No newline at end of file diff --git a/frontend/web/themes/sport/layouts/main-orig.php b/frontend/web/themes/sport/layouts/main-orig.php new file mode 100644 index 0000000..cca5a05 --- /dev/null +++ b/frontend/web/themes/sport/layouts/main-orig.php @@ -0,0 +1,83 @@ + +beginPage() ?> + + + + + + + + <?= Html::encode($this->title) ?> + head() ?> + + +beginBody() ?> + +
    + 'Sport >> ' . Yii::$app->name, + 'brandUrl' => Yii::$app->homeUrl, + 'options' => [ + 'class' => 'navbar-inverse navbar-fixed-top', + ], + ]); + $menuItems = [ + ['label' => 'Home', 'url' => ['/site/index']], + ['label' => 'About', 'url' => ['/page/view', 'id'=>2]], + ['label' => 'Contact', 'url' => ['/contact/index']], + ]; + if (Yii::$app->user->isGuest) { + $menuItems[] = ['label' => 'Signup', 'url' => ['/auth/signup/request']]; + $menuItems[] = ['label' => 'Login', 'url' => ['/auth/auth/login']]; + } else { + $menuItems[] = '
  • ' + . Html::beginForm(['/auth/auth/logout'], 'post') + . Html::submitButton( + 'Logout (' . Yii::$app->user->identity->user->username . ')', + ['class' => 'btn btn-link logout'] + ) + . Html::endForm() + . '
  • '; + } + echo Nav::widget([ + 'options' => ['class' => 'navbar-nav navbar-right'], + 'items' => $menuItems, + ]); + NavBar::end(); + ?> + +
    + isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : [], + ]) ?> + + +
    +
    + +
    +
    +

    © name) ?>

    + +

    +
    +
    + +endBody() ?> + + +endPage() ?> diff --git a/frontend/web/themes/sport/layouts/main.php b/frontend/web/themes/sport/layouts/main.php new file mode 100644 index 0000000..fd188a8 --- /dev/null +++ b/frontend/web/themes/sport/layouts/main.php @@ -0,0 +1,799 @@ +registerJs($js, $this::POS_READY) +?> +beginPage() ?> + + + + + + Home + + + + + + + head() ?> + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + + + + + + + + + +
    + +
    +
    +
    +
    Choose your color scheme:
    +
    + + + + + + +
    +
    +
    +
    + + +
    + + endBody() ?> + + + + + + +endPage() ?> \ No newline at end of file diff --git a/frontend/web/themes/sport/layouts/news.php b/frontend/web/themes/sport/layouts/news.php new file mode 100644 index 0000000..1d26ed0 --- /dev/null +++ b/frontend/web/themes/sport/layouts/news.php @@ -0,0 +1,74 @@ +params['breadcrumbs'][] = Yii::t('post', 'News'); +?> +beginContent('@frontend/web/themes/sport/layouts/main.php') ?> + + + + + + +
    +
    +
    +
    + +
    +
    + +
    + + 2, + ]) ?> + + + + 2, + 'filter' => \frontend\widgets\post\PostWidget::FILTER_LAST, + 'view' => 'news', + 'count' => 4 + ]) ?> + + + + 3 + ]) ?> + + 'subscribe', + ]) ?> + + 2, + ]) ?> + + +
    +
    +
    +
    +
    + +endContent() ?> \ No newline at end of file diff --git a/frontend/web/themes/sport/layouts/one_column.php b/frontend/web/themes/sport/layouts/one_column.php new file mode 100644 index 0000000..fa7b46b --- /dev/null +++ b/frontend/web/themes/sport/layouts/one_column.php @@ -0,0 +1,40 @@ + +beginContent('@frontend/web/themes/sport/layouts/main.php') ?> + + + + + + +
    +
    +
    +
    + + +
    +
    +
    +
    + +endContent() ?> \ No newline at end of file diff --git a/frontend/web/themes/sport/layouts/post.php b/frontend/web/themes/sport/layouts/post.php new file mode 100644 index 0000000..1d558da --- /dev/null +++ b/frontend/web/themes/sport/layouts/post.php @@ -0,0 +1,19 @@ + +beginContent('@frontend/views/layouts/main.php') ?> + +
    +
    + +
    + +
    + +endContent() ?> diff --git a/frontend/web/themes/sport/layouts/profile.php b/frontend/web/themes/sport/layouts/profile.php new file mode 100644 index 0000000..e6c7422 --- /dev/null +++ b/frontend/web/themes/sport/layouts/profile.php @@ -0,0 +1,65 @@ + +beginContent('@frontend/web/themes/sport/layouts/main.php') ?> + + + + + + +
    +
    +
    +
    + + +
    +
    +
    + +
    + +
    +
    +
    +
    +
    +
    + + +
    +
      +
    • +
    • +
    • +
    +
    +
    +
    +
    +
    +
    +
    + +endContent() ?> \ No newline at end of file diff --git a/frontend/web/themes/sport/post/news/_list.php b/frontend/web/themes/sport/post/news/_list.php new file mode 100644 index 0000000..897fe06 --- /dev/null +++ b/frontend/web/themes/sport/post/news/_list.php @@ -0,0 +1,42 @@ + + +
    +
    +
    +
    +
    + + $dataProvider, + 'layout' => "
    {items}
    \n", + 'itemView' => '_post', + 'pager' => [ + //'pagination' => null, + 'maxButtonCount' => 7, + 'pageCssClass' => 'page-item', + 'options' => [ + 'class' => 'pagination', + ], + 'disabledListItemSubTagOptions' => ['tag' => 'div', 'class' => 'disabled'], + 'activePageCssClass' => 'active', + 'linkOptions' => [ + 'class' => 'page-link', + ], + 'prevPageLabel' => '', + 'nextPageLabel' => '', + ], + 'itemOptions' => [ + 'tag' => false + ], + 'options' => [ + 'tag' => false, + 'class' => 'row row-30', + 'id' => false, + ], +]) ?> + diff --git a/frontend/web/themes/sport/post/news/_post.php b/frontend/web/themes/sport/post/news/_post.php new file mode 100644 index 0000000..50e11af --- /dev/null +++ b/frontend/web/themes/sport/post/news/_post.php @@ -0,0 +1,50 @@ +$model->id]); +$url_full = Yii::$app->params['frontendHostInfo'] . Url::to(['post/post', 'id' =>$model->id]); +?> + + +
    +
    + + <?= Html::encode($model->title) ?> + +
    +

    title) ?>

    +
    + +
    category->name ?>
    +
    + +
    +
    +
    +
    +

    description), 12, '...') ?>

    +
    +
    +
    +
    +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    +
    +
    +
    +
    +
    +
    +
    diff --git a/frontend/web/themes/sport/post/news/category.php b/frontend/web/themes/sport/post/news/category.php new file mode 100644 index 0000000..d53e327 --- /dev/null +++ b/frontend/web/themes/sport/post/news/category.php @@ -0,0 +1,41 @@ +title = $category->getSeoTitle(); + +$this->registerMetaTag(['name' =>'description', 'content' => $category->meta->description]); +$this->registerMetaTag(['name' =>'keywords', 'content' => $category->meta->keywords]); + +$this->params['breadcrumbs'][] = ['label' => $type->plural, 'url' => ['post/index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = $category->name; + +$this->params['active_category'] = $category; +?> + +

    getHeadingTile()) ?>

    + +description)): ?> +
    +
    + formatter->asHtml($category->description, [ + 'Attr.AllowedRel' => array('nofollow'), + 'HTML.SafeObject' => true, + 'Output.FlashCompat' => true, + 'HTML.SafeIframe' => true, + 'URI.SafeIframeRegexp'=>'%^(https?:)?//(www\.youtube(?:-nocookie)?\.com/embed/|player\.vimeo\.com/video/)%', + ]) ?> +
    +
    + + +render('_list', [ + 'dataProvider' => $dataProvider +]) ?> + + diff --git a/frontend/web/themes/sport/post/news/index.php b/frontend/web/themes/sport/post/news/index.php new file mode 100644 index 0000000..1b3b07c --- /dev/null +++ b/frontend/web/themes/sport/post/news/index.php @@ -0,0 +1,15 @@ +title = $type->plural; +$this->params['breadcrumbs'][] = $this->title; +?> + +render('_list', [ + 'dataProvider' => $dataProvider +]) ?> \ No newline at end of file diff --git a/frontend/web/themes/sport/post/news/post.php b/frontend/web/themes/sport/post/news/post.php new file mode 100644 index 0000000..77d1550 --- /dev/null +++ b/frontend/web/themes/sport/post/news/post.php @@ -0,0 +1,115 @@ +title = $post->getSeoTitle(); + +$this->registerMetaTag(['name' =>'description', 'content' => $post->meta->description]); +$this->registerMetaTag(['name' =>'keywords', 'content' => $post->meta->keywords]); + +$this->params['breadcrumbs'][] = ['label' => $type->plural, 'url' => ['post/index', 'tid' => $type->id]]; +$this->params['breadcrumbs'][] = ['label' => $post->category->name, 'url' => ['post/category', 'id' => $post->category->id]]; +$this->params['breadcrumbs'][] = $post->title; + +$this->params['active_category'] = $post->category; + +$tagLinks = []; +foreach ($post->tags as $tag) { + $tagLinks[] = '
  • ' . Html::a(Html::encode($tag->name), ['tag', 'slug' => $tag->slug]) . '
  • '; +} + +$url = Url::to(['post/post', 'id' =>$post->id]); +$url_full = Yii::$app->params['frontendHostInfo'] . Url::to(['post/post', 'id' =>$post->id]); + +$js = <<registerJs($js, $this::POS_READY); +?> + + +
    + +
    category->name ?> +
    +

    title) ?>

    +
    + +
    + +
    +

    +
      +
    • +
    • +
    • +
    • +
    +
    +
    + + <?= Html::encode($post->title) ?> + + formatter->asHtml($post->content, [ + 'Attr.AllowedRel' => array('nofollow'), + 'HTML.SafeObject' => true, + 'Output.FlashCompat' => true, + 'HTML.SafeIframe' => true, + 'URI.SafeIframeRegexp'=>'%^(https?:)?//(www\.youtube(?:-nocookie)?\.com/embed/|player\.vimeo\.com/video/)%', + ]) ?> + +
    +
    + + 10, + 'view' => 'slider-relative', + 'post' => $post, +]) ?> + + +
    + + $post, +]) ?> + + diff --git a/frontend/web/themes/sport/widgets/general/views/bottom_subscribe.php b/frontend/web/themes/sport/widgets/general/views/bottom_subscribe.php new file mode 100644 index 0000000..b90dbbd --- /dev/null +++ b/frontend/web/themes/sport/widgets/general/views/bottom_subscribe.php @@ -0,0 +1,70 @@ +registerJs($js); +?> + +
    + 'bottom-subscribe-form', + 'options' => [ + 'class' => 'rd-mailform rd-form rd-inline-form-creative', + ], + 'fieldConfig' => [ + 'options' => [ + 'tag' => false, + ], + ], +]); ?> +
    + + + +
    + +
    + ', [ + 'class' => 'button button-primary-outline', + ]) ?> +
    + + +
    diff --git a/frontend/web/themes/sport/widgets/general/views/follow_us.php b/frontend/web/themes/sport/widgets/general/views/follow_us.php new file mode 100644 index 0000000..41e5b18 --- /dev/null +++ b/frontend/web/themes/sport/widgets/general/views/follow_us.php @@ -0,0 +1,48 @@ + + +
    + +
    +
    +
    +
    +
    +
    + + + +
    \ No newline at end of file diff --git a/frontend/web/themes/sport/widgets/general/views/subscribe.php b/frontend/web/themes/sport/widgets/general/views/subscribe.php new file mode 100644 index 0000000..ea95950 --- /dev/null +++ b/frontend/web/themes/sport/widgets/general/views/subscribe.php @@ -0,0 +1,70 @@ +registerJs($js); +?> + +
    + +
    +
    +
    +
    +
    +
    + +
    + + 'subscribe-form', + ]); ?> + +
    + field($model, 'email', [ + 'template' => '{input}{error}', + 'errorOptions' => [ 'class' => 'form-validation' ] + ])->textInput([ + 'class' => 'form-input form-control-has-validation form-control-last-child', + 'placeholder' => Yii::t('user', 'Enter Your E-mail'), + ])->label(false) ?> +
    + +
    + 'button button-block button-primary', + ]) ?> +
    + + +
    +
    + diff --git a/frontend/web/themes/sport/widgets/post/views/categories.php b/frontend/web/themes/sport/widgets/post/views/categories.php new file mode 100644 index 0000000..b4a8524 --- /dev/null +++ b/frontend/web/themes/sport/widgets/post/views/categories.php @@ -0,0 +1,28 @@ + + +
    + +
    +
    +
    +
    +
    +
    + + +
    +
      + +
    • name ?>getPostsCount() ?>
    • + +
    +
    +
    diff --git a/frontend/web/themes/sport/widgets/post/views/news.php b/frontend/web/themes/sport/widgets/post/views/news.php new file mode 100644 index 0000000..3e045d7 --- /dev/null +++ b/frontend/web/themes/sport/widgets/post/views/news.php @@ -0,0 +1,32 @@ + + +
    + +
    +
    +
    +
    +
    +
    + +
    + + + render($view . '_item', [ + 'post' => $post + ]) ?> + + +
    + +
    \ No newline at end of file diff --git a/frontend/web/themes/sport/widgets/post/views/news_item.php b/frontend/web/themes/sport/widgets/post/views/news_item.php new file mode 100644 index 0000000..95ec72a --- /dev/null +++ b/frontend/web/themes/sport/widgets/post/views/news_item.php @@ -0,0 +1,28 @@ + $post->id]); +?> + +
    +
    + + <?= Html::encode($post->title) ?> + +
    +
    +

    + title), $url) ?> +

    +
    + +
    +
    +
    diff --git a/frontend/web/themes/sport/widgets/post/views/tags.php b/frontend/web/themes/sport/widgets/post/views/tags.php new file mode 100644 index 0000000..3763080 --- /dev/null +++ b/frontend/web/themes/sport/widgets/post/views/tags.php @@ -0,0 +1,30 @@ + + +
    + +
    +
    +
    +
    +
    +
    + + +
      + + +
    • + + +
    +
    diff --git a/frontend/widgets/Alert.php b/frontend/widgets/Alert.php new file mode 100644 index 0000000..9ee8fbd --- /dev/null +++ b/frontend/widgets/Alert.php @@ -0,0 +1,42 @@ + 'alert-danger', + 'danger' => 'alert-danger', + 'success' => 'alert-success', + 'info' => 'alert-info', + 'warning' => 'alert-warning' + ]; + + public function run() + { + $session = Yii::$app->session; + $flashes = $session->getAllFlashes(); + + foreach ($flashes as $type => $flash) { + if (!isset($this->alertTypes[$type])) { + continue; + } + + foreach ((array) $flash as $i => $message) { + + $html = << + {$message} + + +HTML; + echo $html; + } + $session->removeFlash($type); + } + } +} diff --git a/frontend/widgets/general/FollowWidget.php b/frontend/widgets/general/FollowWidget.php new file mode 100644 index 0000000..a51e975 --- /dev/null +++ b/frontend/widgets/general/FollowWidget.php @@ -0,0 +1,22 @@ +render('follow_us', [ + 'url' => $url, + ]); + } +} diff --git a/frontend/widgets/general/SubscribeWidget.php b/frontend/widgets/general/SubscribeWidget.php new file mode 100644 index 0000000..a33ef09 --- /dev/null +++ b/frontend/widgets/general/SubscribeWidget.php @@ -0,0 +1,24 @@ +render($this->view, [ + 'model' => $form, + ]); + } +} \ No newline at end of file diff --git a/frontend/widgets/post/CategoriesWidget.php b/frontend/widgets/post/CategoriesWidget.php new file mode 100644 index 0000000..63d0515 --- /dev/null +++ b/frontend/widgets/post/CategoriesWidget.php @@ -0,0 +1,36 @@ +categories = $categories; + } + + public function run(): string + { + return Html::tag('div', implode(PHP_EOL, array_map(function (PostCategory $category) { + $active = $this->active && ($this->active->id == $category->id); + return Html::a( + Html::encode($category->name), + ['/post/category', 'slug' => $category->slug], + ['class' => $active ? 'list-group-item active' : 'list-group-item'] + ); + }, $this->categories->getAll())), [ + 'class' => 'list-group', + ]); + } +} \ No newline at end of file diff --git a/frontend/widgets/post/CommentView.php b/frontend/widgets/post/CommentView.php new file mode 100644 index 0000000..ec132c8 --- /dev/null +++ b/frontend/widgets/post/CommentView.php @@ -0,0 +1,20 @@ +comment = $comment; + $this->children = $children; + } +} \ No newline at end of file diff --git a/frontend/widgets/post/CommentsWidget.php b/frontend/widgets/post/CommentsWidget.php new file mode 100644 index 0000000..514e7f1 --- /dev/null +++ b/frontend/widgets/post/CommentsWidget.php @@ -0,0 +1,57 @@ +post) { + throw new InvalidConfigException('Specify the post.'); + } + } + + public function run(): string + { + $form = new PostCommentForm(); + + $comments = $this->post->getPostComments() + ->orderBy(['parent_id' => SORT_ASC, 'id' => SORT_ASC]) + ->all(); + + $items = $this->treeRecursive($comments, null); + + return $this->render('comments/comments', [ + 'post' => $this->post, + 'items' => $items, + 'commentForm' => $form, + ]); + } + + /** + * @param PostComment[] $comments + * @param integer $parentId + * @return CommentView[] + */ + public function treeRecursive(&$comments, $parentId): array + { + $items = []; + foreach ($comments as $comment) { + if ($comment->parent_id == $parentId) { + $items[] = new CommentView($comment, $this->treeRecursive($comments, $comment->id)); + } + } + return $items; + } +} \ No newline at end of file diff --git a/frontend/widgets/post/LastCommentsWidget.php b/frontend/widgets/post/LastCommentsWidget.php new file mode 100644 index 0000000..2f5c921 --- /dev/null +++ b/frontend/widgets/post/LastCommentsWidget.php @@ -0,0 +1,29 @@ +count = $this->count ? $this->count : 3; + } + + public function run() { + $comments = PostComment::find()->orderBy(['created_at' => SORT_DESC])->limit($this->count)->all(); + + return $this->render('comments', [ + 'comments' => $comments, + ]); + } +} \ No newline at end of file diff --git a/frontend/widgets/post/PostByTagsWidget.php b/frontend/widgets/post/PostByTagsWidget.php new file mode 100644 index 0000000..aee93a6 --- /dev/null +++ b/frontend/widgets/post/PostByTagsWidget.php @@ -0,0 +1,42 @@ +count = $this->count ? $this->count : 5; + $this->posts = $posts; + } + + public function run(): string + { + $tag_ids = ArrayHelper::getColumn(PostTagAssignment::find()->andWhere(['post_id' => $this->post->id])->all(), 'tag_id'); + $posts = $this->posts->getByTagsId($this->post, $tag_ids, $this->count)->getModels(); + + return $this->render($this->view, [ + 'posts' => $posts, + 'view' => $this->view, + 'url' => Url::canonical(), + ]); + } +} \ No newline at end of file diff --git a/frontend/widgets/post/PostCategoriesWidget.php b/frontend/widgets/post/PostCategoriesWidget.php new file mode 100644 index 0000000..c5e3fa6 --- /dev/null +++ b/frontend/widgets/post/PostCategoriesWidget.php @@ -0,0 +1,29 @@ +byType($this->type_id)->all(); + + if (count($categories) < 2) { + return ''; + } + + return $this->render('categories', [ + 'categories' => $categories, + ]); + } +} \ No newline at end of file diff --git a/frontend/widgets/post/PostTagWidget.php b/frontend/widgets/post/PostTagWidget.php new file mode 100644 index 0000000..9dc1f97 --- /dev/null +++ b/frontend/widgets/post/PostTagWidget.php @@ -0,0 +1,36 @@ +select('t.name as name, count(t.id) as cnt') + ->from('posts as p, post_tag_assignments as a, post_tags as t') + ->andWhere(['p.type_id' => $this->type_id]) + ->andWhere('p.id = a.post_id') + ->andWhere('t.id = a.tag_id') + ->groupBy('t.id') + ->orderBy('cnt DESC') + ->limit(20) + ->asArray() + ->all(); + + return $this->render('tags', [ + 'tags' => $tags, + ]); + } +} \ No newline at end of file diff --git a/frontend/widgets/post/PostWidget.php b/frontend/widgets/post/PostWidget.php new file mode 100644 index 0000000..eccfe05 --- /dev/null +++ b/frontend/widgets/post/PostWidget.php @@ -0,0 +1,44 @@ +count = $this->count ? $this->count : 5; + } + + public function run(): string + { + if ($this->filter == self::FILTER_POPULAR) { + $posts = Post::find()->byType( $this->type )->popular()->limit($this->count)->all(); + } + else { + $posts = Post::find()->byType( $this->type )->last()->limit($this->count)->all(); + } + return $this->render($this->view, [ + 'posts' => $posts, + 'view' => $this->view, + 'url' => Url::canonical(), + ]); + } +} \ No newline at end of file diff --git a/frontend/widgets/post/views/comments.php b/frontend/widgets/post/views/comments.php new file mode 100644 index 0000000..a7cb337 --- /dev/null +++ b/frontend/widgets/post/views/comments.php @@ -0,0 +1,33 @@ + + +
    + +
    +
    +
    + +
    +
    +
    + + +
    + + + + + render( 'comments_item', [ + 'comment' => $comment, + ] ) ?> + + + +
    +
    \ No newline at end of file diff --git a/frontend/widgets/post/views/comments/_comment.php b/frontend/widgets/post/views/comments/_comment.php new file mode 100644 index 0000000..b550ff1 --- /dev/null +++ b/frontend/widgets/post/views/comments/_comment.php @@ -0,0 +1,49 @@ + + +
    + +
    +
    + +
    comment->user->username ?>
    + +
    +
    +

    + comment->isActive()): ?> + formatter->asNtext($item->comment->text) ?> + + Comment is deleted. + +

    +
    +
    + + user->isGuest): ?> +
    + +
    + +
    + +
    +
    + + + +children as $children): ?> + render('_comment', ['item' => $children, 'child' => $child + 1]) ?> + diff --git a/frontend/widgets/post/views/comments/comments.php b/frontend/widgets/post/views/comments/comments.php new file mode 100644 index 0000000..c849b13 --- /dev/null +++ b/frontend/widgets/post/views/comments/comments.php @@ -0,0 +1,95 @@ +registerCss( $css ); +?> + +
    +
    + +
    +
    +
    + $post->comments_count ] ) ?> +
    + user->isGuest ): ?> + + + +
    +
    + + 0 ): ?> +
    + + render( '_comment', [ 'item' => $item, 'child' => 0 ] ) ?> + +
    + + + user->isGuest ): ?> +
    + +
    + [ 'comment', 'id' => $post->id ], + ] ); ?> + + + field( $commentForm, 'text' )->textarea( [ 'rows' => 5 ] )->label( Yii::t( 'post', 'Comment' ) ) ?> + +
    + 'btn btn-primary' ] ) ?> +
    + + +
    +
    + +
    + Html::a(Yii::t('auth', 'Log in'), ['/auth/auth/login'])]) ?> +
    + + + +
    +
    + +registerJs( " + jQuery(document).on('click', '.blog-post-comments .comment-reply', function () { + var link = jQuery(this); + var form = jQuery('#reply-block'); + var comment = link.closest('.post-comment'); + jQuery('#postcommentform-parentid').val(comment.data('id')); + form.detach().appendTo(comment.find('.reply-block:first')); + return false; + }); + + jQuery(document).on('click', '#send-comment', function () { + var form = jQuery('#reply-block'); + jQuery('#postcommentform-parentid').val(''); + form.detach().appendTo('#reply-container'); + //return false; + }); +" ); ?> + + + \ No newline at end of file diff --git a/frontend/widgets/post/views/comments_item.php b/frontend/widgets/post/views/comments_item.php new file mode 100644 index 0000000..8694fe8 --- /dev/null +++ b/frontend/widgets/post/views/comments_item.php @@ -0,0 +1,39 @@ + + + +
    + + + +
    +
    +

    user->username ?>

    + +
    +
    +
    +
    +

    + text, 20, '...') ?> +

    +
    +
    + post->title, ['post/post', 'id' => $comment->post_id]) ?> +
    +
    +
    diff --git a/frontend/widgets/post/views/last-posts.php b/frontend/widgets/post/views/last-posts.php new file mode 100644 index 0000000..f24c0dc --- /dev/null +++ b/frontend/widgets/post/views/last-posts.php @@ -0,0 +1,31 @@ + + +
    + + $post->id]); ?> +
    +
    + photo): ?> +
    + + + +
    + +
    +
    +

    title) ?>

    +

    description), 20)) ?>

    +
    +
    +
    +
    + +
    diff --git a/frontend/widgets/post/views/plate-horizontal.php b/frontend/widgets/post/views/plate-horizontal.php new file mode 100644 index 0000000..00653bb --- /dev/null +++ b/frontend/widgets/post/views/plate-horizontal.php @@ -0,0 +1,18 @@ + + + + + + render( $view . '_item', [ + 'post' => $post + ] ) ?> + + diff --git a/frontend/widgets/post/views/plate-horizontal_item.php b/frontend/widgets/post/views/plate-horizontal_item.php new file mode 100644 index 0000000..e18bae7 --- /dev/null +++ b/frontend/widgets/post/views/plate-horizontal_item.php @@ -0,0 +1,36 @@ + + + +
    + +
    + + <?= Html::encode($post->title) ?> + +
    +

    + title), 8, '...'), '#') ?> +

    +
    + + +
    category->name ?>
    +
    + +
    +
    +
    +
    +

    description), 16, '...') ?>

    +
    +
    +
    +
    \ No newline at end of file diff --git a/frontend/widgets/post/views/plate-vertical.php b/frontend/widgets/post/views/plate-vertical.php new file mode 100644 index 0000000..11325d5 --- /dev/null +++ b/frontend/widgets/post/views/plate-vertical.php @@ -0,0 +1,20 @@ + + + + + + render($view . '_item', [ + 'post' => $post, + 'url' => $url, + ]) ?> + + diff --git a/frontend/widgets/post/views/plate-vertical_item.php b/frontend/widgets/post/views/plate-vertical_item.php new file mode 100644 index 0000000..ee6caae --- /dev/null +++ b/frontend/widgets/post/views/plate-vertical_item.php @@ -0,0 +1,50 @@ + + +
    + +
    + + <?= Html::encode($post->title) ?> + +
    +

    title), 6, '...'), '#') ?>

    +
    + +
    category->name ?>
    +
    + +
    +
    +
    +
    +

    description), 12, '...') ?>

    +
    +
    + +
    +
    +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    +
    +
    +
    +
    +
    +
    +
    \ No newline at end of file diff --git a/frontend/widgets/post/views/slider-relative.php b/frontend/widgets/post/views/slider-relative.php new file mode 100644 index 0000000..dca6027 --- /dev/null +++ b/frontend/widgets/post/views/slider-relative.php @@ -0,0 +1,38 @@ + + +
    + +
    \ No newline at end of file diff --git a/frontend/widgets/post/views/slider-relative_item.php b/frontend/widgets/post/views/slider-relative_item.php new file mode 100644 index 0000000..10d9100 --- /dev/null +++ b/frontend/widgets/post/views/slider-relative_item.php @@ -0,0 +1,43 @@ + $post->id ] ); +?> + + +
    + +
    + <?= Html::encode($post->title) ?> +
    + video): ?> + +
    category->name ?>
    + + + +
    +
    +

    + title, $url) ?> +

    +
    +
    + +
    +
    comments_count ?> +
    +
    views ?>
    +
    +
    +
    +
    diff --git a/frontend/widgets/post/views/slider.php b/frontend/widgets/post/views/slider.php new file mode 100644 index 0000000..5b42c6f --- /dev/null +++ b/frontend/widgets/post/views/slider.php @@ -0,0 +1,19 @@ + + + diff --git a/frontend/widgets/post/views/slider_item.php b/frontend/widgets/post/views/slider_item.php new file mode 100644 index 0000000..852a82d --- /dev/null +++ b/frontend/widgets/post/views/slider_item.php @@ -0,0 +1,43 @@ +$post->id]); +?> + +
    +
    + + <?= Html::encode($post->title) ?> + +
    + video): ?> + +
    category->name ?>
    + + + +
    +
    +

    + title, $url) ?> +

    +
    +
    + +
    +
    comments_count ?> +
    +
    views ?>
    +
    +
    +
    +
    diff --git a/frontend/widgets/slider/SliderWidget.php b/frontend/widgets/slider/SliderWidget.php new file mode 100644 index 0000000..73111e1 --- /dev/null +++ b/frontend/widgets/slider/SliderWidget.php @@ -0,0 +1,30 @@ +orderBy(['sort' => SORT_ASC])->all(); + + return $this->render('slider', [ + 'slider' => $slider, + 'tag' => $this->tag ?: 'div', + 'classes' => $this->classes, + 'attrs' => $this->attrs, + ]); + } +} \ No newline at end of file diff --git a/frontend/widgets/slider/views/slider.php b/frontend/widgets/slider/views/slider.php new file mode 100644 index 0000000..8b69e44 --- /dev/null +++ b/frontend/widgets/slider/views/slider.php @@ -0,0 +1,229 @@ +' + ((index + 1) < 10 ? ('0' + (index + 1) ): (index + 1)) + '
    '; + } : null : null, + scrollbar: bar.length ? bar.get(0) : null, + scrollbarDraggable: bar.length ? bar.attr("data-draggable") !== "false" : true, + scrollbarHide: bar.length ? bar.attr("data-draggable") === "false" : false, + //loop: isNoviBuilder ? false : s.attr('data-loop') !== "false", + loop: s.attr('data-loop') !== "false", + //simulateTouch: s.attr('data-simulate-touch') && !isNoviBuilder ? s.attr('data-simulate-touch') === "true" : false, + simulateTouch: s.attr('data-simulate-touch') ? s.attr('data-simulate-touch') === "true" : false, + onTransitionStart: function (swiper) { + toggleSwiperInnerVideos(swiper); + }, + onTransitionEnd: function (swiper) { + toggleSwiperCaptionAnimation(swiper); + }, + onInit: function (swiper) { + toggleSwiperInnerVideos(swiper); + toggleSwiperCaptionAnimation(swiper); + + if (swiper.container.data('autoplay-hover') === true) { + var hoverEvent; + + swiper.container.mouseenter(function (e) { + hoverEvent = setInterval(function () { + swiper.slideNext(); + }, $(swiper.container).data('autoplay')); + }); + + swiper.container.mouseleave(function (e) { + clearInterval(hoverEvent); + }); + } + + //initLightGalleryItem(s.find('[data-lightgallery="item"]'), 'lightGallery-in-carousel'); + } + }); + + + + + + win.on("resize", (function (s) { + return function () { + var mh = getSwiperHeight(s, "min-height"), + h = getSwiperHeight(s, "height"); + if (h) { + s.css("height", mh ? mh > h ? mh : h : h); + } + } + })(s)).trigger("resize"); + + window.setTimeout(function() { + win.trigger("resize"); + }, 100); +JS; +$this->registerJs($js, $this::POS_READY); + + +$js2 = <<registerJs($js2, $this::POS_END); +?> + +< class="" > +
    + + + +
    +
    +
    +

    + ", Html::encode($slide->title)) ?>

    +

    + ", Html::encode($slide->tagline)) ?> +

    +
    +
    +
    + + + +
    +
    +
    +
    + + +
    +> diff --git a/init b/init new file mode 100644 index 0000000..270b1a5 --- /dev/null +++ b/init @@ -0,0 +1,299 @@ +#!/usr/bin/env php + + * + * @link http://www.yiiframework.com/ + * @copyright Copyright (c) 2008 Yii Software LLC + * @license http://www.yiiframework.com/license/ + */ + +if (!extension_loaded('openssl')) { + die('The OpenSSL PHP extension is required by Yii2.'); +} + +$params = getParams(); +$root = str_replace('\\', '/', __DIR__); +$envs = require "$root/environments/index.php"; +$envNames = array_keys($envs); + +echo "Yii Application Initialization Tool v1.0\n\n"; + +$envName = null; +if (empty($params['env']) || $params['env'] === '1') { + echo "Which environment do you want the application to be initialized in?\n\n"; + foreach ($envNames as $i => $name) { + echo " [$i] $name\n"; + } + echo "\n Your choice [0-" . (count($envs) - 1) . ', or "q" to quit] '; + $answer = trim(fgets(STDIN)); + + if (!ctype_digit($answer) || !in_array($answer, range(0, count($envs) - 1))) { + echo "\n Quit initialization.\n"; + exit(0); + } + + if (isset($envNames[$answer])) { + $envName = $envNames[$answer]; + } +} else { + $envName = $params['env']; +} + +if (!in_array($envName, $envNames)) { + $envsList = implode(', ', $envNames); + echo "\n $envName is not a valid environment. Try one of the following: $envsList. \n"; + exit(2); +} + +$env = $envs[$envName]; + +if (empty($params['env'])) { + echo "\n Initialize the application under '{$envNames[$answer]}' environment? [yes|no] "; + $answer = trim(fgets(STDIN)); + if (strncasecmp($answer, 'y', 1)) { + echo "\n Quit initialization.\n"; + exit(0); + } +} + +echo "\n Start initialization ...\n\n"; +$files = getFileList("$root/environments/{$env['path']}"); +if (isset($env['skipFiles'])) { + $skipFiles = $env['skipFiles']; + array_walk($skipFiles, function(&$value) use($env, $root) { $value = "$root/$value"; }); + $files = array_diff($files, array_intersect_key($env['skipFiles'], array_filter($skipFiles, 'file_exists'))); +} +$all = false; +foreach ($files as $file) { + if (!copyFile($root, "environments/{$env['path']}/$file", $file, $all, $params)) { + break; + } +} + +$callbacks = ['setCookieValidationKey', 'setWritable', 'setExecutable', 'createSymlink']; +foreach ($callbacks as $callback) { + if (!empty($env[$callback])) { + $callback($root, $env[$callback]); + } +} + +echo "\n ... initialization completed.\n\n"; + +function getFileList($root, $basePath = '') +{ + $files = []; + $handle = opendir($root); + while (($path = readdir($handle)) !== false) { + if ($path === '.git' || $path === '.svn' || $path === '.' || $path === '..') { + continue; + } + $fullPath = "$root/$path"; + $relativePath = $basePath === '' ? $path : "$basePath/$path"; + if (is_dir($fullPath)) { + $files = array_merge($files, getFileList($fullPath, $relativePath)); + } else { + $files[] = $relativePath; + } + } + closedir($handle); + return $files; +} + +function copyFile($root, $source, $target, &$all, $params) +{ + if (!is_file($root . '/' . $source)) { + echo " skip $target ($source not exist)\n"; + return true; + } + if (is_file($root . '/' . $target)) { + if (file_get_contents($root . '/' . $source) === file_get_contents($root . '/' . $target)) { + echo " unchanged $target\n"; + return true; + } + if ($all) { + echo " overwrite $target\n"; + } else { + echo " exist $target\n"; + echo " ...overwrite? [Yes|No|All|Quit] "; + + + $answer = !empty($params['overwrite']) ? $params['overwrite'] : trim(fgets(STDIN)); + if (!strncasecmp($answer, 'q', 1)) { + return false; + } else { + if (!strncasecmp($answer, 'y', 1)) { + echo " overwrite $target\n"; + } else { + if (!strncasecmp($answer, 'a', 1)) { + echo " overwrite $target\n"; + $all = true; + } else { + echo " skip $target\n"; + return true; + } + } + } + } + file_put_contents($root . '/' . $target, file_get_contents($root . '/' . $source)); + return true; + } + echo " generate $target\n"; + @mkdir(dirname($root . '/' . $target), 0777, true); + file_put_contents($root . '/' . $target, file_get_contents($root . '/' . $source)); + return true; +} + +function getParams() +{ + $rawParams = []; + if (isset($_SERVER['argv'])) { + $rawParams = $_SERVER['argv']; + array_shift($rawParams); + } + + $params = []; + foreach ($rawParams as $param) { + if (preg_match('/^--(\w+)(=(.*))?$/', $param, $matches)) { + $name = $matches[1]; + $params[$name] = isset($matches[3]) ? $matches[3] : true; + } else { + $params[] = $param; + } + } + return $params; +} + +function setWritable($root, $paths) +{ + foreach ($paths as $writable) { + if (is_dir("$root/$writable")) { + if (@chmod("$root/$writable", 0777)) { + echo " chmod 0777 $writable\n"; + } else { + printError("Operation chmod not permitted for directory $writable."); + } + } else { + printError("Directory $writable does not exist."); + } + } +} + +function setExecutable($root, $paths) +{ + foreach ($paths as $executable) { + if (file_exists("$root/$executable")) { + if (@chmod("$root/$executable", 0755)) { + echo " chmod 0755 $executable\n"; + } else { + printError("Operation chmod not permitted for $executable."); + } + } else { + printError("$executable does not exist."); + } + } +} + +function setCookieValidationKey($root, $paths) +{ + foreach ($paths as $file) { + echo " generate cookie validation key in $file\n"; + $file = $root . '/' . $file; + $length = 32; + $bytes = openssl_random_pseudo_bytes($length); + $key = strtr(substr(base64_encode($bytes), 0, $length), '+/=', '_-.'); + $content = preg_replace('/(("|\')cookieValidationKey("|\')\s*=>\s*)(""|\'\')/', "\\1'$key'", file_get_contents($file)); + file_put_contents($file, $content); + } +} + +function createSymlink($root, $links) +{ + foreach ($links as $link => $target) { + //first removing folders to avoid errors if the folder already exists + @rmdir($root . "/" . $link); + //next removing existing symlink in order to update the target + if (is_link($root . "/" . $link)) { + @unlink($root . "/" . $link); + } + if (@symlink($root . "/" . $target, $root . "/" . $link)) { + echo " symlink $root/$target $root/$link\n"; + } else { + printError("Cannot create symlink $root/$target $root/$link."); + } + } +} + +/** + * Prints error message. + * @param string $message message + */ +function printError($message) +{ + echo "\n " . formatMessage("Error. $message", ['fg-red']) . " \n"; +} + +/** + * Returns true if the stream supports colorization. ANSI colors are disabled if not supported by the stream. + * + * - windows without ansicon + * - not tty consoles + * + * @return boolean true if the stream supports ANSI colors, otherwise false. + */ +function ansiColorsSupported() +{ + return DIRECTORY_SEPARATOR === '\\' + ? getenv('ANSICON') !== false || getenv('ConEmuANSI') === 'ON' + : function_exists('posix_isatty') && @posix_isatty(STDOUT); +} + +/** + * Get ANSI code of style. + * @param string $name style name + * @return integer ANSI code of style. + */ +function getStyleCode($name) +{ + $styles = [ + 'bold' => 1, + 'fg-black' => 30, + 'fg-red' => 31, + 'fg-green' => 32, + 'fg-yellow' => 33, + 'fg-blue' => 34, + 'fg-magenta' => 35, + 'fg-cyan' => 36, + 'fg-white' => 37, + 'bg-black' => 40, + 'bg-red' => 41, + 'bg-green' => 42, + 'bg-yellow' => 43, + 'bg-blue' => 44, + 'bg-magenta' => 45, + 'bg-cyan' => 46, + 'bg-white' => 47, + ]; + return $styles[$name]; +} + +/** + * Formats message using styles if STDOUT supports it. + * @param string $message message + * @param string[] $styles styles + * @return string formatted message. + */ +function formatMessage($message, $styles) +{ + if (empty($styles) || !ansiColorsSupported()) { + return $message; + } + + return sprintf("\x1b[%sm", implode(';', array_map('getStyleCode', $styles))) . $message . "\x1b[0m"; +} diff --git a/init.bat b/init.bat new file mode 100644 index 0000000..e50c242 --- /dev/null +++ b/init.bat @@ -0,0 +1,20 @@ +@echo off + +rem ------------------------------------------------------------- +rem Yii command line init script for Windows. +rem +rem @author Qiang Xue +rem @link http://www.yiiframework.com/ +rem @copyright Copyright (c) 2008 Yii Software LLC +rem @license http://www.yiiframework.com/license/ +rem ------------------------------------------------------------- + +@setlocal + +set YII_PATH=%~dp0 + +if "%PHP_COMMAND%" == "" set PHP_COMMAND=php.exe + +"%PHP_COMMAND%" "%YII_PATH%init" %* + +@endlocal diff --git a/requirements.php b/requirements.php new file mode 100644 index 0000000..acc65d8 --- /dev/null +++ b/requirements.php @@ -0,0 +1,132 @@ +Error
    '; + echo '

    The path to yii framework seems to be incorrect.

    '; + echo '

    You need to install Yii framework via composer or adjust the framework path in file ' . basename(__FILE__) . '.

    '; + echo '

    Please refer to the README on how to install Yii.

    '; +} + +require_once $frameworkPath . '/requirements/YiiRequirementChecker.php'; +$requirementsChecker = new YiiRequirementChecker(); + +$gdMemo = $imagickMemo = 'Either GD PHP extension with FreeType support or ImageMagick PHP extension with PNG support is required for image CAPTCHA.'; +$gdOK = $imagickOK = false; + +if (extension_loaded('imagick')) { + $imagick = new Imagick(); + $imagickFormats = $imagick->queryFormats('PNG'); + if (in_array('PNG', $imagickFormats)) { + $imagickOK = true; + } else { + $imagickMemo = 'Imagick extension should be installed with PNG support in order to be used for image CAPTCHA.'; + } +} + +if (extension_loaded('gd')) { + $gdInfo = gd_info(); + if (!empty($gdInfo['FreeType Support'])) { + $gdOK = true; + } else { + $gdMemo = 'GD extension should be installed with FreeType support in order to be used for image CAPTCHA.'; + } +} + +/** + * Adjust requirements according to your application specifics. + */ +$requirements = array( + // Database : + array( + 'name' => 'PDO extension', + 'mandatory' => true, + 'condition' => extension_loaded('pdo'), + 'by' => 'All DB-related classes', + ), + array( + 'name' => 'PDO SQLite extension', + 'mandatory' => false, + 'condition' => extension_loaded('pdo_sqlite'), + 'by' => 'All DB-related classes', + 'memo' => 'Required for SQLite database.', + ), + array( + 'name' => 'PDO MySQL extension', + 'mandatory' => false, + 'condition' => extension_loaded('pdo_mysql'), + 'by' => 'All DB-related classes', + 'memo' => 'Required for MySQL database.', + ), + array( + 'name' => 'PDO PostgreSQL extension', + 'mandatory' => false, + 'condition' => extension_loaded('pdo_pgsql'), + 'by' => 'All DB-related classes', + 'memo' => 'Required for PostgreSQL database.', + ), + // Cache : + array( + 'name' => 'Memcache extension', + 'mandatory' => false, + 'condition' => extension_loaded('memcache') || extension_loaded('memcached'), + 'by' => 'MemCache', + 'memo' => extension_loaded('memcached') ? 'To use memcached set MemCache::useMemcached to true.' : '' + ), + array( + 'name' => 'APC extension', + 'mandatory' => false, + 'condition' => extension_loaded('apc'), + 'by' => 'ApcCache', + ), + // CAPTCHA: + array( + 'name' => 'GD PHP extension with FreeType support', + 'mandatory' => false, + 'condition' => $gdOK, + 'by' => 'Captcha', + 'memo' => $gdMemo, + ), + array( + 'name' => 'ImageMagick PHP extension with PNG support', + 'mandatory' => false, + 'condition' => $imagickOK, + 'by' => 'Captcha', + 'memo' => $imagickMemo, + ), + // PHP ini : + 'phpExposePhp' => array( + 'name' => 'Expose PHP', + 'mandatory' => false, + 'condition' => $requirementsChecker->checkPhpIniOff("expose_php"), + 'by' => 'Security reasons', + 'memo' => '"expose_php" should be disabled at php.ini', + ), + 'phpAllowUrlInclude' => array( + 'name' => 'PHP allow url include', + 'mandatory' => false, + 'condition' => $requirementsChecker->checkPhpIniOff("allow_url_include"), + 'by' => 'Security reasons', + 'memo' => '"allow_url_include" should be disabled at php.ini', + ), + 'phpSmtp' => array( + 'name' => 'PHP mail SMTP', + 'mandatory' => false, + 'condition' => strlen(ini_get('SMTP')) > 0, + 'by' => 'Email sending', + 'memo' => 'PHP mail SMTP server required', + ), +); +$requirementsChecker->checkYii()->check($requirements)->render(); diff --git a/static/cache/posts/368_287_10.jpg b/static/cache/posts/368_287_10.jpg new file mode 100644 index 0000000..6a25ebf Binary files /dev/null and b/static/cache/posts/368_287_10.jpg differ diff --git a/static/cache/posts/368_287_11.jpg b/static/cache/posts/368_287_11.jpg new file mode 100644 index 0000000..3d34b0c Binary files /dev/null and b/static/cache/posts/368_287_11.jpg differ diff --git a/static/cache/posts/368_287_13.jpg b/static/cache/posts/368_287_13.jpg new file mode 100644 index 0000000..35db9ef Binary files /dev/null and b/static/cache/posts/368_287_13.jpg differ diff --git a/static/cache/posts/368_287_15.jpg b/static/cache/posts/368_287_15.jpg new file mode 100644 index 0000000..2b52a45 Binary files /dev/null and b/static/cache/posts/368_287_15.jpg differ diff --git a/static/cache/posts/368_287_16.jpg b/static/cache/posts/368_287_16.jpg new file mode 100644 index 0000000..21cd877 Binary files /dev/null and b/static/cache/posts/368_287_16.jpg differ diff --git a/static/cache/posts/368_287_4.jpg b/static/cache/posts/368_287_4.jpg new file mode 100644 index 0000000..d3d1568 Binary files /dev/null and b/static/cache/posts/368_287_4.jpg differ diff --git a/static/cache/posts/368_287_5.jpg b/static/cache/posts/368_287_5.jpg new file mode 100644 index 0000000..b62a5b4 Binary files /dev/null and b/static/cache/posts/368_287_5.jpg differ diff --git a/static/cache/posts/368_287_6.jpg b/static/cache/posts/368_287_6.jpg new file mode 100644 index 0000000..aca939c Binary files /dev/null and b/static/cache/posts/368_287_6.jpg differ diff --git a/static/cache/posts/368_287_7.jpg b/static/cache/posts/368_287_7.jpg new file mode 100644 index 0000000..1c757d7 Binary files /dev/null and b/static/cache/posts/368_287_7.jpg differ diff --git a/static/cache/posts/368_287_8.jpg b/static/cache/posts/368_287_8.jpg new file mode 100644 index 0000000..24f380d Binary files /dev/null and b/static/cache/posts/368_287_8.jpg differ diff --git a/static/cache/posts/368_287_9.jpg b/static/cache/posts/368_287_9.jpg new file mode 100644 index 0000000..b0c23fd Binary files /dev/null and b/static/cache/posts/368_287_9.jpg differ diff --git a/static/cache/posts/370_325_10.jpg b/static/cache/posts/370_325_10.jpg new file mode 100644 index 0000000..c5713d2 Binary files /dev/null and b/static/cache/posts/370_325_10.jpg differ diff --git a/static/cache/posts/370_325_11.jpg b/static/cache/posts/370_325_11.jpg new file mode 100644 index 0000000..8a44d5f Binary files /dev/null and b/static/cache/posts/370_325_11.jpg differ diff --git a/static/cache/posts/370_325_13.jpg b/static/cache/posts/370_325_13.jpg new file mode 100644 index 0000000..1ad1732 Binary files /dev/null and b/static/cache/posts/370_325_13.jpg differ diff --git a/static/cache/posts/370_325_15.jpg b/static/cache/posts/370_325_15.jpg new file mode 100644 index 0000000..ea82e03 Binary files /dev/null and b/static/cache/posts/370_325_15.jpg differ diff --git a/static/cache/posts/370_325_16.jpg b/static/cache/posts/370_325_16.jpg new file mode 100644 index 0000000..268a1ea Binary files /dev/null and b/static/cache/posts/370_325_16.jpg differ diff --git a/static/cache/posts/370_325_4.jpg b/static/cache/posts/370_325_4.jpg new file mode 100644 index 0000000..c48033c Binary files /dev/null and b/static/cache/posts/370_325_4.jpg differ diff --git a/static/cache/posts/370_325_5.jpg b/static/cache/posts/370_325_5.jpg new file mode 100644 index 0000000..03cc340 Binary files /dev/null and b/static/cache/posts/370_325_5.jpg differ diff --git a/static/cache/posts/370_325_6.jpg b/static/cache/posts/370_325_6.jpg new file mode 100644 index 0000000..eb3f70e Binary files /dev/null and b/static/cache/posts/370_325_6.jpg differ diff --git a/static/cache/posts/370_325_7.jpg b/static/cache/posts/370_325_7.jpg new file mode 100644 index 0000000..258a21e Binary files /dev/null and b/static/cache/posts/370_325_7.jpg differ diff --git a/static/cache/posts/370_325_8.jpg b/static/cache/posts/370_325_8.jpg new file mode 100644 index 0000000..cfdabed Binary files /dev/null and b/static/cache/posts/370_325_8.jpg differ diff --git a/static/cache/posts/370_325_9.jpg b/static/cache/posts/370_325_9.jpg new file mode 100644 index 0000000..f4c1b74 Binary files /dev/null and b/static/cache/posts/370_325_9.jpg differ diff --git a/static/cache/posts/683_407_10.jpg b/static/cache/posts/683_407_10.jpg new file mode 100644 index 0000000..1f172a0 Binary files /dev/null and b/static/cache/posts/683_407_10.jpg differ diff --git a/static/cache/posts/683_407_13.jpg b/static/cache/posts/683_407_13.jpg new file mode 100644 index 0000000..1447a10 Binary files /dev/null and b/static/cache/posts/683_407_13.jpg differ diff --git a/static/cache/posts/683_407_4.jpg b/static/cache/posts/683_407_4.jpg new file mode 100644 index 0000000..42fcd82 Binary files /dev/null and b/static/cache/posts/683_407_4.jpg differ diff --git a/static/cache/posts/683_407_5.jpg b/static/cache/posts/683_407_5.jpg new file mode 100644 index 0000000..1c01fb9 Binary files /dev/null and b/static/cache/posts/683_407_5.jpg differ diff --git a/static/cache/posts/683_407_6.jpg b/static/cache/posts/683_407_6.jpg new file mode 100644 index 0000000..8dd85d3 Binary files /dev/null and b/static/cache/posts/683_407_6.jpg differ diff --git a/static/cache/posts/683_407_7.jpg b/static/cache/posts/683_407_7.jpg new file mode 100644 index 0000000..6413b23 Binary files /dev/null and b/static/cache/posts/683_407_7.jpg differ diff --git a/static/cache/posts/683_407_8.jpg b/static/cache/posts/683_407_8.jpg new file mode 100644 index 0000000..3f0a3d6 Binary files /dev/null and b/static/cache/posts/683_407_8.jpg differ diff --git a/static/cache/posts/683_407_9.jpg b/static/cache/posts/683_407_9.jpg new file mode 100644 index 0000000..37247b5 Binary files /dev/null and b/static/cache/posts/683_407_9.jpg differ diff --git a/static/cache/posts/94_94_10.jpg b/static/cache/posts/94_94_10.jpg new file mode 100644 index 0000000..34f26c8 Binary files /dev/null and b/static/cache/posts/94_94_10.jpg differ diff --git a/static/cache/posts/94_94_11.jpg b/static/cache/posts/94_94_11.jpg new file mode 100644 index 0000000..83332f5 Binary files /dev/null and b/static/cache/posts/94_94_11.jpg differ diff --git a/static/cache/posts/94_94_13.jpg b/static/cache/posts/94_94_13.jpg new file mode 100644 index 0000000..c633e0c Binary files /dev/null and b/static/cache/posts/94_94_13.jpg differ diff --git a/static/cache/posts/94_94_15.jpg b/static/cache/posts/94_94_15.jpg new file mode 100644 index 0000000..e999809 Binary files /dev/null and b/static/cache/posts/94_94_15.jpg differ diff --git a/static/cache/posts/94_94_16.jpg b/static/cache/posts/94_94_16.jpg new file mode 100644 index 0000000..06513c4 Binary files /dev/null and b/static/cache/posts/94_94_16.jpg differ diff --git a/static/cache/posts/94_94_4.jpg b/static/cache/posts/94_94_4.jpg new file mode 100644 index 0000000..7df7123 Binary files /dev/null and b/static/cache/posts/94_94_4.jpg differ diff --git a/static/cache/posts/94_94_5.jpg b/static/cache/posts/94_94_5.jpg new file mode 100644 index 0000000..55e9fc8 Binary files /dev/null and b/static/cache/posts/94_94_5.jpg differ diff --git a/static/cache/posts/94_94_6.jpg b/static/cache/posts/94_94_6.jpg new file mode 100644 index 0000000..d74dfee Binary files /dev/null and b/static/cache/posts/94_94_6.jpg differ diff --git a/static/cache/posts/94_94_7.jpg b/static/cache/posts/94_94_7.jpg new file mode 100644 index 0000000..b77a56e Binary files /dev/null and b/static/cache/posts/94_94_7.jpg differ diff --git a/static/cache/posts/94_94_8.jpg b/static/cache/posts/94_94_8.jpg new file mode 100644 index 0000000..61aae0a Binary files /dev/null and b/static/cache/posts/94_94_8.jpg differ diff --git a/static/cache/posts/94_94_9.jpg b/static/cache/posts/94_94_9.jpg new file mode 100644 index 0000000..b357313 Binary files /dev/null and b/static/cache/posts/94_94_9.jpg differ diff --git a/static/cache/posts/admin_10.jpg b/static/cache/posts/admin_10.jpg new file mode 100644 index 0000000..7f3b903 Binary files /dev/null and b/static/cache/posts/admin_10.jpg differ diff --git a/static/cache/posts/admin_11.jpg b/static/cache/posts/admin_11.jpg new file mode 100644 index 0000000..ee24df0 Binary files /dev/null and b/static/cache/posts/admin_11.jpg differ diff --git a/static/cache/posts/admin_13.jpg b/static/cache/posts/admin_13.jpg new file mode 100644 index 0000000..465c01d Binary files /dev/null and b/static/cache/posts/admin_13.jpg differ diff --git a/static/cache/posts/admin_15.jpg b/static/cache/posts/admin_15.jpg new file mode 100644 index 0000000..27eeace Binary files /dev/null and b/static/cache/posts/admin_15.jpg differ diff --git a/static/cache/posts/admin_16.jpg b/static/cache/posts/admin_16.jpg new file mode 100644 index 0000000..11c19fc Binary files /dev/null and b/static/cache/posts/admin_16.jpg differ diff --git a/static/cache/posts/admin_4.jpg b/static/cache/posts/admin_4.jpg new file mode 100644 index 0000000..78b9a9c Binary files /dev/null and b/static/cache/posts/admin_4.jpg differ diff --git a/static/cache/posts/admin_5.jpg b/static/cache/posts/admin_5.jpg new file mode 100644 index 0000000..4650185 Binary files /dev/null and b/static/cache/posts/admin_5.jpg differ diff --git a/static/cache/posts/admin_6.jpg b/static/cache/posts/admin_6.jpg new file mode 100644 index 0000000..8879745 Binary files /dev/null and b/static/cache/posts/admin_6.jpg differ diff --git a/static/cache/posts/admin_7.jpg b/static/cache/posts/admin_7.jpg new file mode 100644 index 0000000..576a785 Binary files /dev/null and b/static/cache/posts/admin_7.jpg differ diff --git a/static/cache/posts/admin_8.jpg b/static/cache/posts/admin_8.jpg new file mode 100644 index 0000000..040cd02 Binary files /dev/null and b/static/cache/posts/admin_8.jpg differ diff --git a/static/cache/posts/admin_9.jpg b/static/cache/posts/admin_9.jpg new file mode 100644 index 0000000..6c2e0a0 Binary files /dev/null and b/static/cache/posts/admin_9.jpg differ diff --git a/static/cache/posts/home_slider_10.jpg b/static/cache/posts/home_slider_10.jpg new file mode 100644 index 0000000..7029e5f Binary files /dev/null and b/static/cache/posts/home_slider_10.jpg differ diff --git a/static/cache/posts/home_slider_11.jpg b/static/cache/posts/home_slider_11.jpg new file mode 100644 index 0000000..b432d30 Binary files /dev/null and b/static/cache/posts/home_slider_11.jpg differ diff --git a/static/cache/posts/home_slider_13.jpg b/static/cache/posts/home_slider_13.jpg new file mode 100644 index 0000000..b992af5 Binary files /dev/null and b/static/cache/posts/home_slider_13.jpg differ diff --git a/static/cache/posts/home_slider_15.jpg b/static/cache/posts/home_slider_15.jpg new file mode 100644 index 0000000..5c1006e Binary files /dev/null and b/static/cache/posts/home_slider_15.jpg differ diff --git a/static/cache/posts/home_slider_16.jpg b/static/cache/posts/home_slider_16.jpg new file mode 100644 index 0000000..d64eeba Binary files /dev/null and b/static/cache/posts/home_slider_16.jpg differ diff --git a/static/cache/posts/home_slider_4.jpg b/static/cache/posts/home_slider_4.jpg new file mode 100644 index 0000000..be4a626 Binary files /dev/null and b/static/cache/posts/home_slider_4.jpg differ diff --git a/static/cache/posts/home_slider_5.jpg b/static/cache/posts/home_slider_5.jpg new file mode 100644 index 0000000..6d75939 Binary files /dev/null and b/static/cache/posts/home_slider_5.jpg differ diff --git a/static/cache/posts/home_slider_6.jpg b/static/cache/posts/home_slider_6.jpg new file mode 100644 index 0000000..f1cd2e0 Binary files /dev/null and b/static/cache/posts/home_slider_6.jpg differ diff --git a/static/cache/posts/home_slider_7.jpg b/static/cache/posts/home_slider_7.jpg new file mode 100644 index 0000000..8ae69f6 Binary files /dev/null and b/static/cache/posts/home_slider_7.jpg differ diff --git a/static/cache/posts/home_slider_8.jpg b/static/cache/posts/home_slider_8.jpg new file mode 100644 index 0000000..2200316 Binary files /dev/null and b/static/cache/posts/home_slider_8.jpg differ diff --git a/static/cache/posts/home_slider_9.jpg b/static/cache/posts/home_slider_9.jpg new file mode 100644 index 0000000..f3d282e Binary files /dev/null and b/static/cache/posts/home_slider_9.jpg differ diff --git a/static/cache/posts/list_10.jpg b/static/cache/posts/list_10.jpg new file mode 100644 index 0000000..68e0553 Binary files /dev/null and b/static/cache/posts/list_10.jpg differ diff --git a/static/cache/posts/list_11.jpg b/static/cache/posts/list_11.jpg new file mode 100644 index 0000000..2ddc87b Binary files /dev/null and b/static/cache/posts/list_11.jpg differ diff --git a/static/cache/posts/list_13.jpg b/static/cache/posts/list_13.jpg new file mode 100644 index 0000000..75e9bf5 Binary files /dev/null and b/static/cache/posts/list_13.jpg differ diff --git a/static/cache/posts/list_15.jpg b/static/cache/posts/list_15.jpg new file mode 100644 index 0000000..dd0399e Binary files /dev/null and b/static/cache/posts/list_15.jpg differ diff --git a/static/cache/posts/list_16.jpg b/static/cache/posts/list_16.jpg new file mode 100644 index 0000000..1346e9d Binary files /dev/null and b/static/cache/posts/list_16.jpg differ diff --git a/static/cache/posts/list_4.jpg b/static/cache/posts/list_4.jpg new file mode 100644 index 0000000..e502806 Binary files /dev/null and b/static/cache/posts/list_4.jpg differ diff --git a/static/cache/posts/list_5.jpg b/static/cache/posts/list_5.jpg new file mode 100644 index 0000000..47c8de1 Binary files /dev/null and b/static/cache/posts/list_5.jpg differ diff --git a/static/cache/posts/list_6.jpg b/static/cache/posts/list_6.jpg new file mode 100644 index 0000000..f72f7bd Binary files /dev/null and b/static/cache/posts/list_6.jpg differ diff --git a/static/cache/posts/list_7.jpg b/static/cache/posts/list_7.jpg new file mode 100644 index 0000000..74d012a Binary files /dev/null and b/static/cache/posts/list_7.jpg differ diff --git a/static/cache/posts/list_8.jpg b/static/cache/posts/list_8.jpg new file mode 100644 index 0000000..e12aa84 Binary files /dev/null and b/static/cache/posts/list_8.jpg differ diff --git a/static/cache/posts/list_9.jpg b/static/cache/posts/list_9.jpg new file mode 100644 index 0000000..c62b311 Binary files /dev/null and b/static/cache/posts/list_9.jpg differ diff --git a/static/cache/posts/origin_10.jpg b/static/cache/posts/origin_10.jpg new file mode 100644 index 0000000..1aa6b86 Binary files /dev/null and b/static/cache/posts/origin_10.jpg differ diff --git a/static/cache/posts/origin_11.jpg b/static/cache/posts/origin_11.jpg new file mode 100644 index 0000000..840d894 Binary files /dev/null and b/static/cache/posts/origin_11.jpg differ diff --git a/static/cache/posts/origin_13.jpg b/static/cache/posts/origin_13.jpg new file mode 100644 index 0000000..507768d Binary files /dev/null and b/static/cache/posts/origin_13.jpg differ diff --git a/static/cache/posts/origin_15.jpg b/static/cache/posts/origin_15.jpg new file mode 100644 index 0000000..bccbd67 Binary files /dev/null and b/static/cache/posts/origin_15.jpg differ diff --git a/static/cache/posts/origin_16.jpg b/static/cache/posts/origin_16.jpg new file mode 100644 index 0000000..118fbd0 Binary files /dev/null and b/static/cache/posts/origin_16.jpg differ diff --git a/static/cache/posts/origin_4.jpg b/static/cache/posts/origin_4.jpg new file mode 100644 index 0000000..0c02ac7 Binary files /dev/null and b/static/cache/posts/origin_4.jpg differ diff --git a/static/cache/posts/origin_5.jpg b/static/cache/posts/origin_5.jpg new file mode 100644 index 0000000..311bc78 Binary files /dev/null and b/static/cache/posts/origin_5.jpg differ diff --git a/static/cache/posts/origin_6.jpg b/static/cache/posts/origin_6.jpg new file mode 100644 index 0000000..b65e69c Binary files /dev/null and b/static/cache/posts/origin_6.jpg differ diff --git a/static/cache/posts/origin_7.jpg b/static/cache/posts/origin_7.jpg new file mode 100644 index 0000000..55d4255 Binary files /dev/null and b/static/cache/posts/origin_7.jpg differ diff --git a/static/cache/posts/origin_8.jpg b/static/cache/posts/origin_8.jpg new file mode 100644 index 0000000..3cff8f7 Binary files /dev/null and b/static/cache/posts/origin_8.jpg differ diff --git a/static/cache/posts/origin_9.jpg b/static/cache/posts/origin_9.jpg new file mode 100644 index 0000000..6f6b9db Binary files /dev/null and b/static/cache/posts/origin_9.jpg differ diff --git a/static/cache/posts/thumb_10.jpg b/static/cache/posts/thumb_10.jpg new file mode 100644 index 0000000..9e779ec Binary files /dev/null and b/static/cache/posts/thumb_10.jpg differ diff --git a/static/cache/posts/thumb_11.jpg b/static/cache/posts/thumb_11.jpg new file mode 100644 index 0000000..6fda2fd Binary files /dev/null and b/static/cache/posts/thumb_11.jpg differ diff --git a/static/cache/posts/thumb_13.jpg b/static/cache/posts/thumb_13.jpg new file mode 100644 index 0000000..2252dc0 Binary files /dev/null and b/static/cache/posts/thumb_13.jpg differ diff --git a/static/cache/posts/thumb_15.jpg b/static/cache/posts/thumb_15.jpg new file mode 100644 index 0000000..dadf035 Binary files /dev/null and b/static/cache/posts/thumb_15.jpg differ diff --git a/static/cache/posts/thumb_16.jpg b/static/cache/posts/thumb_16.jpg new file mode 100644 index 0000000..d1759d5 Binary files /dev/null and b/static/cache/posts/thumb_16.jpg differ diff --git a/static/cache/posts/thumb_4.jpg b/static/cache/posts/thumb_4.jpg new file mode 100644 index 0000000..945c9d9 Binary files /dev/null and b/static/cache/posts/thumb_4.jpg differ diff --git a/static/cache/posts/thumb_5.jpg b/static/cache/posts/thumb_5.jpg new file mode 100644 index 0000000..b59078c Binary files /dev/null and b/static/cache/posts/thumb_5.jpg differ diff --git a/static/cache/posts/thumb_6.jpg b/static/cache/posts/thumb_6.jpg new file mode 100644 index 0000000..79d517d Binary files /dev/null and b/static/cache/posts/thumb_6.jpg differ diff --git a/static/cache/posts/thumb_7.jpg b/static/cache/posts/thumb_7.jpg new file mode 100644 index 0000000..0b25c25 Binary files /dev/null and b/static/cache/posts/thumb_7.jpg differ diff --git a/static/cache/posts/thumb_8.jpg b/static/cache/posts/thumb_8.jpg new file mode 100644 index 0000000..73b836b Binary files /dev/null and b/static/cache/posts/thumb_8.jpg differ diff --git a/static/cache/posts/thumb_9.jpg b/static/cache/posts/thumb_9.jpg new file mode 100644 index 0000000..f9e65f7 Binary files /dev/null and b/static/cache/posts/thumb_9.jpg differ diff --git a/static/cache/posts/thumb_gallery_view_10.jpg b/static/cache/posts/thumb_gallery_view_10.jpg new file mode 100644 index 0000000..85a8bd9 Binary files /dev/null and b/static/cache/posts/thumb_gallery_view_10.jpg differ diff --git a/static/cache/posts/thumb_gallery_view_11.jpg b/static/cache/posts/thumb_gallery_view_11.jpg new file mode 100644 index 0000000..84dc7d3 Binary files /dev/null and b/static/cache/posts/thumb_gallery_view_11.jpg differ diff --git a/static/cache/posts/thumb_gallery_view_13.jpg b/static/cache/posts/thumb_gallery_view_13.jpg new file mode 100644 index 0000000..aff80ed Binary files /dev/null and b/static/cache/posts/thumb_gallery_view_13.jpg differ diff --git a/static/cache/posts/thumb_gallery_view_15.jpg b/static/cache/posts/thumb_gallery_view_15.jpg new file mode 100644 index 0000000..6d78bde Binary files /dev/null and b/static/cache/posts/thumb_gallery_view_15.jpg differ diff --git a/static/cache/posts/thumb_gallery_view_16.jpg b/static/cache/posts/thumb_gallery_view_16.jpg new file mode 100644 index 0000000..28d11c0 Binary files /dev/null and b/static/cache/posts/thumb_gallery_view_16.jpg differ diff --git a/static/cache/posts/thumb_gallery_view_4.jpg b/static/cache/posts/thumb_gallery_view_4.jpg new file mode 100644 index 0000000..80ca301 Binary files /dev/null and b/static/cache/posts/thumb_gallery_view_4.jpg differ diff --git a/static/cache/posts/thumb_gallery_view_5.jpg b/static/cache/posts/thumb_gallery_view_5.jpg new file mode 100644 index 0000000..2c2097b Binary files /dev/null and b/static/cache/posts/thumb_gallery_view_5.jpg differ diff --git a/static/cache/posts/thumb_gallery_view_6.jpg b/static/cache/posts/thumb_gallery_view_6.jpg new file mode 100644 index 0000000..76f2a4a Binary files /dev/null and b/static/cache/posts/thumb_gallery_view_6.jpg differ diff --git a/static/cache/posts/thumb_gallery_view_7.jpg b/static/cache/posts/thumb_gallery_view_7.jpg new file mode 100644 index 0000000..5e96417 Binary files /dev/null and b/static/cache/posts/thumb_gallery_view_7.jpg differ diff --git a/static/cache/posts/thumb_gallery_view_8.jpg b/static/cache/posts/thumb_gallery_view_8.jpg new file mode 100644 index 0000000..96820b8 Binary files /dev/null and b/static/cache/posts/thumb_gallery_view_8.jpg differ diff --git a/static/cache/posts/thumb_gallery_view_9.jpg b/static/cache/posts/thumb_gallery_view_9.jpg new file mode 100644 index 0000000..e5610f1 Binary files /dev/null and b/static/cache/posts/thumb_gallery_view_9.jpg differ diff --git a/static/cache/slider/1920_671_1.jpg b/static/cache/slider/1920_671_1.jpg new file mode 100644 index 0000000..f2eccd2 Binary files /dev/null and b/static/cache/slider/1920_671_1.jpg differ diff --git a/static/cache/slider/1920_671_2.jpg b/static/cache/slider/1920_671_2.jpg new file mode 100644 index 0000000..3c11e1e Binary files /dev/null and b/static/cache/slider/1920_671_2.jpg differ diff --git a/static/cache/slider/admin_1.jpg b/static/cache/slider/admin_1.jpg new file mode 100644 index 0000000..1b7e1d7 Binary files /dev/null and b/static/cache/slider/admin_1.jpg differ diff --git a/static/cache/slider/admin_2.jpg b/static/cache/slider/admin_2.jpg new file mode 100644 index 0000000..d1c33a3 Binary files /dev/null and b/static/cache/slider/admin_2.jpg differ diff --git a/static/cache/slider/origin_1.jpg b/static/cache/slider/origin_1.jpg new file mode 100644 index 0000000..4d648b0 Binary files /dev/null and b/static/cache/slider/origin_1.jpg differ diff --git a/static/cache/slider/origin_2.jpg b/static/cache/slider/origin_2.jpg new file mode 100644 index 0000000..132310c Binary files /dev/null and b/static/cache/slider/origin_2.jpg differ diff --git a/static/cache/slider/thumb_1.jpg b/static/cache/slider/thumb_1.jpg new file mode 100644 index 0000000..99a381f Binary files /dev/null and b/static/cache/slider/thumb_1.jpg differ diff --git a/static/cache/slider/thumb_2.jpg b/static/cache/slider/thumb_2.jpg new file mode 100644 index 0000000..f415910 Binary files /dev/null and b/static/cache/slider/thumb_2.jpg differ diff --git a/static/files/bd942d71aa78e54a473ea0ddc2a0d7f6.jpg b/static/files/bd942d71aa78e54a473ea0ddc2a0d7f6.jpg new file mode 100644 index 0000000..fce9c8c Binary files /dev/null and b/static/files/bd942d71aa78e54a473ea0ddc2a0d7f6.jpg differ diff --git a/static/files/treegreebclip4.gif b/static/files/treegreebclip4.gif new file mode 100644 index 0000000..3252de9 Binary files /dev/null and b/static/files/treegreebclip4.gif differ diff --git a/static/origin/posts/10.jpg b/static/origin/posts/10.jpg new file mode 100644 index 0000000..b761a29 Binary files /dev/null and b/static/origin/posts/10.jpg differ diff --git a/static/origin/posts/11.jpg b/static/origin/posts/11.jpg new file mode 100644 index 0000000..4ea6098 Binary files /dev/null and b/static/origin/posts/11.jpg differ diff --git a/static/origin/posts/13.jpg b/static/origin/posts/13.jpg new file mode 100644 index 0000000..dc22b98 Binary files /dev/null and b/static/origin/posts/13.jpg differ diff --git a/static/origin/posts/15.jpg b/static/origin/posts/15.jpg new file mode 100644 index 0000000..755d7f2 Binary files /dev/null and b/static/origin/posts/15.jpg differ diff --git a/static/origin/posts/16.jpg b/static/origin/posts/16.jpg new file mode 100644 index 0000000..7e8cf3a Binary files /dev/null and b/static/origin/posts/16.jpg differ diff --git a/static/origin/posts/4.jpg b/static/origin/posts/4.jpg new file mode 100644 index 0000000..d3fd9f8 Binary files /dev/null and b/static/origin/posts/4.jpg differ diff --git a/static/origin/posts/5.jpg b/static/origin/posts/5.jpg new file mode 100644 index 0000000..8b80996 Binary files /dev/null and b/static/origin/posts/5.jpg differ diff --git a/static/origin/posts/6.jpg b/static/origin/posts/6.jpg new file mode 100644 index 0000000..753341c Binary files /dev/null and b/static/origin/posts/6.jpg differ diff --git a/static/origin/posts/7.jpg b/static/origin/posts/7.jpg new file mode 100644 index 0000000..3c86836 Binary files /dev/null and b/static/origin/posts/7.jpg differ diff --git a/static/origin/posts/8.jpg b/static/origin/posts/8.jpg new file mode 100644 index 0000000..0fd1261 Binary files /dev/null and b/static/origin/posts/8.jpg differ diff --git a/static/origin/posts/9.jpg b/static/origin/posts/9.jpg new file mode 100644 index 0000000..e5f8ae0 Binary files /dev/null and b/static/origin/posts/9.jpg differ diff --git a/static/origin/slider/1.jpg b/static/origin/slider/1.jpg new file mode 100644 index 0000000..f0aaa17 Binary files /dev/null and b/static/origin/slider/1.jpg differ diff --git a/static/origin/slider/2.jpg b/static/origin/slider/2.jpg new file mode 100644 index 0000000..7c8279b Binary files /dev/null and b/static/origin/slider/2.jpg differ diff --git a/static/slider/shutterstock_720211888_luBZw.jpg b/static/slider/shutterstock_720211888_luBZw.jpg new file mode 100644 index 0000000..7c8279b Binary files /dev/null and b/static/slider/shutterstock_720211888_luBZw.jpg differ diff --git a/static/slider/shutterstock_773261143_gb3tD.jpg b/static/slider/shutterstock_773261143_gb3tD.jpg new file mode 100644 index 0000000..f0aaa17 Binary files /dev/null and b/static/slider/shutterstock_773261143_gb3tD.jpg differ diff --git a/static/slider/shutterstock_773261143_h87cc.jpg b/static/slider/shutterstock_773261143_h87cc.jpg new file mode 100644 index 0000000..f0aaa17 Binary files /dev/null and b/static/slider/shutterstock_773261143_h87cc.jpg differ diff --git a/vagrant/config/.gitignore b/vagrant/config/.gitignore new file mode 100644 index 0000000..0685a56 --- /dev/null +++ b/vagrant/config/.gitignore @@ -0,0 +1,2 @@ +# local configuration +vagrant-local.yml \ No newline at end of file diff --git a/vagrant/config/vagrant-local.example.yml b/vagrant/config/vagrant-local.example.yml new file mode 100644 index 0000000..3e1e6e2 --- /dev/null +++ b/vagrant/config/vagrant-local.example.yml @@ -0,0 +1,22 @@ +# Your personal GitHub token +github_token: 87c011e7ff30a9d6218f2e946e4e4b8161bee640 +# Read more: https://github.com/blog/1509-personal-api-tokens +# You can generate it here: https://github.com/settings/tokens + +# Guest OS timezone +timezone: Europe/Moscow + +# Are we need check box updates for every 'vagrant up'? +box_check_update: false + +# Virtual machine name +machine_name: morework.dev + +# Virtual machine IP +ip: 192.168.83.83 + +# Virtual machine CPU cores number +cpus: 1 + +# Virtual machine RAM +memory: 1024 diff --git a/vagrant/nginx/app.conf b/vagrant/nginx/app.conf new file mode 100644 index 0000000..7d94c14 --- /dev/null +++ b/vagrant/nginx/app.conf @@ -0,0 +1,95 @@ +server { + charset utf-8; + client_max_body_size 128M; + sendfile off; + + listen 80; ## listen for ipv4 + #listen [::]:80 default_server ipv6only=on; ## listen for ipv6 + + server_name morework.local; + root /app/frontend/web/; + index index.php; + + access_log /app/vagrant/nginx/log/frontend-access.log; + error_log /app/vagrant/nginx/log/frontend-error.log; + + location / { + # Redirect everything that isn't a real file to index.php + try_files $uri $uri/ /index.php$is_args$args; + } + + # uncomment to avoid processing of calls to non-existing static files by Yii + #location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ { + # try_files $uri =404; + #} + #error_page 404 /404.html; + + location ~ \.php$ { + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + #fastcgi_pass 127.0.0.1:9000; + fastcgi_pass unix:/var/run/php/php7.1-fpm.sock; + try_files $uri =404; + } + + location ~ /\.(ht|svn|git) { + deny all; + } +} + +server { + charset utf-8; + client_max_body_size 128M; + sendfile off; + + listen 80; ## listen for ipv4 + #listen [::]:80 default_server ipv6only=on; ## listen for ipv6 + + server_name admin.morework.local; + root /app/backend/web/; + index index.php; + + access_log /app/vagrant/nginx/log/backend-access.log; + error_log /app/vagrant/nginx/log/backend-error.log; + + location / { + # Redirect everything that isn't a real file to index.php + try_files $uri $uri/ /index.php$is_args$args; + } + + # uncomment to avoid processing of calls to non-existing static files by Yii + #location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ { + # try_files $uri =404; + #} + #error_page 404 /404.html; + + location ~ \.php$ { + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + #fastcgi_pass 127.0.0.1:9000; + fastcgi_pass unix:/var/run/php/php7.1-fpm.sock; + try_files $uri =404; + } + + location ~ /\.(ht|svn|git) { + deny all; + } +} + +server { + charset utf-8; + client_max_body_size 128M; + sendfile off; + + listen 80; ## listen for ipv4 + #listen [::]:80 default_server ipv6only=on; ## listen for ipv6 + + server_name static.morework.local; + root /app/static/; + + error_log /app/vagrant/nginx/log/static-error.log; + + location ~ /\.(ht|svn|git) { + deny all; + } +} \ No newline at end of file diff --git a/vagrant/nginx/log/.gitignore b/vagrant/nginx/log/.gitignore new file mode 100644 index 0000000..c15cedd --- /dev/null +++ b/vagrant/nginx/log/.gitignore @@ -0,0 +1,5 @@ +# nginx logs +backend-access.log +backend-error.log +frontend-access.log +frontend-error.log \ No newline at end of file diff --git a/vagrant/nginx/log/static-error.log b/vagrant/nginx/log/static-error.log new file mode 100644 index 0000000..44831b5 --- /dev/null +++ b/vagrant/nginx/log/static-error.log @@ -0,0 +1,16 @@ +2018/01/16 19:15:37 [error] 1912#1912: *160 open() "/app/static/favicon.ico" failed (2: No such file or directory), client: 192.168.83.1, server: static.morework.dev, request: "GET /favicon.ico HTTP/1.1", host: "static.morework.dev" +2018/01/16 19:15:37 [error] 1912#1912: *160 open() "/app/static/favicon.ico" failed (2: No such file or directory), client: 192.168.83.1, server: static.morework.dev, request: "GET /favicon.ico HTTP/1.1", host: "static.morework.dev" +2018/01/27 14:32:59 [error] 1935#1935: *199 open() "/app/static/photos/shutterstock_773261143_gb3tD.jpg" failed (2: No such file or directory), client: 192.168.83.1, server: static.morework.local, request: "GET /photos/shutterstock_773261143_gb3tD.jpg HTTP/1.1", host: "static.morework.local", referrer: "http://admin.morework.local/slider/update?id=1" +2018/01/27 14:32:59 [error] 1935#1935: *199 open() "/app/static/photos/shutterstock_773261143_gb3tD.jpg" failed (2: No such file or directory), client: 192.168.83.1, server: static.morework.local, request: "GET /photos/shutterstock_773261143_gb3tD.jpg HTTP/1.1", host: "static.morework.local", referrer: "http://admin.morework.local/slider/update?id=1" +2018/01/29 01:46:25 [error] 1838#1838: *1499 open() "/app/static/cache/posts/thumb_gallery_view_10.jpg" failed (2: No such file or directory), client: 192.168.83.1, server: static.morework.local, request: "GET /cache/posts/thumb_gallery_view_10.jpg HTTP/1.1", host: "static.morework.local", referrer: "http://admin.morework.local/post/post/view?id=10" +2018/01/29 01:46:37 [error] 1838#1838: *1499 open() "/app/static/cache/posts/thumb_gallery_view_10.jpg" failed (2: No such file or directory), client: 192.168.83.1, server: static.morework.local, request: "GET /cache/posts/thumb_gallery_view_10.jpg HTTP/1.1", host: "static.morework.local", referrer: "http://admin.morework.local/post/post/update?id=10" +2018/01/29 01:46:37 [error] 1838#1838: *1499 open() "/app/static/cache/posts/thumb_gallery_view_10.jpg" failed (2: No such file or directory), client: 192.168.83.1, server: static.morework.local, request: "GET /cache/posts/thumb_gallery_view_10.jpg HTTP/1.1", host: "static.morework.local", referrer: "http://admin.morework.local/post/post/update?id=10" +2018/01/29 01:48:03 [error] 1838#1838: *1499 open() "/app/static/cache/posts/thumb_gallery_view_10.jpg" failed (2: No such file or directory), client: 192.168.83.1, server: static.morework.local, request: "GET /cache/posts/thumb_gallery_view_10.jpg HTTP/1.1", host: "static.morework.local", referrer: "http://admin.morework.local/post/post/view?id=10" +2018/01/29 01:52:07 [error] 1838#1838: *1508 open() "/app/static/cache/posts/thumb_gallery_view_10.jpg" failed (2: No such file or directory), client: 192.168.83.1, server: static.morework.local, request: "GET /cache/posts/thumb_gallery_view_10.jpg HTTP/1.1", host: "static.morework.local", referrer: "http://admin.morework.local/post/post/update?id=10" +2018/01/29 01:52:07 [error] 1838#1838: *1508 open() "/app/static/cache/posts/thumb_gallery_view_10.jpg" failed (2: No such file or directory), client: 192.168.83.1, server: static.morework.local, request: "GET /cache/posts/thumb_gallery_view_10.jpg HTTP/1.1", host: "static.morework.local", referrer: "http://admin.morework.local/post/post/update?id=10" +2018/01/29 01:52:34 [error] 1838#1838: *1508 open() "/app/static/cache/posts/thumb_gallery_view_10.jpg" failed (2: No such file or directory), client: 192.168.83.1, server: static.morework.local, request: "GET /cache/posts/thumb_gallery_view_10.jpg HTTP/1.1", host: "static.morework.local", referrer: "http://admin.morework.local/post/post/view?id=10" +2018/01/29 01:54:38 [error] 1838#1838: *1516 open() "/app/static/cache/posts/thumb_gallery_view_10.jpg" failed (2: No such file or directory), client: 192.168.83.1, server: static.morework.local, request: "GET /cache/posts/thumb_gallery_view_10.jpg HTTP/1.1", host: "static.morework.local", referrer: "http://admin.morework.local/post/post/update?id=10" +2018/01/29 01:54:39 [error] 1838#1838: *1516 open() "/app/static/cache/posts/thumb_gallery_view_10.jpg" failed (2: No such file or directory), client: 192.168.83.1, server: static.morework.local, request: "GET /cache/posts/thumb_gallery_view_10.jpg HTTP/1.1", host: "static.morework.local", referrer: "http://admin.morework.local/post/post/update?id=10" +2018/01/29 02:20:41 [error] 1838#1838: *1551 open() "/app/static/cache/posts/thumb_gallery_view_10.jpg" failed (2: No such file or directory), client: 192.168.83.1, server: static.morework.local, request: "GET /cache/posts/thumb_gallery_view_10.jpg HTTP/1.1", host: "static.morework.local", referrer: "http://admin.morework.local/post/post/view?id=10" +2018/01/29 02:21:04 [error] 1838#1838: *1551 open() "/app/static/cache/posts/thumb_gallery_view_10.jpg" failed (2: No such file or directory), client: 192.168.83.1, server: static.morework.local, request: "GET /cache/posts/thumb_gallery_view_10.jpg HTTP/1.1", host: "static.morework.local", referrer: "http://admin.morework.local/post/post/update?id=10" +2018/01/29 02:21:04 [error] 1838#1838: *1551 open() "/app/static/cache/posts/thumb_gallery_view_10.jpg" failed (2: No such file or directory), client: 192.168.83.1, server: static.morework.local, request: "GET /cache/posts/thumb_gallery_view_10.jpg HTTP/1.1", host: "static.morework.local", referrer: "http://admin.morework.local/post/post/update?id=10" diff --git a/vagrant/provision/always-as-root.sh b/vagrant/provision/always-as-root.sh new file mode 100644 index 0000000..72904c0 --- /dev/null +++ b/vagrant/provision/always-as-root.sh @@ -0,0 +1,21 @@ +#!/usr/bin/env bash + +#== Bash helpers == + +function info { + echo " " + echo "--> $1" + echo " " +} + +#== Provision script == + +info "Provision-script user: `whoami`" + +info "Restart web-stack" +service php7.1-fpm restart +service nginx restart +service mysql restart +service elasticsearch restart +service redis restart +service supervisor restart \ No newline at end of file diff --git a/vagrant/provision/once-as-root.sh b/vagrant/provision/once-as-root.sh new file mode 100644 index 0000000..5c992a0 --- /dev/null +++ b/vagrant/provision/once-as-root.sh @@ -0,0 +1,103 @@ +#!/usr/bin/env bash + +#== Import script args == + +timezone=$(echo "$1") + +#== Bash helpers == + +function info { + echo " " + echo "--> $1" + echo " " +} + +#== Provision script == + +info "Provision-script user: `whoami`" + +export DEBIAN_FRONTEND=noninteractive + +info "Configure timezone" +timedatectl set-timezone ${timezone} --no-ask-password + +info "Prepare root password for MySQL" +debconf-set-selections <<< "mysql-community-server mysql-community-server/root-pass password \"''\"" +debconf-set-selections <<< "mysql-community-server mysql-community-server/re-root-pass password \"''\"" +echo "Done!" + +info "Add PHp 7.1 repository" +add-apt-repository ppa:ondrej/php -y + +info "Add Oracle JDK repository" +add-apt-repository ppa:webupd8team/java -y + +info "Add ElasticSearch sources" +wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | apt-key add - +echo "deb https://artifacts.elastic.co/packages/5.x/apt stable main" | tee -a /etc/apt/sources.list.d/elastic-5.x.list + +info "Update OS software" +apt-get update +apt-get upgrade -y + +info "Install additional software" +#apt-get install -y php7.0-curl php7.0-cli php7.0-intl php7.0-mysqlnd php7.0-gd php7.0-fpm php7.0-mbstring php7.0-xml unzip nginx mysql-server-5.7 php.xdebug +apt-get install -y php7.1-curl php7.1-cli php7.1-intl php7.1-mysqlnd php7.1-gd php7.1-fpm php7.1-mbstring php7.1-xml php7.1-zip unzip nginx mysql-server-5.7 php.xdebug + +info "Install Oracle JDK" +debconf-set-selections <<< "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" +debconf-set-selections <<< "oracle-java8-installer shared/accepted-oracle-license-v1-1 seen true" +apt-get install -y oracle-java8-installer + +info "Install ElasticSearch" +apt-get install -y elasticsearch +sed -i 's/-Xms2g/-Xms64m/' /etc/elasticsearch/jvm.options +sed -i 's/-Xmx2g/-Xmx64m/' /etc/elasticsearch/jvm.options +service elasticsearch restart + +info "Install Redis" +apt-get install -y redis-server + +info "Install Supervisor" +apt-get install -y supervisor + +info "Configure MySQL" +sed -i "s/.*bind-address.*/bind-address = 0.0.0.0/" /etc/mysql/mysql.conf.d/mysqld.cnf +mysql -uroot <<< "CREATE USER 'root'@'%' IDENTIFIED BY ''" +mysql -uroot <<< "GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'" +mysql -uroot <<< "DROP USER 'root'@'localhost'" +mysql -uroot <<< "FLUSH PRIVILEGES" +echo "Done!" + +info "Configure PHP-FPM" +sed -i 's/user = www-data/user = vagrant/g' /etc/php/7.1/fpm/pool.d/www.conf +sed -i 's/group = www-data/group = vagrant/g' /etc/php/7.1/fpm/pool.d/www.conf +sed -i 's/owner = www-data/owner = vagrant/g' /etc/php/7.1/fpm/pool.d/www.conf +cat << EOF > /etc/php/7.1/mods-available/xdebug.ini +zend_extension=xdebug.so +xdebug.remote_enable=1 +xdebug.remote_connect_back=1 +xdebug.remote_port=9000 +xdebug.remote_autostart=1 +EOF +echo "Done!" + +info "Configure NGINX" +sed -i 's/user www-data/user vagrant/g' /etc/nginx/nginx.conf +echo "Done!" + +info "Enabling site configuration" +ln -s /app/vagrant/nginx/app.conf /etc/nginx/sites-enabled/app.conf +echo "Done!" + +info "Initailize databases for MySQL" +mysql -uroot <<< "CREATE DATABASE morework" +mysql -uroot <<< "CREATE DATABASE morework_test" +echo "Done!" + +info "Enabling supervisor processes" +ln -s /app/vagrant/supervisor/queue.conf /etc/supervisor/conf.d/queue.conf +echo "Done!" + +info "Install composer" +curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \ No newline at end of file diff --git a/vagrant/provision/once-as-vagrant.sh b/vagrant/provision/once-as-vagrant.sh new file mode 100644 index 0000000..33a3051 --- /dev/null +++ b/vagrant/provision/once-as-vagrant.sh @@ -0,0 +1,38 @@ +#!/usr/bin/env bash + +#== Import script args == + +github_token=$(echo "$1") + +#== Bash helpers == + +function info { + echo " " + echo "--> $1" + echo " " +} + +#== Provision script == + +info "Provision-script user: `whoami`" + +info "Configure composer" +composer config --global github-oauth.github.com ${github_token} +echo "Done!" + +info "Install project dependencies" +cd /app +composer --no-progress --prefer-dist install + +info "Init project" +./init --env=Development --overwrite=y + +info "Apply migrations" +./yii migrate --interactive=0 +./yii_test migrate --interactive=0 + +info "Create bash-alias 'app' for vagrant user" +echo 'alias app="cd /app"' | tee /home/vagrant/.bash_aliases + +info "Enabling colorized prompt for guest console" +sed -i "s/#force_color_prompt=yes/force_color_prompt=yes/" /home/vagrant/.bashrc diff --git a/yii.bat b/yii.bat new file mode 100644 index 0000000..d516b3a --- /dev/null +++ b/yii.bat @@ -0,0 +1,20 @@ +@echo off + +rem ------------------------------------------------------------- +rem Yii command line bootstrap script for Windows. +rem +rem @author Qiang Xue +rem @link http://www.yiiframework.com/ +rem @copyright Copyright (c) 2008 Yii Software LLC +rem @license http://www.yiiframework.com/license/ +rem ------------------------------------------------------------- + +@setlocal + +set YII_PATH=%~dp0 + +if "%PHP_COMMAND%" == "" set PHP_COMMAND=php.exe + +"%PHP_COMMAND%" "%YII_PATH%yii" %* + +@endlocal