diff --git a/.gitignore b/.gitignore index 337508c..7ec730b 100644 --- a/.gitignore +++ b/.gitignore @@ -36,5 +36,12 @@ Thumbs.db *_key* *password* *apikey* -*token*gitea -gitea.pub +*token*gitea +gitea.pub + +# Local development folders +scripts/ +telegram/ +migration-s3/ +INFO/ +forms/ diff --git a/FORMS_SETUP.md b/FORMS_SETUP.md deleted file mode 100644 index e01b117..0000000 --- a/FORMS_SETUP.md +++ /dev/null @@ -1,109 +0,0 @@ -# Настройка форм обратной связи - -## Копирование PHP файлов на сервер - -```bash -# Скопировать обработчики форм в корень веб-сервера -sudo cp static/send_plan.php /var/www/html/ -sudo cp static/send_ask.php /var/www/html/ - -# Установить права -sudo chown www-data:www-data /var/www/html/send_*.php -sudo chmod 644 /var/www/html/send_*.php -``` - -## Настройка email - -Отредактируйте файлы и замените email получателя: - -```bash -# В файле send_plan.php -sudo nano /var/www/html/send_plan.php -# Найти строку: $to = "info@sleeptrip.ru"; -# Заменить на ваш email - -# В файле send_ask.php -sudo nano /var/www/html/send_ask.php -# Найти строку: $to = "info@sleeptrip.ru"; -# Заменить на ваш email -``` - -## Настройка SMTP (через msmtp) - -```bash -# Установить msmtp -sudo apt update && sudo apt install msmtp msmtp-mta - -# Создать конфигурацию -sudo tee /etc/msmtprc > /dev/null <<'EOF' -defaults -auth on -tls on -tls_trust_file /etc/ssl/certs/ca-certificates.crt -logfile /var/log/msmtp.log - -# Gmail настройки (замените на ваши) -account gmail -host smtp.gmail.com -port 587 -from your-email@gmail.com -user your-email@gmail.com -password your-app-password - -# Установить Gmail как аккаунт по умолчанию -account default : gmail -EOF - -# Установить права -sudo chmod 644 /etc/msmtprc -sudo chown root:mail /etc/msmtprc - -# Создать лог файл -sudo touch /var/log/msmtp.log -sudo chown www-data:adm /var/log/msmtp.log -sudo chmod 664 /var/log/msmtp.log - -# Настроить PHP для использования msmtp -echo "sendmail_path = /usr/bin/msmtp -t" | sudo tee -a /etc/php/*/apache2/php.ini -echo "sendmail_path = /usr/bin/msmtp -t" | sudo tee -a /etc/php/*/cli/php.ini - -# Перезапустить Apache -sudo systemctl restart apache2 -``` - -## Тестирование форм - -1. Откройте страницы `/plan/` и `/ask/` -2. Заполните и отправьте формы -3. Проверьте логи: `sudo tail -f /var/log/msmtp.log` -4. Проверьте почту - -## Альтернатива: использование существующего qform.io - -Если предпочитаете оставить текущие формы qform.io, можно: - -1. Оставить существующие формы как есть -2. PHP обработчики использовать как резервный вариант -3. Настроить webhook'и в qform.io для интеграции с внутренними системами - -## Безопасность - -- PHP файлы включают базовую валидацию -- Email headers защищены от инъекций -- Логируется IP и timestamp -- Рекомендуется добавить CAPTCHA для защиты от спама - -## Интеграция с внутренними системами - -Для интеграции с базой данных или CRM добавьте в PHP файлы: - -```php -// Пример записи в базу данных -try { - $pdo = new PDO('mysql:host=localhost;dbname=travel', $db_user, $db_pass); - $stmt = $pdo->prepare("INSERT INTO requests (name, email, type, destination, created_at) VALUES (?, ?, ?, ?, NOW())"); - $stmt->execute([$name, $email, $trip_type, $destination]); -} catch (PDOException $e) { - error_log("Database error: " . $e->getMessage()); -} -``` \ No newline at end of file diff --git a/README.md b/README.md deleted file mode 100644 index 277a6da..0000000 --- a/README.md +++ /dev/null @@ -1 +0,0 @@ -# ptp \ No newline at end of file diff --git a/TEMPLATE_NEW_POST.md b/TEMPLATE_NEW_POST.md deleted file mode 100644 index 8bf0c94..0000000 --- a/TEMPLATE_NEW_POST.md +++ /dev/null @@ -1,65 +0,0 @@ -+++ -title = 'Название поста' -slug = 'slug-posta' -image = 'images/post-main-photo.jpg' -date = "2025-01-01T00:00:00" -description = 'Краткое описание поста' -disqus_identifier = '999' -+++ - - - - -Введение к посту... - - -![Описание главного фото](/images/post-main-photo.jpg) - -## Основной контент - -Основной текст поста... - - -![Описание фото](/images/additional-photo.jpg) - - -{{< youtube id="VIDEO_ID" >}} - - - ---- - -📍 Локация -{{< rawhtml >}} -
- -
-{{< /rawhtml >}} - -{{< rawhtml >}} -{{< back-to-top >}} -{{< /rawhtml >}} - - -{{< load-photoswipe >}} -{{< gallery caption-effect="fade" >}} -{{< figure src="images/gallery-1.jpg" >}} -{{< figure src="images/gallery-2.jpg" >}} -{{< figure src="images/gallery-3.jpg" >}} -{{< /gallery >}} - -Заключение... - - \ No newline at end of file diff --git a/cleanup-bucket.sh b/cleanup-bucket.sh deleted file mode 100755 index b02ae31..0000000 --- a/cleanup-bucket.sh +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/bash - -# Configuration - ИЗМЕНИТЕ ЭТИ ЗНАЧЕНИЯ на ваши -BUCKET_NAME="test-ptp" - -# Удаление .git файлов и директорий из бакета -echo "Удаление .git файлов из S3 бакета..." -s3cmd del s3://$BUCKET_NAME/.git/ --recursive -s3cmd del s3://$BUCKET_NAME/.github/ --recursive -s3cmd del "s3://$BUCKET_NAME/.gitignore" - -# Удаление всех файлов, содержащих .git в названии -echo "Поиск и удаление всех файлов с .git в названии..." -for file in $(s3cmd ls s3://$BUCKET_NAME/ --recursive | grep -i ".git" | awk '{print $4}'); do - echo "Удаление: $file" - s3cmd del "$file" -done - -# Удаление .env* файлов -echo "Удаление .env файлов из S3 бакета..." -s3cmd del s3://$BUCKET_NAME/.env* --recursive -for file in $(s3cmd ls s3://$BUCKET_NAME/ --recursive | grep -i "\.env" | awk '{print $4}'); do - echo "Удаление: $file" - s3cmd del "$file" -done - -# Проверка config*.toml файлов на наличие чувствительных данных -echo "Проверка config*.toml файлов на наличие чувствительных данных..." -for file in $(s3cmd ls s3://$BUCKET_NAME/ --recursive | grep -i "config.*\.toml" | awk '{print $4}'); do - echo "Файл конфигурации найден: $file" - # Здесь мы предупреждаем о наличии файла, но не удаляем его автоматически - echo "ВНИМАНИЕ: Убедитесь, что $file не содержит секретные данные!" -done - -echo "Очистка завершена! Проверьте бакет, чтобы убедиться, что все критичные файлы удалены." \ No newline at end of file diff --git a/deploy.sh b/deploy.sh deleted file mode 100755 index f0c6794..0000000 --- a/deploy.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/bash - -# Configuration -BUCKET_NAME="your-r2-bucket-name" -DISTRIBUTION_DOMAIN="cyberiya.site" -R2_ENDPOINT="https://.r2.cloudflarestorage.com" -REGION="auto" - -# Build the site -echo "Building site with Hugo..." -hugo --config config-prod.toml - -# Sync to Cloudflare R2 -echo "Deploying to Cloudflare R2..." -# AWS CLI версия -# aws s3 sync ./public/ s3://$BUCKET_NAME/ \ -# --endpoint-url=$R2_ENDPOINT \ -# --region=$REGION \ -# --acl public-read \ -# --exclude ".git/*" \ -# --exclude ".github/*" \ -# --exclude ".gitignore" \ -# --exclude "*.git*" \ -# --delete - -# S3CMD версия -s3cmd sync ./public/ s3://$BUCKET_NAME/ \ - --acl-public \ - --delete-removed \ - --exclude ".git/*" \ - --exclude ".github/*" \ - --exclude ".gitignore" \ - --exclude "*.git*" \ - --exclude ".env*" \ - --exclude "*.env" \ - --exclude "*.env.*" - -# Invalidate Cloudflare cache if needed -echo "Invalidating Cloudflare cache..." -# If you have the Cloudflare API token set up: -# cloudflare-cli purge $DISTRIBUTION_DOMAIN - -echo "Deployment complete! Site available at: https://$DISTRIBUTION_DOMAIN" \ No newline at end of file diff --git a/static/send_ask.php b/static/send_ask.php deleted file mode 100644 index 904cb9b..0000000 --- a/static/send_ask.php +++ /dev/null @@ -1,51 +0,0 @@ - \ No newline at end of file diff --git a/static/send_plan.php b/static/send_plan.php deleted file mode 100644 index 4fc8d1b..0000000 --- a/static/send_plan.php +++ /dev/null @@ -1,61 +0,0 @@ - \ No newline at end of file diff --git a/temp-public/Home.png b/temp-public/Home.png deleted file mode 100644 index ae9c038..0000000 Binary files a/temp-public/Home.png and /dev/null differ diff --git a/temp-public/ask.png b/temp-public/ask.png deleted file mode 100644 index 7d0ddd3..0000000 Binary files a/temp-public/ask.png and /dev/null differ diff --git a/temp-public/assets/css/font-awesome.min.css b/temp-public/assets/css/font-awesome.min.css deleted file mode 100644 index 540440c..0000000 --- a/temp-public/assets/css/font-awesome.min.css +++ /dev/null @@ -1,4 +0,0 @@ -/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/temp-public/assets/fonts/FontAwesome.otf b/temp-public/assets/fonts/FontAwesome.otf deleted file mode 100644 index 401ec0f..0000000 Binary files a/temp-public/assets/fonts/FontAwesome.otf and /dev/null differ diff --git a/temp-public/assets/fonts/fontawesome-webfont.eot b/temp-public/assets/fonts/fontawesome-webfont.eot deleted file mode 100644 index e9f60ca..0000000 Binary files a/temp-public/assets/fonts/fontawesome-webfont.eot and /dev/null differ diff --git a/temp-public/assets/fonts/fontawesome-webfont.svg b/temp-public/assets/fonts/fontawesome-webfont.svg deleted file mode 100644 index 855c845..0000000 --- a/temp-public/assets/fonts/fontawesome-webfont.svg +++ /dev/null @@ -1,2671 +0,0 @@ - - - - -Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 - By ,,, -Copyright Dave Gandy 2016. All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/temp-public/assets/fonts/fontawesome-webfont.ttf b/temp-public/assets/fonts/fontawesome-webfont.ttf deleted file mode 100644 index 35acda2..0000000 Binary files a/temp-public/assets/fonts/fontawesome-webfont.ttf and /dev/null differ diff --git a/temp-public/assets/fonts/fontawesome-webfont.woff b/temp-public/assets/fonts/fontawesome-webfont.woff deleted file mode 100644 index 400014a..0000000 Binary files a/temp-public/assets/fonts/fontawesome-webfont.woff and /dev/null differ diff --git a/temp-public/assets/fonts/fontawesome-webfont.woff2 b/temp-public/assets/fonts/fontawesome-webfont.woff2 deleted file mode 100644 index 4d13fc6..0000000 Binary files a/temp-public/assets/fonts/fontawesome-webfont.woff2 and /dev/null differ diff --git a/temp-public/css/hugo-easy-gallery.css b/temp-public/css/hugo-easy-gallery.css deleted file mode 100644 index d78dfec..0000000 --- a/temp-public/css/hugo-easy-gallery.css +++ /dev/null @@ -1,159 +0,0 @@ -/* -Put this file in /static/css/hugo-easy-gallery.css -Documentation and licence at https://github.com/liwenyip/hugo-easy-gallery/ -*/ - - -/* -Grid Layout Styles -*/ -.gallery { - overflow: hidden; - margin: 10px; - max-width: 768px; -} -.gallery .box { - float: left; - position: relative; - /* Default: 1 tile wide */ - width: 100%; - padding-bottom: 100%; -} -@media only screen and (min-width : 365px) { - /* Tablet view: 2 tiles */ - .gallery .box { - width: 50%; - padding-bottom: 50%; - } -} -@media only screen and (min-width : 480px) { - /* Small desktop / ipad view: 3 tiles */ - .gallery .box { - width: 33.3%; - padding-bottom: 33.3%; /* */ - } -} -@media only screen and (min-width : 9999px) { - /* Medium desktop: 4 tiles */ - .box { - width: 25%; - padding-bottom: 25%; - } -} - -/* -Transition styles -*/ -.gallery.hover-transition figure, -.gallery.hover-effect-zoom .img, -.gallery:not(.caption-effect-appear) figcaption, -.fancy-figure:not(.caption-effect-appear) figcaption { - -webkit-transition: all 0.3s ease-in-out; - -moz-transition: all 0.3s ease-in-out; - -o-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} -/* -figure styles -*/ -figure { - position:relative; /* purely to allow absolution positioning of figcaption */ - overflow: hidden; -} -.gallery figure { - position: absolute; - left: 5px; - right: 5px; - top: 5px; - bottom: 5px; -} -.gallery.hover-effect-grow figure:hover { - transform: scale(1.05); -} -.gallery.hover-effect-shrink figure:hover { - transform: scale(0.95); -} -.gallery.hover-effect-slidedown figure:hover { - transform: translateY(5px); -} -.gallery.hover-effect-slideup figure:hover { - transform: translateY(-5px); -} - -/* -img / a styles -*/ - -.gallery .img { - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - background-size: cover; - background-position: 50% 50%; - background-repeat: no-repeat; -} -.gallery.hover-effect-zoom figure:hover .img { - transform: scale(1.05); -} -.gallery img { - display: none; /* only show the img if not inside a gallery */ -} -figure a { - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; -} - -/* -figcaption styles -*/ -.gallery figcaption, -.fancy-figure figcaption { - position: absolute; - bottom: 0; - left: 0; - right: 0; - background: #000; - color: #FFF; - text-align: center; - font-size: 75%; /* change this if you want bigger text */ - background: rgba(0, 0, 0, 0.5); - opacity: 1; - cursor: pointer; -} -.gallery.caption-position-none figcaption, -.fancy-figure.caption-position-none figcaption { - display: none; -} -.gallery.caption-position-center figcaption, -.fancy-figure.caption-position-center figcaption { - top: 0; - padding: 40% 5px; -} -.gallery.caption-position-bottom figcaption, -.fancy-figure.caption-position-bottom figcaption { - padding: 5px; -} -.gallery.caption-effect-fade figure:not(:hover) figcaption, -.gallery.caption-effect-appear figure:not(:hover) figcaption, -.fancy-figure.caption-effect-fade figure:not(:hover) figcaption, -.fancy-figure.caption-effect-appear figure:not(:hover) figcaption { - background: rgba(0, 0, 0, 0); - opacity: 0; -} -.gallery.caption-effect-slide.caption-position-bottom figure:not(:hover) figcaption, -.fancy-figure.caption-effect-slide.caption-position-bottom figure:not(:hover) figcaption { - margin-bottom: -100%; -} -.gallery.caption-effect-slide.caption-position-center figure:not(:hover) figcaption, -.fancy-figure.caption-effect-slide.caption-position-center figure:not(:hover) figcaption { - top: 100%; -} -figcaption p { - margin: auto; /* override style in theme */ -} - diff --git a/temp-public/css/lite-yt-embed.css b/temp-public/css/lite-yt-embed.css deleted file mode 100644 index c06c23b..0000000 --- a/temp-public/css/lite-yt-embed.css +++ /dev/null @@ -1,86 +0,0 @@ -lite-youtube { - background-color: #000; - position: relative; - display: block; - contain: content; - background-position: center center; - background-size: cover; - cursor: pointer; - max-width: 720px; -} - -/* gradient */ -lite-youtube::before { - content: ''; - display: block; - position: absolute; - top: 0; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==); - background-position: top; - background-repeat: repeat-x; - height: 60px; - padding-bottom: 50px; - width: 100%; - transition: all 0.2s cubic-bezier(0, 0, 0.2, 1); -} - -/* responsive iframe with a 16:9 aspect ratio - thanks https://css-tricks.com/responsive-iframes/ -*/ -lite-youtube::after { - content: ""; - display: block; - padding-bottom: calc(100% / (16 / 9)); -} -lite-youtube > iframe { - width: 100%; - height: 100%; - position: absolute; - top: 0; - left: 0; - border: 0; -} - -/* play button */ -lite-youtube > .lty-playbtn { - display: block; - width: 68px; - height: 48px; - position: absolute; - cursor: pointer; - transform: translate3d(-50%, -50%, 0); - top: 50%; - left: 50%; - z-index: 1; - background-color: transparent; - /* YT's actual play button svg */ - background-image: url('data:image/svg+xml;utf8,'); - filter: grayscale(100%); - transition: filter .1s cubic-bezier(0, 0, 0.2, 1); - border: none; -} - -lite-youtube:hover > .lty-playbtn, -lite-youtube .lty-playbtn:focus { - filter: none; -} - -/* Post-click styles */ -lite-youtube.lyt-activated { - cursor: unset; -} -lite-youtube.lyt-activated::before, -lite-youtube.lyt-activated > .lty-playbtn { - opacity: 0; - pointer-events: none; -} - -.lyt-visually-hidden { - clip: rect(0 0 0 0); - clip-path: inset(50%); - height: 1px; - overflow: hidden; - position: absolute; - white-space: nowrap; - width: 1px; - } diff --git a/temp-public/extra.png b/temp-public/extra.png deleted file mode 100644 index 1bc8e1c..0000000 Binary files a/temp-public/extra.png and /dev/null differ diff --git a/temp-public/gallery.png b/temp-public/gallery.png deleted file mode 100644 index f74fba9..0000000 Binary files a/temp-public/gallery.png and /dev/null differ diff --git a/temp-public/images/Aleksin-20210515-1.jpg b/temp-public/images/Aleksin-20210515-1.jpg deleted file mode 100644 index b3a3a11..0000000 Binary files a/temp-public/images/Aleksin-20210515-1.jpg and /dev/null differ diff --git a/temp-public/images/Aleksin-20210515-2.jpg b/temp-public/images/Aleksin-20210515-2.jpg deleted file mode 100644 index 2e9157c..0000000 Binary files a/temp-public/images/Aleksin-20210515-2.jpg and /dev/null differ diff --git a/temp-public/images/Aleksin-20210515-3.jpg b/temp-public/images/Aleksin-20210515-3.jpg deleted file mode 100644 index 9ffa344..0000000 Binary files a/temp-public/images/Aleksin-20210515-3.jpg and /dev/null differ diff --git a/temp-public/images/Aleksin-20210515-4.jpg b/temp-public/images/Aleksin-20210515-4.jpg deleted file mode 100644 index d3fb16a..0000000 Binary files a/temp-public/images/Aleksin-20210515-4.jpg and /dev/null differ diff --git a/temp-public/images/Aleksin-20210515-5.jpg b/temp-public/images/Aleksin-20210515-5.jpg deleted file mode 100644 index 84f1602..0000000 Binary files a/temp-public/images/Aleksin-20210515-5.jpg and /dev/null differ diff --git a/temp-public/images/Aleksin-20210515-6.jpg b/temp-public/images/Aleksin-20210515-6.jpg deleted file mode 100644 index d36c73d..0000000 Binary files a/temp-public/images/Aleksin-20210515-6.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-1.jpg b/temp-public/images/Altai-20220912-1.jpg deleted file mode 100644 index ccdfbef..0000000 Binary files a/temp-public/images/Altai-20220912-1.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-10.jpg b/temp-public/images/Altai-20220912-10.jpg deleted file mode 100644 index b1ab925..0000000 Binary files a/temp-public/images/Altai-20220912-10.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-12.jpg b/temp-public/images/Altai-20220912-12.jpg deleted file mode 100644 index 990d428..0000000 Binary files a/temp-public/images/Altai-20220912-12.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-13.jpg b/temp-public/images/Altai-20220912-13.jpg deleted file mode 100644 index 13a1b09..0000000 Binary files a/temp-public/images/Altai-20220912-13.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-14.jpg b/temp-public/images/Altai-20220912-14.jpg deleted file mode 100644 index 7cbe398..0000000 Binary files a/temp-public/images/Altai-20220912-14.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-15.jpg b/temp-public/images/Altai-20220912-15.jpg deleted file mode 100644 index db480ae..0000000 Binary files a/temp-public/images/Altai-20220912-15.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-16.jpg b/temp-public/images/Altai-20220912-16.jpg deleted file mode 100644 index 1279284..0000000 Binary files a/temp-public/images/Altai-20220912-16.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-19.jpg b/temp-public/images/Altai-20220912-19.jpg deleted file mode 100644 index c76b690..0000000 Binary files a/temp-public/images/Altai-20220912-19.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-2.jpg b/temp-public/images/Altai-20220912-2.jpg deleted file mode 100644 index ff67a76..0000000 Binary files a/temp-public/images/Altai-20220912-2.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-20.jpg b/temp-public/images/Altai-20220912-20.jpg deleted file mode 100644 index e620f52..0000000 Binary files a/temp-public/images/Altai-20220912-20.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-22.jpg b/temp-public/images/Altai-20220912-22.jpg deleted file mode 100644 index 30b976a..0000000 Binary files a/temp-public/images/Altai-20220912-22.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-24.jpg b/temp-public/images/Altai-20220912-24.jpg deleted file mode 100644 index c162e1f..0000000 Binary files a/temp-public/images/Altai-20220912-24.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-25.jpg b/temp-public/images/Altai-20220912-25.jpg deleted file mode 100644 index dff037c..0000000 Binary files a/temp-public/images/Altai-20220912-25.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-3.jpg b/temp-public/images/Altai-20220912-3.jpg deleted file mode 100644 index c018fcc..0000000 Binary files a/temp-public/images/Altai-20220912-3.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-4.jpg b/temp-public/images/Altai-20220912-4.jpg deleted file mode 100644 index f71afb5..0000000 Binary files a/temp-public/images/Altai-20220912-4.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-5.jpg b/temp-public/images/Altai-20220912-5.jpg deleted file mode 100644 index e0aef37..0000000 Binary files a/temp-public/images/Altai-20220912-5.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-6.jpg b/temp-public/images/Altai-20220912-6.jpg deleted file mode 100644 index 2db5fe6..0000000 Binary files a/temp-public/images/Altai-20220912-6.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-7.jpg b/temp-public/images/Altai-20220912-7.jpg deleted file mode 100644 index 7177cac..0000000 Binary files a/temp-public/images/Altai-20220912-7.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-8.jpg b/temp-public/images/Altai-20220912-8.jpg deleted file mode 100644 index 9c258c3..0000000 Binary files a/temp-public/images/Altai-20220912-8.jpg and /dev/null differ diff --git a/temp-public/images/Altai-20220912-9.jpg b/temp-public/images/Altai-20220912-9.jpg deleted file mode 100644 index 2c53e0d..0000000 Binary files a/temp-public/images/Altai-20220912-9.jpg and /dev/null differ diff --git a/temp-public/images/Apple-20230107-1.jpg b/temp-public/images/Apple-20230107-1.jpg deleted file mode 100644 index 8f90939..0000000 Binary files a/temp-public/images/Apple-20230107-1.jpg and /dev/null differ diff --git a/temp-public/images/Apple-20230107-2.jpg b/temp-public/images/Apple-20230107-2.jpg deleted file mode 100644 index a467589..0000000 Binary files a/temp-public/images/Apple-20230107-2.jpg and /dev/null differ diff --git a/temp-public/images/Apple-20230107-3.jpg b/temp-public/images/Apple-20230107-3.jpg deleted file mode 100644 index a3686e6..0000000 Binary files a/temp-public/images/Apple-20230107-3.jpg and /dev/null differ diff --git a/temp-public/images/Apple-20230107-4.jpg b/temp-public/images/Apple-20230107-4.jpg deleted file mode 100644 index de922e2..0000000 Binary files a/temp-public/images/Apple-20230107-4.jpg and /dev/null differ diff --git a/temp-public/images/Apple-20230107-5.jpg b/temp-public/images/Apple-20230107-5.jpg deleted file mode 100644 index d1f3fe2..0000000 Binary files a/temp-public/images/Apple-20230107-5.jpg and /dev/null differ diff --git a/temp-public/images/Apple-20230107-6.jpg b/temp-public/images/Apple-20230107-6.jpg deleted file mode 100644 index cc9187c..0000000 Binary files a/temp-public/images/Apple-20230107-6.jpg and /dev/null differ diff --git a/temp-public/images/Apple-20230107-7.jpg b/temp-public/images/Apple-20230107-7.jpg deleted file mode 100644 index 0bed0ee..0000000 Binary files a/temp-public/images/Apple-20230107-7.jpg and /dev/null differ diff --git a/temp-public/images/Apple-20230107-8.jpg b/temp-public/images/Apple-20230107-8.jpg deleted file mode 100644 index 86f22a8..0000000 Binary files a/temp-public/images/Apple-20230107-8.jpg and /dev/null differ diff --git a/temp-public/images/Apple-20230107-9.jpg b/temp-public/images/Apple-20230107-9.jpg deleted file mode 100644 index 87ca530..0000000 Binary files a/temp-public/images/Apple-20230107-9.jpg and /dev/null differ diff --git a/temp-public/images/Belayagora-20220806-1.jpg b/temp-public/images/Belayagora-20220806-1.jpg deleted file mode 100644 index 7b28d6e..0000000 Binary files a/temp-public/images/Belayagora-20220806-1.jpg and /dev/null differ diff --git a/temp-public/images/Belayagora-20220806-2.jpg b/temp-public/images/Belayagora-20220806-2.jpg deleted file mode 100644 index 406faa4..0000000 Binary files a/temp-public/images/Belayagora-20220806-2.jpg and /dev/null differ diff --git a/temp-public/images/Belayagora-20220806-3.jpg b/temp-public/images/Belayagora-20220806-3.jpg deleted file mode 100644 index 1316858..0000000 Binary files a/temp-public/images/Belayagora-20220806-3.jpg and /dev/null differ diff --git a/temp-public/images/Belayagora-20220806-4.jpg b/temp-public/images/Belayagora-20220806-4.jpg deleted file mode 100644 index 9997186..0000000 Binary files a/temp-public/images/Belayagora-20220806-4.jpg and /dev/null differ diff --git a/temp-public/images/Belayagora-20220806-5.jpg b/temp-public/images/Belayagora-20220806-5.jpg deleted file mode 100644 index 619fdc8..0000000 Binary files a/temp-public/images/Belayagora-20220806-5.jpg and /dev/null differ diff --git a/temp-public/images/Belayagora-20220806-6.jpg b/temp-public/images/Belayagora-20220806-6.jpg deleted file mode 100644 index b8cafb2..0000000 Binary files a/temp-public/images/Belayagora-20220806-6.jpg and /dev/null differ diff --git a/temp-public/images/Belayagora-20220806-7.jpg b/temp-public/images/Belayagora-20220806-7.jpg deleted file mode 100644 index 4d39166..0000000 Binary files a/temp-public/images/Belayagora-20220806-7.jpg and /dev/null differ diff --git a/temp-public/images/Belayagora-20220806-8.jpg b/temp-public/images/Belayagora-20220806-8.jpg deleted file mode 100644 index 759c23d..0000000 Binary files a/temp-public/images/Belayagora-20220806-8.jpg and /dev/null differ diff --git a/temp-public/images/Belayagora-20220806-9.jpg b/temp-public/images/Belayagora-20220806-9.jpg deleted file mode 100644 index 619fdc8..0000000 Binary files a/temp-public/images/Belayagora-20220806-9.jpg and /dev/null differ diff --git a/temp-public/images/Bezdon-20231119-1.jpg b/temp-public/images/Bezdon-20231119-1.jpg deleted file mode 100644 index e6318d9..0000000 Binary files a/temp-public/images/Bezdon-20231119-1.jpg and /dev/null differ diff --git a/temp-public/images/Bezdon-20231119-2.jpg b/temp-public/images/Bezdon-20231119-2.jpg deleted file mode 100644 index 45904ee..0000000 Binary files a/temp-public/images/Bezdon-20231119-2.jpg and /dev/null differ diff --git a/temp-public/images/Bezdon-20231119-3.jpg b/temp-public/images/Bezdon-20231119-3.jpg deleted file mode 100644 index c9a5c20..0000000 Binary files a/temp-public/images/Bezdon-20231119-3.jpg and /dev/null differ diff --git a/temp-public/images/Bezdon-20231119-4.jpg b/temp-public/images/Bezdon-20231119-4.jpg deleted file mode 100644 index 4566156..0000000 Binary files a/temp-public/images/Bezdon-20231119-4.jpg and /dev/null differ diff --git a/temp-public/images/Bezdon-20231119-5.jpg b/temp-public/images/Bezdon-20231119-5.jpg deleted file mode 100644 index c1ba6f1..0000000 Binary files a/temp-public/images/Bezdon-20231119-5.jpg and /dev/null differ diff --git a/temp-public/images/Bogolub_20240914_1.jpg b/temp-public/images/Bogolub_20240914_1.jpg deleted file mode 100644 index c8d2c89..0000000 Binary files a/temp-public/images/Bogolub_20240914_1.jpg and /dev/null differ diff --git a/temp-public/images/Bogolub_20240914_2.jpg b/temp-public/images/Bogolub_20240914_2.jpg deleted file mode 100644 index b5b3d0d..0000000 Binary files a/temp-public/images/Bogolub_20240914_2.jpg and /dev/null differ diff --git a/temp-public/images/Bogolub_20240914_3.jpg b/temp-public/images/Bogolub_20240914_3.jpg deleted file mode 100644 index 2d4c7c3..0000000 Binary files a/temp-public/images/Bogolub_20240914_3.jpg and /dev/null differ diff --git a/temp-public/images/Breeze-20240316-1.jpg b/temp-public/images/Breeze-20240316-1.jpg deleted file mode 100644 index 1a08b2b..0000000 Binary files a/temp-public/images/Breeze-20240316-1.jpg and /dev/null differ diff --git a/temp-public/images/Breeze-20240316-10.jpg b/temp-public/images/Breeze-20240316-10.jpg deleted file mode 100644 index 11469c8..0000000 Binary files a/temp-public/images/Breeze-20240316-10.jpg and /dev/null differ diff --git a/temp-public/images/Breeze-20240316-11.jpg b/temp-public/images/Breeze-20240316-11.jpg deleted file mode 100644 index db7add2..0000000 Binary files a/temp-public/images/Breeze-20240316-11.jpg and /dev/null differ diff --git a/temp-public/images/Breeze-20240316-2.jpg b/temp-public/images/Breeze-20240316-2.jpg deleted file mode 100644 index 6a270a2..0000000 Binary files a/temp-public/images/Breeze-20240316-2.jpg and /dev/null differ diff --git a/temp-public/images/Breeze-20240316-3.jpg b/temp-public/images/Breeze-20240316-3.jpg deleted file mode 100644 index 76c5420..0000000 Binary files a/temp-public/images/Breeze-20240316-3.jpg and /dev/null differ diff --git a/temp-public/images/Breeze-20240316-4.jpg b/temp-public/images/Breeze-20240316-4.jpg deleted file mode 100644 index cc53d5c..0000000 Binary files a/temp-public/images/Breeze-20240316-4.jpg and /dev/null differ diff --git a/temp-public/images/Breeze-20240316-5.jpg b/temp-public/images/Breeze-20240316-5.jpg deleted file mode 100644 index 56b839f..0000000 Binary files a/temp-public/images/Breeze-20240316-5.jpg and /dev/null differ diff --git a/temp-public/images/Breeze-20240316-6.jpg b/temp-public/images/Breeze-20240316-6.jpg deleted file mode 100644 index 25e7a83..0000000 Binary files a/temp-public/images/Breeze-20240316-6.jpg and /dev/null differ diff --git a/temp-public/images/Breeze-20240316-7.jpg b/temp-public/images/Breeze-20240316-7.jpg deleted file mode 100644 index f0dc3cf..0000000 Binary files a/temp-public/images/Breeze-20240316-7.jpg and /dev/null differ diff --git a/temp-public/images/Breeze-20240316-8.jpg b/temp-public/images/Breeze-20240316-8.jpg deleted file mode 100644 index 2866eb1..0000000 Binary files a/temp-public/images/Breeze-20240316-8.jpg and /dev/null differ diff --git a/temp-public/images/Breeze-20240316-9.jpg b/temp-public/images/Breeze-20240316-9.jpg deleted file mode 100644 index c4fe01f..0000000 Binary files a/temp-public/images/Breeze-20240316-9.jpg and /dev/null differ diff --git a/temp-public/images/Bursol2_20250106_1.jpg b/temp-public/images/Bursol2_20250106_1.jpg deleted file mode 100644 index c1ad29e..0000000 Binary files a/temp-public/images/Bursol2_20250106_1.jpg and /dev/null differ diff --git a/temp-public/images/Bursol2_20250106_4.jpg b/temp-public/images/Bursol2_20250106_4.jpg deleted file mode 100644 index 6845f0b..0000000 Binary files a/temp-public/images/Bursol2_20250106_4.jpg and /dev/null differ diff --git a/temp-public/images/Bursol2_20250106_5.jpg b/temp-public/images/Bursol2_20250106_5.jpg deleted file mode 100644 index 83aee63..0000000 Binary files a/temp-public/images/Bursol2_20250106_5.jpg and /dev/null differ diff --git a/temp-public/images/Bursol2_20250106_6.jpg b/temp-public/images/Bursol2_20250106_6.jpg deleted file mode 100644 index 44be7b8..0000000 Binary files a/temp-public/images/Bursol2_20250106_6.jpg and /dev/null differ diff --git a/temp-public/images/Bursol2_20250106_7.jpg b/temp-public/images/Bursol2_20250106_7.jpg deleted file mode 100644 index 343bfbe..0000000 Binary files a/temp-public/images/Bursol2_20250106_7.jpg and /dev/null differ diff --git a/temp-public/images/Bursol2_20250106_8.jpg b/temp-public/images/Bursol2_20250106_8.jpg deleted file mode 100644 index ca2eebc..0000000 Binary files a/temp-public/images/Bursol2_20250106_8.jpg and /dev/null differ diff --git a/temp-public/images/Bursol_20240923_1.jpg b/temp-public/images/Bursol_20240923_1.jpg deleted file mode 100644 index 163e574..0000000 Binary files a/temp-public/images/Bursol_20240923_1.jpg and /dev/null differ diff --git a/temp-public/images/Bursol_20240923_10.jpg b/temp-public/images/Bursol_20240923_10.jpg deleted file mode 100644 index 0f4cfdb..0000000 Binary files a/temp-public/images/Bursol_20240923_10.jpg and /dev/null differ diff --git a/temp-public/images/Bursol_20240923_11.jpg b/temp-public/images/Bursol_20240923_11.jpg deleted file mode 100644 index b338089..0000000 Binary files a/temp-public/images/Bursol_20240923_11.jpg and /dev/null differ diff --git a/temp-public/images/Bursol_20240923_12.jpg b/temp-public/images/Bursol_20240923_12.jpg deleted file mode 100644 index f367dfc..0000000 Binary files a/temp-public/images/Bursol_20240923_12.jpg and /dev/null differ diff --git a/temp-public/images/Bursol_20240923_13.jpg b/temp-public/images/Bursol_20240923_13.jpg deleted file mode 100644 index 0f10335..0000000 Binary files a/temp-public/images/Bursol_20240923_13.jpg and /dev/null differ diff --git a/temp-public/images/Bursol_20240923_14.jpg b/temp-public/images/Bursol_20240923_14.jpg deleted file mode 100644 index 7b688b7..0000000 Binary files a/temp-public/images/Bursol_20240923_14.jpg and /dev/null differ diff --git a/temp-public/images/Bursol_20240923_15.jpg b/temp-public/images/Bursol_20240923_15.jpg deleted file mode 100644 index 8bf0eb9..0000000 Binary files a/temp-public/images/Bursol_20240923_15.jpg and /dev/null differ diff --git a/temp-public/images/Bursol_20240923_16.jpg b/temp-public/images/Bursol_20240923_16.jpg deleted file mode 100644 index d94a2de..0000000 Binary files a/temp-public/images/Bursol_20240923_16.jpg and /dev/null differ diff --git a/temp-public/images/Bursol_20240923_2.jpg b/temp-public/images/Bursol_20240923_2.jpg deleted file mode 100644 index d548f48..0000000 Binary files a/temp-public/images/Bursol_20240923_2.jpg and /dev/null differ diff --git a/temp-public/images/Bursol_20240923_3.jpg b/temp-public/images/Bursol_20240923_3.jpg deleted file mode 100644 index a85f53d..0000000 Binary files a/temp-public/images/Bursol_20240923_3.jpg and /dev/null differ diff --git a/temp-public/images/Bursol_20240923_4.jpg b/temp-public/images/Bursol_20240923_4.jpg deleted file mode 100644 index 3900271..0000000 Binary files a/temp-public/images/Bursol_20240923_4.jpg and /dev/null differ diff --git a/temp-public/images/Bursol_20240923_5.jpg b/temp-public/images/Bursol_20240923_5.jpg deleted file mode 100644 index c4c30e6..0000000 Binary files a/temp-public/images/Bursol_20240923_5.jpg and /dev/null differ diff --git a/temp-public/images/Bursol_20240923_6.jpg b/temp-public/images/Bursol_20240923_6.jpg deleted file mode 100644 index 196941c..0000000 Binary files a/temp-public/images/Bursol_20240923_6.jpg and /dev/null differ diff --git a/temp-public/images/Bursol_20240923_7.jpg b/temp-public/images/Bursol_20240923_7.jpg deleted file mode 100644 index 8bec5ca..0000000 Binary files a/temp-public/images/Bursol_20240923_7.jpg and /dev/null differ diff --git a/temp-public/images/Bursol_20240923_8.jpg b/temp-public/images/Bursol_20240923_8.jpg deleted file mode 100644 index 8aa5e76..0000000 Binary files a/temp-public/images/Bursol_20240923_8.jpg and /dev/null differ diff --git a/temp-public/images/Bursol_20240923_9.jpg b/temp-public/images/Bursol_20240923_9.jpg deleted file mode 100644 index f316382..0000000 Binary files a/temp-public/images/Bursol_20240923_9.jpg and /dev/null differ diff --git a/temp-public/images/Bykovo-20211107-1.jpg b/temp-public/images/Bykovo-20211107-1.jpg deleted file mode 100644 index 9de7a36..0000000 Binary files a/temp-public/images/Bykovo-20211107-1.jpg and /dev/null differ diff --git a/temp-public/images/Bykovo-20211107-2.jpg b/temp-public/images/Bykovo-20211107-2.jpg deleted file mode 100644 index 5bc3a05..0000000 Binary files a/temp-public/images/Bykovo-20211107-2.jpg and /dev/null differ diff --git a/temp-public/images/Bykovo-20211107-3.jpg b/temp-public/images/Bykovo-20211107-3.jpg deleted file mode 100644 index 06677b4..0000000 Binary files a/temp-public/images/Bykovo-20211107-3.jpg and /dev/null differ diff --git a/temp-public/images/Bykovo-20211107-4.jpg b/temp-public/images/Bykovo-20211107-4.jpg deleted file mode 100644 index 7dc99d5..0000000 Binary files a/temp-public/images/Bykovo-20211107-4.jpg and /dev/null differ diff --git a/temp-public/images/Bykovo-20211107-5.jpg b/temp-public/images/Bykovo-20211107-5.jpg deleted file mode 100644 index 1ee01e0..0000000 Binary files a/temp-public/images/Bykovo-20211107-5.jpg and /dev/null differ diff --git a/temp-public/images/Bykovo-20211107-6.jpg b/temp-public/images/Bykovo-20211107-6.jpg deleted file mode 100644 index 6b89ea3..0000000 Binary files a/temp-public/images/Bykovo-20211107-6.jpg and /dev/null differ diff --git a/temp-public/images/Detlager-20210529-2.jpg b/temp-public/images/Detlager-20210529-2.jpg deleted file mode 100644 index 5f38947..0000000 Binary files a/temp-public/images/Detlager-20210529-2.jpg and /dev/null differ diff --git a/temp-public/images/Dino-20220327-4.jpg b/temp-public/images/Dino-20220327-4.jpg deleted file mode 100644 index b9ed694..0000000 Binary files a/temp-public/images/Dino-20220327-4.jpg and /dev/null differ diff --git a/temp-public/images/Dino-20220327-5.jpg b/temp-public/images/Dino-20220327-5.jpg deleted file mode 100644 index cdfe296..0000000 Binary files a/temp-public/images/Dino-20220327-5.jpg and /dev/null differ diff --git a/temp-public/images/Dino-20220327-6.jpg b/temp-public/images/Dino-20220327-6.jpg deleted file mode 100644 index 64227f2..0000000 Binary files a/temp-public/images/Dino-20220327-6.jpg and /dev/null differ diff --git a/temp-public/images/Dino-20220327-7.jpg b/temp-public/images/Dino-20220327-7.jpg deleted file mode 100644 index 7358b15..0000000 Binary files a/temp-public/images/Dino-20220327-7.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov-20221016-1.jpg b/temp-public/images/Dmitrov-20221016-1.jpg deleted file mode 100644 index ae98a25..0000000 Binary files a/temp-public/images/Dmitrov-20221016-1.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov-20221016-10.jpg b/temp-public/images/Dmitrov-20221016-10.jpg deleted file mode 100644 index f6cec20..0000000 Binary files a/temp-public/images/Dmitrov-20221016-10.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov-20221016-11.jpg b/temp-public/images/Dmitrov-20221016-11.jpg deleted file mode 100644 index e4c0925..0000000 Binary files a/temp-public/images/Dmitrov-20221016-11.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov-20221016-12.jpg b/temp-public/images/Dmitrov-20221016-12.jpg deleted file mode 100644 index 349a61f..0000000 Binary files a/temp-public/images/Dmitrov-20221016-12.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov-20221016-13.jpg b/temp-public/images/Dmitrov-20221016-13.jpg deleted file mode 100644 index d074e3d..0000000 Binary files a/temp-public/images/Dmitrov-20221016-13.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov-20221016-14.jpg b/temp-public/images/Dmitrov-20221016-14.jpg deleted file mode 100644 index 2b4ad9e..0000000 Binary files a/temp-public/images/Dmitrov-20221016-14.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov-20221016-15.jpg b/temp-public/images/Dmitrov-20221016-15.jpg deleted file mode 100644 index d41dbc9..0000000 Binary files a/temp-public/images/Dmitrov-20221016-15.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov-20221016-16.jpg b/temp-public/images/Dmitrov-20221016-16.jpg deleted file mode 100644 index bd6dc41..0000000 Binary files a/temp-public/images/Dmitrov-20221016-16.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov-20221016-17.jpg b/temp-public/images/Dmitrov-20221016-17.jpg deleted file mode 100644 index b719a73..0000000 Binary files a/temp-public/images/Dmitrov-20221016-17.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov-20221016-2.jpg b/temp-public/images/Dmitrov-20221016-2.jpg deleted file mode 100644 index 5ba85c9..0000000 Binary files a/temp-public/images/Dmitrov-20221016-2.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov-20221016-3.jpg b/temp-public/images/Dmitrov-20221016-3.jpg deleted file mode 100644 index 438261e..0000000 Binary files a/temp-public/images/Dmitrov-20221016-3.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov-20221016-4.jpg b/temp-public/images/Dmitrov-20221016-4.jpg deleted file mode 100644 index 1b28363..0000000 Binary files a/temp-public/images/Dmitrov-20221016-4.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov-20221016-5.jpg b/temp-public/images/Dmitrov-20221016-5.jpg deleted file mode 100644 index 3dae023..0000000 Binary files a/temp-public/images/Dmitrov-20221016-5.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov-20221016-6.jpg b/temp-public/images/Dmitrov-20221016-6.jpg deleted file mode 100644 index f3d4363..0000000 Binary files a/temp-public/images/Dmitrov-20221016-6.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov-20221016-7.jpg b/temp-public/images/Dmitrov-20221016-7.jpg deleted file mode 100644 index f2b6901..0000000 Binary files a/temp-public/images/Dmitrov-20221016-7.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov-20221016-8.jpg b/temp-public/images/Dmitrov-20221016-8.jpg deleted file mode 100644 index be44d3d..0000000 Binary files a/temp-public/images/Dmitrov-20221016-8.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov-20221016-9.jpg b/temp-public/images/Dmitrov-20221016-9.jpg deleted file mode 100644 index df6f147..0000000 Binary files a/temp-public/images/Dmitrov-20221016-9.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov_20210328-1.jpg b/temp-public/images/Dmitrov_20210328-1.jpg deleted file mode 100644 index f0e48e4..0000000 Binary files a/temp-public/images/Dmitrov_20210328-1.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov_20210328-2.jpg b/temp-public/images/Dmitrov_20210328-2.jpg deleted file mode 100644 index 90fc0d2..0000000 Binary files a/temp-public/images/Dmitrov_20210328-2.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov_20210328-4.jpg b/temp-public/images/Dmitrov_20210328-4.jpg deleted file mode 100644 index a763551..0000000 Binary files a/temp-public/images/Dmitrov_20210328-4.jpg and /dev/null differ diff --git a/temp-public/images/Dmitrov_20210328-5.jpg b/temp-public/images/Dmitrov_20210328-5.jpg deleted file mode 100644 index 0ce92d9..0000000 Binary files a/temp-public/images/Dmitrov_20210328-5.jpg and /dev/null differ diff --git a/temp-public/images/Dronoslet_20240705_1.jpg b/temp-public/images/Dronoslet_20240705_1.jpg deleted file mode 100644 index 955a5b3..0000000 Binary files a/temp-public/images/Dronoslet_20240705_1.jpg and /dev/null differ diff --git a/temp-public/images/Dronoslet_20240705_2.jpg b/temp-public/images/Dronoslet_20240705_2.jpg deleted file mode 100644 index f51ff26..0000000 Binary files a/temp-public/images/Dronoslet_20240705_2.jpg and /dev/null differ diff --git a/temp-public/images/Dronoslet_20240705_3.jpg b/temp-public/images/Dronoslet_20240705_3.jpg deleted file mode 100644 index edaaeb4..0000000 Binary files a/temp-public/images/Dronoslet_20240705_3.jpg and /dev/null differ diff --git a/temp-public/images/Dronoslet_20240705_4.jpg b/temp-public/images/Dronoslet_20240705_4.jpg deleted file mode 100644 index 3599b62..0000000 Binary files a/temp-public/images/Dronoslet_20240705_4.jpg and /dev/null differ diff --git a/temp-public/images/Dronoslet_20240705_5.jpg b/temp-public/images/Dronoslet_20240705_5.jpg deleted file mode 100644 index 87a02dc..0000000 Binary files a/temp-public/images/Dronoslet_20240705_5.jpg and /dev/null differ diff --git a/temp-public/images/Dronoslet_20240705_6.jpg b/temp-public/images/Dronoslet_20240705_6.jpg deleted file mode 100644 index 888dde3..0000000 Binary files a/temp-public/images/Dronoslet_20240705_6.jpg and /dev/null differ diff --git a/temp-public/images/Dronoslet_20240705_7.jpg b/temp-public/images/Dronoslet_20240705_7.jpg deleted file mode 100644 index 6987d5a..0000000 Binary files a/temp-public/images/Dronoslet_20240705_7.jpg and /dev/null differ diff --git a/temp-public/images/Dronoslet_20240705_8.jpg b/temp-public/images/Dronoslet_20240705_8.jpg deleted file mode 100644 index 75fff62..0000000 Binary files a/temp-public/images/Dronoslet_20240705_8.jpg and /dev/null differ diff --git a/temp-public/images/Dubna-20231118-1.jpg b/temp-public/images/Dubna-20231118-1.jpg deleted file mode 100644 index ad1dc0b..0000000 Binary files a/temp-public/images/Dubna-20231118-1.jpg and /dev/null differ diff --git a/temp-public/images/Dubna-20231118-2.jpg b/temp-public/images/Dubna-20231118-2.jpg deleted file mode 100644 index d915d4a..0000000 Binary files a/temp-public/images/Dubna-20231118-2.jpg and /dev/null differ diff --git a/temp-public/images/Dubna-20231118-3.jpg b/temp-public/images/Dubna-20231118-3.jpg deleted file mode 100644 index 5755fac..0000000 Binary files a/temp-public/images/Dubna-20231118-3.jpg and /dev/null differ diff --git a/temp-public/images/Dubna-20231118-4.jpg b/temp-public/images/Dubna-20231118-4.jpg deleted file mode 100644 index 8800782..0000000 Binary files a/temp-public/images/Dubna-20231118-4.jpg and /dev/null differ diff --git a/temp-public/images/Dubna-20231118-5.jpg b/temp-public/images/Dubna-20231118-5.jpg deleted file mode 100644 index a07ec77..0000000 Binary files a/temp-public/images/Dubna-20231118-5.jpg and /dev/null differ diff --git a/temp-public/images/Dubna-20231118-6.jpg b/temp-public/images/Dubna-20231118-6.jpg deleted file mode 100644 index 90cc8db..0000000 Binary files a/temp-public/images/Dubna-20231118-6.jpg and /dev/null differ diff --git a/temp-public/images/Dubna-20231118-7.jpg b/temp-public/images/Dubna-20231118-7.jpg deleted file mode 100644 index 8b3ce27..0000000 Binary files a/temp-public/images/Dubna-20231118-7.jpg and /dev/null differ diff --git a/temp-public/images/Elbrus-20230128-1.jpg b/temp-public/images/Elbrus-20230128-1.jpg deleted file mode 100644 index c428d3a..0000000 Binary files a/temp-public/images/Elbrus-20230128-1.jpg and /dev/null differ diff --git a/temp-public/images/Elbrus-20230128-2.jpg b/temp-public/images/Elbrus-20230128-2.jpg deleted file mode 100644 index f4900c0..0000000 Binary files a/temp-public/images/Elbrus-20230128-2.jpg and /dev/null differ diff --git a/temp-public/images/Elbrus-20230128-3.jpg b/temp-public/images/Elbrus-20230128-3.jpg deleted file mode 100644 index e3baeb1..0000000 Binary files a/temp-public/images/Elbrus-20230128-3.jpg and /dev/null differ diff --git a/temp-public/images/Elbrus-20230128-4.jpg b/temp-public/images/Elbrus-20230128-4.jpg deleted file mode 100644 index 9967c5f..0000000 Binary files a/temp-public/images/Elbrus-20230128-4.jpg and /dev/null differ diff --git a/temp-public/images/Elbrus-20230128-5.jpg b/temp-public/images/Elbrus-20230128-5.jpg deleted file mode 100644 index bd9df30..0000000 Binary files a/temp-public/images/Elbrus-20230128-5.jpg and /dev/null differ diff --git a/temp-public/images/Elbrus-20230128-6.jpg b/temp-public/images/Elbrus-20230128-6.jpg deleted file mode 100644 index 578e1d4..0000000 Binary files a/temp-public/images/Elbrus-20230128-6.jpg and /dev/null differ diff --git a/temp-public/images/Fedor_20240623_1.jpg b/temp-public/images/Fedor_20240623_1.jpg deleted file mode 100644 index e7dbecc..0000000 Binary files a/temp-public/images/Fedor_20240623_1.jpg and /dev/null differ diff --git a/temp-public/images/GES-20220418-1.jpg b/temp-public/images/GES-20220418-1.jpg deleted file mode 100644 index 941f5b8..0000000 Binary files a/temp-public/images/GES-20220418-1.jpg and /dev/null differ diff --git a/temp-public/images/GES-20220418-2.jpg b/temp-public/images/GES-20220418-2.jpg deleted file mode 100644 index 0838911..0000000 Binary files a/temp-public/images/GES-20220418-2.jpg and /dev/null differ diff --git a/temp-public/images/GES-20220418-3.jpg b/temp-public/images/GES-20220418-3.jpg deleted file mode 100644 index 60b157e..0000000 Binary files a/temp-public/images/GES-20220418-3.jpg and /dev/null differ diff --git a/temp-public/images/GES-20220418-4.jpg b/temp-public/images/GES-20220418-4.jpg deleted file mode 100644 index 3c78655..0000000 Binary files a/temp-public/images/GES-20220418-4.jpg and /dev/null differ diff --git a/temp-public/images/GES-20220418-5.jpg b/temp-public/images/GES-20220418-5.jpg deleted file mode 100644 index 5788641..0000000 Binary files a/temp-public/images/GES-20220418-5.jpg and /dev/null differ diff --git a/temp-public/images/GES-20220418-6.jpg b/temp-public/images/GES-20220418-6.jpg deleted file mode 100644 index 012ea5f..0000000 Binary files a/temp-public/images/GES-20220418-6.jpg and /dev/null differ diff --git a/temp-public/images/GES-20220418-7.jpg b/temp-public/images/GES-20220418-7.jpg deleted file mode 100644 index 04ecd9a..0000000 Binary files a/temp-public/images/GES-20220418-7.jpg and /dev/null differ diff --git a/temp-public/images/Glubokovo-20220206-1.jpg b/temp-public/images/Glubokovo-20220206-1.jpg deleted file mode 100644 index d5a2c4a..0000000 Binary files a/temp-public/images/Glubokovo-20220206-1.jpg and /dev/null differ diff --git a/temp-public/images/Glubokovo-20220206-2.jpg b/temp-public/images/Glubokovo-20220206-2.jpg deleted file mode 100644 index dd19e87..0000000 Binary files a/temp-public/images/Glubokovo-20220206-2.jpg and /dev/null differ diff --git a/temp-public/images/Glubokovo-20220206-3.jpg b/temp-public/images/Glubokovo-20220206-3.jpg deleted file mode 100644 index 409f01b..0000000 Binary files a/temp-public/images/Glubokovo-20220206-3.jpg and /dev/null differ diff --git a/temp-public/images/Glubokovo-20220206-4.jpg b/temp-public/images/Glubokovo-20220206-4.jpg deleted file mode 100644 index 5b99715..0000000 Binary files a/temp-public/images/Glubokovo-20220206-4.jpg and /dev/null differ diff --git a/temp-public/images/Glubokovo-20220206-5.jpg b/temp-public/images/Glubokovo-20220206-5.jpg deleted file mode 100644 index 95caec0..0000000 Binary files a/temp-public/images/Glubokovo-20220206-5.jpg and /dev/null differ diff --git a/temp-public/images/Glubokovo-20220206-6.jpg b/temp-public/images/Glubokovo-20220206-6.jpg deleted file mode 100644 index 1446582..0000000 Binary files a/temp-public/images/Glubokovo-20220206-6.jpg and /dev/null differ diff --git a/temp-public/images/Glubokovo-20220206-7.jpg b/temp-public/images/Glubokovo-20220206-7.jpg deleted file mode 100644 index 03b0758..0000000 Binary files a/temp-public/images/Glubokovo-20220206-7.jpg and /dev/null differ diff --git a/temp-public/images/Golf-20220525-1.jpg b/temp-public/images/Golf-20220525-1.jpg deleted file mode 100644 index cc9c390..0000000 Binary files a/temp-public/images/Golf-20220525-1.jpg and /dev/null differ diff --git a/temp-public/images/Golf-20220525-10.jpg b/temp-public/images/Golf-20220525-10.jpg deleted file mode 100644 index 64b146a..0000000 Binary files a/temp-public/images/Golf-20220525-10.jpg and /dev/null differ diff --git a/temp-public/images/Golf-20220525-11.jpg b/temp-public/images/Golf-20220525-11.jpg deleted file mode 100644 index 6559cc2..0000000 Binary files a/temp-public/images/Golf-20220525-11.jpg and /dev/null differ diff --git a/temp-public/images/Golf-20220525-12.jpg b/temp-public/images/Golf-20220525-12.jpg deleted file mode 100644 index bcb0c05..0000000 Binary files a/temp-public/images/Golf-20220525-12.jpg and /dev/null differ diff --git a/temp-public/images/Golf-20220525-13.jpg b/temp-public/images/Golf-20220525-13.jpg deleted file mode 100644 index c709544..0000000 Binary files a/temp-public/images/Golf-20220525-13.jpg and /dev/null differ diff --git a/temp-public/images/Golf-20220525-14.jpg b/temp-public/images/Golf-20220525-14.jpg deleted file mode 100644 index d63398c..0000000 Binary files a/temp-public/images/Golf-20220525-14.jpg and /dev/null differ diff --git a/temp-public/images/Golf-20220525-15.jpg b/temp-public/images/Golf-20220525-15.jpg deleted file mode 100644 index a931224..0000000 Binary files a/temp-public/images/Golf-20220525-15.jpg and /dev/null differ diff --git a/temp-public/images/Golf-20220525-16.jpg b/temp-public/images/Golf-20220525-16.jpg deleted file mode 100644 index edef7ee..0000000 Binary files a/temp-public/images/Golf-20220525-16.jpg and /dev/null differ diff --git a/temp-public/images/Golf-20220525-17.jpg b/temp-public/images/Golf-20220525-17.jpg deleted file mode 100644 index 6b8dd0b..0000000 Binary files a/temp-public/images/Golf-20220525-17.jpg and /dev/null differ diff --git a/temp-public/images/Golf-20220525-2.jpg b/temp-public/images/Golf-20220525-2.jpg deleted file mode 100644 index f123f29..0000000 Binary files a/temp-public/images/Golf-20220525-2.jpg and /dev/null differ diff --git a/temp-public/images/Golf-20220525-3.jpg b/temp-public/images/Golf-20220525-3.jpg deleted file mode 100644 index f6e1a26..0000000 Binary files a/temp-public/images/Golf-20220525-3.jpg and /dev/null differ diff --git a/temp-public/images/Golf-20220525-4.jpg b/temp-public/images/Golf-20220525-4.jpg deleted file mode 100644 index d486f21..0000000 Binary files a/temp-public/images/Golf-20220525-4.jpg and /dev/null differ diff --git a/temp-public/images/Golf-20220525-5.jpg b/temp-public/images/Golf-20220525-5.jpg deleted file mode 100644 index b5a2f22..0000000 Binary files a/temp-public/images/Golf-20220525-5.jpg and /dev/null differ diff --git a/temp-public/images/Golf-20220525-8.jpg b/temp-public/images/Golf-20220525-8.jpg deleted file mode 100644 index 22702e7..0000000 Binary files a/temp-public/images/Golf-20220525-8.jpg and /dev/null differ diff --git a/temp-public/images/Golf-20220525-9.jpg b/temp-public/images/Golf-20220525-9.jpg deleted file mode 100644 index 269a44e..0000000 Binary files a/temp-public/images/Golf-20220525-9.jpg and /dev/null differ diff --git a/temp-public/images/Gorb_20250304_1.jpg b/temp-public/images/Gorb_20250304_1.jpg deleted file mode 100644 index 5865d98..0000000 Binary files a/temp-public/images/Gorb_20250304_1.jpg and /dev/null differ diff --git a/temp-public/images/Gorb_20250304_10.jpg b/temp-public/images/Gorb_20250304_10.jpg deleted file mode 100644 index 1ab8d90..0000000 Binary files a/temp-public/images/Gorb_20250304_10.jpg and /dev/null differ diff --git a/temp-public/images/Gorb_20250304_3.jpg b/temp-public/images/Gorb_20250304_3.jpg deleted file mode 100644 index c74a700..0000000 Binary files a/temp-public/images/Gorb_20250304_3.jpg and /dev/null differ diff --git a/temp-public/images/Gorb_20250304_4.jpg b/temp-public/images/Gorb_20250304_4.jpg deleted file mode 100644 index a661916..0000000 Binary files a/temp-public/images/Gorb_20250304_4.jpg and /dev/null differ diff --git a/temp-public/images/Gorb_20250304_5.jpg b/temp-public/images/Gorb_20250304_5.jpg deleted file mode 100644 index 520e9d3..0000000 Binary files a/temp-public/images/Gorb_20250304_5.jpg and /dev/null differ diff --git a/temp-public/images/Gorb_20250304_6.jpg b/temp-public/images/Gorb_20250304_6.jpg deleted file mode 100644 index 2d9f4b5..0000000 Binary files a/temp-public/images/Gorb_20250304_6.jpg and /dev/null differ diff --git a/temp-public/images/Gorb_20250304_7.jpg b/temp-public/images/Gorb_20250304_7.jpg deleted file mode 100644 index 086f0a6..0000000 Binary files a/temp-public/images/Gorb_20250304_7.jpg and /dev/null differ diff --git a/temp-public/images/Gorb_20250304_8.jpg b/temp-public/images/Gorb_20250304_8.jpg deleted file mode 100644 index 0ab8513..0000000 Binary files a/temp-public/images/Gorb_20250304_8.jpg and /dev/null differ diff --git a/temp-public/images/Gorb_20250304_9.jpg b/temp-public/images/Gorb_20250304_9.jpg deleted file mode 100644 index 8230106..0000000 Binary files a/temp-public/images/Gorb_20250304_9.jpg and /dev/null differ diff --git a/temp-public/images/HappyNew_20231230_1.jpg b/temp-public/images/HappyNew_20231230_1.jpg deleted file mode 100644 index 4dc1ce2..0000000 Binary files a/temp-public/images/HappyNew_20231230_1.jpg and /dev/null differ diff --git a/temp-public/images/HappyNew_20231230_2.jpg b/temp-public/images/HappyNew_20231230_2.jpg deleted file mode 100644 index 27fd6f4..0000000 Binary files a/temp-public/images/HappyNew_20231230_2.jpg and /dev/null differ diff --git a/temp-public/images/HappyNew_20231230_3.jpg b/temp-public/images/HappyNew_20231230_3.jpg deleted file mode 100644 index 8b52ccc..0000000 Binary files a/temp-public/images/HappyNew_20231230_3.jpg and /dev/null differ diff --git a/temp-public/images/HappyNew_20231230_4.jpg b/temp-public/images/HappyNew_20231230_4.jpg deleted file mode 100644 index a21b62d..0000000 Binary files a/temp-public/images/HappyNew_20231230_4.jpg and /dev/null differ diff --git a/temp-public/images/HappyNew_20231230_5.jpg b/temp-public/images/HappyNew_20231230_5.jpg deleted file mode 100644 index bd8b696..0000000 Binary files a/temp-public/images/HappyNew_20231230_5.jpg and /dev/null differ diff --git a/temp-public/images/Hrap-20230114-1.jpg b/temp-public/images/Hrap-20230114-1.jpg deleted file mode 100644 index f93209b..0000000 Binary files a/temp-public/images/Hrap-20230114-1.jpg and /dev/null differ diff --git a/temp-public/images/Hrap-20230114-2.jpg b/temp-public/images/Hrap-20230114-2.jpg deleted file mode 100644 index b98fdcd..0000000 Binary files a/temp-public/images/Hrap-20230114-2.jpg and /dev/null differ diff --git a/temp-public/images/Hrap-20230114-3.jpg b/temp-public/images/Hrap-20230114-3.jpg deleted file mode 100644 index 49b7f98..0000000 Binary files a/temp-public/images/Hrap-20230114-3.jpg and /dev/null differ diff --git a/temp-public/images/Iosifo-20220417-1.jpg b/temp-public/images/Iosifo-20220417-1.jpg deleted file mode 100644 index 988e442..0000000 Binary files a/temp-public/images/Iosifo-20220417-1.jpg and /dev/null differ diff --git a/temp-public/images/Iosifo-20220417-2.jpg b/temp-public/images/Iosifo-20220417-2.jpg deleted file mode 100644 index 8e0cf49..0000000 Binary files a/temp-public/images/Iosifo-20220417-2.jpg and /dev/null differ diff --git a/temp-public/images/Iosifo-20220417-3.jpg b/temp-public/images/Iosifo-20220417-3.jpg deleted file mode 100644 index abd2f63..0000000 Binary files a/temp-public/images/Iosifo-20220417-3.jpg and /dev/null differ diff --git a/temp-public/images/Iosifo-20220417-4.jpg b/temp-public/images/Iosifo-20220417-4.jpg deleted file mode 100644 index 727fa4b..0000000 Binary files a/temp-public/images/Iosifo-20220417-4.jpg and /dev/null differ diff --git a/temp-public/images/Iosifo-20220417-5.jpg b/temp-public/images/Iosifo-20220417-5.jpg deleted file mode 100644 index 8a00d78..0000000 Binary files a/temp-public/images/Iosifo-20220417-5.jpg and /dev/null differ diff --git a/temp-public/images/Iosifo-20220417-6.jpg b/temp-public/images/Iosifo-20220417-6.jpg deleted file mode 100644 index ae73410..0000000 Binary files a/temp-public/images/Iosifo-20220417-6.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-01.jpg b/temp-public/images/KBR-20210928-01.jpg deleted file mode 100644 index 5c8b42f..0000000 Binary files a/temp-public/images/KBR-20210928-01.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-02.jpg b/temp-public/images/KBR-20210928-02.jpg deleted file mode 100644 index 55bf4c3..0000000 Binary files a/temp-public/images/KBR-20210928-02.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-03.jpg b/temp-public/images/KBR-20210928-03.jpg deleted file mode 100644 index da55529..0000000 Binary files a/temp-public/images/KBR-20210928-03.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-04.jpg b/temp-public/images/KBR-20210928-04.jpg deleted file mode 100644 index cdb9aa9..0000000 Binary files a/temp-public/images/KBR-20210928-04.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-05.jpg b/temp-public/images/KBR-20210928-05.jpg deleted file mode 100644 index 65cc334..0000000 Binary files a/temp-public/images/KBR-20210928-05.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-06.jpg b/temp-public/images/KBR-20210928-06.jpg deleted file mode 100644 index 1cb1517..0000000 Binary files a/temp-public/images/KBR-20210928-06.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-07.jpg b/temp-public/images/KBR-20210928-07.jpg deleted file mode 100644 index 258ba74..0000000 Binary files a/temp-public/images/KBR-20210928-07.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-1.jpg b/temp-public/images/KBR-20210928-1.jpg deleted file mode 100644 index b6a925e..0000000 Binary files a/temp-public/images/KBR-20210928-1.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-10.jpg b/temp-public/images/KBR-20210928-10.jpg deleted file mode 100644 index f778f9c..0000000 Binary files a/temp-public/images/KBR-20210928-10.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-11.jpg b/temp-public/images/KBR-20210928-11.jpg deleted file mode 100644 index 310e3f0..0000000 Binary files a/temp-public/images/KBR-20210928-11.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-12.jpg b/temp-public/images/KBR-20210928-12.jpg deleted file mode 100644 index 3032eaa..0000000 Binary files a/temp-public/images/KBR-20210928-12.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-13.jpg b/temp-public/images/KBR-20210928-13.jpg deleted file mode 100644 index bd6aa85..0000000 Binary files a/temp-public/images/KBR-20210928-13.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-14.jpg b/temp-public/images/KBR-20210928-14.jpg deleted file mode 100644 index b466dc9..0000000 Binary files a/temp-public/images/KBR-20210928-14.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-15.jpg b/temp-public/images/KBR-20210928-15.jpg deleted file mode 100644 index d3cee3b..0000000 Binary files a/temp-public/images/KBR-20210928-15.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-16.jpg b/temp-public/images/KBR-20210928-16.jpg deleted file mode 100644 index 6555a46..0000000 Binary files a/temp-public/images/KBR-20210928-16.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-17.jpg b/temp-public/images/KBR-20210928-17.jpg deleted file mode 100644 index 6ca7b70..0000000 Binary files a/temp-public/images/KBR-20210928-17.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-2.jpg b/temp-public/images/KBR-20210928-2.jpg deleted file mode 100644 index 63e9f84..0000000 Binary files a/temp-public/images/KBR-20210928-2.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-3.jpg b/temp-public/images/KBR-20210928-3.jpg deleted file mode 100644 index 20b50d5..0000000 Binary files a/temp-public/images/KBR-20210928-3.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-4.jpg b/temp-public/images/KBR-20210928-4.jpg deleted file mode 100644 index 3224fc2..0000000 Binary files a/temp-public/images/KBR-20210928-4.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-5.jpg b/temp-public/images/KBR-20210928-5.jpg deleted file mode 100644 index 5ee28f3..0000000 Binary files a/temp-public/images/KBR-20210928-5.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-6.jpg b/temp-public/images/KBR-20210928-6.jpg deleted file mode 100644 index 1c9a823..0000000 Binary files a/temp-public/images/KBR-20210928-6.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-7.jpg b/temp-public/images/KBR-20210928-7.jpg deleted file mode 100644 index 861bd98..0000000 Binary files a/temp-public/images/KBR-20210928-7.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-8.jpg b/temp-public/images/KBR-20210928-8.jpg deleted file mode 100644 index 353b9bd..0000000 Binary files a/temp-public/images/KBR-20210928-8.jpg and /dev/null differ diff --git a/temp-public/images/KBR-20210928-9.jpg b/temp-public/images/KBR-20210928-9.jpg deleted file mode 100644 index eb0d1b8..0000000 Binary files a/temp-public/images/KBR-20210928-9.jpg and /dev/null differ diff --git a/temp-public/images/KCR-20230603-1.jpg b/temp-public/images/KCR-20230603-1.jpg deleted file mode 100644 index b9ad38e..0000000 Binary files a/temp-public/images/KCR-20230603-1.jpg and /dev/null differ diff --git a/temp-public/images/KCR-20230603-2.jpg b/temp-public/images/KCR-20230603-2.jpg deleted file mode 100644 index a457413..0000000 Binary files a/temp-public/images/KCR-20230603-2.jpg and /dev/null differ diff --git a/temp-public/images/KCR-20230603-3.jpg b/temp-public/images/KCR-20230603-3.jpg deleted file mode 100644 index c28b2ce..0000000 Binary files a/temp-public/images/KCR-20230603-3.jpg and /dev/null differ diff --git a/temp-public/images/KCR-20230603-4.jpg b/temp-public/images/KCR-20230603-4.jpg deleted file mode 100644 index 4d6550e..0000000 Binary files a/temp-public/images/KCR-20230603-4.jpg and /dev/null differ diff --git a/temp-public/images/KCR-20230603-5.jpg b/temp-public/images/KCR-20230603-5.jpg deleted file mode 100644 index bd265bb..0000000 Binary files a/temp-public/images/KCR-20230603-5.jpg and /dev/null differ diff --git a/temp-public/images/KCR-20230603-6.jpg b/temp-public/images/KCR-20230603-6.jpg deleted file mode 100644 index 09359e8..0000000 Binary files a/temp-public/images/KCR-20230603-6.jpg and /dev/null differ diff --git a/temp-public/images/Kalininrad-20210913-10.jpg b/temp-public/images/Kalininrad-20210913-10.jpg deleted file mode 100644 index 8f65e33..0000000 Binary files a/temp-public/images/Kalininrad-20210913-10.jpg and /dev/null differ diff --git a/temp-public/images/Kalininrad-20210913-15.jpg b/temp-public/images/Kalininrad-20210913-15.jpg deleted file mode 100644 index 3aad24d..0000000 Binary files a/temp-public/images/Kalininrad-20210913-15.jpg and /dev/null differ diff --git a/temp-public/images/Kalininrad-20210913-19.jpg b/temp-public/images/Kalininrad-20210913-19.jpg deleted file mode 100644 index d6eeb4f..0000000 Binary files a/temp-public/images/Kalininrad-20210913-19.jpg and /dev/null differ diff --git a/temp-public/images/Kalininrad-20210913-2.jpg b/temp-public/images/Kalininrad-20210913-2.jpg deleted file mode 100644 index 39387db..0000000 Binary files a/temp-public/images/Kalininrad-20210913-2.jpg and /dev/null differ diff --git a/temp-public/images/Kalininrad-20210913-20.jpg b/temp-public/images/Kalininrad-20210913-20.jpg deleted file mode 100644 index 533ec8f..0000000 Binary files a/temp-public/images/Kalininrad-20210913-20.jpg and /dev/null differ diff --git a/temp-public/images/Kalininrad-20210913-23.jpg b/temp-public/images/Kalininrad-20210913-23.jpg deleted file mode 100644 index 9b9f031..0000000 Binary files a/temp-public/images/Kalininrad-20210913-23.jpg and /dev/null differ diff --git a/temp-public/images/Kalininrad-20210913-8.jpg b/temp-public/images/Kalininrad-20210913-8.jpg deleted file mode 100644 index 4dd13d1..0000000 Binary files a/temp-public/images/Kalininrad-20210913-8.jpg and /dev/null differ diff --git a/temp-public/images/Kalininrad-20210913-9.jpg b/temp-public/images/Kalininrad-20210913-9.jpg deleted file mode 100644 index 48133e5..0000000 Binary files a/temp-public/images/Kalininrad-20210913-9.jpg and /dev/null differ diff --git a/temp-public/images/Kalyazin-20240330-1.jpg b/temp-public/images/Kalyazin-20240330-1.jpg deleted file mode 100644 index 2fd7af0..0000000 Binary files a/temp-public/images/Kalyazin-20240330-1.jpg and /dev/null differ diff --git a/temp-public/images/Kalyazin-20240330-2.jpg b/temp-public/images/Kalyazin-20240330-2.jpg deleted file mode 100644 index b75a500..0000000 Binary files a/temp-public/images/Kalyazin-20240330-2.jpg and /dev/null differ diff --git a/temp-public/images/Kalyazin-20240330-3.jpg b/temp-public/images/Kalyazin-20240330-3.jpg deleted file mode 100644 index b9d0e1d..0000000 Binary files a/temp-public/images/Kalyazin-20240330-3.jpg and /dev/null differ diff --git a/temp-public/images/Kalyazin-20240330-4.jpg b/temp-public/images/Kalyazin-20240330-4.jpg deleted file mode 100644 index 045a7e0..0000000 Binary files a/temp-public/images/Kalyazin-20240330-4.jpg and /dev/null differ diff --git a/temp-public/images/Kalyazin-20240330-5.jpg b/temp-public/images/Kalyazin-20240330-5.jpg deleted file mode 100644 index f5d649f..0000000 Binary files a/temp-public/images/Kalyazin-20240330-5.jpg and /dev/null differ diff --git a/temp-public/images/Kalyazin-20240330-6.jpg b/temp-public/images/Kalyazin-20240330-6.jpg deleted file mode 100644 index c47aa6a..0000000 Binary files a/temp-public/images/Kalyazin-20240330-6.jpg and /dev/null differ diff --git a/temp-public/images/Kalyazin-20240330-7.jpg b/temp-public/images/Kalyazin-20240330-7.jpg deleted file mode 100644 index af7b79f..0000000 Binary files a/temp-public/images/Kalyazin-20240330-7.jpg and /dev/null differ diff --git a/temp-public/images/Kalyazin-20240330-8.jpg b/temp-public/images/Kalyazin-20240330-8.jpg deleted file mode 100644 index b12dac0..0000000 Binary files a/temp-public/images/Kalyazin-20240330-8.jpg and /dev/null differ diff --git a/temp-public/images/Kalyazin-20240330-9.jpg b/temp-public/images/Kalyazin-20240330-9.jpg deleted file mode 100644 index 2360711..0000000 Binary files a/temp-public/images/Kalyazin-20240330-9.jpg and /dev/null differ diff --git a/temp-public/images/Kalyazin-20240603-1.jpg b/temp-public/images/Kalyazin-20240603-1.jpg deleted file mode 100644 index b5e20f7..0000000 Binary files a/temp-public/images/Kalyazin-20240603-1.jpg and /dev/null differ diff --git a/temp-public/images/Kalyazin2-20221203-1.jpg b/temp-public/images/Kalyazin2-20221203-1.jpg deleted file mode 100644 index c385b5e..0000000 Binary files a/temp-public/images/Kalyazin2-20221203-1.jpg and /dev/null differ diff --git a/temp-public/images/Kalyazin2-20221203-2.jpg b/temp-public/images/Kalyazin2-20221203-2.jpg deleted file mode 100644 index 91f5a69..0000000 Binary files a/temp-public/images/Kalyazin2-20221203-2.jpg and /dev/null differ diff --git a/temp-public/images/Kalyazin2-20221203-3.jpg b/temp-public/images/Kalyazin2-20221203-3.jpg deleted file mode 100644 index e22d28a..0000000 Binary files a/temp-public/images/Kalyazin2-20221203-3.jpg and /dev/null differ diff --git a/temp-public/images/Kalyazin2-20221203-4.jpg b/temp-public/images/Kalyazin2-20221203-4.jpg deleted file mode 100644 index 80e70e8..0000000 Binary files a/temp-public/images/Kalyazin2-20221203-4.jpg and /dev/null differ diff --git a/temp-public/images/Kalyazin2-20221203-5.jpg b/temp-public/images/Kalyazin2-20221203-5.jpg deleted file mode 100644 index 7416f6d..0000000 Binary files a/temp-public/images/Kalyazin2-20221203-5.jpg and /dev/null differ diff --git a/temp-public/images/Kashira-20220605-10.jpg b/temp-public/images/Kashira-20220605-10.jpg deleted file mode 100644 index 42be36c..0000000 Binary files a/temp-public/images/Kashira-20220605-10.jpg and /dev/null differ diff --git a/temp-public/images/Kashira-20220605-11.jpg b/temp-public/images/Kashira-20220605-11.jpg deleted file mode 100644 index f787973..0000000 Binary files a/temp-public/images/Kashira-20220605-11.jpg and /dev/null differ diff --git a/temp-public/images/Kashira-20220605-12.jpg b/temp-public/images/Kashira-20220605-12.jpg deleted file mode 100644 index 41d14d4..0000000 Binary files a/temp-public/images/Kashira-20220605-12.jpg and /dev/null differ diff --git a/temp-public/images/Kashira-20220605-2.jpg b/temp-public/images/Kashira-20220605-2.jpg deleted file mode 100644 index cf857da..0000000 Binary files a/temp-public/images/Kashira-20220605-2.jpg and /dev/null differ diff --git a/temp-public/images/Kashira-20220605-3.jpg b/temp-public/images/Kashira-20220605-3.jpg deleted file mode 100644 index 997a2a6..0000000 Binary files a/temp-public/images/Kashira-20220605-3.jpg and /dev/null differ diff --git a/temp-public/images/Kashira-20220605-4.jpg b/temp-public/images/Kashira-20220605-4.jpg deleted file mode 100644 index 9b1519b..0000000 Binary files a/temp-public/images/Kashira-20220605-4.jpg and /dev/null differ diff --git a/temp-public/images/Kashira-20220605-5.jpg b/temp-public/images/Kashira-20220605-5.jpg deleted file mode 100644 index ca53702..0000000 Binary files a/temp-public/images/Kashira-20220605-5.jpg and /dev/null differ diff --git a/temp-public/images/Kashira-20220605-6.jpg b/temp-public/images/Kashira-20220605-6.jpg deleted file mode 100644 index 609fc71..0000000 Binary files a/temp-public/images/Kashira-20220605-6.jpg and /dev/null differ diff --git a/temp-public/images/Kashira-20220605-7.jpg b/temp-public/images/Kashira-20220605-7.jpg deleted file mode 100644 index 442d528..0000000 Binary files a/temp-public/images/Kashira-20220605-7.jpg and /dev/null differ diff --git a/temp-public/images/Kashira-20220605-8.jpg b/temp-public/images/Kashira-20220605-8.jpg deleted file mode 100644 index 2ddf408..0000000 Binary files a/temp-public/images/Kashira-20220605-8.jpg and /dev/null differ diff --git a/temp-public/images/Kashira-20220605-9.jpg b/temp-public/images/Kashira-20220605-9.jpg deleted file mode 100644 index 5b8f178..0000000 Binary files a/temp-public/images/Kashira-20220605-9.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-1.jpg b/temp-public/images/Kavkaz-20220505-1.jpg deleted file mode 100644 index e8a8f19..0000000 Binary files a/temp-public/images/Kavkaz-20220505-1.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-10.jpg b/temp-public/images/Kavkaz-20220505-10.jpg deleted file mode 100644 index 30ca33e..0000000 Binary files a/temp-public/images/Kavkaz-20220505-10.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-11.jpg b/temp-public/images/Kavkaz-20220505-11.jpg deleted file mode 100644 index 10313a9..0000000 Binary files a/temp-public/images/Kavkaz-20220505-11.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-12.jpg b/temp-public/images/Kavkaz-20220505-12.jpg deleted file mode 100644 index 5bbaa3d..0000000 Binary files a/temp-public/images/Kavkaz-20220505-12.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-13.jpg b/temp-public/images/Kavkaz-20220505-13.jpg deleted file mode 100644 index 7996a88..0000000 Binary files a/temp-public/images/Kavkaz-20220505-13.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-14.jpg b/temp-public/images/Kavkaz-20220505-14.jpg deleted file mode 100644 index 75aae1e..0000000 Binary files a/temp-public/images/Kavkaz-20220505-14.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-15.jpg b/temp-public/images/Kavkaz-20220505-15.jpg deleted file mode 100644 index 35ed0a2..0000000 Binary files a/temp-public/images/Kavkaz-20220505-15.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-16.jpg b/temp-public/images/Kavkaz-20220505-16.jpg deleted file mode 100644 index f0085bb..0000000 Binary files a/temp-public/images/Kavkaz-20220505-16.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-17.jpg b/temp-public/images/Kavkaz-20220505-17.jpg deleted file mode 100644 index 3921b76..0000000 Binary files a/temp-public/images/Kavkaz-20220505-17.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-18.jpg b/temp-public/images/Kavkaz-20220505-18.jpg deleted file mode 100644 index d379af7..0000000 Binary files a/temp-public/images/Kavkaz-20220505-18.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-19.jpg b/temp-public/images/Kavkaz-20220505-19.jpg deleted file mode 100644 index fcad65a..0000000 Binary files a/temp-public/images/Kavkaz-20220505-19.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-2.jpg b/temp-public/images/Kavkaz-20220505-2.jpg deleted file mode 100644 index ad9208e..0000000 Binary files a/temp-public/images/Kavkaz-20220505-2.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-20.jpg b/temp-public/images/Kavkaz-20220505-20.jpg deleted file mode 100644 index f06c6fe..0000000 Binary files a/temp-public/images/Kavkaz-20220505-20.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-21.jpg b/temp-public/images/Kavkaz-20220505-21.jpg deleted file mode 100644 index dea639a..0000000 Binary files a/temp-public/images/Kavkaz-20220505-21.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-22.jpg b/temp-public/images/Kavkaz-20220505-22.jpg deleted file mode 100644 index 1119a61..0000000 Binary files a/temp-public/images/Kavkaz-20220505-22.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-23.jpg b/temp-public/images/Kavkaz-20220505-23.jpg deleted file mode 100644 index 8373cf0..0000000 Binary files a/temp-public/images/Kavkaz-20220505-23.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-24.jpg b/temp-public/images/Kavkaz-20220505-24.jpg deleted file mode 100644 index f9c9ac4..0000000 Binary files a/temp-public/images/Kavkaz-20220505-24.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-25.jpg b/temp-public/images/Kavkaz-20220505-25.jpg deleted file mode 100644 index beada31..0000000 Binary files a/temp-public/images/Kavkaz-20220505-25.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-26.jpg b/temp-public/images/Kavkaz-20220505-26.jpg deleted file mode 100644 index 75eec98..0000000 Binary files a/temp-public/images/Kavkaz-20220505-26.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-27.jpg b/temp-public/images/Kavkaz-20220505-27.jpg deleted file mode 100644 index 42bd1d9..0000000 Binary files a/temp-public/images/Kavkaz-20220505-27.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-28.jpg b/temp-public/images/Kavkaz-20220505-28.jpg deleted file mode 100644 index faa441b..0000000 Binary files a/temp-public/images/Kavkaz-20220505-28.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-29.jpg b/temp-public/images/Kavkaz-20220505-29.jpg deleted file mode 100644 index 308076f..0000000 Binary files a/temp-public/images/Kavkaz-20220505-29.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-3.jpg b/temp-public/images/Kavkaz-20220505-3.jpg deleted file mode 100644 index 9f1765e..0000000 Binary files a/temp-public/images/Kavkaz-20220505-3.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-30.jpg b/temp-public/images/Kavkaz-20220505-30.jpg deleted file mode 100644 index cd020d7..0000000 Binary files a/temp-public/images/Kavkaz-20220505-30.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-31.jpg b/temp-public/images/Kavkaz-20220505-31.jpg deleted file mode 100644 index 554f7c5..0000000 Binary files a/temp-public/images/Kavkaz-20220505-31.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-32.jpg b/temp-public/images/Kavkaz-20220505-32.jpg deleted file mode 100644 index c664ca5..0000000 Binary files a/temp-public/images/Kavkaz-20220505-32.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-4.jpg b/temp-public/images/Kavkaz-20220505-4.jpg deleted file mode 100644 index d60ecb6..0000000 Binary files a/temp-public/images/Kavkaz-20220505-4.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-5.jpg b/temp-public/images/Kavkaz-20220505-5.jpg deleted file mode 100644 index 8f77b75..0000000 Binary files a/temp-public/images/Kavkaz-20220505-5.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-6.jpg b/temp-public/images/Kavkaz-20220505-6.jpg deleted file mode 100644 index 0a2ce24..0000000 Binary files a/temp-public/images/Kavkaz-20220505-6.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-7.jpg b/temp-public/images/Kavkaz-20220505-7.jpg deleted file mode 100644 index 6abfd26..0000000 Binary files a/temp-public/images/Kavkaz-20220505-7.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-8.jpg b/temp-public/images/Kavkaz-20220505-8.jpg deleted file mode 100644 index 30ccc7a..0000000 Binary files a/temp-public/images/Kavkaz-20220505-8.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz-20220505-9.jpg b/temp-public/images/Kavkaz-20220505-9.jpg deleted file mode 100644 index 7293661..0000000 Binary files a/temp-public/images/Kavkaz-20220505-9.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz_20240429_1.jpg b/temp-public/images/Kavkaz_20240429_1.jpg deleted file mode 100644 index 7c4db22..0000000 Binary files a/temp-public/images/Kavkaz_20240429_1.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz_20240429_10.jpg b/temp-public/images/Kavkaz_20240429_10.jpg deleted file mode 100644 index 297b6b9..0000000 Binary files a/temp-public/images/Kavkaz_20240429_10.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz_20240429_11.jpg b/temp-public/images/Kavkaz_20240429_11.jpg deleted file mode 100644 index 6478315..0000000 Binary files a/temp-public/images/Kavkaz_20240429_11.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz_20240429_12.jpg b/temp-public/images/Kavkaz_20240429_12.jpg deleted file mode 100644 index 56e3b3a..0000000 Binary files a/temp-public/images/Kavkaz_20240429_12.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz_20240429_13.jpg b/temp-public/images/Kavkaz_20240429_13.jpg deleted file mode 100644 index da80756..0000000 Binary files a/temp-public/images/Kavkaz_20240429_13.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz_20240429_14.jpg b/temp-public/images/Kavkaz_20240429_14.jpg deleted file mode 100644 index bd38c81..0000000 Binary files a/temp-public/images/Kavkaz_20240429_14.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz_20240429_2.jpg b/temp-public/images/Kavkaz_20240429_2.jpg deleted file mode 100644 index 40fbcf5..0000000 Binary files a/temp-public/images/Kavkaz_20240429_2.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz_20240429_3.jpg b/temp-public/images/Kavkaz_20240429_3.jpg deleted file mode 100644 index bdba40e..0000000 Binary files a/temp-public/images/Kavkaz_20240429_3.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz_20240429_4.jpg b/temp-public/images/Kavkaz_20240429_4.jpg deleted file mode 100644 index 29bd15c..0000000 Binary files a/temp-public/images/Kavkaz_20240429_4.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz_20240429_5.jpg b/temp-public/images/Kavkaz_20240429_5.jpg deleted file mode 100644 index 7256a5b..0000000 Binary files a/temp-public/images/Kavkaz_20240429_5.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz_20240429_6.jpg b/temp-public/images/Kavkaz_20240429_6.jpg deleted file mode 100644 index 54e1b26..0000000 Binary files a/temp-public/images/Kavkaz_20240429_6.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz_20240429_7.jpg b/temp-public/images/Kavkaz_20240429_7.jpg deleted file mode 100644 index 0154f4c..0000000 Binary files a/temp-public/images/Kavkaz_20240429_7.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz_20240429_8.jpg b/temp-public/images/Kavkaz_20240429_8.jpg deleted file mode 100644 index 4cd287e..0000000 Binary files a/temp-public/images/Kavkaz_20240429_8.jpg and /dev/null differ diff --git a/temp-public/images/Kavkaz_20240429_9.jpg b/temp-public/images/Kavkaz_20240429_9.jpg deleted file mode 100644 index ececf82..0000000 Binary files a/temp-public/images/Kavkaz_20240429_9.jpg and /dev/null differ diff --git a/temp-public/images/Kino-20210711-1.jpg b/temp-public/images/Kino-20210711-1.jpg deleted file mode 100644 index d7cf243..0000000 Binary files a/temp-public/images/Kino-20210711-1.jpg and /dev/null differ diff --git a/temp-public/images/Kino-20210711-2.jpg b/temp-public/images/Kino-20210711-2.jpg deleted file mode 100644 index edfab80..0000000 Binary files a/temp-public/images/Kino-20210711-2.jpg and /dev/null differ diff --git a/temp-public/images/Kino-20210711-3.jpg b/temp-public/images/Kino-20210711-3.jpg deleted file mode 100644 index da39ac0..0000000 Binary files a/temp-public/images/Kino-20210711-3.jpg and /dev/null differ diff --git a/temp-public/images/Kino-20210711-4.jpg b/temp-public/images/Kino-20210711-4.jpg deleted file mode 100644 index 996cc23..0000000 Binary files a/temp-public/images/Kino-20210711-4.jpg and /dev/null differ diff --git a/temp-public/images/Kino-20210711-5.jpg b/temp-public/images/Kino-20210711-5.jpg deleted file mode 100644 index 56ad723..0000000 Binary files a/temp-public/images/Kino-20210711-5.jpg and /dev/null differ diff --git a/temp-public/images/Klin-20220529-1.jpg b/temp-public/images/Klin-20220529-1.jpg deleted file mode 100644 index d0de932..0000000 Binary files a/temp-public/images/Klin-20220529-1.jpg and /dev/null differ diff --git a/temp-public/images/Klin-20220529-2.jpg b/temp-public/images/Klin-20220529-2.jpg deleted file mode 100644 index d353013..0000000 Binary files a/temp-public/images/Klin-20220529-2.jpg and /dev/null differ diff --git a/temp-public/images/Klin-20220529-3.jpg b/temp-public/images/Klin-20220529-3.jpg deleted file mode 100644 index f7775e3..0000000 Binary files a/temp-public/images/Klin-20220529-3.jpg and /dev/null differ diff --git a/temp-public/images/Klin-20220529-4.jpg b/temp-public/images/Klin-20220529-4.jpg deleted file mode 100644 index 8059131..0000000 Binary files a/temp-public/images/Klin-20220529-4.jpg and /dev/null differ diff --git a/temp-public/images/Klin-20220529-5.jpg b/temp-public/images/Klin-20220529-5.jpg deleted file mode 100644 index 73b3db4..0000000 Binary files a/temp-public/images/Klin-20220529-5.jpg and /dev/null differ diff --git a/temp-public/images/Klin-20220529-6.jpg b/temp-public/images/Klin-20220529-6.jpg deleted file mode 100644 index 6e395dc..0000000 Binary files a/temp-public/images/Klin-20220529-6.jpg and /dev/null differ diff --git a/temp-public/images/Klin-20220529-7.jpg b/temp-public/images/Klin-20220529-7.jpg deleted file mode 100644 index c5a14d5..0000000 Binary files a/temp-public/images/Klin-20220529-7.jpg and /dev/null differ diff --git a/temp-public/images/Klin-20220529-8.jpg b/temp-public/images/Klin-20220529-8.jpg deleted file mode 100644 index 5c45a65..0000000 Binary files a/temp-public/images/Klin-20220529-8.jpg and /dev/null differ diff --git a/temp-public/images/Klin-20220529-9.jpg b/temp-public/images/Klin-20220529-9.jpg deleted file mode 100644 index 3dd7367..0000000 Binary files a/temp-public/images/Klin-20220529-9.jpg and /dev/null differ diff --git a/temp-public/images/Klin_20241005_2.jpg b/temp-public/images/Klin_20241005_2.jpg deleted file mode 100644 index 0b0eaec..0000000 Binary files a/temp-public/images/Klin_20241005_2.jpg and /dev/null differ diff --git a/temp-public/images/Klin_20241005_5.jpg b/temp-public/images/Klin_20241005_5.jpg deleted file mode 100644 index de5e6bf..0000000 Binary files a/temp-public/images/Klin_20241005_5.jpg and /dev/null differ diff --git a/temp-public/images/Klin_20241005_8.jpg b/temp-public/images/Klin_20241005_8.jpg deleted file mode 100644 index 1dd5699..0000000 Binary files a/temp-public/images/Klin_20241005_8.jpg and /dev/null differ diff --git a/temp-public/images/Kolomna-20210505-1.jpg b/temp-public/images/Kolomna-20210505-1.jpg deleted file mode 100644 index 7c9a123..0000000 Binary files a/temp-public/images/Kolomna-20210505-1.jpg and /dev/null differ diff --git a/temp-public/images/Kolomna-20210505-2.jpg b/temp-public/images/Kolomna-20210505-2.jpg deleted file mode 100644 index 44b6e30..0000000 Binary files a/temp-public/images/Kolomna-20210505-2.jpg and /dev/null differ diff --git a/temp-public/images/Kolomna-20210505-3.jpg b/temp-public/images/Kolomna-20210505-3.jpg deleted file mode 100644 index dd0c4c7..0000000 Binary files a/temp-public/images/Kolomna-20210505-3.jpg and /dev/null differ diff --git a/temp-public/images/Kolomna-20210505-4.jpg b/temp-public/images/Kolomna-20210505-4.jpg deleted file mode 100644 index 39a6b10..0000000 Binary files a/temp-public/images/Kolomna-20210505-4.jpg and /dev/null differ diff --git a/temp-public/images/Kolomna-20210505-5.jpg b/temp-public/images/Kolomna-20210505-5.jpg deleted file mode 100644 index fdac2ea..0000000 Binary files a/temp-public/images/Kolomna-20210505-5.jpg and /dev/null differ diff --git a/temp-public/images/Kolomna-20210505-6.jpg b/temp-public/images/Kolomna-20210505-6.jpg deleted file mode 100644 index 5a521b1..0000000 Binary files a/temp-public/images/Kolomna-20210505-6.jpg and /dev/null differ diff --git a/temp-public/images/Konduki2-20220716-1.jpg b/temp-public/images/Konduki2-20220716-1.jpg deleted file mode 100644 index 597b56d..0000000 Binary files a/temp-public/images/Konduki2-20220716-1.jpg and /dev/null differ diff --git a/temp-public/images/Konduki2-20220716-2.jpg b/temp-public/images/Konduki2-20220716-2.jpg deleted file mode 100644 index 3c73757..0000000 Binary files a/temp-public/images/Konduki2-20220716-2.jpg and /dev/null differ diff --git a/temp-public/images/Konduki2-20220716-3.jpg b/temp-public/images/Konduki2-20220716-3.jpg deleted file mode 100644 index 8c8a327..0000000 Binary files a/temp-public/images/Konduki2-20220716-3.jpg and /dev/null differ diff --git a/temp-public/images/Konduki2-20220716-4.jpg b/temp-public/images/Konduki2-20220716-4.jpg deleted file mode 100644 index 4b74ff6..0000000 Binary files a/temp-public/images/Konduki2-20220716-4.jpg and /dev/null differ diff --git a/temp-public/images/Konduki2-20220716-5.jpg b/temp-public/images/Konduki2-20220716-5.jpg deleted file mode 100644 index 8252a05..0000000 Binary files a/temp-public/images/Konduki2-20220716-5.jpg and /dev/null differ diff --git a/temp-public/images/Konduki2-20220716-6.jpg b/temp-public/images/Konduki2-20220716-6.jpg deleted file mode 100644 index 3eb4a9c..0000000 Binary files a/temp-public/images/Konduki2-20220716-6.jpg and /dev/null differ diff --git a/temp-public/images/Konduki2-20220716-7.jpg b/temp-public/images/Konduki2-20220716-7.jpg deleted file mode 100644 index e0b1b4b..0000000 Binary files a/temp-public/images/Konduki2-20220716-7.jpg and /dev/null differ diff --git a/temp-public/images/Konduki2-20220716-8.jpg b/temp-public/images/Konduki2-20220716-8.jpg deleted file mode 100644 index 9b70f84..0000000 Binary files a/temp-public/images/Konduki2-20220716-8.jpg and /dev/null differ diff --git a/temp-public/images/Konduki2-20220716-9.jpg b/temp-public/images/Konduki2-20220716-9.jpg deleted file mode 100644 index d330727..0000000 Binary files a/temp-public/images/Konduki2-20220716-9.jpg and /dev/null differ diff --git a/temp-public/images/Kopyto-20210506-1.jpg b/temp-public/images/Kopyto-20210506-1.jpg deleted file mode 100644 index 634e104..0000000 Binary files a/temp-public/images/Kopyto-20210506-1.jpg and /dev/null differ diff --git a/temp-public/images/Kopyto-20210506-2.jpg b/temp-public/images/Kopyto-20210506-2.jpg deleted file mode 100644 index 0354e4a..0000000 Binary files a/temp-public/images/Kopyto-20210506-2.jpg and /dev/null differ diff --git a/temp-public/images/Kopyto-20210506-3.jpg b/temp-public/images/Kopyto-20210506-3.jpg deleted file mode 100644 index a8c5629..0000000 Binary files a/temp-public/images/Kopyto-20210506-3.jpg and /dev/null differ diff --git a/temp-public/images/Kopyto-20210506-4.jpg b/temp-public/images/Kopyto-20210506-4.jpg deleted file mode 100644 index 8e4b43b..0000000 Binary files a/temp-public/images/Kopyto-20210506-4.jpg and /dev/null differ diff --git a/temp-public/images/Kurkino-20210914-1.jpg b/temp-public/images/Kurkino-20210914-1.jpg deleted file mode 100644 index cfef38e..0000000 Binary files a/temp-public/images/Kurkino-20210914-1.jpg and /dev/null differ diff --git a/temp-public/images/Kurkino-20210914-10.jpg b/temp-public/images/Kurkino-20210914-10.jpg deleted file mode 100644 index 7c3d118..0000000 Binary files a/temp-public/images/Kurkino-20210914-10.jpg and /dev/null differ diff --git a/temp-public/images/Kurkino-20210914-11.jpg b/temp-public/images/Kurkino-20210914-11.jpg deleted file mode 100644 index 9da59b9..0000000 Binary files a/temp-public/images/Kurkino-20210914-11.jpg and /dev/null differ diff --git a/temp-public/images/Kurkino-20210914-12.jpg b/temp-public/images/Kurkino-20210914-12.jpg deleted file mode 100644 index 78d8a01..0000000 Binary files a/temp-public/images/Kurkino-20210914-12.jpg and /dev/null differ diff --git a/temp-public/images/Kurkino-20210914-13.jpg b/temp-public/images/Kurkino-20210914-13.jpg deleted file mode 100644 index bf8cd48..0000000 Binary files a/temp-public/images/Kurkino-20210914-13.jpg and /dev/null differ diff --git a/temp-public/images/Kurkino-20210914-2.jpg b/temp-public/images/Kurkino-20210914-2.jpg deleted file mode 100644 index 52531b8..0000000 Binary files a/temp-public/images/Kurkino-20210914-2.jpg and /dev/null differ diff --git a/temp-public/images/Kurkino-20210914-3.jpg b/temp-public/images/Kurkino-20210914-3.jpg deleted file mode 100644 index 1a52b41..0000000 Binary files a/temp-public/images/Kurkino-20210914-3.jpg and /dev/null differ diff --git a/temp-public/images/Kurkino-20210914-4.jpg b/temp-public/images/Kurkino-20210914-4.jpg deleted file mode 100644 index 08245a1..0000000 Binary files a/temp-public/images/Kurkino-20210914-4.jpg and /dev/null differ diff --git a/temp-public/images/Kurkino-20210914-5.jpg b/temp-public/images/Kurkino-20210914-5.jpg deleted file mode 100644 index a75d3f5..0000000 Binary files a/temp-public/images/Kurkino-20210914-5.jpg and /dev/null differ diff --git a/temp-public/images/Kurkino-20210914-6.jpg b/temp-public/images/Kurkino-20210914-6.jpg deleted file mode 100644 index 0033f73..0000000 Binary files a/temp-public/images/Kurkino-20210914-6.jpg and /dev/null differ diff --git a/temp-public/images/Kurkino-20210914-7.jpg b/temp-public/images/Kurkino-20210914-7.jpg deleted file mode 100644 index 6b79aeb..0000000 Binary files a/temp-public/images/Kurkino-20210914-7.jpg and /dev/null differ diff --git a/temp-public/images/Kurkino-20210914-8.jpg b/temp-public/images/Kurkino-20210914-8.jpg deleted file mode 100644 index 95ab740..0000000 Binary files a/temp-public/images/Kurkino-20210914-8.jpg and /dev/null differ diff --git a/temp-public/images/Kurkino-20210914-9.jpg b/temp-public/images/Kurkino-20210914-9.jpg deleted file mode 100644 index 49eff14..0000000 Binary files a/temp-public/images/Kurkino-20210914-9.jpg and /dev/null differ diff --git a/temp-public/images/Lager-20240113-1.jpg b/temp-public/images/Lager-20240113-1.jpg deleted file mode 100644 index 3794d09..0000000 Binary files a/temp-public/images/Lager-20240113-1.jpg and /dev/null differ diff --git a/temp-public/images/Lager-20240113-2.jpg b/temp-public/images/Lager-20240113-2.jpg deleted file mode 100644 index 309d066..0000000 Binary files a/temp-public/images/Lager-20240113-2.jpg and /dev/null differ diff --git a/temp-public/images/Lager-20240113-3.jpg b/temp-public/images/Lager-20240113-3.jpg deleted file mode 100644 index 21cb208..0000000 Binary files a/temp-public/images/Lager-20240113-3.jpg and /dev/null differ diff --git a/temp-public/images/Lager-20240113-4.jpg b/temp-public/images/Lager-20240113-4.jpg deleted file mode 100644 index ff82356..0000000 Binary files a/temp-public/images/Lager-20240113-4.jpg and /dev/null differ diff --git a/temp-public/images/Lager-20240113-5.jpg b/temp-public/images/Lager-20240113-5.jpg deleted file mode 100644 index b462c9f..0000000 Binary files a/temp-public/images/Lager-20240113-5.jpg and /dev/null differ diff --git a/temp-public/images/Lager-20240113-6.jpg b/temp-public/images/Lager-20240113-6.jpg deleted file mode 100644 index 9011ed1..0000000 Binary files a/temp-public/images/Lager-20240113-6.jpg and /dev/null differ diff --git a/temp-public/images/Lenivec-20210507-1.jpg b/temp-public/images/Lenivec-20210507-1.jpg deleted file mode 100644 index 6375c96..0000000 Binary files a/temp-public/images/Lenivec-20210507-1.jpg and /dev/null differ diff --git a/temp-public/images/Lenivec-20210507-2.jpg b/temp-public/images/Lenivec-20210507-2.jpg deleted file mode 100644 index c4430a8..0000000 Binary files a/temp-public/images/Lenivec-20210507-2.jpg and /dev/null differ diff --git a/temp-public/images/Lenivec-20210507-3.jpg b/temp-public/images/Lenivec-20210507-3.jpg deleted file mode 100644 index 6d7fa1b..0000000 Binary files a/temp-public/images/Lenivec-20210507-3.jpg and /dev/null differ diff --git a/temp-public/images/Lenivec-20210507-4.jpg b/temp-public/images/Lenivec-20210507-4.jpg deleted file mode 100644 index dd8c814..0000000 Binary files a/temp-public/images/Lenivec-20210507-4.jpg and /dev/null differ diff --git a/temp-public/images/Lenivec-20210507-5.jpg b/temp-public/images/Lenivec-20210507-5.jpg deleted file mode 100644 index 621ab66..0000000 Binary files a/temp-public/images/Lenivec-20210507-5.jpg and /dev/null differ diff --git a/temp-public/images/Lenivec-20210507-6.jpg b/temp-public/images/Lenivec-20210507-6.jpg deleted file mode 100644 index 2aa86ac..0000000 Binary files a/temp-public/images/Lenivec-20210507-6.jpg and /dev/null differ diff --git a/temp-public/images/Lenivec-20210507-7.jpg b/temp-public/images/Lenivec-20210507-7.jpg deleted file mode 100644 index b72e4f7..0000000 Binary files a/temp-public/images/Lenivec-20210507-7.jpg and /dev/null differ diff --git a/temp-public/images/Lenivec-20210507-8.jpg b/temp-public/images/Lenivec-20210507-8.jpg deleted file mode 100644 index 02a65aa..0000000 Binary files a/temp-public/images/Lenivec-20210507-8.jpg and /dev/null differ diff --git a/temp-public/images/Lenivec-20210507-9.jpg b/temp-public/images/Lenivec-20210507-9.jpg deleted file mode 100644 index 85e3d8d..0000000 Binary files a/temp-public/images/Lenivec-20210507-9.jpg and /dev/null differ diff --git a/temp-public/images/Mojaisk-20221022-1.jpg b/temp-public/images/Mojaisk-20221022-1.jpg deleted file mode 100644 index 2e85448..0000000 Binary files a/temp-public/images/Mojaisk-20221022-1.jpg and /dev/null differ diff --git a/temp-public/images/Mojaisk-20221022-2.jpg b/temp-public/images/Mojaisk-20221022-2.jpg deleted file mode 100644 index ab03b49..0000000 Binary files a/temp-public/images/Mojaisk-20221022-2.jpg and /dev/null differ diff --git a/temp-public/images/Mojaisk-20221022-3.jpg b/temp-public/images/Mojaisk-20221022-3.jpg deleted file mode 100644 index 538954a..0000000 Binary files a/temp-public/images/Mojaisk-20221022-3.jpg and /dev/null differ diff --git a/temp-public/images/Morozki-20211019-2.jpg b/temp-public/images/Morozki-20211019-2.jpg deleted file mode 100644 index cf516e0..0000000 Binary files a/temp-public/images/Morozki-20211019-2.jpg and /dev/null differ diff --git a/temp-public/images/Morozki-20211019-3.jpg b/temp-public/images/Morozki-20211019-3.jpg deleted file mode 100644 index d39cd35..0000000 Binary files a/temp-public/images/Morozki-20211019-3.jpg and /dev/null differ diff --git a/temp-public/images/Morozki-20211019-4.jpg b/temp-public/images/Morozki-20211019-4.jpg deleted file mode 100644 index 7f97ca0..0000000 Binary files a/temp-public/images/Morozki-20211019-4.jpg and /dev/null differ diff --git a/temp-public/images/Morozki-20211019-6.jpg b/temp-public/images/Morozki-20211019-6.jpg deleted file mode 100644 index c39d438..0000000 Binary files a/temp-public/images/Morozki-20211019-6.jpg and /dev/null differ diff --git a/temp-public/images/Morozki-20211019-8.jpg b/temp-public/images/Morozki-20211019-8.jpg deleted file mode 100644 index b1c25b5..0000000 Binary files a/temp-public/images/Morozki-20211019-8.jpg and /dev/null differ diff --git a/temp-public/images/Morozki-20301219-2.jpg b/temp-public/images/Morozki-20301219-2.jpg deleted file mode 100644 index cf516e0..0000000 Binary files a/temp-public/images/Morozki-20301219-2.jpg and /dev/null differ diff --git a/temp-public/images/Morozki-20301219-3.jpg b/temp-public/images/Morozki-20301219-3.jpg deleted file mode 100644 index d39cd35..0000000 Binary files a/temp-public/images/Morozki-20301219-3.jpg and /dev/null differ diff --git a/temp-public/images/Morozki-20301219-4.jpg b/temp-public/images/Morozki-20301219-4.jpg deleted file mode 100644 index 7f97ca0..0000000 Binary files a/temp-public/images/Morozki-20301219-4.jpg and /dev/null differ diff --git a/temp-public/images/Morozki-20301219-6.jpg b/temp-public/images/Morozki-20301219-6.jpg deleted file mode 100644 index c39d438..0000000 Binary files a/temp-public/images/Morozki-20301219-6.jpg and /dev/null differ diff --git a/temp-public/images/Morozki-20301219-8.jpg b/temp-public/images/Morozki-20301219-8.jpg deleted file mode 100644 index b1c25b5..0000000 Binary files a/temp-public/images/Morozki-20301219-8.jpg and /dev/null differ diff --git a/temp-public/images/Moscow-20230930-1.jpg b/temp-public/images/Moscow-20230930-1.jpg deleted file mode 100644 index 8ac7661..0000000 Binary files a/temp-public/images/Moscow-20230930-1.jpg and /dev/null differ diff --git a/temp-public/images/Moscow-20230930-3.jpg b/temp-public/images/Moscow-20230930-3.jpg deleted file mode 100644 index 1fe6dbe..0000000 Binary files a/temp-public/images/Moscow-20230930-3.jpg and /dev/null differ diff --git a/temp-public/images/Moscow-20230930-4.jpg b/temp-public/images/Moscow-20230930-4.jpg deleted file mode 100644 index 90aef3f..0000000 Binary files a/temp-public/images/Moscow-20230930-4.jpg and /dev/null differ diff --git a/temp-public/images/Moscow-20230930-5.jpg b/temp-public/images/Moscow-20230930-5.jpg deleted file mode 100644 index 2472823..0000000 Binary files a/temp-public/images/Moscow-20230930-5.jpg and /dev/null differ diff --git a/temp-public/images/Moscow-20230930-6.jpg b/temp-public/images/Moscow-20230930-6.jpg deleted file mode 100644 index 9b8d6f0..0000000 Binary files a/temp-public/images/Moscow-20230930-6.jpg and /dev/null differ diff --git a/temp-public/images/Msk-Pet_20240606_1.jpg b/temp-public/images/Msk-Pet_20240606_1.jpg deleted file mode 100644 index 26ba8d5..0000000 Binary files a/temp-public/images/Msk-Pet_20240606_1.jpg and /dev/null differ diff --git a/temp-public/images/Msk-Pet_20240606_2.jpg b/temp-public/images/Msk-Pet_20240606_2.jpg deleted file mode 100644 index df28068..0000000 Binary files a/temp-public/images/Msk-Pet_20240606_2.jpg and /dev/null differ diff --git a/temp-public/images/Msk-Pet_20240606_3.jpg b/temp-public/images/Msk-Pet_20240606_3.jpg deleted file mode 100644 index cdb9996..0000000 Binary files a/temp-public/images/Msk-Pet_20240606_3.jpg and /dev/null differ diff --git a/temp-public/images/Msk-Pet_20240606_4.jpg b/temp-public/images/Msk-Pet_20240606_4.jpg deleted file mode 100644 index c1460ad..0000000 Binary files a/temp-public/images/Msk-Pet_20240606_4.jpg and /dev/null differ diff --git a/temp-public/images/Msk-Pet_20240606_5.jpg b/temp-public/images/Msk-Pet_20240606_5.jpg deleted file mode 100644 index de23141..0000000 Binary files a/temp-public/images/Msk-Pet_20240606_5.jpg and /dev/null differ diff --git a/temp-public/images/Msk-Pet_20240606_6.jpg b/temp-public/images/Msk-Pet_20240606_6.jpg deleted file mode 100644 index 4a392f6..0000000 Binary files a/temp-public/images/Msk-Pet_20240606_6.jpg and /dev/null differ diff --git a/temp-public/images/Murmansk-20220129-1.jpg b/temp-public/images/Murmansk-20220129-1.jpg deleted file mode 100644 index 87cd98b..0000000 Binary files a/temp-public/images/Murmansk-20220129-1.jpg and /dev/null differ diff --git a/temp-public/images/Murmansk-20220129-10.jpg b/temp-public/images/Murmansk-20220129-10.jpg deleted file mode 100644 index 223769e..0000000 Binary files a/temp-public/images/Murmansk-20220129-10.jpg and /dev/null differ diff --git a/temp-public/images/Murmansk-20220129-2.jpg b/temp-public/images/Murmansk-20220129-2.jpg deleted file mode 100644 index bfdacc8..0000000 Binary files a/temp-public/images/Murmansk-20220129-2.jpg and /dev/null differ diff --git a/temp-public/images/Murmansk-20220129-3.jpg b/temp-public/images/Murmansk-20220129-3.jpg deleted file mode 100644 index 4596ac1..0000000 Binary files a/temp-public/images/Murmansk-20220129-3.jpg and /dev/null differ diff --git a/temp-public/images/Murmansk-20220129-4.jpg b/temp-public/images/Murmansk-20220129-4.jpg deleted file mode 100644 index 80d03a3..0000000 Binary files a/temp-public/images/Murmansk-20220129-4.jpg and /dev/null differ diff --git a/temp-public/images/Murmansk-20220129-5.jpg b/temp-public/images/Murmansk-20220129-5.jpg deleted file mode 100644 index 703dcf6..0000000 Binary files a/temp-public/images/Murmansk-20220129-5.jpg and /dev/null differ diff --git a/temp-public/images/Murmansk-20220129-6.jpg b/temp-public/images/Murmansk-20220129-6.jpg deleted file mode 100644 index 77d3dec..0000000 Binary files a/temp-public/images/Murmansk-20220129-6.jpg and /dev/null differ diff --git a/temp-public/images/Murmansk-20220129-7.jpg b/temp-public/images/Murmansk-20220129-7.jpg deleted file mode 100644 index d8f36a4..0000000 Binary files a/temp-public/images/Murmansk-20220129-7.jpg and /dev/null differ diff --git a/temp-public/images/Murmansk-20220129-8.jpg b/temp-public/images/Murmansk-20220129-8.jpg deleted file mode 100644 index 006aaee..0000000 Binary files a/temp-public/images/Murmansk-20220129-8.jpg and /dev/null differ diff --git a/temp-public/images/Murmansk-20220129-9.jpg b/temp-public/images/Murmansk-20220129-9.jpg deleted file mode 100644 index a1f0718..0000000 Binary files a/temp-public/images/Murmansk-20220129-9.jpg and /dev/null differ diff --git a/temp-public/images/NG25_20241214_1.jpg b/temp-public/images/NG25_20241214_1.jpg deleted file mode 100644 index 56ae7ca..0000000 Binary files a/temp-public/images/NG25_20241214_1.jpg and /dev/null differ diff --git a/temp-public/images/NG25_20241214_2.jpg b/temp-public/images/NG25_20241214_2.jpg deleted file mode 100644 index 4466351..0000000 Binary files a/temp-public/images/NG25_20241214_2.jpg and /dev/null differ diff --git a/temp-public/images/NG25_20241214_3.jpg b/temp-public/images/NG25_20241214_3.jpg deleted file mode 100644 index 32c7bb0..0000000 Binary files a/temp-public/images/NG25_20241214_3.jpg and /dev/null differ diff --git a/temp-public/images/NG25_20241214_4.jpg b/temp-public/images/NG25_20241214_4.jpg deleted file mode 100644 index e0f5d5b..0000000 Binary files a/temp-public/images/NG25_20241214_4.jpg and /dev/null differ diff --git a/temp-public/images/NewKBR-20220721-1.jpg b/temp-public/images/NewKBR-20220721-1.jpg deleted file mode 100644 index 93213ee..0000000 Binary files a/temp-public/images/NewKBR-20220721-1.jpg and /dev/null differ diff --git a/temp-public/images/NewKBR-20220721-10.jpg b/temp-public/images/NewKBR-20220721-10.jpg deleted file mode 100644 index af68ae5..0000000 Binary files a/temp-public/images/NewKBR-20220721-10.jpg and /dev/null differ diff --git a/temp-public/images/NewKBR-20220721-11.jpg b/temp-public/images/NewKBR-20220721-11.jpg deleted file mode 100644 index 1de51bd..0000000 Binary files a/temp-public/images/NewKBR-20220721-11.jpg and /dev/null differ diff --git a/temp-public/images/NewKBR-20220721-12.jpg b/temp-public/images/NewKBR-20220721-12.jpg deleted file mode 100644 index 74691a8..0000000 Binary files a/temp-public/images/NewKBR-20220721-12.jpg and /dev/null differ diff --git a/temp-public/images/NewKBR-20220721-13.jpg b/temp-public/images/NewKBR-20220721-13.jpg deleted file mode 100644 index 850aada..0000000 Binary files a/temp-public/images/NewKBR-20220721-13.jpg and /dev/null differ diff --git a/temp-public/images/NewKBR-20220721-14.jpg b/temp-public/images/NewKBR-20220721-14.jpg deleted file mode 100644 index 28a8585..0000000 Binary files a/temp-public/images/NewKBR-20220721-14.jpg and /dev/null differ diff --git a/temp-public/images/NewKBR-20220721-2.jpg b/temp-public/images/NewKBR-20220721-2.jpg deleted file mode 100644 index 43e4883..0000000 Binary files a/temp-public/images/NewKBR-20220721-2.jpg and /dev/null differ diff --git a/temp-public/images/NewKBR-20220721-3.jpg b/temp-public/images/NewKBR-20220721-3.jpg deleted file mode 100644 index 3fab444..0000000 Binary files a/temp-public/images/NewKBR-20220721-3.jpg and /dev/null differ diff --git a/temp-public/images/NewKBR-20220721-4.jpg b/temp-public/images/NewKBR-20220721-4.jpg deleted file mode 100644 index 3410629..0000000 Binary files a/temp-public/images/NewKBR-20220721-4.jpg and /dev/null differ diff --git a/temp-public/images/NewKBR-20220721-5.jpg b/temp-public/images/NewKBR-20220721-5.jpg deleted file mode 100644 index 2a33213..0000000 Binary files a/temp-public/images/NewKBR-20220721-5.jpg and /dev/null differ diff --git a/temp-public/images/NewKBR-20220721-6.jpg b/temp-public/images/NewKBR-20220721-6.jpg deleted file mode 100644 index 27a3e54..0000000 Binary files a/temp-public/images/NewKBR-20220721-6.jpg and /dev/null differ diff --git a/temp-public/images/NewKBR-20220721-7.jpg b/temp-public/images/NewKBR-20220721-7.jpg deleted file mode 100644 index 78fc875..0000000 Binary files a/temp-public/images/NewKBR-20220721-7.jpg and /dev/null differ diff --git a/temp-public/images/NewKBR-20220721-8.jpg b/temp-public/images/NewKBR-20220721-8.jpg deleted file mode 100644 index c42972a..0000000 Binary files a/temp-public/images/NewKBR-20220721-8.jpg and /dev/null differ diff --git a/temp-public/images/NewKBR-20220721-9.jpg b/temp-public/images/NewKBR-20220721-9.jpg deleted file mode 100644 index 04a7d6c..0000000 Binary files a/temp-public/images/NewKBR-20220721-9.jpg and /dev/null differ diff --git a/temp-public/images/Ostrova-20220714-1.jpg b/temp-public/images/Ostrova-20220714-1.jpg deleted file mode 100644 index 008821e..0000000 Binary files a/temp-public/images/Ostrova-20220714-1.jpg and /dev/null differ diff --git a/temp-public/images/Ostrova-20220714-10.jpg b/temp-public/images/Ostrova-20220714-10.jpg deleted file mode 100644 index 2b64692..0000000 Binary files a/temp-public/images/Ostrova-20220714-10.jpg and /dev/null differ diff --git a/temp-public/images/Ostrova-20220714-11.jpg b/temp-public/images/Ostrova-20220714-11.jpg deleted file mode 100644 index 71db61c..0000000 Binary files a/temp-public/images/Ostrova-20220714-11.jpg and /dev/null differ diff --git a/temp-public/images/Ostrova-20220714-2.jpg b/temp-public/images/Ostrova-20220714-2.jpg deleted file mode 100644 index 4461ee1..0000000 Binary files a/temp-public/images/Ostrova-20220714-2.jpg and /dev/null differ diff --git a/temp-public/images/Ostrova-20220714-3.jpg b/temp-public/images/Ostrova-20220714-3.jpg deleted file mode 100644 index 541a41f..0000000 Binary files a/temp-public/images/Ostrova-20220714-3.jpg and /dev/null differ diff --git a/temp-public/images/Ostrova-20220714-4.jpg b/temp-public/images/Ostrova-20220714-4.jpg deleted file mode 100644 index 85919bb..0000000 Binary files a/temp-public/images/Ostrova-20220714-4.jpg and /dev/null differ diff --git a/temp-public/images/Ostrova-20220714-5.jpg b/temp-public/images/Ostrova-20220714-5.jpg deleted file mode 100644 index cd832c3..0000000 Binary files a/temp-public/images/Ostrova-20220714-5.jpg and /dev/null differ diff --git a/temp-public/images/Ostrova-20220714-6.jpg b/temp-public/images/Ostrova-20220714-6.jpg deleted file mode 100644 index 84dfad6..0000000 Binary files a/temp-public/images/Ostrova-20220714-6.jpg and /dev/null differ diff --git a/temp-public/images/Ostrova-20220714-7.jpg b/temp-public/images/Ostrova-20220714-7.jpg deleted file mode 100644 index afe8b40..0000000 Binary files a/temp-public/images/Ostrova-20220714-7.jpg and /dev/null differ diff --git a/temp-public/images/Ostrova-20220714-8.jpg b/temp-public/images/Ostrova-20220714-8.jpg deleted file mode 100644 index 3919a92..0000000 Binary files a/temp-public/images/Ostrova-20220714-8.jpg and /dev/null differ diff --git a/temp-public/images/Ostrova-20220714-9.jpg b/temp-public/images/Ostrova-20220714-9.jpg deleted file mode 100644 index da89dfa..0000000 Binary files a/temp-public/images/Ostrova-20220714-9.jpg and /dev/null differ diff --git a/temp-public/images/Otkryt-20240210-1.jpg b/temp-public/images/Otkryt-20240210-1.jpg deleted file mode 100644 index b61d5d5..0000000 Binary files a/temp-public/images/Otkryt-20240210-1.jpg and /dev/null differ diff --git a/temp-public/images/Otkryt-20240210-2.jpg b/temp-public/images/Otkryt-20240210-2.jpg deleted file mode 100644 index a147103..0000000 Binary files a/temp-public/images/Otkryt-20240210-2.jpg and /dev/null differ diff --git a/temp-public/images/Otkryt-20240210-3.jpg b/temp-public/images/Otkryt-20240210-3.jpg deleted file mode 100644 index 390f5ee..0000000 Binary files a/temp-public/images/Otkryt-20240210-3.jpg and /dev/null differ diff --git a/temp-public/images/Otkryt-20240309-1.jpg b/temp-public/images/Otkryt-20240309-1.jpg deleted file mode 100644 index f5e8122..0000000 Binary files a/temp-public/images/Otkryt-20240309-1.jpg and /dev/null differ diff --git a/temp-public/images/Otkryt-20240309-2.jpg b/temp-public/images/Otkryt-20240309-2.jpg deleted file mode 100644 index ff3e6b0..0000000 Binary files a/temp-public/images/Otkryt-20240309-2.jpg and /dev/null differ diff --git a/temp-public/images/Otkryt-20240309-3.jpg b/temp-public/images/Otkryt-20240309-3.jpg deleted file mode 100644 index 4640c3a..0000000 Binary files a/temp-public/images/Otkryt-20240309-3.jpg and /dev/null differ diff --git a/temp-public/images/Otkryt-20240309-4.jpg b/temp-public/images/Otkryt-20240309-4.jpg deleted file mode 100644 index 054b5b1..0000000 Binary files a/temp-public/images/Otkryt-20240309-4.jpg and /dev/null differ diff --git a/temp-public/images/Otkryt-20240309-5.jpg b/temp-public/images/Otkryt-20240309-5.jpg deleted file mode 100644 index 0a2a882..0000000 Binary files a/temp-public/images/Otkryt-20240309-5.jpg and /dev/null differ diff --git a/temp-public/images/Otkryt-20240309-6.jpg b/temp-public/images/Otkryt-20240309-6.jpg deleted file mode 100644 index 3db4145..0000000 Binary files a/temp-public/images/Otkryt-20240309-6.jpg and /dev/null differ diff --git a/temp-public/images/Otkryt-20240309-7.jpg b/temp-public/images/Otkryt-20240309-7.jpg deleted file mode 100644 index c6feca4..0000000 Binary files a/temp-public/images/Otkryt-20240309-7.jpg and /dev/null differ diff --git a/temp-public/images/Otkryt-20240309-8.jpg b/temp-public/images/Otkryt-20240309-8.jpg deleted file mode 100644 index 42dae9e..0000000 Binary files a/temp-public/images/Otkryt-20240309-8.jpg and /dev/null differ diff --git a/temp-public/images/Panfil-20211113-1.jpg b/temp-public/images/Panfil-20211113-1.jpg deleted file mode 100644 index 5482932..0000000 Binary files a/temp-public/images/Panfil-20211113-1.jpg and /dev/null differ diff --git a/temp-public/images/Panfil-20211113-2.jpg b/temp-public/images/Panfil-20211113-2.jpg deleted file mode 100644 index 378c897..0000000 Binary files a/temp-public/images/Panfil-20211113-2.jpg and /dev/null differ diff --git a/temp-public/images/Panfil-20211113-3.jpg b/temp-public/images/Panfil-20211113-3.jpg deleted file mode 100644 index 817c16c..0000000 Binary files a/temp-public/images/Panfil-20211113-3.jpg and /dev/null differ diff --git a/temp-public/images/Panfil-20211113-4.jpg b/temp-public/images/Panfil-20211113-4.jpg deleted file mode 100644 index d62a1be..0000000 Binary files a/temp-public/images/Panfil-20211113-4.jpg and /dev/null differ diff --git a/temp-public/images/Panfil-20211113-5.jpg b/temp-public/images/Panfil-20211113-5.jpg deleted file mode 100644 index 94f69a3..0000000 Binary files a/temp-public/images/Panfil-20211113-5.jpg and /dev/null differ diff --git a/temp-public/images/Peremil-20211021-2.jpg b/temp-public/images/Peremil-20211021-2.jpg deleted file mode 100644 index 10e1433..0000000 Binary files a/temp-public/images/Peremil-20211021-2.jpg and /dev/null differ diff --git a/temp-public/images/Peremil-20211021-3.jpg b/temp-public/images/Peremil-20211021-3.jpg deleted file mode 100644 index 2a93c1c..0000000 Binary files a/temp-public/images/Peremil-20211021-3.jpg and /dev/null differ diff --git a/temp-public/images/Peremil-20211021-4.jpg b/temp-public/images/Peremil-20211021-4.jpg deleted file mode 100644 index 60ca0e4..0000000 Binary files a/temp-public/images/Peremil-20211021-4.jpg and /dev/null differ diff --git a/temp-public/images/Peremil-20211021-5.jpg b/temp-public/images/Peremil-20211021-5.jpg deleted file mode 100644 index f099182..0000000 Binary files a/temp-public/images/Peremil-20211021-5.jpg and /dev/null differ diff --git a/temp-public/images/Peremil-20211031-1.jpg b/temp-public/images/Peremil-20211031-1.jpg deleted file mode 100644 index dce564c..0000000 Binary files a/temp-public/images/Peremil-20211031-1.jpg and /dev/null differ diff --git a/temp-public/images/Peremil-20211031-2.jpg b/temp-public/images/Peremil-20211031-2.jpg deleted file mode 100644 index 10e1433..0000000 Binary files a/temp-public/images/Peremil-20211031-2.jpg and /dev/null differ diff --git a/temp-public/images/Peremil-20211031-3.jpg b/temp-public/images/Peremil-20211031-3.jpg deleted file mode 100644 index 2a93c1c..0000000 Binary files a/temp-public/images/Peremil-20211031-3.jpg and /dev/null differ diff --git a/temp-public/images/Peremil-20211031-4.jpg b/temp-public/images/Peremil-20211031-4.jpg deleted file mode 100644 index 60ca0e4..0000000 Binary files a/temp-public/images/Peremil-20211031-4.jpg and /dev/null differ diff --git a/temp-public/images/Peremil-20211031-5.jpg b/temp-public/images/Peremil-20211031-5.jpg deleted file mode 100644 index f099182..0000000 Binary files a/temp-public/images/Peremil-20211031-5.jpg and /dev/null differ diff --git a/temp-public/images/Piknik-20221001-1.jpg b/temp-public/images/Piknik-20221001-1.jpg deleted file mode 100644 index badc874..0000000 Binary files a/temp-public/images/Piknik-20221001-1.jpg and /dev/null differ diff --git a/temp-public/images/Piknik-20221001-2.jpg b/temp-public/images/Piknik-20221001-2.jpg deleted file mode 100644 index 99ba9f2..0000000 Binary files a/temp-public/images/Piknik-20221001-2.jpg and /dev/null differ diff --git a/temp-public/images/Piknik-20221001-3.jpg b/temp-public/images/Piknik-20221001-3.jpg deleted file mode 100644 index 89ddbf3..0000000 Binary files a/temp-public/images/Piknik-20221001-3.jpg and /dev/null differ diff --git a/temp-public/images/Piknik-20221001-4.jpg b/temp-public/images/Piknik-20221001-4.jpg deleted file mode 100644 index 92bfad6..0000000 Binary files a/temp-public/images/Piknik-20221001-4.jpg and /dev/null differ diff --git a/temp-public/images/Piknik-20221001-5.jpg b/temp-public/images/Piknik-20221001-5.jpg deleted file mode 100644 index 7efad6b..0000000 Binary files a/temp-public/images/Piknik-20221001-5.jpg and /dev/null differ diff --git a/temp-public/images/Piknik-20221001-6.jpg b/temp-public/images/Piknik-20221001-6.jpg deleted file mode 100644 index cf2830d..0000000 Binary files a/temp-public/images/Piknik-20221001-6.jpg and /dev/null differ diff --git a/temp-public/images/Piknik-20221001-7.jpg b/temp-public/images/Piknik-20221001-7.jpg deleted file mode 100644 index 4c1671e..0000000 Binary files a/temp-public/images/Piknik-20221001-7.jpg and /dev/null differ diff --git a/temp-public/images/Piknik-20221001-8.jpg b/temp-public/images/Piknik-20221001-8.jpg deleted file mode 100644 index fb09755..0000000 Binary files a/temp-public/images/Piknik-20221001-8.jpg and /dev/null differ diff --git a/temp-public/images/Piter-20230320-1.jpg b/temp-public/images/Piter-20230320-1.jpg deleted file mode 100644 index 8eaade4..0000000 Binary files a/temp-public/images/Piter-20230320-1.jpg and /dev/null differ diff --git a/temp-public/images/Piter-20230320-10.jpg b/temp-public/images/Piter-20230320-10.jpg deleted file mode 100644 index 255e716..0000000 Binary files a/temp-public/images/Piter-20230320-10.jpg and /dev/null differ diff --git a/temp-public/images/Piter-20230320-11.jpg b/temp-public/images/Piter-20230320-11.jpg deleted file mode 100644 index b5f6bbf..0000000 Binary files a/temp-public/images/Piter-20230320-11.jpg and /dev/null differ diff --git a/temp-public/images/Piter-20230320-12.jpg b/temp-public/images/Piter-20230320-12.jpg deleted file mode 100644 index 27c22e5..0000000 Binary files a/temp-public/images/Piter-20230320-12.jpg and /dev/null differ diff --git a/temp-public/images/Piter-20230320-13.jpg b/temp-public/images/Piter-20230320-13.jpg deleted file mode 100644 index 0ea1387..0000000 Binary files a/temp-public/images/Piter-20230320-13.jpg and /dev/null differ diff --git a/temp-public/images/Piter-20230320-14.jpg b/temp-public/images/Piter-20230320-14.jpg deleted file mode 100644 index 05b2df1..0000000 Binary files a/temp-public/images/Piter-20230320-14.jpg and /dev/null differ diff --git a/temp-public/images/Piter-20230320-15.jpg b/temp-public/images/Piter-20230320-15.jpg deleted file mode 100644 index 36de4f9..0000000 Binary files a/temp-public/images/Piter-20230320-15.jpg and /dev/null differ diff --git a/temp-public/images/Piter-20230320-16.jpg b/temp-public/images/Piter-20230320-16.jpg deleted file mode 100644 index b455eaf..0000000 Binary files a/temp-public/images/Piter-20230320-16.jpg and /dev/null differ diff --git a/temp-public/images/Piter-20230320-2.jpg b/temp-public/images/Piter-20230320-2.jpg deleted file mode 100644 index 4f92453..0000000 Binary files a/temp-public/images/Piter-20230320-2.jpg and /dev/null differ diff --git a/temp-public/images/Piter-20230320-3.jpg b/temp-public/images/Piter-20230320-3.jpg deleted file mode 100644 index b8eb6a3..0000000 Binary files a/temp-public/images/Piter-20230320-3.jpg and /dev/null differ diff --git a/temp-public/images/Piter-20230320-4.jpg b/temp-public/images/Piter-20230320-4.jpg deleted file mode 100644 index 65d98eb..0000000 Binary files a/temp-public/images/Piter-20230320-4.jpg and /dev/null differ diff --git a/temp-public/images/Piter-20230320-5.jpg b/temp-public/images/Piter-20230320-5.jpg deleted file mode 100644 index 08141d8..0000000 Binary files a/temp-public/images/Piter-20230320-5.jpg and /dev/null differ diff --git a/temp-public/images/Piter-20230320-6.jpg b/temp-public/images/Piter-20230320-6.jpg deleted file mode 100644 index e296f00..0000000 Binary files a/temp-public/images/Piter-20230320-6.jpg and /dev/null differ diff --git a/temp-public/images/Piter-20230320-7.jpg b/temp-public/images/Piter-20230320-7.jpg deleted file mode 100644 index 76ef107..0000000 Binary files a/temp-public/images/Piter-20230320-7.jpg and /dev/null differ diff --git a/temp-public/images/Piter-20230320-8.jpg b/temp-public/images/Piter-20230320-8.jpg deleted file mode 100644 index 96f526e..0000000 Binary files a/temp-public/images/Piter-20230320-8.jpg and /dev/null differ diff --git a/temp-public/images/Piter-20230320-9.jpg b/temp-public/images/Piter-20230320-9.jpg deleted file mode 100644 index 2150360..0000000 Binary files a/temp-public/images/Piter-20230320-9.jpg and /dev/null differ diff --git a/temp-public/images/Podlodka-20220904-5.jpg b/temp-public/images/Podlodka-20220904-5.jpg deleted file mode 100644 index f4971a1..0000000 Binary files a/temp-public/images/Podlodka-20220904-5.jpg and /dev/null differ diff --git a/temp-public/images/Podolsk-20211114-1.jpg b/temp-public/images/Podolsk-20211114-1.jpg deleted file mode 100644 index 24cec2f..0000000 Binary files a/temp-public/images/Podolsk-20211114-1.jpg and /dev/null differ diff --git a/temp-public/images/Podolsk-20211114-10.jpg b/temp-public/images/Podolsk-20211114-10.jpg deleted file mode 100644 index ba476f5..0000000 Binary files a/temp-public/images/Podolsk-20211114-10.jpg and /dev/null differ diff --git a/temp-public/images/Podolsk-20211114-11.jpg b/temp-public/images/Podolsk-20211114-11.jpg deleted file mode 100644 index e7ae4d0..0000000 Binary files a/temp-public/images/Podolsk-20211114-11.jpg and /dev/null differ diff --git a/temp-public/images/Podolsk-20211114-2.jpg b/temp-public/images/Podolsk-20211114-2.jpg deleted file mode 100644 index c4ac9a6..0000000 Binary files a/temp-public/images/Podolsk-20211114-2.jpg and /dev/null differ diff --git a/temp-public/images/Podolsk-20211114-3.jpg b/temp-public/images/Podolsk-20211114-3.jpg deleted file mode 100644 index 9958f4f..0000000 Binary files a/temp-public/images/Podolsk-20211114-3.jpg and /dev/null differ diff --git a/temp-public/images/Podolsk-20211114-4.jpg b/temp-public/images/Podolsk-20211114-4.jpg deleted file mode 100644 index 7d4e639..0000000 Binary files a/temp-public/images/Podolsk-20211114-4.jpg and /dev/null differ diff --git a/temp-public/images/Podolsk-20211114-5.jpg b/temp-public/images/Podolsk-20211114-5.jpg deleted file mode 100644 index b393338..0000000 Binary files a/temp-public/images/Podolsk-20211114-5.jpg and /dev/null differ diff --git a/temp-public/images/Podolsk-20211114-6.jpg b/temp-public/images/Podolsk-20211114-6.jpg deleted file mode 100644 index 1c2e32d..0000000 Binary files a/temp-public/images/Podolsk-20211114-6.jpg and /dev/null differ diff --git a/temp-public/images/Podolsk-20211114-7.jpg b/temp-public/images/Podolsk-20211114-7.jpg deleted file mode 100644 index 5e038ba..0000000 Binary files a/temp-public/images/Podolsk-20211114-7.jpg and /dev/null differ diff --git a/temp-public/images/Podolsk-20211114-8.jpg b/temp-public/images/Podolsk-20211114-8.jpg deleted file mode 100644 index e8adb01..0000000 Binary files a/temp-public/images/Podolsk-20211114-8.jpg and /dev/null differ diff --git a/temp-public/images/Podolsk-20211114-9.jpg b/temp-public/images/Podolsk-20211114-9.jpg deleted file mode 100644 index 402d885..0000000 Binary files a/temp-public/images/Podolsk-20211114-9.jpg and /dev/null differ diff --git a/temp-public/images/Pokrov-20230204-1.jpg b/temp-public/images/Pokrov-20230204-1.jpg deleted file mode 100644 index a06e48f..0000000 Binary files a/temp-public/images/Pokrov-20230204-1.jpg and /dev/null differ diff --git a/temp-public/images/Pokrov-20230204-2.jpg b/temp-public/images/Pokrov-20230204-2.jpg deleted file mode 100644 index fb4b625..0000000 Binary files a/temp-public/images/Pokrov-20230204-2.jpg and /dev/null differ diff --git a/temp-public/images/Pokrov-20230204-3.jpg b/temp-public/images/Pokrov-20230204-3.jpg deleted file mode 100644 index bf7a54e..0000000 Binary files a/temp-public/images/Pokrov-20230204-3.jpg and /dev/null differ diff --git a/temp-public/images/Pokrov-20230204-4.jpg b/temp-public/images/Pokrov-20230204-4.jpg deleted file mode 100644 index b9fe839..0000000 Binary files a/temp-public/images/Pokrov-20230204-4.jpg and /dev/null differ diff --git a/temp-public/images/Pokrov-20230204-5.jpg b/temp-public/images/Pokrov-20230204-5.jpg deleted file mode 100644 index 446b65f..0000000 Binary files a/temp-public/images/Pokrov-20230204-5.jpg and /dev/null differ diff --git a/temp-public/images/Pokrov-20230204-6.jpg b/temp-public/images/Pokrov-20230204-6.jpg deleted file mode 100644 index 6a1832b..0000000 Binary files a/temp-public/images/Pokrov-20230204-6.jpg and /dev/null differ diff --git a/temp-public/images/Pokrov-20230204-7.jpg b/temp-public/images/Pokrov-20230204-7.jpg deleted file mode 100644 index 32333dc..0000000 Binary files a/temp-public/images/Pokrov-20230204-7.jpg and /dev/null differ diff --git a/temp-public/images/Posad-20210731-1.jpg b/temp-public/images/Posad-20210731-1.jpg deleted file mode 100644 index a0868b3..0000000 Binary files a/temp-public/images/Posad-20210731-1.jpg and /dev/null differ diff --git a/temp-public/images/Posad-20210731-3.jpg b/temp-public/images/Posad-20210731-3.jpg deleted file mode 100644 index 6439f24..0000000 Binary files a/temp-public/images/Posad-20210731-3.jpg and /dev/null differ diff --git a/temp-public/images/Posad-20210731-4.jpg b/temp-public/images/Posad-20210731-4.jpg deleted file mode 100644 index eb32c93..0000000 Binary files a/temp-public/images/Posad-20210731-4.jpg and /dev/null differ diff --git a/temp-public/images/Posad-20210731-5.jpg b/temp-public/images/Posad-20210731-5.jpg deleted file mode 100644 index b4b058a..0000000 Binary files a/temp-public/images/Posad-20210731-5.jpg and /dev/null differ diff --git a/temp-public/images/Posad-20210731-6.jpg b/temp-public/images/Posad-20210731-6.jpg deleted file mode 100644 index 7c26869..0000000 Binary files a/temp-public/images/Posad-20210731-6.jpg and /dev/null differ diff --git a/temp-public/images/Posad-20210731-7.jpg b/temp-public/images/Posad-20210731-7.jpg deleted file mode 100644 index a1b15b3..0000000 Binary files a/temp-public/images/Posad-20210731-7.jpg and /dev/null differ diff --git a/temp-public/images/Proletar_20250223_1.jpg b/temp-public/images/Proletar_20250223_1.jpg deleted file mode 100644 index 8862c0d..0000000 Binary files a/temp-public/images/Proletar_20250223_1.jpg and /dev/null differ diff --git a/temp-public/images/Proletar_20250223_2.jpg b/temp-public/images/Proletar_20250223_2.jpg deleted file mode 100644 index bb4c136..0000000 Binary files a/temp-public/images/Proletar_20250223_2.jpg and /dev/null differ diff --git a/temp-public/images/Proletar_20250223_3.jpg b/temp-public/images/Proletar_20250223_3.jpg deleted file mode 100644 index 3ec4a5b..0000000 Binary files a/temp-public/images/Proletar_20250223_3.jpg and /dev/null differ diff --git a/temp-public/images/Proletar_20250223_4.jpg b/temp-public/images/Proletar_20250223_4.jpg deleted file mode 100644 index 88f2338..0000000 Binary files a/temp-public/images/Proletar_20250223_4.jpg and /dev/null differ diff --git a/temp-public/images/Proletar_20250223_5.jpg b/temp-public/images/Proletar_20250223_5.jpg deleted file mode 100644 index 7e43ac0..0000000 Binary files a/temp-public/images/Proletar_20250223_5.jpg and /dev/null differ diff --git a/temp-public/images/Proletar_20250223_6.jpg b/temp-public/images/Proletar_20250223_6.jpg deleted file mode 100644 index 1da2c0f..0000000 Binary files a/temp-public/images/Proletar_20250223_6.jpg and /dev/null differ diff --git a/temp-public/images/Proletar_20250223_7.jpg b/temp-public/images/Proletar_20250223_7.jpg deleted file mode 100644 index 4f75518..0000000 Binary files a/temp-public/images/Proletar_20250223_7.jpg and /dev/null differ diff --git a/temp-public/images/Proletar_20250223_8.jpg b/temp-public/images/Proletar_20250223_8.jpg deleted file mode 100644 index 42009bf..0000000 Binary files a/temp-public/images/Proletar_20250223_8.jpg and /dev/null differ diff --git a/temp-public/images/Radiotele_20250406_1.jpg b/temp-public/images/Radiotele_20250406_1.jpg deleted file mode 100644 index d92bd1e..0000000 Binary files a/temp-public/images/Radiotele_20250406_1.jpg and /dev/null differ diff --git a/temp-public/images/Radiotele_20250406_2.jpg b/temp-public/images/Radiotele_20250406_2.jpg deleted file mode 100644 index cea229a..0000000 Binary files a/temp-public/images/Radiotele_20250406_2.jpg and /dev/null differ diff --git a/temp-public/images/Radiotele_20250406_3.jpg b/temp-public/images/Radiotele_20250406_3.jpg deleted file mode 100644 index 588552e..0000000 Binary files a/temp-public/images/Radiotele_20250406_3.jpg and /dev/null differ diff --git a/temp-public/images/Radiotele_20250406_4.jpg b/temp-public/images/Radiotele_20250406_4.jpg deleted file mode 100644 index 81821b7..0000000 Binary files a/temp-public/images/Radiotele_20250406_4.jpg and /dev/null differ diff --git a/temp-public/images/Radiotele_20250406_5.jpg b/temp-public/images/Radiotele_20250406_5.jpg deleted file mode 100644 index 10aabd5..0000000 Binary files a/temp-public/images/Radiotele_20250406_5.jpg and /dev/null differ diff --git a/temp-public/images/Rostov-20220219-1.jpg b/temp-public/images/Rostov-20220219-1.jpg deleted file mode 100644 index cec569e..0000000 Binary files a/temp-public/images/Rostov-20220219-1.jpg and /dev/null differ diff --git a/temp-public/images/Rostov-20220219-10.jpg b/temp-public/images/Rostov-20220219-10.jpg deleted file mode 100644 index bedafa9..0000000 Binary files a/temp-public/images/Rostov-20220219-10.jpg and /dev/null differ diff --git a/temp-public/images/Rostov-20220219-11.jpg b/temp-public/images/Rostov-20220219-11.jpg deleted file mode 100644 index cbaa9d0..0000000 Binary files a/temp-public/images/Rostov-20220219-11.jpg and /dev/null differ diff --git a/temp-public/images/Rostov-20220219-12.jpg b/temp-public/images/Rostov-20220219-12.jpg deleted file mode 100644 index de0771d..0000000 Binary files a/temp-public/images/Rostov-20220219-12.jpg and /dev/null differ diff --git a/temp-public/images/Rostov-20220219-13.jpg b/temp-public/images/Rostov-20220219-13.jpg deleted file mode 100644 index 7b32f02..0000000 Binary files a/temp-public/images/Rostov-20220219-13.jpg and /dev/null differ diff --git a/temp-public/images/Rostov-20220219-2.jpg b/temp-public/images/Rostov-20220219-2.jpg deleted file mode 100644 index ce048ac..0000000 Binary files a/temp-public/images/Rostov-20220219-2.jpg and /dev/null differ diff --git a/temp-public/images/Rostov-20220219-3.jpg b/temp-public/images/Rostov-20220219-3.jpg deleted file mode 100644 index 960535c..0000000 Binary files a/temp-public/images/Rostov-20220219-3.jpg and /dev/null differ diff --git a/temp-public/images/Rostov-20220219-4.jpg b/temp-public/images/Rostov-20220219-4.jpg deleted file mode 100644 index b700845..0000000 Binary files a/temp-public/images/Rostov-20220219-4.jpg and /dev/null differ diff --git a/temp-public/images/Rostov-20220219-5.jpg b/temp-public/images/Rostov-20220219-5.jpg deleted file mode 100644 index 28c1400..0000000 Binary files a/temp-public/images/Rostov-20220219-5.jpg and /dev/null differ diff --git a/temp-public/images/Rostov-20220219-6.jpg b/temp-public/images/Rostov-20220219-6.jpg deleted file mode 100644 index a92c9c3..0000000 Binary files a/temp-public/images/Rostov-20220219-6.jpg and /dev/null differ diff --git a/temp-public/images/Rostov-20220219-7.jpg b/temp-public/images/Rostov-20220219-7.jpg deleted file mode 100644 index ae1d506..0000000 Binary files a/temp-public/images/Rostov-20220219-7.jpg and /dev/null differ diff --git a/temp-public/images/Rostov-20220219-8.jpg b/temp-public/images/Rostov-20220219-8.jpg deleted file mode 100644 index 78a54de..0000000 Binary files a/temp-public/images/Rostov-20220219-8.jpg and /dev/null differ diff --git a/temp-public/images/Rostov-20220219-9.jpg b/temp-public/images/Rostov-20220219-9.jpg deleted file mode 100644 index 105bf56..0000000 Binary files a/temp-public/images/Rostov-20220219-9.jpg and /dev/null differ diff --git a/temp-public/images/Ryazan-20220221-1.jpg b/temp-public/images/Ryazan-20220221-1.jpg deleted file mode 100644 index 7f13433..0000000 Binary files a/temp-public/images/Ryazan-20220221-1.jpg and /dev/null differ diff --git a/temp-public/images/Ryazan-20220221-10.jpg b/temp-public/images/Ryazan-20220221-10.jpg deleted file mode 100644 index 18e3f2d..0000000 Binary files a/temp-public/images/Ryazan-20220221-10.jpg and /dev/null differ diff --git a/temp-public/images/Ryazan-20220221-11.jpg b/temp-public/images/Ryazan-20220221-11.jpg deleted file mode 100644 index 1317305..0000000 Binary files a/temp-public/images/Ryazan-20220221-11.jpg and /dev/null differ diff --git a/temp-public/images/Ryazan-20220221-12.jpg b/temp-public/images/Ryazan-20220221-12.jpg deleted file mode 100644 index 902945b..0000000 Binary files a/temp-public/images/Ryazan-20220221-12.jpg and /dev/null differ diff --git a/temp-public/images/Ryazan-20220221-13.jpg b/temp-public/images/Ryazan-20220221-13.jpg deleted file mode 100644 index 16f505b..0000000 Binary files a/temp-public/images/Ryazan-20220221-13.jpg and /dev/null differ diff --git a/temp-public/images/Ryazan-20220221-14.jpg b/temp-public/images/Ryazan-20220221-14.jpg deleted file mode 100644 index cff5471..0000000 Binary files a/temp-public/images/Ryazan-20220221-14.jpg and /dev/null differ diff --git a/temp-public/images/Ryazan-20220221-15.jpg b/temp-public/images/Ryazan-20220221-15.jpg deleted file mode 100644 index bdaac33..0000000 Binary files a/temp-public/images/Ryazan-20220221-15.jpg and /dev/null differ diff --git a/temp-public/images/Ryazan-20220221-16.jpg b/temp-public/images/Ryazan-20220221-16.jpg deleted file mode 100644 index 4bc1240..0000000 Binary files a/temp-public/images/Ryazan-20220221-16.jpg and /dev/null differ diff --git a/temp-public/images/Ryazan-20220221-17.jpg b/temp-public/images/Ryazan-20220221-17.jpg deleted file mode 100644 index 6cde47d..0000000 Binary files a/temp-public/images/Ryazan-20220221-17.jpg and /dev/null differ diff --git a/temp-public/images/Ryazan-20220221-2.jpg b/temp-public/images/Ryazan-20220221-2.jpg deleted file mode 100644 index ce71d6d..0000000 Binary files a/temp-public/images/Ryazan-20220221-2.jpg and /dev/null differ diff --git a/temp-public/images/Ryazan-20220221-3.jpg b/temp-public/images/Ryazan-20220221-3.jpg deleted file mode 100644 index 60628ee..0000000 Binary files a/temp-public/images/Ryazan-20220221-3.jpg and /dev/null differ diff --git a/temp-public/images/Ryazan-20220221-4.jpg b/temp-public/images/Ryazan-20220221-4.jpg deleted file mode 100644 index ef349b4..0000000 Binary files a/temp-public/images/Ryazan-20220221-4.jpg and /dev/null differ diff --git a/temp-public/images/Ryazan-20220221-5.jpg b/temp-public/images/Ryazan-20220221-5.jpg deleted file mode 100644 index 6499259..0000000 Binary files a/temp-public/images/Ryazan-20220221-5.jpg and /dev/null differ diff --git a/temp-public/images/Ryazan-20220221-6.jpg b/temp-public/images/Ryazan-20220221-6.jpg deleted file mode 100644 index 2ddd86e..0000000 Binary files a/temp-public/images/Ryazan-20220221-6.jpg and /dev/null differ diff --git a/temp-public/images/Ryazan-20220221-7.jpg b/temp-public/images/Ryazan-20220221-7.jpg deleted file mode 100644 index ea2836f..0000000 Binary files a/temp-public/images/Ryazan-20220221-7.jpg and /dev/null differ diff --git a/temp-public/images/Ryazan-20220221-8.jpg b/temp-public/images/Ryazan-20220221-8.jpg deleted file mode 100644 index aa1fc6f..0000000 Binary files a/temp-public/images/Ryazan-20220221-8.jpg and /dev/null differ diff --git a/temp-public/images/Ryazan-20220221-9.jpg b/temp-public/images/Ryazan-20220221-9.jpg deleted file mode 100644 index 4e51ad2..0000000 Binary files a/temp-public/images/Ryazan-20220221-9.jpg and /dev/null differ diff --git a/temp-public/images/Rzhev_20240727_1.jpg b/temp-public/images/Rzhev_20240727_1.jpg deleted file mode 100644 index 99c720e..0000000 Binary files a/temp-public/images/Rzhev_20240727_1.jpg and /dev/null differ diff --git a/temp-public/images/Rzhev_20240727_2.jpg b/temp-public/images/Rzhev_20240727_2.jpg deleted file mode 100644 index 9b52089..0000000 Binary files a/temp-public/images/Rzhev_20240727_2.jpg and /dev/null differ diff --git a/temp-public/images/Rzhev_20240727_3.jpg b/temp-public/images/Rzhev_20240727_3.jpg deleted file mode 100644 index e907387..0000000 Binary files a/temp-public/images/Rzhev_20240727_3.jpg and /dev/null differ diff --git a/temp-public/images/Rzhev_20240727_4.jpg b/temp-public/images/Rzhev_20240727_4.jpg deleted file mode 100644 index daf9d02..0000000 Binary files a/temp-public/images/Rzhev_20240727_4.jpg and /dev/null differ diff --git a/temp-public/images/Rzhev_20240727_5.jpg b/temp-public/images/Rzhev_20240727_5.jpg deleted file mode 100644 index af4b350..0000000 Binary files a/temp-public/images/Rzhev_20240727_5.jpg and /dev/null differ diff --git a/temp-public/images/Serdce-20210410-1.jpg b/temp-public/images/Serdce-20210410-1.jpg deleted file mode 100644 index 89fd5a9..0000000 Binary files a/temp-public/images/Serdce-20210410-1.jpg and /dev/null differ diff --git a/temp-public/images/Serdce-20210410-2.jpg b/temp-public/images/Serdce-20210410-2.jpg deleted file mode 100644 index a63fefc..0000000 Binary files a/temp-public/images/Serdce-20210410-2.jpg and /dev/null differ diff --git a/temp-public/images/Serdce-20210410-3.jpg b/temp-public/images/Serdce-20210410-3.jpg deleted file mode 100644 index 607dab0..0000000 Binary files a/temp-public/images/Serdce-20210410-3.jpg and /dev/null differ diff --git a/temp-public/images/Serdce-20240120-1.jpg b/temp-public/images/Serdce-20240120-1.jpg deleted file mode 100644 index cd9bd3e..0000000 Binary files a/temp-public/images/Serdce-20240120-1.jpg and /dev/null differ diff --git a/temp-public/images/Serdce-20240120-2.jpg b/temp-public/images/Serdce-20240120-2.jpg deleted file mode 100644 index f9c2e85..0000000 Binary files a/temp-public/images/Serdce-20240120-2.jpg and /dev/null differ diff --git a/temp-public/images/Serdce-20240120-3.jpg b/temp-public/images/Serdce-20240120-3.jpg deleted file mode 100644 index 217fb46..0000000 Binary files a/temp-public/images/Serdce-20240120-3.jpg and /dev/null differ diff --git a/temp-public/images/Serdce-20240120-4.jpg b/temp-public/images/Serdce-20240120-4.jpg deleted file mode 100644 index f6175f2..0000000 Binary files a/temp-public/images/Serdce-20240120-4.jpg and /dev/null differ diff --git a/temp-public/images/Serdce-20240120-5.jpg b/temp-public/images/Serdce-20240120-5.jpg deleted file mode 100644 index 3f66f27..0000000 Binary files a/temp-public/images/Serdce-20240120-5.jpg and /dev/null differ diff --git a/temp-public/images/Serdce-20240120-6.jpg b/temp-public/images/Serdce-20240120-6.jpg deleted file mode 100644 index 2a9d46b..0000000 Binary files a/temp-public/images/Serdce-20240120-6.jpg and /dev/null differ diff --git a/temp-public/images/Serdce-20240120-7.jpg b/temp-public/images/Serdce-20240120-7.jpg deleted file mode 100644 index d9b05fd..0000000 Binary files a/temp-public/images/Serdce-20240120-7.jpg and /dev/null differ diff --git a/temp-public/images/Serdce-20240120-8.jpg b/temp-public/images/Serdce-20240120-8.jpg deleted file mode 100644 index 771b1c1..0000000 Binary files a/temp-public/images/Serdce-20240120-8.jpg and /dev/null differ diff --git a/temp-public/images/Sergiev-20220319-1.jpg b/temp-public/images/Sergiev-20220319-1.jpg deleted file mode 100644 index f7e4e8f..0000000 Binary files a/temp-public/images/Sergiev-20220319-1.jpg and /dev/null differ diff --git a/temp-public/images/Sergiev-20220319-10.jpg b/temp-public/images/Sergiev-20220319-10.jpg deleted file mode 100644 index cf99a1a..0000000 Binary files a/temp-public/images/Sergiev-20220319-10.jpg and /dev/null differ diff --git a/temp-public/images/Sergiev-20220319-11.jpg b/temp-public/images/Sergiev-20220319-11.jpg deleted file mode 100644 index e0b77cb..0000000 Binary files a/temp-public/images/Sergiev-20220319-11.jpg and /dev/null differ diff --git a/temp-public/images/Sergiev-20220319-12.jpg b/temp-public/images/Sergiev-20220319-12.jpg deleted file mode 100644 index a01b441..0000000 Binary files a/temp-public/images/Sergiev-20220319-12.jpg and /dev/null differ diff --git a/temp-public/images/Sergiev-20220319-13.jpg b/temp-public/images/Sergiev-20220319-13.jpg deleted file mode 100644 index c311e0d..0000000 Binary files a/temp-public/images/Sergiev-20220319-13.jpg and /dev/null differ diff --git a/temp-public/images/Sergiev-20220319-2.jpg b/temp-public/images/Sergiev-20220319-2.jpg deleted file mode 100644 index f95eefe..0000000 Binary files a/temp-public/images/Sergiev-20220319-2.jpg and /dev/null differ diff --git a/temp-public/images/Sergiev-20220319-3.jpg b/temp-public/images/Sergiev-20220319-3.jpg deleted file mode 100644 index 098ce28..0000000 Binary files a/temp-public/images/Sergiev-20220319-3.jpg and /dev/null differ diff --git a/temp-public/images/Sergiev-20220319-4.jpg b/temp-public/images/Sergiev-20220319-4.jpg deleted file mode 100644 index 74d6122..0000000 Binary files a/temp-public/images/Sergiev-20220319-4.jpg and /dev/null differ diff --git a/temp-public/images/Sergiev-20220319-5.jpg b/temp-public/images/Sergiev-20220319-5.jpg deleted file mode 100644 index 9d856b7..0000000 Binary files a/temp-public/images/Sergiev-20220319-5.jpg and /dev/null differ diff --git a/temp-public/images/Sergiev-20220319-6.jpg b/temp-public/images/Sergiev-20220319-6.jpg deleted file mode 100644 index 385bc30..0000000 Binary files a/temp-public/images/Sergiev-20220319-6.jpg and /dev/null differ diff --git a/temp-public/images/Sergiev-20220319-7.jpg b/temp-public/images/Sergiev-20220319-7.jpg deleted file mode 100644 index 79bdab6..0000000 Binary files a/temp-public/images/Sergiev-20220319-7.jpg and /dev/null differ diff --git a/temp-public/images/Sergiev-20220319-8.jpg b/temp-public/images/Sergiev-20220319-8.jpg deleted file mode 100644 index 4f0f97b..0000000 Binary files a/temp-public/images/Sergiev-20220319-8.jpg and /dev/null differ diff --git a/temp-public/images/Sergiev-20220319-9.jpg b/temp-public/images/Sergiev-20220319-9.jpg deleted file mode 100644 index 031b1e5..0000000 Binary files a/temp-public/images/Sergiev-20220319-9.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-1.jpg b/temp-public/images/Serpdor-20221008-1.jpg deleted file mode 100644 index d596df3..0000000 Binary files a/temp-public/images/Serpdor-20221008-1.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-10.jpg b/temp-public/images/Serpdor-20221008-10.jpg deleted file mode 100644 index 30134d8..0000000 Binary files a/temp-public/images/Serpdor-20221008-10.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-11.jpg b/temp-public/images/Serpdor-20221008-11.jpg deleted file mode 100644 index ea5f5f9..0000000 Binary files a/temp-public/images/Serpdor-20221008-11.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-12.jpg b/temp-public/images/Serpdor-20221008-12.jpg deleted file mode 100644 index 8ca8ee6..0000000 Binary files a/temp-public/images/Serpdor-20221008-12.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-13.jpg b/temp-public/images/Serpdor-20221008-13.jpg deleted file mode 100644 index ca150d7..0000000 Binary files a/temp-public/images/Serpdor-20221008-13.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-14.jpg b/temp-public/images/Serpdor-20221008-14.jpg deleted file mode 100644 index adabb82..0000000 Binary files a/temp-public/images/Serpdor-20221008-14.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-15.jpg b/temp-public/images/Serpdor-20221008-15.jpg deleted file mode 100644 index 333b36e..0000000 Binary files a/temp-public/images/Serpdor-20221008-15.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-16.jpg b/temp-public/images/Serpdor-20221008-16.jpg deleted file mode 100644 index 2a26c20..0000000 Binary files a/temp-public/images/Serpdor-20221008-16.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-17.jpg b/temp-public/images/Serpdor-20221008-17.jpg deleted file mode 100644 index 8aeefd9..0000000 Binary files a/temp-public/images/Serpdor-20221008-17.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-18.jpg b/temp-public/images/Serpdor-20221008-18.jpg deleted file mode 100644 index c1fef84..0000000 Binary files a/temp-public/images/Serpdor-20221008-18.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-19.jpg b/temp-public/images/Serpdor-20221008-19.jpg deleted file mode 100644 index bd67867..0000000 Binary files a/temp-public/images/Serpdor-20221008-19.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-2.jpg b/temp-public/images/Serpdor-20221008-2.jpg deleted file mode 100644 index c748184..0000000 Binary files a/temp-public/images/Serpdor-20221008-2.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-3.jpg b/temp-public/images/Serpdor-20221008-3.jpg deleted file mode 100644 index d39bfb9..0000000 Binary files a/temp-public/images/Serpdor-20221008-3.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-4.jpg b/temp-public/images/Serpdor-20221008-4.jpg deleted file mode 100644 index 9f6b92f..0000000 Binary files a/temp-public/images/Serpdor-20221008-4.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-5.jpg b/temp-public/images/Serpdor-20221008-5.jpg deleted file mode 100644 index 71f6769..0000000 Binary files a/temp-public/images/Serpdor-20221008-5.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-6.jpg b/temp-public/images/Serpdor-20221008-6.jpg deleted file mode 100644 index bedcc56..0000000 Binary files a/temp-public/images/Serpdor-20221008-6.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-7.jpg b/temp-public/images/Serpdor-20221008-7.jpg deleted file mode 100644 index 84a94da..0000000 Binary files a/temp-public/images/Serpdor-20221008-7.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-8.jpg b/temp-public/images/Serpdor-20221008-8.jpg deleted file mode 100644 index de1c418..0000000 Binary files a/temp-public/images/Serpdor-20221008-8.jpg and /dev/null differ diff --git a/temp-public/images/Serpdor-20221008-9.jpg b/temp-public/images/Serpdor-20221008-9.jpg deleted file mode 100644 index cca79ee..0000000 Binary files a/temp-public/images/Serpdor-20221008-9.jpg and /dev/null differ diff --git a/temp-public/images/Serpuhov-20210428-1.jpg b/temp-public/images/Serpuhov-20210428-1.jpg deleted file mode 100644 index 8d5a83f..0000000 Binary files a/temp-public/images/Serpuhov-20210428-1.jpg and /dev/null differ diff --git a/temp-public/images/Serpuhov-20210428-2.jpg b/temp-public/images/Serpuhov-20210428-2.jpg deleted file mode 100644 index e01aee2..0000000 Binary files a/temp-public/images/Serpuhov-20210428-2.jpg and /dev/null differ diff --git a/temp-public/images/Serpuhov-20210428-3.jpg b/temp-public/images/Serpuhov-20210428-3.jpg deleted file mode 100644 index a222364..0000000 Binary files a/temp-public/images/Serpuhov-20210428-3.jpg and /dev/null differ diff --git a/temp-public/images/Serpuhov-20210428-4.jpg b/temp-public/images/Serpuhov-20210428-4.jpg deleted file mode 100644 index c634d63..0000000 Binary files a/temp-public/images/Serpuhov-20210428-4.jpg and /dev/null differ diff --git a/temp-public/images/Serpzubr-20230108-1.jpg b/temp-public/images/Serpzubr-20230108-1.jpg deleted file mode 100644 index 095adb2..0000000 Binary files a/temp-public/images/Serpzubr-20230108-1.jpg and /dev/null differ diff --git a/temp-public/images/Serpzubr-20230108-10.jpg b/temp-public/images/Serpzubr-20230108-10.jpg deleted file mode 100644 index 081dc77..0000000 Binary files a/temp-public/images/Serpzubr-20230108-10.jpg and /dev/null differ diff --git a/temp-public/images/Serpzubr-20230108-11.jpg b/temp-public/images/Serpzubr-20230108-11.jpg deleted file mode 100644 index 5ea7236..0000000 Binary files a/temp-public/images/Serpzubr-20230108-11.jpg and /dev/null differ diff --git a/temp-public/images/Serpzubr-20230108-12.jpg b/temp-public/images/Serpzubr-20230108-12.jpg deleted file mode 100644 index 9909ef3..0000000 Binary files a/temp-public/images/Serpzubr-20230108-12.jpg and /dev/null differ diff --git a/temp-public/images/Serpzubr-20230108-13.jpg b/temp-public/images/Serpzubr-20230108-13.jpg deleted file mode 100644 index 8d024c7..0000000 Binary files a/temp-public/images/Serpzubr-20230108-13.jpg and /dev/null differ diff --git a/temp-public/images/Serpzubr-20230108-14.jpg b/temp-public/images/Serpzubr-20230108-14.jpg deleted file mode 100644 index 43ee6f3..0000000 Binary files a/temp-public/images/Serpzubr-20230108-14.jpg and /dev/null differ diff --git a/temp-public/images/Serpzubr-20230108-15.jpg b/temp-public/images/Serpzubr-20230108-15.jpg deleted file mode 100644 index cb4bc0b..0000000 Binary files a/temp-public/images/Serpzubr-20230108-15.jpg and /dev/null differ diff --git a/temp-public/images/Serpzubr-20230108-2.jpg b/temp-public/images/Serpzubr-20230108-2.jpg deleted file mode 100644 index 33e4760..0000000 Binary files a/temp-public/images/Serpzubr-20230108-2.jpg and /dev/null differ diff --git a/temp-public/images/Serpzubr-20230108-3.jpg b/temp-public/images/Serpzubr-20230108-3.jpg deleted file mode 100644 index c572047..0000000 Binary files a/temp-public/images/Serpzubr-20230108-3.jpg and /dev/null differ diff --git a/temp-public/images/Serpzubr-20230108-4.jpg b/temp-public/images/Serpzubr-20230108-4.jpg deleted file mode 100644 index 5c32d70..0000000 Binary files a/temp-public/images/Serpzubr-20230108-4.jpg and /dev/null differ diff --git a/temp-public/images/Serpzubr-20230108-5.jpg b/temp-public/images/Serpzubr-20230108-5.jpg deleted file mode 100644 index ab6fb93..0000000 Binary files a/temp-public/images/Serpzubr-20230108-5.jpg and /dev/null differ diff --git a/temp-public/images/Serpzubr-20230108-6.jpg b/temp-public/images/Serpzubr-20230108-6.jpg deleted file mode 100644 index 825c61e..0000000 Binary files a/temp-public/images/Serpzubr-20230108-6.jpg and /dev/null differ diff --git a/temp-public/images/Serpzubr-20230108-7.jpg b/temp-public/images/Serpzubr-20230108-7.jpg deleted file mode 100644 index d6e0d3f..0000000 Binary files a/temp-public/images/Serpzubr-20230108-7.jpg and /dev/null differ diff --git a/temp-public/images/Serpzubr-20230108-8.jpg b/temp-public/images/Serpzubr-20230108-8.jpg deleted file mode 100644 index efb382b..0000000 Binary files a/temp-public/images/Serpzubr-20230108-8.jpg and /dev/null differ diff --git a/temp-public/images/Serpzubr-20230108-9.jpg b/temp-public/images/Serpzubr-20230108-9.jpg deleted file mode 100644 index 534ab6b..0000000 Binary files a/temp-public/images/Serpzubr-20230108-9.jpg and /dev/null differ diff --git a/temp-public/images/Sever-20240203-1.jpg b/temp-public/images/Sever-20240203-1.jpg deleted file mode 100644 index 1ee95b1..0000000 Binary files a/temp-public/images/Sever-20240203-1.jpg and /dev/null differ diff --git a/temp-public/images/Sever-20240203-2.jpg b/temp-public/images/Sever-20240203-2.jpg deleted file mode 100644 index 0679c37..0000000 Binary files a/temp-public/images/Sever-20240203-2.jpg and /dev/null differ diff --git a/temp-public/images/Sever-20240203-3.jpg b/temp-public/images/Sever-20240203-3.jpg deleted file mode 100644 index f6a9281..0000000 Binary files a/temp-public/images/Sever-20240203-3.jpg and /dev/null differ diff --git a/temp-public/images/Sever-20240203-4.jpg b/temp-public/images/Sever-20240203-4.jpg deleted file mode 100644 index e87d35b..0000000 Binary files a/temp-public/images/Sever-20240203-4.jpg and /dev/null differ diff --git a/temp-public/images/Sever-20240203-5.jpg b/temp-public/images/Sever-20240203-5.jpg deleted file mode 100644 index 2ec48ea..0000000 Binary files a/temp-public/images/Sever-20240203-5.jpg and /dev/null differ diff --git a/temp-public/images/Sever-20240203-6.jpg b/temp-public/images/Sever-20240203-6.jpg deleted file mode 100644 index bb5bf79..0000000 Binary files a/temp-public/images/Sever-20240203-6.jpg and /dev/null differ diff --git a/temp-public/images/SletKalyaz_20241221_1.jpg b/temp-public/images/SletKalyaz_20241221_1.jpg deleted file mode 100644 index b6d965f..0000000 Binary files a/temp-public/images/SletKalyaz_20241221_1.jpg and /dev/null differ diff --git a/temp-public/images/SletKalyaz_20241221_2.jpg b/temp-public/images/SletKalyaz_20241221_2.jpg deleted file mode 100644 index e4b3919..0000000 Binary files a/temp-public/images/SletKalyaz_20241221_2.jpg and /dev/null differ diff --git a/temp-public/images/SletKalyaz_20241221_3.jpg b/temp-public/images/SletKalyaz_20241221_3.jpg deleted file mode 100644 index bfc2c62..0000000 Binary files a/temp-public/images/SletKalyaz_20241221_3.jpg and /dev/null differ diff --git a/temp-public/images/SletKalyaz_20241221_4.jpg b/temp-public/images/SletKalyaz_20241221_4.jpg deleted file mode 100644 index f8b75a8..0000000 Binary files a/temp-public/images/SletKalyaz_20241221_4.jpg and /dev/null differ diff --git a/temp-public/images/SletPokrov2_20250208_1.jpg b/temp-public/images/SletPokrov2_20250208_1.jpg deleted file mode 100644 index cf076af..0000000 Binary files a/temp-public/images/SletPokrov2_20250208_1.jpg and /dev/null differ diff --git a/temp-public/images/SletPokrov2_20250208_2.jpg b/temp-public/images/SletPokrov2_20250208_2.jpg deleted file mode 100644 index adf4c0d..0000000 Binary files a/temp-public/images/SletPokrov2_20250208_2.jpg and /dev/null differ diff --git a/temp-public/images/SletPokrov2_20250208_3.jpg b/temp-public/images/SletPokrov2_20250208_3.jpg deleted file mode 100644 index 69791d8..0000000 Binary files a/temp-public/images/SletPokrov2_20250208_3.jpg and /dev/null differ diff --git a/temp-public/images/SletRaek_20250118_1.jpg b/temp-public/images/SletRaek_20250118_1.jpg deleted file mode 100644 index 9301fb6..0000000 Binary files a/temp-public/images/SletRaek_20250118_1.jpg and /dev/null differ diff --git a/temp-public/images/SletRjev_20250215_1.jpg b/temp-public/images/SletRjev_20250215_1.jpg deleted file mode 100644 index 909f0cf..0000000 Binary files a/temp-public/images/SletRjev_20250215_1.jpg and /dev/null differ diff --git a/temp-public/images/SletRjev_20250215_2.jpg b/temp-public/images/SletRjev_20250215_2.jpg deleted file mode 100644 index f1b72c4..0000000 Binary files a/temp-public/images/SletRjev_20250215_2.jpg and /dev/null differ diff --git a/temp-public/images/SletRjev_20250215_3.jpg b/temp-public/images/SletRjev_20250215_3.jpg deleted file mode 100644 index a672767..0000000 Binary files a/temp-public/images/SletRjev_20250215_3.jpg and /dev/null differ diff --git a/temp-public/images/SletRjev_20250215_4.jpg b/temp-public/images/SletRjev_20250215_4.jpg deleted file mode 100644 index 09aa9fa..0000000 Binary files a/temp-public/images/SletRjev_20250215_4.jpg and /dev/null differ diff --git a/temp-public/images/Slet_20240526_1.jpg b/temp-public/images/Slet_20240526_1.jpg deleted file mode 100644 index ff1cd1f..0000000 Binary files a/temp-public/images/Slet_20240526_1.jpg and /dev/null differ diff --git a/temp-public/images/Slet_20240526_2.jpg b/temp-public/images/Slet_20240526_2.jpg deleted file mode 100644 index 334d11f..0000000 Binary files a/temp-public/images/Slet_20240526_2.jpg and /dev/null differ diff --git a/temp-public/images/Slet_20240526_3.jpg b/temp-public/images/Slet_20240526_3.jpg deleted file mode 100644 index d08f3c9..0000000 Binary files a/temp-public/images/Slet_20240526_3.jpg and /dev/null differ diff --git a/temp-public/images/Sletberend_20240907_2.jpg b/temp-public/images/Sletberend_20240907_2.jpg deleted file mode 100644 index 6c743f0..0000000 Binary files a/temp-public/images/Sletberend_20240907_2.jpg and /dev/null differ diff --git a/temp-public/images/Sletberend_20240907_3.jpg b/temp-public/images/Sletberend_20240907_3.jpg deleted file mode 100644 index 7b3526c..0000000 Binary files a/temp-public/images/Sletberend_20240907_3.jpg and /dev/null differ diff --git a/temp-public/images/Sletberend_20240907_4.jpg b/temp-public/images/Sletberend_20240907_4.jpg deleted file mode 100644 index 3bb0c1f..0000000 Binary files a/temp-public/images/Sletberend_20240907_4.jpg and /dev/null differ diff --git a/temp-public/images/Sletkalyaz_20240810_1.jpg b/temp-public/images/Sletkalyaz_20240810_1.jpg deleted file mode 100644 index 4fde25d..0000000 Binary files a/temp-public/images/Sletkalyaz_20240810_1.jpg and /dev/null differ diff --git a/temp-public/images/Sletkalyaz_20240810_2.jpg b/temp-public/images/Sletkalyaz_20240810_2.jpg deleted file mode 100644 index 93b479e..0000000 Binary files a/temp-public/images/Sletkalyaz_20240810_2.jpg and /dev/null differ diff --git a/temp-public/images/Sletkalyaz_20240810_3.jpg b/temp-public/images/Sletkalyaz_20240810_3.jpg deleted file mode 100644 index b1b335b..0000000 Binary files a/temp-public/images/Sletkalyaz_20240810_3.jpg and /dev/null differ diff --git a/temp-public/images/Sletkalyaz_20240810_4.jpg b/temp-public/images/Sletkalyaz_20240810_4.jpg deleted file mode 100644 index 5b7b026..0000000 Binary files a/temp-public/images/Sletkalyaz_20240810_4.jpg and /dev/null differ diff --git a/temp-public/images/Sletkalyaz_20240810_5.jpg b/temp-public/images/Sletkalyaz_20240810_5.jpg deleted file mode 100644 index b2ae3c1..0000000 Binary files a/temp-public/images/Sletkalyaz_20240810_5.jpg and /dev/null differ diff --git a/temp-public/images/Sletkalyaz_20240810_6.jpg b/temp-public/images/Sletkalyaz_20240810_6.jpg deleted file mode 100644 index 09217d2..0000000 Binary files a/temp-public/images/Sletkalyaz_20240810_6.jpg and /dev/null differ diff --git a/temp-public/images/Sletkalyaz_20240810_7.jpg b/temp-public/images/Sletkalyaz_20240810_7.jpg deleted file mode 100644 index 0dea1e9..0000000 Binary files a/temp-public/images/Sletkalyaz_20240810_7.jpg and /dev/null differ diff --git a/temp-public/images/Sletkalyaz_20240810_8.jpg b/temp-public/images/Sletkalyaz_20240810_8.jpg deleted file mode 100644 index 303c783..0000000 Binary files a/temp-public/images/Sletkalyaz_20240810_8.jpg and /dev/null differ diff --git a/temp-public/images/Sletkalyaz_20240810_9.jpg b/temp-public/images/Sletkalyaz_20240810_9.jpg deleted file mode 100644 index d709545..0000000 Binary files a/temp-public/images/Sletkalyaz_20240810_9.jpg and /dev/null differ diff --git a/temp-public/images/Sletvas_20240803_1.jpg b/temp-public/images/Sletvas_20240803_1.jpg deleted file mode 100644 index b9d2f11..0000000 Binary files a/temp-public/images/Sletvas_20240803_1.jpg and /dev/null differ diff --git a/temp-public/images/Sletvas_20240803_3.jpg b/temp-public/images/Sletvas_20240803_3.jpg deleted file mode 100644 index bbe4a22..0000000 Binary files a/temp-public/images/Sletvas_20240803_3.jpg and /dev/null differ diff --git a/temp-public/images/Sletvas_20240803_4.jpg b/temp-public/images/Sletvas_20240803_4.jpg deleted file mode 100644 index 454825f..0000000 Binary files a/temp-public/images/Sletvas_20240803_4.jpg and /dev/null differ diff --git a/temp-public/images/Snegorassvet_20240107_1.jpg b/temp-public/images/Snegorassvet_20240107_1.jpg deleted file mode 100644 index 9ad99b2..0000000 Binary files a/temp-public/images/Snegorassvet_20240107_1.jpg and /dev/null differ diff --git a/temp-public/images/Snegorassvet_20240107_2.jpg b/temp-public/images/Snegorassvet_20240107_2.jpg deleted file mode 100644 index 610332f..0000000 Binary files a/temp-public/images/Snegorassvet_20240107_2.jpg and /dev/null differ diff --git a/temp-public/images/Snegorassvet_20240107_3.jpg b/temp-public/images/Snegorassvet_20240107_3.jpg deleted file mode 100644 index 074adc4..0000000 Binary files a/temp-public/images/Snegorassvet_20240107_3.jpg and /dev/null differ diff --git a/temp-public/images/Snegorassvet_20240107_4.jpg b/temp-public/images/Snegorassvet_20240107_4.jpg deleted file mode 100644 index 25e3839..0000000 Binary files a/temp-public/images/Snegorassvet_20240107_4.jpg and /dev/null differ diff --git a/temp-public/images/Snegorassvet_20240107_5.jpg b/temp-public/images/Snegorassvet_20240107_5.jpg deleted file mode 100644 index f961980..0000000 Binary files a/temp-public/images/Snegorassvet_20240107_5.jpg and /dev/null differ diff --git a/temp-public/images/Snegorassvet_20240107_6.jpg b/temp-public/images/Snegorassvet_20240107_6.jpg deleted file mode 100644 index c8537cc..0000000 Binary files a/temp-public/images/Snegorassvet_20240107_6.jpg and /dev/null differ diff --git a/temp-public/images/Snegorassvet_20240107_7.jpg b/temp-public/images/Snegorassvet_20240107_7.jpg deleted file mode 100644 index 312e1e0..0000000 Binary files a/temp-public/images/Snegorassvet_20240107_7.jpg and /dev/null differ diff --git a/temp-public/images/Snegorassvet_20240107_8.jpg b/temp-public/images/Snegorassvet_20240107_8.jpg deleted file mode 100644 index 68cc01d..0000000 Binary files a/temp-public/images/Snegorassvet_20240107_8.jpg and /dev/null differ diff --git a/temp-public/images/Spirovo-20220213-1.jpg b/temp-public/images/Spirovo-20220213-1.jpg deleted file mode 100644 index 5c15a52..0000000 Binary files a/temp-public/images/Spirovo-20220213-1.jpg and /dev/null differ diff --git a/temp-public/images/Spirovo-20220213-2.jpg b/temp-public/images/Spirovo-20220213-2.jpg deleted file mode 100644 index 21964a6..0000000 Binary files a/temp-public/images/Spirovo-20220213-2.jpg and /dev/null differ diff --git a/temp-public/images/Spirovo-20220213-3.jpg b/temp-public/images/Spirovo-20220213-3.jpg deleted file mode 100644 index 7499989..0000000 Binary files a/temp-public/images/Spirovo-20220213-3.jpg and /dev/null differ diff --git a/temp-public/images/Spirovo-20220213-4.jpg b/temp-public/images/Spirovo-20220213-4.jpg deleted file mode 100644 index 49bfc66..0000000 Binary files a/temp-public/images/Spirovo-20220213-4.jpg and /dev/null differ diff --git a/temp-public/images/Spirovo-20220213-5.jpg b/temp-public/images/Spirovo-20220213-5.jpg deleted file mode 100644 index 52cda44..0000000 Binary files a/temp-public/images/Spirovo-20220213-5.jpg and /dev/null differ diff --git a/temp-public/images/Spirovo-20220213-6.jpg b/temp-public/images/Spirovo-20220213-6.jpg deleted file mode 100644 index 50a51b9..0000000 Binary files a/temp-public/images/Spirovo-20220213-6.jpg and /dev/null differ diff --git a/temp-public/images/Spirovo-20220213-7.jpg b/temp-public/images/Spirovo-20220213-7.jpg deleted file mode 100644 index a349f13..0000000 Binary files a/temp-public/images/Spirovo-20220213-7.jpg and /dev/null differ diff --git a/temp-public/images/Spirovo-20220213-8.jpg b/temp-public/images/Spirovo-20220213-8.jpg deleted file mode 100644 index 054fb80..0000000 Binary files a/temp-public/images/Spirovo-20220213-8.jpg and /dev/null differ diff --git a/temp-public/images/Spirovo-20220213-9.jpg b/temp-public/images/Spirovo-20220213-9.jpg deleted file mode 100644 index e40728c..0000000 Binary files a/temp-public/images/Spirovo-20220213-9.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-1.jpg b/temp-public/images/Terib-20230311-1.jpg deleted file mode 100644 index 6013afa..0000000 Binary files a/temp-public/images/Terib-20230311-1.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-10.jpg b/temp-public/images/Terib-20230311-10.jpg deleted file mode 100644 index 5041dea..0000000 Binary files a/temp-public/images/Terib-20230311-10.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-11.jpg b/temp-public/images/Terib-20230311-11.jpg deleted file mode 100644 index 297b2cd..0000000 Binary files a/temp-public/images/Terib-20230311-11.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-12.jpg b/temp-public/images/Terib-20230311-12.jpg deleted file mode 100644 index 331520f..0000000 Binary files a/temp-public/images/Terib-20230311-12.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-13.jpg b/temp-public/images/Terib-20230311-13.jpg deleted file mode 100644 index e146c9f..0000000 Binary files a/temp-public/images/Terib-20230311-13.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-14.jpg b/temp-public/images/Terib-20230311-14.jpg deleted file mode 100644 index eea3b9b..0000000 Binary files a/temp-public/images/Terib-20230311-14.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-15.jpg b/temp-public/images/Terib-20230311-15.jpg deleted file mode 100644 index 72e5755..0000000 Binary files a/temp-public/images/Terib-20230311-15.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-16.jpg b/temp-public/images/Terib-20230311-16.jpg deleted file mode 100644 index 827a1fb..0000000 Binary files a/temp-public/images/Terib-20230311-16.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-17.jpg b/temp-public/images/Terib-20230311-17.jpg deleted file mode 100644 index f150c82..0000000 Binary files a/temp-public/images/Terib-20230311-17.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-18.jpg b/temp-public/images/Terib-20230311-18.jpg deleted file mode 100644 index 77e1d29..0000000 Binary files a/temp-public/images/Terib-20230311-18.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-2.jpg b/temp-public/images/Terib-20230311-2.jpg deleted file mode 100644 index d67225d..0000000 Binary files a/temp-public/images/Terib-20230311-2.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-3.jpg b/temp-public/images/Terib-20230311-3.jpg deleted file mode 100644 index 209058b..0000000 Binary files a/temp-public/images/Terib-20230311-3.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-4.jpg b/temp-public/images/Terib-20230311-4.jpg deleted file mode 100644 index 39abf8c..0000000 Binary files a/temp-public/images/Terib-20230311-4.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-5.jpg b/temp-public/images/Terib-20230311-5.jpg deleted file mode 100644 index a8b1cdc..0000000 Binary files a/temp-public/images/Terib-20230311-5.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-6.jpg b/temp-public/images/Terib-20230311-6.jpg deleted file mode 100644 index 994d2d0..0000000 Binary files a/temp-public/images/Terib-20230311-6.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-7.jpg b/temp-public/images/Terib-20230311-7.jpg deleted file mode 100644 index 933b05f..0000000 Binary files a/temp-public/images/Terib-20230311-7.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-8.jpg b/temp-public/images/Terib-20230311-8.jpg deleted file mode 100644 index 403244b..0000000 Binary files a/temp-public/images/Terib-20230311-8.jpg and /dev/null differ diff --git a/temp-public/images/Terib-20230311-9.jpg b/temp-public/images/Terib-20230311-9.jpg deleted file mode 100644 index 76902b0..0000000 Binary files a/temp-public/images/Terib-20230311-9.jpg and /dev/null differ diff --git a/temp-public/images/Tula-20210619-1.jpg b/temp-public/images/Tula-20210619-1.jpg deleted file mode 100644 index c32af2d..0000000 Binary files a/temp-public/images/Tula-20210619-1.jpg and /dev/null differ diff --git a/temp-public/images/Tula-20210619-10.jpg b/temp-public/images/Tula-20210619-10.jpg deleted file mode 100644 index d0af9c2..0000000 Binary files a/temp-public/images/Tula-20210619-10.jpg and /dev/null differ diff --git a/temp-public/images/Tula-20210619-11.jpg b/temp-public/images/Tula-20210619-11.jpg deleted file mode 100644 index 0f2343e..0000000 Binary files a/temp-public/images/Tula-20210619-11.jpg and /dev/null differ diff --git a/temp-public/images/Tula-20210619-12.jpg b/temp-public/images/Tula-20210619-12.jpg deleted file mode 100644 index aab24c3..0000000 Binary files a/temp-public/images/Tula-20210619-12.jpg and /dev/null differ diff --git a/temp-public/images/Tula-20210619-13.jpg b/temp-public/images/Tula-20210619-13.jpg deleted file mode 100644 index c1bb4aa..0000000 Binary files a/temp-public/images/Tula-20210619-13.jpg and /dev/null differ diff --git a/temp-public/images/Tula-20210619-14.jpg b/temp-public/images/Tula-20210619-14.jpg deleted file mode 100644 index bc7bff0..0000000 Binary files a/temp-public/images/Tula-20210619-14.jpg and /dev/null differ diff --git a/temp-public/images/Tula-20210619-15.jpg b/temp-public/images/Tula-20210619-15.jpg deleted file mode 100644 index 5f23415..0000000 Binary files a/temp-public/images/Tula-20210619-15.jpg and /dev/null differ diff --git a/temp-public/images/Tula-20210619-2.jpg b/temp-public/images/Tula-20210619-2.jpg deleted file mode 100644 index 6f82792..0000000 Binary files a/temp-public/images/Tula-20210619-2.jpg and /dev/null differ diff --git a/temp-public/images/Tula-20210619-3.jpg b/temp-public/images/Tula-20210619-3.jpg deleted file mode 100644 index d85a1c4..0000000 Binary files a/temp-public/images/Tula-20210619-3.jpg and /dev/null differ diff --git a/temp-public/images/Tula-20210619-4.jpg b/temp-public/images/Tula-20210619-4.jpg deleted file mode 100644 index ef1e88d..0000000 Binary files a/temp-public/images/Tula-20210619-4.jpg and /dev/null differ diff --git a/temp-public/images/Tula-20210619-6.jpg b/temp-public/images/Tula-20210619-6.jpg deleted file mode 100644 index aa6b001..0000000 Binary files a/temp-public/images/Tula-20210619-6.jpg and /dev/null differ diff --git a/temp-public/images/Tula-20210619-7.jpg b/temp-public/images/Tula-20210619-7.jpg deleted file mode 100644 index a974077..0000000 Binary files a/temp-public/images/Tula-20210619-7.jpg and /dev/null differ diff --git a/temp-public/images/Tula-20210619-8.jpg b/temp-public/images/Tula-20210619-8.jpg deleted file mode 100644 index c3015d7..0000000 Binary files a/temp-public/images/Tula-20210619-8.jpg and /dev/null differ diff --git a/temp-public/images/Tula-20210619-9.jpg b/temp-public/images/Tula-20210619-9.jpg deleted file mode 100644 index 1408267..0000000 Binary files a/temp-public/images/Tula-20210619-9.jpg and /dev/null differ diff --git a/temp-public/images/Tver-20220612-1.jpg b/temp-public/images/Tver-20220612-1.jpg deleted file mode 100644 index 5a4d999..0000000 Binary files a/temp-public/images/Tver-20220612-1.jpg and /dev/null differ diff --git a/temp-public/images/Tver-20220612-10.jpg b/temp-public/images/Tver-20220612-10.jpg deleted file mode 100644 index 0c3014c..0000000 Binary files a/temp-public/images/Tver-20220612-10.jpg and /dev/null differ diff --git a/temp-public/images/Tver-20220612-11.jpg b/temp-public/images/Tver-20220612-11.jpg deleted file mode 100644 index 1a29d59..0000000 Binary files a/temp-public/images/Tver-20220612-11.jpg and /dev/null differ diff --git a/temp-public/images/Tver-20220612-2.jpg b/temp-public/images/Tver-20220612-2.jpg deleted file mode 100644 index 9d2d298..0000000 Binary files a/temp-public/images/Tver-20220612-2.jpg and /dev/null differ diff --git a/temp-public/images/Tver-20220612-3.jpg b/temp-public/images/Tver-20220612-3.jpg deleted file mode 100644 index ed4b462..0000000 Binary files a/temp-public/images/Tver-20220612-3.jpg and /dev/null differ diff --git a/temp-public/images/Tver-20220612-4.jpg b/temp-public/images/Tver-20220612-4.jpg deleted file mode 100644 index bee8145..0000000 Binary files a/temp-public/images/Tver-20220612-4.jpg and /dev/null differ diff --git a/temp-public/images/Tver-20220612-5.jpg b/temp-public/images/Tver-20220612-5.jpg deleted file mode 100644 index 88025bb..0000000 Binary files a/temp-public/images/Tver-20220612-5.jpg and /dev/null differ diff --git a/temp-public/images/Tver-20220612-6.jpg b/temp-public/images/Tver-20220612-6.jpg deleted file mode 100644 index 1606b5b..0000000 Binary files a/temp-public/images/Tver-20220612-6.jpg and /dev/null differ diff --git a/temp-public/images/Tver-20220612-7.jpg b/temp-public/images/Tver-20220612-7.jpg deleted file mode 100644 index 9dff2eb..0000000 Binary files a/temp-public/images/Tver-20220612-7.jpg and /dev/null differ diff --git a/temp-public/images/Tver-20220612-8.jpg b/temp-public/images/Tver-20220612-8.jpg deleted file mode 100644 index 9db4271..0000000 Binary files a/temp-public/images/Tver-20220612-8.jpg and /dev/null differ diff --git a/temp-public/images/Tver-20220612-9.jpg b/temp-public/images/Tver-20220612-9.jpg deleted file mode 100644 index 46c6f5c..0000000 Binary files a/temp-public/images/Tver-20220612-9.jpg and /dev/null differ diff --git a/temp-public/images/Tverobl-20230715-1.jpg b/temp-public/images/Tverobl-20230715-1.jpg deleted file mode 100644 index e02b714..0000000 Binary files a/temp-public/images/Tverobl-20230715-1.jpg and /dev/null differ diff --git a/temp-public/images/Tverobl-20230715-10.jpg b/temp-public/images/Tverobl-20230715-10.jpg deleted file mode 100644 index df4c0df..0000000 Binary files a/temp-public/images/Tverobl-20230715-10.jpg and /dev/null differ diff --git a/temp-public/images/Tverobl-20230715-11.jpg b/temp-public/images/Tverobl-20230715-11.jpg deleted file mode 100644 index 73aa91a..0000000 Binary files a/temp-public/images/Tverobl-20230715-11.jpg and /dev/null differ diff --git a/temp-public/images/Tverobl-20230715-12.jpg b/temp-public/images/Tverobl-20230715-12.jpg deleted file mode 100644 index 28f9bc7..0000000 Binary files a/temp-public/images/Tverobl-20230715-12.jpg and /dev/null differ diff --git a/temp-public/images/Tverobl-20230715-13.jpg b/temp-public/images/Tverobl-20230715-13.jpg deleted file mode 100644 index 59d9e56..0000000 Binary files a/temp-public/images/Tverobl-20230715-13.jpg and /dev/null differ diff --git a/temp-public/images/Tverobl-20230715-14.jpg b/temp-public/images/Tverobl-20230715-14.jpg deleted file mode 100644 index ec56f35..0000000 Binary files a/temp-public/images/Tverobl-20230715-14.jpg and /dev/null differ diff --git a/temp-public/images/Tverobl-20230715-15.jpg b/temp-public/images/Tverobl-20230715-15.jpg deleted file mode 100644 index 7a681fb..0000000 Binary files a/temp-public/images/Tverobl-20230715-15.jpg and /dev/null differ diff --git a/temp-public/images/Tverobl-20230715-16.jpg b/temp-public/images/Tverobl-20230715-16.jpg deleted file mode 100644 index 4d0941b..0000000 Binary files a/temp-public/images/Tverobl-20230715-16.jpg and /dev/null differ diff --git a/temp-public/images/Tverobl-20230715-17.jpg b/temp-public/images/Tverobl-20230715-17.jpg deleted file mode 100644 index 8dfecfe..0000000 Binary files a/temp-public/images/Tverobl-20230715-17.jpg and /dev/null differ diff --git a/temp-public/images/Tverobl-20230715-2.jpg b/temp-public/images/Tverobl-20230715-2.jpg deleted file mode 100644 index 71f1f44..0000000 Binary files a/temp-public/images/Tverobl-20230715-2.jpg and /dev/null differ diff --git a/temp-public/images/Tverobl-20230715-3.jpg b/temp-public/images/Tverobl-20230715-3.jpg deleted file mode 100644 index 4204956..0000000 Binary files a/temp-public/images/Tverobl-20230715-3.jpg and /dev/null differ diff --git a/temp-public/images/Tverobl-20230715-4.jpg b/temp-public/images/Tverobl-20230715-4.jpg deleted file mode 100644 index 35aee73..0000000 Binary files a/temp-public/images/Tverobl-20230715-4.jpg and /dev/null differ diff --git a/temp-public/images/Tverobl-20230715-5.jpg b/temp-public/images/Tverobl-20230715-5.jpg deleted file mode 100644 index 7336783..0000000 Binary files a/temp-public/images/Tverobl-20230715-5.jpg and /dev/null differ diff --git a/temp-public/images/Tverobl-20230715-6.jpg b/temp-public/images/Tverobl-20230715-6.jpg deleted file mode 100644 index de12c2f..0000000 Binary files a/temp-public/images/Tverobl-20230715-6.jpg and /dev/null differ diff --git a/temp-public/images/Tverobl-20230715-7.jpg b/temp-public/images/Tverobl-20230715-7.jpg deleted file mode 100644 index e80e9e6..0000000 Binary files a/temp-public/images/Tverobl-20230715-7.jpg and /dev/null differ diff --git a/temp-public/images/Tverobl-20230715-8.jpg b/temp-public/images/Tverobl-20230715-8.jpg deleted file mode 100644 index 0c48ccc..0000000 Binary files a/temp-public/images/Tverobl-20230715-8.jpg and /dev/null differ diff --git a/temp-public/images/Tverobl-20230715-9.jpg b/temp-public/images/Tverobl-20230715-9.jpg deleted file mode 100644 index fa02e8e..0000000 Binary files a/temp-public/images/Tverobl-20230715-9.jpg and /dev/null differ diff --git a/temp-public/images/Univer-20230423-1.jpg b/temp-public/images/Univer-20230423-1.jpg deleted file mode 100644 index 5287515..0000000 Binary files a/temp-public/images/Univer-20230423-1.jpg and /dev/null differ diff --git a/temp-public/images/Univer-20230423-2.jpg b/temp-public/images/Univer-20230423-2.jpg deleted file mode 100644 index 93f57b6..0000000 Binary files a/temp-public/images/Univer-20230423-2.jpg and /dev/null differ diff --git a/temp-public/images/Univer-20230423-3.jpg b/temp-public/images/Univer-20230423-3.jpg deleted file mode 100644 index dc6bc32..0000000 Binary files a/temp-public/images/Univer-20230423-3.jpg and /dev/null differ diff --git a/temp-public/images/Univer-20230423-4.jpg b/temp-public/images/Univer-20230423-4.jpg deleted file mode 100644 index 3e575f8..0000000 Binary files a/temp-public/images/Univer-20230423-4.jpg and /dev/null differ diff --git a/temp-public/images/Univer-20230423-5.jpg b/temp-public/images/Univer-20230423-5.jpg deleted file mode 100644 index 7e0d1bc..0000000 Binary files a/temp-public/images/Univer-20230423-5.jpg and /dev/null differ diff --git a/temp-public/images/Univer-20230423-6.jpg b/temp-public/images/Univer-20230423-6.jpg deleted file mode 100644 index c01aca8..0000000 Binary files a/temp-public/images/Univer-20230423-6.jpg and /dev/null differ diff --git a/temp-public/images/Univer-20230423-7.jpg b/temp-public/images/Univer-20230423-7.jpg deleted file mode 100644 index 439e83c..0000000 Binary files a/temp-public/images/Univer-20230423-7.jpg and /dev/null differ diff --git a/temp-public/images/Vetchi_20241012_1.jpg b/temp-public/images/Vetchi_20241012_1.jpg deleted file mode 100644 index d6c414d..0000000 Binary files a/temp-public/images/Vetchi_20241012_1.jpg and /dev/null differ diff --git a/temp-public/images/Vetchi_20241012_5.jpg b/temp-public/images/Vetchi_20241012_5.jpg deleted file mode 100644 index e695256..0000000 Binary files a/temp-public/images/Vetchi_20241012_5.jpg and /dev/null differ diff --git a/temp-public/images/Vetchi_20241012_6.jpg b/temp-public/images/Vetchi_20241012_6.jpg deleted file mode 100644 index 762bae3..0000000 Binary files a/temp-public/images/Vetchi_20241012_6.jpg and /dev/null differ diff --git a/temp-public/images/Vetchi_20241012_7.jpg b/temp-public/images/Vetchi_20241012_7.jpg deleted file mode 100644 index af33ea9..0000000 Binary files a/temp-public/images/Vetchi_20241012_7.jpg and /dev/null differ diff --git a/temp-public/images/Vetchi_20241012_8.jpg b/temp-public/images/Vetchi_20241012_8.jpg deleted file mode 100644 index 7113a30..0000000 Binary files a/temp-public/images/Vetchi_20241012_8.jpg and /dev/null differ diff --git a/temp-public/images/Vetchi_20241012_9.jpg b/temp-public/images/Vetchi_20241012_9.jpg deleted file mode 100644 index 994b10f..0000000 Binary files a/temp-public/images/Vetchi_20241012_9.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-1.jpg b/temp-public/images/VladSuzd-20220814-1.jpg deleted file mode 100644 index ecd6937..0000000 Binary files a/temp-public/images/VladSuzd-20220814-1.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-10.jpg b/temp-public/images/VladSuzd-20220814-10.jpg deleted file mode 100644 index a2c9b58..0000000 Binary files a/temp-public/images/VladSuzd-20220814-10.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-11.jpg b/temp-public/images/VladSuzd-20220814-11.jpg deleted file mode 100644 index 7f04b50..0000000 Binary files a/temp-public/images/VladSuzd-20220814-11.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-12.jpg b/temp-public/images/VladSuzd-20220814-12.jpg deleted file mode 100644 index 5fcc945..0000000 Binary files a/temp-public/images/VladSuzd-20220814-12.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-13.jpg b/temp-public/images/VladSuzd-20220814-13.jpg deleted file mode 100644 index 3565522..0000000 Binary files a/temp-public/images/VladSuzd-20220814-13.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-14.jpg b/temp-public/images/VladSuzd-20220814-14.jpg deleted file mode 100644 index d652ede..0000000 Binary files a/temp-public/images/VladSuzd-20220814-14.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-15.jpg b/temp-public/images/VladSuzd-20220814-15.jpg deleted file mode 100644 index 3cb4e8b..0000000 Binary files a/temp-public/images/VladSuzd-20220814-15.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-16.jpg b/temp-public/images/VladSuzd-20220814-16.jpg deleted file mode 100644 index 5bc60b7..0000000 Binary files a/temp-public/images/VladSuzd-20220814-16.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-17.jpg b/temp-public/images/VladSuzd-20220814-17.jpg deleted file mode 100644 index 8373a2a..0000000 Binary files a/temp-public/images/VladSuzd-20220814-17.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-18.jpg b/temp-public/images/VladSuzd-20220814-18.jpg deleted file mode 100644 index 7986363..0000000 Binary files a/temp-public/images/VladSuzd-20220814-18.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-19.jpg b/temp-public/images/VladSuzd-20220814-19.jpg deleted file mode 100644 index 823276f..0000000 Binary files a/temp-public/images/VladSuzd-20220814-19.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-2.jpg b/temp-public/images/VladSuzd-20220814-2.jpg deleted file mode 100644 index e83098b..0000000 Binary files a/temp-public/images/VladSuzd-20220814-2.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-20.jpg b/temp-public/images/VladSuzd-20220814-20.jpg deleted file mode 100644 index 8afe71a..0000000 Binary files a/temp-public/images/VladSuzd-20220814-20.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-3.jpg b/temp-public/images/VladSuzd-20220814-3.jpg deleted file mode 100644 index d40dd1f..0000000 Binary files a/temp-public/images/VladSuzd-20220814-3.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-4.jpg b/temp-public/images/VladSuzd-20220814-4.jpg deleted file mode 100644 index 3f9c278..0000000 Binary files a/temp-public/images/VladSuzd-20220814-4.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-5.jpg b/temp-public/images/VladSuzd-20220814-5.jpg deleted file mode 100644 index bbb25ba..0000000 Binary files a/temp-public/images/VladSuzd-20220814-5.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-6.jpg b/temp-public/images/VladSuzd-20220814-6.jpg deleted file mode 100644 index e36d3dc..0000000 Binary files a/temp-public/images/VladSuzd-20220814-6.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-7.jpg b/temp-public/images/VladSuzd-20220814-7.jpg deleted file mode 100644 index 28677c9..0000000 Binary files a/temp-public/images/VladSuzd-20220814-7.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-8.jpg b/temp-public/images/VladSuzd-20220814-8.jpg deleted file mode 100644 index f0fd753..0000000 Binary files a/temp-public/images/VladSuzd-20220814-8.jpg and /dev/null differ diff --git a/temp-public/images/VladSuzd-20220814-9.jpg b/temp-public/images/VladSuzd-20220814-9.jpg deleted file mode 100644 index edeb64c..0000000 Binary files a/temp-public/images/VladSuzd-20220814-9.jpg and /dev/null differ diff --git a/temp-public/images/Vladimir-20210714-1.jpg b/temp-public/images/Vladimir-20210714-1.jpg deleted file mode 100644 index 9609def..0000000 Binary files a/temp-public/images/Vladimir-20210714-1.jpg and /dev/null differ diff --git a/temp-public/images/Vladimir-20210714-10.jpg b/temp-public/images/Vladimir-20210714-10.jpg deleted file mode 100644 index b3f104b..0000000 Binary files a/temp-public/images/Vladimir-20210714-10.jpg and /dev/null differ diff --git a/temp-public/images/Vladimir-20210714-11.jpg b/temp-public/images/Vladimir-20210714-11.jpg deleted file mode 100644 index 643f097..0000000 Binary files a/temp-public/images/Vladimir-20210714-11.jpg and /dev/null differ diff --git a/temp-public/images/Vladimir-20210714-12.jpg b/temp-public/images/Vladimir-20210714-12.jpg deleted file mode 100644 index ebebad8..0000000 Binary files a/temp-public/images/Vladimir-20210714-12.jpg and /dev/null differ diff --git a/temp-public/images/Vladimir-20210714-2.jpg b/temp-public/images/Vladimir-20210714-2.jpg deleted file mode 100644 index 1406074..0000000 Binary files a/temp-public/images/Vladimir-20210714-2.jpg and /dev/null differ diff --git a/temp-public/images/Vladimir-20210714-3.jpg b/temp-public/images/Vladimir-20210714-3.jpg deleted file mode 100644 index 13406bc..0000000 Binary files a/temp-public/images/Vladimir-20210714-3.jpg and /dev/null differ diff --git a/temp-public/images/Vladimir-20210714-4.jpg b/temp-public/images/Vladimir-20210714-4.jpg deleted file mode 100644 index 02ad538..0000000 Binary files a/temp-public/images/Vladimir-20210714-4.jpg and /dev/null differ diff --git a/temp-public/images/Vladimir-20210714-5.jpg b/temp-public/images/Vladimir-20210714-5.jpg deleted file mode 100644 index d5e9e62..0000000 Binary files a/temp-public/images/Vladimir-20210714-5.jpg and /dev/null differ diff --git a/temp-public/images/Vladimir-20210714-6.jpg b/temp-public/images/Vladimir-20210714-6.jpg deleted file mode 100644 index fca6bd3..0000000 Binary files a/temp-public/images/Vladimir-20210714-6.jpg and /dev/null differ diff --git a/temp-public/images/Vladimir-20210714-7.jpg b/temp-public/images/Vladimir-20210714-7.jpg deleted file mode 100644 index 6d531b2..0000000 Binary files a/temp-public/images/Vladimir-20210714-7.jpg and /dev/null differ diff --git a/temp-public/images/Vladimir-20210714-8.jpg b/temp-public/images/Vladimir-20210714-8.jpg deleted file mode 100644 index d209cdd..0000000 Binary files a/temp-public/images/Vladimir-20210714-8.jpg and /dev/null differ diff --git a/temp-public/images/Vladimir-20210714-9.jpg b/temp-public/images/Vladimir-20210714-9.jpg deleted file mode 100644 index 84d0bd7..0000000 Binary files a/temp-public/images/Vladimir-20210714-9.jpg and /dev/null differ diff --git a/temp-public/images/Voron_20250324_1.jpg b/temp-public/images/Voron_20250324_1.jpg deleted file mode 100644 index 4e27709..0000000 Binary files a/temp-public/images/Voron_20250324_1.jpg and /dev/null differ diff --git a/temp-public/images/Voron_20250324_2.jpg b/temp-public/images/Voron_20250324_2.jpg deleted file mode 100644 index b4f94d4..0000000 Binary files a/temp-public/images/Voron_20250324_2.jpg and /dev/null differ diff --git a/temp-public/images/Voron_20250324_3.jpg b/temp-public/images/Voron_20250324_3.jpg deleted file mode 100644 index 075f34c..0000000 Binary files a/temp-public/images/Voron_20250324_3.jpg and /dev/null differ diff --git a/temp-public/images/Voron_20250324_4.jpg b/temp-public/images/Voron_20250324_4.jpg deleted file mode 100644 index 071def3..0000000 Binary files a/temp-public/images/Voron_20250324_4.jpg and /dev/null differ diff --git a/temp-public/images/Voron_20250324_5.jpg b/temp-public/images/Voron_20250324_5.jpg deleted file mode 100644 index 0ddc7b0..0000000 Binary files a/temp-public/images/Voron_20250324_5.jpg and /dev/null differ diff --git a/temp-public/images/Yahroma-20221225-3.jpg b/temp-public/images/Yahroma-20221225-3.jpg deleted file mode 100644 index 95d32e1..0000000 Binary files a/temp-public/images/Yahroma-20221225-3.jpg and /dev/null differ diff --git a/temp-public/images/Yaropol_20240714_1.jpg b/temp-public/images/Yaropol_20240714_1.jpg deleted file mode 100644 index 9428013..0000000 Binary files a/temp-public/images/Yaropol_20240714_1.jpg and /dev/null differ diff --git a/temp-public/images/Yaropol_20240714_10.jpg b/temp-public/images/Yaropol_20240714_10.jpg deleted file mode 100644 index 4792a43..0000000 Binary files a/temp-public/images/Yaropol_20240714_10.jpg and /dev/null differ diff --git a/temp-public/images/Yaropol_20240714_2.jpg b/temp-public/images/Yaropol_20240714_2.jpg deleted file mode 100644 index 3e84773..0000000 Binary files a/temp-public/images/Yaropol_20240714_2.jpg and /dev/null differ diff --git a/temp-public/images/Yaropol_20240714_3.jpg b/temp-public/images/Yaropol_20240714_3.jpg deleted file mode 100644 index 332a285..0000000 Binary files a/temp-public/images/Yaropol_20240714_3.jpg and /dev/null differ diff --git a/temp-public/images/Yaropol_20240714_4.jpg b/temp-public/images/Yaropol_20240714_4.jpg deleted file mode 100644 index 4f87a27..0000000 Binary files a/temp-public/images/Yaropol_20240714_4.jpg and /dev/null differ diff --git a/temp-public/images/Yaropol_20240714_5.jpg b/temp-public/images/Yaropol_20240714_5.jpg deleted file mode 100644 index 975fdf6..0000000 Binary files a/temp-public/images/Yaropol_20240714_5.jpg and /dev/null differ diff --git a/temp-public/images/Yaropol_20240714_7.jpg b/temp-public/images/Yaropol_20240714_7.jpg deleted file mode 100644 index 3260383..0000000 Binary files a/temp-public/images/Yaropol_20240714_7.jpg and /dev/null differ diff --git a/temp-public/images/Yaropol_20240714_8.jpg b/temp-public/images/Yaropol_20240714_8.jpg deleted file mode 100644 index 2f1fd05..0000000 Binary files a/temp-public/images/Yaropol_20240714_8.jpg and /dev/null differ diff --git a/temp-public/images/Yaropol_20240714_9.jpg b/temp-public/images/Yaropol_20240714_9.jpg deleted file mode 100644 index 060dcb4..0000000 Binary files a/temp-public/images/Yaropol_20240714_9.jpg and /dev/null differ diff --git a/temp-public/images/Yaroslavl-20220307-1.jpg b/temp-public/images/Yaroslavl-20220307-1.jpg deleted file mode 100644 index 6537165..0000000 Binary files a/temp-public/images/Yaroslavl-20220307-1.jpg and /dev/null differ diff --git a/temp-public/images/Yaroslavl-20220307-2.jpg b/temp-public/images/Yaroslavl-20220307-2.jpg deleted file mode 100644 index a95dc57..0000000 Binary files a/temp-public/images/Yaroslavl-20220307-2.jpg and /dev/null differ diff --git a/temp-public/images/Yaroslavl-20220307-3.jpg b/temp-public/images/Yaroslavl-20220307-3.jpg deleted file mode 100644 index d1a6f87..0000000 Binary files a/temp-public/images/Yaroslavl-20220307-3.jpg and /dev/null differ diff --git a/temp-public/images/Yaroslavl-20220307-4.jpg b/temp-public/images/Yaroslavl-20220307-4.jpg deleted file mode 100644 index 326d1fa..0000000 Binary files a/temp-public/images/Yaroslavl-20220307-4.jpg and /dev/null differ diff --git a/temp-public/images/Yaroslavl-20220307-5.jpg b/temp-public/images/Yaroslavl-20220307-5.jpg deleted file mode 100644 index c06b7f0..0000000 Binary files a/temp-public/images/Yaroslavl-20220307-5.jpg and /dev/null differ diff --git a/temp-public/images/Yaroslavl-20220307-6.jpg b/temp-public/images/Yaroslavl-20220307-6.jpg deleted file mode 100644 index 80e058e..0000000 Binary files a/temp-public/images/Yaroslavl-20220307-6.jpg and /dev/null differ diff --git a/temp-public/images/Yaroslavl-20220307-7.jpg b/temp-public/images/Yaroslavl-20220307-7.jpg deleted file mode 100644 index dcfc980..0000000 Binary files a/temp-public/images/Yaroslavl-20220307-7.jpg and /dev/null differ diff --git a/temp-public/images/Yaroslavl-20220307-8.jpg b/temp-public/images/Yaroslavl-20220307-8.jpg deleted file mode 100644 index 8b5f50e..0000000 Binary files a/temp-public/images/Yaroslavl-20220307-8.jpg and /dev/null differ diff --git a/temp-public/images/Zelen_20240628_1.jpg b/temp-public/images/Zelen_20240628_1.jpg deleted file mode 100644 index 97e54c5..0000000 Binary files a/temp-public/images/Zelen_20240628_1.jpg and /dev/null differ diff --git a/temp-public/images/Zelen_20240628_10.jpg b/temp-public/images/Zelen_20240628_10.jpg deleted file mode 100644 index 48695f4..0000000 Binary files a/temp-public/images/Zelen_20240628_10.jpg and /dev/null differ diff --git a/temp-public/images/Zelen_20240628_11.jpg b/temp-public/images/Zelen_20240628_11.jpg deleted file mode 100644 index 6b41fdb..0000000 Binary files a/temp-public/images/Zelen_20240628_11.jpg and /dev/null differ diff --git a/temp-public/images/Zelen_20240628_12.jpg b/temp-public/images/Zelen_20240628_12.jpg deleted file mode 100644 index 73de39c..0000000 Binary files a/temp-public/images/Zelen_20240628_12.jpg and /dev/null differ diff --git a/temp-public/images/Zelen_20240628_13.jpg b/temp-public/images/Zelen_20240628_13.jpg deleted file mode 100644 index 2ceb395..0000000 Binary files a/temp-public/images/Zelen_20240628_13.jpg and /dev/null differ diff --git a/temp-public/images/Zelen_20240628_14.jpg b/temp-public/images/Zelen_20240628_14.jpg deleted file mode 100644 index 2c7e882..0000000 Binary files a/temp-public/images/Zelen_20240628_14.jpg and /dev/null differ diff --git a/temp-public/images/Zelen_20240628_3.jpg b/temp-public/images/Zelen_20240628_3.jpg deleted file mode 100644 index 16d18c9..0000000 Binary files a/temp-public/images/Zelen_20240628_3.jpg and /dev/null differ diff --git a/temp-public/images/Zelen_20240628_4.jpg b/temp-public/images/Zelen_20240628_4.jpg deleted file mode 100644 index 2a4bc7d..0000000 Binary files a/temp-public/images/Zelen_20240628_4.jpg and /dev/null differ diff --git a/temp-public/images/Zelen_20240628_5.jpg b/temp-public/images/Zelen_20240628_5.jpg deleted file mode 100644 index 5d0ccb1..0000000 Binary files a/temp-public/images/Zelen_20240628_5.jpg and /dev/null differ diff --git a/temp-public/images/Zelen_20240628_6.jpg b/temp-public/images/Zelen_20240628_6.jpg deleted file mode 100644 index 46f35c9..0000000 Binary files a/temp-public/images/Zelen_20240628_6.jpg and /dev/null differ diff --git a/temp-public/images/Zelen_20240628_7.jpg b/temp-public/images/Zelen_20240628_7.jpg deleted file mode 100644 index 5ea4a99..0000000 Binary files a/temp-public/images/Zelen_20240628_7.jpg and /dev/null differ diff --git a/temp-public/images/Zelen_20240628_8.jpg b/temp-public/images/Zelen_20240628_8.jpg deleted file mode 100644 index e967d9b..0000000 Binary files a/temp-public/images/Zelen_20240628_8.jpg and /dev/null differ diff --git a/temp-public/images/Zelen_20240628_9.jpg b/temp-public/images/Zelen_20240628_9.jpg deleted file mode 100644 index 998c7a2..0000000 Binary files a/temp-public/images/Zelen_20240628_9.jpg and /dev/null differ diff --git a/temp-public/images/Zimni-20211204-2.jpg b/temp-public/images/Zimni-20211204-2.jpg deleted file mode 100644 index ae250d6..0000000 Binary files a/temp-public/images/Zimni-20211204-2.jpg and /dev/null differ diff --git a/temp-public/images/Zimni-20211204-3.jpg b/temp-public/images/Zimni-20211204-3.jpg deleted file mode 100644 index 7ee6900..0000000 Binary files a/temp-public/images/Zimni-20211204-3.jpg and /dev/null differ diff --git a/temp-public/images/Zimni-20211204-4.jpg b/temp-public/images/Zimni-20211204-4.jpg deleted file mode 100644 index c4f14c5..0000000 Binary files a/temp-public/images/Zimni-20211204-4.jpg and /dev/null differ diff --git a/temp-public/images/Zimni-20211204-6.jpg b/temp-public/images/Zimni-20211204-6.jpg deleted file mode 100644 index 68d523a..0000000 Binary files a/temp-public/images/Zimni-20211204-6.jpg and /dev/null differ diff --git a/temp-public/images/Zimni-20211204-7.jpg b/temp-public/images/Zimni-20211204-7.jpg deleted file mode 100644 index fd8bbfe..0000000 Binary files a/temp-public/images/Zimni-20211204-7.jpg and /dev/null differ diff --git a/temp-public/images/Zimni-20211204-8.jpg b/temp-public/images/Zimni-20211204-8.jpg deleted file mode 100644 index 3cac850..0000000 Binary files a/temp-public/images/Zimni-20211204-8.jpg and /dev/null differ diff --git a/temp-public/images/bg.jpg b/temp-public/images/bg.jpg deleted file mode 100644 index 1fe15b6..0000000 Binary files a/temp-public/images/bg.jpg and /dev/null differ diff --git a/temp-public/images/ivanovo.jpg b/temp-public/images/ivanovo.jpg deleted file mode 100644 index 5dfe4aa..0000000 Binary files a/temp-public/images/ivanovo.jpg and /dev/null differ diff --git a/temp-public/images/kostroma.jpg b/temp-public/images/kostroma.jpg deleted file mode 100644 index a33d709..0000000 Binary files a/temp-public/images/kostroma.jpg and /dev/null differ diff --git a/temp-public/images/overlay.png b/temp-public/images/overlay.png deleted file mode 100644 index 127bb2b..0000000 Binary files a/temp-public/images/overlay.png and /dev/null differ diff --git a/temp-public/images/suzdal.jpg b/temp-public/images/suzdal.jpg deleted file mode 100644 index 531c062..0000000 Binary files a/temp-public/images/suzdal.jpg and /dev/null differ diff --git a/temp-public/images/vladimir.jpg b/temp-public/images/vladimir.jpg deleted file mode 100644 index 0d93f2c..0000000 Binary files a/temp-public/images/vladimir.jpg and /dev/null differ diff --git a/temp-public/img/favicon.ico b/temp-public/img/favicon.ico deleted file mode 100644 index 58e56f0..0000000 Binary files a/temp-public/img/favicon.ico and /dev/null differ diff --git a/temp-public/ivanovo.jpg b/temp-public/ivanovo.jpg deleted file mode 100644 index 5dfe4aa..0000000 Binary files a/temp-public/ivanovo.jpg and /dev/null differ diff --git a/temp-public/js/lite-yt-embed.js b/temp-public/js/lite-yt-embed.js deleted file mode 100644 index 43275cf..0000000 --- a/temp-public/js/lite-yt-embed.js +++ /dev/null @@ -1,166 +0,0 @@ -/** - * A lightweight youtube embed. Still should feel the same to the user, just MUCH faster to initialize and paint. - * - * Thx to these as the inspiration - * https://storage.googleapis.com/amp-vs-non-amp/youtube-lazy.html - * https://autoplay-youtube-player.glitch.me/ - * - * Once built it, I also found these: - * https://github.com/ampproject/amphtml/blob/master/extensions/amp-youtube (👍👍) - * https://github.com/Daugilas/lazyYT - * https://github.com/vb/lazyframe - */ -class LiteYTEmbed extends HTMLElement { - connectedCallback() { - this.videoId = this.getAttribute('videoid'); - - let playBtnEl = this.querySelector('.lty-playbtn'); - // A label for the button takes priority over a [playlabel] attribute on the custom-element - this.playLabel = (playBtnEl && playBtnEl.textContent.trim()) || this.getAttribute('playlabel') || 'Play'; - - /** - * Lo, the youtube placeholder image! (aka the thumbnail, poster image, etc) - * - * See https://github.com/paulirish/lite-youtube-embed/blob/master/youtube-thumbnail-urls.md - * - * TODO: Do the sddefault->hqdefault fallback - * - When doing this, apply referrerpolicy (https://github.com/ampproject/amphtml/pull/3940) - * TODO: Consider using webp if supported, falling back to jpg - */ - if (!this.style.backgroundImage) { - this.style.backgroundImage = `url("https://i.ytimg.com/vi/${this.videoId}/hqdefault.jpg")`; - } - - // Set up play button, and its visually hidden label - if (!playBtnEl) { - playBtnEl = document.createElement('button'); - playBtnEl.type = 'button'; - playBtnEl.classList.add('lty-playbtn'); - this.append(playBtnEl); - } - if (!playBtnEl.textContent) { - const playBtnLabelEl = document.createElement('span'); - playBtnLabelEl.className = 'lyt-visually-hidden'; - playBtnLabelEl.textContent = this.playLabel; - playBtnEl.append(playBtnLabelEl); - } - playBtnEl.removeAttribute('href'); - - // On hover (or tap), warm up the TCP connections we're (likely) about to use. - this.addEventListener('pointerover', LiteYTEmbed.warmConnections, {once: true}); - - // Once the user clicks, add the real iframe and drop our play button - // TODO: In the future we could be like amp-youtube and silently swap in the iframe during idle time - // We'd want to only do this for in-viewport or near-viewport ones: https://github.com/ampproject/amphtml/pull/5003 - this.addEventListener('click', this.addIframe); - - // Chrome & Edge desktop have no problem with the basic YouTube Embed with ?autoplay=1 - // However Safari desktop and most/all mobile browsers do not successfully track the user gesture of clicking through the creation/loading of the iframe, - // so they don't autoplay automatically. Instead we must load an additional 2 sequential JS files (1KB + 165KB) (un-br) for the YT Player API - // TODO: Try loading the the YT API in parallel with our iframe and then attaching/playing it. #82 - this.needsYTApiForAutoplay = navigator.vendor.includes('Apple') || navigator.userAgent.includes('Mobi'); - } - - /** - * Add a to the head - */ - static addPrefetch(kind, url, as) { - const linkEl = document.createElement('link'); - linkEl.rel = kind; - linkEl.href = url; - if (as) { - linkEl.as = as; - } - document.head.append(linkEl); - } - - /** - * Begin pre-connecting to warm up the iframe load - * Since the embed's network requests load within its iframe, - * preload/prefetch'ing them outside the iframe will only cause double-downloads. - * So, the best we can do is warm up a few connections to origins that are in the critical path. - * - * Maybe `` would work, but it's unsupported: http://crbug.com/593267 - * But TBH, I don't think it'll happen soon with Site Isolation and split caches adding serious complexity. - */ - static warmConnections() { - if (LiteYTEmbed.preconnected) return; - - // The iframe document and most of its subresources come right off youtube.com - LiteYTEmbed.addPrefetch('preconnect', 'https://www.youtube-nocookie.com'); - // The botguard script is fetched off from google.com - LiteYTEmbed.addPrefetch('preconnect', 'https://www.google.com'); - - // Not certain if these ad related domains are in the critical path. Could verify with domain-specific throttling. - LiteYTEmbed.addPrefetch('preconnect', 'https://googleads.g.doubleclick.net'); - LiteYTEmbed.addPrefetch('preconnect', 'https://static.doubleclick.net'); - - LiteYTEmbed.preconnected = true; - } - - fetchYTPlayerApi() { - if (window.YT || (window.YT && window.YT.Player)) return; - - this.ytApiPromise = new Promise((res, rej) => { - var el = document.createElement('script'); - el.src = 'https://www.youtube.com/iframe_api'; - el.async = true; - el.onload = _ => { - YT.ready(res); - }; - el.onerror = rej; - this.append(el); - }); - } - - async addYTPlayerIframe(params) { - this.fetchYTPlayerApi(); - await this.ytApiPromise; - - const videoPlaceholderEl = document.createElement('div') - this.append(videoPlaceholderEl); - - const paramsObj = Object.fromEntries(params.entries()); - - new YT.Player(videoPlaceholderEl, { - width: '100%', - videoId: this.videoId, - playerVars: paramsObj, - events: { - 'onReady': event => { - event.target.playVideo(); - } - } - }); - } - - async addIframe(){ - if (this.classList.contains('lyt-activated')) return; - this.classList.add('lyt-activated'); - - const params = new URLSearchParams(this.getAttribute('params') || []); - params.append('autoplay', '1'); - params.append('playsinline', '1'); - - if (this.needsYTApiForAutoplay) { - return this.addYTPlayerIframe(params); - } - - const iframeEl = document.createElement('iframe'); - iframeEl.width = 560; - iframeEl.height = 315; - // No encoding necessary as [title] is safe. https://cheatsheetseries.owasp.org/cheatsheets/Cross_Site_Scripting_Prevention_Cheat_Sheet.html#:~:text=Safe%20HTML%20Attributes%20include - iframeEl.title = this.playLabel; - iframeEl.allow = 'accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture'; - iframeEl.allowFullscreen = true; - // AFAIK, the encoding here isn't necessary for XSS, but we'll do it only because this is a URL - // https://stackoverflow.com/q/64959723/89484 - iframeEl.src = `https://www.youtube-nocookie.com/embed/${encodeURIComponent(this.videoId)}?${params.toString()}`; - this.append(iframeEl); - - // Set focus for a11y - iframeEl.focus(); - } -} -// Register custom element -customElements.define('lite-youtube', LiteYTEmbed); diff --git a/temp-public/js/load-photoswipe.js b/temp-public/js/load-photoswipe.js deleted file mode 100644 index 978c66d..0000000 --- a/temp-public/js/load-photoswipe.js +++ /dev/null @@ -1,80 +0,0 @@ -/* -Put this file in /static/js/load-photoswipe.js -Documentation and licence at https://github.com/liwenyip/hugo-easy-gallery/ -*/ - -/* Show an alert if this js file has been loaded twice */ -if (window.loadphotoswipejs) { - window.alert("You've loaded load-photoswipe.js twice. See https://github.com/liwenyip/hugo-easy-gallery/issues/6") -} -var loadphotoswipejs = 1 - -/* TODO: Make the share function work */ -$( document ).ready(function() { - /* - Initialise Photoswipe - */ - var items = []; // array of slide objects that will be passed to PhotoSwipe() - // for every figure element on the page: - $('figure').each( function() { - if ($(this).attr('class') == 'no-photoswipe') return true; // ignore any figures where class="no-photoswipe" - // get properties from child a/img/figcaption elements, - var $figure = $(this), - $a = $figure.find('a'), - $img = $figure.find('img'), - $src = $a.attr('href'), - $title = $img.attr('alt'), - $msrc = $img.attr('src'); - // if data-size on tag is set, read it and create an item - if ($a.data('size')) { - var $size = $a.data('size').split('x'); - var item = { - src : $src, - w : $size[0], - h : $size[1], - title : $title, - msrc : $msrc - }; - console.log("Using pre-defined dimensions for " + $src); - // if not, set temp default size then load the image to check actual size - } else { - var item = { - src : $src, - w : 800, // temp default size - h : 600, // temp default size - title : $title, - msrc : $msrc - }; - console.log("Using default dimensions for " + $src); - // load the image to check its dimensions - // update the item as soon as w and h are known (check every 30ms) - var img = new Image(); - img.src = $src; - var wait = setInterval(function() { - var w = img.naturalWidth, - h = img.naturalHeight; - if (w && h) { - clearInterval(wait); - item.w = w; - item.h = h; - console.log("Got actual dimensions for " + img.src); - } - }, 30); - } - // Save the index of this image then add it to the array - var index = items.length; - items.push(item); - // Event handler for click on a figure - $figure.on('click', function(event) { - event.preventDefault(); // prevent the normal behaviour i.e. load the hyperlink - // Get the PSWP element and initialise it with the desired options - var $pswp = $('.pswp')[0]; - var options = { - index: index, - bgOpacity: 0.8, - showHideOpacity: true - } - new PhotoSwipe($pswp, PhotoSwipeUI_Default, items, options).init(); - }); - }); -}); \ No newline at end of file diff --git a/temp-public/kostroma.jpg b/temp-public/kostroma.jpg deleted file mode 100644 index a33d709..0000000 Binary files a/temp-public/kostroma.jpg and /dev/null differ diff --git a/temp-public/map.png b/temp-public/map.png deleted file mode 100644 index 4bcd079..0000000 Binary files a/temp-public/map.png and /dev/null differ diff --git a/temp-public/plan.png b/temp-public/plan.png deleted file mode 100644 index 202e804..0000000 Binary files a/temp-public/plan.png and /dev/null differ diff --git a/temp-public/plan.webp b/temp-public/plan.webp deleted file mode 100644 index d39ccde..0000000 Binary files a/temp-public/plan.webp and /dev/null differ diff --git a/temp-public/sitemap.xml b/temp-public/sitemap.xml deleted file mode 100644 index 1914955..0000000 --- a/temp-public/sitemap.xml +++ /dev/null @@ -1,354 +0,0 @@ - - - - https://sleeptrip.ru/ - 2025-04-16T00:00:00+00:00 - - https://sleeptrip.ru/post/start/ - 2025-04-16T00:00:00+00:00 - - https://sleeptrip.ru/post/radiotele/ - 2025-04-06T00:00:00+00:00 - - https://sleeptrip.ru/post/voron/ - 2025-03-24T00:00:00+00:00 - - https://sleeptrip.ru/post/picvetchi/ - 2025-03-22T00:00:00+00:00 - - https://sleeptrip.ru/post/proletar/ - 2025-02-23T00:00:00+00:00 - - https://sleeptrip.ru/post/sletrjev/ - 2025-02-15T00:00:00+00:00 - - https://sleeptrip.ru/post/sletpokrov2/ - 2025-02-08T00:00:00+00:00 - - https://sleeptrip.ru/post/slethotkovo2/ - 2025-02-01T00:00:00+00:00 - - https://sleeptrip.ru/post/sletraek/ - 2025-01-18T00:00:00+00:00 - - https://sleeptrip.ru/post/bursol2/ - 2025-01-06T00:00:00+00:00 - - https://sleeptrip.ru/post/sletkalyaz2/ - 2024-12-21T00:00:00+00:00 - - https://sleeptrip.ru/post/ng25/ - 2024-12-14T00:00:00+00:00 - - https://sleeptrip.ru/post/vetchi/ - 2024-10-12T00:00:00+00:00 - - https://sleeptrip.ru/post/klin/ - 2024-10-05T00:00:00+00:00 - - https://sleeptrip.ru/post/bursol/ - 2024-09-23T00:00:00+00:00 - - https://sleeptrip.ru/post/bogolub/ - 2024-09-14T00:00:00+00:00 - - https://sleeptrip.ru/post/sletberend/ - 2024-09-07T00:00:00+00:00 - - https://sleeptrip.ru/post/sletlubv/ - 2024-08-31T00:00:00+00:00 - - https://sleeptrip.ru/post/sletkalyaz/ - 2024-08-10T00:00:00+00:00 - - https://sleeptrip.ru/post/sletvas/ - 2024-08-03T00:00:00+00:00 - - https://sleeptrip.ru/post/rzhev/ - 2024-07-27T00:00:00+00:00 - - https://sleeptrip.ru/post/yaropol/ - 2024-07-14T00:00:00+00:00 - - https://sleeptrip.ru/post/zelen/ - 2024-06-28T00:00:00+00:00 - - https://sleeptrip.ru/post/fedor/ - 2024-06-23T00:00:00+00:00 - - https://sleeptrip.ru/post/msk-pet/ - 2024-06-06T00:00:00+00:00 - - https://sleeptrip.ru/post/dronoslet/ - 2024-06-05T00:00:00+00:00 - - https://sleeptrip.ru/post/kardio/ - 2024-06-03T00:00:00+00:00 - - https://sleeptrip.ru/post/slet_20240526/ - 2024-05-26T00:00:00+00:00 - - https://sleeptrip.ru/post/takoykavkaz/ - 2024-04-29T00:00:00+00:00 - - https://sleeptrip.ru/post/kalyazin3/ - 2024-03-30T00:00:00+00:00 - - https://sleeptrip.ru/post/breeze/ - 2024-03-16T00:00:00+00:00 - - https://sleeptrip.ru/post/otkryt2/ - 2024-03-09T00:00:00+00:00 - - https://sleeptrip.ru/post/gorb/ - 2024-03-04T00:00:00+00:00 - - https://sleeptrip.ru/post/otkryt/ - 2024-02-10T00:00:00+00:00 - - https://sleeptrip.ru/post/sever/ - 2024-02-03T00:00:00+00:00 - - https://sleeptrip.ru/post/serdce/ - 2024-01-20T00:00:00+00:00 - - https://sleeptrip.ru/post/lager/ - 2024-01-13T00:00:00+00:00 - - https://sleeptrip.ru/post/snegorassvet/ - 2024-01-07T00:00:00+00:00 - - https://sleeptrip.ru/post/happynew/ - 2023-12-30T00:00:00+00:00 - - https://sleeptrip.ru/post/elki-palki/ - 2023-12-16T00:00:00+00:00 - - https://sleeptrip.ru/post/moroz-rassvet/ - 2023-12-02T00:00:00+00:00 - - https://sleeptrip.ru/post/bezdon/ - 2023-11-19T00:00:00+00:00 - - https://sleeptrip.ru/post/dubna/ - 2023-11-18T00:00:00+00:00 - - https://sleeptrip.ru/post/moscow/ - 2023-09-30T00:00:00+00:00 - - https://sleeptrip.ru/post/tulobl/ - 2023-09-23T00:00:00+00:00 - - https://sleeptrip.ru/post/tverobl/ - 2023-07-15T00:00:00+00:00 - - https://sleeptrip.ru/post/kcr/ - 2023-06-03T00:00:00+00:00 - - https://sleeptrip.ru/post/univer/ - 2023-04-23T00:00:00+00:00 - - https://sleeptrip.ru/post/piter/ - 2023-03-20T00:00:00+00:00 - - https://sleeptrip.ru/post/terib/ - 2023-03-11T00:00:00+00:00 - - https://sleeptrip.ru/post/pokrov/ - 2023-02-04T00:00:00+00:00 - - https://sleeptrip.ru/post/elbrus/ - 2023-01-28T00:00:00+00:00 - - https://sleeptrip.ru/post/hrap/ - 2023-01-14T00:00:00+00:00 - - https://sleeptrip.ru/post/serpzubr/ - 2023-01-08T00:00:00+00:00 - - https://sleeptrip.ru/post/apple/ - 2023-01-07T00:00:00+00:00 - - https://sleeptrip.ru/post/yahroma/ - 2022-12-25T00:00:00+00:00 - - https://sleeptrip.ru/post/kalyazin2/ - 2022-12-03T00:00:00+00:00 - - https://sleeptrip.ru/post/mojaisk/ - 2022-10-22T00:00:00+00:00 - - https://sleeptrip.ru/post/dmitrov2/ - 2022-10-16T00:00:00+00:00 - - https://sleeptrip.ru/post/serpdor/ - 2022-10-08T00:00:00+00:00 - - https://sleeptrip.ru/post/piknik/ - 2022-10-01T00:00:00+00:00 - - https://sleeptrip.ru/post/altai/ - 2022-09-12T00:00:00+00:00 - - https://sleeptrip.ru/post/volok/ - 2022-09-05T00:00:00+00:00 - - https://sleeptrip.ru/post/podlodka/ - 2022-09-04T00:00:00+00:00 - - https://sleeptrip.ru/post/vladsuzd/ - 2022-08-14T00:00:00+00:00 - - https://sleeptrip.ru/post/belayagora/ - 2022-08-06T00:00:00+00:00 - - https://sleeptrip.ru/post/newkbr/ - 2022-07-21T00:00:00+00:00 - - https://sleeptrip.ru/post/konduki2/ - 2022-07-16T00:00:00+00:00 - - https://sleeptrip.ru/post/ostrova/ - 2022-07-14T00:00:00+00:00 - - https://sleeptrip.ru/post/golf/ - 2022-06-25T00:00:00+00:00 - - https://sleeptrip.ru/post/tver/ - 2022-06-12T00:00:00+00:00 - - https://sleeptrip.ru/post/kashira/ - 2022-06-05T00:00:00+00:00 - - https://sleeptrip.ru/post/klin/ - 2022-05-29T00:00:00+00:00 - - https://sleeptrip.ru/post/kavkaz/ - 2022-05-05T00:00:00+00:00 - - https://sleeptrip.ru/post/ges/ - 2022-04-18T00:00:00+00:00 - - https://sleeptrip.ru/post/iosifo/ - 2022-04-17T00:00:00+00:00 - - https://sleeptrip.ru/post/dino/ - 2022-03-27T00:00:00+00:00 - - https://sleeptrip.ru/post/sergiev-posad/ - 2022-03-19T00:00:00+00:00 - - https://sleeptrip.ru/post/yaroslavl/ - 2022-03-07T00:00:00+00:00 - - https://sleeptrip.ru/post/ryazan/ - 2022-02-21T00:00:00+00:00 - - https://sleeptrip.ru/post/rostov/ - 2022-02-19T00:00:00+00:00 - - https://sleeptrip.ru/post/spirovo/ - 2022-02-13T00:00:00+00:00 - - https://sleeptrip.ru/post/glubokovo/ - 2022-02-06T00:00:00+00:00 - - https://sleeptrip.ru/post/djipers/ - 2022-02-05T00:00:00+00:00 - - https://sleeptrip.ru/post/murmansk/ - 2022-01-29T00:00:00+00:00 - - https://sleeptrip.ru/post/kalyazin/ - 2022-01-23T00:00:00+00:00 - - https://sleeptrip.ru/post/new/ - 2021-12-12T00:00:00+00:00 - - https://sleeptrip.ru/post/zimni/ - 2021-12-04T00:00:00+00:00 - - https://sleeptrip.ru/post/podolsk-poka/ - 2021-11-14T00:00:00+00:00 - - https://sleeptrip.ru/post/panfil/ - 2021-11-13T00:00:00+00:00 - - https://sleeptrip.ru/post/bykovo/ - 2021-11-07T00:00:00+00:00 - - https://sleeptrip.ru/post/peremil/ - 2021-10-31T00:00:00+00:00 - - https://sleeptrip.ru/post/morozki/ - 2021-10-19T00:00:00+00:00 - - https://sleeptrip.ru/post/kbr/ - 2021-09-28T00:00:00+00:00 - - https://sleeptrip.ru/post/kurkino/ - 2021-09-14T00:00:00+00:00 - - https://sleeptrip.ru/post/kalininrad/ - 2021-09-13T00:00:00+00:00 - - https://sleeptrip.ru/post/posad/ - 2021-07-31T00:00:00+00:00 - - https://sleeptrip.ru/post/vladimir/ - 2021-07-14T00:00:00+00:00 - - https://sleeptrip.ru/post/kino/ - 2021-07-11T00:00:00+00:00 - - https://sleeptrip.ru/post/tula/ - 2021-06-19T00:00:00+00:00 - - https://sleeptrip.ru/post/detlager/ - 2021-05-29T00:00:00+00:00 - - https://sleeptrip.ru/post/konduki/ - 2021-05-22T00:00:00+00:00 - - https://sleeptrip.ru/post/sakura/ - 2021-05-15T00:00:00+00:00 - - https://sleeptrip.ru/post/serpuhov2/ - 2021-05-09T00:00:00+00:00 - - https://sleeptrip.ru/post/lenivec/ - 2021-05-07T00:00:00+00:00 - - https://sleeptrip.ru/post/kopyto/ - 2021-05-06T00:00:00+00:00 - - https://sleeptrip.ru/post/kolomna/ - 2021-05-05T00:00:00+00:00 - - https://sleeptrip.ru/post/serpuhov-leto/ - 2021-04-28T00:00:00+00:00 - - https://sleeptrip.ru/post/serpuhov/ - 2021-04-26T00:00:00+00:00 - - https://sleeptrip.ru/post/serdce/ - 2021-04-10T00:00:00+00:00 - - https://sleeptrip.ru/post/dmitrov/ - 2021-03-28T00:00:00+00:00 - - https://sleeptrip.ru/post/podolsk/ - 2020-12-26T00:00:00+00:00 - - https://sleeptrip.ru/ask/ - - https://sleeptrip.ru/planatrip/ - - https://sleeptrip.ru/gallery/ - - https://sleeptrip.ru/map/ - - https://sleeptrip.ru/plan/ - - diff --git a/temp-public/vladimir.jpg b/temp-public/vladimir.jpg deleted file mode 100644 index 0d93f2c..0000000 Binary files a/temp-public/vladimir.jpg and /dev/null differ diff --git a/update_maps.sh b/update_maps.sh deleted file mode 100755 index a36c005..0000000 --- a/update_maps.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -# Скрипт для обновления всех Яндекс карт в постах - -echo "Обновление карт в постах..." - -# Найдем все файлы с картами -files=$(grep -l "api-maps.yandex.ru" content/post/*.md) - -for file in $files; do - echo "Обновляем: $file" - - # Заменяем старый формат на новый - sed -i '' 's||
\ -\ -
|g' "$file" - - # Заменяем старые кнопки "Вернуться в начало" на новые - sed -i '' 's|
Вернуться в начало страницы|{{< back-to-top >}}|g' "$file" -done - -echo "Готово! Обновлено карт в $(echo "$files" | wc -l) постах." \ No newline at end of file diff --git a/update_maps_fixed.sh b/update_maps_fixed.sh deleted file mode 100755 index 2dc01c5..0000000 --- a/update_maps_fixed.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -# Скрипт для обновления всех Яндекс карт в постах - -echo "Обновление карт в постах..." - -# Найдем все файлы с картами -files=$(grep -l "api-maps.yandex.ru" content/post/*.md) - -for file in $files; do - echo "Обновляем: $file" - - # Заменяем старый формат на новый - sed -i '' 's||
\ -\ -
|g' "$file" - - # Заменяем старые кнопки "Вернуться в начало" на новые - sed -i '' 's|Вернуться в начало страницы|{{< back-to-top >}}|g' "$file" -done - -echo "Готово! Обновлено карт в $(echo "$files" | wc -l) постах." \ No newline at end of file diff --git a/verify-bucket.sh b/verify-bucket.sh deleted file mode 100755 index 48667db..0000000 --- a/verify-bucket.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/bash - -# Configuration - ИЗМЕНИТЕ ЭТИ ЗНАЧЕНИЯ на ваши -BUCKET_NAME="test-ptp" - -# Проверка наличия .git файлов в бакете -echo "Проверка наличия .git файлов в бакете..." -git_result=$(s3cmd ls s3://$BUCKET_NAME/ --recursive | grep -i ".git") - -if [ -z "$git_result" ]; then - echo "✅ Отлично! .git файлы не найдены в бакете." -else - echo "⚠️ Внимание! Найдены следующие .git файлы:" - echo "$git_result" - echo "Запустите cleanup-bucket.sh для их удаления." -fi - -# Проверка наличия .env файлов в бакете -echo "Проверка наличия .env файлов в бакете..." -env_result=$(s3cmd ls s3://$BUCKET_NAME/ --recursive | grep -i "\.env") - -if [ -z "$env_result" ]; then - echo "✅ Отлично! .env файлы не найдены в бакете." -else - echo "⚠️ Внимание! Найдены следующие .env файлы с возможными секретами:" - echo "$env_result" - echo "Запустите cleanup-bucket.sh для их удаления." -fi - -# Проверка наличия config*.toml файлов в бакете -echo "Проверка config*.toml файлов..." -config_result=$(s3cmd ls s3://$BUCKET_NAME/ --recursive | grep -i "config.*\.toml") - -if [ -z "$config_result" ]; then - echo "✅ Отлично! config*.toml файлы не найдены в бакете." -else - echo "⚠️ Внимание! Найдены следующие config файлы, проверьте их на наличие секретов:" - echo "$config_result" - echo "Проверьте эти файлы на наличие секретных ключей, токенов и паролей." -fi \ No newline at end of file diff --git a/ИТОГ.md b/ИТОГ.md deleted file mode 100644 index 1058bda..0000000 --- a/ИТОГ.md +++ /dev/null @@ -1,46 +0,0 @@ -# Исправление уязвимости с .git файлами - -## Что было сделано - -1. ✅ Создан файл `.gitignore` для игнорирования временных и сгенерированных файлов -2. ✅ Обновлен `deploy.sh` с правильными исключениями Git-файлов -3. ✅ Создан скрипт `cleanup-bucket.sh` для удаления существующих .git файлов -4. ✅ Создан скрипт `verify-bucket.sh` для проверки наличия .git файлов - -## Как использовать - -### Очистка бакета от .git файлов (выполнить один раз) - -```bash -# Сначала убедитесь, что в cleanup-bucket.sh указаны правильные значения: -# BUCKET_NAME="test-ptp" -# S3_ENDPOINT="https://s3.regru.cloud" - -# Затем запустите скрипт: -./cleanup-bucket.sh -``` - -### Проверка бакета (можно запускать в любое время) - -```bash -# Сначала убедитесь, что в verify-bucket.sh указаны правильные значения -# BUCKET_NAME и S3_ENDPOINT - -# Затем запустите скрипт: -./verify-bucket.sh -``` - -### Деплой с исключениями - -Обновленный скрипт `deploy.sh` теперь автоматически исключает все .git файлы при загрузке в S3. - -## Рекомендации - -1. Выполните `cleanup-bucket.sh` сразу для очистки текущих .git файлов -2. Проверьте результат с помощью `verify-bucket.sh` -3. Используйте обновленный `deploy.sh` для всех будущих деплоев -4. Периодически запускайте `verify-bucket.sh` для проверки безопасности - -## Результат - -После этих изменений ваш Git-репозиторий будет нормально работать локально, но при этом .git-файлы никогда не будут выгружаться в публичный бакет, что закроет эту уязвимость. \ No newline at end of file