From: Snapshot-Content-Location: https://www-hostinger-ru.cdn.ampproject.org/v/s/www.hostinger.ru/rukovodstva/komanda-grep-v-linux/amp?amp_js_v=a6&_gsa=1&usqp=mq331AQHKAFQArABIA%3D%3D#aoh=16205465737919&referrer=https%3A%2F%2Fwww.google.com&_tf=%D0%A1%20%D1%81%D0%B0%D0%B9%D1%82%D0%B0%20%251%24s&share=https%3A%2F%2Fwww.hostinger.ru%2Frukovodstva%2Fkomanda-grep-v-linux Subject: =?utf-8?Q?=D0=92=D1=81=D1=91=20=D0=BF=D1=80=D0=BE=20=D0=9A=D0=BE=D0=BC=D0?= =?utf-8?Q?=B0=D0=BD=D0=B4=D1=83=20Grep=20=D0=B2=20Linux=20+=20=D0=9F=D1?= =?utf-8?Q?=80=D0=B0=D0=BA=D1=82=D0=B8=D1=87=D0=B5=D1=81=D0=BA=D0=B8=D0=B5?= =?utf-8?Q?=20=D0=9F=D1=80=D0=B8=D0=BC=D0=B5=D1=80=D1=8B?= Date: Sun, 9 May 2021 07:49:52 -0000 MIME-Version: 1.0 Content-Type: multipart/related; type="text/html"; boundary="----MultipartBoundary--z8J7UdiCQceqzVdIOKFzKDZAZLhRZIQmHWcpQXjrNf----" ------MultipartBoundary--z8J7UdiCQceqzVdIOKFzKDZAZLhRZIQmHWcpQXjrNf---- Content-Type: text/html Content-ID: Content-Transfer-Encoding: binary Content-Location: https://www-hostinger-ru.cdn.ampproject.org/v/s/www.hostinger.ru/rukovodstva/komanda-grep-v-linux/amp?amp_js_v=a6&_gsa=1&usqp=mq331AQHKAFQArABIA%3D%3D#aoh=16205465737919&referrer=https%3A%2F%2Fwww.google.com&_tf=%D0%A1%20%D1%81%D0%B0%D0%B9%D1%82%D0%B0%20%251%24s&share=https%3A%2F%2Fwww.hostinger.ru%2Frukovodstva%2Fkomanda-grep-v-linux Всё про Команду Grep в Linux + Практические Примеры

Всё про Команду Grep в Linux + Практические Примеры

Баннер к статье "Команда Grep в Linux" - монитор, логотип Linux

Серверы на базе операционной системы Linux обычно не имеют графического интерфейса по соображениям безопасности. Поэтому каждый, кто собирается самостоятельно управлять сервером должен уметь работать с терминалом Linux.

Очень полезная операция, которую мы можем выполнить с помощью терминала — это поиск внутри текстового файла. Особенно, если мы работаем с файлами конфигурации таких сервисов, как NTP.

В этом коротком руководстве, мы покажем, как использовать команду grep в Linux (Unix). А также подкрепим теоретический материал полезными примерами из повседневного рабочего процесса.

Как использовать команду Grep?

Принадлежащая к семейству Unix команда grep является одним из самых универсальных и полезных инструментов. Эта утилита выполняет поиск в текстовом файле за заданным нами паттерном. Другими словами, с помощью grep вы можете найти необходимое вам слово или значение. А содержащие ваш запрос строки или строка будут выведены в терминал.

На первый взгляд, может показаться, что эта утилита имеет слишком узкое применение. Однако она способна значительно облегчить жизнь системным администраторам, которым приходится обрабатывать множество служб с различными файлами конфигурации. С помощью команды они могут быстро найти необходимые им строки в этих файлах.

Сначала давайте подключимся к VPS с помощью SSH. Вот статья, в которой показано, как это сделать с помощью PuTTY SSH.

ssh vash-user@vash-server

Если на вашем компьютере вы используете Linux, просто откройте терминал.

Синтаксис команды grep при поиске в одном файле выглядит следующим образом:

grep [опции] значение [ФАЙЛ]
  • grep — команда
  • [опции] — модификаторы команды
  • значение — поисковый запрос
  • [ФАЙЛ] — файл, в котором вы выполняете поиск

Вы можете просмотреть документацию и пояснения к различным опциям команды, введя в командной строке:

grep –help

Как видите, команда предлагает нам множество опций. Однако наиболее важными и часто используемыми являются параметры:

  • -i — поиск не будет чувствителен к регистру. То есть, если вы хотите найти слово «автомобиль», написанные как «АВТОМОБИЛЬ» слова тоже будут найдены.
  • -c — покажет только количество строк, содержащих поисковый запрос
  • -r — включает рекурсивный поиск в текущем каталоге
  • -n — выведет номера строк, содержащих поисковый запрос
  • -v — обратный поиск, выводит только строки, в которых нет указанного поискового запроса

Полезные примеры Grep

Давайте разберём несколько практических примеров команды grep.

Поиск слова в текстовом файле

Чтобы найти слово в текстовом файле, просто введите команду:

grep запрос файл
  • запрос — слово, которое вы ищете
  • файл — файл, в котором вы ищете слово

В нашем случае мы ищем слово command в файле с именем grep:

grep command grep

В выводе, слова, соответствующие поисковому запросу будут выделены следующим образом:

Поиск слово, игнорируя регистр

Для этого необходимо добавить опцию -i.

grep -i запрос файл

Вот и всё!

Количество найденных слов по целевому запросу

Используя эту команду, вы также можете узнать, сколько раз определённое слово используется в текстовом файле. Просто добавьте опцию -c.

grep -c запрос файл

Поиск по нескольким ключевым словам

До сих пор мы искали только одно слово. Однако grep позволяет использовать несколько поисковых запросов в одной команде. Вот как это выглядит:

grep запрос1 файл | grep запрос2 файл

Команда работает очень просто. Сначала мы ищем запрос1, а затем с помощью вертикальной черты и grep продолжаем поиск  второго слова — запрос2.

Поиск слова в нескольких файлах

Также вы можете искать слово в нескольких файлах одновременно с помощью одной команды:

grep -l слово_которое_ищете ./*

Файлы, содержащие слово, которое вы искали, будут выведены в терминал.

Итоги

Команда grep может значительно упростить жизнь, если мы работаем с большим количеством текстовых файлов. Вот почему на первый взгляд простая утилита grep считается универсальной командой с множеством полезных функций.

В этом посте вы узнали основные функции команды grep в Linux. Однако мы рекомендуем не останавливаться на достигнутом и ознакомиться с официальной документацией. Удачной разработки вам и успешных проектов!

Эта запись последний раз редактировалась 23 октября, 2020 2:25 пп

Olha L.: Ольга уже около пяти лет работает менеджером в сфере IT. Написание технических заданий и инструкций — одна из её главных обязанностей. Её хобби — узнавать что-то новое и создавать интересные и полезные статьи о современных технологиях, веб-разработке, языках программирования и многом другом.
Похожие Записи
------MultipartBoundary--z8J7UdiCQceqzVdIOKFzKDZAZLhRZIQmHWcpQXjrNf---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: cid:css-01e3715f-3773-4295-8d3d-75c319d7f26e@mhtml.blink @charset "utf-8"; html { overflow-x: hidden !important; } html.i-amphtml-fie { height: 100% !important; width: 100% !important; } html:not([amp4ads]), html:not([amp4ads]) body { height: auto !important; } html:not([amp4ads]) body { margin: 0px !important; } body { text-size-adjust: 100%; } html.i-amphtml-singledoc.i-amphtml-embedded { touch-action: pan-y pinch-zoom; } html.i-amphtml-fie > body, html.i-amphtml-singledoc > body { overflow: visible !important; } html.i-amphtml-fie:not(.i-amphtml-inabox) > body, html.i-amphtml-singledoc:not(.i-amphtml-inabox) > body { position: relative !important; } html.i-amphtml-ios-embed-legacy > body { overflow: hidden auto !important; position: absolute !important; } html.i-amphtml-ios-embed { position: static; overflow-y: auto !important; } #i-amphtml-wrapper { overflow: hidden auto !important; position: absolute !important; inset: 0px !important; margin: 0px !important; display: block !important; } html.i-amphtml-ios-embed.i-amphtml-ios-overscroll, html.i-amphtml-ios-embed.i-amphtml-ios-overscroll > #i-amphtml-wrapper { } #i-amphtml-wrapper > body { position: relative !important; border-top: 1px solid transparent !important; } #i-amphtml-wrapper + body { visibility: visible; } #i-amphtml-wrapper + body .i-amphtml-lightbox-element, #i-amphtml-wrapper + body[i-amphtml-lightbox] { visibility: hidden; } #i-amphtml-wrapper + body[i-amphtml-lightbox] .i-amphtml-lightbox-element { visibility: visible; } #i-amphtml-wrapper.i-amphtml-scroll-disabled, .i-amphtml-scroll-disabled { overflow: hidden !important; } amp-instagram { background-color: rgb(255, 255, 255); padding: 54px 0px 0px !important; } amp-iframe iframe { box-sizing: border-box !important; } [amp-access][amp-access-hide] { display: none; } [subscriptions-dialog], body:not(.i-amphtml-subs-ready) [subscriptions-action], body:not(.i-amphtml-subs-ready) [subscriptions-section] { display: none !important; } amp-experiment, amp-live-list > [update] { display: none; } amp-list[resizable-children] > .i-amphtml-loading-container.amp-hidden { display: none !important; } amp-list [fetch-error], amp-list[load-more] [load-more-button], amp-list[load-more] [load-more-end], amp-list[load-more] [load-more-failed], amp-list[load-more] [load-more-loading] { display: none; } amp-list[diffable] div[role="list"] { display: block; } amp-story-page, amp-story[standalone] { min-height: 1px !important; display: block !important; height: 100% !important; margin: 0px !important; padding: 0px !important; overflow: hidden !important; width: 100% !important; } amp-story[standalone] { background-color: rgb(32, 33, 37) !important; position: relative !important; } amp-story-page { background-color: rgb(117, 117, 117); } amp-story .amp-active > div, amp-story .i-amphtml-loader-background { display: none !important; } amp-story-page:not(:first-of-type):not([distance]):not([active]) { transform: translateY(1000vh) !important; } amp-autocomplete { position: relative !important; display: inline-block !important; } amp-autocomplete > input, amp-autocomplete > textarea { padding: 0.5rem; border: 1px solid rgba(0, 0, 0, 0.33); } .i-amphtml-autocomplete-results, amp-autocomplete > input, amp-autocomplete > textarea { font-size: 1rem; line-height: 1.5rem; } [amp-fx^="fly-in"] { visibility: hidden; } amp-script[nodom] { visibility: hidden; position: fixed !important; top: 0px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; } [hidden] { display: none !important; } .i-amphtml-element { display: inline-block; } .i-amphtml-blurry-placeholder { pointer-events: none; transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1) 0s !important; } [layout="nodisplay"]:not(.i-amphtml-element) { display: none !important; } .i-amphtml-layout-fixed, [layout="fixed"][width][height]:not(.i-amphtml-layout-fixed) { display: inline-block; position: relative; } .i-amphtml-layout-responsive, [layout="responsive"][width][height]:not(.i-amphtml-layout-responsive), [width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive), [width][height][sizes]:not([layout]):not(.i-amphtml-layout-responsive) { display: block; position: relative; } .i-amphtml-layout-intrinsic, [layout="intrinsic"][width][height]:not(.i-amphtml-layout-intrinsic) { display: inline-block; position: relative; max-width: 100%; } .i-amphtml-layout-intrinsic .i-amphtml-sizer { max-width: 100%; } .i-amphtml-intrinsic-sizer { max-width: 100%; display: block !important; } .i-amphtml-layout-container, .i-amphtml-layout-fixed-height, [layout="container"], [layout="fixed-height"][height]:not(.i-amphtml-layout-fixed-height) { display: block; position: relative; } .i-amphtml-layout-fill, .i-amphtml-layout-fill.i-amphtml-notbuilt, [layout="fill"]:not(.i-amphtml-layout-fill), body noscript > * { display: block; position: absolute; inset: 0px; overflow: hidden !important; } body noscript > * { width: 100%; height: 100%; z-index: 2; position: absolute !important; } body noscript { display: inline !important; } .i-amphtml-layout-flex-item, [layout="flex-item"]:not(.i-amphtml-layout-flex-item) { display: block; position: relative; flex: 1 1 auto; } .i-amphtml-layout-fluid { position: relative; } .i-amphtml-layout-size-defined { overflow: hidden !important; } .i-amphtml-layout-awaiting-size { position: absolute !important; top: auto !important; bottom: auto !important; } i-amphtml-sizer { display: block !important; } @supports (aspect-ratio:1/1) { i-amphtml-sizer.i-amphtml-disable-ar { display: none !important; } } .i-amphtml-blurry-placeholder, .i-amphtml-fill-content { display: block; height: 0px; max-height: 100%; max-width: 100%; min-height: 100%; min-width: 100%; width: 0px; margin: auto; } .i-amphtml-layout-size-defined .i-amphtml-fill-content { position: absolute; inset: 0px; } .i-amphtml-replaced-content, .i-amphtml-screen-reader { padding: 0px !important; border: none !important; } .i-amphtml-screen-reader { position: fixed !important; top: 0px !important; left: 0px !important; width: 4px !important; height: 4px !important; opacity: 0 !important; overflow: hidden !important; margin: 0px !important; display: block !important; visibility: visible !important; } .i-amphtml-screen-reader ~ .i-amphtml-screen-reader { left: 8px !important; } .i-amphtml-screen-reader ~ .i-amphtml-screen-reader ~ .i-amphtml-screen-reader { left: 12px !important; } .i-amphtml-screen-reader ~ .i-amphtml-screen-reader ~ .i-amphtml-screen-reader ~ .i-amphtml-screen-reader { left: 16px !important; } .i-amphtml-unresolved { position: relative; overflow: hidden !important; } .i-amphtml-select-disabled { user-select: none !important; } .i-amphtml-notbuilt, [layout]:not(.i-amphtml-element), [width][height][heights]:not([layout]):not(.i-amphtml-element), [width][height][sizes]:not([layout]):not(.i-amphtml-element) { position: relative; overflow: hidden !important; color: transparent !important; } .i-amphtml-notbuilt:not(.i-amphtml-layout-container) > *, [layout]:not([layout="container"]):not(.i-amphtml-element) > *, [width][height][heights]:not([layout]):not(.i-amphtml-element) > *, [width][height][sizes]:not([layout]):not(.i-amphtml-element) > * { display: none; } amp-img:not(.i-amphtml-element)[i-amphtml-ssr] > img.i-amphtml-fill-content { display: block; } .i-amphtml-notbuilt:not(.i-amphtml-layout-container), [layout]:not([layout="container"]):not(.i-amphtml-element), [width][height][heights]:not([layout]):not(.i-amphtml-element), [width][height][sizes]:not([layout]):not(.i-amphtml-element) { color: transparent !important; line-height: 0 !important; } .i-amphtml-ghost { visibility: hidden !important; } .i-amphtml-element > [placeholder], [layout]:not(.i-amphtml-element) > [placeholder], [width][height][heights]:not([layout]):not(.i-amphtml-element) > [placeholder], [width][height][sizes]:not([layout]):not(.i-amphtml-element) > [placeholder] { display: block; line-height: normal; } .i-amphtml-element > [placeholder].amp-hidden, .i-amphtml-element > [placeholder].hidden { visibility: hidden; } .i-amphtml-element:not(.amp-notsupported) > [fallback], .i-amphtml-layout-container > [placeholder].amp-hidden, .i-amphtml-layout-container > [placeholder].hidden { display: none; } .i-amphtml-layout-size-defined > [fallback], .i-amphtml-layout-size-defined > [placeholder] { z-index: 1; position: absolute !important; inset: 0px !important; } amp-img.i-amphtml-ssr:not(.i-amphtml-element) > [placeholder] { z-index: auto; } .i-amphtml-notbuilt > [placeholder] { display: block !important; } .i-amphtml-hidden-by-media-query { display: none !important; } .i-amphtml-element-error { background: red !important; color: rgb(255, 255, 255) !important; position: relative !important; } .i-amphtml-element-error::before { content: attr(error-message); } i-amp-scroll-container, i-amphtml-scroll-container { position: absolute; inset: 0px; display: block; } i-amp-scroll-container.amp-active, i-amphtml-scroll-container.amp-active { overflow: auto; } .i-amphtml-loading-container { pointer-events: none; z-index: 1; display: block !important; } .i-amphtml-notbuilt > .i-amphtml-loading-container { display: block !important; } .i-amphtml-loading-container.amp-hidden { visibility: hidden; } .i-amphtml-element > [overflow] { cursor: pointer; position: relative; z-index: 2; visibility: hidden; display: initial; line-height: normal; } .i-amphtml-layout-size-defined > [overflow] { position: absolute; } .i-amphtml-element > [overflow].amp-visible { visibility: visible; } template { display: none !important; } .amp-border-box, .amp-border-box *, .amp-border-box ::after, .amp-border-box ::before { box-sizing: border-box; } amp-pixel { display: none !important; } amp-analytics, amp-auto-ads, amp-story-auto-ads { visibility: hidden; position: fixed !important; top: 0px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; } html.i-amphtml-fie > amp-analytics { position: initial !important; } [visible-when-invalid]:not(.visible), form [submit-error], form [submit-success], form [submitting] { display: none; } amp-accordion { display: block !important; } @media (min-width: 1px) { :where(amp-accordion > section) > :first-child { margin: 0px; background-color: rgb(239, 239, 239); padding-right: 20px; border: 1px solid rgb(223, 223, 223); } :where(amp-accordion > section) > :last-child { margin: 0px; } } amp-accordion > section { float: none !important; } amp-accordion > section > * { float: none !important; display: block !important; overflow: hidden !important; position: relative !important; } amp-accordion, amp-accordion > section { margin: 0px; } amp-accordion:not(.i-amphtml-built) > section > :last-child { display: none !important; } amp-accordion:not(.i-amphtml-built) > section[expanded] > :last-child { display: block !important; } ------MultipartBoundary--z8J7UdiCQceqzVdIOKFzKDZAZLhRZIQmHWcpQXjrNf---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: cid:css-bc736883-7e46-4738-bf5d-3df78ceb3316@mhtml.blink @charset "utf-8"; .i-amphtml-loader-background { position: absolute; inset: 0px; background-color: rgb(248, 248, 248); } .i-amphtml-new-loader { display: inline-block; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 0px; height: 0px; color: rgb(170, 170, 170); } .i-amphtml-new-loader-size-default, .i-amphtml-new-loader-size-small { width: 72px; height: 72px; } .i-amphtml-new-loader-logo { transform-origin: center center; opacity: 0; animation-duration: 0.8s; animation-timing-function: ease-in; animation-iteration-count: 1; animation-direction: normal; animation-fill-mode: forwards; animation-play-state: running; animation-name: i-amphtml-new-loader-scale-and-fade-in; animation-delay: calc(0.6s - var(--loader-delay-offset)); } .i-amphtml-new-loader-size-small .i-amphtml-new-loader-logo { display: none; } .i-amphtml-new-loader-logo-default { fill: currentcolor; animation-duration: 0.8s; animation-timing-function: ease-out; animation-iteration-count: 1; animation-direction: normal; animation-fill-mode: forwards; animation-play-state: running; animation-name: i-amphtml-new-loader-fade-out; animation-delay: calc(1.8s - var(--loader-delay-offset)); } .i-amphtml-new-loader-has-shim { color: rgb(255, 255, 255) !important; } .i-amphtml-new-loader-shim { width: 72px; height: 72px; border-radius: 50%; display: none; transform-origin: center center; opacity: 0; background-color: rgba(0, 0, 0, 0.6); animation-duration: 0.8s; animation-timing-function: ease-in; animation-iteration-count: 1; animation-direction: normal; animation-fill-mode: forwards; animation-play-state: running; animation-name: i-amphtml-new-loader-scale-and-fade-in; animation-delay: calc(0.6s - var(--loader-delay-offset)); } .i-amphtml-new-loader-size-small .i-amphtml-new-loader-shim { width: 48px; height: 48px; margin: 12px; } .i-amphtml-new-loader-has-shim .i-amphtml-new-loader-shim { display: initial; } .i-amphtml-new-loader-has-shim .i-amphtml-new-loader-logo-default { display: none; } .i-amphtml-new-loader-has-shim .i-amphtml-new-loader-transparent-on-shim { fill: transparent !important; } .i-amphtml-new-loader-logo, .i-amphtml-new-loader-shim, .i-amphtml-new-loader-spinner-wrapper { position: absolute; inset: 0px; } .i-amphtml-new-loader-spinner-wrapper { margin: 12px; } .i-amphtml-new-loader-spinner { stroke: currentcolor; stroke-width: 1.5px; opacity: 0; animation-duration: 0.8s; animation-timing-function: ease-in; animation-iteration-count: 1; animation-direction: normal; animation-fill-mode: forwards; animation-play-state: running; animation-name: i-amphtml-new-loader-fade-in; animation-delay: calc(1.8s - var(--loader-delay-offset)); } .i-amphtml-new-loader-spinner-path { animation-duration: 0.6s, 1.2s; animation-timing-function: steps(30), steps(59); animation-iteration-count: 1, infinite; animation-direction: normal, normal; animation-fill-mode: none, none; animation-play-state: running, running; animation-name: frame-position-first-spin, frame-position-infinite-spin; animation-delay: calc(2.8s - var(--loader-delay-offset)),calc(3.4s - var(--loader-delay-offset)); } .i-amphtml-new-loader-size-small .i-amphtml-new-loader-spinner { transform: scale(0.54545); stroke-width: 2.75px; } .i-amphtml-new-loader-size-small .i-amphtml-new-loader-spinner-path { animation-delay: calc(1.4s - var(--loader-delay-offset)),calc(2s - var(--loader-delay-offset)); } .i-amphtml-new-loader * { animation-play-state: paused; } .amp-active > .i-amphtml-new-loader * { animation-play-state: running; } .i-amphtml-new-loader-ad-logo { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; } .i-amphtml-new-loader-ad-label { color: currentcolor !important; font-family: sans-serif !important; font-feature-settings: initial !important; font-kerning: initial !important; font-optical-sizing: initial !important; font-size: 11px !important; font-stretch: initial !important; font-style: initial !important; font-variant: initial !important; font-variation-settings: initial !important; font-weight: initial !important; forced-color-adjust: initial !important; text-orientation: initial !important; text-rendering: initial !important; -webkit-font-smoothing: initial !important; -webkit-locale: initial !important; -webkit-text-orientation: initial !important; -webkit-writing-mode: initial !important; writing-mode: initial !important; zoom: initial !important; place-content: initial !important; place-items: initial !important; place-self: initial !important; alignment-baseline: initial !important; animation: initial !important; appearance: initial !important; aspect-ratio: initial !important; backdrop-filter: initial !important; backface-visibility: initial !important; background: initial !important; background-blend-mode: initial !important; baseline-shift: initial !important; block-size: initial !important; border-block: initial !important; border: 1px solid !important; border-radius: 2px !important; border-collapse: initial !important; border-end-end-radius: initial !important; border-end-start-radius: initial !important; border-inline: initial !important; border-start-end-radius: initial !important; border-start-start-radius: initial !important; inset: initial !important; box-shadow: initial !important; box-sizing: initial !important; break-after: initial !important; break-before: initial !important; break-inside: initial !important; buffered-rendering: initial !important; caption-side: initial !important; caret-color: initial !important; clear: initial !important; clip: initial !important; clip-path: initial !important; clip-rule: initial !important; color-interpolation: initial !important; color-interpolation-filters: initial !important; color-rendering: initial !important; color-scheme: initial !important; columns: initial !important; column-fill: initial !important; gap: initial !important; column-rule: initial !important; column-span: initial !important; contain: initial !important; contain-intrinsic-size: initial !important; content: initial !important; content-visibility: initial !important; counter-increment: initial !important; counter-reset: initial !important; counter-set: initial !important; cursor: initial !important; cx: initial !important; cy: initial !important; d: initial !important; display: inline-block !important; dominant-baseline: initial !important; empty-cells: initial !important; fill: initial !important; fill-opacity: initial !important; fill-rule: initial !important; filter: initial !important; flex: initial !important; flex-flow: initial !important; float: initial !important; flood-color: initial !important; flood-opacity: initial !important; grid: initial !important; grid-area: initial !important; height: initial !important; hyphens: initial !important; image-orientation: initial !important; image-rendering: initial !important; inline-size: initial !important; inset-block: initial !important; inset-inline: initial !important; isolation: initial !important; letter-spacing: initial !important; lighting-color: initial !important; line-break: initial !important; line-height: 1.1 !important; list-style: initial !important; margin-block: initial !important; margin: initial !important; margin-inline: initial !important; marker: initial !important; mask: initial !important; mask-type: initial !important; max-block-size: initial !important; max-height: initial !important; max-inline-size: initial !important; max-width: initial !important; min-block-size: initial !important; min-height: initial !important; min-inline-size: initial !important; min-width: initial !important; mix-blend-mode: initial !important; object-fit: initial !important; object-position: initial !important; offset: initial !important; opacity: initial !important; order: initial !important; origin-trial-test-property: initial !important; orphans: initial !important; outline: initial !important; outline-offset: initial !important; overflow-anchor: initial !important; overflow-clip-margin: initial !important; overflow-wrap: initial !important; overflow: initial !important; overscroll-behavior-block: initial !important; overscroll-behavior-inline: initial !important; overscroll-behavior: initial !important; padding-block: initial !important; padding: 0px 0.4ch !important; padding-inline: initial !important; page: initial !important; page-orientation: initial !important; paint-order: initial !important; perspective: initial !important; perspective-origin: initial !important; pointer-events: initial !important; position: initial !important; quotes: initial !important; r: initial !important; resize: initial !important; ruby-position: initial !important; rx: initial !important; ry: initial !important; scroll-behavior: initial !important; scroll-margin-block: initial !important; scroll-margin: initial !important; scroll-margin-inline: initial !important; scroll-padding-block: initial !important; scroll-padding: initial !important; scroll-padding-inline: initial !important; scroll-snap-align: initial !important; scroll-snap-stop: initial !important; scroll-snap-type: initial !important; shape-image-threshold: initial !important; shape-margin: initial !important; shape-outside: initial !important; shape-rendering: initial !important; size: initial !important; speak: initial !important; stop-color: initial !important; stop-opacity: initial !important; stroke: initial !important; stroke-dasharray: initial !important; stroke-dashoffset: initial !important; stroke-linecap: initial !important; stroke-linejoin: initial !important; stroke-miterlimit: initial !important; stroke-opacity: initial !important; stroke-width: initial !important; tab-size: initial !important; table-layout: initial !important; text-align: initial !important; text-align-last: initial !important; text-anchor: initial !important; text-combine-upright: initial !important; text-decoration: initial !important; text-decoration-skip-ink: initial !important; text-indent: initial !important; text-overflow: initial !important; text-shadow: initial !important; text-size-adjust: initial !important; text-transform: initial !important; text-underline-offset: initial !important; text-underline-position: initial !important; touch-action: initial !important; transform: initial !important; transform-box: initial !important; transform-origin: initial !important; transform-style: initial !important; transition: initial !important; user-select: initial !important; vector-effect: initial !important; vertical-align: initial !important; visibility: inherit !important; -webkit-app-region: initial !important; border-spacing: initial !important; -webkit-border-image: initial !important; -webkit-box-align: initial !important; -webkit-box-decoration-break: initial !important; -webkit-box-direction: initial !important; -webkit-box-flex: initial !important; -webkit-box-ordinal-group: initial !important; -webkit-box-orient: initial !important; -webkit-box-pack: initial !important; -webkit-box-reflect: initial !important; -webkit-highlight: initial !important; -webkit-hyphenate-character: initial !important; -webkit-line-break: initial !important; -webkit-line-clamp: initial !important; -webkit-mask-box-image: initial !important; -webkit-mask: initial !important; -webkit-mask-composite: initial !important; -webkit-perspective-origin-x: initial !important; -webkit-perspective-origin-y: initial !important; -webkit-print-color-adjust: initial !important; -webkit-rtl-ordering: initial !important; -webkit-ruby-position: initial !important; -webkit-tap-highlight-color: initial !important; -webkit-text-combine: initial !important; -webkit-text-decorations-in-effect: initial !important; -webkit-text-emphasis: initial !important; -webkit-text-emphasis-position: initial !important; -webkit-text-fill-color: initial !important; -webkit-text-security: initial !important; -webkit-text-stroke: initial !important; -webkit-transform-origin-x: initial !important; -webkit-transform-origin-y: initial !important; -webkit-transform-origin-z: initial !important; -webkit-user-drag: initial !important; -webkit-user-modify: initial !important; white-space: initial !important; widows: initial !important; width: initial !important; will-change: initial !important; word-break: initial !important; word-spacing: initial !important; x: initial !important; y: initial !important; z-index: initial !important; } @keyframes i-amphtml-new-loader-fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes i-amphtml-new-loader-fade-out { 0% { opacity: 1; } 100% { opacity: 0; } } @keyframes i-amphtml-new-loader-scale-and-fade-in { 0% { opacity: 0; transform: scale(0); } 50% { transform: scale(1); } 100% { opacity: 1; } } @keyframes frame-position-first-spin { 0% { transform: translateX(0px); } 100% { transform: translateX(-1440px); } } @keyframes frame-position-infinite-spin { 0% { transform: translateX(-1440px); } 100% { transform: translateX(-4272px); } } ------MultipartBoundary--z8J7UdiCQceqzVdIOKFzKDZAZLhRZIQmHWcpQXjrNf---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: cid:css-748e5625-c7e5-48cc-9c5d-03c29ac42aac@mhtml.blink @charset "utf-8"; .amp-social-share-facebook { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M211.9 197.4h-36.7v59.9h36.7v175.8h70.5V256.5h49.2l5.2-59.1h-54.4v-33.7c0-13.9 2.8-19.5 16.3-19.5h38.2V82.9h-48.8c-52.5 0-76.1 23.1-76.1 67.3-.1 38.6-.1 47.2-.1 47.2z'/%3E%3C/svg%3E"); } .amp-social-share-pinterest { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M266.6 76.5c-100.2 0-150.7 71.8-150.7 131.7 0 36.3 13.7 68.5 43.2 80.6 4.8 2 9.2.1 10.6-5.3 1-3.7 3.3-13 4.3-16.9 1.4-5.3.9-7.1-3-11.8-8.5-10-13.9-23-13.9-41.3 0-53.3 39.9-101 103.8-101 56.6 0 87.7 34.6 87.7 80.8 0 60.8-26.9 112.1-66.8 112.1-22.1 0-38.6-18.2-33.3-40.6 6.3-26.7 18.6-55.5 18.6-74.8 0-17.3-9.3-31.7-28.4-31.7-22.5 0-40.7 23.3-40.7 54.6 0 19.9 6.7 33.4 6.7 33.4s-23.1 97.8-27.1 114.9c-8.1 34.1-1.2 75.9-.6 80.1.3 2.5 3.6 3.1 5 1.2 2.1-2.7 28.9-35.9 38.1-69 2.6-9.4 14.8-58 14.8-58 7.3 14 28.7 26.3 51.5 26.3 67.8 0 113.8-61.8 113.8-144.5-.1-62.6-53.1-120.8-133.6-120.8z'/%3E%3C/svg%3E"); } .amp-social-share-linkedin { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M186.4 142.4c0 19-15.3 34.5-34.2 34.5-18.9 0-34.2-15.4-34.2-34.5 0-19 15.3-34.5 34.2-34.5 18.9 0 34.2 15.5 34.2 34.5zm-5 58.9h-57.8v186.8h57.8V201.3zm92.4 0h-55.4v186.8h55.4v-98c0-26.3 12.1-41.9 35.2-41.9 21.3 0 31.5 15 31.5 41.9v98H398V269.8c0-50-28.3-74.2-68-74.2-39.6 0-56.3 30.9-56.3 30.9v-25.2h.1z'/%3E%3C/svg%3E"); } .amp-social-share-gplus { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M179.7 237.6v46.6h77c-3.1 20-23.3 58.7-77 58.7-46.3 0-84.1-38.5-84.1-85.9 0-47.4 37.8-85.9 84.1-85.9 26.4 0 44 11.3 54.1 21l36.8-35.5C247 134.4 216.4 121 179.7 121 104.7 121 44 181.8 44 257s60.7 136 135.7 136C258 393 310 337.8 310 260.1c0-8.9-1-15.7-2.1-22.5H179.7zm288.3-.9h-38.7V198h-38.6v38.7H352v38.6h38.7V314h38.6v-38.7H468'/%3E%3C/svg%3E"); } .amp-social-share-email { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M101.3 141.6v228.9h309.5V141.6H101.3zm274.4 26.2L256 259.3l-119.6-91.5h239.3zm-248.1 26.3 64.1 49.1-64.1 64.1V194.1zm.2 150.1 84.9-84.9 43.2 33.1 43-32.9 84.7 84.7H127.8zm256.6-36.4L320 243.4l64.4-49.3v113.7z'/%3E%3C/svg%3E"); } .amp-social-share-twitter { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h400v400H0z'/%3E%3Cpath fill='%23FFF' fill-rule='nonzero' d='M153.62 301.59c94.34 0 145.94-78.16 145.94-145.94 0-2.22 0-4.43-.15-6.63A104.36 104.36 0 0 0 325 122.47a102.38 102.38 0 0 1-29.46 8.07 51.47 51.47 0 0 0 22.55-28.37 102.79 102.79 0 0 1-32.57 12.45c-15.9-16.906-41.163-21.044-61.625-10.093-20.461 10.95-31.032 34.266-25.785 56.873A145.62 145.62 0 0 1 92.4 107.81c-13.614 23.436-6.66 53.419 15.88 68.47A50.91 50.91 0 0 1 85 169.86v.65c.007 24.416 17.218 45.445 41.15 50.28a51.21 51.21 0 0 1-23.16.88c6.72 20.894 25.976 35.208 47.92 35.62a102.92 102.92 0 0 1-63.7 22 104.41 104.41 0 0 1-12.21-.74 145.21 145.21 0 0 0 78.62 23'/%3E%3C/g%3E%3C/svg%3E"); } .amp-social-share-tumblr { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M210.8 80.3c-2.3 18.3-6.4 33.4-12.4 45.2-6 11.9-13.9 22-23.9 30.5-9.9 8.5-21.8 14.9-35.7 19.5v50.6h38.9v124.5c0 16.2 1.7 28.6 5.1 37.1 3.4 8.5 9.5 16.6 18.3 24.2 8.8 7.6 19.4 13.4 31.9 17.5s26.8 6.1 43 6.1c14.3 0 27.6-1.4 39.9-4.3 12.3-2.9 26-7.9 41.2-15v-55.9c-17.8 11.7-35.7 17.5-53.7 17.5-10.1 0-19.1-2.4-27-7.1-5.9-3.5-10-8.2-12.2-14-2.2-5.8-3.3-19.1-3.3-39.7v-91.1h84.6v-55.8h-84.4v-90h-50.3z'/%3E%3C/svg%3E"); } .amp-social-share-whatsapp { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46'%3E%3Cpath fill='%23FFF' d='M35.4 10.4C32 6.9 27.3 5 22.5 5 12.3 5 4.1 13.3 4.2 23.4c0 3.2.9 6.3 2.4 9.1L4 42l9.7-2.5c2.7 1.5 5.7 2.2 8.7 2.2 10.1 0 18.3-8.3 18.3-18.4 0-4.9-1.9-9.5-5.3-12.9zM22.5 38.6c-2.7 0-5.4-.7-7.7-2.1l-.6-.3-5.8 1.5L9.9 32l-.4-.6c-4.4-7.1-2.3-16.5 4.9-20.9 7.2-4.4 16.5-2.3 20.9 4.9 4.4 7.2 2.3 16.5-4.9 20.9-2.3 1.5-5.1 2.3-7.9 2.3zm8.8-11.1-1.1-.5s-1.6-.7-2.6-1.2c-.1 0-.2-.1-.3-.1-.3 0-.5.1-.7.2 0 0-.1.1-1.5 1.7-.1.2-.3.3-.5.3h-.1c-.1 0-.3-.1-.4-.2l-.5-.2c-1.1-.5-2.1-1.1-2.9-1.9-.2-.2-.5-.4-.7-.6-.7-.7-1.4-1.5-1.9-2.4l-.1-.2c-.1-.1-.1-.2-.2-.4 0-.2 0-.4.1-.5 0 0 .4-.5.7-.8.2-.2.3-.5.5-.7.2-.3.3-.7.2-1-.1-.5-1.3-3.2-1.6-3.8-.2-.3-.4-.4-.7-.5h-1.1c-.2 0-.4.1-.6.1l-.1.1c-.2.1-.4.3-.6.4-.2.2-.3.4-.5.6-.7.9-1.1 2-1.1 3.1 0 .8.2 1.6.5 2.3l.1.3c.9 1.9 2.1 3.6 3.7 5.1l.4.4c.3.3.6.5.8.8 2.1 1.8 4.5 3.1 7.2 3.8.3.1.7.1 1 .2h1c.5 0 1.1-.2 1.5-.4.3-.2.5-.2.7-.4l.2-.2c.2-.2.4-.3.6-.5.2-.2.4-.4.5-.6.2-.4.3-.9.4-1.4v-.7s-.1-.1-.3-.2z'/%3E%3C/svg%3E"); } .amp-social-share-line { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 511.99'%3E%3Cpath d='M443.2 233.29c0-84.14-84.35-152.6-188-152.6s-188 68.46-188 152.6c0 75.43 66.9 138.61 157.26 150.55 6.13 1.32 14.46 4 16.57 9.27 1.89 4.76 1.24 12.2.61 17 0 0-2.21 13.26-2.69 16.09-.82 4.75-3.78 18.6 16.29 10.14s108.21-63.76 147.66-109.16c27.25-29.89 40.3-60.18 40.3-93.89zm-254.38 44.92a3.67 3.67 0 0 1-3.66 3.67h-52.69a3.6 3.6 0 0 1-2.53-1l-.06-.05v-.05a3.65 3.65 0 0 1-1-2.53v-81.96a3.66 3.66 0 0 1 3.66-3.66h13.19a3.66 3.66 0 0 1 3.66 3.66v65.07h35.84a3.66 3.66 0 0 1 3.66 3.66zm31.8 0a3.65 3.65 0 0 1-3.66 3.65h-13.2a3.65 3.65 0 0 1-3.66-3.65v-81.92a3.66 3.66 0 0 1 3.66-3.66H217a3.66 3.66 0 0 1 3.66 3.66zm90.78 0a3.65 3.65 0 0 1-3.66 3.65h-13.19a3.67 3.67 0 0 1-.94-.12h-.05l-.25-.08h-.11l-.18-.08-.17-.08-.11-.06-.22-.14a3.45 3.45 0 0 1-.93-.9L254 229.56v48.66a3.66 3.66 0 0 1-3.67 3.65H237.1a3.65 3.65 0 0 1-3.66-3.65v-81.93a3.66 3.66 0 0 1 3.66-3.66h13.86l.21.05h.13l.21.07h.12a1.31 1.31 0 0 1 .21.08l.12.06.19.11a.41.41 0 0 1 .11.07l.19.13.1.07.19.16.07.07a2.28 2.28 0 0 1 .22.22 3.58 3.58 0 0 1 .28.37L290.89 245v-48.71a3.66 3.66 0 0 1 3.66-3.66h13.19a3.66 3.66 0 0 1 3.66 3.66zm72.83-68.74a3.66 3.66 0 0 1-3.65 3.67h-35.84V227h35.84a3.66 3.66 0 0 1 3.65 3.67v13.19a3.65 3.65 0 0 1-3.65 3.66h-35.84v13.85h35.84a3.65 3.65 0 0 1 3.65 3.66v13.19a3.66 3.66 0 0 1-3.65 3.67h-52.7a3.66 3.66 0 0 1-2.53-1l-.05-.05a.12.12 0 0 1-.05-.05 3.65 3.65 0 0 1-1-2.53V196.3a3.6 3.6 0 0 1 1-2.52l.06-.07a3.63 3.63 0 0 1 2.54-1h52.7a3.66 3.66 0 0 1 3.65 3.67z' style='fill:%23fff' data-name='レイヤー 1'/%3E%3C/svg%3E"); } .amp-social-share-sms { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='29' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23FFF' stroke-width='3' d='M8.73 26v-5.658H2V2h25.97L28 20.355l-12.062.042z' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E"); } .amp-social-share-system { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg fill='%23fff' height='24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92 1.61 0 2.92-1.31 2.92-2.92s-1.31-2.92-2.92-2.92z'/%3E%3C/svg%3E"); } amp-social-share { background-repeat: no-repeat; background-position: 50% center; background-size: contain; text-decoration: none; cursor: pointer; position: relative; } amp-social-share:focus { outline: rgb(3, 137, 255) solid 2px; outline-offset: 2px; } .amp-social-share-twitter { background-color: rgb(29, 161, 242); } .amp-social-share-facebook { background-color: rgb(50, 82, 159); } .amp-social-share-pinterest { background-color: rgb(230, 0, 35); } .amp-social-share-linkedin { background-color: rgb(0, 119, 181); } .amp-social-share-gplus { background-color: rgb(220, 78, 65); } .amp-social-share-tumblr { background-color: rgb(60, 90, 119); } .amp-social-share-email { background-color: rgb(0, 0, 0); } .amp-social-share-whatsapp { background-color: rgb(37, 211, 102); } .amp-social-share-line { background-color: rgb(82, 180, 72); } .amp-social-share-sms { background-color: rgb(202, 43, 99); } .amp-social-share-system { background-color: rgb(0, 0, 0); } ------MultipartBoundary--z8J7UdiCQceqzVdIOKFzKDZAZLhRZIQmHWcpQXjrNf---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: cid:css-dbbe05aa-0777-41ef-85ec-14c3ca86ade8@mhtml.blink @charset "utf-8"; amp-sidebar { --story-page-vh:1vh; top: 0px; height: 100vh; max-width: 80vw; background-color: rgb(239, 239, 239); outline: none; z-index: 2147483647; will-change: transform; position: fixed !important; max-height: 100vh !important; min-width: 45px !important; overflow: hidden auto !important; } amp-sidebar[side="left"] { transform: translateX(-100%); animation-name: i-amphtml-sidebar-slide-out-left; left: 0px !important; } amp-sidebar[side="left"][open] { animation-name: i-amphtml-sidebar-slide-in-left; } amp-sidebar[side="right"] { transform: translateX(100%); animation-name: i-amphtml-sidebar-slide-out-right; right: 0px !important; } amp-sidebar[side="right"][open] { animation-name: i-amphtml-sidebar-slide-in-right; } amp-sidebar[side][i-amphtml-sidebar-opened] { transform: none; animation: 0s ease 0s 1 normal none running none; } .i-amphtml-sidebar-mask, amp-sidebar[side] { animation-duration: 233ms; animation-timing-function: cubic-bezier(0, 0, 0.21, 1); animation-fill-mode: forwards; } .i-amphtml-toolbar > ol, .i-amphtml-toolbar > ul { display: flex; justify-content: flex-start; flex-wrap: wrap; overflow: auto; list-style-type: none; padding: 0px; margin: 0px; } .amp-sidebar-mask { background-color: rgba(0, 0, 0, 0.5); } .i-amphtml-sidebar-mask { animation-name: i-amphtml-sidebar-mask-fade-out; z-index: 2147483646; position: fixed !important; top: 0px !important; left: 0px !important; width: 100vw !important; height: 100vh !important; background-image: none !important; } .i-amphtml-sidebar-mask[open] { animation-name: i-amphtml-sidebar-mask-fade-in; } .i-amphtml-sidebar-mask[i-amphtml-sidebar-opened] { animation: 0s ease 0s 1 normal none running none; } @keyframes i-amphtml-sidebar-slide-in-left { 0% { transform: translateX(-100%); } 100% { transform: translateX(0px); } } @keyframes i-amphtml-sidebar-slide-out-left { 0% { transform: translateX(0px); } 100% { transform: translateX(-100%); } } @keyframes i-amphtml-sidebar-slide-in-right { 0% { transform: translateX(100%); } 100% { transform: translateX(0px); } } @keyframes i-amphtml-sidebar-slide-out-right { 0% { transform: translateX(0px); } 100% { transform: translateX(100%); } } @keyframes i-amphtml-sidebar-mask-fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes i-amphtml-sidebar-mask-fade-out { 0% { opacity: 1; } 100% { opacity: 0; } } ------MultipartBoundary--z8J7UdiCQceqzVdIOKFzKDZAZLhRZIQmHWcpQXjrNf---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: cid:css-ba25bfbf-11d7-4aa2-9d00-58b55ac6b144@mhtml.blink @charset "utf-8"; amp-lightbox { display: none; z-index: 1000; position: fixed !important; inset: 0px !important; } amp-lightbox[scrollable] { overflow: hidden auto !important; } i-amphtml-ad-close-header { opacity: 0; transition: opacity 0.1s ease-in 0s; height: 60px !important; visibility: visible !important; position: fixed !important; top: 0px !important; left: 0px !important; right: 0px !important; z-index: 1000 !important; display: flex !important; align-items: center !important; justify-content: right !important; } [animate-in="fly-in-bottom"] > i-amphtml-ad-close-header, [animate-in="fly-in-top"] > i-amphtml-ad-close-header { transition-delay: 0.2s; } .amp-ad-close-header { box-sizing: border-box; padding: 5px; line-height: 40px; background-color: rgb(0, 0, 0); color: rgb(255, 255, 255); font-family: Helvetica, sans-serif; font-size: 12px; cursor: pointer; opacity: 1 !important; } .amp-ad-close-header > :first-child { margin-left: auto !important; pointer-events: none !important; } .amp-ad-close-button { background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff'%3E%3Cpath d='M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E") 50% center no-repeat; width: 40px; height: 40px; border-radius: 40px; margin-left: 5px; display: block !important; pointer-events: none !important; } .amp-ad-close-header:active > .amp-ad-close-button { background-color: rgba(255, 255, 255, 0.3); } ------MultipartBoundary--z8J7UdiCQceqzVdIOKFzKDZAZLhRZIQmHWcpQXjrNf---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: cid:css-e1b1e160-d1e8-41bf-b4c4-8304c996df38@mhtml.blink @charset "utf-8"; form.amp-form-submit-error [submit-error], form.amp-form-submit-success [submit-success], form.amp-form-submitting [submitting] { display: block; } textarea[autoexpand]:not(.i-amphtml-textarea-max) { overflow: hidden !important; } .i-amphtml-textarea-clone { visibility: hidden; position: absolute; top: -9999px; left: -9999px; height: 0px !important; } .i-amphtml-validation-bubble { transform: translate(-50%, -100%); background-color: rgb(255, 255, 255); box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px 0px; max-width: 200px; position: absolute; display: block; box-sizing: border-box; padding: 10px; border-radius: 5px; } .i-amphtml-validation-bubble::after { content: " "; position: absolute; bottom: -8px; left: 30px; width: 0px; height: 0px; border-left: 8px solid transparent; border-right: 8px solid transparent; border-top: 8px solid rgb(255, 255, 255); } [visible-when-invalid] { color: red; } ------MultipartBoundary--z8J7UdiCQceqzVdIOKFzKDZAZLhRZIQmHWcpQXjrNf---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: cid:css-d4a3f942-18fa-42bf-b591-85bdce254284@mhtml.blink @charset "utf-8"; body { font-size: 16px; line-height: 1.4; } body, amp-sidebar, .single-post main .amp-wp-article-content h1, .single-post main .amp-wp-article-content h2, .single-post main .amp-wp-article-content h3, .single-post main .amp-wp-article-content h4, .single-post main .amp-wp-article-content h5, .single-post main .amp-wp-article-content h6, h2.amp-wp-title, h3.amp-wp-title, .cmt-button-wrapper a, h1.amp-wp-title, .single-post main, .related-title, .single-post .cmts_list h3, .rp .related_link a { font-family: "Roboto Slab"; } .amp-carousel-slide h2, .amp-wp-article-content, .amp-wp-post-content p, .cmt-body .cmt-content { font-family: georgia; } a { color: rgb(49, 44, 126); text-decoration: none; } .clearfix, .cb { clear: both; } .alignleft { margin-right: 12px; margin-bottom: 5px; float: left; } .alignright { float: right; margin-left: 12px; margin-bottom: 5px; } .aligncenter { display: block; text-align: center; margin: 0px auto; } #statcounter { width: 1px; height: 1px; } amp-anim { max-width: 100%; } amp-wistia-player { margin: 5px 0px; } .amp-wp-content amp-iframe { max-width: 100%; } .amp-wp-article amp-addthis { bottom: -20px; } @media screen and (min-width: 1025px) { .amp-wp-article amp-addthis { margin-left: 150px; } } .hide { display: none; } ol, ul { list-style-position: inside; } @font-face { font-family: "Roboto Slab"; font-display: swap; font-style: normal; font-weight: 400; src: local("Roboto Slab Regular"), local("RobotoSlab-Regular"), url("https://www-hostinger-ru.cdn.ampproject.org/r/s/www.hostinger.ru/rukovodstva/wp-content/plugins/accelerated-mobile-pages/templates/design-manager/design-3/fonts/robotoslab/RobotoSlab-Regular.ttf"); } @font-face { font-family: "Roboto Slab"; font-display: swap; font-style: normal; font-weight: 700; src: local("Roboto Slab Bold"), local("RobotoSlab-Bold"), url("https://www-hostinger-ru.cdn.ampproject.org/r/s/www.hostinger.ru/rukovodstva/wp-content/plugins/accelerated-mobile-pages/templates/design-manager/design-3/fonts/robotoslab/RobotoSlab-Bold.ttf"); } .amp-wp-content, .amp-wp-title-bar div { max-width: 1000px; margin: 0px auto; } figure.aligncenter amp-img { margin: 0px auto; } amp-sidebar { width: 280px; background: rgb(19, 19, 19); } .amp-sidebar-image { line-height: 100px; vertical-align: middle; } .amp-close-image { top: 15px; left: 225px; cursor: pointer; } .navigation_heading { padding: 20px 20px 15px; color: rgb(170, 170, 170); font-size: 10px; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid rgb(85, 85, 85); display: inline-block; width: 100%; } .toggle-navigationv2 ul { list-style-type: none; margin: 15px 0px 0px; padding: 0px; } .toggle-navigationv2 ul.amp-menu li a { padding: 10px 15px 10px 20px; display: inline-block; font-size: 14px; color: rgb(238, 238, 238); width: 100%; } .amp-menu li { position: relative; margin: 0px; } .toggle-navigationv2 ul.amp-menu li a:hover { background: rgb(102, 102, 102); color: rgb(238, 238, 238); } .amp-menu li.menu-item-has-children ul { display: none; margin: 0px; position: relative; background: rgb(102, 102, 102); } .amp-menu li.menu-item-has-children .sub-menu li a span::before { content: "▸"; position: relative; left: -6px; font-size: 10px; color: rgb(170, 170, 170); top: -2px; z-index: 10000; line-height: 1; } .amp-menu li.menu-item-has-children .sub-menu li a { padding: 15px 0px 15px 20px; } .amp-menu li.menu-item-has-children .sub-menu .sub-menu li a { padding: 15px 0px 15px 33px; } .amp-menu li.menu-item-has-children .sub-menu .sub-menu .sub-menu li a { padding: 15px 0px 15px 45px; } .amp-menu input { display: none; } .amp-menu [id^="drop"]:checked + label + ul { display: block; } .amp-menu .toggle::after { content: "▾"; position: absolute; padding: 12px 20px 10px 30px; right: 0px; font-size: 13px; color: rgb(238, 238, 238); top: 6px; z-index: 10000; line-height: 1; } .toggle-navigationv2 .so_i { margin-top: 25px; border-top: 1px solid rgb(85, 85, 85); padding: 25px 0px; color: rgb(255, 255, 255); width: 100%; } .menu-all-pages-container::after { content: ""; clear: both; } .toggle-text { color: rgb(255, 255, 255); font-size: 12px; text-transform: uppercase; letter-spacing: 3px; display: inherit; text-align: center; } .toggle-text::before { content: "..."; font-size: 32px; font-family: georgia; line-height: 0px; margin-left: 0px; letter-spacing: 1px; top: -3px; position: relative; padding-right: 10px; } .toggle-navigation:hover, .toggle-navigation:active, .toggle-navigation:focus { display: inline-block; width: 100%; } .toggle-navigationv2 { position: relative; } .cl-btn::after { content: "x"; font-size: 16px; color: rgb(170, 170, 170); position: absolute; right: 15px; top: 15px; font-weight: normal; } .cl-btn { background: rgb(19, 19, 19); border: none; } .s_so { width: 100%; bottom: 0px; display: block; left: 0px; box-shadow: rgb(0, 0, 0) 0px 4px 7px; background: rgb(255, 255, 255); padding: 7px 0px 0px; position: fixed; margin: 0px; z-index: 10; text-align: center; } .a-so-i { width: 50px; height: 28px; display: inline-block; background: rgb(92, 190, 74); position: relative; top: -8px; padding-top: 0px; } .a-so-i amp-img { top: 4px; } .a-so-i.custom-a-so-flipboard amp-img, .a-so-i.a-so-flipboard amp-img { top: 6px; } a.a-so-facebook-messenger, .a-so-facebookmessenger { background: rgb(213, 225, 230); } .custom-a-so-line { background: rgb(0, 185, 0); } .custom-a-so-mewe { background: rgb(184, 214, 230); } .s_so .whatsapp-share-icon { padding: 4px 0px 14px; height: 28px; top: -4px; position: relative; } .s_so .line-share-icon { padding: 4px 0px 14px; height: 28px; top: -4px; position: relative; } .s_so amp-facebook-like { margin-bottom: -8px; } #header { background: rgb(255, 255, 255); text-align: center; height: 50px; box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 32px; } header { padding-bottom: 50px; } #headerwrap { position: fixed; z-index: 1000; width: 100%; top: 0px; } #header h1 { text-align: center; font-size: 16px; position: relative; font-weight: bold; line-height: 50px; padding: 0px; margin: 0px; text-transform: uppercase; } main .amp-wp-content { font-size: 18px; line-height: 29px; color: rgb(17, 17, 17); } .amp-wp-meta.amp-meta-wrapper { list-style-type: none; } .single-post main .amp-wp-article-content h1 { font-size: 2em; } .single-post main .amp-wp-article-content h1, .single-post main .amp-wp-article-content h2, .single-post main .amp-wp-article-content h3, .single-post main .amp-wp-article-content h4, .single-post main .amp-wp-article-content h5, .single-post main .amp-wp-article-content h6 { margin: 0px 0px 5px; line-height: 1.6; } .home-post_image { float: left; width: 33%; padding-right: 2%; overflow: hidden; max-height: 225px; } .amp-wp-title { margin-top: 0px; } h2.amp-wp-title, h3.amp-wp-title { font-weight: 700; font-size: 20px; margin-bottom: 7px; line-height: 1.3; } h2.amp-wp-title a, h3.amp-wp-title a { color: rgb(0, 0, 0); } .amp-wp-tags { list-style-type: none; padding: 0px; margin: 0px 0px 9px; display: inline-flex; } .amp-wp-tags li { display: inline; background: rgb(246, 246, 246); color: rgb(158, 158, 158); line-height: 1; border-radius: 50px; padding: 8px 18px; font-size: 12px; margin-right: 8px; top: -3px; position: relative; } .amp-wp-tags li a { color: rgb(158, 158, 158); } .amp-loop-list { position: relative; border-bottom: 1px solid rgb(237, 237, 237); padding: 25px 15px; } body .amp-loop-list-noimg .amp-wp-post-content { width: 100%; } .amp-loop-list .amp-wp-post-content { float: left; width: 65%; } .amp-loop-list .featured_time { color: rgb(86, 17, 17); padding-left: 0px; } .amp-wp-post-content p { color: rgb(62, 57, 57); line-height: 1.5; font-size: 14px; overflow-wrap: break-word; margin: 8px 0px 10px; } #footer { background: rgb(21, 21, 21); color: rgb(238, 238, 238); font-size: 13px; text-align: center; letter-spacing: 0.2px; padding: 35px 0px; margin-top: 30px; } #footer a { color: rgb(255, 255, 255); } #footer p:first-child { margin-bottom: 12px; } #footer .so_i { margin: 0px 20px 25px; border-bottom: 1px solid rgb(60, 60, 60); padding-bottom: 25px; } #footer p { margin: 0px; } .back-to-top { padding-bottom: 8px; } .rightslink, #footer .rightslink a { font-size: 13px; color: rgb(255, 255, 255); } .poweredby { padding-top: 10px; font-size: 10px; } #footer .poweredby a { color: rgb(102, 102, 102); } .footer_menu ul { list-style-type: none; padding: 0px; text-align: center; margin: 0px 20px 25px; line-height: 27px; font-size: 13px; } .footer_menu ul li { display: inline; margin: 0px 10px; } .footer_menu ul li:first-child { margin-left: 0px; } .footer_menu ul li:last-child { margin-right: 0px; } .footer_menu ul ul { display: none; } a.btt:hover { cursor: pointer; } .single-post main { margin: 20px 17px 17px; } .single-post .post-featured-img { margin: 0px -17px; } .amp-wp-article-featured-image.wp-caption .wp-caption-text, .ampforwp-gallery-item .wp-caption-text { color: rgb(105, 105, 105); font-size: 11px; line-height: 1.5; background: rgb(238, 238, 238); margin: 0px; padding: 0.66em 0.75em; text-align: center; } .ampforwp-gallery-item.amp-carousel-slide { padding-bottom: 20px; } .ampforwp-title { padding: 0px; margin-top: 12px; margin-bottom: 12px; } .cmt-button-wrapper { margin-bottom: 50px; margin-top: 30px; text-align: center; } .cmt-button-wrapper a { color: rgb(255, 255, 255); background: rgb(49, 44, 126); font-size: 14px; padding: 12px 22px; border-radius: 2px; text-transform: uppercase; letter-spacing: 1px; } h1.amp-wp-title, h2.amp-wp-title { margin: 0px; color: rgb(51, 51, 51); font-size: 48px; line-height: 58px; } .post-pagination-meta { min-height: 75px; } .single-post .post-pagination-meta { font-size: 15px; min-height: auto; margin-top: -5px; line-height: 26px; } .single-post .post-pagination-meta span { font-weight: bold; } .single-post .amp_author_area .amp_author_area_wrapper { display: inline-block; width: 100%; line-height: 1.4; margin-top: 22px; font-size: 16px; color: rgb(51, 51, 51); } .single-post .amp_author_area amp-img { margin: 0px 12px 0px 0px; float: left; border-radius: 60px; } .a-so-i-rounded-author { padding: 10px 0px 10px 10px; display: inline-table; border-radius: 60px; cursor: pointer; } .amp-wp-article-tags .ampforwp-tax-tag, .amp-wp-article-tags .ampforwp-tax-tag a { font-size: 12px; color: rgb(85, 85, 85); margin: 20px 0px 0px; } .amp-wp-article-tags span { background: rgb(238, 238, 238); padding: 5px 12px; border-radius: 3px; display: inline-block; margin: 5px; } .ampforwp-so-i { margin-bottom: 70px; margin-top: 25px; min-height: 40px; } .ampforwp-so-i a-so-share { border-radius: 60px; background-size: 22px; margin-right: 6px; } .a-so-i-rounded { padding: 11px 12px 9px; top: -13px; position: relative; line-height: 1; display: inline-block; height: inherit; border-radius: 60px; } .a-so-facebook { background: rgb(59, 89, 152); } .a-so-twitter { background: rgb(29, 161, 242); } .a-so-linkedin { background: rgb(0, 119, 181); } .a-so-whatsapp { background: rgb(92, 190, 74); } .ampforwp-custom-social { display: inline-block; margin-bottom: 5px; } .amp-wp-tax-tag { list-style: none; display: inline-block; } figure { margin: 0px 0px 20px; } figure amp-img { max-width: 100%; } figcaption { font-size: 11px; line-height: 1.6; margin-bottom: 11px; background: rgb(238, 238, 238); padding: 6px 8px; text-align: center; } .amp-wp-byline amp-img { display: none; } .amp-wp-author { margin-right: 1px; } .amp-wp-meta, .amp-wp-meta a { font-size: 13px; color: rgb(87, 87, 87); margin: 20px 0px; padding: 0px; } .amp-ad-wrapper { text-align: center; } .the_content p { margin-top: 0px; margin-bottom: 30px; word-break: break-word; } .the_content small { font-size: 11px; line-height: 1.2; color: rgb(17, 17, 17); margin-bottom: 5px; display: inline-block; } .amp-wp-tax-tag { } main .amp-wp-content.featured-image-content { padding: 0px; border: 0px; margin-bottom: 0px; box-shadow: none; text-align: center; } .amp-wp-content .amp-wp-article-featured-image amp-img { margin: 0px auto; } .single-post .amp-wp-article-content amp-img { max-width: 100%; } main .amp-wp-content.relatedpost { background: none; box-shadow: none; padding: 0px; margin: 1.8em auto 1.5em; } .recentpost .loop-date { font-size: 14px; } .single-post main, .related-title, .single-post .cmts_list h3 { font-size: 20px; color: rgb(119, 119, 119); border-bottom: 1px solid rgb(238, 238, 238); font-weight: 400; padding-bottom: 1px; margin-bottom: 10px; } .rp ol { list-style-type: none; margin: 0px; padding: 0px; } .rp ol li { display: inline-block; width: 100%; margin-bottom: 12px; padding: 0px; } .rp .related_link a { color: rgb(68, 68, 68); font-size: 16px; font-weight: 600; } .rp ol li amp-img { float: left; margin-right: 15px; } .rp ol li amp-img { float: left; margin-right: 15px; } .rp ol li p { font-size: 12px; color: rgb(153, 153, 153); line-height: 1.2; margin: 12px 0px 0px; } .no_related_thumbnail { padding: 15px 18px; } .no_related_thumbnail .related_link { margin: 16px 5px 20px; } .related-post_image { float: left; padding-right: 2%; width: 31.6%; overflow: hidden; margin-right: 15px; max-height: 122px; max-width: 110px; } .related-post_image amp-img { width: 144%; left: -20%; } .ampforwp-inline-related-post .rp ol li amp-img { width: 100px; float: left; margin-right: 15px; } .ampforwp-inline-related-post .rp ol li { box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 3px; } .page-numbers { padding: 9px 10px; background: rgb(255, 255, 255); font-size: 14px; } .cmt-body .cmt-content { margin-top: 2px; } main .amp-wp-content.cmts_list { background: none; box-shadow: none; padding: 0px; } .cmts_list div { display: inline-block; } .cmts_list ul { margin: 0px; padding: 0px; } .cmts_list ul.children { padding-bottom: 10px; margin-left: 3%; width: 96%; } .cmts_list ul li p { margin: 0px; font-size: 16px; clear: both; padding-top: 5px; word-break: break-word; } .cmts_list ul li { font-size: 12px; list-style-type: none; margin-bottom: 22px; padding-bottom: 20px; max-width: 1000px; border-bottom: 1px solid rgb(238, 238, 238); } .cmts_list ul ul li { border-left: 2px solid rgb(238, 238, 238); padding-left: 15px; border-bottom: 0px; padding-bottom: 0px; } .cmts_list ul li .cmt-body .cmt-author { margin-right: 5px; } .cmt-author { float: left; } .single-post footer.cmt-meta { color: rgb(102, 102, 102); padding-bottom: 0px; line-height: 1.9; } .cmt-author-img { float: left; margin-right: 5px; border-radius: 60px; } .cmt-metadata a { color: rgb(136, 136, 136); } .cmts_list li li { margin: 20px 20px 10px; background: rgb(247, 247, 247); box-shadow: none; border: 1px solid rgb(238, 238, 238); } .cmts_list li li li { margin: 20px 20px 10px; } .cmt-content amp-img { max-width: 300px; } .amp_ad_1 { margin-top: 15px; margin-bottom: 10px; } .single-post .amp_ad_1 { margin-bottom: -15px; } .amp-ad-2 { margin-bottom: -5px; margin-top: 20px; } html .single-post .ampforwp-incontent-ad-1 { margin-bottom: 10px; } .amp-ad-3 { margin-bottom: 10px; } .amp-ad-4 { margin-top: 2px; } .amp-wp-content blockquote { border-left: 3px solid; margin: 0px; padding: 15px 20px; background: rgb(243, 243, 243); } .amp-wp-content blockquote p { margin-bottom: 0px; } pre { white-space: pre-wrap; } #designthree { background-color: rgb(255, 255, 255); overflow: visible; } @media screen and (max-width: 786px) { #sidebar[open] + #designthree { max-height: 100vh; overflow: hidden; animation: 0.3s ease-in-out 0s 1 normal forwards running opening; transform: translate3d(60%, 0px, 0px) scale(0.8); } } @keyframes opening { 0% { transform: translate3d(0px, 0px, 0px) scale(1); } 100% { transform: translate3d(60%, 0px, 0px) scale(0.8); } } @keyframes closing { 0% { transform: translate3d(60%, 0px, 0px) scale(0.8); } 100% { transform: translate3d(0px, 0px, 0px) scale(1); } } @keyframes closingFix { 0% { max-height: 100vh; overflow: hidden; } 100% { max-height: none; overflow: visible; } } .hamburgermenu { float: left; position: relative; z-index: 9999; } .amp-category-block { margin: 30px 0px 10px; } .amp-category-block a { color: rgb(102, 102, 102); } .amp-category-block ul { list-style-type: none; } .category-widget-gutter h4 { margin-bottom: 0px; } .category-widget-gutter ul { margin-top: 10px; list-style-type: none; padding: 0px; } .amp-category-block-btn { display: block; text-align: center; font-size: 13px; margin-top: 15px; border-bottom: 1px solid rgb(241, 241, 241); text-decoration: none; padding-bottom: 8px; } .design_2_wrapper .amp-category-block { max-width: 840px; margin: 1.5em auto; } .amp-category-block ul, .category-widget-wrapper { max-width: 1000px; margin: 0px auto; padding: 0px 15px 5px; } .amp-category-post { width: 32%; display: inline-block; overflow-wrap: break-word; float: left; } .amp-category-post amp-img { margin-bottom: 5px; } .amp-category-block li:nth-child(3) { margin: 0px 1%; } .searchmenu { margin-right: 15px; margin-top: 11px; position: absolute; top: 0px; right: 0px; } .searchmenu button { background: transparent; border: none; } .amp-logo amp-img { margin: 0px auto; position: relative; top: 9px; max-width: 190px; } .headerlogo { margin: 0px auto; width: 80%; text-align: center; } .headerlogo a { color: rgb(255, 68, 34); display: inline-block; } .toast { display: block; position: relative; height: 50px; padding-left: 20px; padding-right: 15px; width: 49px; background: none; border: 0px; } .toast::after, .toast::before, .toast span { position: absolute; display: block; width: 19px; height: 2px; border-radius: 2px; background-color: rgb(255, 68, 34); transform: translate3d(0px, 0px, 0px) rotate(0deg); } .toast::after, .toast::before { content: ""; left: 20px; transition: all 0.4s ease-in 0s; } .toast span { opacity: 1; top: 24px; transition: all 0.4s ease-in-out 0s; } .toast::before { top: 17px; } .toast::after { top: 31px; } #sidebar[open] + #designthree .toast span { opacity: 0; transform: translate3d(200%, 0px, 0px); } #sidebar[open] + #designthree .toast::before { transform-origin: left bottom; transform: rotate(43deg); } #sidebar[open] + #designthree .toast::after { transform-origin: left top; transform: rotate(-43deg); } [class*="icono-"] { display: inline-block; vertical-align: middle; position: relative; font-style: normal; color: rgb(255, 68, 34); text-align: left; text-indent: -9999px; direction: ltr; } [class*="icono-"]::after, [class*="icono-"]::before { content: ""; pointer-events: none; } .icono-search { transform: translateX(-50%); } .icono-share { height: 9px; position: relative; width: 9px; color: rgb(218, 218, 218); border-radius: 50%; box-shadow: 0px 0px 0px 32px inset, 22px -11px 0px 0px, 22px 11px 0px 0px; top: -15px; margin-right: 35px; } .icono-share::after, .icono-share::before { position: absolute; width: 24px; height: 1px; box-shadow: 0px 0px 0px 32px inset; left: 0px; } .icono-share::before { top: 0px; transform: rotate(-25deg); } .icono-share::after { top: 8px; transform: rotate(25deg); } .icono-search { border: 1px solid; width: 10px; height: 10px; border-radius: 50%; transform: rotate(45deg); margin: 4px 4px 8px 8px; } .icono-search::before { position: absolute; transform: rotate(270deg); width: 2px; height: 9px; box-shadow: 0px 0px 0px 32px inset; top: 0px; border-radius: 0px 0px 1px 1px; left: 14px; } .closebutton { background: transparent; color: rgba(255, 255, 255, 0.7); border: 1px solid rgba(255, 255, 255, 0.7); border-radius: 30px; width: 32px; height: 32px; font-size: 12px; text-align: center; position: absolute; top: 12px; right: 20px; outline: none; } amp-lightbox { background: rgba(0, 0, 0, 0.85); } .searchform label { color: rgb(247, 247, 247); display: block; font-size: 10px; letter-spacing: 0.3px; line-height: 0; opacity: 0.6; } .searchform { background: transparent; left: 20%; position: absolute; top: 35%; width: 60%; max-width: 100%; transition-delay: 0.5s; } .searchform input { background: transparent; border: 1px solid rgb(102, 102, 102); color: rgb(247, 247, 247); font-size: 14px; font-weight: 400; line-height: 1; letter-spacing: 0.3px; text-transform: capitalize; padding: 20px 0px 20px 30px; margin-top: 15px; width: 100%; } #searchsubmit { opacity: 0; } .archives_body main { margin-top: 20px; } .taxonomy-description p { margin-top: 5px; font-size: 14px; line-height: 1.5; } .amp-sub-archives li { width: 50%; } .amp-sub-archives ul { padding: 0px; list-style: none; display: flex; font-size: 12px; line-height: 1.2; margin: 5px 0px 10px; } .author-img amp-img { border-radius: 50%; margin: 0px 12px 10px 0px; display: block; width: 50px; } .author-img { float: left; padding-bottom: 25px; } .featured_time { font-size: 12px; color: rgb(255, 255, 255); opacity: 0.8; padding-left: 20px; } table { display: flex; flex-wrap: wrap; overflow-x: auto; } table a:link { font-weight: bold; text-decoration: none; } table a:visited { color: rgb(153, 153, 153); font-weight: bold; text-decoration: none; } table a:active, table a:hover { color: rgb(189, 90, 53); text-decoration: underline; } table { color: rgb(102, 102, 102); font-size: 12px; text-shadow: rgb(255, 255, 255) 1px 1px 0px; background: inherit; margin: 0px; width: 100%; } table th { padding: 21px 25px 22px; border-top: 1px solid rgb(250, 250, 250); border-bottom: 1px solid rgb(224, 224, 224); background: rgb(237, 237, 237); } table th:first-child { text-align: left; padding-left: 20px; } table tr:first-child th:first-child { border-top-left-radius: 3px; } table tr:first-child th:last-child { border-top-right-radius: 3px; } table tr { text-align: center; padding-left: 20px; border: 2px solid rgb(238, 238, 238); } table td:first-child { text-align: left; padding-left: 20px; border-left: 0px; } table td { padding: 18px; border-top: 1px solid rgb(255, 255, 255); border-bottom: 1px solid rgb(224, 224, 224); border-left: 1px solid rgb(224, 224, 224); background: rgb(250, 250, 250); } table tr.even td { background: rgb(246, 246, 246); } table tr:last-child td { border-bottom: 0px; } table tr:last-child td:first-child { border-bottom-left-radius: 3px; } table tr:last-child td:last-child { border-bottom-right-radius: 3px; } table tr:hover td { background: rgb(242, 242, 242); } .archive-heading, .taxonomy-description, .taxonomy-image { padding: 10px 15px 0px; } @media screen and (min-width: 650px) { table { display: inline-table; } } @media screen and (max-width: 768px) { .amp-wp-meta { margin: 10px 0px 15px; } .home-post_image { width: 40%; } .amp-loop-list .amp-wp-post-content { width: 58%; } .amp-loop-list .featured_time { line-height: 1; } .single-post main .amp-wp-content h1 { line-height: 1.4; font-size: 30px; } } @media screen and (max-width: 600px) { .amp-loop-list .amp-wp-tags { display: none; } } @media screen and (max-width: 530px) { .home-post_image { width: 35%; } .amp-loop-list .amp-wp-post-content { width: 63%; } .amp-wp-post-content p { font-size: 12px; } .rp ol li p { line-height: 1.6; margin: 7px 0px 0px; } .cmts_list ul li .cmt-body { width: auto; } .amp-category-block li:nth-child(3) { margin: 0px; } } @media screen and (max-width: 425px) { .home-post_image { width: 31.6%; overflow: hidden; margin-right: 3%; max-height: 122px; } .home-post_image amp-img { width: 144%; left: -20%; } h2.amp-wp-title { margin-bottom: 7px; line-height: 1.31579; font-size: 19px; position: relative; top: -3px; } h2.amp-wp-title a { color: rgb(38, 38, 38); } .amp-loop-list { padding: 25px 15px 22px; } .amp-loop-list .amp-wp-post-content { width: 63%; } .rp .amp-loop-list .amp-wp-post-content .small-screen-excerpt-design-3 { display: block; } .rp .related_link a { font-size: 18px; line-height: 1.7; } .ampforwp-tax-category { padding-bottom: 0px; } .amp-wp-byline { padding: 0px; } .rp .related_link a { font-size: 17px; line-height: 1.5; } .single-post main .amp-wp-content h1 { line-height: 1.3; font-size: 26px; } .icono-share { display: none; } .ampforwp-so-i a-so-share { margin-right: 3px; } main .amp-wp-content { font-size: 16px; line-height: 26px; } .single-post .amp_author_area .amp_author_area_wrapper { font-size: 13px; } .amp-category-post { font-size: 12px; color: rgb(102, 102, 102); } .large-screen-excerpt-design-3 { display: none; } .ampforwp-inline-related-post .rp ol li { padding: 0px 0px 10px; } } @media screen and (max-width: 400px) { .amp-wp-title { font-size: 19px; } } @media screen and (max-width: 375px) { .single-post main .amp-wp-content h1 { line-height: 1.3; font-size: 24px; } .amp-carousel-slide h2 { font-size: 22px; line-height: 32px; } #pagination .next a, #pagination .prev a { color: rgb(102, 102, 102); font-size: 14px; padding: 15px 0px; margin-top: -5px; } .related-title, .cmts_list h3 { margin-top: 15px; } #pagination .next { margin-bottom: 15px; } .rp .related_link { line-height: 1; } } @media screen and (max-width: 340px) { .single-post main .amp-wp-content h1 { line-height: 1.3; font-size: 22px; } h2.amp-wp-title { line-height: 1.31579; font-size: 17px; } .the_content .amp-ad-wrapper { text-align: center; margin-left: -13px; } } @media screen and (max-width: 320px) { .ampforwp-so-i a-so-share { margin-right: 1px; } } .entry-content amp-anim { display: table-cell; } a { color: rgb(84, 53, 176); } body a { color: rgb(103, 71, 199); } .amp-wp-content blockquote { border-color: rgb(10, 137, 192); } amp-user-notification { border-color: rgb(84, 53, 176); } amp-user-notification button { background-color: rgb(84, 53, 176); } .single-post footer { padding-bottom: 41px; } .body.single-post .s_so { z-index: 99999; } .body.single-post .adsforwp-stick-ad, .body.single-post amp-sticky-ad { padding-top: 3px; padding-bottom: 48px; } .body.single-post .ampforwp-sticky-custom-ad { bottom: 43px; padding: 4px 0px 0px; } .body.single-post .afw a { line-height: 0; } .body.single-post amp-sticky-ad amp-sticky-ad-top-padding { height: 0px; } .amp-wp-author::before { content: " Опубликовано "; } .ampforwp-tax-category span:last-child::after { content: " "; } .ampforwp-tax-category span::after { content: ", "; } .amp-wp-article-content img { max-width: 100%; } @font-face { font-family: icomoon; font-display: swap; src: url("https://www-hostinger-ru.cdn.ampproject.org/r/s/www.hostinger.ru/rukovodstva/wp-content/plugins/accelerated-mobile-pages/templates/design-manager/design-3/fonts/icomoon.eot") format("embedded-opentype"), url("https://www-hostinger-ru.cdn.ampproject.org/r/s/www.hostinger.ru/rukovodstva/wp-content/plugins/accelerated-mobile-pages/templates/design-manager/design-3/fonts/icomoon.ttf") format("truetype"), url("https://www-hostinger-ru.cdn.ampproject.org/r/s/www.hostinger.ru/rukovodstva/wp-content/plugins/accelerated-mobile-pages/templates/design-manager/design-3/fonts/icomoon.woff") format("woff"), url("https://www-hostinger-ru.cdn.ampproject.org/r/s/www.hostinger.ru/rukovodstva/wp-content/plugins/accelerated-mobile-pages/templates/design-manager/design-3/fonts/icomoon.svg") format("svg"); font-weight: normal; font-style: normal; } [class^="icon-"], [class*=" icon-"] { font-family: icomoon; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; } .icon-telegram { position: relative; background: rgb(97, 168, 222); height: 38px; top: 0px; width: 38px; border-radius: 50%; } .icon-telegram amp-img { margin-top: 10px; } .icon-telegram a::before { background: rgb(29, 161, 242); } .icon-twitter a::before { content: ""; background: rgb(29, 161, 242); } .icon-facebook a::before { content: ""; background: rgb(59, 89, 152); } .icon-facebook-f a::before { content: ""; background: rgb(59, 89, 152); } .icon-pinterest a::before { content: ""; background: rgb(189, 8, 28); } .icon-google-plus a::before { content: ""; background: rgb(221, 75, 57); } .icon-linkedin a::before { content: ""; background: rgb(0, 119, 181); } .icon-youtube-play a::before { content: ""; background: rgb(205, 32, 31); } .icon-instagram a::before { content: ""; background: rgb(193, 53, 132); } .icon-tumblr a::before { content: ""; background: rgb(53, 70, 92); } .icon-vk a::before { content: ""; background: rgb(69, 102, 142); } .icon-whatsapp a::before { content: ""; background: rgb(7, 94, 84); } .icon-reddit-alien a::before { content: ""; background: rgb(255, 69, 0); } .icon-snapchat-ghost a::before { content: ""; background: rgb(255, 252, 0); } .so_i { font-size: 15px; display: inline-block; } .so_i ul { list-style-type: none; padding: 0px; margin: 0px; text-align: center; } .so_i li { box-sizing: initial; display: inline-block; margin: 5px; } .so_i li a::before { box-sizing: initial; color: rgb(255, 255, 255); padding: 10px; display: inline-block; border-radius: 70px; width: 18px; height: 18px; line-height: 20px; text-align: center; } #ampforwp_search_query_item { display: none; } #header, .headerlogo a { background: rgb(103, 71, 199); } .cmt-button-wrapper a, #pagination .next a, #pagination .prev a { background: rgb(84, 53, 176); } .toast::after, .toast::before, .toast span { background: rgb(51, 51, 51); } [class*="icono-"], .headerlogo a { color: rgb(51, 51, 51); } #pagination .next a, #pagination .prev a, #pagination .next a, #pagination .prev a, .cmt-button-wrapper a { color: rgb(255, 255, 255); } .breadcrumb { width: 100%; } .breadcrumb ul, .category-single ul { padding: 0px; margin: 0px; } .breadcrumb ul li { display: inline; } .breadcrumb ul li a, .breadcrumb ul li span, .breadcrumbs span { font-size: 12px; } .breadcrumb .bread-post { color: rgb(87, 87, 87); } .breadcrumb ul li a::after, .breadcrumbs span a::after { content: "►"; display: inline-block; font-size: 8px; padding: 0px 6px 0px 7px; vertical-align: middle; opacity: 0.5; position: relative; top: -1px; } .breadcrumb ul li:hover a::after { color: rgb(195, 195, 195); } .breadcrumb ul li:last-child a::after { display: none; } .amp-menu > li > a > amp-img, .sub-menu > li > a > amp-img { display: inline-block; margin-right: 4px; } .menu-item amp-img { width: 16px; height: 11px; display: inline-block; margin-right: 5px; } .amp-carousel-container { position: relative; width: 100%; height: 100%; } .amp-carousel-img img { object-fit: contain; } .amp-ad-wrapper span { display: inherit; font-size: 12px; line-height: 1; } amp-sidebar { background: rgb(103, 71, 199); text-transform: uppercase; font-family: sans-serif; } .navigation_heading { border-bottom: 1px solid rgba(255, 255, 255, 0.35); } .toggle-navigationv2 .social_icons { border-top: 1px solid rgba(255, 255, 255, 0.35); } .toast::after, .toast::before, .toast span { background: rgb(255, 255, 255); } .toggle-navigationv2 ul li a:hover, .toggle-navigationv2 ul h6:hover { background: rgb(84, 53, 176); } .footer_menu ul li { display: inline-block; } #menu-side-bar-menu-for-amp > li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-381 { padding: 15px 0px 15px 15px; } #menu-side-bar-menu-for-amp > li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-381 > a { border: 2px solid rgb(255, 255, 255); border-radius: 5px; padding: 13px 15px; margin-top: 5px; display: initial; } .ampforwp-social-icons { text-align: center; padding-top: 20px; } .single-post .post-featured-img, .single-post .amp-wp-article-content amp-img { margin: 0px auto; } .navigation_heading { color: rgb(255, 255, 255); font-size: 15px; } .trial-container-purple { background-color: rgb(83, 53, 175); color: rgb(255, 255, 255); padding: 20px; margin: 30px 0px; border-radius: 5px; text-align: center; font-family: sans-serif; } .trial-container-purple .trial-container-heading { margin: 10px 0px; } .trial-container-purple .trial-conainter-text { margin: 10px 0px; } .trial-container-heading { font-size: 25px; padding: 10px 0px; font-weight: bold; } .trial-conainter-text { font-size: 18px; font-weight: 500; padding-bottom: 15px; } .free-trial-cta { padding: 25px 0px 15px; text-align: center; margin-top: 20px; } .free-trial-cta a, .free-trial-cta a:hover { border: 2px solid rgb(255, 69, 70); border-radius: 5px; padding: 10px 35px; color: rgb(255, 255, 255); background-color: rgb(255, 69, 70); font-weight: 700; } .trial-hostinger-logo { padding-top: 10px; } .trial-hostinger-logo img { height: 40px; border: none; } .trial-containter-row { padding-bottom: 20px; } .amp-wp-content blockquote { border-color: rgb(103, 71, 199); margin-bottom: 30px; } .f-w { display: inline-flex; width: 100%; flex-wrap: wrap; } .w-bl { display: flex; flex-direction: column; position: relative; flex: 1 0 22%; margin: 0px 15px 15px; line-height: 1.5; font-size: 14px; } .w-bl h4 { font-size: 12px; font-weight: 500; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; padding-bottom: 4px; } .w-bl ul { padding: 0px; margin: 0px; } .w-bl ul li { list-style-type: none; margin-bottom: 15px; } .w-bl ul li:last-child { margin-bottom: 0px; } .w-bl ul li a { text-decoration: none; } .w-bl .menu li .sub-menu, .w-bl .lb-x { display: none; } .w-bl table { border-collapse: collapse; margin: 0px 0px 1.5em; width: 100%; } .w-bl tr { border-bottom: 1px solid rgb(238, 238, 238); } .w-bl th, .w-bl td { text-align: center; } .w-bl td { padding: 0.4em; } .w-bl th:first-child, .w-bl td:first-child { padding-left: 0px; } .w-bl thead th { border-bottom: 2px solid rgb(187, 187, 187); padding: 0.4em; } .w-bl .calendar_wrap caption { font-size: 14px; margin-bottom: 10px; } .w-bl form { display: inline-flex; flex-wrap: wrap; align-items: center; } .w-bl .search-submit { text-indent: -9999px; padding: 0px; margin: 0px; background: transparent; line-height: 0; display: inline-block; opacity: 0; } .w-bl .search-button { border: 1px solid; width: 10px; height: 10px; border-radius: 50%; transform: rotate(45deg); margin: 4px 4px 8px 8px; position: relative; cursor: pointer; } .w-bl .search-button::after { content: ""; position: absolute; transform: rotate(270deg); width: 2px; height: 9px; box-shadow: 0px 0px 0px 32px inset; top: 0px; border-radius: 0px 0px 1px 1px; left: 14px; } .w-bl .search-field { border: 1px solid rgb(204, 204, 204); padding: 6px 10px; } @media (max-width: 480px) { .f-w { display: inline-block; } .w-bl { flex: 1 0 100%; } } @media (max-width: 480px) { .amp-wp-content .alignright, .amp-wp-content .alignleft { float: none; margin: 0px auto; } } .amp_widget_below_the_header.f-w amp-img { margin: 8px auto 0px; } @media (min-width: 768px) { .wp-block-columns { display: flex; } .wp-block-column { max-width: 50%; margin: 0px 10px; } } .amp-wp-content [id]::before { display: block; content: " "; margin-top: -75px; height: 75px; visibility: hidden; } .single-post main .amp-wp-article-content h1 { font-size: 32px; } .single-post main .amp-wp-article-content h2 { font-size: 32px; } .single-post main .amp-wp-article-content h3 { font-size: 24px; } .single-post main .amp-wp-article-content h4 { font-size: 20px; } .single-post main .amp-wp-article-content h5 { font-size: 17px; } .single-post main .amp-wp-article-content h6 { font-size: 15px; } .f-w-blk { max-width: 1100px; margin: 0px auto 30px; border-bottom: 1px solid rgb(60, 60, 60); } .d3f-w .w-bl h4 { font-size: 12px; font-weight: 500; margin: 0px 0px 20px; text-transform: uppercase; letter-spacing: 1px; padding-bottom: 4px; color: rgb(170, 170, 170); } .d3f-w .w-bl ul { margin: 0px; padding: 0px; } .d3f-w .w-bl ul li { list-style-type: none; margin-bottom: 15px; } .d3f-w { display: inline-flex; width: 100%; flex-wrap: wrap; text-align: left; } .d3f-w .w-bl { display: flex; flex-direction: column; position: relative; flex: 1 0 22%; margin: 0px 15px 30px; line-height: 1.5; font-size: 14px; } @media (max-width: 1000px) { .f-w-blk { max-width: 100%; padding: 0px 10px; } .d3f-w .f-w { margin: 0px; } .d3f-w .w-bl { flex: 1 0 18%; margin: 0px 10px 20px; } } @media (max-width: 480px) { .d3f-w .w-bl { flex: 1 1 100%; } } amp-facebook-like { max-height: 28px; bottom: 8px; } a.rp .related_link a.readmore-rp { font-size: 13px; color: rgb(153, 153, 153); font-weight: normal; margin-left: 5px; } .link-menu .toggle { width: 100%; height: 100%; position: absolute; top: 0px; right: 0px; cursor: pointer; } .ampforwp-blocks-gallery-caption { font-size: 16px; } .amp-wp-content table, .cntn-wrp.artl-cnt table { height: auto; } amp-img.amp-wp-enforced-sizes[layout="intrinsic"] > img, .amp-wp-unknown-size > img { object-fit: contain; } .rtl amp-carousel { direction: ltr; } .rtl .amp-menu .toggle::after { left: 0px; right: unset; } .sharedaddy li { display: none; } sub { vertical-align: sub; font-size: small; } sup { vertical-align: super; font-size: small; } amp-call-tracking a { display: none; } .btt { position: fixed; bottom: 55px; right: 20px; background: rgba(71, 71, 71, 0.5); color: rgb(255, 255, 255); border-radius: 100%; width: 50px; height: 50px; text-decoration: none; } .btt:hover { color: rgb(255, 255, 255); background: rgb(71, 71, 71); } .btt::before { content: "▾"; display: block; font-size: 35px; font-weight: 600; color: rgb(255, 255, 255); transform: rotate(180deg); text-align: center; line-height: 1.5; } .wp-block-table { min-width: 240px; } table.wp-block-table.alignright, table.wp-block-table.alignleft, table.wp-block-table.aligncenter { width: auto; } table.wp-block-table.aligncenter { width: 50%; } table.wp-block-table.alignfull, table.wp-block-table.alignwide { display: table; } table { overflow-x: auto; } table a:link { font-weight: bold; text-decoration: none; } table a:visited { color: rgb(153, 153, 153); font-weight: bold; text-decoration: none; } table a:active, table a:hover { color: rgb(189, 90, 53); text-decoration: underline; } table { font-family: Arial, Helvetica, sans-serif; color: rgb(102, 102, 102); font-size: 15px; text-shadow: rgb(255, 255, 255) 1px 1px 0px; background: inherit; margin: 0px; width: 95%; } table th { padding: 21px 25px 22px; border-top: 1px solid rgb(250, 250, 250); border-bottom: 1px solid rgb(224, 224, 224); background: rgb(237, 237, 237); } table th:first-child { text-align: left; padding-left: 20px; } table tr:first-child th:first-child { border-top-left-radius: 3px; } table tr:first-child th:last-child { border-top-right-radius: 3px; } table tr { text-align: center; padding-left: 20px; border: 2px solid rgb(238, 238, 238); } table td:first-child { padding-left: 20px; border-left: 0px; } table td { padding: 18px; border-top: 1px solid rgb(255, 255, 255); border-bottom: 1px solid rgb(224, 224, 224); border-left: 1px solid rgb(224, 224, 224); } table tr.even td { background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(248, 248, 248)), to(rgb(246, 246, 246))); } table tr:last-child td { border-bottom: 0px; } table tr:last-child td:first-child { border-bottom-left-radius: 3px; } table tr:last-child td:last-child { border-bottom-right-radius: 3px; } @media screen and (min-width: 650px) { table { display: inline-table; } } .has-text-align-left { text-align: left; } .has-text-align-right { text-align: right; } .has-text-align-center { text-align: center; } amp-web-push-widget button.amp-subscribe { display: inline-flex; align-items: center; border-radius: 5px; border: 0px; box-sizing: border-box; margin: 7px 0px 0px; padding: 10px 15px; cursor: pointer; outline: none; font-size: 15px; font-weight: 500; background: rgb(74, 144, 226); color: white; box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 1px 0px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } .amp-logo amp-img { width: 190px; } .amp-menu input { display: none; } .amp-menu li.menu-item-has-children ul { display: none; } .amp-menu li { position: relative; display: block; } .amp-menu > li a { display: block; } span.acss1b784 { font-size: 48px; } span.acss1a813 { font-size: 24px; font-weight: 300; } ------MultipartBoundary--z8J7UdiCQceqzVdIOKFzKDZAZLhRZIQmHWcpQXjrNf---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: cid:css-ccbb5adc-f038-48c1-9b2c-41b059f473f2@mhtml.blink @charset "utf-8"; body { animation: 8s steps(1) 0s 1 normal both running -amp-start; } @-webkit-keyframes -amp-start { 0% { visibility: hidden; } 100% { visibility: visible; } } @keyframes -amp-start { 0% { visibility: hidden; } 100% { visibility: visible; } } ------MultipartBoundary--z8J7UdiCQceqzVdIOKFzKDZAZLhRZIQmHWcpQXjrNf---- Content-Type: image/png Content-Transfer-Encoding: binary Content-Location: https://www-hostinger-ru.cdn.ampproject.org/i/s/www.hostinger.ru/rukovodstva/wp-content/uploads/sites/8/2017/04/logo-ru.png �PNG  IHDR�8Yb9��IDATx��k���X�"���Ad�AX�x {�$1uU.�ȑ=J��F79'1�FF9`�B\�h�hj&F1A�3��# (Ê��<�1�5��U}��]�Xo���K���S��W_�Z������������x��k̅�="�_�9;�&+��"�6�� ��Ա�3�����V3�V���G��x�J�7o�Ȩ����z�?��DG�f�� ��̤{�|�/�bޮ�Q�����A�x%�;�0��Ȩ���#��;�~�� �3s��^�~�����������oddd�7222�� �� �FF���ҙ.��i���B�i~�G�9�.t�]�O��41 �U��.���\�gsӗ���2�R�-ݏ;x�����Y�FzcB��u�SK-;���+�] �O�_?���w+O:���e.s�a� ���ѩ]ɓ��Z�oV2�I�pj�z���#�4�i���dK�ϭ��[�bח\M�-G�GHP��)"��ƈ�rhh���$���ls�ܕd:�P\�9R����Xj��W}-y_��J�ߚ���s�]U#�Y}>�b��R�5�������������͍D�.� �ˎ�z���1{=�9�g�U�%Lb�Ϫ�?�����(�x,� ��� �a]ޮ�l��džK��`$��u�5�� �q�H�v�1�R�L�����˥�r���+(G������ �f m�y3��s�U���<�w��~���b"$�9��|Ghݴùt��ahsN �DI*##$%a' �E��P��5Fc�JY�E�_m��J��oq���6O�/�#� ��w<��-��������{�O3�q;GD�˲Y�i�����?�,�� �2�G1��K6���\��N+B�� ��v�q�'LX�,�_ �OT�x�H_����N0%��@��Ų(����Re���(�goM���\˵\C���j�5Ĉ�6�J����SI�n��,���ϋ���!*Y��v�B��W9�܊P���n��_��)�Og���Џs� Џ~���MozНS8���JW�r"��D'�Ӟ�5�iM+�hFQ��Y����?^Y��:�-�3�+�O�^��R˲,&e�)V�vM��9jk�{"�`��k�w�S�yUα5���ӀY�6J+�] ^@>�rU������ክp���M8�g����`5|��$���]�b����`;���Glc�H��-la3���&6��u�� M ��V�d��V�S�&vo��Ƒ�upe�<�Q����,���)�(˜��O[�k�b��Y�2�Z���?�RN����)I�I�€��ߣ���_��n�O��^#��y~���R��~�J�١�@3��Ք9��+k̸��>�#WK!J��_�kP�;H#�Q%�'��q�=�/��{��ζ��'�7<���&X��Wzty��;����Ͽ������o�e������=���ܑ2[�����f��.������?��^cˢ�Î�dǿ)�[��?;0�G�H.��]Gx�ScRܯ.�t��y�u'���+�P!���G�l�w�!�������S�o�і�}b���a?]�#R&��&F������EM���^/�mS�U��/�a�~9,���P�'�u�~w]� _Q�;|ԟ3�H��ߞ�|�O�&F����IG�%�.yO�2#/р ��䮲G�|[�\K ������)��F¿�4P�?L �e� V��?3�C-˲(��n��(�-d�9����O��w��>1���ʈjTW.���=� b�۬�(����0OP���^���1�)���ђ�t��~���CX͍�L����70�q�,F�y�z�� ��bN�?���/��/�ٮRJ�5w�}����5�=f؊QS�x��91��w����J�RM,D2��,�8B|��wcJ�ޔ1c�8�a�ݮk/5Ԑ��΍��eq��Y���ӟ�W�ߦ��x���[ � ����4ir�x��`�X��_�ڮZ��N=U�����{i���k�QbS�\���~�� �0��{���@VA���VI�eH���gy�����8�u�"�Ks��ſ){����Q�8��9)Mm��?i���s��X�f!��A�*������}�T��ü*��k�Qw���S��i?;uNq�d�cDz�l�{M��*����9��ޅ9���.��| �[��x�֮܃�)u�^JG���D��H�%&P�]���Rw(k��Ac����6�3G�I{3/���Q��Z��DB����K�:�/��Yb�奸��I�9}��� R��Z�-a:#|�x���7��,[�g�L_�8R�)#5e{p/[� �Q>a��x+���1�͎]�5,�Z�(�P����R��\�j�G锧��G:�6M�-��k���0;Yƭ��\Ɖ��5rWȳ�{�UiƲ���[F.����t�t�N�oE���\���ц�\�L�JF��-ZQʅ\�ϙ�xF�m�h�f_E"G��xu�eY-�i�o��b��F3�v�<�E TW[ٲ����H�������������o�722�� �###����ѱ���#����p��/2�&��l�O���,�� ��3 `m��z�� �FF�� � ǟ�^�n�p � �FF���g�t �ڰ��[-��z���Qav���>�= �-˲h�d� �FF�����b����5��9w����X�&d��eY���͛4222*`����7T߫�IEND�B`� ------MultipartBoundary--z8J7UdiCQceqzVdIOKFzKDZAZLhRZIQmHWcpQXjrNf---- Content-Type: image/webp Content-Transfer-Encoding: binary Content-Location: https://www-hostinger-ru.cdn.ampproject.org/i/s/www.hostinger.ru/rukovodstva/wp-content/uploads/sites/8/2020/10/grep-komanda-linux.jpg RIFF*uWEBPVP8 u���*�>Q&�F#�!���Y�� eiA�\�9�;����ɩi�S<�?jX�������e�<���~��?�z����>Gy����D���|��= ���_��g����`]��>���1�;�[�����_m=�����~�?��N�m�,���z^i���O�?������?����� }�t�}ݷ���#�O�΅~D�Iqÿ�C�7ܶW=��������y��{�����,z�/��S��KP�jVyU���5h%&גD��<�5�zvc;a�Hk �܏�a�#���O&��)�Y�3��Ҽ�j�bHv@pױ�z۴�瘧R��M緞k�qu� F�.�?2�M҇X[اL�ɤ�*�y%f� <���%,�G�k� ��ݯF{�:�vf��Ɍ�B�Q�T� .�ފ�LebK�Ox�{!� �I|l�Y�'����sR7!��wd��Qɹ�d����T8��T�6n/�Z��� ';�b]g�а�,��� nM�H�� ٷ�o ��Y���4�^����� ��X���{M��f�6��r�S�w�W��m펞iquԨ� ,2��du�yڧZD,��� ��۫���A`����{�}�L����-k<��V3 ���B9(�5��PAv��6���:�g^��׿���&&���b�*ϕ~�h���`%����f�B�`�+�!>!��ts��9(���*6|���� �d����z��c��.��#쉘@S�Z�Cx#�_m��/��P?ǃ�K��^v�c�pVơ�rA�*4J7�O�gc�P� �^O�J��X_�y��������' S��e�Ą�g��%�T�ެ1*~kTi����$�����6�R�P  ��`�(f�=� �+����s8ԝܧ����]$ш(l�b���zd�?�j���< �R� �@o$��"�Ͼ�gl..���S��.�����?�s��)[PT�@�& <b�_���i�?��2�N��_��I���S1@c�9�ܫzQV�vӂ�1 W�z8����J�̣�*�ًx.�rb�[�Y�0�#�0� DMjt��u�}���W1m�=���K���� �{��Xj�f?���C�[a�p���@���j�ݣ~�t �W������Q�[���� �!������w�Ɯ(5fs�iB� f���:�ݟ$3���D=�� ���P�t:h�W�=��(B�c��^w}+�K,i�������ɔ�u�-i��R/��ݢ�i|G�Z�gN�7�o6�8j鏵M��D�Q�e`=Z�<0��h"5kM!H������h�'�_��$�AһL�g8�|���)ߏ�� ���8|z�c���XD)Fw�E�Ue1�\i�k�=����:�C�)S�H���o���酈D����%s���L�9JZ�0#O.��ֻ�m;� ���&!�����"o�$�N���A���ڴ/az��S�[%~W[�pN����D�jҤ_�?vMXQB�P�{��vx�Q.�ĶƼ�Ͼq5�T�+4�UyQ��?J�$.~�b�j������kX��������v�tt�\ˋ�.ר�Y|K��ȳ o͛���(�Gn������/����z�|��BK�Bf�����&{�ѥq7o��k��U}�\4�[�U�;�z�{mY-2ꜿ��\=R4� U�}*����l/�r bIEG��65}��j�9�5�V�xYr�h�5���,���J��|�N���N-�M����o��tC�J��~�n�u��Ǎ� ��.�������Ź t\�X6�CvP%L�3�"�2���x���N��?�9�Ov{�����*����Wh�V� ��dP�|�h�����\�bN����ٿ�C/sx$�X��Թ ����O xi���~��Y�@I � �!�d��TX�0l vt�YK�(�^���>��OMߩE]���f��p*P�9���Xoj���^��Y^�9���l�d��`�׎�i�G��&�N�m��v:�'~�k����!�YE6E��|��Ź�%"�7�O�XH¹�][�I� <,�^���_3���P��z�}�t�ɓ8 _ ֣�W�M��j-��J�x:a�"q ~� h� ����$Ю��&����W����2Q���� >~B� �a�C���J��\U�ε��2n��MeX,:ް�����o44�߇%��I��g�-�,5��G7���\�Eɘ8!���̗+�,��fY�y6_3O���h��YQ/�T���:l��$�0l�l�p���b��0#��{���/�.K���n�@m�l�/�o���:^ #\v��L3P=���I<�YTpË�[&qܛ��.~ �F�/�I"�RK<�C��ʫs�R�Q` ���>��o��v����&��>^*��O-�pe�C�ou�L&(>�D�*�n�,�c)�{��4*i��9�^��+�[G���n��=���Y����G~P��0����8HVR�۵�\E�hbB" �`J� u���5&1��U�Sƀ|yM���Rm=���F��\�Я�}�Į����j=�'R��/ ܦ�댖€�vN�-�\+���T�U\�G����;�ʄ�gyX���,�^ 6I���,�?*��$Xu� �^&;UO彼 n^�}����k�d�����]��Ȍ�����:T>�w�ę����\�[���Ƒ{ P?��$�!KJф�|k�>�,U���2�K�J�E�Wc���쌌�tM]9h�e���b>���됆���q�=}�N+�d�ﵫn8�������Ƴ�uW�zU���=h��=��j'�6j���7c`yM=�e�p�)���JrS��*��V���kM� �C�|m< eq�q�6�R�Y���v�O�+]�Qfq�V�mE�.!��=�l¥�7�ƬL�V>�H�h�1a���`�n���X��߭� �kKF��7��\1�gDմ��� ����8�{��5U�P�v�I��bp5M 97]FC�_������lL�o*�6͔DR �M C��9azFA���q"���n����n�Y6xyb6oK� ^�G�����o���'C ���� �v�[��g4��q�"�j $�iz������K�J��]��j��sn��u���-��'��%�g��Q೉�;����l{��k9n����$u }�0.� ��]����l�Gv�?�d[`�g2��yA�^�|��TC�zυ�z���]+8P3,Z�i!)=W3������ۜ|mz�l�M�wx�_�����nF�*n�e�p`.��L��8�IXOr��%��3��=���m�M��N�����"�j\�V܁}߸a;!D��vʻ�L�f�> ��Ѳ��)]ɱ�(+/S"ș�G���{Hc���8��P��镑�^x�����ĥ���i� �ۍ��������wtw���♊���[�f�3��?y�SPw��\1UԠ\P��`��x?f�V���D�m��۠í �m��2FK㡹%�.��!l���=��7���7�����y�G봋��EdE��D���Ҙ#Ϳ�2�m��(�N�B��� j2�CU0��0���M ���#�ц`�4��(�ċ�´�b(Х-]�'��NG�ӟ�&i����8uk�h"�x��%)� �H�� �u��o��F���>P�TFSYz���@�umT��P�,Mh�"���- �����ݤ��#��޺�� |�0߽��~u9Dm��G[c:�5�7s�ͺ˂��'Դ��ڱ,&����mNwā�-y\�x۾!$y��2�bH�k�󡿡��l�'��{��ǣ2Ip�a-���uV,!̙#q���(�V�[(om�2&�Gks|s��/j˨I �ׄ =Q�mƯ1ha��/ � 5���=���������)�d�諛� �ӳ��ʼnɼ�I��:q���Д*=�r��<�翘�ڊDk��s6Ty$V.�y�b��Dq��ra�ʯ@`�Ym:�U˴?@u3&�/��>:��p�Bc1��GC�i��a���͛]�b� D�!~�&����B� }�9��e�r���K�����{�޺�Qhs������=L��q�ٳ��v��IN�5k*z$Ợ�!P0w�\���O�3z�VA^ �!�K�.ɋ�2������ �T�[ކ����'�+?̳�Rw{14� ��md{��w ������\�z���E���x1Ujk�~���4��H�|$���.� �Vd_<���-к�`�H���eC�YՑ$m-@�2�` c�;��9�ƱG��@V�kmH\���t!��q?�v���P������N�y��q��M���U2S=�A�[1['��E���8�ak;qU蕼S[A���ۘ�U)�6X���-�\�^J"T���Fb�h��U�U�b��U�����U����n�7��\ �g �uw���'s�I������v05�pߑ��H-5B�E����P��4#@B+h�K�2`�9�_�!�4SrLi���7��su��`\��M�n3J4Zפx�ە��Z��i����{��� ��&���2�+@�U�jj�Z�$�mu�֒]1'm"�u�L���,�3y}x���^���b�S���Zf�V��n�?1�D��r Y� �~��M�%��,;d ��%�Ya�`��2�����p���f"D�E��" u";�\cՕ�>�6��� �C������߱�B�6LK��/3�R��%5UF��0��ߏ/��0-��C��6� ��J�P|��[�Z����?b�� ���� �t`+����K� �o�˺^���-� �qO���o}�$����LGz/$�}��i|�}�U-�8&��Y ar��rg� �Բ��*�~X�K��:x4Q4B�c����Hմ���(j1���-����ط_:o�uu�eu�PCV�S$%#����& A&�W|w-�J��,;����k4,��Lf�❖�樳���Q��!�����%u���\����g?V3�B�С�a�{a��x����P�3��S��Vp�E��Sx�+�����T��Z"�� �D ��VYBNY��?%J����f�?Y�[�Q *8u��t���i��|��`��U�?d/�P��������/7��!Ǭ�¢,#��>A''eK�<8�|���W���[��JJ/�J��%ofXn�Ɇ��dLo�9��O3:t�g[\��z� �T��&�5| �z�ܧ���~[A)����ƦV(�~��ҹ��w$M�j�p`��EO,���}���8� ��� ]�_UW p��~<����o!b��� �yb�o�y��}7ݭ^��u�Gֳ۪1� *�B�D��Y�s�ҷ�e/b4x�}p�nMBԠ�} ��=�ny���̗O���)3��y�Ȍ�DM\��G ~����cLJO{�M i�+����ԩ��#G� d����=�D����m�6 �7�?�ϽS�������Hxy ����|*���r����&V�T��D�F�Z��2Z�����݇�P*vZb�br�R�������Im0�h��ʹL�9��a,K��kPBi�K�@�t-^,����C�u�$N� 8��o L�,�Q�>A�<�� >�{�� m��Hq�S��̭�6e�. t �����,�D���D����#�G�ґ*{s(�f� d���#Q��]��N��!������`h�O�4�<ڱ���c!|>�t��!�t�E$y�4�@���'���E������bo0�FH�i/��U�u�Hۿ�X\��G&�H|E����Y�a�0e�М�K�ة>��C�Cy{v�/��?��>��2� �.5 �����}���j��@(MPL��U��^�A�AX@�#�x�Rg�Q�u�&��N.���7͠�tZ��^��O(�+��LT]E�N�Uz��(Й�#"ѰXgR�$8�w[��f;FnFذbĈ5��J�]��ԳNq�\SKq��p� ��~��un���n�2��H���g�[��wj����B� 1k�Yn��_�������M2��:KV0UT��Tmb2d�p@_��G;�Pԥ0�E����l�s��B�7*i�5\@sB>ؙ�$V[��5��}��zl�.�r�W�.���G����� � �G�o3bxa(���<��}?T����;�L��CBL��7�..�cg�6�(O��Q�|}�b��c��v��>_�U�C=Q����z��[��% �$��v�P�R�rq#���#� ��97 �nD ���H�o9Z��� �O�����9��RAP��Gdž�R�yr�lfU-���4lX�7��U����O<6� c�=�3di��N ���ُ����r��M��i��j0@+��I B��� ��$� �kT?Euhb1��d#�嬸�s $�d`� ;�!y�@A�B����(��O�~6��&ݙP��n�3y���W�<���[�epB��"����1ڐƌtȓ1���o'��y?�3�xV��_u�E�ss����{K�'�w���4��R�� �'z�!���K��QZ��k��gxY���)��~wBBs)UԮ7� �e6�� ���u���� �jj��U<���b1a�J��)�v�/:�hB�%moԸ��8?M׆�GM��_w���P�F�^�u��(綃�o@vb�["Z��0;��\_��$t�R�����Ֆ�n�۞��tK9!����� �pY�%��ͳ\�� f�K�(TQ�p�X(��L�=�6�>��m��G��&.h����pi�kǿg��a�M �*gL"w$����*F�~���Юm`�����L��ͤoe���a:m�����I���~5�cⰢ��z�}���O�Y<9�Ԑe�Dn��z i�'^M�g�,R�N@T��9 �ڀ��qߊ�xW�G�’�ne��i#���S��K�)�����r �a�k���Vl��2�A�2�d�?y��ȕ��. �C��^�'�p�Nsz=�9�(��ނJ ��(���@�뗖�R�-9����~�U��a&�3�����n�#�_ �+��%~����;/��a�rc�]�t�).���� ���}�R�&bU7�9%��dv�3ܬ�/~���Mx �>�g�ɞ4A\����,�U�b3-�/�]�P=t{%�;x��\�)��݌LiV��|-�a�� ����kF� ��\@ó\ȸ�l*T� �pa��b �%���\���Fx>ȵ�N7.%\�[v��KY�� �^�k��!��E� 쬿��ң�|� K%�C��"r�vI��k�5t���zԋ��]��$e�y�=^!�#/�P'��q���?f�=_�=��sj]a}�&bק ��g���>F�˲( Gd4��A��[[r��d7s���W���i���F��Z(J��Һ=� ��lXpl��f(�kya�%��f4� �7R2$��1K�p��%W�+H�)iz��v]��glYq���Kא�`�^���C�C�7���� -E?�9à�q4����4���y�אj~c2���� �j' {����4�#�h���z�i4�l��1�h��*P�k��WB�D����@Wݣ��U5��� j��C�]���q�1B��Gv�6J� ��4�G��R��y7���X��H�/�?d�K�����zAK�H����m��Y�ɑ�n��P������Z�r�px'�}I6J����nh��N}�-"��c��Tra[3."�� �b���!H�QŢ�ʓ��ak�X����9�8���4J俰|�E@���\�>(����)�F �X�&3�95�-���D���5B������T>UOX�$�e�Fi��p��0r]A������%�k�@�@z���ǣ�ө��Ӕ���GK��Sh��غ=b��qp�4L��F�Y��@젭d�7��̵�{2��^$E�>uk�DE� x����rZ�F�T&��D1I��0v�N��f���lyY�|�A Vz�[�I�)���]E'�`Z���t�Z���/3�+��p�Bs�����w�rE�{�p�/� �#,N�'?r/fb{Yz��j��&v�� �y�r��~��/�XFB���_uѳœ���_^��t0s���ȚJ:�-��+b���@�C�9XN:kq^�"����3�� /��0�n�C*�|���/�Zgm6�~����:�73xA5��u�I�3�s�XƟ�v/W �8��-�ql��o�)aY�^��5۞(���(�E�?UoY:�.�*m\78r�Yri�‹�>Q�7$v@��,�o�ٿF���k��V-�SRY=���z�SP�(�5���ڈl�H#V��N3Q`^��{�u���+�#Qܡ5H��q����k��='�xp^��Gj��-��⪻kͥ��`&H5Z��7������X3��\H��s����C5���ȥ��"�V� ���̪'F���RR�-�'o�*�S<�9#�<��!�7Ce�n��n��{PQ�!u�(-�"N�����k����:։ ����x� �[d)++�"�e=��xָ�V2ʞ��0��ǑO�V�<߹�ǒ��͏�/�-R����o�`��OM��;c�qT���{�D$�;^7t�}k��ez#���'X)�9pؐ;����$G�e �� m�>��[��~Rv��j}'ˁ��`���eWoVH�Ȉ�\�c�O��Tׄ�xs2b�(�:�s��[��V[hx�O�B~X�<�4C������`�I�)Gf���+$�h[���X-�CG=lK{� P�S�V�ha$;�D�A�����C� 3gD [r;XI����X�q&�������+ۨ�XK�2��7wJ"�e�� ��ŵ��%�TQ"K�{��;�Z�p6 Un|�C�� 5��9J)��[c���a��_"�.f塃Jc�P@S�Υ��p��s�Պ���2(h��|�cW؟����N]ʧP�#�Kc �&�kW-XtȬ$��ϗҋiT�9rW�-a�/H�G ��8��>wU� D˟�73u�CN�����6uъUV%T�m{�z�E���C��CG�u���*'�9���?��:�,� �~H��(e�1I���hO�c� �3�Sǚ?:�6� �ib@e�w( e�mۦ��� } +�FT՛�Z����=˾^j�|���%%q�,��`c7�� ����FwK�8�ZGn � А���'F� B��]p�g܂�R��3�o� � �ξ$C�t#�z@slKM�*�aBsѓt��ҦF��j%n�:-�?�_tF�/���K��$H�+h����x�NU�ѭ3*�8� ߣ#����3�-:?�n`g��yz�|��HxQia �؛�P�J��*�v����#/��i/� �� T�O0�4��Ⱄt�?z���0'�l��! !�}i?�S.����Ręq����Em�kT��C��- ( ��R�$L���� �l#�yq�1 {2��Q�R���U� *�( �p=�����[�CJ#��4,doX]\�j�����u�aw‡��I�1G��" ڐD�(���^��{��i���&:G��^��娾� �qTt���~*���E�V!����"&P�$~�"���\�� aѩ���+!��tT.[ͳ���!Ji�RX�s���W[�����X�8�ё0k������( ���H��t5���Y$�6E�f�a���4�)�:Q�oB��28��^���k�ŷ��Q^����G5b-ڃ60T����'�w_E���v���ȭ�L &} mڗ͘�$��lj(�h\��X���0Ă+�{7�{fZl!�r�|�^�ɹ�R)ޜ,Y��b�����,��*�x�h��`r`彴w_�y�7�ը���9mv�V�E��t�-�� uSC��`�>k�3 �Op���T�$tKє���j�u�X=)�2��ˆe~�xJ���p�"��'v��2ʵn��3r� ��Wp�,�r�U|Ɗ< 4�G�D�}Åj�p�%�a���㵿T��2�{�a����Q�=1R @�ǀ�e�c�b>K�F����K0�%:u����n�_.�]Lꃨ�;j�C9A��,J"�����*w�2��b�E����:C�>M�}u#� �(������޽-����yag��ݠ��!�5�̄���tLt������wRʐ`N�v�c���#}�(�QE�=C�;�9��vw�}�٬�k  s��,�=0B���e"M���4%��m�'BT��Ir�U "{;�խVT�� o��u��f��x���=���h!��=�'�S���{ ?����r~2�6g��%�� E�����~�OV��>|��0.�`J�j����"�7;���U�U�/� ^0,m⨎‰��3���6��V.�o��.��ł�ڒ����/�,[���L|W�f�N�(6��-��P?v��8 [��a5d��xU.nu��7��q]��� ���a"Ŷ/�K$���6�/�� Su��6k�Ծ�(�o7P����c�f(9�5U"Kj���C��3�q�A�K��ǩb����VR"٪���85�쪏y��0��R��9 ����m0�@Jm5G�J��N��/���l)��)zu�Z�� F����L-z7�֠�M�Y?�<���2BF6�0n�+>!��&�bpC�.���Q��D��"��~��8T�V�f��Z �%Y$F��B������}�A �Z��ܐ�]�_Z���@ vf��"k��z��F��:�g����۾ޘ~#N5�9�ۧ�}n���R�k�ꕛ�s�'��]ce��m�l�g���� �@kP�C '�;RCYb���h�VW��}z+i�$nAW̏��P���L������!�h�uVq�KxOk @��$���,)�T�u$Z���8a�Eu�_3E�ïW�=}`�S#���=݈�z�)��"�Sb̷*��:V��\]�t%�ڞ`��2�2x� pQ?M6�F�MHN� 6ݏp�Es1�vU�U}�[k�_�πlKY!��1�h��u�Qpռn������=�;8F_���=� K���m^ŧ���/�' h�^�r��:Țq�VÝ�k��+�<�6��o�+ T�J�Y -����+O�o��i0�[�KШ��Ca`�� ��W�N�� ����b��:��`���f��zG��Uuѕ-V�-W^4׈w7��!"�u؞�,wѭ�%�r����hZ!��=v�2˽l�l���[�?v� V���*OZ9]��G�w�qߩ3�M�� �7�dX��1�V;-Nzւ�o�Bs�꽉�۳h���G q��Sb�^�#��Ѭ�U)O�|�S4X�R��8������S|?X�pb�� !����������t�P�k����ݣ�kz�����=w�uՉ^��N� a -3�}�~�ϱ �L�0���\-Ó���<�5�$��Й�����@��Q�����t��n�qaPo���u)�#����8����߄�I���z�s6�5�k��rj"NɱT��Z����}�LX��`4H`J�� ���%� RK� �g�y�= �vh�����W/�(�N��TPQ�9X�C>O�A`���:�$F�Z���z�܀���� {���N��v�8t-hЍ'����~d֏%G�Ŕ��(rXG��U�خ�e �3����e��F� �p����u����k�!"��2Tg����L��N ~Qew�1|1/������KC����%l^_����`6�݌��/RC�N��)��Y;��G+���0�^| Ŭܦ�3�����\LG�*�0;�$� ���u]�v����-�D���W2���ۭ�7⩑�,v�o;n�6�$�X�M@�~�WudM.��������B�T^����w�d��� ���� o![�[+.�'�`�*�h�$�T��*!� _`|�!] �"�� ����9![�B ����Ĺdi��u[�a:�k��m���:��آ����~E�K�a��C�ʭ@h�^���F�BZy��+�3O�g��)� �5l�)�J��L����B�_=��J{��Q�""il8�v���3V��cYsΉ4��I�A}�#��r)5� u��0C�@��`�N3}BNZH�â��~���YA�Q�J3N�5��mf�,V�j�e��s��Aq��@���,[S�>RGCⲥ:g�t���z^�E]�J%���^���U�$��7�q�/�w�O�%�#���1���֔���ϷLO �ߟ�@�X����ryn��g�I�a]%�5� ��Y�ݵ� ������ �D�6`g�T�7@kO�b&�-k�ٖ������|Iv}2O��Ʈ��� c�95썻�4�9�^Y��6�����S���O~� =>#g.ڥa��ű��8�n�$ϸ��O�&As�B� mM 7O���G3��a��� �5���1���#D@�H�k��fԪ1�$w�L�k���D�.g�g ���ښ뫍N���B��!�H+<��c����.v��اÛ������:�MC�:gG����A�p$��_���-Ly���-����(��>q���<%�T�M�1��Z˄�ݦΎ��.��e�Y�VD>�ݩOڠ�W� �84�aŠ��(�L�8W�\��R �G-�h��B^cx������r�wm�[��� �I�Y�eY�ndWH��C�9�S�n?�6��?@�*e,� ƕ+��@�y���~SKL� 8cU �X�~��kg�Ο3�i��sD?ήEa4ym���* ��*HK4����/�p���_<�Vj�w��9-���Xj� {��*[]L6kh�1i�g�C���]���D��uV��)a�־�0����^UO;�=�K�+�e�)��y�m�����0�x�"�֞� UDCg�V̒HpBS(t<�(�@�Jyku�I��I݋}�z��Qw~sIb���#R��{���4��;$�]� �N&���2����:(T��ť�{Iz�E�����pd�ev�5Ý�~���gY7{�� $^�R��Ŧ�8#���$g.�keg/�sܙ�Bl����M#Zi׃��NM��r`�w�w��@�pF�����6݁���ȶ �bY���kLF��Om�g7�,w�it�ӕ-�A�2ٌ��m�q��2F|� :������CImw�&,E|���`5�h�б�3���rWrߦ��*.+C$��:����Yx���0 ��}]��6�R �֓�#7�w�գE���D ��"� u>p}��tL����5Pl�%oA�M�Me�q� tG.@��ZQ��D���ډt� �ϚU�6-�ݍci0��#�:m�"�?,.7�݁9 �?����X7�W�� ����xr�.�%:c�f�ξ���Y��B��Ř9@ѭK��9}h�2���4Y��}JKԺw����M�W�ƈ�R�Beٍ ��p堮%��R�3n��Z�!��_�y�}F��V6�M�����kx����,�s�tl�i�!�]��J`dh`A�ϚgGE�o�Z��d �^��_�2���b/K�,���:FM��<%9ǐ]��F���&l���A�ڦ�8�Gq�����5��E�z8�xԯW?O71.�g��IS��<���ϱA�X�HW=v��l��^W��'���3_{PJ�X�2~��s��|��ʳB^r��)*'���si�@m���>bcˈ�Џ� X����><�JvNz�-a�l��u�H��s��!lc���X��=�v�Y�>�����xT�Od�H�g�QY����� %��F��~��*�%��==����m�(d�Z��2L����� ـ��p�E�f2�t �7��p1��"�.���ݼq��]�47� ��mEG�c������!�"��Ub#���w4��^�c��6�(~��z��)#���U�����"O�'k� �����l�m5�!׉|����̿6T�M��%��yks��믉��w�)U*?�\��m;#H�jhS!��@ WT��K_�/�J��m@g�G3�[M�i3�Gj�5V��S'?��X�yHr�Y���F�H%�a�^��,�n�tAu<�l\2�\���Kޕw�? ��u�U���{�3�ǝ�Gd�55���F���Q�t����655Ki�8�6g����ȿF}ӝ�P��$����~��l͊��W��Š�����P��=��M�:%wRU���:� ű�Lj��բ�2�##W�^�I��ĝΠz�EpSD&k} "�Y&�� H��U&���a�2�Qe^����Sp����� q�5�����ɓt:0H�$�si�Ɩ�̠��~��� �5ݣÀ���q<�i6/ ��YH�r�p�K�2t�w��R�f�|�\�h� �%�W>�I�G��:�r�B� ���zB�TP�{��/� ���˴J����2<}��q����`\�ejX��vZ��ұ��� �6ͥ0��p���2Dm�Q��KǷ�=UO�2�L�uY���G��R����(� Oo�;�C���k�~7��&<���z�����悕�� �y%XQ�2�g�fO5u�)�u#֩PiN�L�d�1�)�6r���Cn���Z�#��[�0�]�m��;������Vf�0��پ ����P z���Jo��� ���Lr��:J\��ig���A�%|j� #���|ٍ�y2}[�2��o�1u?AI��*�2GQ�%͔�E� 61|�d�>ff B ������L�as���)چzb.���� rE��m��T.��8I�B&s���G��7��}��*�� ��g�sS��G�KǦa��KGHAM�t�}x�B=�?��0�Hpρd��Tv����2L�>oS�lq �f���~l�T�T6sR�����a�D�?��9�c�^���4n�vZL�@̘��*[iA���O��}��~{��.���R���Z��,X�K�y*q��Z���R?m�II$�:Wx ���0��@n(�{��R�T���'=M���vp��$�����hT�"h���|��HC�,X��.�Q,�Z���i̛�,x%���C��wP��q���]���Tx�t >��b�L��}ܥH�,}7'[E�ܙ:��@����� ��=d5Nj�2}Φ�k� �@;֓i\-r7z'S�E\-�{wpa����i�ѣTO`؏�1uP�k��aþ��+�� ��.�=��7[�ˆ��@П%�Jw���M�5]� ����Dׄ�I�Qь3ՕOJ��Z�z)��\�����v�)�̵}i~�'��׍H^q!�ܢ�I6��4l>��D_�:����# x #ԁ�k���b^�L��< � W��m91���He�ҡ�_Vr��B��5I�~7?!��t�5d�LL��F���k@l��� �&��O� {��W�S�oEj��!�o*U7�T�RE*���>�ĭf�� w @���>��j��^�3�@ْ���� ��N�_0����^JI&�];F�I8*1^��,��v�j�g4u��V�c��Xԣ���,c5C �)�B��̹ 9��v[x J��8��xޠ����A:�J�⨻=C��@��]�Ls„%�AnZ�y�*��p��BU\C��CC���� �&����N���K��R�~���|̐+fA�����M)��2�9�d �{�������>ɺ|?�Oy1h`�ӂ�T�M�)�_w��r��Eo#�>�T���}3��1�g��8������ׂ�TY�|%D�p4zB ^��5(�l]���I�ݚ����IRa�'�h����W� H�w�瑛Bt��/�]� ۝�}|����-� ���t�R��ڇ{���:��x�bҌ����&��t��?16!��ry���k�&^��"�8������;�u���DA��d�D!��sg,�q�6q�L0-r=��XQ?�P�x��'�vF4�+瞃so3\����K0s>]�g���C��*� ��!�ztDw������� �����߻ �=���^7�D44� �f�P!F��0� &G2�{ ў9�(7n敜�e�3b�S?�"+a"�n�I���u��ͅ��W� x��"��^Z-ZWv��� �)�.�[��D+߶FE�Ј�@�}�EЇboy�t�������f�f���l\z��cjT+Ƌ%�9m�:�F��0t�G.���T/sl仲'�vQ ͱ��#��`��� z�X����L6f�(�y�D) {o��b��s��J�\�~h��\2�@9����'(*.��m�v�r���� ����L0���۲��G01��dv�iE�C���I�|�JOm+�AWE/��:��=��,�8�7��.r��pe�f���_���/�xv: �9 JM}�njj�W [w�E28 �V��L�0����쫦 �<'B�A� ��2���(t�6,�Ql���`�ݻ�����]S�hTx���1�W]?yrl"��{:�ʗ�4�]����6-?��@Rv�����6(��]H#*o$�`����;Ɉ*����w� ��:�-�*Z\��|7�ćg�A�J��}�+ݨSz`2�ÍAi�Rc���1�� �c�$����rO�{���\�AX�AN��v�jĂO�T��K%�5B�D��e`���h���=��:J��?��])�H� ���"�f�^��.�4jW٢Ub8��y���z�L���k����>[v�1��>tg}sb&1�$l�B�Q/75�˚�t B])h�*���H�����'��h���] �8�ЁT� �À���Y�D�1v�?Ԗ7�� �Q������:��B����꿼�W�J(K��Nr��<Å���[-d�Z���ܲ2;�OP'��Jֹ�ټ��Ź(�����QҬ��C��`Q����9�Rk1��j��� b� �n���W��g/�oɫ���}�O����pl�$}��z��_k8Q� ������ET0��� �f��x�ř���'W�7�&�& r�~����l<���Լ�M*��z�22�)DS�r(��F�0D�gɗ>� ���ͩ�_�–�m�/M��C6;�.� �1h��a�K/JXO�g)\�PT�'���0B�FWC6П���Q�E��S��7��UM�wճ �ǜlo0y��Urh��i���*j0~ubsa����f9!p�a����R� ����_/���0�>B� �;V�/�)�l��1p%.�؏���V�QJ^6�$�������?��~/-lU `P�T�8���څ�4�����g5�8��7_���0[X�N�*��eN/��4�\�mż�,`� ���o�%�\��uHGз��w��h Q>͹TY-4 djRxI>p'���Da�37 yc`�Odjޫu߀�G�`��(b���q�ے˔Ч�Peܽ����T��F�h�SE�Py�7��J�N0��j �#'�Ry���-5� y(�������r���IE����˂��a���W�__�S����Ϋ��� �p:]@��5(c�e���z}��X�r޵B�;2_���-B�n�w�,�F$xX1�寎�Yp;�|��$��v�#ň ��֨�I�h�ЁH&��ޖ��?G��iL�c��C�SeuZ ���j��; ��ng���Z�;\#�^��椘�����ؕ{ð�8�Fϲe?�& �L�]y���5��3�`�Ћ@V$+�1H�&�ٽf���`ͪe�x����0ٜ���\of0]�x��p}�����k!��?R(�;�,'�uK(BwSQ�@mJ\*�u���b�7�-�](U/��x� 5P�`Y��[���tX�l�o 3�o?Ē�0>R;�;m=�����N`�D�1i#h�UAע݆G��J��h qb��� �>�E�F��m![L� )Y<����`�]è��� 6V|GV5Xa�0C��(^_�>�Jy��b&�N��)h �l��K ���Ul3p�8�+�)�M�߭�>Es"�|u�K��Y�ųXA+[R��fEʪ����TҰ�`�u�dF���ٻ� �����\� c�w����I��S����'��l������%�ɝ�kV�4�;h4X�[kc�p�Ԩ�H�Dƺ��8�?M@L�pm0gu�R�����L�����eF�ڲT�ۂu!m��B[��d��i�I�)�aia+��h�֒��[�t9��ZP��� ��O;4|����pN(���U�ŠT�=�6�� ��2]F��i3��l����f:�~�Z��R���%+��O�sU���˷�i�|w����n�d�JJ?#�� {��J� ���nS����]e FJ6�h4%�\jv�N3qzH�G;�ٰ@e��4ӗ%�obj���n&ۻ��E�y ��`C���L���C�����0L�7.��f�9<��S����U�-�~�m��X�hj�x�_:�=�$�\&50K7q����T��.�]-�'�gA԰n����a���Sb���g tb_X �����E�Ћ���㖠}�n*���u?��&:��1�ݼ�4�ݜ�(/X \�o��#�>˜�� ��ŝ*c��Z�|^�mB�U�<�X0�5�ut�ao�� ��*�9� .62�lpeX]gnHJ!�q������ �V�J�^��n��;�dblq��/�03��B�:�:P��ty����>z�3�f##���w���J�tP�f$��8��;�("6*����O{�M۱�v ��T�%��)^ ��q�'rh�Dj��r�=�;��َ���~��R�t�A�Ψ�yµ� �}��iq�%�D,�'#n��j`����9#v9���F���_N��9��'| UT�����ln��h�ر�\k01�O(�`��$&��?���A��u%��O#Ă���;����':{�=c��Cf���;i��@�e�"�����2T+�v��U����Z�Y��X���UQ��;1��K!]#DwC4������2�긤=��.��pE�8n����b��� ۲Sz[�ƍ�R�j�#^#c]� )��?�D��@s���!Bd`��g?-WC��m@]�Z�Gj@��@�Ī�E�r��tE��� �ZW̖d�ܓ�� �x擌d8�3�\"!%�Q&�P���9�J�w��M=��}����܌5+o�̈́�w�otuVRշ���m�G�%3�P;)rK1�S銶��7�ƠH��ŕ-����Yk����� �+x_�[�}fxm�n�4��W��Lu���(��ݮ ̈�IJ0�-ؠ�m�$,���Œ6P8O08&�x��;^f]��ĤJcw�\S`͇"��ўu'm�B�N`�yQ���&�Mg��W"�,>� > �/5_�l�.S�1M�x"�����. $��7SӶ?���t�RiDi�V��-�x�T�����kԎ�5���V�����H�6t�.J�bF��w�j�O�H�����>�8mnP6�N �J*tD�\�^8�Ll�� y��>+ḾM�t�^œe�G}^5��,�=)Ri$�ʻ!�}H���^r(ݿٚWl�lj�&�a�{� ��j+�9� %��1b�vP-� v��+(�`'���;��g��ф91���>��)2�`��jb�s6���/(;i �1[ڑg:��V�dF)7“�EP�4���F:��*�#��:�`Ӡޟ���wx��1��q���f�&*�哩��)N ��h��$����iW�Bڟg��{���%�ˇ���/�ME�$�"@c�O_�1��4 r�p�`UW�� �ץ7|�����t$��� �'���ζL�{R��$$S8u��T�nQU�x�"���-`b�|2ɠ���a�'}"}�2�:gG?SJ񜌬M�y��V)q�΁�%��v�Y�ꆏʮ%�uN꧹O���(@AϺ��&��6�M�i���(�LLq�5��j�&s�* Ca�o�^�C��V-��DXK�.D�B7GX��V����-������!��`��^5��:P�M)�Ϙ=��`��DG�`���Q�+�Y|��=Y�v��|�C�������I�8��}I����!��&<T �^�3h` ��-&��(k��)��~���y��A# B31J\ �,;Iu푞�`�����Ρ0W���A��+0ߓ�-�^;�h�p2p�8� :طi�ߛ�#�3�i���.{S�a A��-n��S��aqQ��6�5�_��x<�*W,��N�EQ���oƞ��B���ө T���/��n#�W���䬇�a�}Z�u�Gs?Q>yU�}�K�G{�����v'f���fU7Y$��V�ņ� |)fZkJm� 6����^�]L~el��YD$/*E��#Zq���>����y]!���1$�l��)~ч���R��#���vF'��-7o˂��ъ��0��ТDv�d���D隸�8V���� �4{e�0:�@��P�bz7�E�p,M�G&b�32Dc��ڵ�m��C_hV� 4)���QY!��x���0��iS�`X"�:[�Ƅ���h�� �^Y<�/�y~"�)N$]�%9¯� O�-�%�����Ыy�p�\z�����Th��˃�h{���x-Z2�}b0��6ד�=�O؂��c�� �B� �(�Z)�h&~��O��4�;�e�[����m(~�p����ݸlW ��VБ����w�Y!-���]�y�3� ^��Y�!�t��V�om�h�8!C���ho \�1�}�d##o��t�x��S�~=�ȼ7mt�P�;����yO������9� (�y�f�$+���ױ�Y�������R�Tt|3$j��<�o8q��"�����۝�oun�, �O�P�6��%M�.���Y p�d�6,��ĭ�u@�ku{D#�Yv��S���-ћ�Ub�<��} �2�F�����5�~Z��6p���P�t�G�M�gHT�Up��L? ygs��#���8%SX�J����S��!�z���L �P�}բ.U�R����YB����7Op^��h����p��\�g�-�}���5���~b�����G~�;�"�3D��Z� ��ɠ��}L��k�r�ե�c���~1�$}x�#��=v��:ka����rr�xh�;�Vy�Ta���&���{�q�3����} �*� =�lrs'��%)�[Ѹ����X�߉L��b���s�Q�0��ҵ:��G���5(�gR���u#�;D:S��|��n8ώ�M�D���+�L ����$����>��Yn�g&�H�t� ;s�����er���sU]R��MsR1% \�_g�>M77=-���0�2�3ݭR۝�ty�G�;#��kFg��mEU��B_6���\� ���7I=�$fa��m��H��kCz����V�Ӣp-<���jRҝ��U�יg�,�!���-�;!�]�du0�8Xh�o&s�a�>��S$I�(g�5-hnKC^�યKm��2�m���0��]�^Ϟ<��v���RdP��*�*Nfa,WҘ(= ? m;�x/p�m���a@��\�RfLU���1�+���^�Pq�����K�R�IE��pm�Z�. [�����1)䀬����.�-�#�Y%u{��L�7����!*#�ף�6M�.���������[|��E�C"�.��"�R�>e�Xo�����N�9��d�1 ��$��^���hA~���cڋ�@�aD��H�[���(],�?�d��jE`�@8�Ə�������ǻ���7�Vzd}�VS��h�fͥ�E�!���Z��-ؗ��3����Z�&z�u��Q�6s+�ϋ�� ~V �n��� �1Kb��H��y��}t���L V���,���np�x�?� ��d�iͣl3��o�N>@~q����@���Ha.�⇡� 5ճW�x�����y�K�� W����3)�q�;{"�viψ�Y#�2�󛜷Q ��Ե S�q�oHP�L��u�;J�f�[M�ۅ�~.ev��Q����-h�x� �B��ų똠�wx#�1w�%�x+�Lp �.�|���0�h N�.��s`X��$�㒏2\J�FM����?�o�V�p��k��%��a��M�o�@�B�rpN������I��2�\��%��I������2����Z��k�5 e��rgx#� y��`@n��/��ɋY��B|Vn�}��UA>��A#����(��:��y�驜�(x�7PSpVg�g +8��-,M��J�9y="��h@�Cow��L팯-d�?_�z���?��O �9��g-�H��w�N�i�t�ES�<���U���}��?�&�3!�S�_��|����A�!F�a!��У��j�2H��j�O(�w��U&�oB�W�Z�E�߾�? B'�7(���6v'5 N��fh56��0a-���fL5��V���������g���|�d��h�e�k�E�д�����!�� �r�彝g�8�.��b���gx��ɪ���yH���AtG�ؼ����>��`tg~(kL9/���͵8�( � ����K �m�0;AS����Y?�#��%�9�舁y9v�h�X&�7�Hk�!�E@��� s s�;�L��-7��=>�����}����-E���0)��L44����D�[�� ٍe��l-6�ܯ�wRټ�e� ���dШ�r A���C9��w��ͅ5�Ѣv-ʃ���oe�������M��TH\ޠ]٬a�( �]��M�ō�~ꕇ:�l�.����A^U�3d.�%��QE\�p.�6<��6�7�#H��'��:��z��Ӷ�)(#���K{�������Z�C�F>8�k.�i�7�E��'�.����z��>��W�ZA�ծ8el��C��X5D%��1�$_S�,��yA$f����-_��b������d�����w߼=?D����m�W�GӬ��D��P�\b���R&�� �u�]=�e��T��ty9r1F����l�X?�� �t g�R��A��ȷ� �a�i��hG��L��o��v+D}�(I�<7%Q-�Z��eB�n��.d�{c�k�l���'g(�a��xem�T&�^So=�#�n�U�bn�߮��P�S D�/Df�E��� ��B�f=U�KPp]�V�?�����*$ԭ5)l�Z�R۷}�?f��ެ� O��'ނ���Zco�*2F�E$�hG�ɶ\@��Œ�,w�R�Qv 4*F �1�M�[rj�7Ͼ����p�a[}����E��Kֽ%:�#>B�(��� �aGs/�j�|��Ss��AC��^�����(�H�_�97�0�b�Y'"A>*��+Gh�ܩ��޾}�f�t�8X��� R�k:U�r]�[�/}��G$ ^��1rW� �p�*���k�������7� >� _\J�n�*`��$�s�P3�#��B�aw�6��d7������ߩA�Qޱ��]��y�6�?�1�^M�/�+�7Z i���3���]Y�a*�N��3�޵m7s��%�9F}8 (��M��4O;q�x0:o��5�0�A��{ c������� �< M��:I &�>�¿�4��.軲w�(j�z!l�����[۟����~�yT��b�e��S$��� pch�W�T��G��xPqeS���,��}H��pp�1m���#�N �Dr0�l�b/�� �^ �y�q�X���KcU�%7U����s�����y3�!�3���ב��r}� 8@k7Moe�sW�R�oD�����^�����A�\T������:M�|��ZB���lp}���uA�q�g��~m��$����W j�7�$����M��� -C�__�'t p���n�m>�GG���z�{�%��*��b�%�n�:�;2]�:�\���;7��5�%�hWK��ܚj���䫏����L`�_]�H�œYD.�4�☻��J����Z�D|!/��X��Ý���>�W��$��(�E�Z 'yeේ�i����a��"��XH�o�Y�[�����p�T\<�nڣ#������Q.�؄��\�m�9kyޟ�P��9uK��yG8iu���Y�i,I9��䕭��Jت �",� ���f�� ���������ȶ��[���BM���Ư�m:큠��+��vAW��-Cؠ(�D;�!S�]\�Z� ̆�S��‚���9�1�E���!��$���f4A�:V=4rl�ϩ�2B�'֏ȇ�P݈)�:.�xpG�;�� ̴�ݍ }�F����E����FC���\;P�c�;��?B-/!�ky�������ʝE��BcS���n8k��e>����_��w�����謡6<����@.����i{3���w�<�+�f�kB/�������Io � j�Ȱju�@�"�>ڨ�2=F#�x���ӑ� j.�Z���; 2g�℻�w ������K���G@W�W'9����|��w=3�� 7�M�^��ԕ���jJ�e�y7�tԍ���-�$J����6�ǥ��ۯ��U�5�z�E3��]6W�z(��bn��aKDK��O���f� !~W�Gs,?�D��h��%9���H ��-K�� `�:��L�w�#��yl°��vZ{>���]>a�;��� _�t�%�7t!���=7�Eu�!E�v�l��nqF/3��r �''�[7����DKt�ۮR�k�O�c�|KrU����]iGt�]��$����h�{�6KD��.?9�bt����ܖfgY�H�y�ApA�*b�w�ő[�g�t�9��J\Jx Lkd֝z��������5|��D�5�Ƞ�z;��N޻u"x�#@3؜��ˁ�����F叚�$H0�� ------MultipartBoundary--z8J7UdiCQceqzVdIOKFzKDZAZLhRZIQmHWcpQXjrNf------