From 62fc7fbaf4043c6940d2b1a9617a1f2e65780349 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Bedna=C5=99=C3=ADk?= <jan.bednarik@gmail.com> Date: Wed, 9 Sep 2020 23:51:20 +0200 Subject: [PATCH] uniweb: Switch to Pirate template --- shared/image_formats.py | 28 + uniweb/models.py | 1 + uniweb/static/uniweb/assets/css/icons.css | 63 - .../uniweb/assets/css/pattern-scaffolding.css | 70 + uniweb/static/uniweb/assets/css/style.css | 1195 -- uniweb/static/uniweb/assets/css/styles.css | 1 + .../static/uniweb/assets/fonts/pirati-ui.eot | Bin 0 -> 13744 bytes .../static/uniweb/assets/fonts/pirati-ui.svg | 71 + .../static/uniweb/assets/fonts/pirati-ui.ttf | Bin 0 -> 13572 bytes .../static/uniweb/assets/fonts/pirati-ui.woff | Bin 0 -> 13648 bytes .../uniweb/assets/images/logo-round-white.svg | 1 + uniweb/static/uniweb/assets/images/logo.svg | 30 + uniweb/static/uniweb/assets/js/main.bundle.js | 1 + uniweb/static/uniweb/assets/js/vue.2.6.11.js | 11965 ++++++++++++++++ uniweb/static/uniweb/icons/icomoon.eot | Bin 3384 -> 0 bytes uniweb/static/uniweb/icons/icomoon.svg | 22 - uniweb/static/uniweb/icons/icomoon.ttf | Bin 3220 -> 0 bytes uniweb/static/uniweb/icons/icomoon.woff | Bin 3296 -> 0 bytes uniweb/templates/uniweb/base.html | 191 +- uniweb/templates/uniweb/snippet_sections.html | 44 +- .../uniweb/uniweb_flexible_page.html | 6 +- uniweb/templates/uniweb/uniweb_home_page.html | 6 +- 22 files changed, 12299 insertions(+), 1396 deletions(-) create mode 100644 shared/image_formats.py delete mode 100644 uniweb/static/uniweb/assets/css/icons.css create mode 100644 uniweb/static/uniweb/assets/css/pattern-scaffolding.css delete mode 100644 uniweb/static/uniweb/assets/css/style.css create mode 100644 uniweb/static/uniweb/assets/css/styles.css create mode 100644 uniweb/static/uniweb/assets/fonts/pirati-ui.eot create mode 100644 uniweb/static/uniweb/assets/fonts/pirati-ui.svg create mode 100644 uniweb/static/uniweb/assets/fonts/pirati-ui.ttf create mode 100644 uniweb/static/uniweb/assets/fonts/pirati-ui.woff create mode 100644 uniweb/static/uniweb/assets/images/logo-round-white.svg create mode 100644 uniweb/static/uniweb/assets/images/logo.svg create mode 100644 uniweb/static/uniweb/assets/js/main.bundle.js create mode 100644 uniweb/static/uniweb/assets/js/vue.2.6.11.js delete mode 100644 uniweb/static/uniweb/icons/icomoon.eot delete mode 100644 uniweb/static/uniweb/icons/icomoon.svg delete mode 100644 uniweb/static/uniweb/icons/icomoon.ttf delete mode 100644 uniweb/static/uniweb/icons/icomoon.woff diff --git a/shared/image_formats.py b/shared/image_formats.py new file mode 100644 index 00000000..67933c10 --- /dev/null +++ b/shared/image_formats.py @@ -0,0 +1,28 @@ +from wagtail.images.formats import Format, register_image_format + +register_image_format( + Format( + "tailwind_center_800", + "šablona: Uprostřed 800px", + "mx-auto my-6", + "max-800x800", + ) +) + +register_image_format( + Format( + "tailwind_left_400", + "šablona: Vlevo 400px", + "float-left mr-4 mb-6", + "max-400x400", + ) +) + +register_image_format( + Format( + "tailwind_right_400", + "šablona: Vpravo 400px", + "float-right ml-4 mb-6", + "max-400x400", + ) +) diff --git a/uniweb/models.py b/uniweb/models.py index 8266240f..ecb4cbb0 100644 --- a/uniweb/models.py +++ b/uniweb/models.py @@ -16,6 +16,7 @@ from wagtailmetadata.models import MetadataPageMixin from tuning import help RICH_TEXT_FEATURES = [ + "h2", "h3", "h4", "h5", diff --git a/uniweb/static/uniweb/assets/css/icons.css b/uniweb/static/uniweb/assets/css/icons.css deleted file mode 100644 index 7218ce4b..00000000 --- a/uniweb/static/uniweb/assets/css/icons.css +++ /dev/null @@ -1,63 +0,0 @@ -@font-face { - font-family: 'icomoon'; - src: url('../../icons/icomoon.eot?qfo5nx'); - src: url('../../icons/icomoon.eot?qfo5nx#iefix') format('embedded-opentype'), - url('../../icons/icomoon.ttf?qfo5nx') format('truetype'), - url('../../icons/icomoon.woff?qfo5nx') format('woff'), - url('../../icons/icomoon.svg?qfo5nx#icomoon') format('svg'); - font-weight: normal; - font-style: normal; - font-display: block; -} - -i { - /* use !important to prevent issues with browser extensions that change fonts */ - font-family: 'icomoon' !important; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - - /* Better Font Rendering =========== */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-heart:before { - content: "\f004"; -} -.icon-linkedin:before { - content: "\f08c"; -} -.icon-twitter:before { - content: "\f099"; -} -.icon-youtube:before { - content: "\f167"; -} -.icon-instagram:before { - content: "\f16d"; -} -.icon-flickr:before { - content: "\f16e"; -} -.icon-facebook-f:before { - content: "\f39e"; -} -.icon-check:before { - content: "\f00c"; -} -.icon-chevron-left:before { - content: "\f053"; -} -.icon-chevron-right:before { - content: "\f054"; -} -.icon-external-link:before { - content: "\f08e"; -} -.icon-calendar:before { - content: "\f133"; -} diff --git a/uniweb/static/uniweb/assets/css/pattern-scaffolding.css b/uniweb/static/uniweb/assets/css/pattern-scaffolding.css new file mode 100644 index 00000000..d56b035d --- /dev/null +++ b/uniweb/static/uniweb/assets/css/pattern-scaffolding.css @@ -0,0 +1,70 @@ +/** + * This stylesheet is for styles you want to include only when displaying demo + * styles for grids, animations, color swatches, etc. + * These styles will not be your production CSS. + */ +#sg-patterns { + -webkit-box-sizing: border-box !important; + box-sizing: border-box !important; + max-width: 100%; + padding: 0 0.5em; +} + +.demo-animate { + background: #ddd; + padding: 1em; + margin-bottom: 1em; + text-align: center; + border-radius: 8px; + cursor: pointer; +} + +.sg-colors { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + list-style: none !important; + padding: 0 !important; + margin: 0 !important; +} +.sg-colors li { + -webkit-box-flex: 1; + -ms-flex: auto; + flex: auto; + padding: 0.3em; + margin: 0 0.5em 0.5em 0; + min-width: 5em; + max-width: 14em; + border: 1px solid #ddd; + border-radius: 0; +} + +.sg-swatch { + display: block; + height: 8rem; + margin-bottom: 0.5rem; + border-radius: 0; +} + +.sg-label { + font-size: 1rem; +} + +.sg-pattern-example { + font-family: "Roboto", "Helvetica", "Arial", sans-serif !important; +} + +.sg-pattern-head .sg-pattern-title a { + font-family: "Roboto", "Helvetica", "Arial", sans-serif !important; + font-weight: bold !important; + font-size: 1.2rem !important; + color: #202020 !important; +} + +.sg-pattern-category-title a { + font-family: "Bebas Neue", "Helvetica", "Arial", sans-serif !important; + font-weight: 400 !important; + font-size: 3.5rem !important; +} diff --git a/uniweb/static/uniweb/assets/css/style.css b/uniweb/static/uniweb/assets/css/style.css deleted file mode 100644 index bf3d7816..00000000 --- a/uniweb/static/uniweb/assets/css/style.css +++ /dev/null @@ -1,1195 +0,0 @@ -/* -* -* Custom styling for Piráti donate website -* Author: Daniel Hlavacek -* Author's website: https://danielhlavacek.cz/ -* -*/ - -/* GENERAL */ - -body { - font-size: 16px; - /*padding-top: 79px;*/ - font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; -} - -a:hover { - color: #757575; -} - -/* HEADINGS */ - -h1, h1.lead { - font-size: 3.6rem; -} - -h2, h2.lead { - font-size: 2.8rem; -} - -h3, h3.lead { - font-size: 2.1rem; -} - -h4, h4.lead { - font-size: 1.65rem; -} - -h5, h5.lead { - font-size: 1.3rem; -} - -h6, h6.lead { - font-size: 1rem; -} - -@media screen and (max-width: 500px) { - h1, h1.lead { - font-size: 3rem; - } - h2, h2.lead { - font-size: 2.4rem; - } - h3, h3.lead { - font-size: 1.85rem; - } - h4, h4.lead { - font-size: 1.4rem; - } - h5, h5.lead { - font-size: 1.2rem; - } - h6, h6.lead { - font-size: 1rem; - } -} - -h1.lead, h2.lead, h3.lead, h4.lead, h5.lead, h6.lead { - font-family: "Bebas Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - line-height: 1; - text-transform: uppercase; -} - - - -h1.homepage-heading { - font-size: 6rem; -} -h1.heading { - font-size: 4rem; -} -h2.page-subheading { - font-size: 4rem; -} -h3.page-subheading { - font-size: 3.8rem; -} - -@media screen and (max-width: 1200px) { - h1.homepage-heading { - font-size: 5.4rem; - } - h1.heading { - font-size: 4rem; - } - h2.page-subheading { - font-size: 4rem; - } - h3.page-subheading { - font-size: 3.6rem; - } -} - -@media screen and (max-width: 991px) { - h1.homepage-heading { - font-size: 4.4rem; - } - h1.heading { - font-size: 3.7rem; - } - h2.page-subheading { - font-size: 3.7rem; - } - h3.page-subheading { - font-size: 3.2rem; - } -} - -@media screen and (max-width: 440px) { - h1.homepage-heading { - font-size: 3.8rem; - } - h1.heading { - font-size: 3.4rem; - } - h2.page-subheading { - font-size: 3.4rem; - } - h3.page-subheading { - font-size: 3rem; - } -} - -@media screen and (max-width: 370px) { - h1.homepage-heading { - font-size: 3.6rem; - } - h2.page-subheading { - font-size: 3rem; - } - h3.page-subheading { - font-size: 2.6rem; - } -} - -@media screen and (max-width: 330px) { - h1.homepage-heading { - font-size: 3rem; - } - h2.page-subheading { - font-size: 2.8rem; - } - h3.page-subheading { - font-size: 2.3rem; - } -} - - -/* BUTTONS */ - -.btn-dark { - background: #000000; -} - -.btn-light { - background: #CCCCCC; -} - -.btn-dark:hover, .btn-light:hover { - background: #222222; - color: #FFFFFF; -} - -.btn { - border-radius: 0; - padding: 0.7rem 1.6rem; -} - -.btn { - font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; -} - -.btn-lg { - border-radius: 0; - padding: 0.7rem 3rem; -} - -/* TOOLS AND FIXES */ - -.lazyload, .lazyloading { - opacity: 0; -} - -.lazyloaded { - opacity: 1; - transition: opacity .5s; -} - -/* SECTIONS */ - -.section--primary { - background: #ffffff; - color: #000000; -} - -.section--alternate { - background: #f7f7f7; - color: #000000; -} - -.section--black { - background: #000000; - color: #ffffff; -} - -/* SECTION SIZING */ - -section { - padding: 4rem 0rem; -} - -.section--lead { - padding: 6rem 0rem; -} - -.section--no-bottom-padding { - padding-bottom: 0rem; -} - -.section--form { - padding-top: 2rem; -} - -@media screen and (max-width: 991px) { - section { - padding: 3.5rem 0rem; - } - .section--lead { - padding: 4rem 0rem; - } -} - -@media screen and (max-width: 768px) { - section { - padding: 3rem 0rem; - } - .section--lead { - padding: 3.5rem 0rem; - } -} - -@media screen and (max-width: 575px) { - section { - padding: 2.5rem 0rem; - } - .section--lead { - padding: 3rem 0rem; - } -} - -/* HEADER */ - -.navbar { - background: #212121; -} - -@media screen and (max-width: 991.99px) { - .navbar { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030; - } - - main { - margin-top: 90px; - } -} - -.navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(255, 255, 255)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); -} - -.navbar-dark .navbar-nav .nav-link { - color: rgba(255,255,255); -} - -.navbar-dark .navbar-toggler { - color: #ffffff; - border: none; - margin-right: -1rem; -} - -.nav-link { - display: block; - padding: .5rem 1rem; - text-transform: uppercase; - font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-size: 1.2rem; -} - -.navbar-brand { - font-family: "Bebas Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-size: 2.2rem; - text-transform: uppercase; -} - -@media screen and (max-width: 420px) { - .navbar-brand { - font-size: 2rem; - } -} - -@media screen and (max-width: 390px) { - .navbar-brand { - font-size: 1.8rem; - } -} - -@media screen and (max-width: 350px) { - .navbar-brand { - font-size: 1.6rem; - } -} - -.brand-wrapper { - height: 90px; - display: flex; - align-items: center; - justify-content: flex-start; -} - -.brand-wrapper img { - width: 160px; - -} - -@media screen and (max-width: 575px) { - .brand-wrapper { - height: 74px; - } - .brand-wrapper img { - width: 150px; - } -} - -@media screen and (min-width: 1200px) { - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.8rem; - padding-left: 0.8rem; - } -} - -@media screen and (min-width: 576px) and (max-width: 1199.99px) { - .navbar .navbar-collapse .navbar-nav { - margin-top: 1rem; - margin-bottom: 1rem; - } -} - -.header__socials { - display: flex; - margin-left: -0.5rem; -} - -.header__socials a { - padding: 0.5rem; -} - -.header__socials a i { - font-size: 1rem; - color: white; -} - -.header__socials.header__socials--mobile { - margin-left: -0.7rem; - padding-top: 0.4rem; -} - -.header__socials.header__socials--mobile a { - padding: 0.7rem; -} - -.header__socials.header__socials--mobile a i { - font-size: 1.3rem; - color: rgba(255,255,255,.5); -} - -.header_link.header_link--desktop { - color: white; -} - -.header_link.header_link--mobile { - color: rgba(255,255,255,.5); -} - - -/*--/ Hamburger Navbar /--*/ - -.navbar-toggler { - position: relative; -} - -.navbar-toggler:focus, -.navbar-toggler:active { - outline: 0; -} - -.navbar-toggler span { - display: block; - background-color: #ffffff; - height: 2px; - width: 30px; - margin-top: 8px; - margin-bottom: 8px; - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - left: 0; - opacity: 1; -} - -.navbar-toggler span:nth-child(1), -.navbar-toggler span:nth-child(3) { - transition: -webkit-transform .35s ease-in-out; - transition: transform .35s ease-in-out; - transition: transform .35s ease-in-out, -webkit-transform .35s ease-in-out; -} - -.navbar-toggler:not(.collapsed) span:nth-child(1) { - position: absolute; - left: 12px; - top: 10px; - -webkit-transform: rotate(135deg); - transform: rotate(135deg); - opacity: 0.9; -} - -.navbar-toggler:not(.collapsed) span:nth-child(2) { - height: 12px; - visibility: hidden; - background-color: transparent; -} - -.navbar-toggler:not(.collapsed) span:nth-child(3) { - position: absolute; - left: 12px; - top: 10px; - -webkit-transform: rotate(-135deg); - transform: rotate(-135deg); - opacity: 0.9; -} - - -/* FOOTER */ - -.footer__top { - background: #212121; -} - -.footer__bottom { - background: #000000; -} - -footer { - color: #8a8a8a; -} - -footer a { - color: #8a8a8a; -} - -footer a:hover { - color: #ffffff; - text-decoration: none; -} - -footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 { - color: #ffffff; -} - -.footer__top { - padding: 4rem 0rem; -} - -@media screen and (max-width: 991px) { - .footer__top { - padding: 3.5rem 0rem; - } -} - -@media screen and (max-width: 768px) { - .footer__top { - padding: 3rem 0rem; - } -} - -@media screen and (max-width: 575px) { - .footer__top { - padding: 2.5rem 0rem; - } -} - -.footer__bottom { - padding: 2rem 0rem; -} - -.footer__bottom a { - border-bottom: 1px dotted; -} - -.footer__bottom a:hover { - border-bottom: none; - text-decoration: none; - color: #8a8a8a; -} - -.footer__list-heading { - text-transform: uppercase; - margin-bottom: 1.6rem; -} - -.footer__menu { - padding-left: 0; - list-style: none; -} - -.footer__menu li { - padding: 0.15rem 0; -} - -.footer__logo img { - width: 180px; -} - -/* UVOD */ - -.uvod__image-wrapper { - max-width: 180px; - display: inline-block; -} - -.uvod__button { - margin-right: 2rem; -} - - - -/* PROJEKTY */ - -.project { - box-shadow: 0 .25rem 1.875rem rgba(42, 53, 79, .28); - border-radius: 0; - border: 0; - height: 100%; - color: black; - transition: all 0.5s ease-in-out; -} - - -.project:hover { - text-decoration: none; - box-shadow: 0 .25rem 1.875rem rgba(42, 53, 79, 0.73); - color: black; -} - -.project:hover .card-img-top { - opacity: 0.9; -} - -.project .card-footer { - border-radius: 0; - border: 0; -} - -.card-footer .text-muted { - color: #707070 !important; -} - -.project .card-img, .project .card-img-top { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.project .card-body h5 { - font-weight: bold; -} - -.project .card-body p:last-child { - margin-bottom: 0; -} - -.project .card-body p { - color: #797676; -} - -.project .card-footer p { - margin-bottom: 0; -} - -.project .progress-bar { - background-color: #04a548; -} - -.project .progress { - margin-bottom: 0.8rem; -} - -.project__flags { - position: absolute; - top: 0; - margin-bottom: 0; - z-index: 1; - left: -0.25rem; - display: flex; - flex-direction: column; - align-items: flex-start; - list-style: none; - padding-left: 0; -} - -.project__flag { - margin-top: .5rem; - color: #fff; - background: #2fb5d2; - padding: .25rem .6rem; - font-weight: bold; -} - -.project__flag.almost { - background: #04a548; -} - -.project__flag.new { - background: #04a548; -} - -.project-images { - margin-right: -7.5px; - margin-left: -7.5px; -} - -.project-images > div{ - padding-right: 7.5px; - padding-left: 7.5px; - margin-bottom: 15px; -} - -.project-donate-form .progress-bar { - background-color: #04a548; -} - - -/* KRAJE */ - -.region { - box-shadow: 0 .25rem 1.875rem rgba(42, 53, 79, .28); - border-radius: 0; - border: 0; - height: 100%; - color: black; - transition: all 0.5s ease-in-out; -} - - -.region:hover { - text-decoration: none; - box-shadow: 0 .25rem 1.875rem rgba(42, 53, 79, 0.73); - color: black; -} - -.region:hover .card-img-top { - opacity: 0.9; -} - -.region .card-img, .region .card-img-top { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.region .card-body h5 { - font-weight: bold; -} - -.region .card-body p:last-child { - margin-bottom: 0; -} - -.region .card-body p { - color: #797676; -} - - -/* DONATE FORM */ -.donate-form { - display: flex; - box-shadow: 0 .25rem 1.875rem rgba(42, 53, 79, .28); -} - -.donate-form__left { - background: #090A0B; - color: white; - padding: 1.8rem; - flex: 0 0 auto; - justify-content: space-between; - display: flex; - flex-direction: column; -} - -.donate-form__icon { - max-width: 7rem; - margin-bottom: 4rem; -} - -.donate-form__right { - width: 100%; - padding: 1.8rem; -} - -.custom-control-input:checked ~ .custom-control-label::before { - color: #fff; - border-color: #d02d40; - background-color: #d02d40; -} - -.custom-control-input:not(:disabled):active ~ .custom-control-label::before { - color: #fff; - background-color: #b3ffd1; - border-color: #b3ffd1; -} - -.custom-control-input:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 .2rem rgba(0, 255, 147, 0.25); -} - -.custom-control-label { - line-height: 1.2; - padding-top: .7rem; -} - -.custom-control-label::after { - top: .5rem; - left: -2.5rem; - width: 2rem; - height: 2rem; -} - -.custom-control-label::before { - top: .5rem; - left: -2.5rem; - width: 2rem; - height: 2rem; -} - -.custom-control-input { - width: 2rem; - height: 2.5rem; -} - -.custom-control { - min-height: 2.5rem; - padding-left: 2.5rem; -} - -.input-group-lg > .form-control, -.input-group-lg > .input-group-append > .input-group-text { - border-radius: 0; -} - -.form-control-lg { - border-radius: 0; -} - -.form-control:focus { - border-color: #28a745; - box-shadow: 0 0 0 .2rem rgba(43, 174, 70, 0.25); -} - -@media screen and (min-width: 1200px) { - .donate-form__left { - width: 16rem; - } -} - -@media screen and (max-width: 991px) { - .donate-form { - flex-direction: column; - } - .donate-form__left { - flex-direction: row; - align-items: center; - } - .donate-form__icon { - max-width: 2.5rem; - margin-bottom: 0rem; - order: 1; - margin-left: 1.8rem; - } - .donate-form__left-content { - order: 0; - } -} - -.donate-form .custom-amount { - max-width: 15rem; -} - - -/* REGION DONATE FORM */ - -.region-donate-form { - display: flex; - box-shadow: 0 .25rem 1.875rem rgba(42, 53, 79, .28); - flex-direction: column; -} - -.region-donate-form__left { - background: #090A0B; - color: white; - padding: 1.8rem; - flex: 0 0 auto; - justify-content: space-between; - display: flex; - flex-direction: row; - align-items: center; -} - -.region-donate-form__icon { - max-width: 2.5rem; - margin-bottom: 0rem; - order: 1; - margin-left: 1.8rem; -} - -.region-donate-form__right { - width: 100%; - padding: 1.8rem; -} - - -/* PROJECT DONATE FORM */ - -.project-donate-form { - display: flex; - box-shadow: 0 .25rem 1.875rem rgba(42, 53, 79, .28); - flex-direction: column; -} - -.project-donate-form__left { - background: #090A0B; - color: white; - padding: 1.8rem; - flex: 0 0 auto; - justify-content: space-between; - display: flex; - flex-direction: row; - align-items: center; -} - -.project-donate-form__icon { - max-width: 2.5rem; - margin-bottom: 0rem; - order: 1; - margin-left: 1.8rem; -} - -.project-donate-form__right { - width: 100%; - padding: 1.8rem; -} - -/* FOOTER */ - -.socials { - display: flex; - margin-left: -0.8rem; -} - -.socials a { - padding: 0.8rem; -} - -.socials a:last-child { - margin-right: 0; -} - -.socials a i { - font-size: 1.4rem; - color: white; -} - - - -/* PAGINATION */ -.page-link { - padding: .8rem 1.1rem; - color: #333; - background-color: #f3f3f3; - border: 1px solid #f3f3f3; - font-weight: bold; -} - -.page-link:hover { - color: #333; - background-color: #e9ecef; - border-color: #e9ecef; -} - -.page-link:focus { - box-shadow: 0 0 0 .2rem rgba(168, 168, 168, 0.25); -} - -.page-item { - margin-right: 0.5rem; -} - -.page-item:last-child { - margin-right: 0; -} - -.page-item.active .page-link { - color: #fff; - background-color: #333; - border-color: #333; -} - -.page-item:first-child .page-link { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.page-item:last-child .page-link { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - - - -/* PROJECT */ -.project__header { - padding: 4rem 0 2rem 0; -} - -.project__date { - margin-bottom: 0; - color: #707070; -} - -.project__badges .badge { - font-size: 1rem; - background: white; - border-radius: 0; - padding: 0.8rem 1.3rem; - font-weight: bold; -} - -.badge.almost { - background: #04a548; - color: white; -} - -.badge.new { - background: #e1242a; - color: white; -} - - -/* SHARING BOX */ -.article__sharing-box { - box-shadow: 0 .25rem 1.875rem rgba(42, 53, 79, .28); - border: none; - border-radius: 0; -} - -.article__sharing-box h3 { - margin-bottom: 0; -} - -.article__sharing-box .icon i { - font-size: 2.4rem; -} - -.article__sharing-box .icon { - margin-bottom: 2.8rem; -} - -.article__sharing-box .card-body { - padding: 2rem; - margin-bottom: 1rem; -} - -.btn-facebook { - color: #fff; - background-color: #3b5998; - border-color: #3b5998; -} - -.btn-twitter { - color: #fff; - background-color: #55acee; - border-color: #55acee; -} - -.btn-linkedin { - color: #fff; - background-color: #007bb5; - border-color: #007bb5; -} - -.btn-facebook:hover { - color: #fff; - background-color: #253860; - border-color: #253860; -} - -.btn-twitter:hover { - color: #fff; - background-color: #448cc4; - border-color: #448cc4; -} - -.btn-linkedin:hover { - color: #fff; - background-color: #006291; - border-color: #006291; -} - -.sharing-buttons { - display: flex; - justify-content: space-between; -} - -.sharing-buttons a { - flex: 1; - margin-right: 8px; - padding: .375rem .75rem; -} - -.sharing-buttons a:last-child { - margin-right: 0; -} - -.sharing-box__content { - margin-bottom: 0.6rem; -} - -@media screen and (max-width: 991px) { - .article__sharing-box .card-body { - padding: 1.8rem; - margin-bottom: 0; - } - .article__sharing-box .image { - display: none; - } - - .sharing-box__content { - display: flex; - align-items: center; - margin-bottom: 1rem; - } - - .article__sharing-box .icon { - margin-bottom: 0; - margin-right: 1.2rem; - } -} - - -/* REGION */ -.region__header { - padding: 4rem 0 2rem 0; -} - -.other-regions a { - box-shadow: 0 .25rem 1.875rem rgba(42, 53, 79, .28); - margin-bottom: 1rem; - color: black; - padding: 0.8rem 1rem; - display: block; - font-weight: bold; -} - -/* ARTICLE CONTENT */ -article img { - max-width: 100%; - height: auto; - margin-top: 1rem; - margin-bottom: 3rem; -} - -/* REGION MAP */ - -.region-map { - overflow: hidden; -} - -.region-map svg { - position: relative; - top: -0.734375px; -} - -.region-map path { - stroke-linejoin: round; - cursor: pointer; - fill: #333333; - stroke: #666666; -} - -.region-map a:hover path { - fill: #000000; -} - -.region-list { - padding: 0; -} - -.region-list li { - list-style-type: none; -} - -.region-list a { - box-shadow: 0 .25rem 1.875rem rgba(42, 53, 79, .28); - margin-bottom: 1rem; - color: black; - padding: 0.6rem 1rem; - display: block; - font-weight: bold; -} - -/* FORM TWEAKS */ - -input::-webkit-outer-spin-button, -input::-webkit-inner-spin-button { - -webkit-appearance: none; - margin: 0; -} - -input[type=number] { - -moz-appearance: textfield; -} - -/* VARIOUS */ - -img.full-width { - width: 100%; - height: auto; -} - -.btn-danger { - background-color: #d02d40; -} - -.btn-wide { - width: 250px; -} - -.richtext i { - font-family: inherit !important; - font-style: italic; - -webkit-font-smoothing: inherit; - -moz-osx-font-smoothing: inherit; - line-height: inherit; - font-weight: inherit; - font-variant: inherit; - text-transform: inherit; -} - -.richtext blockquote { - font-style: italic; - padding: 0 1rem 0 1rem; - font-size: 115%; - border-left: 2px solid #BBBBBB; - color: #666666; -} - -.richtext-image.left { - float: left; - margin: 0 1.5rem 1rem 0; -} - -.richtext-image.right { - float: right; - margin: 0 0 1rem 1.5rem; -} - -.richtext ol, .richtext ul { - padding-left: 0; - margin-left: 0; -} - -.richtext ol li, .richtext ul li { - position: relative; - left: 2.5rem; - padding-right: 2.5rem; -} diff --git a/uniweb/static/uniweb/assets/css/styles.css b/uniweb/static/uniweb/assets/css/styles.css new file mode 100644 index 00000000..48d77c39 --- /dev/null +++ b/uniweb/static/uniweb/assets/css/styles.css @@ -0,0 +1 @@ +@import url(https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Condensed:wght@300;400;700&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&display=swap);@font-face{font-family:pirati-ui;src:url(../fonts/pirati-ui.eot?d982e8d9e6f59008d41d375111aea007);src:url(../fonts/pirati-ui.eot?d982e8d9e6f59008d41d375111aea007#iefix) format('embedded-opentype'),url(../fonts/pirati-ui.ttf?d982e8d9e6f59008d41d375111aea007) format('truetype'),url(../fonts/pirati-ui.woff?d982e8d9e6f59008d41d375111aea007) format('woff'),url(../fonts/pirati-ui.svg?d982e8d9e6f59008d41d375111aea007#pirati-ui) format('svg');font-weight:400;font-style:normal;font-display:block}[class*=" ico--"],[class^=ico--]{font-family:pirati-ui!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ico--strategy:before{content:"\e932"}.ico--pig:before{content:"\e928"}.ico--thermometer:before{content:"\e90a"}.ico--pirati:before{content:"\e90d"}.ico--stackshare:before{content:"\e90f"}.ico--open-source:before{content:"\e90e"}.ico--search:before{content:"\e913"}.ico--cross:before{content:"\e937"}.ico--checkbox-checked:before{content:"\e938"}.ico--quill:before{content:"\e939"}.ico--feather:before{content:"\e939"}.ico--write:before{content:"\e939"}.ico--edit:before{content:"\e939"}.ico--sphere:before{content:"\e93a"}.ico--globe:before{content:"\e93a"}.ico--internet:before{content:"\e93a"}.ico--wikipedia:before{content:"\e93b"}.ico--brand:before{content:"\e93b"}.ico--youtube:before{content:"\e936"}.ico--users:before{content:"\e934"}.ico--group:before{content:"\e934"}.ico--team:before{content:"\e934"}.ico--members:before{content:"\e934"}.ico--community:before{content:"\e934"}.ico--collaborate:before{content:"\e934"}.ico--book:before{content:"\e935"}.ico--read:before{content:"\e935"}.ico--reading:before{content:"\e935"}.ico--bubbles:before{content:"\e930"}.ico--map:before{content:"\e914"}.ico--compass:before{content:"\e915"}.ico--folder-open:before{content:"\e916"}.ico--folder:before{content:"\e917"}.ico--drawer:before{content:"\e918"}.ico--stop:before{content:"\e919"}.ico--github:before{content:"\e91a"}.ico--clock:before{content:"\e91b"}.ico--calendar:before{content:"\e91c"}.ico--flickr:before{content:"\e91d"}.ico--instagram:before{content:"\e91e"}.ico--twitter:before{content:"\e91f"}.ico--newspaper:before{content:"\e920"}.ico--cart:before{content:"\e921"}.ico--home:before{content:"\e922"}.ico--link:before{content:"\e912"}.ico--power:before{content:"\e90c"}.ico--location:before{content:"\e906"}.ico--phone:before{content:"\e907"}.ico--linkedin:before{content:"\e903"}.ico--github1:before{content:"\e904"}.ico--gplus:before{content:"\e900"}.ico--twitter1:before{content:"\e901"}.ico--facebook:before{content:"\e902"}.ico--menu:before{content:"\e933"}.ico--chevron-right:before{content:"\e923"}.ico--chevron-left:before{content:"\e924"}.ico--chevron-down:before{content:"\e925"}.ico--chevron-up:before{content:"\e926"}.ico--zoom_out_map:before{content:"\e927"}.ico--arrow-down:before{content:"\e911"}.ico--link1:before{content:"\e910"}.ico--city:before{content:"\e908"}.ico--beer:before{content:"\e909"}.ico--edit-pencil:before{content:"\e929"}.ico--at:before{content:"\e905"}.ico--tasks:before{content:"\e93c"}.ico--calculator:before{content:"\e931"}.ico--bank:before{content:"\e92a"}.ico--facebook-official:before{content:"\e92b"}.ico--close:before{content:"\e92c"}.ico--anchor:before{content:"\e92d"}.ico--feed:before{content:"\e92e"}.ico--paw:before{content:"\e90b"}.ico--envelope:before{content:"\e92f"}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none;padding:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}fieldset{margin:0;padding:0}ol,ul{list-style:none;margin:0;padding:0}html{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";line-height:1.5}*,::after,::before{box-sizing:border-box;border-width:0;border-style:solid;border-color:currentColor}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#a0aec0}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#a0aec0}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#a0aec0}input::placeholder,textarea::placeholder{color:#a0aec0}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}.container{width:100%;margin-right:auto;margin-left:auto;padding-right:1rem;padding-left:1rem}@media (min-width:576px){.container{max-width:576px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:992px){.container{max-width:992px}}@media (min-width:1200px){.container{max-width:1200px;padding-right:2rem;padding-left:2rem}}@media (min-width:1366px){.container{max-width:1366px}}:root{--color-transparent:transparent;--color-black:#000000;--color-white:#ffffff;--color-grey-25:#fafafa;--color-grey-50:#f7f7f7;--color-grey-100:#f3f3f3;--color-grey-125:#f0f0f0;--color-grey-200:#adadad;--color-grey-300:#4c4c4c;--color-grey-400:#343434;--color-grey-500:#303132;--color-grey-600:#262626;--color-grey-700:#202020;--color-grey-800:#1f1f1f;--color-green-100:#d6e8b3;--color-green-200:#92c6ab;--color-green-300:rgb(123, 186, 154);--color-red-600:#d60d53;--color-brands-facebook:#067ceb;--color-brands-twitter:#00c9ff;--color-brands-gmail:#ec230e;--color-brands-linkedin:#0066a9;--color-blue-100:#abcdef;--color-blue-200:#76b4cf;--color-blue-300:#027da8;--color-cyan-100:#a7d4d1;--color-cyan-200:#57b3bd;--color-cyan-300:#3e8793;--color-cyan-400:#497280;--color-cyan-500:#004958;--color-orange-100:#f2d29f;--color-orange-200:#f1ae7b;--color-orange-300:#ed9654;--color-violet-100:#edc8bd;--color-violet-200:#d28c94;--color-violet-300:#8d415f;--color-violet-400:#840048;--color-violet-500:#670047;--sm:576px;--md:768px;--lg:992px;--xl:1200px;--2xl:1366px;--font-alt:Bebas Neue,Helvetica,Arial,sans-serif;--font-body:Roboto,Helvetica,Arial,sans-serif;--font-condensed:Roboto Condensed,Helvetica,Arial,sans-serif;--text-2xs:.65rem;--text-xs:.75rem;--text-sm:.875rem;--text-base:1rem;--text-lg:1.125rem;--text-xl:1.3rem;--text-2xl:1.6rem;--text-3xl:1.875rem;--text-4xl:2.45rem;--text-5xl:3rem;--text-6xl:4rem;--text-7xl:5.3rem;--text-8xl:6.5rem;--text-9xl:7.5rem;--font-light:300;--font-normal:400;--font-medium:500;--font-bold:700;--leading-3:.75rem;--leading-4:1rem;--leading-5:1.25rem;--leading-6:1.5rem;--leading-7:1.75rem;--leading-8:2rem;--leading-9:2.25rem;--leading-10:2.5rem;--leading-none:1;--leading-tight:1.25;--leading-snug:1.375;--leading-normal:1.5;--leading-relaxed:1.625;--leading-loose:2;--leading-negative:0.9;--tracking-tighter:-0.05em;--tracking-tight:-0.025em;--tracking-normal:0;--tracking-wide:0.025em;--tracking-wider:0.05em;--tracking-widest:0.1em;--bg-auto:auto;--bg-cover:cover;--bg-contain:contain;--border-0:0;--border-2:2px;--border-4:4px;--border-8:8px;--border:1px;--rounded-none:0;--rounded-sm:0.125rem;--rounded:0.25rem;--rounded-md:0.375rem;--rounded-lg:0.5rem;--rounded-full:9999px;--w-0:0;--w-1:0.25rem;--w-2:0.5rem;--w-3:0.75rem;--w-4:1rem;--w-5:1.25rem;--w-6:1.5rem;--w-8:2rem;--w-10:2.5rem;--w-12:3rem;--w-16:4rem;--w-20:5rem;--w-24:6rem;--w-28:7rem;--w-32:8rem;--w-36:9rem;--w-40:10rem;--w-44:11rem;--w-48:12rem;--w-52:13rem;--w-56:14rem;--w-64:16rem;--w-80:20rem;--w-auto:auto;--w-px:1px;--w-0-5:0.125rem;--w-1-2:50%;--w-1-3:33.333333%;--w-2-3:66.666667%;--w-1-4:25%;--w-2-4:50%;--w-3-4:75%;--w-1-5:20%;--w-2-5:40%;--w-3-5:60%;--w-4-5:80%;--w-1-6:16.666667%;--w-2-6:33.333333%;--w-3-6:50%;--w-4-6:66.666667%;--w-5-6:83.333333%;--w-1-12:8.333333%;--w-2-12:16.666667%;--w-3-12:25%;--w-4-12:33.333333%;--w-5-12:41.666667%;--w-6-12:50%;--w-7-12:58.333333%;--w-8-12:66.666667%;--w-9-12:75%;--w-10-12:83.333333%;--w-11-12:91.666667%;--w-full:100%;--w-screen:100vw;--h-0:0;--h-1:0.25rem;--h-2:0.5rem;--h-3:0.75rem;--h-4:1rem;--h-5:1.25rem;--h-6:1.5rem;--h-8:2rem;--h-10:2.5rem;--h-12:3rem;--h-16:4rem;--h-20:5rem;--h-24:6rem;--h-28:7rem;--h-32:8rem;--h-36:9rem;--h-40:10rem;--h-44:11rem;--h-48:12rem;--h-52:13rem;--h-56:14rem;--h-64:16rem;--h-80:20rem;--h-auto:auto;--h-px:1px;--h-0-5:0.125rem;--h-full:100%;--h-screen:100vh;--min-w-0:0;--min-w-full:100%;--min-h-0:0;--min-h-full:100%;--min-h-screen:100vh;--max-w-none:none;--max-w-xs:20rem;--max-w-sm:24rem;--max-w-md:28rem;--max-w-lg:32rem;--max-w-xl:36rem;--max-w-2xl:42rem;--max-w-3xl:48rem;--max-w-4xl:56rem;--max-w-5xl:64rem;--max-w-6xl:72rem;--max-w-full:100%;--max-w-screen-sm:576px;--max-w-screen-md:768px;--max-w-screen-lg:992px;--max-w-screen-xl:1200px;--max-w-screen-2xl:1366px;--max-w-xxs:16rem;--max-h-full:100%;--max-h-screen:100vh;--p-0:0;--p-1:0.25rem;--p-2:0.5rem;--p-3:0.75rem;--p-4:1rem;--p-5:1.25rem;--p-6:1.5rem;--p-8:2rem;--p-10:2.5rem;--p-12:3rem;--p-16:4rem;--p-20:5rem;--p-24:6rem;--p-28:7rem;--p-32:8rem;--p-36:9rem;--p-40:10rem;--p-44:11rem;--p-48:12rem;--p-52:13rem;--p-56:14rem;--p-64:16rem;--p-80:20rem;--p-px:1px;--p-0-5:0.125rem;--m-0:0;--m-1:0.25rem;--m-2:0.5rem;--m-3:0.75rem;--m-4:1rem;--m-5:1.25rem;--m-6:1.5rem;--m-8:2rem;--m-10:2.5rem;--m-12:3rem;--m-16:4rem;--m-20:5rem;--m-24:6rem;--m-28:7rem;--m-32:8rem;--m-36:9rem;--m-40:10rem;--m-44:11rem;--m-48:12rem;--m-52:13rem;--m-56:14rem;--m-64:16rem;--m-80:20rem;--m-auto:auto;--m-px:1px;--m-0-5:0.125rem;--m--1:-0.25rem;--m--2:-0.5rem;--m--3:-0.75rem;--m--4:-1rem;--m--5:-1.25rem;--m--6:-1.5rem;--m--8:-2rem;--m--10:-2.5rem;--m--12:-3rem;--m--16:-4rem;--m--20:-5rem;--m--24:-6rem;--m--28:-7rem;--m--32:-8rem;--m--36:-9rem;--m--40:-10rem;--m--44:-11rem;--m--48:-12rem;--m--52:-13rem;--m--56:-14rem;--m--64:-16rem;--m--80:-20rem;--m--px:-1px;--m--0-5:-0.125rem;--shadows-xs:0 0 0 1px rgba(0, 0, 0, 0.05);--shadows-sm:0 1px 2px 0 rgba(0, 0, 0, 0.05);--shadows:0 1px 3px 0 rgba(0, 0, 0, 0.1),0 1px 2px 0 rgba(0, 0, 0, 0.06);--shadows-md:0 4px 6px -1px rgba(0, 0, 0, 0.1),0 2px 4px -1px rgba(0, 0, 0, 0.06);--shadows-lg:0 10px 15px -3px rgba(0, 0, 0, 0.1),0 4px 6px -2px rgba(0, 0, 0, 0.05);--shadows-xl:0 20px 25px -5px rgba(0, 0, 0, 0.1),0 10px 10px -5px rgba(0, 0, 0, 0.04);--shadows-2xl:0 25px 50px -12px rgba(0, 0, 0, 0.25);--shadows-inner:inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);--shadows-outline:0 0 0 3px rgba(66, 153, 225, 0.5);--shadows-none:none;--z-0:0;--z-10:10;--z-20:20;--z-30:30;--z-40:40;--z-50:50;--z-auto:auto;--opacity-0:0;--opacity-25:0.25;--opacity-50:0.5;--opacity-75:0.75;--opacity-85:0.85;--opacity-100:1}.btn{display:inline-block;text-align:center;font-weight:400;max-width:20rem;text-decoration:none}.btn:hover{text-decoration:none}.btn__body{display:flex;height:100%;align-items:center;justify-content:center;padding:.75em 2em}.btn__icon{display:flex;align-items:center;border-left-width:1px;padding:0 1rem;border-color:#4c4c4c}.btn__body,.btn__icon,.btn__inline-icon{transition-property:color,background-color,border-color;transition-duration:.2s;color:#fff}.btn__body,.btn__icon{background-color:#000}.btn__icon img{width:1rem}.btn--icon .btn__body-wrap{display:flex}.btn--inverted-icon .btn__icon{order:-1;border-right-width:1px;border-left-width:0}.btn__inline-icon{margin-right:.5rem}.btn--condensed .btn__body{padding:.75em 1em}.btn--black .btn__body,.btn--black .btn__icon{background-color:#000;color:#fff}.btn--black .btn__icon{border-color:#343434;background-color:#000}.btn--black.btn--hoveractive:not([class^=btn--to-]):hover .btn__body,.btn--black.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{background-color:#000;color:#fff}.btn--black.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{border-color:#262626}.btn--black.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon i,.btn--black.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon svg{color:#fff;fill:#fff}.btn--hoveractive.btn--to-black:hover .btn__body,.btn--to-black.btn--activated .btn__body{background-color:#000!important;color:#fff!important}.btn--hoveractive.btn--to-black:hover .btn__icon,.btn--to-black.btn--activated .btn__icon{border-color:#343434!important;background-color:#000!important}.btn--hoveractive.btn--to-black:hover .btn__inline-icon,.btn--to-black.btn--activated .btn__inline-icon{color:#fff!important}.btn--grey-700 .btn__body,.btn--grey-700 .btn__icon{background-color:#202020;color:#fff}.btn--grey-700 .btn__icon{border-color:#303132;background-color:#202020}.btn--grey-700.btn--hoveractive:not([class^=btn--to-]):hover .btn__body,.btn--grey-700.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{background-color:#343434;color:#fff}.btn--grey-700.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{border-color:#262626}.btn--grey-700.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon i,.btn--grey-700.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon svg{color:#fff;fill:#fff}.btn--hoveractive.btn--to-grey-700:hover .btn__body,.btn--to-grey-700.btn--activated .btn__body{background-color:#202020!important;color:#fff!important}.btn--hoveractive.btn--to-grey-700:hover .btn__icon,.btn--to-grey-700.btn--activated .btn__icon{border-color:#303132!important;background-color:#202020!important}.btn--hoveractive.btn--to-grey-700:hover .btn__inline-icon,.btn--to-grey-700.btn--activated .btn__inline-icon{color:#fff!important}.btn--grey-500 .btn__body,.btn--grey-500 .btn__icon{background-color:#303132;color:#fff}.btn--grey-500 .btn__icon{border-color:#4c4c4c;background-color:#303132}.btn--grey-500.btn--hoveractive:not([class^=btn--to-]):hover .btn__body,.btn--grey-500.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{background-color:#4c4c4c;color:#fff}.btn--grey-500.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{border-color:#343434}.btn--grey-500.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon i,.btn--grey-500.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon svg{color:#fff;fill:#fff}.btn--hoveractive.btn--to-grey-500:hover .btn__body,.btn--to-grey-500.btn--activated .btn__body{background-color:#303132!important;color:#fff!important}.btn--hoveractive.btn--to-grey-500:hover .btn__icon,.btn--to-grey-500.btn--activated .btn__icon{border-color:#4c4c4c!important;background-color:#303132!important}.btn--hoveractive.btn--to-grey-500:hover .btn__inline-icon,.btn--to-grey-500.btn--activated .btn__inline-icon{color:#fff!important}.btn--grey-125 .btn__body,.btn--grey-125 .btn__icon{background-color:#f0f0f0;color:#000}.btn--grey-125 .btn__icon{border-color:#d8d8d8;background-color:#f0f0f0}.btn--grey-125.btn--hoveractive:not([class^=btn--to-]):hover .btn__body,.btn--grey-125.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{background-color:silver;color:#fff}.btn--grey-125.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{border-color:#a8a8a8}.btn--grey-125.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon i,.btn--grey-125.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon svg{color:#fff;fill:#fff}.btn--hoveractive.btn--to-grey-125:hover .btn__body,.btn--to-grey-125.btn--activated .btn__body{background-color:#f0f0f0!important;color:#000!important}.btn--hoveractive.btn--to-grey-125:hover .btn__icon,.btn--to-grey-125.btn--activated .btn__icon{border-color:#d8d8d8!important;background-color:#f0f0f0!important}.btn--hoveractive.btn--to-grey-125:hover .btn__inline-icon,.btn--to-grey-125.btn--activated .btn__inline-icon{color:#000!important}.btn--white .btn__body,.btn--white .btn__icon{background-color:#fff;color:#000}.btn--white .btn__icon{border-color:#f3f3f3;background-color:#fff}.btn--white.btn--hoveractive:not([class^=btn--to-]):hover .btn__body,.btn--white.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{background-color:#ccc;color:#fff}.btn--white.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{border-color:#b3b3b3}.btn--white.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon i,.btn--white.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon svg{color:#fff;fill:#fff}.btn--hoveractive.btn--to-white:hover .btn__body,.btn--to-white.btn--activated .btn__body{background-color:#fff!important;color:#000!important}.btn--hoveractive.btn--to-white:hover .btn__icon,.btn--to-white.btn--activated .btn__icon{border-color:#f3f3f3!important;background-color:#fff!important}.btn--hoveractive.btn--to-white:hover .btn__inline-icon,.btn--to-white.btn--activated .btn__inline-icon{color:#000!important}.btn--blue-300 .btn__body,.btn--blue-300 .btn__icon{background-color:#027da8;color:#fff}.btn--blue-300 .btn__icon{border-color:#027197;background-color:#027da8}.btn--blue-300.btn--hoveractive:not([class^=btn--to-]):hover .btn__body,.btn--blue-300.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{background-color:#026486;color:#fff}.btn--blue-300.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{border-color:#015876}.btn--blue-300.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon i,.btn--blue-300.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon svg{color:#fff;fill:#fff}.btn--hoveractive.btn--to-blue-300:hover .btn__body,.btn--to-blue-300.btn--activated .btn__body{background-color:#027da8!important;color:#fff!important}.btn--hoveractive.btn--to-blue-300:hover .btn__icon,.btn--to-blue-300.btn--activated .btn__icon{border-color:#027197!important;background-color:#027da8!important}.btn--hoveractive.btn--to-blue-300:hover .btn__inline-icon,.btn--to-blue-300.btn--activated .btn__inline-icon{color:#fff!important}.btn--cyan-200 .btn__body,.btn--cyan-200 .btn__icon{background-color:#57b3bd;color:#fff}.btn--cyan-200 .btn__icon{border-color:#46a8b2;background-color:#57b3bd}.btn--cyan-200.btn--hoveractive:not([class^=btn--to-]):hover .btn__body,.btn--cyan-200.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{background-color:#3e959f;color:#fff}.btn--cyan-200.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{border-color:#37838b}.btn--cyan-200.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon i,.btn--cyan-200.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon svg{color:#fff;fill:#fff}.btn--hoveractive.btn--to-cyan-200:hover .btn__body,.btn--to-cyan-200.btn--activated .btn__body{background-color:#57b3bd!important;color:#fff!important}.btn--hoveractive.btn--to-cyan-200:hover .btn__icon,.btn--to-cyan-200.btn--activated .btn__icon{border-color:#46a8b2!important;background-color:#57b3bd!important}.btn--hoveractive.btn--to-cyan-200:hover .btn__inline-icon,.btn--to-cyan-200.btn--activated .btn__inline-icon{color:#fff!important}.btn--green-200 .btn__body,.btn--green-200 .btn__icon{background-color:#92c6ab;color:#fff}.btn--green-200 .btn__icon{border-color:#7bba9a;background-color:#92c6ab}.btn--green-200.btn--hoveractive:not([class^=btn--to-]):hover .btn__body,.btn--green-200.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{background-color:#65ae88;color:#fff}.btn--green-200.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{border-color:#539e77}.btn--green-200.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon i,.btn--green-200.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon svg{color:#fff;fill:#fff}.btn--hoveractive.btn--to-green-200:hover .btn__body,.btn--to-green-200.btn--activated .btn__body{background-color:#92c6ab!important;color:#fff!important}.btn--hoveractive.btn--to-green-200:hover .btn__icon,.btn--to-green-200.btn--activated .btn__icon{border-color:#7bba9a!important;background-color:#92c6ab!important}.btn--hoveractive.btn--to-green-200:hover .btn__inline-icon,.btn--to-green-200.btn--activated .btn__inline-icon{color:#fff!important}.btn--orange-300 .btn__body,.btn--orange-300 .btn__icon{background-color:#ed9654;color:#fff}.btn--orange-300 .btn__icon{border-color:#ea8437;background-color:#ed9654}.btn--orange-300.btn--hoveractive:not([class^=btn--to-]):hover .btn__body,.btn--orange-300.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{background-color:#e7721a;color:#fff}.btn--orange-300.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{border-color:#cb6415}.btn--orange-300.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon i,.btn--orange-300.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon svg{color:#fff;fill:#fff}.btn--hoveractive.btn--to-orange-300:hover .btn__body,.btn--to-orange-300.btn--activated .btn__body{background-color:#ed9654!important;color:#fff!important}.btn--hoveractive.btn--to-orange-300:hover .btn__icon,.btn--to-orange-300.btn--activated .btn__icon{border-color:#ea8437!important;background-color:#ed9654!important}.btn--hoveractive.btn--to-orange-300:hover .btn__inline-icon,.btn--to-orange-300.btn--activated .btn__inline-icon{color:#fff!important}.btn--violet-400 .btn__body,.btn--violet-400 .btn__icon{background-color:#840048;color:#fff}.btn--violet-400 .btn__icon{border-color:#770041;background-color:#840048}.btn--violet-400.btn--hoveractive:not([class^=btn--to-]):hover .btn__body,.btn--violet-400.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{background-color:#6a003a;color:#fff}.btn--violet-400.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{border-color:#5c0032}.btn--violet-400.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon i,.btn--violet-400.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon svg{color:#fff;fill:#fff}.btn--hoveractive.btn--to-violet-400:hover .btn__body,.btn--to-violet-400.btn--activated .btn__body{background-color:#840048!important;color:#fff!important}.btn--hoveractive.btn--to-violet-400:hover .btn__icon,.btn--to-violet-400.btn--activated .btn__icon{border-color:#770041!important;background-color:#840048!important}.btn--hoveractive.btn--to-violet-400:hover .btn__inline-icon,.btn--to-violet-400.btn--activated .btn__inline-icon{color:#fff!important}.btn--violet-500 .btn__body,.btn--violet-500 .btn__icon{background-color:#670047;color:#fff}.btn--violet-500 .btn__icon{border-color:#5d0040;background-color:#670047}.btn--violet-500.btn--hoveractive:not([class^=btn--to-]):hover .btn__body,.btn--violet-500.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{background-color:#520039;color:#fff}.btn--violet-500.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{border-color:#480032}.btn--violet-500.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon i,.btn--violet-500.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon svg{color:#fff;fill:#fff}.btn--hoveractive.btn--to-violet-500:hover .btn__body,.btn--to-violet-500.btn--activated .btn__body{background-color:#670047!important;color:#fff!important}.btn--hoveractive.btn--to-violet-500:hover .btn__icon,.btn--to-violet-500.btn--activated .btn__icon{border-color:#5d0040!important;background-color:#670047!important}.btn--hoveractive.btn--to-violet-500:hover .btn__inline-icon,.btn--to-violet-500.btn--activated .btn__inline-icon{color:#fff!important}.btn--brands-facebook .btn__body,.btn--brands-facebook .btn__icon{background-color:#067ceb;color:#fff}.btn--brands-facebook .btn__icon{border-color:#0570d4;background-color:#067ceb}.btn--brands-facebook.btn--hoveractive:not([class^=btn--to-]):hover .btn__body,.btn--brands-facebook.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{background-color:#0563bc;color:#fff}.btn--brands-facebook.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon{border-color:#0457a5}.btn--brands-facebook.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon i,.btn--brands-facebook.btn--hoveractive:not([class^=btn--to-]):hover .btn__icon svg{color:#fff;fill:#fff}.btn--hoveractive.btn--to-brands-facebook:hover .btn__body,.btn--to-brands-facebook.btn--activated .btn__body{background-color:#067ceb!important;color:#fff!important}.btn--hoveractive.btn--to-brands-facebook:hover .btn__icon,.btn--to-brands-facebook.btn--activated .btn__icon{border-color:#0570d4!important;background-color:#067ceb!important}.btn--hoveractive.btn--to-brands-facebook:hover .btn__inline-icon,.btn--to-brands-facebook.btn--activated .btn__inline-icon{color:#fff!important}.avatar{display:inline-block;text-align:center;border-radius:9999px}.avatar img{border-radius:9999px;display:block;width:100%}.avatar--xs{width:3rem}.avatar--sm{width:5rem}.avatar--md{width:6rem}.avatar--lg{width:7rem}.avatar--xl{width:9rem}.avatar--2xl{width:12rem}.avatar--3xl{width:14rem}.avatar--bordered img{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity));border-width:8px}.avatar--outlined{--border-opacity:1;border-color:#f3f3f3;border-color:rgba(243,243,243,var(--border-opacity));border-width:1px}.card{box-shadow:0 3px 1px -2px rgba(221,221,221,.43),0 2px 2px 0 rgba(221,221,221,.37),0 1px 5px 0 rgba(221,221,221,.35)}.card__body{padding:2rem}.card--hoveractive{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:.2s}.card--hoveractive:hover{box-shadow:0 10px 13px -6px rgba(221,221,221,.43),0 21px 33px 3px rgba(221,221,221,.37),0 8px 40px 7px rgba(221,221,221,.35)}.card-headline{font-size:1.3rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25;overflow-wrap:break-word}.card-body-text{font-weight:300;line-height:1.5;font-size:.875rem;overflow-wrap:break-word}.contact-line{display:inline-flex}.contact-line i{padding-right:.5rem}.contact-line.contact-line--responsive i{display:none}@media (min-width:992px){.contact-line.contact-line--responsive i{display:inline-block}}.container--default{max-width:1200px}.container--wide{max-width:1430px}.container-padding--zero{margin-left:-1rem;margin-right:-1rem}@media (min-width:1200px){.container-padding--zero{margin-left:-2rem;margin-right:-2rem}}.container-padding--auto{margin-left:0;margin-right:0}.content-block figure,.figure{position:relative}.content-block figure img,.figure img{width:100%}.content-block figure figcaption,.figure figcaption{position:absolute;display:flex;align-items:flex-end;z-index:10;bottom:0;left:0;width:100%;height:100%;padding-left:1rem;padding-right:1rem;padding-top:1rem;padding-bottom:1rem;--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));font-size:.875rem;line-height:1.25}.content-block figure figcaption:before,.figure figcaption:before{position:absolute;display:block;top:0;left:0;bottom:0;right:0;pointer-events:none;opacity:1;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:.2s;content:"";z-index:-1;background:linear-gradient(to bottom,rgba(0,0,0,0) 40%,rgba(0,0,0,.8))}@media (min-width:576px){.content-block figure figcaption:before,.figure figcaption:before{background:linear-gradient(to bottom,rgba(0,0,0,0) 60%,rgba(0,0,0,.8))}}.content-block figure:focus figcaption:before,.content-block figure:hover figcaption:before,.figure:focus figcaption:before,.figure:hover figcaption:before{opacity:0}.flag{display:inline-block;position:relative;padding-top:1.5rem;padding-bottom:1.5rem;padding-left:2rem;padding-right:1.5rem;margin-right:2.5rem;--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity));--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.flag:after{position:absolute;width:2.5rem;height:100%;content:"";left:100%;top:0;background:inherit;-webkit-clip-path:polygon(-2px -1px,100% -1px,60% 50%,100% 100.7%,-2px 100.7%);clip-path:polygon(-2px -1px,100% -1px,60% 50%,100% 100.7%,-2px 100.7%)}.text-input-addon{display:flex;align-items:center;--bg-opacity:1;background-color:#f0f0f0;background-color:rgba(240,240,240,var(--bg-opacity));--text-opacity:1;color:#4c4c4c;color:rgba(76,76,76,var(--text-opacity));font-weight:400;padding-top:.75rem;padding-bottom:.75rem;padding-left:1rem;padding-right:1rem;font-size:1.125rem;white-space:nowrap;border-width:1px;--border-opacity:1;border-color:#adadad;border-color:rgba(173,173,173,var(--border-opacity));transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:.2s}.text-input{outline:0;--bg-opacity:1;background-color:#fafafa;background-color:rgba(250,250,250,var(--bg-opacity));padding-top:.75rem;padding-bottom:.75rem;padding-left:1rem;padding-right:1rem;font-size:1.125rem;border-width:1px;--border-opacity:1;border-color:#adadad;border-color:rgba(173,173,173,var(--border-opacity));transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:.2s;min-width:0}.text-input:hover:not([disabled]):not([readonly]){--border-opacity:1;border-color:#4c4c4c;border-color:rgba(76,76,76,var(--border-opacity))}.text-input:active:not([disabled]):not([readonly]),.text-input:focus:not([disabled]):not([readonly]){--border-opacity:1;border-color:#027da8;border-color:rgba(2,125,168,var(--border-opacity))}.text-input::-moz-placeholder{--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity));font-weight:400}.text-input:-ms-input-placeholder{--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity));font-weight:400}.text-input::-ms-input-placeholder{--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity));font-weight:400}.text-input::placeholder{--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity));font-weight:400}.text-input[disabled],.text-input[readonly]{--bg-opacity:1;background-color:#f0f0f0;background-color:rgba(240,240,240,var(--bg-opacity));cursor:not-allowed}.text-input[disabled]::-moz-placeholder,.text-input[readonly]::-moz-placeholder{--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity))}.text-input[disabled]:-ms-input-placeholder,.text-input[readonly]:-ms-input-placeholder{--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity))}.text-input[disabled]::-ms-input-placeholder,.text-input[readonly]::-ms-input-placeholder{--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity))}.text-input[disabled]::placeholder,.text-input[readonly]::placeholder{--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity))}.text-input-addon--l{border-right-width:0}.text-input-addon--r{border-left-width:0}.text-input:hover:not([disabled]):not([readonly])~.text-input-addon{--border-opacity:1;border-color:#4c4c4c;border-color:rgba(76,76,76,var(--border-opacity))}.text-input:active:not([disabled]):not([readonly])~.text-input-addon,.text-input:focus:not([disabled]):not([readonly])~.text-input-addon{--border-opacity:1;border-color:#027da8;border-color:rgba(2,125,168,var(--border-opacity))}.text-input[disabled]~.text-input-addon,.text-input[readonly]~.text-input-addon{--bg-opacity:1;background-color:#f0f0f0;background-color:rgba(240,240,240,var(--bg-opacity));--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity))}.text-input--has-addon-l.text-input{border-left-width:0}.text-input--has-addon-r.text-input{border-right-width:0}.select{position:relative;display:flex;align-items:center;width:100%}.select:after{position:absolute;right:0;font-size:1.3rem;font-weight:700;padding-right:.75rem;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:.2s;font-family:pirati-ui;content:"\e925"}.select__control{width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;outline:0;--bg-opacity:1;background-color:#fafafa;background-color:rgba(250,250,250,var(--bg-opacity));padding-top:.75rem;padding-bottom:.75rem;padding-left:1rem;padding-right:2rem;font-size:1.125rem;border-radius:0;border-width:1px;--border-opacity:1;border-color:#adadad;border-color:rgba(173,173,173,var(--border-opacity));transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:.2s;min-width:0}.select__control:hover:not([disabled]):not([readonly]){--border-opacity:1;border-color:#4c4c4c;border-color:rgba(76,76,76,var(--border-opacity))}.select__control:active:not([disabled]):not([readonly]),.select__control:focus:not([disabled]):not([readonly]){--border-opacity:1;border-color:#027da8;border-color:rgba(2,125,168,var(--border-opacity))}.select__control::-moz-placeholder{--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity));font-weight:400}.select__control:-ms-input-placeholder{--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity));font-weight:400}.select__control::-ms-input-placeholder{--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity));font-weight:400}.select__control::placeholder{--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity));font-weight:400}.select__control[disabled],.select__control[readonly]{--bg-opacity:1;background-color:#f0f0f0;background-color:rgba(240,240,240,var(--bg-opacity));cursor:not-allowed}.select__control[disabled]::-moz-placeholder,.select__control[readonly]::-moz-placeholder{--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity))}.select__control[disabled]:-ms-input-placeholder,.select__control[readonly]:-ms-input-placeholder{--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity))}.select__control[disabled]::-ms-input-placeholder,.select__control[readonly]::-ms-input-placeholder{--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity))}.select__control[disabled]::placeholder,.select__control[readonly]::placeholder{--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity))}.checkbox{position:relative;display:flex}.checkbox input{width:1.25rem;height:1.25rem;margin-right:.5rem;flex-shrink:0;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none;outline:0;--bg-opacity:1;background-color:#adadad;background-color:rgba(173,173,173,var(--bg-opacity));border-width:1px;--border-opacity:1;border-color:#adadad;border-color:rgba(173,173,173,var(--border-opacity));transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:.2s}.checkbox input:hover:not([disabled]):not([readonly]){--border-opacity:1;border-color:#4c4c4c;border-color:rgba(76,76,76,var(--border-opacity))}.checkbox input:active,.checkbox input:focus{--border-opacity:1;border-color:#027da8;border-color:rgba(2,125,168,var(--border-opacity))}.checkbox input:checked{--bg-opacity:1;background-color:#027da8;background-color:rgba(2,125,168,var(--bg-opacity));border-color:transparent}.checkbox input[disabled]{cursor:not-allowed}.checkbox label{max-width:32rem;line-height:1.25}.checkbox:after{display:inline;position:absolute;pointer-events:none;content:"";height:5px;width:12px;top:6px;left:4px;border-left:2px solid #fff;border-bottom:2px solid #fff;transform:rotate(-45deg)}.radio{position:relative}.radio input{width:1.25rem;height:1.25rem;margin-right:.5rem;flex-shrink:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;outline:0;--bg-opacity:1;background-color:#adadad;background-color:rgba(173,173,173,var(--bg-opacity));border-width:1px;--border-opacity:1;border-color:#adadad;border-color:rgba(173,173,173,var(--border-opacity));transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:.2s;border-radius:9999px}.radio input:hover:not([disabled]):not([readonly]){--border-opacity:1;border-color:#4c4c4c;border-color:rgba(76,76,76,var(--border-opacity))}.radio input:active,.radio input:focus{--border-opacity:1;border-color:#027da8;border-color:rgba(2,125,168,var(--border-opacity))}.radio input:checked{--bg-opacity:1;background-color:#027da8;background-color:rgba(2,125,168,var(--bg-opacity));border-color:transparent}.radio input[disabled]{cursor:not-allowed}.radio label{display:flex;align-items:center;line-height:1.25}.radio:after{width:.5rem;height:.5rem;display:inline;position:absolute;pointer-events:none;--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));content:"";border-radius:50%;top:calc((1.25rem - .5rem)/ 2);left:calc((1.25rem - .5rem)/ 2)}.form-field--error .select__control,.form-field--error .text-input,.form-field--error .text-input~.text-input-addon{--border-opacity:1;border-color:#d60d53;border-color:rgba(214,13,83,var(--border-opacity))}.h-default{font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.h-alt{font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.h-allcaps{font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:400;text-transform:uppercase;line-height:1.25}.content-block .head-alt-xl,.head-alt-xl{font-size:5.3rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .head-alt-lg,.head-alt-lg{font-size:4rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .head-alt-md,.head-alt-md{font-size:2.45rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .head-alt-base,.head-alt-base{font-size:1.875rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .head-alt-sm,.head-alt-sm{font-size:1.6rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .head-alt-xs,.head-alt-xs{font-size:1.3rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .head-alt-2xs,.head-alt-2xs{font-size:1.125rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .head-base,.head-base{font-size:1.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .head-sm,.head-sm{font-size:1.6rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .head-xs,.head-xs{font-size:1.3rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .head-2xs,.head-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .head-heavy-base,.head-heavy-base{font-size:1.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .head-heavy-sm,.head-heavy-sm{font-size:1.6rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .head-heavy-xs,.head-heavy-xs{font-size:1.3rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .head-heavy-2xs,.head-heavy-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .head-allcaps-2xs,.head-allcaps-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:400;text-transform:uppercase;line-height:1.25}.content-block .head-allcaps-3xs,.head-allcaps-3xs{font-size:1rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:400;text-transform:uppercase;line-height:1.25}.content-block .head-allcaps-4xs,.head-allcaps-4xs{font-size:.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:400;text-transform:uppercase;line-height:1.25}.content-block .head-allcaps-heavy-2xs,.head-allcaps-heavy-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;text-transform:uppercase;line-height:1.25}.content-block .head-allcaps-heavy-3xs,.head-allcaps-heavy-3xs{font-size:1rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;text-transform:uppercase;line-height:1.25}.content-block .head-allcaps-heavy-4xs,.head-allcaps-heavy-4xs{font-size:.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;text-transform:uppercase;line-height:1.25}hr:not(.hr--unstyled){border-top-width:1px;--border-opacity:1;border-color:#f3f3f3;border-color:rgba(243,243,243,var(--border-opacity));margin-top:1rem;margin-bottom:1rem}@media (min-width:768px){hr:not(.hr--unstyled){margin-top:2rem;margin-bottom:2rem}}hr:not(.hr--unstyled).hr--big{margin-top:2rem;margin-bottom:2rem}@media (min-width:768px){hr:not(.hr--unstyled).hr--big{margin-top:4rem;margin-bottom:4rem}}hr:not(.hr--unstyled).hr--condensed{margin-top:.5rem;margin-bottom:.5rem}@media (min-width:768px){hr:not(.hr--unstyled).hr--condensed{margin-top:1rem;margin-bottom:1rem}}.content-block ol,.ordered-list{padding-left:1rem}.content-block ul,.unordered-list{display:grid;grid-gap:1rem;gap:1rem}.content-block ul li,.unordered-list li{list-style-type:none;position:relative;padding-left:1em}.content-block ul li:before,.unordered-list li:before{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity));position:absolute;left:0;font-family:pirati-ui;content:"\e919";font-size:.6em;font-weight:600;margin-top:.6ex}.content-block ul.leading-tight li:before,.unordered-list.leading-tight li:before{margin-top:.7ex}.content-block ul.leading-snug li:before,.unordered-list.leading-snug li:before{margin-top:.6ex}.content-block ul.leading-normal li:before,.unordered-list.leading-normal li:before{margin-top:.6ex}.content-block ul.leading-relaxed li:before,.unordered-list.leading-relaxed li:before{margin-top:.8ex}.content-block ul li ul,.unordered-list li ul{margin-top:1rem}.content-block ul,.unordered-list--dense{grid-row-gap:0;row-gap:0}.content-block .unordered-list--linked li,.unordered-list--linked li{padding-right:1em}.content-block .unordered-list--linked li:after,.unordered-list--linked li:after{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity));position:absolute;right:0;font-family:pirati-ui;content:"\e923";font-size:1em;font-weight:300}.content-block ol,.ordered-list{list-style-type:decimal}.content-block p,.para{font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.5}.content-block blockquote,.quote{font-style:italic;line-height:1.625;border-left-width:2px;--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity));padding-left:1rem;padding-top:.5rem;padding-bottom:.5rem;margin-left:1.5rem;width:80%;max-width:60em}.social-icon{display:inline-flex;align-items:center;justify-content:center;border-radius:.375rem;text-decoration:none}.social-icon,.social-icon i,.social-icon i:before,.social-icon:hover{text-decoration:none}.social-icon--4{width:1.5rem;height:1.5rem;line-height:1.5rem}.social-icon--5{width:2rem;height:2rem;line-height:2rem}.social-icon--6{width:3rem;height:3rem;line-height:3rem}.super-button{display:inline-flex;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-size:2.45rem;padding-top:2rem;padding-bottom:2rem;padding-left:1rem;padding-right:1rem;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:.2s}.super-button:hover{text-decoration:none}@media (min-width:768px){.super-button{padding-left:1.5rem;padding-right:1.5rem}}.super-button__body{flex-grow:1}.super-button__icon{margin-left:1rem}.content-block table td,.content-block table th,.content-block table thead td,.table td,.table th,.table thead td{padding-left:1.5rem;padding-right:1.5rem;padding-top:1rem;padding-bottom:1rem}.content-block table th,.content-block table thead td,.table th,.table thead td{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity));--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.content-block table tr:nth-child(even) td,.table--striped tr:nth-child(even) td{--bg-opacity:1;background-color:#f3f3f3;background-color:rgba(243,243,243,var(--bg-opacity))}.content-block table th,.content-block table thead td,.table--bordered th,.table--bordered thead td{border-width:1px;--border-opacity:1;border-color:#303132;border-color:rgba(48,49,50,var(--border-opacity))}.content-block table td,.table--bordered td{border-width:1px;--border-opacity:1;border-color:#f0f0f0;border-color:rgba(240,240,240,var(--border-opacity))}.table--condensed td,.table--condensed th,.table--condensed thead td{padding:.5rem}.article-card{display:flex;flex-direction:column;height:100%}.article-card-cover{position:relative;height:12rem}.article-card-cover img{display:block;-o-object-fit:cover;object-fit:cover;width:100%;height:100%}.article-card-cover:before{position:absolute;display:block;top:0;left:0;bottom:0;right:0;pointer-events:none;content:"";background:linear-gradient(to bottom,rgba(0,0,0,0) 70%,rgba(0,0,0,.8))}.article-card-cover__details{position:absolute;left:0;bottom:0;padding:1rem;pointer-events:none}.article-card-sharing{margin-bottom:1rem;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:.2s;opacity:0;pointer-events:auto}.article-card:hover .article-card-sharing{opacity:1}.article-card-meta{font-size:.875rem;--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.article-card-meta__item:not(:first-child){margin-left:.5rem}.article-card-meta__item:not(:first-child):before{content:"";padding-right:.5rem;border-left-width:1px;--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity));--border-opacity:0.85}.article-card__body{display:flex;flex-direction:column;height:100%;padding:1rem}.article-card__category-button{margin-right:.25rem;margin-bottom:.25rem}.badge{display:flex;align-items:center;font-family:Roboto,Helvetica,Arial,sans-serif}.badge .badge__avatar{margin-right:1.5rem;flex-shrink:0}.badge .badge__body{text-align:left}.badge .badge__title{display:block}.badge .badge__occupation{text-transform:uppercase;font-size:.75rem;max-width:24rem;margin-top:.25rem;margin-bottom:.25rem;line-height:1.25}.badge .badge__link{font-size:.875rem;font-weight:300;display:block;width:100%}.badge .badge__link:not(:first-child){margin-top:.25rem}.badge.badge--condensed .badge__avatar{margin-right:1rem}.badge.badge--condensed .badge__occupation{text-transform:uppercase;font-size:.75rem;max-width:24rem}.banner{padding-left:1rem;padding-right:1rem;padding-top:2rem;padding-bottom:2rem;display:flex;flex-wrap:wrap;flex-direction:column}@media (min-width:992px){.banner{padding-left:2rem;padding-right:2rem}}.banner__icon{font-size:3rem}@media (min-width:768px){.banner__icon{font-size:4rem}}@media (min-width:992px){.banner__icon{font-size:9rem}}.banner__body{margin-top:auto}.banner__cta{margin-top:2rem}.calendar-table-row{border-bottom-width:1px;--border-opacity:1;border-color:#f0f0f0;border-color:rgba(240,240,240,var(--border-opacity))}.calendar-table-row:first-of-type{border-top-width:1px}.calendar-table-row--standalone{border-left-width:1px}.calendar-table-row__col{height:100%;border-right-width:1px;--border-opacity:1;border-color:#f0f0f0;border-color:rgba(240,240,240,var(--border-opacity));padding:.5rem;display:flex;justify-content:center;align-items:flex-start}.calendar-table-row__col:first-child{border-left-width:1px}@media (min-width:1200px){.calendar-table-row__col:first-child{border-left-width:0}}.calendar-table-row__col.calendar-table-row__col--norborder{border-right-width:0}.candidate-card__body{display:grid;grid-template-areas:"avatar bio" "affiliation affiliation" "social social";grid-template-columns:6rem 1fr}.candidate-card__avatar{position:relative;width:6rem;padding-left:1rem;padding-top:1rem;padding-bottom:1rem;grid-area:avatar}.candidate-card__position{width:2rem;height:2rem;position:absolute;--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity));--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));font-size:1rem;border-radius:9999px;font-weight:400;font-family:Bebas Neue,Helvetica,Arial,sans-serif;text-align:center;top:1rem;left:.5rem;line-height:2rem}.candidate-card__bio{padding:1rem}.candidate-card__bio-item{font-weight:300;font-family:Roboto Condensed,Helvetica,Arial,sans-serif}.candidate-card__affiliation{font-size:.875rem;--bg-opacity:1;background-color:#f7f7f7;background-color:rgba(247,247,247,var(--bg-opacity));display:flex;border-top-width:1px;border-bottom-width:1px;--border-opacity:1;border-color:#f0f0f0;border-color:rgba(240,240,240,var(--border-opacity));line-height:2.5rem}.candidate-card__affiliation>div{padding-left:1rem;padding-right:1rem;display:flex;align-items:center}.candidate-card__affiliation>div:not(:first-child){border-left-width:1px;--border-opacity:1;border-color:#f0f0f0;border-color:rgba(240,240,240,var(--border-opacity))}.candidate-card__affiliation>div:last-child{flex:1}.candidate-card__affiliation>div:first-child{width:6rem;justify-content:center}@media (min-width:768px){.candidate-card__affiliation>div{justify-content:center}.candidate-card__affiliation>div:first-child{width:auto;text-align:left}}.candidate-card__bio{grid-area:bio}.candidate-card__affiliation{grid-area:affiliation}.candidate-card__social{padding:1rem;grid-area:social}@media (min-width:768px){.candidate-card__social{text-align:center}}@media (min-width:576px){.candidate-card{display:flex;flex-direction:column;height:100%;padding-top:3rem}.candidate-card__body{text-align:center;grid-template-areas:"avatar" "bio" "affiliation" "social";grid-template-columns:1fr}.candidate-card__bio{padding:1rem;min-height:10rem}.candidate-card__avatar{display:inline-block;position:relative;margin:auto;width:8rem;padding-top:0;padding-bottom:0;margin-top:-3rem}.candidate-card__position{width:2.5rem;height:2.5rem;font-size:1.3rem;top:1.75rem;left:-.5rem;line-height:2.5rem}.candidate-card__social{flex-grow:1}}.candidate-table-row{position:relative;width:100%;padding-top:1rem;padding-bottom:1rem;display:grid;align-items:center;grid-template-areas:"position avatar name" "position avatar bio" "position avatar affiliation";grid-template-columns:auto 4rem 1fr}.candidate-table-row:after{content:'';position:absolute;z-index:10;width:100%;height:100%;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:.2s;box-shadow:0 0 0 0 rgba(221,221,221,.43),0 0 0 0 rgba(221,221,221,.37),0 0 0 0 rgba(221,221,221,.35)}.candidate-table-row:hover:after{box-shadow:0 6px 6px -3px rgba(221,221,221,.43),0 10px 14px 1px rgba(221,221,221,.37),0 4px 18px 3px rgba(221,221,221,.35)}.candidate-table-row:hover{text-decoration:none}.candidate-table-row__position{padding-left:1rem;padding-right:1.5rem;grid-area:position}.candidate-table-row__avatar{width:4rem;grid-area:avatar}.candidate-table-row__name{padding-left:1.5rem;padding-right:1rem;padding-top:.25rem;padding-bottom:.25rem;grid-area:name}.candidate-table-row__bio{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-top:.25rem;padding-bottom:.25rem;padding-left:1.5rem;padding-right:1rem;grid-area:bio}.candidate-table-row__affiliation{display:flex;align-items:center;justify-content:flex-start;white-space:nowrap;padding-top:.25rem;padding-bottom:.25rem;padding-left:1.5rem;padding-right:1rem;grid-area:affiliation}@media (min-width:768px){.candidate-table-row{padding-top:.25rem;padding-bottom:.25rem;grid-template-areas:"position avatar name bio affiliation";grid-template-columns:auto 2.5rem 20% 1fr 25%}.candidate-table-row__avatar{width:2.5rem}.candidate-table-row__name{padding-left:2rem;padding-right:2rem}.candidate-table-row__position{padding-left:4rem}.candidate-table-row__bio{border-left-width:1px;--border-opacity:1;border-color:#f0f0f0;border-color:rgba(240,240,240,var(--border-opacity));padding-left:2rem;padding-right:2rem}.candidate-table-row__affiliation{padding-left:2rem;padding-right:4rem}}.content-block h1,.content-block h2,.content-block h3,.content-block h4{font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block h5,.content-block h6{font-family:Roboto Condensed,Helvetica,Arial,sans-serif;text-transform:uppercase;line-height:1.25}.content-block h1,.content-block h2,.content-block h3{margin-bottom:.4em}.content-block h1:not(:first-child),.content-block h2:not(:first-child),.content-block h3:not(:first-child){margin-top:.95em}.content-block h4,.content-block h5,.content-block h6{margin-bottom:.3em}.content-block h4:not(:first-child),.content-block h5:not(:first-child),.content-block h6:not(:first-child){margin-top:.95em}.content-block hr+h1,.content-block hr+h2,.content-block hr+h3,.content-block hr+h4,.content-block hr+h5,.content-block hr+h6{margin-top:0}.content-block h1{font-size:1.875rem}.content-block h2{font-size:1.6rem}.content-block h3{font-size:1.3rem}.content-block h4{font-size:1.125rem}.content-block h5{font-size:1rem}.content-block h6{font-size:.875rem}.content-block a:not(.contact-line):not(.content-block--nostyle){text-decoration:underline}.content-block ol,.content-block p,.content-block ul{line-height:1.5}.content-block p:not(:last-child){margin-bottom:1em}.content-block strong{font-weight:700}.content-block small{font-size:.875rem}.content-block blockquote:not(:first-child),.content-block figure:not(:first-child),.content-block iframe:not(:first-child),.content-block ol:not(:first-child),.content-block table:not(:first-child),.content-block ul:not(:first-child){margin-top:1em}.content-block blockquote:not(:last-child),.content-block figure:not(:last-child),.content-block iframe:not(:last-child),.content-block ol:not(:last-child),.content-block table:not(:last-child),.content-block ul:not(:last-child){margin-bottom:1em}.flip-clock{text-align:center;perspective:600px}.flip-clock__piece{position:relative;display:inline-flex;justify-content:center;margin-left:.25rem;margin-right:.25rem}.flip-clock__slot{position:absolute;display:block;bottom:0;z-index:50;transform:translateY(55%);text-shadow:0 0 1.5rem #000}.flip-card{display:block;position:relative;font-family:Bebas Neue,Helvetica,Arial,sans-serif;padding-bottom:.85em}.flip-card:after{position:absolute;content:"";position:absolute;width:90%;height:108%;top:-4%;left:5%;z-index:-1}.flip-card__back-4digits:after,.flip-card__back-4digits:before,.flip-card__back-bottom,.flip-card__back-bottom-4digits,.flip-card__back:after,.flip-card__back:before,.flip-card__bottom,.flip-card__bottom-4digits,.flip-card__top,.flip-card__top-4digits{display:block;--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity));height:.85em;padding:.35em .1em .4em;backface-visibility:hidden;-webkit-backface-visibility:hidden;transform-style:preserve-3d}.flip-card:after,.flip-card__back-bottom,.flip-card__back-bottom-4digits,.flip-card__back:after,.flip-card__back:before,.flip-card__bottom,.flip-card__bottom-4digits,.flip-card__top{border-width:1px;--border-opacity:1;border-color:#4c4c4c;border-color:rgba(76,76,76,var(--border-opacity))}.flip-card__back:after,.flip-card__back:before,.flip-card__top{border-bottom-width:0}.flip-card__back-bottom,.flip-card__back:after,.flip-card__back:before,.flip-card__bottom,.flip-card__top{width:1.9em}.flip-card__back-4digits:after,.flip-card__back-4digits:before,.flip-card__back-bottom-4digits,.flip-card__bottom-4digits,.flip-card__top-4digits{width:2.4em}.flip-card__back-bottom,.flip-card__back-bottom-4digits,.flip-card__bottom,.flip-card__bottom-4digits{position:absolute;left:0;pointer-events:none;left:0;pointer-events:none;overflow:hidden;z-index:2}.flip-card__back-bottom,.flip-card__back-bottom-4digits{z-index:1}.flip-card__back-bottom-4digits:after,.flip-card__back-bottom:after,.flip-card__bottom-4digits:after,.flip-card__bottom:after{display:block;margin-top:-.85em}.flip-card__back-4digits:before,.flip-card__back-bottom-4digits:after,.flip-card__back-bottom:after,.flip-card__back:before,.flip-card__bottom-4digits:after,.flip-card__bottom:after{content:attr(data-value)}.flip-card__back,.flip-card__back-4digits{position:absolute;top:0;height:100%;left:0;pointer-events:none}.flip-card__back-4digits:before,.flip-card__back:before{position:relative;overflow:hidden;z-index:-1}.flip .flip-card__back-4digits:before,.flip .flip-card__back:before{z-index:1;-webkit-animation:flipTop .3s cubic-bezier(.37,.01,.94,.35);animation:flipTop .3s cubic-bezier(.37,.01,.94,.35);-webkit-animation-fill-mode:both;animation-fill-mode:both;transform-origin:center bottom}.flip .flip-card__bottom,.flip .flip-card__bottom-4digits{transform-origin:center top;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation:flipBottom .6s cubic-bezier(.15,.45,.28,1);animation:flipBottom .6s cubic-bezier(.15,.45,.28,1)}@-webkit-keyframes flipTop{0%{transform:rotateX(0);z-index:2}0%,99%{opacity:1}100%{transform:rotateX(-90deg);opacity:0}}@keyframes flipTop{0%{transform:rotateX(0);z-index:2}0%,99%{opacity:1}100%{transform:rotateX(-90deg);opacity:0}}@-webkit-keyframes flipBottom{0%,50%{z-index:-1;transform:rotateX(90deg);opacity:0}51%{opacity:1}100%{opacity:1;transform:rotateX(0);z-index:5}}@keyframes flipBottom{0%,50%{z-index:-1;transform:rotateX(90deg);opacity:0}51%{opacity:1}100%{opacity:1;transform:rotateX(0);z-index:5}}.form-field .text-input{width:100%}.form-field__label{display:block;margin-bottom:.5rem}.form-field__wrapper{position:relative;display:flex}.form-field__wrapper--shadowed:after{position:absolute;width:100%;height:100%;pointer-events:none;content:"";box-shadow:inset 0 2px 6px 0 rgba(0,0,0,.1)}.form-field__wrapper .form-field__control+.form-field__control,.form-field__wrapper--row-items .form-field__control+.form-field__control{margin-left:1rem}.form-field__wrapper--col-items{flex-direction:column}.form-field__wrapper--col-items .form-field__control+.form-field__control{margin-left:0;margin-top:1rem}.form-field__error,.form-field__help-text{font-size:.875rem;margin-top:.25rem;font-weight:300}.form-field__error{--text-opacity:1;color:#d60d53;color:rgba(214,13,83,var(--text-opacity))}.form-field__help-text{--text-opacity:1;color:#4c4c4c;color:rgba(76,76,76,var(--text-opacity))}.form-field__error+.form-field__help-text{margin-top:1rem}.form-field--required .form-field__label:after{content:"*";--text-opacity:1;color:#d60d53;color:rgba(214,13,83,var(--text-opacity));margin-left:.25rem}.form-fields-required-memo:before{content:"*";--text-opacity:1;color:#d60d53;color:rgba(214,13,83,var(--text-opacity));margin-right:.25rem}.pagination{display:inline-flex;margin-left:auto;margin-right:auto}.pagination-container{text-align:center;padding-top:4rem;padding-bottom:2rem}.program-point-list dt:not(:first-of-type)::before{display:block;white-space:pre-wrap;content:"\A";height:1em}.program-point-list dt{font-weight:700}.program-point-list dd,.program-point-list dt{display:inline;margin:0;line-height:1.5}.switch{display:inline-flex;--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity));padding:.25rem}.switch__item{padding-top:1rem;padding-bottom:1rem;padding-left:2rem;padding-right:2rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;font-size:1.3rem;--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));text-align:center;cursor:pointer}.switch__item:hover{text-decoration:none;--bg-opacity:1;background-color:#303132;background-color:rgba(48,49,50,var(--bg-opacity))}.switch__item.switch__item--active,.switch__item.switch__item--active:hover{--bg-opacity:1;background-color:#3e8793;background-color:rgba(62,135,147,var(--bg-opacity))}.candidate-card-list{display:grid;grid-auto-flow:row;grid-gap:0;gap:0;grid-row-gap:1rem;row-gap:1rem}.candidate-card-list__item-wrapper{padding-left:.5rem;padding-right:.5rem;border-right-width:1px;--border-opacity:1;border-color:#f3f3f3;border-color:rgba(243,243,243,var(--border-opacity))}.candidate-card-list__item-wrapper--border{border-right-width:1px}.candidate-card-list__item-wrapper--noborder{border-width:0}.candidate-table{position:relative}.candidate-table .candidate-table-row{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.candidate-table .candidate-table-row:nth-child(odd){--bg-opacity:1;background-color:#f7f7f7;background-color:rgba(247,247,247,var(--bg-opacity))}.candidate-table.candidate-table--fadeout:after{content:"";background-image:linear-gradient(to top,#fff 0,rgba(255,255,255,0) 100%);position:absolute;bottom:0;left:0;width:100%;height:100%}.footer__main{display:grid;grid-template-areas:"brand" "social" "main-links"}.footer__brand{grid-area:brand}.footer__social{grid-area:social}.footer__main-links{grid-area:main-links}@media (min-width:992px){.footer__main{grid-gap:1rem;gap:1rem;grid-template-areas:"brand main-links social";grid-template-columns:25% 1fr 25%}}.footer-collapsible__toggle{display:flex;align-items:center;cursor:pointer}.footer-collapsible__toggle:after{content:"\e925";font-family:pirati-ui;margin-left:auto;font-weight:300;font-size:.875rem;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:.2s}.footer-collapsible__toggle.footer-collapsible__toggle--open:after{transform:rotate(-180deg)}@media (min-width:992px){.footer-collapsible__toggle{cursor:auto}.footer-collapsible__toggle:after{display:none}}.hero{padding-top:1rem;padding-bottom:1rem}@media (min-width:768px){.hero{padding-top:6rem;padding-bottom:6rem}}.hero--image{background:linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.9)),var(--image-url);position:relative;background-size:cover;background-repeat:no-repeat;background-position:center;--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.navbar{--bg-opacity:1;background-color:#202020;background-color:rgba(32,32,32,var(--bg-opacity));--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.navbar__content{display:grid;align-items:center;grid-template-areas:"brand menutoggle" "main main" "external external" "actions actions";grid-template-columns:auto 1fr}.navbar__content:not(.navbar__content--initialized){display:none}.navbar__brand{grid-area:brand}.navbar__external{grid-area:external}.navbar__main{grid-area:main}.navbar__actions{grid-area:actions}.navbar__menutoggle{grid-area:menutoggle}.navbar__section--expandable{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity));padding:1rem}.navbar-menu__item{display:block}.navbar-menu__item:hover~.navbar-menu__item{z-index:0}.navbar-menu__link{font-size:1.3rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;text-transform:uppercase;line-height:2;cursor:pointer}.navbar-menu__submenu .navbar-menu__link{font-size:1.125rem;--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity));font-family:Roboto,Helvetica,Arial,sans-serif;text-transform:none;line-height:1.5;padding-left:1rem;white-space:nowrap}.navbar-menu__link,.navbar-menu__link:hover{text-decoration:none}.navbar-menu__submenu-toggle{display:flex;align-items:center}.navbar-menu__submenu-toggle:after{content:"\e925";font-family:pirati-ui;margin-left:auto;font-weight:300;font-size:.875rem;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:.2s}.navbar-menu__submenu-toggle.navbar-menu__submenu-toggle--open:after{transform:rotate(-180deg)}.navbar-menu__submenu-wrap{display:none}.navbar-menu__submenu-wrap--show{display:block}@media (min-width:992px){.navbar{padding-top:2rem;padding-bottom:2rem}.navbar__content{grid-template-areas:"brand external actions" "brand main actions";grid-template-columns:8rem 1fr auto}.navbar__content:not(.navbar__content--initialized){display:grid}.navbar__section--expandable{background-color:transparent;padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;margin:0}.navbar-menu__item{position:relative;display:inline-block}.navbar-menu__item:not(:first-child){margin-left:1rem}.navbar-menu__link{font-size:1.125rem;line-height:1.5}.navbar-menu__submenu-toggle:after{margin-left:.5rem}.navbar-menu__submenu-toggle{z-index:20;position:relative}.navbar-menu__submenu-wrap{display:block;position:absolute;--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity));padding-left:1rem;padding-right:1rem;padding-bottom:1rem;z-index:10;opacity:0;pointer-events:none;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:.2s;min-width:calc(100% + 2rem);padding-top:3.25rem;left:-1rem;top:-1rem}.navbar-menu__submenu-wrap--show{opacity:1;pointer-events:auto}.navbar-menu__submenu .navbar-menu__link{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));font-size:1rem;padding-left:0}}@media (min-width:1366px){.navbar-menu__item:not(:first-child){margin-left:1.5rem}.navbar-menu__link{font-size:1.3rem}}.subnav{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity));--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));font-family:Roboto Condensed,Helvetica,Arial,sans-serif;padding-top:.5rem;padding-bottom:.5rem}.subnav-aside{position:absolute;width:100%}.subnav-aside__close,.subnav-aside__close:hover{display:none;position:absolute;font-size:1.875rem;padding-right:2rem;cursor:pointer;right:0;text-decoration:none}@media (min-width:1200px){.subnav-aside__close,.subnav-aside__close:hover{display:block}}.subnav-aside__item{position:absolute;width:100%;opacity:0;pointer-events:none;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:.5s;padding-top:1rem;padding-bottom:1rem;--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));box-shadow:0 10px 13px -6px rgba(221,221,221,.43),0 21px 33px 3px rgba(221,221,221,.37),0 8px 40px 7px rgba(221,221,221,.35);z-index:50}@media (min-width:992px){.subnav-aside__item{padding-top:2rem;padding-bottom:2rem}}.subnav-aside__item--visible{opacity:1;pointer-events:auto}.region-map__list{-moz-columns:2;columns:2}.region-map__region{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:.5s;fill:#adadad;stroke:#fff;stroke-width:2px;stroke-linejoin:round}.region-map__region--current{fill:#840048}.candidate-detail__hero{z-index:-1}.candidate-detail__sidebar{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}@media (min-width:992px){.candidate-detail__sidebar{margin-top:-6rem}}.candidate-detail__avatar{margin-top:-9rem}@media (min-width:992px){.candidate-detail__avatar{margin-top:-11rem}}.space-x-1>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.25rem * var(--space-x-reverse));margin-left:calc(.25rem * calc(1 - var(--space-x-reverse)))}.space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.5rem * var(--space-y-reverse))}.space-x-2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.5rem * var(--space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--space-x-reverse)))}.space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1rem * var(--space-y-reverse))}.space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1rem * var(--space-x-reverse));margin-left:calc(1rem * calc(1 - var(--space-x-reverse)))}.space-y-8>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2rem * var(--space-y-reverse))}.space-x-8>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2rem * var(--space-x-reverse));margin-left:calc(2rem * calc(1 - var(--space-x-reverse)))}.space-y-12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3rem * var(--space-y-reverse))}.space-y-16>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(4rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(4rem * var(--space-y-reverse))}.space-x-16>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(4rem * var(--space-x-reverse));margin-left:calc(4rem * calc(1 - var(--space-x-reverse)))}.space-x-0\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.125rem * var(--space-x-reverse));margin-left:calc(.125rem * calc(1 - var(--space-x-reverse)))}.divide-x>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(1px * var(--divide-x-reverse));border-left-width:calc(1px * calc(1 - var(--divide-x-reverse)))}.bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.bg-grey-50{--bg-opacity:1;background-color:#f7f7f7;background-color:rgba(247,247,247,var(--bg-opacity))}.bg-grey-100{--bg-opacity:1;background-color:#f3f3f3;background-color:rgba(243,243,243,var(--bg-opacity))}.bg-grey-125{--bg-opacity:1;background-color:#f0f0f0;background-color:rgba(240,240,240,var(--bg-opacity))}.bg-grey-200{--bg-opacity:1;background-color:#adadad;background-color:rgba(173,173,173,var(--bg-opacity))}.bg-grey-300{--bg-opacity:1;background-color:#4c4c4c;background-color:rgba(76,76,76,var(--bg-opacity))}.bg-grey-400{--bg-opacity:1;background-color:#343434;background-color:rgba(52,52,52,var(--bg-opacity))}.bg-grey-500{--bg-opacity:1;background-color:#303132;background-color:rgba(48,49,50,var(--bg-opacity))}.bg-grey-600{--bg-opacity:1;background-color:#262626;background-color:rgba(38,38,38,var(--bg-opacity))}.bg-grey-700{--bg-opacity:1;background-color:#202020;background-color:rgba(32,32,32,var(--bg-opacity))}.bg-grey-800{--bg-opacity:1;background-color:#1f1f1f;background-color:rgba(31,31,31,var(--bg-opacity))}.bg-green-100{--bg-opacity:1;background-color:#d6e8b3;background-color:rgba(214,232,179,var(--bg-opacity))}.bg-green-200{--bg-opacity:1;background-color:#92c6ab;background-color:rgba(146,198,171,var(--bg-opacity))}.bg-red-600{--bg-opacity:1;background-color:#d60d53;background-color:rgba(214,13,83,var(--bg-opacity))}.bg-brands-facebook{--bg-opacity:1;background-color:#067ceb;background-color:rgba(6,124,235,var(--bg-opacity))}.bg-brands-twitter{--bg-opacity:1;background-color:#00c9ff;background-color:rgba(0,201,255,var(--bg-opacity))}.bg-brands-gmail{--bg-opacity:1;background-color:#ec230e;background-color:rgba(236,35,14,var(--bg-opacity))}.bg-brands-linkedin{--bg-opacity:1;background-color:#0066a9;background-color:rgba(0,102,169,var(--bg-opacity))}.bg-blue-100{--bg-opacity:1;background-color:#abcdef;background-color:rgba(171,205,239,var(--bg-opacity))}.bg-blue-200{--bg-opacity:1;background-color:#76b4cf;background-color:rgba(118,180,207,var(--bg-opacity))}.bg-blue-300{--bg-opacity:1;background-color:#027da8;background-color:rgba(2,125,168,var(--bg-opacity))}.bg-cyan-100{--bg-opacity:1;background-color:#a7d4d1;background-color:rgba(167,212,209,var(--bg-opacity))}.bg-cyan-200{--bg-opacity:1;background-color:#57b3bd;background-color:rgba(87,179,189,var(--bg-opacity))}.bg-cyan-300{--bg-opacity:1;background-color:#3e8793;background-color:rgba(62,135,147,var(--bg-opacity))}.bg-cyan-400{--bg-opacity:1;background-color:#497280;background-color:rgba(73,114,128,var(--bg-opacity))}.bg-cyan-500{--bg-opacity:1;background-color:#004958;background-color:rgba(0,73,88,var(--bg-opacity))}.bg-orange-100{--bg-opacity:1;background-color:#f2d29f;background-color:rgba(242,210,159,var(--bg-opacity))}.bg-orange-200{--bg-opacity:1;background-color:#f1ae7b;background-color:rgba(241,174,123,var(--bg-opacity))}.bg-orange-300{--bg-opacity:1;background-color:#ed9654;background-color:rgba(237,150,84,var(--bg-opacity))}.bg-violet-100{--bg-opacity:1;background-color:#edc8bd;background-color:rgba(237,200,189,var(--bg-opacity))}.bg-violet-200{--bg-opacity:1;background-color:#d28c94;background-color:rgba(210,140,148,var(--bg-opacity))}.bg-violet-300{--bg-opacity:1;background-color:#8d415f;background-color:rgba(141,65,95,var(--bg-opacity))}.bg-violet-400{--bg-opacity:1;background-color:#840048;background-color:rgba(132,0,72,var(--bg-opacity))}.bg-violet-500{--bg-opacity:1;background-color:#670047;background-color:rgba(103,0,71,var(--bg-opacity))}.hover\:bg-black:hover{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.hover\:bg-grey-125:hover{--bg-opacity:1;background-color:#f0f0f0;background-color:rgba(240,240,240,var(--bg-opacity))}.border-grey-100{--border-opacity:1;border-color:#f3f3f3;border-color:rgba(243,243,243,var(--border-opacity))}.border-grey-400{--border-opacity:1;border-color:#343434;border-color:rgba(52,52,52,var(--border-opacity))}.border-t{border-top-width:1px}.border-b{border-bottom-width:1px}.block{display:block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.flex-col{flex-direction:column}.items-start{align-items:flex-start}.items-center{align-items:center}.self-start{align-self:flex-start}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.flex-grow{flex-grow:1}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-first{order:-9999}.font-alt{font-family:Bebas Neue,Helvetica,Arial,sans-serif}.font-body{font-family:Roboto,Helvetica,Arial,sans-serif}.font-condensed{font-family:Roboto Condensed,Helvetica,Arial,sans-serif}.font-light{font-weight:300}.font-medium{font-weight:500}.font-bold{font-weight:700}.h-0{height:0}.h-1{height:.25rem}.h-2{height:.5rem}.h-3{height:.75rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-8{height:2rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-16{height:4rem}.h-20{height:5rem}.h-24{height:6rem}.h-28{height:7rem}.h-32{height:8rem}.h-36{height:9rem}.h-40{height:10rem}.h-44{height:11rem}.h-48{height:12rem}.h-52{height:13rem}.h-56{height:14rem}.h-64{height:16rem}.h-80{height:20rem}.h-0\/5{height:.125rem}.h-full{height:100%}.text-2xs{font-size:.65rem}.text-xs{font-size:.75rem}.text-sm{font-size:.875rem}.text-base{font-size:1rem}.text-lg{font-size:1.125rem}.text-xl{font-size:1.3rem}.text-2xl{font-size:1.6rem}.text-3xl{font-size:1.875rem}.text-4xl{font-size:2.45rem}.text-5xl{font-size:3rem}.text-6xl{font-size:4rem}.text-7xl{font-size:5.3rem}.text-8xl{font-size:6.5rem}.text-9xl{font-size:7.5rem}.leading-tight{line-height:1.25}.leading-snug{line-height:1.375}.leading-normal{line-height:1.5}.leading-relaxed{line-height:1.625}.leading-loose{line-height:2}.m-0{margin:0}.m-1{margin:.25rem}.m-2{margin:.5rem}.m-3{margin:.75rem}.m-4{margin:1rem}.m-5{margin:1.25rem}.m-6{margin:1.5rem}.m-8{margin:2rem}.m-10{margin:2.5rem}.m-12{margin:3rem}.m-16{margin:4rem}.m-20{margin:5rem}.m-24{margin:6rem}.m-28{margin:7rem}.m-32{margin:8rem}.m-36{margin:9rem}.m-40{margin:10rem}.m-44{margin:11rem}.m-48{margin:12rem}.m-52{margin:13rem}.m-56{margin:14rem}.m-64{margin:16rem}.m-80{margin:20rem}.m-auto{margin:auto}.m-0\/5{margin:.125rem}.my-0{margin-top:0;margin-bottom:0}.mx-0{margin-left:0;margin-right:0}.my-1{margin-top:.25rem;margin-bottom:.25rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.my-2{margin-top:.5rem;margin-bottom:.5rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.my-3{margin-top:.75rem;margin-bottom:.75rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.my-4{margin-top:1rem;margin-bottom:1rem}.mx-4{margin-left:1rem;margin-right:1rem}.my-5{margin-top:1.25rem;margin-bottom:1.25rem}.mx-5{margin-left:1.25rem;margin-right:1.25rem}.my-6{margin-top:1.5rem;margin-bottom:1.5rem}.mx-6{margin-left:1.5rem;margin-right:1.5rem}.my-8{margin-top:2rem;margin-bottom:2rem}.mx-8{margin-left:2rem;margin-right:2rem}.my-10{margin-top:2.5rem;margin-bottom:2.5rem}.mx-10{margin-left:2.5rem;margin-right:2.5rem}.my-12{margin-top:3rem;margin-bottom:3rem}.mx-12{margin-left:3rem;margin-right:3rem}.my-16{margin-top:4rem;margin-bottom:4rem}.mx-16{margin-left:4rem;margin-right:4rem}.my-20{margin-top:5rem;margin-bottom:5rem}.mx-20{margin-left:5rem;margin-right:5rem}.my-24{margin-top:6rem;margin-bottom:6rem}.mx-24{margin-left:6rem;margin-right:6rem}.my-28{margin-top:7rem;margin-bottom:7rem}.mx-28{margin-left:7rem;margin-right:7rem}.my-32{margin-top:8rem;margin-bottom:8rem}.mx-32{margin-left:8rem;margin-right:8rem}.my-36{margin-top:9rem;margin-bottom:9rem}.mx-36{margin-left:9rem;margin-right:9rem}.my-40{margin-top:10rem;margin-bottom:10rem}.mx-40{margin-left:10rem;margin-right:10rem}.my-44{margin-top:11rem;margin-bottom:11rem}.mx-44{margin-left:11rem;margin-right:11rem}.my-48{margin-top:12rem;margin-bottom:12rem}.mx-48{margin-left:12rem;margin-right:12rem}.my-52{margin-top:13rem;margin-bottom:13rem}.mx-52{margin-left:13rem;margin-right:13rem}.my-56{margin-top:14rem;margin-bottom:14rem}.mx-56{margin-left:14rem;margin-right:14rem}.my-64{margin-top:16rem;margin-bottom:16rem}.mx-64{margin-left:16rem;margin-right:16rem}.my-80{margin-top:20rem;margin-bottom:20rem}.mx-80{margin-left:20rem;margin-right:20rem}.my-0\/5{margin-top:.125rem;margin-bottom:.125rem}.mx-0\/5{margin-left:.125rem;margin-right:.125rem}.mt-0{margin-top:0}.mr-0{margin-right:0}.mb-0{margin-bottom:0}.ml-0{margin-left:0}.mt-1{margin-top:.25rem}.mr-1{margin-right:.25rem}.mb-1{margin-bottom:.25rem}.ml-1{margin-left:.25rem}.mt-2{margin-top:.5rem}.mr-2{margin-right:.5rem}.mb-2{margin-bottom:.5rem}.ml-2{margin-left:.5rem}.mt-3{margin-top:.75rem}.mr-3{margin-right:.75rem}.mb-3{margin-bottom:.75rem}.ml-3{margin-left:.75rem}.mt-4{margin-top:1rem}.mr-4{margin-right:1rem}.mb-4{margin-bottom:1rem}.ml-4{margin-left:1rem}.mt-5{margin-top:1.25rem}.mr-5{margin-right:1.25rem}.mb-5{margin-bottom:1.25rem}.ml-5{margin-left:1.25rem}.mt-6{margin-top:1.5rem}.mr-6{margin-right:1.5rem}.mb-6{margin-bottom:1.5rem}.ml-6{margin-left:1.5rem}.mt-8{margin-top:2rem}.mr-8{margin-right:2rem}.mb-8{margin-bottom:2rem}.ml-8{margin-left:2rem}.mt-10{margin-top:2.5rem}.mr-10{margin-right:2.5rem}.mb-10{margin-bottom:2.5rem}.ml-10{margin-left:2.5rem}.mt-12{margin-top:3rem}.mr-12{margin-right:3rem}.mb-12{margin-bottom:3rem}.ml-12{margin-left:3rem}.mt-16{margin-top:4rem}.mr-16{margin-right:4rem}.mb-16{margin-bottom:4rem}.ml-16{margin-left:4rem}.mt-20{margin-top:5rem}.mr-20{margin-right:5rem}.mb-20{margin-bottom:5rem}.ml-20{margin-left:5rem}.mt-24{margin-top:6rem}.mr-24{margin-right:6rem}.mb-24{margin-bottom:6rem}.ml-24{margin-left:6rem}.mt-28{margin-top:7rem}.mr-28{margin-right:7rem}.mb-28{margin-bottom:7rem}.ml-28{margin-left:7rem}.mt-32{margin-top:8rem}.mr-32{margin-right:8rem}.mb-32{margin-bottom:8rem}.ml-32{margin-left:8rem}.mt-36{margin-top:9rem}.mr-36{margin-right:9rem}.mb-36{margin-bottom:9rem}.ml-36{margin-left:9rem}.mt-40{margin-top:10rem}.mr-40{margin-right:10rem}.mb-40{margin-bottom:10rem}.ml-40{margin-left:10rem}.mt-44{margin-top:11rem}.mr-44{margin-right:11rem}.mb-44{margin-bottom:11rem}.ml-44{margin-left:11rem}.mt-48{margin-top:12rem}.mr-48{margin-right:12rem}.mb-48{margin-bottom:12rem}.ml-48{margin-left:12rem}.mt-52{margin-top:13rem}.mr-52{margin-right:13rem}.mb-52{margin-bottom:13rem}.ml-52{margin-left:13rem}.mt-56{margin-top:14rem}.mr-56{margin-right:14rem}.mb-56{margin-bottom:14rem}.ml-56{margin-left:14rem}.mt-64{margin-top:16rem}.mr-64{margin-right:16rem}.mb-64{margin-bottom:16rem}.ml-64{margin-left:16rem}.mt-80{margin-top:20rem}.mr-80{margin-right:20rem}.mb-80{margin-bottom:20rem}.ml-80{margin-left:20rem}.mt-0\/5{margin-top:.125rem}.mr-0\/5{margin-right:.125rem}.mb-0\/5{margin-bottom:.125rem}.ml-0\/5{margin-left:.125rem}.max-w-none{max-width:none}.max-w-xs{max-width:20rem}.max-w-sm{max-width:24rem}.max-w-md{max-width:28rem}.max-w-lg{max-width:32rem}.max-w-xl{max-width:36rem}.max-w-2xl{max-width:42rem}.max-w-3xl{max-width:48rem}.max-w-4xl{max-width:56rem}.max-w-5xl{max-width:64rem}.max-w-6xl{max-width:72rem}.max-w-full{max-width:100%}.max-w-screen-sm{max-width:576px}.max-w-screen-md{max-width:768px}.max-w-screen-lg{max-width:992px}.max-w-screen-xl{max-width:1200px}.max-w-screen-2xl{max-width:1366px}.max-w-xxs{max-width:16rem}.object-contain{-o-object-fit:contain;object-fit:contain}.object-cover{-o-object-fit:cover;object-fit:cover}.overflow-hidden{overflow:hidden}.p-0{padding:0}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.p-10{padding:2.5rem}.p-12{padding:3rem}.p-16{padding:4rem}.p-20{padding:5rem}.p-24{padding:6rem}.p-28{padding:7rem}.p-32{padding:8rem}.p-36{padding:9rem}.p-40{padding:10rem}.p-44{padding:11rem}.p-48{padding:12rem}.p-52{padding:13rem}.p-56{padding:14rem}.p-64{padding:16rem}.p-80{padding:20rem}.p-0\/5{padding:.125rem}.py-0{padding-top:0;padding-bottom:0}.px-0{padding-left:0;padding-right:0}.py-1{padding-top:.25rem;padding-bottom:.25rem}.px-1{padding-left:.25rem;padding-right:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-4{padding-left:1rem;padding-right:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-8{padding-top:2rem;padding-bottom:2rem}.px-8{padding-left:2rem;padding-right:2rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.px-10{padding-left:2.5rem;padding-right:2.5rem}.py-12{padding-top:3rem;padding-bottom:3rem}.px-12{padding-left:3rem;padding-right:3rem}.py-16{padding-top:4rem;padding-bottom:4rem}.px-16{padding-left:4rem;padding-right:4rem}.py-20{padding-top:5rem;padding-bottom:5rem}.px-20{padding-left:5rem;padding-right:5rem}.py-24{padding-top:6rem;padding-bottom:6rem}.px-24{padding-left:6rem;padding-right:6rem}.py-28{padding-top:7rem;padding-bottom:7rem}.px-28{padding-left:7rem;padding-right:7rem}.py-32{padding-top:8rem;padding-bottom:8rem}.px-32{padding-left:8rem;padding-right:8rem}.py-36{padding-top:9rem;padding-bottom:9rem}.px-36{padding-left:9rem;padding-right:9rem}.py-40{padding-top:10rem;padding-bottom:10rem}.px-40{padding-left:10rem;padding-right:10rem}.py-44{padding-top:11rem;padding-bottom:11rem}.px-44{padding-left:11rem;padding-right:11rem}.py-48{padding-top:12rem;padding-bottom:12rem}.px-48{padding-left:12rem;padding-right:12rem}.py-52{padding-top:13rem;padding-bottom:13rem}.px-52{padding-left:13rem;padding-right:13rem}.py-56{padding-top:14rem;padding-bottom:14rem}.px-56{padding-left:14rem;padding-right:14rem}.py-64{padding-top:16rem;padding-bottom:16rem}.px-64{padding-left:16rem;padding-right:16rem}.py-80{padding-top:20rem;padding-bottom:20rem}.px-80{padding-left:20rem;padding-right:20rem}.py-0\/5{padding-top:.125rem;padding-bottom:.125rem}.px-0\/5{padding-left:.125rem;padding-right:.125rem}.pt-0{padding-top:0}.pr-0{padding-right:0}.pb-0{padding-bottom:0}.pl-0{padding-left:0}.pt-1{padding-top:.25rem}.pr-1{padding-right:.25rem}.pb-1{padding-bottom:.25rem}.pl-1{padding-left:.25rem}.pt-2{padding-top:.5rem}.pr-2{padding-right:.5rem}.pb-2{padding-bottom:.5rem}.pl-2{padding-left:.5rem}.pt-3{padding-top:.75rem}.pr-3{padding-right:.75rem}.pb-3{padding-bottom:.75rem}.pl-3{padding-left:.75rem}.pt-4{padding-top:1rem}.pr-4{padding-right:1rem}.pb-4{padding-bottom:1rem}.pl-4{padding-left:1rem}.pt-5{padding-top:1.25rem}.pr-5{padding-right:1.25rem}.pb-5{padding-bottom:1.25rem}.pl-5{padding-left:1.25rem}.pt-6{padding-top:1.5rem}.pr-6{padding-right:1.5rem}.pb-6{padding-bottom:1.5rem}.pl-6{padding-left:1.5rem}.pt-8{padding-top:2rem}.pr-8{padding-right:2rem}.pb-8{padding-bottom:2rem}.pl-8{padding-left:2rem}.pt-10{padding-top:2.5rem}.pr-10{padding-right:2.5rem}.pb-10{padding-bottom:2.5rem}.pl-10{padding-left:2.5rem}.pt-12{padding-top:3rem}.pr-12{padding-right:3rem}.pb-12{padding-bottom:3rem}.pl-12{padding-left:3rem}.pt-16{padding-top:4rem}.pr-16{padding-right:4rem}.pb-16{padding-bottom:4rem}.pl-16{padding-left:4rem}.pt-20{padding-top:5rem}.pr-20{padding-right:5rem}.pb-20{padding-bottom:5rem}.pl-20{padding-left:5rem}.pt-24{padding-top:6rem}.pr-24{padding-right:6rem}.pb-24{padding-bottom:6rem}.pl-24{padding-left:6rem}.pt-28{padding-top:7rem}.pr-28{padding-right:7rem}.pb-28{padding-bottom:7rem}.pl-28{padding-left:7rem}.pt-32{padding-top:8rem}.pr-32{padding-right:8rem}.pb-32{padding-bottom:8rem}.pl-32{padding-left:8rem}.pt-36{padding-top:9rem}.pr-36{padding-right:9rem}.pb-36{padding-bottom:9rem}.pl-36{padding-left:9rem}.pt-40{padding-top:10rem}.pr-40{padding-right:10rem}.pb-40{padding-bottom:10rem}.pl-40{padding-left:10rem}.pt-44{padding-top:11rem}.pr-44{padding-right:11rem}.pb-44{padding-bottom:11rem}.pl-44{padding-left:11rem}.pt-48{padding-top:12rem}.pr-48{padding-right:12rem}.pb-48{padding-bottom:12rem}.pl-48{padding-left:12rem}.pt-52{padding-top:13rem}.pr-52{padding-right:13rem}.pb-52{padding-bottom:13rem}.pl-52{padding-left:13rem}.pt-56{padding-top:14rem}.pr-56{padding-right:14rem}.pb-56{padding-bottom:14rem}.pl-56{padding-left:14rem}.pt-64{padding-top:16rem}.pr-64{padding-right:16rem}.pb-64{padding-bottom:16rem}.pl-64{padding-left:16rem}.pt-80{padding-top:20rem}.pr-80{padding-right:20rem}.pb-80{padding-bottom:20rem}.pl-80{padding-left:20rem}.pt-0\/5{padding-top:.125rem}.pr-0\/5{padding-right:.125rem}.pb-0\/5{padding-bottom:.125rem}.pl-0\/5{padding-left:.125rem}.resize{resize:both}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-justify{text-align:justify}.text-transparent{color:transparent}.text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.text-grey-25{--text-opacity:1;color:#fafafa;color:rgba(250,250,250,var(--text-opacity))}.text-grey-50{--text-opacity:1;color:#f7f7f7;color:rgba(247,247,247,var(--text-opacity))}.text-grey-100{--text-opacity:1;color:#f3f3f3;color:rgba(243,243,243,var(--text-opacity))}.text-grey-125{--text-opacity:1;color:#f0f0f0;color:rgba(240,240,240,var(--text-opacity))}.text-grey-200{--text-opacity:1;color:#adadad;color:rgba(173,173,173,var(--text-opacity))}.text-grey-300{--text-opacity:1;color:#4c4c4c;color:rgba(76,76,76,var(--text-opacity))}.text-grey-400{--text-opacity:1;color:#343434;color:rgba(52,52,52,var(--text-opacity))}.text-grey-500{--text-opacity:1;color:#303132;color:rgba(48,49,50,var(--text-opacity))}.text-grey-600{--text-opacity:1;color:#262626;color:rgba(38,38,38,var(--text-opacity))}.text-grey-700{--text-opacity:1;color:#202020;color:rgba(32,32,32,var(--text-opacity))}.text-grey-800{--text-opacity:1;color:#1f1f1f;color:rgba(31,31,31,var(--text-opacity))}.text-green-100{--text-opacity:1;color:#d6e8b3;color:rgba(214,232,179,var(--text-opacity))}.text-green-200{--text-opacity:1;color:#92c6ab;color:rgba(146,198,171,var(--text-opacity))}.text-green-300{--text-opacity:1;color:#7bba9a;color:rgba(123,186,154,var(--text-opacity))}.text-red-600{--text-opacity:1;color:#d60d53;color:rgba(214,13,83,var(--text-opacity))}.text-brands-facebook{--text-opacity:1;color:#067ceb;color:rgba(6,124,235,var(--text-opacity))}.text-brands-twitter{--text-opacity:1;color:#00c9ff;color:rgba(0,201,255,var(--text-opacity))}.text-brands-gmail{--text-opacity:1;color:#ec230e;color:rgba(236,35,14,var(--text-opacity))}.text-brands-linkedin{--text-opacity:1;color:#0066a9;color:rgba(0,102,169,var(--text-opacity))}.text-blue-100{--text-opacity:1;color:#abcdef;color:rgba(171,205,239,var(--text-opacity))}.text-blue-200{--text-opacity:1;color:#76b4cf;color:rgba(118,180,207,var(--text-opacity))}.text-blue-300{--text-opacity:1;color:#027da8;color:rgba(2,125,168,var(--text-opacity))}.text-cyan-100{--text-opacity:1;color:#a7d4d1;color:rgba(167,212,209,var(--text-opacity))}.text-cyan-200{--text-opacity:1;color:#57b3bd;color:rgba(87,179,189,var(--text-opacity))}.text-cyan-300{--text-opacity:1;color:#3e8793;color:rgba(62,135,147,var(--text-opacity))}.text-cyan-400{--text-opacity:1;color:#497280;color:rgba(73,114,128,var(--text-opacity))}.text-cyan-500{--text-opacity:1;color:#004958;color:rgba(0,73,88,var(--text-opacity))}.text-orange-100{--text-opacity:1;color:#f2d29f;color:rgba(242,210,159,var(--text-opacity))}.text-orange-200{--text-opacity:1;color:#f1ae7b;color:rgba(241,174,123,var(--text-opacity))}.text-orange-300{--text-opacity:1;color:#ed9654;color:rgba(237,150,84,var(--text-opacity))}.text-violet-100{--text-opacity:1;color:#edc8bd;color:rgba(237,200,189,var(--text-opacity))}.text-violet-200{--text-opacity:1;color:#d28c94;color:rgba(210,140,148,var(--text-opacity))}.text-violet-300{--text-opacity:1;color:#8d415f;color:rgba(141,65,95,var(--text-opacity))}.text-violet-400{--text-opacity:1;color:#840048;color:rgba(132,0,72,var(--text-opacity))}.text-violet-500{--text-opacity:1;color:#670047;color:rgba(103,0,71,var(--text-opacity))}.hover\:text-black:hover{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.hover\:text-white:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.text-opacity-0{--text-opacity:0}.text-opacity-25{--text-opacity:0.25}.text-opacity-50{--text-opacity:0.5}.text-opacity-75{--text-opacity:0.75}.text-opacity-85{--text-opacity:0.85}.text-opacity-100{--text-opacity:1}.italic{font-style:italic}.uppercase{text-transform:uppercase}.underline{text-decoration:underline}.no-underline{text-decoration:none}.hover\:no-underline:hover{text-decoration:none}.whitespace-no-wrap{white-space:nowrap}.w-0{width:0}.w-1{width:.25rem}.w-2{width:.5rem}.w-3{width:.75rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-8{width:2rem}.w-10{width:2.5rem}.w-12{width:3rem}.w-16{width:4rem}.w-20{width:5rem}.w-24{width:6rem}.w-28{width:7rem}.w-32{width:8rem}.w-36{width:9rem}.w-40{width:10rem}.w-44{width:11rem}.w-48{width:12rem}.w-52{width:13rem}.w-56{width:14rem}.w-64{width:16rem}.w-80{width:20rem}.w-0\/5{width:.125rem}.w-1\/2{width:50%}.w-1\/3{width:33.333333%}.w-2\/3{width:66.666667%}.w-1\/4{width:25%}.w-2\/4{width:50%}.w-3\/4{width:75%}.w-1\/5{width:20%}.w-2\/5{width:40%}.w-3\/5{width:60%}.w-4\/5{width:80%}.w-1\/6{width:16.666667%}.w-2\/6{width:33.333333%}.w-3\/6{width:50%}.w-4\/6{width:66.666667%}.w-5\/6{width:83.333333%}.w-1\/12{width:8.333333%}.w-2\/12{width:16.666667%}.w-3\/12{width:25%}.w-4\/12{width:33.333333%}.w-5\/12{width:41.666667%}.w-6\/12{width:50%}.w-7\/12{width:58.333333%}.w-8\/12{width:66.666667%}.w-9\/12{width:75%}.w-10\/12{width:83.333333%}.w-11\/12{width:91.666667%}.w-full{width:100%}.gap-2{grid-gap:.5rem;gap:.5rem}.gap-4{grid-gap:1rem;gap:1rem}.gap-8{grid-gap:2rem;gap:2rem}.col-gap-4{grid-column-gap:1rem;-moz-column-gap:1rem;column-gap:1rem}.col-gap-8{grid-column-gap:2rem;-moz-column-gap:2rem;column-gap:2rem}.row-gap-6{grid-row-gap:1.5rem;row-gap:1.5rem}.row-gap-8{grid-row-gap:2rem;row-gap:2rem}.grid-flow-row{grid-auto-flow:row}.grid-flow-col{grid-auto-flow:column}.grid-flow-row-dense{grid-auto-flow:row dense}.grid-flow-col-dense{grid-auto-flow:column dense}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.grid-cols-none{grid-template-columns:none}.col-span-1{grid-column:span 1/span 1}.col-span-2{grid-column:span 2/span 2}.col-span-3{grid-column:span 3/span 3}.col-span-4{grid-column:span 4/span 4}.col-span-5{grid-column:span 5/span 5}.col-span-6{grid-column:span 6/span 6}.col-span-7{grid-column:span 7/span 7}.col-span-8{grid-column:span 8/span 8}.col-span-9{grid-column:span 9/span 9}.col-span-10{grid-column:span 10/span 10}.col-span-11{grid-column:span 11/span 11}.col-span-12{grid-column:span 12/span 12}.row-span-1{grid-row:span 1/span 1}.row-span-2{grid-row:span 2/span 2}.row-span-3{grid-row:span 3/span 3}.row-span-4{grid-row:span 4/span 4}.row-span-5{grid-row:span 5/span 5}.row-span-6{grid-row:span 6/span 6}.transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform}.duration-200{transition-duration:.2s}.hover\:line-white:hover{-webkit-text-decoration-color:#fff;text-decoration-color:#fff}.text-rendering-auto{text-rendering:auto}.text-optimize-legibility{text-rendering:optimizeLegibility}.text-optimize-speed{text-rendering:optimizeSpeed}.text-geometric-precision{text-rendering:geometricPrecision}.elevation-0{box-shadow:0 0 0 0 rgba(221,221,221,.43),0 0 0 0 rgba(221,221,221,.37),0 0 0 0 rgba(221,221,221,.35)}.elevation-1{box-shadow:0 2px 1px -1px rgba(221,221,221,.43),0 1px 1px 0 rgba(221,221,221,.37),0 1px 3px 0 rgba(221,221,221,.35)}.elevation-2{box-shadow:0 3px 1px -2px rgba(221,221,221,.43),0 2px 2px 0 rgba(221,221,221,.37),0 1px 5px 0 rgba(221,221,221,.35)}.elevation-3{box-shadow:0 3px 3px -2px rgba(221,221,221,.43),0 3px 4px 0 rgba(221,221,221,.37),0 1px 8px 0 rgba(221,221,221,.35)}.elevation-4{box-shadow:0 2px 4px -1px rgba(221,221,221,.43),0 4px 5px 0 rgba(221,221,221,.37),0 1px 10px 0 rgba(221,221,221,.35)}.elevation-5{box-shadow:0 3px 5px -1px rgba(221,221,221,.43),0 5px 8px 0 rgba(221,221,221,.37),0 1px 14px 0 rgba(221,221,221,.35)}.elevation-6{box-shadow:0 3px 5px -1px rgba(221,221,221,.43),0 6px 10px 0 rgba(221,221,221,.37),0 1px 18px 0 rgba(221,221,221,.35)}.elevation-7{box-shadow:0 4px 5px -2px rgba(221,221,221,.43),0 7px 10px 1px rgba(221,221,221,.37),0 2px 16px 1px rgba(221,221,221,.35)}.elevation-8{box-shadow:0 5px 5px -3px rgba(221,221,221,.43),0 8px 10px 1px rgba(221,221,221,.37),0 3px 14px 2px rgba(221,221,221,.35)}.elevation-9{box-shadow:0 5px 6px -3px rgba(221,221,221,.43),0 9px 12px 1px rgba(221,221,221,.37),0 3px 16px 2px rgba(221,221,221,.35)}.elevation-21{box-shadow:0 10px 13px -6px rgba(221,221,221,.43),0 21px 33px 3px rgba(221,221,221,.37),0 8px 40px 7px rgba(221,221,221,.35)}.hover\:elevation-10:hover{box-shadow:0 6px 6px -3px rgba(221,221,221,.43),0 10px 14px 1px rgba(221,221,221,.37),0 4px 18px 3px rgba(221,221,221,.35)}.btn.btn--fullwidth{width:100%;max-width:100%}.btn.btn--fullwidth .btn__body-wrap{width:100%;max-width:100%}.btn.btn--fullwidth .btn__body{flex:1}.btn.btn--autowidth{width:auto}::-moz-selection{color:#fff;background:#303132}::selection{color:#fff;background:#303132}:root{font-size:16px}body{font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1rem}a:hover{text-decoration:underline}a.icon-link:hover{text-decoration:none}a.icon-link:hover span{text-decoration:underline}[v-cloak]{display:none}@media (min-width:576px){.sm\:avatar--lg{width:7rem}.sm\:container-padding--auto{margin-left:0;margin-right:0}.content-block .sm\:head-alt-xl,.sm\:head-alt-xl{font-size:5.3rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .sm\:head-alt-lg,.sm\:head-alt-lg{font-size:4rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .sm\:head-alt-md,.sm\:head-alt-md{font-size:2.45rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .sm\:head-alt-base,.sm\:head-alt-base{font-size:1.875rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .sm\:head-alt-sm,.sm\:head-alt-sm{font-size:1.6rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .sm\:head-alt-xs,.sm\:head-alt-xs{font-size:1.3rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .sm\:head-alt-2xs,.sm\:head-alt-2xs{font-size:1.125rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .sm\:head-base,.sm\:head-base{font-size:1.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .sm\:head-sm,.sm\:head-sm{font-size:1.6rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .sm\:head-xs,.sm\:head-xs{font-size:1.3rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .sm\:head-2xs,.sm\:head-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .sm\:head-heavy-base,.sm\:head-heavy-base{font-size:1.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .sm\:head-heavy-sm,.sm\:head-heavy-sm{font-size:1.6rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .sm\:head-heavy-xs,.sm\:head-heavy-xs{font-size:1.3rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .sm\:head-heavy-2xs,.sm\:head-heavy-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .sm\:head-allcaps-2xs,.sm\:head-allcaps-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:400;text-transform:uppercase;line-height:1.25}.content-block .sm\:head-allcaps-3xs,.sm\:head-allcaps-3xs{font-size:1rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:400;text-transform:uppercase;line-height:1.25}.content-block .sm\:head-allcaps-4xs,.sm\:head-allcaps-4xs{font-size:.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:400;text-transform:uppercase;line-height:1.25}.content-block .sm\:head-allcaps-heavy-2xs,.sm\:head-allcaps-heavy-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;text-transform:uppercase;line-height:1.25}.content-block .sm\:head-allcaps-heavy-3xs,.sm\:head-allcaps-heavy-3xs{font-size:1rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;text-transform:uppercase;line-height:1.25}.content-block .sm\:head-allcaps-heavy-4xs,.sm\:head-allcaps-heavy-4xs{font-size:.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;text-transform:uppercase;line-height:1.25}.sm\:candidate-card-list__item-wrapper{padding-left:.5rem;padding-right:.5rem;border-right-width:1px;--border-opacity:1;border-color:#f3f3f3;border-color:rgba(243,243,243,var(--border-opacity))}.sm\:candidate-card-list__item-wrapper--noborder{border-width:0}.sm\:space-y-0>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(0px * var(--space-y-reverse))}.sm\:space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1rem * var(--space-x-reverse));margin-left:calc(1rem * calc(1 - var(--space-x-reverse)))}.sm\:space-x-8>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2rem * var(--space-x-reverse));margin-left:calc(2rem * calc(1 - var(--space-x-reverse)))}.sm\:flex-row{flex-direction:row}.sm\:h-0{height:0}.sm\:h-1{height:.25rem}.sm\:h-2{height:.5rem}.sm\:h-3{height:.75rem}.sm\:h-4{height:1rem}.sm\:h-5{height:1.25rem}.sm\:h-6{height:1.5rem}.sm\:h-8{height:2rem}.sm\:h-10{height:2.5rem}.sm\:h-12{height:3rem}.sm\:h-16{height:4rem}.sm\:h-20{height:5rem}.sm\:h-24{height:6rem}.sm\:h-28{height:7rem}.sm\:h-32{height:8rem}.sm\:h-36{height:9rem}.sm\:h-40{height:10rem}.sm\:h-44{height:11rem}.sm\:h-48{height:12rem}.sm\:h-52{height:13rem}.sm\:h-56{height:14rem}.sm\:h-64{height:16rem}.sm\:h-80{height:20rem}.sm\:h-0\/5{height:.125rem}.sm\:m-0{margin:0}.sm\:m-1{margin:.25rem}.sm\:m-2{margin:.5rem}.sm\:m-3{margin:.75rem}.sm\:m-4{margin:1rem}.sm\:m-5{margin:1.25rem}.sm\:m-6{margin:1.5rem}.sm\:m-8{margin:2rem}.sm\:m-10{margin:2.5rem}.sm\:m-12{margin:3rem}.sm\:m-16{margin:4rem}.sm\:m-20{margin:5rem}.sm\:m-24{margin:6rem}.sm\:m-28{margin:7rem}.sm\:m-32{margin:8rem}.sm\:m-36{margin:9rem}.sm\:m-40{margin:10rem}.sm\:m-44{margin:11rem}.sm\:m-48{margin:12rem}.sm\:m-52{margin:13rem}.sm\:m-56{margin:14rem}.sm\:m-64{margin:16rem}.sm\:m-80{margin:20rem}.sm\:m-0\/5{margin:.125rem}.sm\:my-0{margin-top:0;margin-bottom:0}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:my-1{margin-top:.25rem;margin-bottom:.25rem}.sm\:mx-1{margin-left:.25rem;margin-right:.25rem}.sm\:my-2{margin-top:.5rem;margin-bottom:.5rem}.sm\:mx-2{margin-left:.5rem;margin-right:.5rem}.sm\:my-3{margin-top:.75rem;margin-bottom:.75rem}.sm\:mx-3{margin-left:.75rem;margin-right:.75rem}.sm\:my-4{margin-top:1rem;margin-bottom:1rem}.sm\:mx-4{margin-left:1rem;margin-right:1rem}.sm\:my-5{margin-top:1.25rem;margin-bottom:1.25rem}.sm\:mx-5{margin-left:1.25rem;margin-right:1.25rem}.sm\:my-6{margin-top:1.5rem;margin-bottom:1.5rem}.sm\:mx-6{margin-left:1.5rem;margin-right:1.5rem}.sm\:my-8{margin-top:2rem;margin-bottom:2rem}.sm\:mx-8{margin-left:2rem;margin-right:2rem}.sm\:my-10{margin-top:2.5rem;margin-bottom:2.5rem}.sm\:mx-10{margin-left:2.5rem;margin-right:2.5rem}.sm\:my-12{margin-top:3rem;margin-bottom:3rem}.sm\:mx-12{margin-left:3rem;margin-right:3rem}.sm\:my-16{margin-top:4rem;margin-bottom:4rem}.sm\:mx-16{margin-left:4rem;margin-right:4rem}.sm\:my-20{margin-top:5rem;margin-bottom:5rem}.sm\:mx-20{margin-left:5rem;margin-right:5rem}.sm\:my-24{margin-top:6rem;margin-bottom:6rem}.sm\:mx-24{margin-left:6rem;margin-right:6rem}.sm\:my-28{margin-top:7rem;margin-bottom:7rem}.sm\:mx-28{margin-left:7rem;margin-right:7rem}.sm\:my-32{margin-top:8rem;margin-bottom:8rem}.sm\:mx-32{margin-left:8rem;margin-right:8rem}.sm\:my-36{margin-top:9rem;margin-bottom:9rem}.sm\:mx-36{margin-left:9rem;margin-right:9rem}.sm\:my-40{margin-top:10rem;margin-bottom:10rem}.sm\:mx-40{margin-left:10rem;margin-right:10rem}.sm\:my-44{margin-top:11rem;margin-bottom:11rem}.sm\:mx-44{margin-left:11rem;margin-right:11rem}.sm\:my-48{margin-top:12rem;margin-bottom:12rem}.sm\:mx-48{margin-left:12rem;margin-right:12rem}.sm\:my-52{margin-top:13rem;margin-bottom:13rem}.sm\:mx-52{margin-left:13rem;margin-right:13rem}.sm\:my-56{margin-top:14rem;margin-bottom:14rem}.sm\:mx-56{margin-left:14rem;margin-right:14rem}.sm\:my-64{margin-top:16rem;margin-bottom:16rem}.sm\:mx-64{margin-left:16rem;margin-right:16rem}.sm\:my-80{margin-top:20rem;margin-bottom:20rem}.sm\:mx-80{margin-left:20rem;margin-right:20rem}.sm\:my-0\/5{margin-top:.125rem;margin-bottom:.125rem}.sm\:mx-0\/5{margin-left:.125rem;margin-right:.125rem}.sm\:mt-0{margin-top:0}.sm\:mr-0{margin-right:0}.sm\:mb-0{margin-bottom:0}.sm\:ml-0{margin-left:0}.sm\:mt-1{margin-top:.25rem}.sm\:mr-1{margin-right:.25rem}.sm\:mb-1{margin-bottom:.25rem}.sm\:ml-1{margin-left:.25rem}.sm\:mt-2{margin-top:.5rem}.sm\:mr-2{margin-right:.5rem}.sm\:mb-2{margin-bottom:.5rem}.sm\:ml-2{margin-left:.5rem}.sm\:mt-3{margin-top:.75rem}.sm\:mr-3{margin-right:.75rem}.sm\:mb-3{margin-bottom:.75rem}.sm\:ml-3{margin-left:.75rem}.sm\:mt-4{margin-top:1rem}.sm\:mr-4{margin-right:1rem}.sm\:mb-4{margin-bottom:1rem}.sm\:ml-4{margin-left:1rem}.sm\:mt-5{margin-top:1.25rem}.sm\:mr-5{margin-right:1.25rem}.sm\:mb-5{margin-bottom:1.25rem}.sm\:ml-5{margin-left:1.25rem}.sm\:mt-6{margin-top:1.5rem}.sm\:mr-6{margin-right:1.5rem}.sm\:mb-6{margin-bottom:1.5rem}.sm\:ml-6{margin-left:1.5rem}.sm\:mt-8{margin-top:2rem}.sm\:mr-8{margin-right:2rem}.sm\:mb-8{margin-bottom:2rem}.sm\:ml-8{margin-left:2rem}.sm\:mt-10{margin-top:2.5rem}.sm\:mr-10{margin-right:2.5rem}.sm\:mb-10{margin-bottom:2.5rem}.sm\:ml-10{margin-left:2.5rem}.sm\:mt-12{margin-top:3rem}.sm\:mr-12{margin-right:3rem}.sm\:mb-12{margin-bottom:3rem}.sm\:ml-12{margin-left:3rem}.sm\:mt-16{margin-top:4rem}.sm\:mr-16{margin-right:4rem}.sm\:mb-16{margin-bottom:4rem}.sm\:ml-16{margin-left:4rem}.sm\:mt-20{margin-top:5rem}.sm\:mr-20{margin-right:5rem}.sm\:mb-20{margin-bottom:5rem}.sm\:ml-20{margin-left:5rem}.sm\:mt-24{margin-top:6rem}.sm\:mr-24{margin-right:6rem}.sm\:mb-24{margin-bottom:6rem}.sm\:ml-24{margin-left:6rem}.sm\:mt-28{margin-top:7rem}.sm\:mr-28{margin-right:7rem}.sm\:mb-28{margin-bottom:7rem}.sm\:ml-28{margin-left:7rem}.sm\:mt-32{margin-top:8rem}.sm\:mr-32{margin-right:8rem}.sm\:mb-32{margin-bottom:8rem}.sm\:ml-32{margin-left:8rem}.sm\:mt-36{margin-top:9rem}.sm\:mr-36{margin-right:9rem}.sm\:mb-36{margin-bottom:9rem}.sm\:ml-36{margin-left:9rem}.sm\:mt-40{margin-top:10rem}.sm\:mr-40{margin-right:10rem}.sm\:mb-40{margin-bottom:10rem}.sm\:ml-40{margin-left:10rem}.sm\:mt-44{margin-top:11rem}.sm\:mr-44{margin-right:11rem}.sm\:mb-44{margin-bottom:11rem}.sm\:ml-44{margin-left:11rem}.sm\:mt-48{margin-top:12rem}.sm\:mr-48{margin-right:12rem}.sm\:mb-48{margin-bottom:12rem}.sm\:ml-48{margin-left:12rem}.sm\:mt-52{margin-top:13rem}.sm\:mr-52{margin-right:13rem}.sm\:mb-52{margin-bottom:13rem}.sm\:ml-52{margin-left:13rem}.sm\:mt-56{margin-top:14rem}.sm\:mr-56{margin-right:14rem}.sm\:mb-56{margin-bottom:14rem}.sm\:ml-56{margin-left:14rem}.sm\:mt-64{margin-top:16rem}.sm\:mr-64{margin-right:16rem}.sm\:mb-64{margin-bottom:16rem}.sm\:ml-64{margin-left:16rem}.sm\:mt-80{margin-top:20rem}.sm\:mr-80{margin-right:20rem}.sm\:mb-80{margin-bottom:20rem}.sm\:ml-80{margin-left:20rem}.sm\:mt-0\/5{margin-top:.125rem}.sm\:mr-0\/5{margin-right:.125rem}.sm\:mb-0\/5{margin-bottom:.125rem}.sm\:ml-0\/5{margin-left:.125rem}.sm\:p-0{padding:0}.sm\:p-1{padding:.25rem}.sm\:p-2{padding:.5rem}.sm\:p-3{padding:.75rem}.sm\:p-4{padding:1rem}.sm\:p-5{padding:1.25rem}.sm\:p-6{padding:1.5rem}.sm\:p-8{padding:2rem}.sm\:p-10{padding:2.5rem}.sm\:p-12{padding:3rem}.sm\:p-16{padding:4rem}.sm\:p-20{padding:5rem}.sm\:p-24{padding:6rem}.sm\:p-28{padding:7rem}.sm\:p-32{padding:8rem}.sm\:p-36{padding:9rem}.sm\:p-40{padding:10rem}.sm\:p-44{padding:11rem}.sm\:p-48{padding:12rem}.sm\:p-52{padding:13rem}.sm\:p-56{padding:14rem}.sm\:p-64{padding:16rem}.sm\:p-80{padding:20rem}.sm\:p-0\/5{padding:.125rem}.sm\:py-0{padding-top:0;padding-bottom:0}.sm\:px-0{padding-left:0;padding-right:0}.sm\:py-1{padding-top:.25rem;padding-bottom:.25rem}.sm\:px-1{padding-left:.25rem;padding-right:.25rem}.sm\:py-2{padding-top:.5rem;padding-bottom:.5rem}.sm\:px-2{padding-left:.5rem;padding-right:.5rem}.sm\:py-3{padding-top:.75rem;padding-bottom:.75rem}.sm\:px-3{padding-left:.75rem;padding-right:.75rem}.sm\:py-4{padding-top:1rem;padding-bottom:1rem}.sm\:px-4{padding-left:1rem;padding-right:1rem}.sm\:py-5{padding-top:1.25rem;padding-bottom:1.25rem}.sm\:px-5{padding-left:1.25rem;padding-right:1.25rem}.sm\:py-6{padding-top:1.5rem;padding-bottom:1.5rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:py-8{padding-top:2rem;padding-bottom:2rem}.sm\:px-8{padding-left:2rem;padding-right:2rem}.sm\:py-10{padding-top:2.5rem;padding-bottom:2.5rem}.sm\:px-10{padding-left:2.5rem;padding-right:2.5rem}.sm\:py-12{padding-top:3rem;padding-bottom:3rem}.sm\:px-12{padding-left:3rem;padding-right:3rem}.sm\:py-16{padding-top:4rem;padding-bottom:4rem}.sm\:px-16{padding-left:4rem;padding-right:4rem}.sm\:py-20{padding-top:5rem;padding-bottom:5rem}.sm\:px-20{padding-left:5rem;padding-right:5rem}.sm\:py-24{padding-top:6rem;padding-bottom:6rem}.sm\:px-24{padding-left:6rem;padding-right:6rem}.sm\:py-28{padding-top:7rem;padding-bottom:7rem}.sm\:px-28{padding-left:7rem;padding-right:7rem}.sm\:py-32{padding-top:8rem;padding-bottom:8rem}.sm\:px-32{padding-left:8rem;padding-right:8rem}.sm\:py-36{padding-top:9rem;padding-bottom:9rem}.sm\:px-36{padding-left:9rem;padding-right:9rem}.sm\:py-40{padding-top:10rem;padding-bottom:10rem}.sm\:px-40{padding-left:10rem;padding-right:10rem}.sm\:py-44{padding-top:11rem;padding-bottom:11rem}.sm\:px-44{padding-left:11rem;padding-right:11rem}.sm\:py-48{padding-top:12rem;padding-bottom:12rem}.sm\:px-48{padding-left:12rem;padding-right:12rem}.sm\:py-52{padding-top:13rem;padding-bottom:13rem}.sm\:px-52{padding-left:13rem;padding-right:13rem}.sm\:py-56{padding-top:14rem;padding-bottom:14rem}.sm\:px-56{padding-left:14rem;padding-right:14rem}.sm\:py-64{padding-top:16rem;padding-bottom:16rem}.sm\:px-64{padding-left:16rem;padding-right:16rem}.sm\:py-80{padding-top:20rem;padding-bottom:20rem}.sm\:px-80{padding-left:20rem;padding-right:20rem}.sm\:py-0\/5{padding-top:.125rem;padding-bottom:.125rem}.sm\:px-0\/5{padding-left:.125rem;padding-right:.125rem}.sm\:pt-0{padding-top:0}.sm\:pr-0{padding-right:0}.sm\:pb-0{padding-bottom:0}.sm\:pl-0{padding-left:0}.sm\:pt-1{padding-top:.25rem}.sm\:pr-1{padding-right:.25rem}.sm\:pb-1{padding-bottom:.25rem}.sm\:pl-1{padding-left:.25rem}.sm\:pt-2{padding-top:.5rem}.sm\:pr-2{padding-right:.5rem}.sm\:pb-2{padding-bottom:.5rem}.sm\:pl-2{padding-left:.5rem}.sm\:pt-3{padding-top:.75rem}.sm\:pr-3{padding-right:.75rem}.sm\:pb-3{padding-bottom:.75rem}.sm\:pl-3{padding-left:.75rem}.sm\:pt-4{padding-top:1rem}.sm\:pr-4{padding-right:1rem}.sm\:pb-4{padding-bottom:1rem}.sm\:pl-4{padding-left:1rem}.sm\:pt-5{padding-top:1.25rem}.sm\:pr-5{padding-right:1.25rem}.sm\:pb-5{padding-bottom:1.25rem}.sm\:pl-5{padding-left:1.25rem}.sm\:pt-6{padding-top:1.5rem}.sm\:pr-6{padding-right:1.5rem}.sm\:pb-6{padding-bottom:1.5rem}.sm\:pl-6{padding-left:1.5rem}.sm\:pt-8{padding-top:2rem}.sm\:pr-8{padding-right:2rem}.sm\:pb-8{padding-bottom:2rem}.sm\:pl-8{padding-left:2rem}.sm\:pt-10{padding-top:2.5rem}.sm\:pr-10{padding-right:2.5rem}.sm\:pb-10{padding-bottom:2.5rem}.sm\:pl-10{padding-left:2.5rem}.sm\:pt-12{padding-top:3rem}.sm\:pr-12{padding-right:3rem}.sm\:pb-12{padding-bottom:3rem}.sm\:pl-12{padding-left:3rem}.sm\:pt-16{padding-top:4rem}.sm\:pr-16{padding-right:4rem}.sm\:pb-16{padding-bottom:4rem}.sm\:pl-16{padding-left:4rem}.sm\:pt-20{padding-top:5rem}.sm\:pr-20{padding-right:5rem}.sm\:pb-20{padding-bottom:5rem}.sm\:pl-20{padding-left:5rem}.sm\:pt-24{padding-top:6rem}.sm\:pr-24{padding-right:6rem}.sm\:pb-24{padding-bottom:6rem}.sm\:pl-24{padding-left:6rem}.sm\:pt-28{padding-top:7rem}.sm\:pr-28{padding-right:7rem}.sm\:pb-28{padding-bottom:7rem}.sm\:pl-28{padding-left:7rem}.sm\:pt-32{padding-top:8rem}.sm\:pr-32{padding-right:8rem}.sm\:pb-32{padding-bottom:8rem}.sm\:pl-32{padding-left:8rem}.sm\:pt-36{padding-top:9rem}.sm\:pr-36{padding-right:9rem}.sm\:pb-36{padding-bottom:9rem}.sm\:pl-36{padding-left:9rem}.sm\:pt-40{padding-top:10rem}.sm\:pr-40{padding-right:10rem}.sm\:pb-40{padding-bottom:10rem}.sm\:pl-40{padding-left:10rem}.sm\:pt-44{padding-top:11rem}.sm\:pr-44{padding-right:11rem}.sm\:pb-44{padding-bottom:11rem}.sm\:pl-44{padding-left:11rem}.sm\:pt-48{padding-top:12rem}.sm\:pr-48{padding-right:12rem}.sm\:pb-48{padding-bottom:12rem}.sm\:pl-48{padding-left:12rem}.sm\:pt-52{padding-top:13rem}.sm\:pr-52{padding-right:13rem}.sm\:pb-52{padding-bottom:13rem}.sm\:pl-52{padding-left:13rem}.sm\:pt-56{padding-top:14rem}.sm\:pr-56{padding-right:14rem}.sm\:pb-56{padding-bottom:14rem}.sm\:pl-56{padding-left:14rem}.sm\:pt-64{padding-top:16rem}.sm\:pr-64{padding-right:16rem}.sm\:pb-64{padding-bottom:16rem}.sm\:pl-64{padding-left:16rem}.sm\:pt-80{padding-top:20rem}.sm\:pr-80{padding-right:20rem}.sm\:pb-80{padding-bottom:20rem}.sm\:pl-80{padding-left:20rem}.sm\:pt-0\/5{padding-top:.125rem}.sm\:pr-0\/5{padding-right:.125rem}.sm\:pb-0\/5{padding-bottom:.125rem}.sm\:pl-0\/5{padding-left:.125rem}.sm\:w-0{width:0}.sm\:w-1{width:.25rem}.sm\:w-2{width:.5rem}.sm\:w-3{width:.75rem}.sm\:w-4{width:1rem}.sm\:w-5{width:1.25rem}.sm\:w-6{width:1.5rem}.sm\:w-8{width:2rem}.sm\:w-10{width:2.5rem}.sm\:w-12{width:3rem}.sm\:w-16{width:4rem}.sm\:w-20{width:5rem}.sm\:w-24{width:6rem}.sm\:w-28{width:7rem}.sm\:w-32{width:8rem}.sm\:w-36{width:9rem}.sm\:w-40{width:10rem}.sm\:w-44{width:11rem}.sm\:w-48{width:12rem}.sm\:w-52{width:13rem}.sm\:w-56{width:14rem}.sm\:w-64{width:16rem}.sm\:w-80{width:20rem}.sm\:w-0\/5{width:.125rem}.sm\:w-1\/2{width:50%}.sm\:w-1\/3{width:33.333333%}.sm\:w-2\/3{width:66.666667%}.sm\:w-1\/4{width:25%}.sm\:w-2\/4{width:50%}.sm\:w-3\/4{width:75%}.sm\:w-1\/5{width:20%}.sm\:w-2\/5{width:40%}.sm\:w-3\/5{width:60%}.sm\:w-4\/5{width:80%}.sm\:w-1\/6{width:16.666667%}.sm\:w-2\/6{width:33.333333%}.sm\:w-3\/6{width:50%}.sm\:w-4\/6{width:66.666667%}.sm\:w-5\/6{width:83.333333%}.sm\:w-1\/12{width:8.333333%}.sm\:w-2\/12{width:16.666667%}.sm\:w-3\/12{width:25%}.sm\:w-4\/12{width:33.333333%}.sm\:w-5\/12{width:41.666667%}.sm\:w-6\/12{width:50%}.sm\:w-7\/12{width:58.333333%}.sm\:w-8\/12{width:66.666667%}.sm\:w-9\/12{width:75%}.sm\:w-10\/12{width:83.333333%}.sm\:w-11\/12{width:91.666667%}.sm\:grid-flow-row{grid-auto-flow:row}.sm\:grid-flow-col{grid-auto-flow:column}.sm\:grid-flow-row-dense{grid-auto-flow:row dense}.sm\:grid-flow-col-dense{grid-auto-flow:column dense}.sm\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.sm\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.sm\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.sm\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.sm\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.sm\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.sm\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.sm\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.sm\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.sm\:grid-cols-none{grid-template-columns:none}.sm\:col-span-1{grid-column:span 1/span 1}.sm\:col-span-2{grid-column:span 2/span 2}.sm\:col-span-3{grid-column:span 3/span 3}.sm\:col-span-4{grid-column:span 4/span 4}.sm\:col-span-5{grid-column:span 5/span 5}.sm\:col-span-6{grid-column:span 6/span 6}.sm\:col-span-7{grid-column:span 7/span 7}.sm\:col-span-8{grid-column:span 8/span 8}.sm\:col-span-9{grid-column:span 9/span 9}.sm\:col-span-10{grid-column:span 10/span 10}.sm\:col-span-11{grid-column:span 11/span 11}.sm\:col-span-12{grid-column:span 12/span 12}.sm\:row-span-1{grid-row:span 1/span 1}.sm\:row-span-2{grid-row:span 2/span 2}.sm\:row-span-3{grid-row:span 3/span 3}.sm\:row-span-4{grid-row:span 4/span 4}.sm\:row-span-5{grid-row:span 5/span 5}.sm\:row-span-6{grid-row:span 6/span 6}.btn.sm\:btn--autowidth{width:auto}}@media (min-width:768px){.md\:card{box-shadow:0 3px 1px -2px rgba(221,221,221,.43),0 2px 2px 0 rgba(221,221,221,.37),0 1px 5px 0 rgba(221,221,221,.35)}.md\:card__body{padding:2rem}.md\:container-padding--auto{margin-left:0;margin-right:0}.content-block .md\:head-alt-xl,.md\:head-alt-xl{font-size:5.3rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .md\:head-alt-lg,.md\:head-alt-lg{font-size:4rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .md\:head-alt-md,.md\:head-alt-md{font-size:2.45rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .md\:head-alt-base,.md\:head-alt-base{font-size:1.875rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .md\:head-alt-sm,.md\:head-alt-sm{font-size:1.6rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .md\:head-alt-xs,.md\:head-alt-xs{font-size:1.3rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .md\:head-alt-2xs,.md\:head-alt-2xs{font-size:1.125rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .md\:head-base,.md\:head-base{font-size:1.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .md\:head-sm,.md\:head-sm{font-size:1.6rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .md\:head-xs,.md\:head-xs{font-size:1.3rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .md\:head-2xs,.md\:head-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .md\:head-heavy-base,.md\:head-heavy-base{font-size:1.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .md\:head-heavy-sm,.md\:head-heavy-sm{font-size:1.6rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .md\:head-heavy-xs,.md\:head-heavy-xs{font-size:1.3rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .md\:head-heavy-2xs,.md\:head-heavy-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .md\:head-allcaps-2xs,.md\:head-allcaps-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:400;text-transform:uppercase;line-height:1.25}.content-block .md\:head-allcaps-3xs,.md\:head-allcaps-3xs{font-size:1rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:400;text-transform:uppercase;line-height:1.25}.content-block .md\:head-allcaps-4xs,.md\:head-allcaps-4xs{font-size:.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:400;text-transform:uppercase;line-height:1.25}.content-block .md\:head-allcaps-heavy-2xs,.md\:head-allcaps-heavy-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;text-transform:uppercase;line-height:1.25}.content-block .md\:head-allcaps-heavy-3xs,.md\:head-allcaps-heavy-3xs{font-size:1rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;text-transform:uppercase;line-height:1.25}.content-block .md\:head-allcaps-heavy-4xs,.md\:head-allcaps-heavy-4xs{font-size:.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;text-transform:uppercase;line-height:1.25}.md\:candidate-card-list__item-wrapper--border{border-right-width:1px}.md\:candidate-card-list__item-wrapper--noborder{border-width:0}.md\:space-y-0>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(0px * var(--space-y-reverse))}.md\:space-x-2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.5rem * var(--space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--space-x-reverse)))}.md\:block{display:block}.md\:inline-block{display:inline-block}.md\:flex-row{flex-direction:row}.md\:items-center{align-items:center}.md\:h-0{height:0}.md\:h-1{height:.25rem}.md\:h-2{height:.5rem}.md\:h-3{height:.75rem}.md\:h-4{height:1rem}.md\:h-5{height:1.25rem}.md\:h-6{height:1.5rem}.md\:h-8{height:2rem}.md\:h-10{height:2.5rem}.md\:h-12{height:3rem}.md\:h-16{height:4rem}.md\:h-20{height:5rem}.md\:h-24{height:6rem}.md\:h-28{height:7rem}.md\:h-32{height:8rem}.md\:h-36{height:9rem}.md\:h-40{height:10rem}.md\:h-44{height:11rem}.md\:h-48{height:12rem}.md\:h-52{height:13rem}.md\:h-56{height:14rem}.md\:h-64{height:16rem}.md\:h-80{height:20rem}.md\:h-0\/5{height:.125rem}.md\:text-3xl{font-size:1.875rem}.md\:text-7xl{font-size:5.3rem}.md\:m-0{margin:0}.md\:m-1{margin:.25rem}.md\:m-2{margin:.5rem}.md\:m-3{margin:.75rem}.md\:m-4{margin:1rem}.md\:m-5{margin:1.25rem}.md\:m-6{margin:1.5rem}.md\:m-8{margin:2rem}.md\:m-10{margin:2.5rem}.md\:m-12{margin:3rem}.md\:m-16{margin:4rem}.md\:m-20{margin:5rem}.md\:m-24{margin:6rem}.md\:m-28{margin:7rem}.md\:m-32{margin:8rem}.md\:m-36{margin:9rem}.md\:m-40{margin:10rem}.md\:m-44{margin:11rem}.md\:m-48{margin:12rem}.md\:m-52{margin:13rem}.md\:m-56{margin:14rem}.md\:m-64{margin:16rem}.md\:m-80{margin:20rem}.md\:m-0\/5{margin:.125rem}.md\:my-0{margin-top:0;margin-bottom:0}.md\:mx-0{margin-left:0;margin-right:0}.md\:my-1{margin-top:.25rem;margin-bottom:.25rem}.md\:mx-1{margin-left:.25rem;margin-right:.25rem}.md\:my-2{margin-top:.5rem;margin-bottom:.5rem}.md\:mx-2{margin-left:.5rem;margin-right:.5rem}.md\:my-3{margin-top:.75rem;margin-bottom:.75rem}.md\:mx-3{margin-left:.75rem;margin-right:.75rem}.md\:my-4{margin-top:1rem;margin-bottom:1rem}.md\:mx-4{margin-left:1rem;margin-right:1rem}.md\:my-5{margin-top:1.25rem;margin-bottom:1.25rem}.md\:mx-5{margin-left:1.25rem;margin-right:1.25rem}.md\:my-6{margin-top:1.5rem;margin-bottom:1.5rem}.md\:mx-6{margin-left:1.5rem;margin-right:1.5rem}.md\:my-8{margin-top:2rem;margin-bottom:2rem}.md\:mx-8{margin-left:2rem;margin-right:2rem}.md\:my-10{margin-top:2.5rem;margin-bottom:2.5rem}.md\:mx-10{margin-left:2.5rem;margin-right:2.5rem}.md\:my-12{margin-top:3rem;margin-bottom:3rem}.md\:mx-12{margin-left:3rem;margin-right:3rem}.md\:my-16{margin-top:4rem;margin-bottom:4rem}.md\:mx-16{margin-left:4rem;margin-right:4rem}.md\:my-20{margin-top:5rem;margin-bottom:5rem}.md\:mx-20{margin-left:5rem;margin-right:5rem}.md\:my-24{margin-top:6rem;margin-bottom:6rem}.md\:mx-24{margin-left:6rem;margin-right:6rem}.md\:my-28{margin-top:7rem;margin-bottom:7rem}.md\:mx-28{margin-left:7rem;margin-right:7rem}.md\:my-32{margin-top:8rem;margin-bottom:8rem}.md\:mx-32{margin-left:8rem;margin-right:8rem}.md\:my-36{margin-top:9rem;margin-bottom:9rem}.md\:mx-36{margin-left:9rem;margin-right:9rem}.md\:my-40{margin-top:10rem;margin-bottom:10rem}.md\:mx-40{margin-left:10rem;margin-right:10rem}.md\:my-44{margin-top:11rem;margin-bottom:11rem}.md\:mx-44{margin-left:11rem;margin-right:11rem}.md\:my-48{margin-top:12rem;margin-bottom:12rem}.md\:mx-48{margin-left:12rem;margin-right:12rem}.md\:my-52{margin-top:13rem;margin-bottom:13rem}.md\:mx-52{margin-left:13rem;margin-right:13rem}.md\:my-56{margin-top:14rem;margin-bottom:14rem}.md\:mx-56{margin-left:14rem;margin-right:14rem}.md\:my-64{margin-top:16rem;margin-bottom:16rem}.md\:mx-64{margin-left:16rem;margin-right:16rem}.md\:my-80{margin-top:20rem;margin-bottom:20rem}.md\:mx-80{margin-left:20rem;margin-right:20rem}.md\:my-0\/5{margin-top:.125rem;margin-bottom:.125rem}.md\:mx-0\/5{margin-left:.125rem;margin-right:.125rem}.md\:mt-0{margin-top:0}.md\:mr-0{margin-right:0}.md\:mb-0{margin-bottom:0}.md\:ml-0{margin-left:0}.md\:mt-1{margin-top:.25rem}.md\:mr-1{margin-right:.25rem}.md\:mb-1{margin-bottom:.25rem}.md\:ml-1{margin-left:.25rem}.md\:mt-2{margin-top:.5rem}.md\:mr-2{margin-right:.5rem}.md\:mb-2{margin-bottom:.5rem}.md\:ml-2{margin-left:.5rem}.md\:mt-3{margin-top:.75rem}.md\:mr-3{margin-right:.75rem}.md\:mb-3{margin-bottom:.75rem}.md\:ml-3{margin-left:.75rem}.md\:mt-4{margin-top:1rem}.md\:mr-4{margin-right:1rem}.md\:mb-4{margin-bottom:1rem}.md\:ml-4{margin-left:1rem}.md\:mt-5{margin-top:1.25rem}.md\:mr-5{margin-right:1.25rem}.md\:mb-5{margin-bottom:1.25rem}.md\:ml-5{margin-left:1.25rem}.md\:mt-6{margin-top:1.5rem}.md\:mr-6{margin-right:1.5rem}.md\:mb-6{margin-bottom:1.5rem}.md\:ml-6{margin-left:1.5rem}.md\:mt-8{margin-top:2rem}.md\:mr-8{margin-right:2rem}.md\:mb-8{margin-bottom:2rem}.md\:ml-8{margin-left:2rem}.md\:mt-10{margin-top:2.5rem}.md\:mr-10{margin-right:2.5rem}.md\:mb-10{margin-bottom:2.5rem}.md\:ml-10{margin-left:2.5rem}.md\:mt-12{margin-top:3rem}.md\:mr-12{margin-right:3rem}.md\:mb-12{margin-bottom:3rem}.md\:ml-12{margin-left:3rem}.md\:mt-16{margin-top:4rem}.md\:mr-16{margin-right:4rem}.md\:mb-16{margin-bottom:4rem}.md\:ml-16{margin-left:4rem}.md\:mt-20{margin-top:5rem}.md\:mr-20{margin-right:5rem}.md\:mb-20{margin-bottom:5rem}.md\:ml-20{margin-left:5rem}.md\:mt-24{margin-top:6rem}.md\:mr-24{margin-right:6rem}.md\:mb-24{margin-bottom:6rem}.md\:ml-24{margin-left:6rem}.md\:mt-28{margin-top:7rem}.md\:mr-28{margin-right:7rem}.md\:mb-28{margin-bottom:7rem}.md\:ml-28{margin-left:7rem}.md\:mt-32{margin-top:8rem}.md\:mr-32{margin-right:8rem}.md\:mb-32{margin-bottom:8rem}.md\:ml-32{margin-left:8rem}.md\:mt-36{margin-top:9rem}.md\:mr-36{margin-right:9rem}.md\:mb-36{margin-bottom:9rem}.md\:ml-36{margin-left:9rem}.md\:mt-40{margin-top:10rem}.md\:mr-40{margin-right:10rem}.md\:mb-40{margin-bottom:10rem}.md\:ml-40{margin-left:10rem}.md\:mt-44{margin-top:11rem}.md\:mr-44{margin-right:11rem}.md\:mb-44{margin-bottom:11rem}.md\:ml-44{margin-left:11rem}.md\:mt-48{margin-top:12rem}.md\:mr-48{margin-right:12rem}.md\:mb-48{margin-bottom:12rem}.md\:ml-48{margin-left:12rem}.md\:mt-52{margin-top:13rem}.md\:mr-52{margin-right:13rem}.md\:mb-52{margin-bottom:13rem}.md\:ml-52{margin-left:13rem}.md\:mt-56{margin-top:14rem}.md\:mr-56{margin-right:14rem}.md\:mb-56{margin-bottom:14rem}.md\:ml-56{margin-left:14rem}.md\:mt-64{margin-top:16rem}.md\:mr-64{margin-right:16rem}.md\:mb-64{margin-bottom:16rem}.md\:ml-64{margin-left:16rem}.md\:mt-80{margin-top:20rem}.md\:mr-80{margin-right:20rem}.md\:mb-80{margin-bottom:20rem}.md\:ml-80{margin-left:20rem}.md\:mt-0\/5{margin-top:.125rem}.md\:mr-0\/5{margin-right:.125rem}.md\:mb-0\/5{margin-bottom:.125rem}.md\:ml-0\/5{margin-left:.125rem}.md\:p-0{padding:0}.md\:p-1{padding:.25rem}.md\:p-2{padding:.5rem}.md\:p-3{padding:.75rem}.md\:p-4{padding:1rem}.md\:p-5{padding:1.25rem}.md\:p-6{padding:1.5rem}.md\:p-8{padding:2rem}.md\:p-10{padding:2.5rem}.md\:p-12{padding:3rem}.md\:p-16{padding:4rem}.md\:p-20{padding:5rem}.md\:p-24{padding:6rem}.md\:p-28{padding:7rem}.md\:p-32{padding:8rem}.md\:p-36{padding:9rem}.md\:p-40{padding:10rem}.md\:p-44{padding:11rem}.md\:p-48{padding:12rem}.md\:p-52{padding:13rem}.md\:p-56{padding:14rem}.md\:p-64{padding:16rem}.md\:p-80{padding:20rem}.md\:p-0\/5{padding:.125rem}.md\:py-0{padding-top:0;padding-bottom:0}.md\:px-0{padding-left:0;padding-right:0}.md\:py-1{padding-top:.25rem;padding-bottom:.25rem}.md\:px-1{padding-left:.25rem;padding-right:.25rem}.md\:py-2{padding-top:.5rem;padding-bottom:.5rem}.md\:px-2{padding-left:.5rem;padding-right:.5rem}.md\:py-3{padding-top:.75rem;padding-bottom:.75rem}.md\:px-3{padding-left:.75rem;padding-right:.75rem}.md\:py-4{padding-top:1rem;padding-bottom:1rem}.md\:px-4{padding-left:1rem;padding-right:1rem}.md\:py-5{padding-top:1.25rem;padding-bottom:1.25rem}.md\:px-5{padding-left:1.25rem;padding-right:1.25rem}.md\:py-6{padding-top:1.5rem;padding-bottom:1.5rem}.md\:px-6{padding-left:1.5rem;padding-right:1.5rem}.md\:py-8{padding-top:2rem;padding-bottom:2rem}.md\:px-8{padding-left:2rem;padding-right:2rem}.md\:py-10{padding-top:2.5rem;padding-bottom:2.5rem}.md\:px-10{padding-left:2.5rem;padding-right:2.5rem}.md\:py-12{padding-top:3rem;padding-bottom:3rem}.md\:px-12{padding-left:3rem;padding-right:3rem}.md\:py-16{padding-top:4rem;padding-bottom:4rem}.md\:px-16{padding-left:4rem;padding-right:4rem}.md\:py-20{padding-top:5rem;padding-bottom:5rem}.md\:px-20{padding-left:5rem;padding-right:5rem}.md\:py-24{padding-top:6rem;padding-bottom:6rem}.md\:px-24{padding-left:6rem;padding-right:6rem}.md\:py-28{padding-top:7rem;padding-bottom:7rem}.md\:px-28{padding-left:7rem;padding-right:7rem}.md\:py-32{padding-top:8rem;padding-bottom:8rem}.md\:px-32{padding-left:8rem;padding-right:8rem}.md\:py-36{padding-top:9rem;padding-bottom:9rem}.md\:px-36{padding-left:9rem;padding-right:9rem}.md\:py-40{padding-top:10rem;padding-bottom:10rem}.md\:px-40{padding-left:10rem;padding-right:10rem}.md\:py-44{padding-top:11rem;padding-bottom:11rem}.md\:px-44{padding-left:11rem;padding-right:11rem}.md\:py-48{padding-top:12rem;padding-bottom:12rem}.md\:px-48{padding-left:12rem;padding-right:12rem}.md\:py-52{padding-top:13rem;padding-bottom:13rem}.md\:px-52{padding-left:13rem;padding-right:13rem}.md\:py-56{padding-top:14rem;padding-bottom:14rem}.md\:px-56{padding-left:14rem;padding-right:14rem}.md\:py-64{padding-top:16rem;padding-bottom:16rem}.md\:px-64{padding-left:16rem;padding-right:16rem}.md\:py-80{padding-top:20rem;padding-bottom:20rem}.md\:px-80{padding-left:20rem;padding-right:20rem}.md\:py-0\/5{padding-top:.125rem;padding-bottom:.125rem}.md\:px-0\/5{padding-left:.125rem;padding-right:.125rem}.md\:pt-0{padding-top:0}.md\:pr-0{padding-right:0}.md\:pb-0{padding-bottom:0}.md\:pl-0{padding-left:0}.md\:pt-1{padding-top:.25rem}.md\:pr-1{padding-right:.25rem}.md\:pb-1{padding-bottom:.25rem}.md\:pl-1{padding-left:.25rem}.md\:pt-2{padding-top:.5rem}.md\:pr-2{padding-right:.5rem}.md\:pb-2{padding-bottom:.5rem}.md\:pl-2{padding-left:.5rem}.md\:pt-3{padding-top:.75rem}.md\:pr-3{padding-right:.75rem}.md\:pb-3{padding-bottom:.75rem}.md\:pl-3{padding-left:.75rem}.md\:pt-4{padding-top:1rem}.md\:pr-4{padding-right:1rem}.md\:pb-4{padding-bottom:1rem}.md\:pl-4{padding-left:1rem}.md\:pt-5{padding-top:1.25rem}.md\:pr-5{padding-right:1.25rem}.md\:pb-5{padding-bottom:1.25rem}.md\:pl-5{padding-left:1.25rem}.md\:pt-6{padding-top:1.5rem}.md\:pr-6{padding-right:1.5rem}.md\:pb-6{padding-bottom:1.5rem}.md\:pl-6{padding-left:1.5rem}.md\:pt-8{padding-top:2rem}.md\:pr-8{padding-right:2rem}.md\:pb-8{padding-bottom:2rem}.md\:pl-8{padding-left:2rem}.md\:pt-10{padding-top:2.5rem}.md\:pr-10{padding-right:2.5rem}.md\:pb-10{padding-bottom:2.5rem}.md\:pl-10{padding-left:2.5rem}.md\:pt-12{padding-top:3rem}.md\:pr-12{padding-right:3rem}.md\:pb-12{padding-bottom:3rem}.md\:pl-12{padding-left:3rem}.md\:pt-16{padding-top:4rem}.md\:pr-16{padding-right:4rem}.md\:pb-16{padding-bottom:4rem}.md\:pl-16{padding-left:4rem}.md\:pt-20{padding-top:5rem}.md\:pr-20{padding-right:5rem}.md\:pb-20{padding-bottom:5rem}.md\:pl-20{padding-left:5rem}.md\:pt-24{padding-top:6rem}.md\:pr-24{padding-right:6rem}.md\:pb-24{padding-bottom:6rem}.md\:pl-24{padding-left:6rem}.md\:pt-28{padding-top:7rem}.md\:pr-28{padding-right:7rem}.md\:pb-28{padding-bottom:7rem}.md\:pl-28{padding-left:7rem}.md\:pt-32{padding-top:8rem}.md\:pr-32{padding-right:8rem}.md\:pb-32{padding-bottom:8rem}.md\:pl-32{padding-left:8rem}.md\:pt-36{padding-top:9rem}.md\:pr-36{padding-right:9rem}.md\:pb-36{padding-bottom:9rem}.md\:pl-36{padding-left:9rem}.md\:pt-40{padding-top:10rem}.md\:pr-40{padding-right:10rem}.md\:pb-40{padding-bottom:10rem}.md\:pl-40{padding-left:10rem}.md\:pt-44{padding-top:11rem}.md\:pr-44{padding-right:11rem}.md\:pb-44{padding-bottom:11rem}.md\:pl-44{padding-left:11rem}.md\:pt-48{padding-top:12rem}.md\:pr-48{padding-right:12rem}.md\:pb-48{padding-bottom:12rem}.md\:pl-48{padding-left:12rem}.md\:pt-52{padding-top:13rem}.md\:pr-52{padding-right:13rem}.md\:pb-52{padding-bottom:13rem}.md\:pl-52{padding-left:13rem}.md\:pt-56{padding-top:14rem}.md\:pr-56{padding-right:14rem}.md\:pb-56{padding-bottom:14rem}.md\:pl-56{padding-left:14rem}.md\:pt-64{padding-top:16rem}.md\:pr-64{padding-right:16rem}.md\:pb-64{padding-bottom:16rem}.md\:pl-64{padding-left:16rem}.md\:pt-80{padding-top:20rem}.md\:pr-80{padding-right:20rem}.md\:pb-80{padding-bottom:20rem}.md\:pl-80{padding-left:20rem}.md\:pt-0\/5{padding-top:.125rem}.md\:pr-0\/5{padding-right:.125rem}.md\:pb-0\/5{padding-bottom:.125rem}.md\:pl-0\/5{padding-left:.125rem}.md\:w-0{width:0}.md\:w-1{width:.25rem}.md\:w-2{width:.5rem}.md\:w-3{width:.75rem}.md\:w-4{width:1rem}.md\:w-5{width:1.25rem}.md\:w-6{width:1.5rem}.md\:w-8{width:2rem}.md\:w-10{width:2.5rem}.md\:w-12{width:3rem}.md\:w-16{width:4rem}.md\:w-20{width:5rem}.md\:w-24{width:6rem}.md\:w-28{width:7rem}.md\:w-32{width:8rem}.md\:w-36{width:9rem}.md\:w-40{width:10rem}.md\:w-44{width:11rem}.md\:w-48{width:12rem}.md\:w-52{width:13rem}.md\:w-56{width:14rem}.md\:w-64{width:16rem}.md\:w-80{width:20rem}.md\:w-0\/5{width:.125rem}.md\:w-1\/2{width:50%}.md\:w-1\/3{width:33.333333%}.md\:w-2\/3{width:66.666667%}.md\:w-1\/4{width:25%}.md\:w-2\/4{width:50%}.md\:w-3\/4{width:75%}.md\:w-1\/5{width:20%}.md\:w-2\/5{width:40%}.md\:w-3\/5{width:60%}.md\:w-4\/5{width:80%}.md\:w-1\/6{width:16.666667%}.md\:w-2\/6{width:33.333333%}.md\:w-3\/6{width:50%}.md\:w-4\/6{width:66.666667%}.md\:w-5\/6{width:83.333333%}.md\:w-1\/12{width:8.333333%}.md\:w-2\/12{width:16.666667%}.md\:w-3\/12{width:25%}.md\:w-4\/12{width:33.333333%}.md\:w-5\/12{width:41.666667%}.md\:w-6\/12{width:50%}.md\:w-7\/12{width:58.333333%}.md\:w-8\/12{width:66.666667%}.md\:w-9\/12{width:75%}.md\:w-10\/12{width:83.333333%}.md\:w-11\/12{width:91.666667%}.md\:grid-flow-row{grid-auto-flow:row}.md\:grid-flow-col{grid-auto-flow:column}.md\:grid-flow-row-dense{grid-auto-flow:row dense}.md\:grid-flow-col-dense{grid-auto-flow:column dense}.md\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.md\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.md\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.md\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.md\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.md\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.md\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.md\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.md\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.md\:grid-cols-none{grid-template-columns:none}.md\:col-span-1{grid-column:span 1/span 1}.md\:col-span-2{grid-column:span 2/span 2}.md\:col-span-3{grid-column:span 3/span 3}.md\:col-span-4{grid-column:span 4/span 4}.md\:col-span-5{grid-column:span 5/span 5}.md\:col-span-6{grid-column:span 6/span 6}.md\:col-span-7{grid-column:span 7/span 7}.md\:col-span-8{grid-column:span 8/span 8}.md\:col-span-9{grid-column:span 9/span 9}.md\:col-span-10{grid-column:span 10/span 10}.md\:col-span-11{grid-column:span 11/span 11}.md\:col-span-12{grid-column:span 12/span 12}.md\:row-span-1{grid-row:span 1/span 1}.md\:row-span-2{grid-row:span 2/span 2}.md\:row-span-3{grid-row:span 3/span 3}.md\:row-span-4{grid-row:span 4/span 4}.md\:row-span-5{grid-row:span 5/span 5}.md\:row-span-6{grid-row:span 6/span 6}.md\:elevation-10{box-shadow:0 6px 6px -3px rgba(221,221,221,.43),0 10px 14px 1px rgba(221,221,221,.37),0 4px 18px 3px rgba(221,221,221,.35)}.btn.md\:btn--autowidth{width:auto}}@media (min-width:992px){.lg\:avatar--3xl{width:14rem}.lg\:card{box-shadow:0 3px 1px -2px rgba(221,221,221,.43),0 2px 2px 0 rgba(221,221,221,.37),0 1px 5px 0 rgba(221,221,221,.35)}.lg\:card__body{padding:2rem}.lg\:container-padding--auto{margin-left:0;margin-right:0}.content-block .lg\:head-alt-xl,.lg\:head-alt-xl{font-size:5.3rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .lg\:head-alt-lg,.lg\:head-alt-lg{font-size:4rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .lg\:head-alt-md,.lg\:head-alt-md{font-size:2.45rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .lg\:head-alt-base,.lg\:head-alt-base{font-size:1.875rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .lg\:head-alt-sm,.lg\:head-alt-sm{font-size:1.6rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .lg\:head-alt-xs,.lg\:head-alt-xs{font-size:1.3rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .lg\:head-alt-2xs,.lg\:head-alt-2xs{font-size:1.125rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .lg\:head-base,.lg\:head-base{font-size:1.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .lg\:head-sm,.lg\:head-sm{font-size:1.6rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .lg\:head-xs,.lg\:head-xs{font-size:1.3rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .lg\:head-2xs,.lg\:head-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .lg\:head-heavy-base,.lg\:head-heavy-base{font-size:1.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .lg\:head-heavy-sm,.lg\:head-heavy-sm{font-size:1.6rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .lg\:head-heavy-xs,.lg\:head-heavy-xs{font-size:1.3rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .lg\:head-heavy-2xs,.lg\:head-heavy-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .lg\:head-allcaps-2xs,.lg\:head-allcaps-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:400;text-transform:uppercase;line-height:1.25}.content-block .lg\:head-allcaps-3xs,.lg\:head-allcaps-3xs{font-size:1rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:400;text-transform:uppercase;line-height:1.25}.content-block .lg\:head-allcaps-4xs,.lg\:head-allcaps-4xs{font-size:.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:400;text-transform:uppercase;line-height:1.25}.content-block .lg\:head-allcaps-heavy-2xs,.lg\:head-allcaps-heavy-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;text-transform:uppercase;line-height:1.25}.content-block .lg\:head-allcaps-heavy-3xs,.lg\:head-allcaps-heavy-3xs{font-size:1rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;text-transform:uppercase;line-height:1.25}.content-block .lg\:head-allcaps-heavy-4xs,.lg\:head-allcaps-heavy-4xs{font-size:.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;text-transform:uppercase;line-height:1.25}.lg\:candidate-card-list__item-wrapper--border{border-right-width:1px}.lg\:candidate-card-list__item-wrapper--noborder{border-width:0}.lg\:space-y-0>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(0px * var(--space-y-reverse))}.lg\:space-x-0>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(0px * var(--space-x-reverse));margin-left:calc(0px * calc(1 - var(--space-x-reverse)))}.lg\:space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.5rem * var(--space-y-reverse))}.lg\:space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1rem * var(--space-y-reverse))}.lg\:space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1rem * var(--space-x-reverse));margin-left:calc(1rem * calc(1 - var(--space-x-reverse)))}.lg\:space-x-8>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2rem * var(--space-x-reverse));margin-left:calc(2rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-16>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(4rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(4rem * var(--space-y-reverse))}.lg\:space-x-16>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(4rem * var(--space-x-reverse));margin-left:calc(4rem * calc(1 - var(--space-x-reverse)))}.lg\:border-grey-300{--border-opacity:1;border-color:#4c4c4c;border-color:rgba(76,76,76,var(--border-opacity))}.lg\:border-t-0{border-top-width:0}.lg\:border-t{border-top-width:1px}.lg\:border-r{border-right-width:1px}.lg\:block{display:block}.lg\:inline-block{display:inline-block}.lg\:flex{display:flex}.lg\:grid{display:grid}.lg\:hidden{display:none}.lg\:flex-row{flex-direction:row}.lg\:flex-col{flex-direction:column}.lg\:items-end{align-items:flex-end}.lg\:items-center{align-items:center}.lg\:order-last{order:9999}.lg\:h-0{height:0}.lg\:h-1{height:.25rem}.lg\:h-2{height:.5rem}.lg\:h-3{height:.75rem}.lg\:h-4{height:1rem}.lg\:h-5{height:1.25rem}.lg\:h-6{height:1.5rem}.lg\:h-8{height:2rem}.lg\:h-10{height:2.5rem}.lg\:h-12{height:3rem}.lg\:h-16{height:4rem}.lg\:h-20{height:5rem}.lg\:h-24{height:6rem}.lg\:h-28{height:7rem}.lg\:h-32{height:8rem}.lg\:h-36{height:9rem}.lg\:h-40{height:10rem}.lg\:h-44{height:11rem}.lg\:h-48{height:12rem}.lg\:h-52{height:13rem}.lg\:h-56{height:14rem}.lg\:h-64{height:16rem}.lg\:h-80{height:20rem}.lg\:h-0\/5{height:.125rem}.lg\:text-sm{font-size:.875rem}.lg\:text-4xl{font-size:2.45rem}.lg\:text-9xl{font-size:7.5rem}.lg\:leading-normal{line-height:1.5}.lg\:m-0{margin:0}.lg\:m-1{margin:.25rem}.lg\:m-2{margin:.5rem}.lg\:m-3{margin:.75rem}.lg\:m-4{margin:1rem}.lg\:m-5{margin:1.25rem}.lg\:m-6{margin:1.5rem}.lg\:m-8{margin:2rem}.lg\:m-10{margin:2.5rem}.lg\:m-12{margin:3rem}.lg\:m-16{margin:4rem}.lg\:m-20{margin:5rem}.lg\:m-24{margin:6rem}.lg\:m-28{margin:7rem}.lg\:m-32{margin:8rem}.lg\:m-36{margin:9rem}.lg\:m-40{margin:10rem}.lg\:m-44{margin:11rem}.lg\:m-48{margin:12rem}.lg\:m-52{margin:13rem}.lg\:m-56{margin:14rem}.lg\:m-64{margin:16rem}.lg\:m-80{margin:20rem}.lg\:m-auto{margin:auto}.lg\:m-0\/5{margin:.125rem}.lg\:my-0{margin-top:0;margin-bottom:0}.lg\:mx-0{margin-left:0;margin-right:0}.lg\:my-1{margin-top:.25rem;margin-bottom:.25rem}.lg\:mx-1{margin-left:.25rem;margin-right:.25rem}.lg\:my-2{margin-top:.5rem;margin-bottom:.5rem}.lg\:mx-2{margin-left:.5rem;margin-right:.5rem}.lg\:my-3{margin-top:.75rem;margin-bottom:.75rem}.lg\:mx-3{margin-left:.75rem;margin-right:.75rem}.lg\:my-4{margin-top:1rem;margin-bottom:1rem}.lg\:mx-4{margin-left:1rem;margin-right:1rem}.lg\:my-5{margin-top:1.25rem;margin-bottom:1.25rem}.lg\:mx-5{margin-left:1.25rem;margin-right:1.25rem}.lg\:my-6{margin-top:1.5rem;margin-bottom:1.5rem}.lg\:mx-6{margin-left:1.5rem;margin-right:1.5rem}.lg\:my-8{margin-top:2rem;margin-bottom:2rem}.lg\:mx-8{margin-left:2rem;margin-right:2rem}.lg\:my-10{margin-top:2.5rem;margin-bottom:2.5rem}.lg\:mx-10{margin-left:2.5rem;margin-right:2.5rem}.lg\:my-12{margin-top:3rem;margin-bottom:3rem}.lg\:mx-12{margin-left:3rem;margin-right:3rem}.lg\:my-16{margin-top:4rem;margin-bottom:4rem}.lg\:mx-16{margin-left:4rem;margin-right:4rem}.lg\:my-20{margin-top:5rem;margin-bottom:5rem}.lg\:mx-20{margin-left:5rem;margin-right:5rem}.lg\:my-24{margin-top:6rem;margin-bottom:6rem}.lg\:mx-24{margin-left:6rem;margin-right:6rem}.lg\:my-28{margin-top:7rem;margin-bottom:7rem}.lg\:mx-28{margin-left:7rem;margin-right:7rem}.lg\:my-32{margin-top:8rem;margin-bottom:8rem}.lg\:mx-32{margin-left:8rem;margin-right:8rem}.lg\:my-36{margin-top:9rem;margin-bottom:9rem}.lg\:mx-36{margin-left:9rem;margin-right:9rem}.lg\:my-40{margin-top:10rem;margin-bottom:10rem}.lg\:mx-40{margin-left:10rem;margin-right:10rem}.lg\:my-44{margin-top:11rem;margin-bottom:11rem}.lg\:mx-44{margin-left:11rem;margin-right:11rem}.lg\:my-48{margin-top:12rem;margin-bottom:12rem}.lg\:mx-48{margin-left:12rem;margin-right:12rem}.lg\:my-52{margin-top:13rem;margin-bottom:13rem}.lg\:mx-52{margin-left:13rem;margin-right:13rem}.lg\:my-56{margin-top:14rem;margin-bottom:14rem}.lg\:mx-56{margin-left:14rem;margin-right:14rem}.lg\:my-64{margin-top:16rem;margin-bottom:16rem}.lg\:mx-64{margin-left:16rem;margin-right:16rem}.lg\:my-80{margin-top:20rem;margin-bottom:20rem}.lg\:mx-80{margin-left:20rem;margin-right:20rem}.lg\:my-0\/5{margin-top:.125rem;margin-bottom:.125rem}.lg\:mx-0\/5{margin-left:.125rem;margin-right:.125rem}.lg\:mt-0{margin-top:0}.lg\:mr-0{margin-right:0}.lg\:mb-0{margin-bottom:0}.lg\:ml-0{margin-left:0}.lg\:mt-1{margin-top:.25rem}.lg\:mr-1{margin-right:.25rem}.lg\:mb-1{margin-bottom:.25rem}.lg\:ml-1{margin-left:.25rem}.lg\:mt-2{margin-top:.5rem}.lg\:mr-2{margin-right:.5rem}.lg\:mb-2{margin-bottom:.5rem}.lg\:ml-2{margin-left:.5rem}.lg\:mt-3{margin-top:.75rem}.lg\:mr-3{margin-right:.75rem}.lg\:mb-3{margin-bottom:.75rem}.lg\:ml-3{margin-left:.75rem}.lg\:mt-4{margin-top:1rem}.lg\:mr-4{margin-right:1rem}.lg\:mb-4{margin-bottom:1rem}.lg\:ml-4{margin-left:1rem}.lg\:mt-5{margin-top:1.25rem}.lg\:mr-5{margin-right:1.25rem}.lg\:mb-5{margin-bottom:1.25rem}.lg\:ml-5{margin-left:1.25rem}.lg\:mt-6{margin-top:1.5rem}.lg\:mr-6{margin-right:1.5rem}.lg\:mb-6{margin-bottom:1.5rem}.lg\:ml-6{margin-left:1.5rem}.lg\:mt-8{margin-top:2rem}.lg\:mr-8{margin-right:2rem}.lg\:mb-8{margin-bottom:2rem}.lg\:ml-8{margin-left:2rem}.lg\:mt-10{margin-top:2.5rem}.lg\:mr-10{margin-right:2.5rem}.lg\:mb-10{margin-bottom:2.5rem}.lg\:ml-10{margin-left:2.5rem}.lg\:mt-12{margin-top:3rem}.lg\:mr-12{margin-right:3rem}.lg\:mb-12{margin-bottom:3rem}.lg\:ml-12{margin-left:3rem}.lg\:mt-16{margin-top:4rem}.lg\:mr-16{margin-right:4rem}.lg\:mb-16{margin-bottom:4rem}.lg\:ml-16{margin-left:4rem}.lg\:mt-20{margin-top:5rem}.lg\:mr-20{margin-right:5rem}.lg\:mb-20{margin-bottom:5rem}.lg\:ml-20{margin-left:5rem}.lg\:mt-24{margin-top:6rem}.lg\:mr-24{margin-right:6rem}.lg\:mb-24{margin-bottom:6rem}.lg\:ml-24{margin-left:6rem}.lg\:mt-28{margin-top:7rem}.lg\:mr-28{margin-right:7rem}.lg\:mb-28{margin-bottom:7rem}.lg\:ml-28{margin-left:7rem}.lg\:mt-32{margin-top:8rem}.lg\:mr-32{margin-right:8rem}.lg\:mb-32{margin-bottom:8rem}.lg\:ml-32{margin-left:8rem}.lg\:mt-36{margin-top:9rem}.lg\:mr-36{margin-right:9rem}.lg\:mb-36{margin-bottom:9rem}.lg\:ml-36{margin-left:9rem}.lg\:mt-40{margin-top:10rem}.lg\:mr-40{margin-right:10rem}.lg\:mb-40{margin-bottom:10rem}.lg\:ml-40{margin-left:10rem}.lg\:mt-44{margin-top:11rem}.lg\:mr-44{margin-right:11rem}.lg\:mb-44{margin-bottom:11rem}.lg\:ml-44{margin-left:11rem}.lg\:mt-48{margin-top:12rem}.lg\:mr-48{margin-right:12rem}.lg\:mb-48{margin-bottom:12rem}.lg\:ml-48{margin-left:12rem}.lg\:mt-52{margin-top:13rem}.lg\:mr-52{margin-right:13rem}.lg\:mb-52{margin-bottom:13rem}.lg\:ml-52{margin-left:13rem}.lg\:mt-56{margin-top:14rem}.lg\:mr-56{margin-right:14rem}.lg\:mb-56{margin-bottom:14rem}.lg\:ml-56{margin-left:14rem}.lg\:mt-64{margin-top:16rem}.lg\:mr-64{margin-right:16rem}.lg\:mb-64{margin-bottom:16rem}.lg\:ml-64{margin-left:16rem}.lg\:mt-80{margin-top:20rem}.lg\:mr-80{margin-right:20rem}.lg\:mb-80{margin-bottom:20rem}.lg\:ml-80{margin-left:20rem}.lg\:mt-0\/5{margin-top:.125rem}.lg\:mr-0\/5{margin-right:.125rem}.lg\:mb-0\/5{margin-bottom:.125rem}.lg\:ml-0\/5{margin-left:.125rem}.lg\:p-0{padding:0}.lg\:p-1{padding:.25rem}.lg\:p-2{padding:.5rem}.lg\:p-3{padding:.75rem}.lg\:p-4{padding:1rem}.lg\:p-5{padding:1.25rem}.lg\:p-6{padding:1.5rem}.lg\:p-8{padding:2rem}.lg\:p-10{padding:2.5rem}.lg\:p-12{padding:3rem}.lg\:p-16{padding:4rem}.lg\:p-20{padding:5rem}.lg\:p-24{padding:6rem}.lg\:p-28{padding:7rem}.lg\:p-32{padding:8rem}.lg\:p-36{padding:9rem}.lg\:p-40{padding:10rem}.lg\:p-44{padding:11rem}.lg\:p-48{padding:12rem}.lg\:p-52{padding:13rem}.lg\:p-56{padding:14rem}.lg\:p-64{padding:16rem}.lg\:p-80{padding:20rem}.lg\:p-0\/5{padding:.125rem}.lg\:py-0{padding-top:0;padding-bottom:0}.lg\:px-0{padding-left:0;padding-right:0}.lg\:py-1{padding-top:.25rem;padding-bottom:.25rem}.lg\:px-1{padding-left:.25rem;padding-right:.25rem}.lg\:py-2{padding-top:.5rem;padding-bottom:.5rem}.lg\:px-2{padding-left:.5rem;padding-right:.5rem}.lg\:py-3{padding-top:.75rem;padding-bottom:.75rem}.lg\:px-3{padding-left:.75rem;padding-right:.75rem}.lg\:py-4{padding-top:1rem;padding-bottom:1rem}.lg\:px-4{padding-left:1rem;padding-right:1rem}.lg\:py-5{padding-top:1.25rem;padding-bottom:1.25rem}.lg\:px-5{padding-left:1.25rem;padding-right:1.25rem}.lg\:py-6{padding-top:1.5rem;padding-bottom:1.5rem}.lg\:px-6{padding-left:1.5rem;padding-right:1.5rem}.lg\:py-8{padding-top:2rem;padding-bottom:2rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:py-10{padding-top:2.5rem;padding-bottom:2.5rem}.lg\:px-10{padding-left:2.5rem;padding-right:2.5rem}.lg\:py-12{padding-top:3rem;padding-bottom:3rem}.lg\:px-12{padding-left:3rem;padding-right:3rem}.lg\:py-16{padding-top:4rem;padding-bottom:4rem}.lg\:px-16{padding-left:4rem;padding-right:4rem}.lg\:py-20{padding-top:5rem;padding-bottom:5rem}.lg\:px-20{padding-left:5rem;padding-right:5rem}.lg\:py-24{padding-top:6rem;padding-bottom:6rem}.lg\:px-24{padding-left:6rem;padding-right:6rem}.lg\:py-28{padding-top:7rem;padding-bottom:7rem}.lg\:px-28{padding-left:7rem;padding-right:7rem}.lg\:py-32{padding-top:8rem;padding-bottom:8rem}.lg\:px-32{padding-left:8rem;padding-right:8rem}.lg\:py-36{padding-top:9rem;padding-bottom:9rem}.lg\:px-36{padding-left:9rem;padding-right:9rem}.lg\:py-40{padding-top:10rem;padding-bottom:10rem}.lg\:px-40{padding-left:10rem;padding-right:10rem}.lg\:py-44{padding-top:11rem;padding-bottom:11rem}.lg\:px-44{padding-left:11rem;padding-right:11rem}.lg\:py-48{padding-top:12rem;padding-bottom:12rem}.lg\:px-48{padding-left:12rem;padding-right:12rem}.lg\:py-52{padding-top:13rem;padding-bottom:13rem}.lg\:px-52{padding-left:13rem;padding-right:13rem}.lg\:py-56{padding-top:14rem;padding-bottom:14rem}.lg\:px-56{padding-left:14rem;padding-right:14rem}.lg\:py-64{padding-top:16rem;padding-bottom:16rem}.lg\:px-64{padding-left:16rem;padding-right:16rem}.lg\:py-80{padding-top:20rem;padding-bottom:20rem}.lg\:px-80{padding-left:20rem;padding-right:20rem}.lg\:py-0\/5{padding-top:.125rem;padding-bottom:.125rem}.lg\:px-0\/5{padding-left:.125rem;padding-right:.125rem}.lg\:pt-0{padding-top:0}.lg\:pr-0{padding-right:0}.lg\:pb-0{padding-bottom:0}.lg\:pl-0{padding-left:0}.lg\:pt-1{padding-top:.25rem}.lg\:pr-1{padding-right:.25rem}.lg\:pb-1{padding-bottom:.25rem}.lg\:pl-1{padding-left:.25rem}.lg\:pt-2{padding-top:.5rem}.lg\:pr-2{padding-right:.5rem}.lg\:pb-2{padding-bottom:.5rem}.lg\:pl-2{padding-left:.5rem}.lg\:pt-3{padding-top:.75rem}.lg\:pr-3{padding-right:.75rem}.lg\:pb-3{padding-bottom:.75rem}.lg\:pl-3{padding-left:.75rem}.lg\:pt-4{padding-top:1rem}.lg\:pr-4{padding-right:1rem}.lg\:pb-4{padding-bottom:1rem}.lg\:pl-4{padding-left:1rem}.lg\:pt-5{padding-top:1.25rem}.lg\:pr-5{padding-right:1.25rem}.lg\:pb-5{padding-bottom:1.25rem}.lg\:pl-5{padding-left:1.25rem}.lg\:pt-6{padding-top:1.5rem}.lg\:pr-6{padding-right:1.5rem}.lg\:pb-6{padding-bottom:1.5rem}.lg\:pl-6{padding-left:1.5rem}.lg\:pt-8{padding-top:2rem}.lg\:pr-8{padding-right:2rem}.lg\:pb-8{padding-bottom:2rem}.lg\:pl-8{padding-left:2rem}.lg\:pt-10{padding-top:2.5rem}.lg\:pr-10{padding-right:2.5rem}.lg\:pb-10{padding-bottom:2.5rem}.lg\:pl-10{padding-left:2.5rem}.lg\:pt-12{padding-top:3rem}.lg\:pr-12{padding-right:3rem}.lg\:pb-12{padding-bottom:3rem}.lg\:pl-12{padding-left:3rem}.lg\:pt-16{padding-top:4rem}.lg\:pr-16{padding-right:4rem}.lg\:pb-16{padding-bottom:4rem}.lg\:pl-16{padding-left:4rem}.lg\:pt-20{padding-top:5rem}.lg\:pr-20{padding-right:5rem}.lg\:pb-20{padding-bottom:5rem}.lg\:pl-20{padding-left:5rem}.lg\:pt-24{padding-top:6rem}.lg\:pr-24{padding-right:6rem}.lg\:pb-24{padding-bottom:6rem}.lg\:pl-24{padding-left:6rem}.lg\:pt-28{padding-top:7rem}.lg\:pr-28{padding-right:7rem}.lg\:pb-28{padding-bottom:7rem}.lg\:pl-28{padding-left:7rem}.lg\:pt-32{padding-top:8rem}.lg\:pr-32{padding-right:8rem}.lg\:pb-32{padding-bottom:8rem}.lg\:pl-32{padding-left:8rem}.lg\:pt-36{padding-top:9rem}.lg\:pr-36{padding-right:9rem}.lg\:pb-36{padding-bottom:9rem}.lg\:pl-36{padding-left:9rem}.lg\:pt-40{padding-top:10rem}.lg\:pr-40{padding-right:10rem}.lg\:pb-40{padding-bottom:10rem}.lg\:pl-40{padding-left:10rem}.lg\:pt-44{padding-top:11rem}.lg\:pr-44{padding-right:11rem}.lg\:pb-44{padding-bottom:11rem}.lg\:pl-44{padding-left:11rem}.lg\:pt-48{padding-top:12rem}.lg\:pr-48{padding-right:12rem}.lg\:pb-48{padding-bottom:12rem}.lg\:pl-48{padding-left:12rem}.lg\:pt-52{padding-top:13rem}.lg\:pr-52{padding-right:13rem}.lg\:pb-52{padding-bottom:13rem}.lg\:pl-52{padding-left:13rem}.lg\:pt-56{padding-top:14rem}.lg\:pr-56{padding-right:14rem}.lg\:pb-56{padding-bottom:14rem}.lg\:pl-56{padding-left:14rem}.lg\:pt-64{padding-top:16rem}.lg\:pr-64{padding-right:16rem}.lg\:pb-64{padding-bottom:16rem}.lg\:pl-64{padding-left:16rem}.lg\:pt-80{padding-top:20rem}.lg\:pr-80{padding-right:20rem}.lg\:pb-80{padding-bottom:20rem}.lg\:pl-80{padding-left:20rem}.lg\:pt-0\/5{padding-top:.125rem}.lg\:pr-0\/5{padding-right:.125rem}.lg\:pb-0\/5{padding-bottom:.125rem}.lg\:pl-0\/5{padding-left:.125rem}.lg\:text-left{text-align:left}.lg\:text-right{text-align:right}.lg\:w-0{width:0}.lg\:w-1{width:.25rem}.lg\:w-2{width:.5rem}.lg\:w-3{width:.75rem}.lg\:w-4{width:1rem}.lg\:w-5{width:1.25rem}.lg\:w-6{width:1.5rem}.lg\:w-8{width:2rem}.lg\:w-10{width:2.5rem}.lg\:w-12{width:3rem}.lg\:w-16{width:4rem}.lg\:w-20{width:5rem}.lg\:w-24{width:6rem}.lg\:w-28{width:7rem}.lg\:w-32{width:8rem}.lg\:w-36{width:9rem}.lg\:w-40{width:10rem}.lg\:w-44{width:11rem}.lg\:w-48{width:12rem}.lg\:w-52{width:13rem}.lg\:w-56{width:14rem}.lg\:w-64{width:16rem}.lg\:w-80{width:20rem}.lg\:w-0\/5{width:.125rem}.lg\:w-1\/2{width:50%}.lg\:w-1\/3{width:33.333333%}.lg\:w-2\/3{width:66.666667%}.lg\:w-1\/4{width:25%}.lg\:w-2\/4{width:50%}.lg\:w-3\/4{width:75%}.lg\:w-1\/5{width:20%}.lg\:w-2\/5{width:40%}.lg\:w-3\/5{width:60%}.lg\:w-4\/5{width:80%}.lg\:w-1\/6{width:16.666667%}.lg\:w-2\/6{width:33.333333%}.lg\:w-3\/6{width:50%}.lg\:w-4\/6{width:66.666667%}.lg\:w-5\/6{width:83.333333%}.lg\:w-1\/12{width:8.333333%}.lg\:w-2\/12{width:16.666667%}.lg\:w-3\/12{width:25%}.lg\:w-4\/12{width:33.333333%}.lg\:w-5\/12{width:41.666667%}.lg\:w-6\/12{width:50%}.lg\:w-7\/12{width:58.333333%}.lg\:w-8\/12{width:66.666667%}.lg\:w-9\/12{width:75%}.lg\:w-10\/12{width:83.333333%}.lg\:w-11\/12{width:91.666667%}.lg\:w-full{width:100%}.lg\:gap-4{grid-gap:1rem;gap:1rem}.lg\:gap-8{grid-gap:2rem;gap:2rem}.lg\:grid-flow-row{grid-auto-flow:row}.lg\:grid-flow-col{grid-auto-flow:column}.lg\:grid-flow-row-dense{grid-auto-flow:row dense}.lg\:grid-flow-col-dense{grid-auto-flow:column dense}.lg\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.lg\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.lg\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.lg\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.lg\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.lg\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.lg\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.lg\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.lg\:grid-cols-none{grid-template-columns:none}.lg\:col-span-1{grid-column:span 1/span 1}.lg\:col-span-2{grid-column:span 2/span 2}.lg\:col-span-3{grid-column:span 3/span 3}.lg\:col-span-4{grid-column:span 4/span 4}.lg\:col-span-5{grid-column:span 5/span 5}.lg\:col-span-6{grid-column:span 6/span 6}.lg\:col-span-7{grid-column:span 7/span 7}.lg\:col-span-8{grid-column:span 8/span 8}.lg\:col-span-9{grid-column:span 9/span 9}.lg\:col-span-10{grid-column:span 10/span 10}.lg\:col-span-11{grid-column:span 11/span 11}.lg\:col-span-12{grid-column:span 12/span 12}.lg\:grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))}.lg\:grid-rows-5{grid-template-rows:repeat(5,minmax(0,1fr))}.lg\:row-span-1{grid-row:span 1/span 1}.lg\:row-span-2{grid-row:span 2/span 2}.lg\:row-span-3{grid-row:span 3/span 3}.lg\:row-span-4{grid-row:span 4/span 4}.lg\:row-span-5{grid-row:span 5/span 5}.lg\:row-span-6{grid-row:span 6/span 6}.lg\:elevation-10{box-shadow:0 6px 6px -3px rgba(221,221,221,.43),0 10px 14px 1px rgba(221,221,221,.37),0 4px 18px 3px rgba(221,221,221,.35)}}@media (min-width:1200px){.content-block .xl\:head-alt-xl,.xl\:head-alt-xl{font-size:5.3rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .xl\:head-alt-lg,.xl\:head-alt-lg{font-size:4rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .xl\:head-alt-md,.xl\:head-alt-md{font-size:2.45rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .xl\:head-alt-base,.xl\:head-alt-base{font-size:1.875rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .xl\:head-alt-sm,.xl\:head-alt-sm{font-size:1.6rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .xl\:head-alt-xs,.xl\:head-alt-xs{font-size:1.3rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .xl\:head-alt-2xs,.xl\:head-alt-2xs{font-size:1.125rem;font-family:Bebas Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:.9}.content-block .xl\:head-base,.xl\:head-base{font-size:1.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .xl\:head-sm,.xl\:head-sm{font-size:1.6rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .xl\:head-xs,.xl\:head-xs{font-size:1.3rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .xl\:head-2xs,.xl\:head-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.25}.content-block .xl\:head-heavy-base,.xl\:head-heavy-base{font-size:1.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .xl\:head-heavy-sm,.xl\:head-heavy-sm{font-size:1.6rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .xl\:head-heavy-xs,.xl\:head-heavy-xs{font-size:1.3rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .xl\:head-heavy-2xs,.xl\:head-heavy-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;line-height:1.25}.content-block .xl\:head-allcaps-2xs,.xl\:head-allcaps-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:400;text-transform:uppercase;line-height:1.25}.content-block .xl\:head-allcaps-3xs,.xl\:head-allcaps-3xs{font-size:1rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:400;text-transform:uppercase;line-height:1.25}.content-block .xl\:head-allcaps-4xs,.xl\:head-allcaps-4xs{font-size:.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:400;text-transform:uppercase;line-height:1.25}.content-block .xl\:head-allcaps-heavy-2xs,.xl\:head-allcaps-heavy-2xs{font-size:1.125rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;text-transform:uppercase;line-height:1.25}.content-block .xl\:head-allcaps-heavy-3xs,.xl\:head-allcaps-heavy-3xs{font-size:1rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;text-transform:uppercase;line-height:1.25}.content-block .xl\:head-allcaps-heavy-4xs,.xl\:head-allcaps-heavy-4xs{font-size:.875rem;font-family:Roboto Condensed,Helvetica,Arial,sans-serif;font-weight:700;text-transform:uppercase;line-height:1.25}.xl\:space-y-0>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(0px * var(--space-y-reverse))}.xl\:space-x-2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.5rem * var(--space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--space-x-reverse)))}.xl\:space-x-16>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(4rem * var(--space-x-reverse));margin-left:calc(4rem * calc(1 - var(--space-x-reverse)))}.xl\:flex-row{flex-direction:row}.xl\:h-0{height:0}.xl\:h-1{height:.25rem}.xl\:h-2{height:.5rem}.xl\:h-3{height:.75rem}.xl\:h-4{height:1rem}.xl\:h-5{height:1.25rem}.xl\:h-6{height:1.5rem}.xl\:h-8{height:2rem}.xl\:h-10{height:2.5rem}.xl\:h-12{height:3rem}.xl\:h-16{height:4rem}.xl\:h-20{height:5rem}.xl\:h-24{height:6rem}.xl\:h-28{height:7rem}.xl\:h-32{height:8rem}.xl\:h-36{height:9rem}.xl\:h-40{height:10rem}.xl\:h-44{height:11rem}.xl\:h-48{height:12rem}.xl\:h-52{height:13rem}.xl\:h-56{height:14rem}.xl\:h-64{height:16rem}.xl\:h-80{height:20rem}.xl\:h-0\/5{height:.125rem}.xl\:text-base{font-size:1rem}.xl\:m-0{margin:0}.xl\:m-1{margin:.25rem}.xl\:m-2{margin:.5rem}.xl\:m-3{margin:.75rem}.xl\:m-4{margin:1rem}.xl\:m-5{margin:1.25rem}.xl\:m-6{margin:1.5rem}.xl\:m-8{margin:2rem}.xl\:m-10{margin:2.5rem}.xl\:m-12{margin:3rem}.xl\:m-16{margin:4rem}.xl\:m-20{margin:5rem}.xl\:m-24{margin:6rem}.xl\:m-28{margin:7rem}.xl\:m-32{margin:8rem}.xl\:m-36{margin:9rem}.xl\:m-40{margin:10rem}.xl\:m-44{margin:11rem}.xl\:m-48{margin:12rem}.xl\:m-52{margin:13rem}.xl\:m-56{margin:14rem}.xl\:m-64{margin:16rem}.xl\:m-80{margin:20rem}.xl\:m-0\/5{margin:.125rem}.xl\:my-0{margin-top:0;margin-bottom:0}.xl\:mx-0{margin-left:0;margin-right:0}.xl\:my-1{margin-top:.25rem;margin-bottom:.25rem}.xl\:mx-1{margin-left:.25rem;margin-right:.25rem}.xl\:my-2{margin-top:.5rem;margin-bottom:.5rem}.xl\:mx-2{margin-left:.5rem;margin-right:.5rem}.xl\:my-3{margin-top:.75rem;margin-bottom:.75rem}.xl\:mx-3{margin-left:.75rem;margin-right:.75rem}.xl\:my-4{margin-top:1rem;margin-bottom:1rem}.xl\:mx-4{margin-left:1rem;margin-right:1rem}.xl\:my-5{margin-top:1.25rem;margin-bottom:1.25rem}.xl\:mx-5{margin-left:1.25rem;margin-right:1.25rem}.xl\:my-6{margin-top:1.5rem;margin-bottom:1.5rem}.xl\:mx-6{margin-left:1.5rem;margin-right:1.5rem}.xl\:my-8{margin-top:2rem;margin-bottom:2rem}.xl\:mx-8{margin-left:2rem;margin-right:2rem}.xl\:my-10{margin-top:2.5rem;margin-bottom:2.5rem}.xl\:mx-10{margin-left:2.5rem;margin-right:2.5rem}.xl\:my-12{margin-top:3rem;margin-bottom:3rem}.xl\:mx-12{margin-left:3rem;margin-right:3rem}.xl\:my-16{margin-top:4rem;margin-bottom:4rem}.xl\:mx-16{margin-left:4rem;margin-right:4rem}.xl\:my-20{margin-top:5rem;margin-bottom:5rem}.xl\:mx-20{margin-left:5rem;margin-right:5rem}.xl\:my-24{margin-top:6rem;margin-bottom:6rem}.xl\:mx-24{margin-left:6rem;margin-right:6rem}.xl\:my-28{margin-top:7rem;margin-bottom:7rem}.xl\:mx-28{margin-left:7rem;margin-right:7rem}.xl\:my-32{margin-top:8rem;margin-bottom:8rem}.xl\:mx-32{margin-left:8rem;margin-right:8rem}.xl\:my-36{margin-top:9rem;margin-bottom:9rem}.xl\:mx-36{margin-left:9rem;margin-right:9rem}.xl\:my-40{margin-top:10rem;margin-bottom:10rem}.xl\:mx-40{margin-left:10rem;margin-right:10rem}.xl\:my-44{margin-top:11rem;margin-bottom:11rem}.xl\:mx-44{margin-left:11rem;margin-right:11rem}.xl\:my-48{margin-top:12rem;margin-bottom:12rem}.xl\:mx-48{margin-left:12rem;margin-right:12rem}.xl\:my-52{margin-top:13rem;margin-bottom:13rem}.xl\:mx-52{margin-left:13rem;margin-right:13rem}.xl\:my-56{margin-top:14rem;margin-bottom:14rem}.xl\:mx-56{margin-left:14rem;margin-right:14rem}.xl\:my-64{margin-top:16rem;margin-bottom:16rem}.xl\:mx-64{margin-left:16rem;margin-right:16rem}.xl\:my-80{margin-top:20rem;margin-bottom:20rem}.xl\:mx-80{margin-left:20rem;margin-right:20rem}.xl\:my-0\/5{margin-top:.125rem;margin-bottom:.125rem}.xl\:mx-0\/5{margin-left:.125rem;margin-right:.125rem}.xl\:mt-0{margin-top:0}.xl\:mr-0{margin-right:0}.xl\:mb-0{margin-bottom:0}.xl\:ml-0{margin-left:0}.xl\:mt-1{margin-top:.25rem}.xl\:mr-1{margin-right:.25rem}.xl\:mb-1{margin-bottom:.25rem}.xl\:ml-1{margin-left:.25rem}.xl\:mt-2{margin-top:.5rem}.xl\:mr-2{margin-right:.5rem}.xl\:mb-2{margin-bottom:.5rem}.xl\:ml-2{margin-left:.5rem}.xl\:mt-3{margin-top:.75rem}.xl\:mr-3{margin-right:.75rem}.xl\:mb-3{margin-bottom:.75rem}.xl\:ml-3{margin-left:.75rem}.xl\:mt-4{margin-top:1rem}.xl\:mr-4{margin-right:1rem}.xl\:mb-4{margin-bottom:1rem}.xl\:ml-4{margin-left:1rem}.xl\:mt-5{margin-top:1.25rem}.xl\:mr-5{margin-right:1.25rem}.xl\:mb-5{margin-bottom:1.25rem}.xl\:ml-5{margin-left:1.25rem}.xl\:mt-6{margin-top:1.5rem}.xl\:mr-6{margin-right:1.5rem}.xl\:mb-6{margin-bottom:1.5rem}.xl\:ml-6{margin-left:1.5rem}.xl\:mt-8{margin-top:2rem}.xl\:mr-8{margin-right:2rem}.xl\:mb-8{margin-bottom:2rem}.xl\:ml-8{margin-left:2rem}.xl\:mt-10{margin-top:2.5rem}.xl\:mr-10{margin-right:2.5rem}.xl\:mb-10{margin-bottom:2.5rem}.xl\:ml-10{margin-left:2.5rem}.xl\:mt-12{margin-top:3rem}.xl\:mr-12{margin-right:3rem}.xl\:mb-12{margin-bottom:3rem}.xl\:ml-12{margin-left:3rem}.xl\:mt-16{margin-top:4rem}.xl\:mr-16{margin-right:4rem}.xl\:mb-16{margin-bottom:4rem}.xl\:ml-16{margin-left:4rem}.xl\:mt-20{margin-top:5rem}.xl\:mr-20{margin-right:5rem}.xl\:mb-20{margin-bottom:5rem}.xl\:ml-20{margin-left:5rem}.xl\:mt-24{margin-top:6rem}.xl\:mr-24{margin-right:6rem}.xl\:mb-24{margin-bottom:6rem}.xl\:ml-24{margin-left:6rem}.xl\:mt-28{margin-top:7rem}.xl\:mr-28{margin-right:7rem}.xl\:mb-28{margin-bottom:7rem}.xl\:ml-28{margin-left:7rem}.xl\:mt-32{margin-top:8rem}.xl\:mr-32{margin-right:8rem}.xl\:mb-32{margin-bottom:8rem}.xl\:ml-32{margin-left:8rem}.xl\:mt-36{margin-top:9rem}.xl\:mr-36{margin-right:9rem}.xl\:mb-36{margin-bottom:9rem}.xl\:ml-36{margin-left:9rem}.xl\:mt-40{margin-top:10rem}.xl\:mr-40{margin-right:10rem}.xl\:mb-40{margin-bottom:10rem}.xl\:ml-40{margin-left:10rem}.xl\:mt-44{margin-top:11rem}.xl\:mr-44{margin-right:11rem}.xl\:mb-44{margin-bottom:11rem}.xl\:ml-44{margin-left:11rem}.xl\:mt-48{margin-top:12rem}.xl\:mr-48{margin-right:12rem}.xl\:mb-48{margin-bottom:12rem}.xl\:ml-48{margin-left:12rem}.xl\:mt-52{margin-top:13rem}.xl\:mr-52{margin-right:13rem}.xl\:mb-52{margin-bottom:13rem}.xl\:ml-52{margin-left:13rem}.xl\:mt-56{margin-top:14rem}.xl\:mr-56{margin-right:14rem}.xl\:mb-56{margin-bottom:14rem}.xl\:ml-56{margin-left:14rem}.xl\:mt-64{margin-top:16rem}.xl\:mr-64{margin-right:16rem}.xl\:mb-64{margin-bottom:16rem}.xl\:ml-64{margin-left:16rem}.xl\:mt-80{margin-top:20rem}.xl\:mr-80{margin-right:20rem}.xl\:mb-80{margin-bottom:20rem}.xl\:ml-80{margin-left:20rem}.xl\:mt-0\/5{margin-top:.125rem}.xl\:mr-0\/5{margin-right:.125rem}.xl\:mb-0\/5{margin-bottom:.125rem}.xl\:ml-0\/5{margin-left:.125rem}.xl\:p-0{padding:0}.xl\:p-1{padding:.25rem}.xl\:p-2{padding:.5rem}.xl\:p-3{padding:.75rem}.xl\:p-4{padding:1rem}.xl\:p-5{padding:1.25rem}.xl\:p-6{padding:1.5rem}.xl\:p-8{padding:2rem}.xl\:p-10{padding:2.5rem}.xl\:p-12{padding:3rem}.xl\:p-16{padding:4rem}.xl\:p-20{padding:5rem}.xl\:p-24{padding:6rem}.xl\:p-28{padding:7rem}.xl\:p-32{padding:8rem}.xl\:p-36{padding:9rem}.xl\:p-40{padding:10rem}.xl\:p-44{padding:11rem}.xl\:p-48{padding:12rem}.xl\:p-52{padding:13rem}.xl\:p-56{padding:14rem}.xl\:p-64{padding:16rem}.xl\:p-80{padding:20rem}.xl\:p-0\/5{padding:.125rem}.xl\:py-0{padding-top:0;padding-bottom:0}.xl\:px-0{padding-left:0;padding-right:0}.xl\:py-1{padding-top:.25rem;padding-bottom:.25rem}.xl\:px-1{padding-left:.25rem;padding-right:.25rem}.xl\:py-2{padding-top:.5rem;padding-bottom:.5rem}.xl\:px-2{padding-left:.5rem;padding-right:.5rem}.xl\:py-3{padding-top:.75rem;padding-bottom:.75rem}.xl\:px-3{padding-left:.75rem;padding-right:.75rem}.xl\:py-4{padding-top:1rem;padding-bottom:1rem}.xl\:px-4{padding-left:1rem;padding-right:1rem}.xl\:py-5{padding-top:1.25rem;padding-bottom:1.25rem}.xl\:px-5{padding-left:1.25rem;padding-right:1.25rem}.xl\:py-6{padding-top:1.5rem;padding-bottom:1.5rem}.xl\:px-6{padding-left:1.5rem;padding-right:1.5rem}.xl\:py-8{padding-top:2rem;padding-bottom:2rem}.xl\:px-8{padding-left:2rem;padding-right:2rem}.xl\:py-10{padding-top:2.5rem;padding-bottom:2.5rem}.xl\:px-10{padding-left:2.5rem;padding-right:2.5rem}.xl\:py-12{padding-top:3rem;padding-bottom:3rem}.xl\:px-12{padding-left:3rem;padding-right:3rem}.xl\:py-16{padding-top:4rem;padding-bottom:4rem}.xl\:px-16{padding-left:4rem;padding-right:4rem}.xl\:py-20{padding-top:5rem;padding-bottom:5rem}.xl\:px-20{padding-left:5rem;padding-right:5rem}.xl\:py-24{padding-top:6rem;padding-bottom:6rem}.xl\:px-24{padding-left:6rem;padding-right:6rem}.xl\:py-28{padding-top:7rem;padding-bottom:7rem}.xl\:px-28{padding-left:7rem;padding-right:7rem}.xl\:py-32{padding-top:8rem;padding-bottom:8rem}.xl\:px-32{padding-left:8rem;padding-right:8rem}.xl\:py-36{padding-top:9rem;padding-bottom:9rem}.xl\:px-36{padding-left:9rem;padding-right:9rem}.xl\:py-40{padding-top:10rem;padding-bottom:10rem}.xl\:px-40{padding-left:10rem;padding-right:10rem}.xl\:py-44{padding-top:11rem;padding-bottom:11rem}.xl\:px-44{padding-left:11rem;padding-right:11rem}.xl\:py-48{padding-top:12rem;padding-bottom:12rem}.xl\:px-48{padding-left:12rem;padding-right:12rem}.xl\:py-52{padding-top:13rem;padding-bottom:13rem}.xl\:px-52{padding-left:13rem;padding-right:13rem}.xl\:py-56{padding-top:14rem;padding-bottom:14rem}.xl\:px-56{padding-left:14rem;padding-right:14rem}.xl\:py-64{padding-top:16rem;padding-bottom:16rem}.xl\:px-64{padding-left:16rem;padding-right:16rem}.xl\:py-80{padding-top:20rem;padding-bottom:20rem}.xl\:px-80{padding-left:20rem;padding-right:20rem}.xl\:py-0\/5{padding-top:.125rem;padding-bottom:.125rem}.xl\:px-0\/5{padding-left:.125rem;padding-right:.125rem}.xl\:pt-0{padding-top:0}.xl\:pr-0{padding-right:0}.xl\:pb-0{padding-bottom:0}.xl\:pl-0{padding-left:0}.xl\:pt-1{padding-top:.25rem}.xl\:pr-1{padding-right:.25rem}.xl\:pb-1{padding-bottom:.25rem}.xl\:pl-1{padding-left:.25rem}.xl\:pt-2{padding-top:.5rem}.xl\:pr-2{padding-right:.5rem}.xl\:pb-2{padding-bottom:.5rem}.xl\:pl-2{padding-left:.5rem}.xl\:pt-3{padding-top:.75rem}.xl\:pr-3{padding-right:.75rem}.xl\:pb-3{padding-bottom:.75rem}.xl\:pl-3{padding-left:.75rem}.xl\:pt-4{padding-top:1rem}.xl\:pr-4{padding-right:1rem}.xl\:pb-4{padding-bottom:1rem}.xl\:pl-4{padding-left:1rem}.xl\:pt-5{padding-top:1.25rem}.xl\:pr-5{padding-right:1.25rem}.xl\:pb-5{padding-bottom:1.25rem}.xl\:pl-5{padding-left:1.25rem}.xl\:pt-6{padding-top:1.5rem}.xl\:pr-6{padding-right:1.5rem}.xl\:pb-6{padding-bottom:1.5rem}.xl\:pl-6{padding-left:1.5rem}.xl\:pt-8{padding-top:2rem}.xl\:pr-8{padding-right:2rem}.xl\:pb-8{padding-bottom:2rem}.xl\:pl-8{padding-left:2rem}.xl\:pt-10{padding-top:2.5rem}.xl\:pr-10{padding-right:2.5rem}.xl\:pb-10{padding-bottom:2.5rem}.xl\:pl-10{padding-left:2.5rem}.xl\:pt-12{padding-top:3rem}.xl\:pr-12{padding-right:3rem}.xl\:pb-12{padding-bottom:3rem}.xl\:pl-12{padding-left:3rem}.xl\:pt-16{padding-top:4rem}.xl\:pr-16{padding-right:4rem}.xl\:pb-16{padding-bottom:4rem}.xl\:pl-16{padding-left:4rem}.xl\:pt-20{padding-top:5rem}.xl\:pr-20{padding-right:5rem}.xl\:pb-20{padding-bottom:5rem}.xl\:pl-20{padding-left:5rem}.xl\:pt-24{padding-top:6rem}.xl\:pr-24{padding-right:6rem}.xl\:pb-24{padding-bottom:6rem}.xl\:pl-24{padding-left:6rem}.xl\:pt-28{padding-top:7rem}.xl\:pr-28{padding-right:7rem}.xl\:pb-28{padding-bottom:7rem}.xl\:pl-28{padding-left:7rem}.xl\:pt-32{padding-top:8rem}.xl\:pr-32{padding-right:8rem}.xl\:pb-32{padding-bottom:8rem}.xl\:pl-32{padding-left:8rem}.xl\:pt-36{padding-top:9rem}.xl\:pr-36{padding-right:9rem}.xl\:pb-36{padding-bottom:9rem}.xl\:pl-36{padding-left:9rem}.xl\:pt-40{padding-top:10rem}.xl\:pr-40{padding-right:10rem}.xl\:pb-40{padding-bottom:10rem}.xl\:pl-40{padding-left:10rem}.xl\:pt-44{padding-top:11rem}.xl\:pr-44{padding-right:11rem}.xl\:pb-44{padding-bottom:11rem}.xl\:pl-44{padding-left:11rem}.xl\:pt-48{padding-top:12rem}.xl\:pr-48{padding-right:12rem}.xl\:pb-48{padding-bottom:12rem}.xl\:pl-48{padding-left:12rem}.xl\:pt-52{padding-top:13rem}.xl\:pr-52{padding-right:13rem}.xl\:pb-52{padding-bottom:13rem}.xl\:pl-52{padding-left:13rem}.xl\:pt-56{padding-top:14rem}.xl\:pr-56{padding-right:14rem}.xl\:pb-56{padding-bottom:14rem}.xl\:pl-56{padding-left:14rem}.xl\:pt-64{padding-top:16rem}.xl\:pr-64{padding-right:16rem}.xl\:pb-64{padding-bottom:16rem}.xl\:pl-64{padding-left:16rem}.xl\:pt-80{padding-top:20rem}.xl\:pr-80{padding-right:20rem}.xl\:pb-80{padding-bottom:20rem}.xl\:pl-80{padding-left:20rem}.xl\:pt-0\/5{padding-top:.125rem}.xl\:pr-0\/5{padding-right:.125rem}.xl\:pb-0\/5{padding-bottom:.125rem}.xl\:pl-0\/5{padding-left:.125rem}.xl\:w-0{width:0}.xl\:w-1{width:.25rem}.xl\:w-2{width:.5rem}.xl\:w-3{width:.75rem}.xl\:w-4{width:1rem}.xl\:w-5{width:1.25rem}.xl\:w-6{width:1.5rem}.xl\:w-8{width:2rem}.xl\:w-10{width:2.5rem}.xl\:w-12{width:3rem}.xl\:w-16{width:4rem}.xl\:w-20{width:5rem}.xl\:w-24{width:6rem}.xl\:w-28{width:7rem}.xl\:w-32{width:8rem}.xl\:w-36{width:9rem}.xl\:w-40{width:10rem}.xl\:w-44{width:11rem}.xl\:w-48{width:12rem}.xl\:w-52{width:13rem}.xl\:w-56{width:14rem}.xl\:w-64{width:16rem}.xl\:w-80{width:20rem}.xl\:w-0\/5{width:.125rem}.xl\:w-1\/2{width:50%}.xl\:w-1\/3{width:33.333333%}.xl\:w-2\/3{width:66.666667%}.xl\:w-1\/4{width:25%}.xl\:w-2\/4{width:50%}.xl\:w-3\/4{width:75%}.xl\:w-1\/5{width:20%}.xl\:w-2\/5{width:40%}.xl\:w-3\/5{width:60%}.xl\:w-4\/5{width:80%}.xl\:w-1\/6{width:16.666667%}.xl\:w-2\/6{width:33.333333%}.xl\:w-3\/6{width:50%}.xl\:w-4\/6{width:66.666667%}.xl\:w-5\/6{width:83.333333%}.xl\:w-1\/12{width:8.333333%}.xl\:w-2\/12{width:16.666667%}.xl\:w-3\/12{width:25%}.xl\:w-4\/12{width:33.333333%}.xl\:w-5\/12{width:41.666667%}.xl\:w-6\/12{width:50%}.xl\:w-7\/12{width:58.333333%}.xl\:w-8\/12{width:66.666667%}.xl\:w-9\/12{width:75%}.xl\:w-10\/12{width:83.333333%}.xl\:w-11\/12{width:91.666667%}.xl\:grid-flow-row{grid-auto-flow:row}.xl\:grid-flow-col{grid-auto-flow:column}.xl\:grid-flow-row-dense{grid-auto-flow:row dense}.xl\:grid-flow-col-dense{grid-auto-flow:column dense}.xl\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.xl\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.xl\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.xl\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.xl\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.xl\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.xl\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.xl\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.xl\:grid-cols-none{grid-template-columns:none}.xl\:col-span-1{grid-column:span 1/span 1}.xl\:col-span-2{grid-column:span 2/span 2}.xl\:col-span-3{grid-column:span 3/span 3}.xl\:col-span-4{grid-column:span 4/span 4}.xl\:col-span-5{grid-column:span 5/span 5}.xl\:col-span-6{grid-column:span 6/span 6}.xl\:col-span-7{grid-column:span 7/span 7}.xl\:col-span-8{grid-column:span 8/span 8}.xl\:col-span-9{grid-column:span 9/span 9}.xl\:col-span-10{grid-column:span 10/span 10}.xl\:col-span-11{grid-column:span 11/span 11}.xl\:col-span-12{grid-column:span 12/span 12}.xl\:row-span-1{grid-row:span 1/span 1}.xl\:row-span-2{grid-row:span 2/span 2}.xl\:row-span-3{grid-row:span 3/span 3}.xl\:row-span-4{grid-row:span 4/span 4}.xl\:row-span-5{grid-row:span 5/span 5}.xl\:row-span-6{grid-row:span 6/span 6}} diff --git a/uniweb/static/uniweb/assets/fonts/pirati-ui.eot b/uniweb/static/uniweb/assets/fonts/pirati-ui.eot new file mode 100644 index 0000000000000000000000000000000000000000..9c66fd653354cc5c5b7352ec939df7ac02a142c5 GIT binary patch literal 13744 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 D&j=9J literal 0 HcmV?d00001 diff --git a/uniweb/static/uniweb/assets/fonts/pirati-ui.svg b/uniweb/static/uniweb/assets/fonts/pirati-ui.svg new file mode 100644 index 00000000..364c1a5f --- /dev/null +++ b/uniweb/static/uniweb/assets/fonts/pirati-ui.svg @@ -0,0 +1,71 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg"> +<metadata>Generated by IcoMoon</metadata> +<defs> +<font id="pirati-ui" horiz-adv-x="1024"> +<font-face units-per-em="1024" ascent="960" descent="-64" /> +<missing-glyph horiz-adv-x="1024" /> +<glyph unicode=" " horiz-adv-x="512" d="" /> +<glyph unicode="" glyph-name="gplus" d="M325.8 502.6v-111.8h184.8c-7.4-48-55.8-140.6-184.8-140.6-111.2 0-202 92.2-202 205.8s90.8 205.8 202 205.8c63.4 0 105.6-27 129.8-50.2l88.4 85.2c-56.8 53-130.4 85.2-218.2 85.2-180.2-0.2-325.8-145.8-325.8-326s145.6-325.8 325.8-325.8c188 0 312.8 132.2 312.8 318.4 0 21.4-2.4 37.8-5.2 54h-307.6zM1024 512h-96v96h-96v-96h-96v-96h96v-96h96v96h96z" /> +<glyph unicode="" glyph-name="twitter1" d="M1024 733.6c-37.6-16.8-78.2-28-120.6-33 43.4 26 76.6 67.2 92.4 116.2-40.6-24-85.6-41.6-133.4-51-38.4 40.8-93 66.2-153.4 66.2-116 0-210-94-210-210 0-16.4 1.8-32.4 5.4-47.8-174.6 8.8-329.4 92.4-433 219.6-18-31-28.4-67.2-28.4-105.6 0-72.8 37-137.2 93.4-174.8-34.4 1-66.8 10.6-95.2 26.2 0-0.8 0-1.8 0-2.6 0-101.8 72.4-186.8 168.6-206-17.6-4.8-36.2-7.4-55.4-7.4-13.6 0-26.6 1.4-39.6 3.8 26.8-83.4 104.4-144.2 196.2-146-72-56.4-162.4-90-261-90-17 0-33.6 1-50.2 3 93.2-59.8 203.6-94.4 322.2-94.4 386.4 0 597.8 320.2 597.8 597.8 0 9.2-0.2 18.2-0.6 27.2 41 29.4 76.6 66.4 104.8 108.6z" /> +<glyph unicode="" glyph-name="facebook" d="M608 768h160v192h-160c-123.514 0-224-100.486-224-224v-96h-128v-192h128v-512h192v512h160l32 192h-192v96c0 17.346 14.654 32 32 32z" /> +<glyph unicode="" glyph-name="linkedin" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM384 128h-128v448h128v-448zM320 640c-35.4 0-64 28.6-64 64s28.6 64 64 64c35.4 0 64-28.6 64-64s-28.6-64-64-64zM832 128h-128v256c0 35.4-28.6 64-64 64s-64-28.6-64-64v-256h-128v448h128v-79.4c26.4 36.2 66.8 79.4 112 79.4 79.6 0 144-71.6 144-160v-288z" /> +<glyph unicode="" glyph-name="github1" d="M512.008 947.358c-282.738 0-512.008-229.218-512.008-511.998 0-226.214 146.704-418.132 350.136-485.836 25.586-4.738 34.992 11.11 34.992 24.632 0 12.204-0.48 52.542-0.696 95.324-142.448-30.976-172.504 60.41-172.504 60.41-23.282 59.176-56.848 74.916-56.848 74.916-46.452 31.778 3.51 31.124 3.51 31.124 51.4-3.61 78.476-52.766 78.476-52.766 45.672-78.27 119.776-55.64 149.004-42.558 4.588 33.086 17.852 55.68 32.506 68.464-113.73 12.942-233.276 56.85-233.276 253.032 0 55.898 20.004 101.574 52.76 137.428-5.316 12.9-22.854 64.972 4.952 135.5 0 0 43.006 13.752 140.84-52.49 40.836 11.348 84.636 17.036 128.154 17.234 43.502-0.198 87.336-5.886 128.256-17.234 97.734 66.244 140.656 52.49 140.656 52.49 27.872-70.528 10.35-122.6 5.036-135.5 32.82-35.856 52.694-81.532 52.694-137.428 0-196.654-119.778-239.95-233.79-252.624 18.364-15.89 34.724-47.046 34.724-94.812 0-68.508-0.596-123.644-0.596-140.508 0-13.628 9.222-29.594 35.172-24.566 203.322 67.776 349.842 259.626 349.842 485.768 0 282.78-229.234 511.998-511.992 511.998z" /> +<glyph unicode="" glyph-name="at" d="M696.32 283.136c-46.612-48.782-112.182-79.108-184.835-79.108-141.102 0-255.488 114.386-255.488 255.488 0 0.451 0.001 0.902 0.004 1.353v-0.070c0 141.385 114.615 256 256 256 57.921 0 111.348-19.235 154.244-51.667l-0.644 0.467v51.2h102.4v-332.8c0-42.415 34.385-76.8 76.8-76.8s76.8 34.385 76.8 76.8v0 76.8c-0.167 226.090-183.487 409.307-409.6 409.307-226.216 0-409.6-183.384-409.6-409.6s183.384-409.6 409.6-409.6c66.818 0 129.898 15.999 185.62 44.376l-2.325-1.074 46.080-91.648c-66.813-34.208-145.753-54.255-229.376-54.255-282.77 0-512 229.23-512 512s229.23 512 512 512c282.596 0 511.718-228.948 512-511.478v-0.027h-0.512v-76.8c0.001-0.159 0.001-0.346 0.001-0.534 0-98.969-80.231-179.2-179.2-179.2-61.529 0-115.815 31.010-148.083 78.253l-0.398 0.617zM512 307.2c84.831 0 153.6 68.769 153.6 153.6s-68.769 153.6-153.6 153.6v0c-84.831 0-153.6-68.769-153.6-153.6s68.769-153.6 153.6-153.6v0z" /> +<glyph unicode="" glyph-name="location" d="M512 960c-176.732 0-320-143.268-320-320 0-320 320-704 320-704s320 384 320 704c0 176.732-143.27 320-320 320zM512 448c-106.040 0-192 85.96-192 192s85.96 192 192 192 192-85.96 192-192-85.96-192-192-192z" /> +<glyph unicode="" glyph-name="phone" d="M704 320c-64-64-64-128-128-128s-128 64-192 128-128 128-128 192 64 64 128 128-128 256-192 256-192-192-192-192c0-128 131.5-387.5 256-512s384-256 512-256c0 0 192 128 192 192s-192 256-256 192z" /> +<glyph unicode="" glyph-name="city" d="M810 298.667v86h-84v-86h84zM810 128.667v84h-84v-84h84zM554 640.667v84h-84v-84h84zM554 468.667v86h-84v-86h84zM554 298.667v86h-84v-86h84zM554 128.667v84h-84v-84h84zM298 468.667v86h-84v-86h84zM298 298.667v86h-84v-86h84zM298 128.667v84h-84v-84h84zM640 468.667h256v-426h-768v598h256v84l128 128 128-128v-256z" /> +<glyph unicode="" glyph-name="beer" d="M426.667 234.667c0-11.733-9.6-21.333-21.333-21.333s-21.333 9.6-21.333 21.333v256c0 11.733 9.6 21.333 21.333 21.333s21.333-9.6 21.333-21.333v-256zM512 234.667c0-11.733-9.6-21.333-21.333-21.333s-21.333 9.6-21.333 21.333v256c0 11.733 9.6 21.333 21.333 21.333s21.333-9.6 21.333-21.333v-256zM597.333 234.667c0-11.733-9.6-21.333-21.333-21.333s-21.333 9.6-21.333 21.333v256c0 11.733 9.6 21.333 21.333 21.333s21.333-9.6 21.333-21.333v-256zM789.333 682.667h-21.333v42.667c0 47.104-38.229 85.333-85.333 85.333h-384c-47.104 0-85.333-38.229-85.333-85.333v-554.667c0-70.656 57.344-128 128-128h298.667c70.656 0 128 57.344 128 128h21.333c82.347 0 149.333 66.987 149.333 149.333v213.333c0 82.347-66.987 149.333-149.333 149.333zM298.667 725.334h384v-42.667h-189.611l-5.035-14.165c-6.997-19.541-28.288-31.147-47.659-27.648l-14.848 2.475-7.381-13.099c-11.392-20.267-32.64-32.896-55.467-32.896-35.285 0-64 28.715-64 64v64zM682.667 170.667c0-23.552-19.115-42.667-42.667-42.667h-298.667c-23.552 0-42.667 19.115-42.667 42.667v405.76c17.877-13.525 39.936-21.76 64-21.76 33.451 0 64.896 16.043 84.864 42.667 31.061 0 59.008 16.683 74.069 42.667h161.067v-469.334zM853.333 320c0-35.285-28.715-64-64-64h-64v341.333h64c35.285 0 64-28.715 64-64v-213.333z" /> +<glyph unicode="" glyph-name="thermometer" d="M543.553 218.694c37.519-13.052 64.447-48.728 64.447-90.694 0-53.019-42.981-96-96-96s-96 42.981-96 96c0 41.961 26.922 77.635 64.435 90.69-0.286 1.727-0.435 3.5-0.435 5.309v480.003c0 17.448 14.327 31.999 32 31.999 17.796 0 32-14.326 32-31.999v-480.003c0-1.803-0.153-3.576-0.447-5.305v0zM576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM638.996 272.003c39.862-35.181 65.004-86.656 65.004-144.003 0-106.039-85.961-192-192-192s-192 85.961-192 192c0 57.346 25.141 108.82 65.002 144.002-0.661 5.27-1.002 10.639-1.002 16.088v543.82c0 70.556 57.308 128.090 128 128.090 70.549 0 128-57.348 128-128.090v-543.82c0-5.447-0.342-10.816-1.004-16.087v0 0z" /> +<glyph unicode="" glyph-name="paw" horiz-adv-x="951" d="M445.714 681.143c0-64-33.143-140-106.857-140-92.571 0-148.571 116.571-148.571 196.571 0 64 33.143 140 106.857 140 93.143 0 148.571-116.571 148.571-196.571zM250.286 405.143c0-55.429-29.143-113.143-92-113.143-91.429 0-158.286 112-158.286 194.857 0 55.429 29.714 113.714 92 113.714 91.429 0 158.286-112.571 158.286-195.429zM475.429 420.571c140 0 329.143-201.714 329.143-336.571 0-72.571-59.429-84-117.714-84-76.571 0-138.286 51.429-211.429 51.429-76.571 0-141.714-50.857-224.571-50.857-55.429 0-104.571 18.857-104.571 83.429 0 135.429 189.143 336.571 329.143 336.571zM612 541.143c-73.714 0-106.857 76-106.857 140 0 80 55.429 196.571 148.571 196.571 73.714 0 106.857-76 106.857-140 0-80-56-196.571-148.571-196.571zM858.857 600.571c62.286 0 92-58.286 92-113.714 0-82.857-66.857-194.857-158.286-194.857-62.857 0-92 57.714-92 113.143 0 82.857 66.857 195.429 158.286 195.429z" /> +<glyph unicode="" glyph-name="power" d="M384 960l-384-512h384l-256-512 896 640h-512l384 384z" /> +<glyph unicode="" glyph-name="pirati" horiz-adv-x="968" d="M458.203 826.435c-109.449 0-211.478-42.667-287.536-118.725-77.913-76.058-120.58-179.942-120.58-287.536 0-109.449 42.667-211.478 118.725-289.391 77.913-76.058 179.942-118.725 287.536-118.725 109.449 0 211.478 42.667 287.536 118.725 77.913 76.058 118.725 179.942 118.725 287.536 0 109.449-42.667 211.478-118.725 287.536-74.203 79.768-176.232 120.58-285.681 120.58zM458.203 51.014c-204.058 0-369.159 165.101-369.159 369.159s165.101 369.159 369.159 369.159c204.058 0 369.159-165.101 369.159-369.159s-165.101-369.159-369.159-369.159zM335.768 661.333v57.507h-35.246v-66.783c-24.116-7.42-38.957-14.841-35.246-20.406 7.42 1.855 20.406 3.71 35.246 1.855v-341.333c-37.101-70.493 16.696-179.942 16.696-179.942s-38.957 116.87 48.232 172.522c79.768 50.087 358.029 27.826 356.174 183.652-1.855 220.754-257.855 220.754-385.855 192.928zM448.928 446.145c-12.986-59.362-76.058-89.043-115.014-115.014v298.667c64.928-14.841 140.986-64.928 115.014-183.652z" /> +<glyph unicode="" glyph-name="open-source" d="M512 943.712c-282.304 0-512-229.696-512-512 0-210.624 132.032-402.432 328.448-477.248 8.192-3.264 17.408-2.752 25.344 1.088 7.936 3.904 13.952 10.816 16.576 19.264l96 306.56c4.544 14.528-1.728 30.272-15.040 37.568-41.536 22.912-67.328 66.112-67.328 112.768 0 70.592 57.408 128 128 128s128-57.408 128-128c0-46.656-25.792-89.856-67.328-112.832-13.312-7.296-19.648-23.040-15.040-37.568l96-306.56c2.624-8.448 8.64-15.36 16.576-19.264 4.416-2.112 9.216-3.2 13.952-3.2 3.84 0 7.744 0.704 11.392 2.112 196.48 74.88 328.448 266.688 328.448 477.312 0 282.304-229.696 512-512 512z" /> +<glyph unicode="" glyph-name="stackshare" horiz-adv-x="1150" d="M994.848 306.216c-58.718 0-109.37-35.183-132.020-85.575h-183.898l-72.283 228.341 73.252 227.035h182.664c22.489-50.736 73.322-86.245 132.285-86.245 79.789 0 144.685 64.908 144.685 144.691s-64.9 144.685-144.685 144.685c-56.185 0-104.953-32.216-128.915-79.128h-230.524c-0.002 0-0.004 0-0.008 0-27.142 0-50.216-17.435-58.626-41.723l-0.133-0.436-83.594-247.536h-204.86c-22.127 51.614-73.405 87.843-133.036 87.843-79.769 0-144.685-64.9-144.685-144.685 0-79.769 64.915-144.669 144.685-144.669 55.549 0 103.843 31.476 128.078 77.501h208.838l83.616-247.536c8.523-24.715 31.583-42.159 58.717-42.159 0.010 0 0.022 0 0.027 0h231.176c23.823-47.274 72.793-79.769 129.228-79.769 79.789 0 144.685 64.9 144.685 144.685 0 79.769-64.9 144.669-144.685 144.669zM994.848 801.65c37.045 0 67.183-30.143 67.183-67.183s-30.143-67.183-67.183-67.183c-37.046 0-67.162 30.151-67.162 67.183 0 37.045 30.116 67.183 67.162 67.183zM155.163 386.326c-37.045 0-67.162 30.143-67.162 67.162 0 37.052 30.116 67.183 67.162 67.183s67.183-30.137 67.183-67.183c0-37.017-30.143-67.162-67.183-67.162zM994.848 94.37c-37.045 0-67.162 30.143-67.162 67.183s30.116 67.162 67.162 67.162c37.046 0 67.183-30.116 67.183-67.162s-30.143-67.183-67.183-67.183z" /> +<glyph unicode="" glyph-name="link1" d="M726 640.667c118 0 212-96 212-214s-94-214-212-214h-172v82h172c72 0 132 60 132 132s-60 132-132 132h-172v82h172zM342 384.667v84h340v-84h-340zM166 426.667c0-72 60-132 132-132h172v-82h-172c-118 0-212 96-212 214s94 214 212 214h172v-82h-172c-72 0-132-60-132-132z" /> +<glyph unicode="" glyph-name="arrow-down" d="M316 604.667l196-196 196 196 60-60-256-256-256 256z" /> +<glyph unicode="" glyph-name="link" d="M440.236 324.234c-13.31 0-26.616 5.076-36.77 15.23-95.134 95.136-95.134 249.934 0 345.070l192 192c46.088 46.086 107.36 71.466 172.534 71.466s126.448-25.38 172.536-71.464c95.132-95.136 95.132-249.934 0-345.070l-87.766-87.766c-20.308-20.308-53.23-20.308-73.54 0-20.306 20.306-20.306 53.232 0 73.54l87.766 87.766c54.584 54.586 54.584 143.404 0 197.99-26.442 26.442-61.6 41.004-98.996 41.004s-72.552-14.562-98.996-41.006l-192-191.998c-54.586-54.586-54.586-143.406 0-197.992 20.308-20.306 20.306-53.232 0-73.54-10.15-10.152-23.462-15.23-36.768-15.23zM256-52c-65.176 0-126.45 25.38-172.534 71.464-95.134 95.136-95.134 249.934 0 345.070l87.764 87.764c20.308 20.306 53.234 20.306 73.54 0 20.308-20.306 20.308-53.232 0-73.54l-87.764-87.764c-54.586-54.586-54.586-143.406 0-197.992 26.44-26.44 61.598-41.002 98.994-41.002s72.552 14.562 98.998 41.006l192 191.998c54.584 54.586 54.584 143.406 0 197.992-20.308 20.308-20.306 53.232 0 73.54 20.306 20.306 53.232 20.306 73.54-0.002 95.132-95.134 95.132-249.932 0.002-345.068l-192.002-192c-46.090-46.088-107.364-71.466-172.538-71.466z" /> +<glyph unicode="" glyph-name="search" d="M1014.88 33.504c12.192-12.192 12.192-31.968 0-44.192l-44.192-44.192c-12.224-12.192-32-12.192-44.192 0l-309.376 309.376c-3.36 3.36-5.6 7.328-7.104 11.552-63.456-46.368-141.376-74.048-226.016-74.048-212.064 0-384 171.936-384 384s171.936 384 384 384c212.064 0 384-171.936 384-384 0-84.64-27.68-162.56-74.048-226.016 4.224-1.504 8.192-3.712 11.552-7.104l309.376-309.376zM384 832c-141.376 0-256-114.624-256-256s114.624-256 256-256 256 114.624 256 256c0 141.376-114.624 256-256 256z" /> +<glyph unicode="" glyph-name="map" d="M0 768l320 128v-768l-320-128zM384 928l320-192v-736l-320 160zM768 736l256 192v-768l-256-192z" /> +<glyph unicode="" glyph-name="compass" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM96 448c0 229.75 186.25 416 416 416 109.574 0 209.232-42.386 283.534-111.628l-411.534-176.372-176.372-411.534c-69.242 74.302-111.628 173.96-111.628 283.534zM585.166 374.834l-256.082-109.75 109.75 256.082 146.332-146.332zM512 32c-109.574 0-209.234 42.386-283.532 111.628l411.532 176.372 176.372 411.532c69.242-74.298 111.628-173.958 111.628-283.532 0-229.75-186.25-416-416-416z" /> +<glyph unicode="" glyph-name="folder-open" d="M832 0l192 512h-832l-192-512zM128 576l-128-576v832h288l128-128h416v-128z" /> +<glyph unicode="" glyph-name="folder" d="M448 832l128-128h448v-704h-1024v832z" /> +<glyph unicode="" glyph-name="drawer" d="M1016.988 307.99l-256 320c-6.074 7.592-15.266 12.010-24.988 12.010h-448c-9.72 0-18.916-4.418-24.988-12.010l-256-320c-4.538-5.674-7.012-12.724-7.012-19.99v-288c0-35.346 28.654-64 64-64h896c35.348 0 64 28.654 64 64v288c0 7.266-2.472 14.316-7.012 19.99zM960 256h-224l-128-128h-192l-128 128h-224v20.776l239.38 299.224h417.24l239.38-299.224v-20.776zM736 448h-448c-17.672 0-32 14.328-32 32s14.328 32 32 32h448c17.674 0 32-14.328 32-32s-14.326-32-32-32zM800 320h-576c-17.672 0-32 14.326-32 32s14.328 32 32 32h576c17.674 0 32-14.326 32-32s-14.326-32-32-32z" /> +<glyph unicode="" glyph-name="stop" d="M128 832h768v-768h-768z" /> +<glyph unicode="" glyph-name="github" d="M512.008 947.358c-282.738 0-512.008-229.218-512.008-511.998 0-226.214 146.704-418.132 350.136-485.836 25.586-4.738 34.992 11.11 34.992 24.632 0 12.204-0.48 52.542-0.696 95.324-142.448-30.976-172.504 60.41-172.504 60.41-23.282 59.176-56.848 74.916-56.848 74.916-46.452 31.778 3.51 31.124 3.51 31.124 51.4-3.61 78.476-52.766 78.476-52.766 45.672-78.27 119.776-55.64 149.004-42.558 4.588 33.086 17.852 55.68 32.506 68.464-113.73 12.942-233.276 56.85-233.276 253.032 0 55.898 20.004 101.574 52.76 137.428-5.316 12.9-22.854 64.972 4.952 135.5 0 0 43.006 13.752 140.84-52.49 40.836 11.348 84.636 17.036 128.154 17.234 43.502-0.198 87.336-5.886 128.256-17.234 97.734 66.244 140.656 52.49 140.656 52.49 27.872-70.528 10.35-122.6 5.036-135.5 32.82-35.856 52.694-81.532 52.694-137.428 0-196.654-119.778-239.95-233.79-252.624 18.364-15.89 34.724-47.046 34.724-94.812 0-68.508-0.596-123.644-0.596-140.508 0-13.628 9.222-29.594 35.172-24.566 203.322 67.776 349.842 259.626 349.842 485.768 0 282.78-229.234 511.998-511.992 511.998z" /> +<glyph unicode="" glyph-name="clock" d="M658.744 210.744l-210.744 210.746v282.51h128v-229.49l173.256-173.254zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384s-171.922-384-384-384z" /> +<glyph unicode="" glyph-name="calendar" d="M320 576h128v-128h-128zM512 576h128v-128h-128zM704 576h128v-128h-128zM128 192h128v-128h-128zM320 192h128v-128h-128zM512 192h128v-128h-128zM320 384h128v-128h-128zM512 384h128v-128h-128zM704 384h128v-128h-128zM128 384h128v-128h-128zM832 960v-64h-128v64h-448v-64h-128v64h-128v-1024h960v1024h-128zM896 0h-832v704h832v-704z" /> +<glyph unicode="" glyph-name="flickr" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM288 288c-88.4 0-160 71.6-160 160s71.6 160 160 160 160-71.6 160-160-71.6-160-160-160zM736 288c-88.4 0-160 71.6-160 160s71.6 160 160 160c88.4 0 160-71.6 160-160s-71.6-160-160-160z" /> +<glyph unicode="" glyph-name="instagram" d="M512 867.8c136.8 0 153-0.6 206.8-3 50-2.2 77-10.6 95-17.6 23.8-9.2 41-20.4 58.8-38.2 18-18 29-35 38.4-58.8 7-18 15.4-45.2 17.6-95 2.4-54 3-70.2 3-206.8s-0.6-153-3-206.8c-2.2-50-10.6-77-17.6-95-9.2-23.8-20.4-41-38.2-58.8-18-18-35-29-58.8-38.4-18-7-45.2-15.4-95-17.6-54-2.4-70.2-3-206.8-3s-153 0.6-206.8 3c-50 2.2-77 10.6-95 17.6-23.8 9.2-41 20.4-58.8 38.2-18 18-29 35-38.4 58.8-7 18-15.4 45.2-17.6 95-2.4 54-3 70.2-3 206.8s0.6 153 3 206.8c2.2 50 10.6 77 17.6 95 9.2 23.8 20.4 41 38.2 58.8 18 18 35 29 58.8 38.4 18 7 45.2 15.4 95 17.6 53.8 2.4 70 3 206.8 3zM512 960c-139 0-156.4-0.6-211-3-54.4-2.4-91.8-11.2-124.2-23.8-33.8-13.2-62.4-30.6-90.8-59.2-28.6-28.4-46-57-59.2-90.6-12.6-32.6-21.4-69.8-23.8-124.2-2.4-54.8-3-72.2-3-211.2s0.6-156.4 3-211c2.4-54.4 11.2-91.8 23.8-124.2 13.2-33.8 30.6-62.4 59.2-90.8 28.4-28.4 57-46 90.6-59 32.6-12.6 69.8-21.4 124.2-23.8 54.6-2.4 72-3 211-3s156.4 0.6 211 3c54.4 2.4 91.8 11.2 124.2 23.8 33.6 13 62.2 30.6 90.6 59s46 57 59 90.6c12.6 32.6 21.4 69.8 23.8 124.2 2.4 54.6 3 72 3 211s-0.6 156.4-3 211c-2.4 54.4-11.2 91.8-23.8 124.2-12.6 34-30 62.6-58.6 91-28.4 28.4-57 46-90.6 59-32.6 12.6-69.8 21.4-124.2 23.8-54.8 2.6-72.2 3.2-211.2 3.2v0zM512 711c-145.2 0-263-117.8-263-263s117.8-263 263-263 263 117.8 263 263c0 145.2-117.8 263-263 263zM512 277.4c-94.2 0-170.6 76.4-170.6 170.6s76.4 170.6 170.6 170.6c94.2 0 170.6-76.4 170.6-170.6s-76.4-170.6-170.6-170.6zM846.8 721.4c0-33.91-27.49-61.4-61.4-61.4s-61.4 27.49-61.4 61.4c0 33.91 27.49 61.4 61.4 61.4s61.4-27.49 61.4-61.4z" /> +<glyph unicode="" glyph-name="twitter" d="M1024 733.6c-37.6-16.8-78.2-28-120.6-33 43.4 26 76.6 67.2 92.4 116.2-40.6-24-85.6-41.6-133.4-51-38.4 40.8-93 66.2-153.4 66.2-116 0-210-94-210-210 0-16.4 1.8-32.4 5.4-47.8-174.6 8.8-329.4 92.4-433 219.6-18-31-28.4-67.2-28.4-105.6 0-72.8 37-137.2 93.4-174.8-34.4 1-66.8 10.6-95.2 26.2 0-0.8 0-1.8 0-2.6 0-101.8 72.4-186.8 168.6-206-17.6-4.8-36.2-7.4-55.4-7.4-13.6 0-26.6 1.4-39.6 3.8 26.8-83.4 104.4-144.2 196.2-146-72-56.4-162.4-90-261-90-17 0-33.6 1-50.2 3 93.2-59.8 203.6-94.4 322.2-94.4 386.4 0 597.8 320.2 597.8 597.8 0 9.2-0.2 18.2-0.6 27.2 41 29.4 76.6 66.4 104.8 108.6z" /> +<glyph unicode="" glyph-name="newspaper" d="M896 704v128h-896v-704c0-35.346 28.654-64 64-64h864c53.022 0 96 42.978 96 96v544h-128zM832 128h-768v640h768v-640zM128 640h640v-64h-640zM512 512h256v-64h-256zM512 384h256v-64h-256zM512 256h192v-64h-192zM128 512h320v-320h-320z" /> +<glyph unicode="" glyph-name="cart" d="M384 32c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM1024 32c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM1024 448v384h-768c0 35.346-28.654 64-64 64h-192v-64h128l48.074-412.054c-29.294-23.458-48.074-59.5-48.074-99.946 0-70.696 57.308-128 128-128h768v64h-768c-35.346 0-64 28.654-64 64 0 0.218 0.014 0.436 0.016 0.656l831.984 127.344z" /> +<glyph unicode="" glyph-name="home" d="M1024 352l-192 192v288h-128v-160l-192 192-512-512v-32h128v-320h320v192h128v-192h320v320h128z" /> +<glyph unicode="" glyph-name="chevron-right" d="M414.165 140.502l256 256c16.683 16.683 16.683 43.691 0 60.331l-256 256c-16.683 16.683-43.691 16.683-60.331 0s-16.683-43.691 0-60.331l225.835-225.835-225.835-225.835c-16.683-16.683-16.683-43.691 0-60.331s43.691-16.683 60.331 0z" /> +<glyph unicode="" glyph-name="chevron-left" d="M670.165 200.832l-225.835 225.835 225.835 225.835c16.683 16.683 16.683 43.691 0 60.331s-43.691 16.683-60.331 0l-256-256c-16.683-16.683-16.683-43.691 0-60.331l256-256c16.683-16.683 43.691-16.683 60.331 0s16.683 43.691 0 60.331z" /> +<glyph unicode="" glyph-name="chevron-down" d="M225.835 524.502l256-256c16.683-16.683 43.691-16.683 60.331 0l256 256c16.683 16.683 16.683 43.691 0 60.331s-43.691 16.683-60.331 0l-225.835-225.835-225.835 225.835c-16.683 16.683-43.691 16.683-60.331 0s-16.683-43.691 0-60.331z" /> +<glyph unicode="" glyph-name="chevron-up" d="M798.165 328.832l-256 256c-16.683 16.683-43.691 16.683-60.331 0l-256-256c-16.683-16.683-16.683-43.691 0-60.331s43.691-16.683 60.331 0l225.835 225.835 225.835-225.835c16.683-16.683 43.691-16.683 60.331 0s16.683 43.691 0 60.331z" /> +<glyph unicode="" glyph-name="zoom_out_map" d="M896 298.667v-256h-256l98 98-124 122 62 62 122-124zM384 42.667h-256v256l98-98 122 124 62-62-124-122zM128 554.667v256h256l-98-98 124-122-62-62-122 124zM640 810.667h256v-256l-98 98-122-124-62 62 124 122z" /> +<glyph unicode="" glyph-name="pig" d="M789.568 258.912c0 0 106.56 72.896 106.56 216.672 0 214.016-226.816 293.152-348.768 291.040-121.984-2.144-158.336-34.24-158.336-34.24s-41.504 30.176-85.504 55.456c-33.664 13.12-41.472 15.008-64.864 7.488-18.72 0-6.944-31.168 0.576-42.4 7.456-11.232 43.712-73.28 43.712-73.28s-76.096-78.368-81.728-129.888c0 0.928-35.84 0.288-55.488 0.288s-17.792-21.408-17.792-21.408l0.544-150.848c0 0-1.216-21.408 16.608-21.408 17.792 0 55.616-0.416 55.616-0.416s53.216-77.28 86.944-91.328c0-0.928-29.152-80.096-29.152-80.096s-14.048-24.352 11.232-33.728c25.28-9.344 91.232-37.024 119.328-45.472 28.064-8.416 32.096 10.688 32.096 10.688l27.808 60.064 181.92-0.288 27.808-61.92c0 0 5.344-28.736 42.784-12.832 37.472 15.904 78.368 34.784 109.28 50.688 30.88 15.904 10.56 45.632 10.56 45.632l-31.744 61.536zM298.304 519.552c-17.056 0-30.88 13.856-30.88 30.912s13.824 30.88 30.88 30.88 30.912-13.824 30.912-30.88-13.856-30.912-30.912-30.912zM733.6 615.808c-9.856-11.68-16.288-3.072-24.224-0.736 0 0-33.632 31.2-83.040 45.76-51.168 15.040-105.024 7.776-105.024 7.776-7.936 2.336-17.568 2.592-17.632 14.848 0.416 15.136 18.784 15.264 18.56 15.776 0 0 60.608 5.6 111.328-9.312 49.888-14.656 88-46.528 88-46.528s20.384-14.048 12.032-27.584z" /> +<glyph unicode="" glyph-name="edit-pencil" d="M629.76 783.36l204.8-204.8-629.76-629.76h-204.8v204.8l629.76 629.76zM701.44 855.040l117.76 117.76 204.8-204.8-117.76-117.76-204.8 204.8z" /> +<glyph unicode="" glyph-name="bank" horiz-adv-x="1097" d="M548.571 950.857l548.571-219.429v-73.143h-73.143c0-20-17.714-36.571-39.429-36.571h-872c-21.714 0-39.429 16.571-39.429 36.571h-73.143v73.143zM146.286 585.143h146.286v-438.857h73.143v438.857h146.286v-438.857h73.143v438.857h146.286v-438.857h73.143v438.857h146.286v-438.857h33.714c21.714 0 39.429-16.571 39.429-36.571v-36.571h-950.857v36.571c0 20 17.714 36.571 39.429 36.571h33.714v438.857zM1057.714 36.571c21.714 0 39.429-16.571 39.429-36.571v-73.143h-1097.143v73.143c0 20 17.714 36.571 39.429 36.571h1018.286z" /> +<glyph unicode="" glyph-name="facebook-official" horiz-adv-x="878" d="M829.143 877.714c26.857 0 48.571-21.714 48.571-48.571v-780.571c0-26.857-21.714-48.571-48.571-48.571h-223.429v340h113.714l17.143 132.571h-130.857v84.571c0 38.286 10.286 64 65.714 64l69.714 0.571v118.286c-12 1.714-53.714 5.143-101.714 5.143-101.143 0-170.857-61.714-170.857-174.857v-97.714h-114.286v-132.571h114.286v-340h-420c-26.857 0-48.571 21.714-48.571 48.571v780.571c0 26.857 21.714 48.571 48.571 48.571h780.571z" /> +<glyph unicode="" glyph-name="close" horiz-adv-x="805" d="M741.714 195.428c0-14.286-5.714-28.571-16-38.857l-77.714-77.714c-10.286-10.286-24.571-16-38.857-16s-28.571 5.714-38.857 16l-168 168-168-168c-10.286-10.286-24.571-16-38.857-16s-28.571 5.714-38.857 16l-77.714 77.714c-10.286 10.286-16 24.571-16 38.857s5.714 28.571 16 38.857l168 168-168 168c-10.286 10.286-16 24.571-16 38.857s5.714 28.571 16 38.857l77.714 77.714c10.286 10.286 24.571 16 38.857 16s28.571-5.714 38.857-16l168-168 168 168c10.286 10.286 24.571 16 38.857 16s28.571-5.714 38.857-16l77.714-77.714c10.286-10.286 16-24.571 16-38.857s-5.714-28.571-16-38.857l-168-168 168-168c10.286-10.286 16-24.571 16-38.857z" /> +<glyph unicode="" glyph-name="anchor" d="M548.571 804.571c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571zM1024 274.286v-201.143c0-7.429-4.571-14.286-11.429-17.143-2.286-0.571-4.571-1.143-6.857-1.143-4.571 0-9.143 1.714-13.143 5.143l-53.143 53.143c-89.714-108-250.857-177.143-427.429-177.143s-337.714 69.143-427.429 177.143l-53.143-53.143c-3.429-3.429-8.571-5.143-13.143-5.143-2.286 0-4.571 0.571-6.857 1.143-6.857 2.857-11.429 9.714-11.429 17.143v201.143c0 10.286 8 18.286 18.286 18.286h201.143c7.429 0 14.286-4.571 17.143-11.429s1.143-14.286-4-20l-57.143-57.143c51.429-69.143 150.286-119.429 263.429-134.857v369.714h-109.714c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h109.714v93.143c-43.429 25.143-73.143 72-73.143 126.286 0 80.571 65.714 146.286 146.286 146.286s146.286-65.714 146.286-146.286c0-54.286-29.714-101.143-73.143-126.286v-93.143h109.714c20 0 36.571-16.571 36.571-36.571v-73.143c0-20-16.571-36.571-36.571-36.571h-109.714v-369.714c113.143 15.429 212 65.714 263.429 134.857l-57.143 57.143c-5.143 5.714-6.857 13.143-4 20s9.714 11.429 17.143 11.429h201.143c10.286 0 18.286-8 18.286-18.286z" /> +<glyph unicode="" glyph-name="feed" horiz-adv-x="805" d="M219.429 182.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714 49.143 109.714 109.714 109.714 109.714-49.143 109.714-109.714zM512 112.571c0.571-10.286-2.857-20-9.714-27.429-6.857-8-16.571-12-26.857-12h-77.143c-18.857 0-34.286 14.286-36 33.143-16.571 174.286-154.857 312.571-329.143 329.143-18.857 1.714-33.143 17.143-33.143 36v77.143c0 10.286 4 20 12 26.857 6.286 6.286 15.429 9.714 24.571 9.714h2.857c121.714-9.714 236.571-62.857 322.857-149.714 86.857-86.286 140-201.143 149.714-322.857zM804.571 111.428c0.571-9.714-2.857-19.429-10.286-26.857-6.857-7.429-16-11.429-26.286-11.429h-81.714c-19.429 0-35.429 14.857-36.571 34.286-18.857 332-283.429 596.571-615.429 616-19.429 1.143-34.286 17.143-34.286 36v81.714c0 10.286 4 19.429 11.429 26.286 6.857 6.857 16 10.286 25.143 10.286h1.714c200-10.286 388-94.286 529.714-236.571 142.286-141.714 226.286-329.714 236.571-529.714z" /> +<glyph unicode="" glyph-name="envelope" d="M1024 545.143v-453.714c0-50.286-41.143-91.429-91.429-91.429h-841.143c-50.286 0-91.429 41.143-91.429 91.429v453.714c17.143-18.857 36.571-35.429 57.714-49.714 94.857-64.571 190.857-129.143 284-197.143 48-35.429 107.429-78.857 169.714-78.857h1.143c62.286 0 121.714 43.429 169.714 78.857 93.143 67.429 189.143 132.571 284.571 197.143 20.571 14.286 40 30.857 57.143 49.714zM1024 713.143c0-64-47.429-121.714-97.714-156.571-89.143-61.714-178.857-123.429-267.429-185.714-37.143-25.714-100-78.286-146.286-78.286h-1.143c-46.286 0-109.143 52.571-146.286 78.286-88.571 62.286-178.286 124-266.857 185.714-40.571 27.429-98.286 92-98.286 144 0 56 30.286 104 91.429 104h841.143c49.714 0 91.429-41.143 91.429-91.429z" /> +<glyph unicode="" glyph-name="bubbles" horiz-adv-x="1152" d="M480 960v0c265.096 0 480-173.914 480-388.448s-214.904-388.448-480-388.448c-25.458 0-50.446 1.62-74.834 4.71-103.106-102.694-222.172-121.108-341.166-123.814v25.134c64.252 31.354 116 88.466 116 153.734 0 9.106-0.712 18.048-2.030 26.794-108.558 71.214-177.97 179.988-177.97 301.89 0 214.534 214.904 388.448 480 388.448zM996 89.314c0-55.942 36.314-104.898 92-131.772v-21.542c-103.126 2.318-197.786 18.102-287.142 106.126-21.14-2.65-42.794-4.040-64.858-4.040-95.47 0-183.408 25.758-253.614 69.040 144.674 0.506 281.26 46.854 384.834 130.672 52.208 42.252 93.394 91.826 122.414 147.348 30.766 58.866 46.366 121.582 46.366 186.406 0 10.448-0.45 20.836-1.258 31.168 72.57-59.934 117.258-141.622 117.258-231.676 0-104.488-60.158-197.722-154.24-258.764-1.142-7.496-1.76-15.16-1.76-22.966z" /> +<glyph unicode="" glyph-name="calculator" horiz-adv-x="951" d="M219.429 73.143c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM438.857 73.143c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM219.429 292.571c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM658.286 73.143c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM438.857 292.571c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM219.429 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM658.286 292.571c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM438.857 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM877.714 73.143v219.429c0 40-33.143 73.143-73.143 73.143v0c-40 0-73.143-33.143-73.143-73.143v-219.429c0-40 33.143-73.143 73.143-73.143v0c40 0 73.143 33.143 73.143 73.143zM658.286 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM877.714 694.857v146.286c0 20-16.571 36.571-36.571 36.571h-731.429c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h731.429c20 0 36.571 16.571 36.571 36.571zM877.714 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM950.857 877.714v-877.714c0-40-33.143-73.143-73.143-73.143h-804.571c-40 0-73.143 33.143-73.143 73.143v877.714c0 40 33.143 73.143 73.143 73.143h804.571c40 0 73.143-33.143 73.143-73.143z" /> +<glyph unicode="" glyph-name="strategy" horiz-adv-x="736" d="M704-48c0 8.832-7.168 16-16 16h-576c-8.832 0-16-7.168-16-16s7.168-16 16-16h576c8.832 0 16 7.168 16 16zM40.768 660.672c-13.376-8.896-33.664-35.968-14.432-74.432 15.968-31.904 49.28-70.944 84.704-81.248 18.048-5.312 35.84-3.104 51.36 6.272 35.168 21.056 76.704 49.536 94.304 61.76 22.208-11.232 50.24-13.568 78.72-6.24 0.128 0.032 0.256 0.096 0.384 0.128-1.664-52.832-19.552-85.824-107.008-167.040-77.952-72.352-124.192-167.392-123.744-254.272 0.32-56.992 21.088-105.92 60.16-141.408 2.976-2.72 6.816-4.192 10.784-4.192h448c8.832 0 16 7.168 16 16s-7.168 16-16 16h-441.632c-29.408 28.96-45.024 68.16-45.28 113.76-0.416 76.864 43.104 165.28 113.504 230.656 93.28 86.592 117.408 127.616 117.408 199.584 0 1.312-0.448 2.464-0.736 3.68 17.504 9.44 32.64 21.92 42.976 37.024 12.96 18.88 40.864 67.36 20.16 110.272-3.84 7.904-13.408 11.264-21.376 7.424-7.936-3.84-11.296-13.408-7.424-21.376 9.312-19.296 2.688-48.544-17.728-78.24-11.776-17.152-32.832-31.008-56.352-37.024-23.904-6.112-46.624-3.424-62.464 7.424-5.536 3.776-12.8 3.744-18.272-0.128-0.576-0.384-56.864-40.032-100.768-66.368-8.032-4.8-16.512-5.824-25.984-3.008-24.768 7.232-52 38.784-65.024 64.832-10.528 21.056 0.256 31.104 5.152 34.688 110.304 95.264 165.664 194.24 167.936 198.432 2.112 3.904 2.56 8.512 1.152 12.768-0.16 0.48-11.2 34.016-17.28 65.056 33.472-20.16 91.040-48.32 150.976-48.32 83.328 0 277.056-31.104 277.056-319.232 0-1.568-0.288-158.208-63.040-330.464-3.040-8.288 1.248-17.472 9.568-20.512 1.824-0.608 3.648-0.928 5.472-0.928 6.528 0 12.672 4.032 15.040 10.528 64.672 177.536 64.992 334.912 64.96 341.472 0 325.856-236.576 351.168-309.056 351.168-80.288 0-160.384 60.896-161.152 61.536-4.896 3.68-11.36 4.288-16.864 1.632-5.472-2.688-8.928-8.256-8.928-14.336 0-31.392 14.88-82.176 20.672-100.704-13.376-22.336-66.112-104.992-155.904-182.624zM559.52 910.72c-51.232 34.528-108.512 49.28-191.52 49.28-8.832 0-16-7.168-16-16s7.168-16 16-16c76.16 0 128.096-13.088 173.664-43.808 74.048-49.984 162.336-149.568 162.336-340.192 0-46.432 0-110.016-31.52-236.128-2.112-8.576 3.072-17.248 11.648-19.392 1.312-0.32 2.592-0.48 3.872-0.48 7.2 0 13.728 4.832 15.52 12.128 32.48 129.888 32.48 195.776 32.48 243.872 0 204.672-95.968 312.416-176.48 366.72z" /> +<glyph unicode="" glyph-name="menu" d="M128 384h768c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667h-768c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667zM128 640h768c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667h-768c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667zM128 128h768c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667h-768c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667z" /> +<glyph unicode="" glyph-name="users, group, team, members, community, collaborate" horiz-adv-x="1152" d="M768 189.388v52.78c70.498 39.728 128 138.772 128 237.832 0 159.058 0 288-192 288s-192-128.942-192-288c0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h896c0 128.968-166.898 235.64-384 253.388zM327.196 164.672c55.31 36.15 124.080 63.636 199.788 80.414-15.054 17.784-28.708 37.622-40.492 59.020-30.414 55.234-46.492 116.058-46.492 175.894 0 86.042 0 167.31 30.6 233.762 29.706 64.504 83.128 104.496 159.222 119.488-16.914 76.48-61.94 126.75-181.822 126.75-192 0-192-128.942-192-288 0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h279.006c14.518 12.91 30.596 25.172 48.19 36.672z" /> +<glyph unicode="" glyph-name="book, read, reading" d="M896 832v-832h-672c-53.026 0-96 42.98-96 96s42.974 96 96 96h608v768h-640c-70.398 0-128-57.6-128-128v-768c0-70.4 57.602-128 128-128h768v896h-64zM224.056 128v0c-0.018-0.002-0.038 0-0.056 0-17.672 0-32-14.326-32-32s14.328-32 32-32c0.018 0 0.038 0.002 0.056 0.002v-0.002h607.89v64h-607.89z" /> +<glyph unicode="" glyph-name="youtube" d="M1013.8 652.8c0 0-10 70.6-40.8 101.6-39 40.8-82.6 41-102.6 43.4-143.2 10.4-358.2 10.4-358.2 10.4h-0.4c0 0-215 0-358.2-10.4-20-2.4-63.6-2.6-102.6-43.4-30.8-31-40.6-101.6-40.6-101.6s-10.2-82.8-10.2-165.8v-77.6c0-82.8 10.2-165.8 10.2-165.8s10-70.6 40.6-101.6c39-40.8 90.2-39.4 113-43.8 82-7.8 348.2-10.2 348.2-10.2s215.2 0.4 358.4 10.6c20 2.4 63.6 2.6 102.6 43.4 30.8 31 40.8 101.6 40.8 101.6s10.2 82.8 10.2 165.8v77.6c-0.2 82.8-10.4 165.8-10.4 165.8zM406.2 315.2v287.8l276.6-144.4-276.6-143.4z" /> +<glyph unicode="" glyph-name="cross" d="M1014.662 137.34c-0.004 0.004-0.008 0.008-0.012 0.010l-310.644 310.65 310.644 310.65c0.004 0.004 0.008 0.006 0.012 0.010 3.344 3.346 5.762 7.254 7.312 11.416 4.246 11.376 1.824 24.682-7.324 33.83l-146.746 146.746c-9.148 9.146-22.45 11.566-33.828 7.32-4.16-1.55-8.070-3.968-11.418-7.31 0-0.004-0.004-0.006-0.008-0.010l-310.648-310.652-310.648 310.65c-0.004 0.004-0.006 0.006-0.010 0.010-3.346 3.342-7.254 5.76-11.414 7.31-11.38 4.248-24.682 1.826-33.83-7.32l-146.748-146.748c-9.148-9.148-11.568-22.452-7.322-33.828 1.552-4.16 3.97-8.072 7.312-11.416 0.004-0.002 0.006-0.006 0.010-0.010l310.65-310.648-310.65-310.652c-0.002-0.004-0.006-0.006-0.008-0.010-3.342-3.346-5.76-7.254-7.314-11.414-4.248-11.376-1.826-24.682 7.322-33.83l146.748-146.746c9.15-9.148 22.452-11.568 33.83-7.322 4.16 1.552 8.070 3.97 11.416 7.312 0.002 0.004 0.006 0.006 0.010 0.010l310.648 310.65 310.648-310.65c0.004-0.002 0.008-0.006 0.012-0.008 3.348-3.344 7.254-5.762 11.414-7.314 11.378-4.246 24.684-1.826 33.828 7.322l146.746 146.748c9.148 9.148 11.57 22.454 7.324 33.83-1.552 4.16-3.97 8.068-7.314 11.414z" /> +<glyph unicode="" glyph-name="checkbox-checked" d="M896 960h-768c-70.4 0-128-57.6-128-128v-768c0-70.4 57.6-128 128-128h768c70.4 0 128 57.6 128 128v768c0 70.4-57.6 128-128 128zM448 165.49l-237.254 237.256 90.51 90.508 146.744-146.744 306.746 306.746 90.508-90.51-397.254-397.256z" /> +<glyph unicode="" glyph-name="quill, feather, write, edit" d="M0-64c128 384 463 1024 1024 1024-263-211-384-704-576-704s-192 0-192 0l-192-320h-64z" /> +<glyph unicode="" glyph-name="sphere, globe, internet" d="M480 896c-265.096 0-480-214.904-480-480 0-265.098 214.904-480 480-480 265.098 0 480 214.902 480 480 0 265.096-214.902 480-480 480zM751.59 256c8.58 40.454 13.996 83.392 15.758 128h127.446c-3.336-44.196-13.624-87.114-30.68-128h-112.524zM208.41 576c-8.58-40.454-13.996-83.392-15.758-128h-127.444c3.336 44.194 13.622 87.114 30.678 128h112.524zM686.036 576c9.614-40.962 15.398-83.854 17.28-128h-191.316v128h174.036zM512 640v187.338c14.59-4.246 29.044-11.37 43.228-21.37 26.582-18.74 52.012-47.608 73.54-83.486 14.882-24.802 27.752-52.416 38.496-82.484h-155.264zM331.232 722.484c21.528 35.878 46.956 64.748 73.54 83.486 14.182 10 28.638 17.124 43.228 21.37v-187.34h-155.264c10.746 30.066 23.616 57.68 38.496 82.484zM448 576v-128h-191.314c1.88 44.146 7.666 87.038 17.278 128h174.036zM95.888 256c-17.056 40.886-27.342 83.804-30.678 128h127.444c1.762-44.608 7.178-87.546 15.758-128h-112.524zM256.686 384h191.314v-128h-174.036c-9.612 40.96-15.398 83.854-17.278 128zM448 192v-187.34c-14.588 4.246-29.044 11.372-43.228 21.37-26.584 18.74-52.014 47.61-73.54 83.486-14.882 24.804-27.75 52.418-38.498 82.484h155.266zM628.768 109.516c-21.528-35.876-46.958-64.746-73.54-83.486-14.184-9.998-28.638-17.124-43.228-21.37v187.34h155.266c-10.746-30.066-23.616-57.68-38.498-82.484zM512 256v128h191.314c-1.88-44.146-7.666-87.040-17.28-128h-174.034zM767.348 448c-1.762 44.608-7.178 87.546-15.758 128h112.524c17.056-40.886 27.344-83.806 30.68-128h-127.446zM830.658 640h-95.9c-18.638 58.762-44.376 110.294-75.316 151.428 42.536-20.34 81.058-47.616 114.714-81.272 21.48-21.478 40.362-44.938 56.502-70.156zM185.844 710.156c33.658 33.658 72.18 60.932 114.714 81.272-30.942-41.134-56.676-92.666-75.316-151.428h-95.898c16.138 25.218 35.022 48.678 56.5 70.156zM129.344 192h95.898c18.64-58.762 44.376-110.294 75.318-151.43-42.536 20.34-81.058 47.616-114.714 81.274-21.48 21.478-40.364 44.938-56.502 70.156zM774.156 121.844c-33.656-33.658-72.18-60.934-114.714-81.274 30.942 41.134 56.678 92.668 75.316 151.43h95.9c-16.14-25.218-35.022-48.678-56.502-70.156z" /> +<glyph unicode="" glyph-name="wikipedia, brand" d="M966.8 726.4c0-3.2-1-6.2-3-9-2-2.6-4.2-4-6.8-4-20-2-36.4-8.4-49-19.2-12.8-10.8-25.8-31.8-39.2-62.4l-206.4-465.4c-1.4-4.4-5.2-6.4-11.4-6.4-4.8 0-8.6 2.2-11.4 6.4l-115.8 242-133.2-242c-2.8-4.4-6.4-6.4-11.4-6.4-6 0-9.8 2.2-11.8 6.4l-202.6 465.2c-12.6 28.8-26 49-40 60.4s-33.6 18.6-58.6 21.2c-2.2 0-4.2 1.2-6 3.4-2 2.2-2.8 4.8-2.8 7.8 0 7.6 2.2 11.4 6.4 11.4 18 0 37-0.8 56.8-2.4 18.4-1.6 35.6-2.4 51.8-2.4 16.4 0 36 0.8 58.4 2.4 23.4 1.6 44.2 2.4 62.4 2.4 4.4 0 6.4-3.8 6.4-11.4s-1.4-11.2-4-11.2c-18-1.4-32.4-6-42.8-13.8s-15.6-18-15.6-30.8c0-6.4 2.2-14.6 6.4-24.2l167.4-378.4 95.2 179.6-88.6 185.8c-16 33.2-29 54.6-39.2 64.2s-25.8 15.4-46.6 17.6c-2 0-3.6 1.2-5.4 3.4s-2.6 4.8-2.6 7.8c0 7.6 1.8 11.4 5.6 11.4 18 0 34.6-0.8 49.8-2.4 14.6-1.6 30-2.4 46.6-2.4 16.2 0 33.2 0.8 51.4 2.4 18.6 1.6 37 2.4 55 2.4 4.4 0 6.4-3.8 6.4-11.4s-1.2-11.2-4-11.2c-36.2-2.4-54.2-12.8-54.2-30.8 0-8 4.2-20.6 12.6-37.6l58.6-119 58.4 108.8c8 15.4 12.2 28.4 12.2 38.8 0 24.8-18 38-54.2 39.6-3.2 0-4.8 3.8-4.8 11.2 0 2.8 0.8 5.2 2.4 7.6s3.2 3.6 4.8 3.6c13 0 28.8-0.8 47.8-2.4 18-1.6 33-2.4 44.6-2.4 8.4 0 20.6 0.8 36.8 2 20.4 1.8 37.6 2.8 51.4 2.8 3.2 0 4.8-3.2 4.8-9.6 0-8.6-3-13-8.8-13-21-2.2-38-8-50.8-17.4s-28.8-30.8-48-64.4l-78.2-143.2 105.2-214.4 155.4 361.4c5.4 13.2 8 25.4 8 36.4 0 26.4-18 40.4-54.2 42.2-3.2 0-4.8 3.8-4.8 11.2 0 7.6 2.4 11.4 7.2 11.4 13.2 0 28.8-0.8 47-2.4 16.8-1.6 30.8-2.4 42-2.4 12 0 25.6 0.8 41.2 2.4 16.2 1.6 30.8 2.4 43.8 2.4 4 0 6-3.2 6-9.6z" /> +<glyph unicode="" glyph-name="tasks" d="M585.143 146.286h365.714v73.143h-365.714v-73.143zM365.714 438.857h585.143v73.143h-585.143v-73.143zM731.429 731.428h219.429v73.143h-219.429v-73.143zM1024 256v-146.286c0-20-16.571-36.571-36.571-36.571h-950.857c-20 0-36.571 16.571-36.571 36.571v146.286c0 20 16.571 36.571 36.571 36.571h950.857c20 0 36.571-16.571 36.571-36.571zM1024 548.571v-146.286c0-20-16.571-36.571-36.571-36.571h-950.857c-20 0-36.571 16.571-36.571 36.571v146.286c0 20 16.571 36.571 36.571 36.571h950.857c20 0 36.571-16.571 36.571-36.571zM1024 841.143v-146.286c0-20-16.571-36.571-36.571-36.571h-950.857c-20 0-36.571 16.571-36.571 36.571v146.286c0 20 16.571 36.571 36.571 36.571h950.857c20 0 36.571-16.571 36.571-36.571z" /> +</font></defs></svg> diff --git a/uniweb/static/uniweb/assets/fonts/pirati-ui.ttf b/uniweb/static/uniweb/assets/fonts/pirati-ui.ttf new file mode 100644 index 0000000000000000000000000000000000000000..6557f47a5e882619ca60f66f03d23da966ae4daf GIT binary patch literal 13572 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 E0M`KiV*mgE literal 0 HcmV?d00001 diff --git a/uniweb/static/uniweb/assets/fonts/pirati-ui.woff b/uniweb/static/uniweb/assets/fonts/pirati-ui.woff new file mode 100644 index 0000000000000000000000000000000000000000..923ebbf9fc7c66d15b2a634da279f7945904bf4f GIT binary patch literal 13648 zcmXT-cXMN4WME)mFb!bf2GcAIj1UnJ4;lLh>l-mJFmf<3FeHF5zYtqUa&BS)0|R3Q z0|P?{2#beZI-H(Z3=-SJz`y`f3&H~FIhAP)42(w@81zqo@J)yN${DGNDGUsTJq!#C zW*{uZ(2<;xk($WBV0eUqfk6d?Ih<IUGIC2Q7#Iv+FfcH(fbjRJyk<H1$%zaMMsFAx z7+OF$yf;N9H?g9Cfx)<dfq_8*jDs02<R#{&GB6lVU|?XJ2f`k1_q+=7i%S?7Obx(l zKx&y87#NtD-!V>LU}a!nn#pvAfq|hPLNmT*FlOXL4h04V21Wri0R{&KhL<+X2mT*m za9}<F;-Q2f$TbWMU|Sd%7-Se2!E6}@X0R$51{MYj1_lN$1`Y-$1||kZ28EY4|Ns8~ z54J?%B?Fkv`2Vpu3seVK0^|+`#{d5r_`#+?#F!Wu%q_vu2`0dT_{EqQ7#NyZ7?}AO zj2Y}17#Ky3`52Xz)b$wE)l5yy?HJ9?jE%&^&Gi_SmDu?h+1W%z#N`;p#f*)>a;7F~ z>WZq$rpltqqQ;`erpAnJJK2H~wNzEi1q1{H%vDsi^c{pFv~!(YtgRy@rKBVyt*u?$ ztgM2>#F?4@on_jU00xZT3sf=%1kKe{wY62%%moD$1w%D-A*vxdCB#Fmtlb18c{#xv zAbw_HV0K{eXJBCDV`R5uH0NVvM{=i_xEk0S>U@l%B4XltjOsFA2FQPE>T-<Y5QZ3< ze@yKd%~=>^Y!ws@c;uZ`WCC=x)zvHo1euu}ZSC?54Agn~jkP2VMH4-EW%#*-xkR#E z&04*9C3%$9)B?4&btdK)%urWnls6S+y2mTXENr7HB*iYLA|Pm~rl!Lq!NV*lXsNDl zAZ{jW79-2Z$HU0T=u^VS!py{I7sRAxz{DsfBq+hoW@f%7D?5XomtD*poO~D=8U7z& zW?(+RAkM(RXlx3N4p~NJQDZ@4L1S}eQxh|$gar%qG&OAng&G<TEKoQg%*=2=NYGYO zQ!nAbKL#d-0|~ss3=9k`3=IDduz<|sXAowPXE0`9U{q9M6BQH@GgdS*GZi#ZV^kJ2 zR##FpH33Dxs0bUQvY?5YGDwZGps}bOqp^{gDD#3p2Q(}!G?*PUEG+)+XlQVdR#laj zR#jzu+5n;(8bqv=Y(kh1SZE*={yD&SzyTx+!v7c;89;jeGcX?Tmo|xWVgSYK|8p!1 z%$pgK85kH*(ww-MnW+t<I-8oI9;2a}nV}q`p_myc8A9UO)WpnOkI~#fOdRYyaXUss zF*bHNMo|%P!UeO~L`B5R!FtS0O~9!`nTa7QHm+MkLrN;v(ZNSpfHBKSNL^W7O+zVG zj75lBTT9DHL{vtSg-6ucOU_YI(NWIJS(JxGQbtt7SxZx!Pn1zW*vHW!R!T}kqdP7( zi+Qt#Mt5vnR*0`}gTB5bix3y5nSywTj=TgrvynABmxK}*D-W-QzP_iHt2C#lDYGF5 zCntv?v#BSiw5yhvzMcgSFDti!vWX8bmk^7jzCpdOZ%9^LY`2C6C_6JTF#JEm!oYln zA(^2NobqA0)xgA(5s_nU8I3{FX=G+<2=ggQU>X~lnX`kl05}-nc^#Y^L=BZiEf_^b z*p!vj)D6{*%uG$xlns?Yp=ZprLpk2uL|@NML_|cyO;6uc+g~9~S3yBnQ6b;kD>T&0 zJ6}N&!ZwQ2V%9S%v4;dOBzUr7W4kpq7&E-}{3LcbL`6A(Fr&1JHpDPSQ$2k*5fK>) zM&o~*6?AnKe8C1PC@AE6dxwO2d*>@Ch>J2tOUY_#bjQYKK>`L8;;~u2j9!`ADiTo+ z_EAyx4p9uC1pog4GpIzCW>7~@O@;=bqytL^%t&dSiNVR*DqK?1$f&}|2uw&yhFe)X z1r!tn1QZl7AAoQxYHQCpIyyR@sjaPmX!yqfRuB*Xs{TNEjQId_1A{3vmO!Z#lt#_K z0S?W-hLGY^99jyYxQXe2fr5cSf`LImfPsXNkcXC*goL7^ji{)YxTmh3zP^j|L{}FB zIXMqGIeGaIZEZ#ekV=pS1p^6f?GSl+u$+O5>qKW4eSJM$PjN9(Q5!`?2?;GN4<R82 zE`|mMZRQ5%PzGiOb_Q++P-!5}Ak84ppv<7dz`$s#EGllQEXoX}L2M94<})e^Dheu^ znu{}Qg@lBx34s6z&A5t@;V%OtLqh|jc39Y|kPs$@kdQTDVXMF##t;PSUl>zZNJ9fC zeX}!MWzc3`&8*G9#~{O?#o)pa%8<!W%)p=uPK~C5kP=DI7=<g0!UL6sYRbqZnz50Y zEu)E=vZ|t}GCLomJ|jE0@V8}T6k$_VR8lh)lw$<t2qQCdV?lEfHf=^hV<Rz9#?`!> z9K5_7oV=kR0>laB;pF52;RB*Z%KsWvjJ!=5wN1T6?II%V{)sU*>|<q>;pgMvkQ0<v zWo(cX`gc`Ol2=hkQkP#`ooC@HRcQwYY1P-9yu6%@3?QTbGhk;Q&{8onQu%w$)Z5!M z-0rGfgq9W`zW_56FTaqQl*8X^LXwg~j8nO|#Y7~8|7lN^QezBNl?JtA7#;o}U^>8j zfI*r;pTUQLK^0U2f-*8F?b$HG15k!h)X*GOsDrCWV{kq<M^<m523Ie_CThvZq#&bW zp`l@+A|uSpE35!2!)2AdO-;R(mE@E`iC<Zc5yWM@&1EDHsvG2uxEPrk86WTp3-kU{ zU}R<#VG5K|Q<eU^UeHPf<Tn*7BPnlfP}b7+mSW*xVNw8z{(Zp0!2)WHF)%Q1XU=2b zVNhhSVenvxWncis7(BBwgW?^WpTIR0r0_B~g3us2P@Sa=Qf>}z%9w+g&??Q`NDNvv zASqznXJYQ=55h-u^_660wRm{Iv^F=-LsKiOL<I#e9jjz>%S<~hdj*9=D=U*ua}$3z zbCZBg`no(kTC%cA20Gk4+Oo1rOe+myI&DDs-y2O2VPQ)pWqD0cVPPvJWqAQ5rBrJx zV>3BpBV_|)YwHvxrHU8>n@$k6@zj)8R<aZp_5jgV!ouJ>5mH~XF)(m4DsnO^GBP&& zYhY~n&%oU9kAbm)`M^Jhe+*0wjNm-P!eGR}!yM0S#bCk^z>v>S4ln!I*}!!nv=Ij@ zbs%jy)Ot}}k5O3=tsMvrR<IGELV%A^+>TLPkWI|cKn<oFRLZflfoc|ZK{-Zt##5T= z8lH-ZGIC<#avU5S9CBh}va*Uwp6covni}e!ii)zbV&bw88F3klDM3Ci&MC68va%`8 zE<V1_Ft+n?WnmF!HX$Av9YIGq8=G<+9Y!tf3MVInLM|U!!%$&nD|QZfF)<m4*_t3* zl|W{T!EKdMQuNe-+iGL;=O>0Gz7WfqlB}HBxL6pO82_y@t#8&6=H!%<m9+}i)lp$$ z;=Zn9EW)VG9TEwSmkTTm%p1ThXO!wy9MUooHUotRIBklFihu%NTv(1#98%a|wnIQw zql9?4jjbm;FB=;NQvwSom%IunL#fDfak3;Zaj>zlGc&U>d)nHBi%V!|f~r8~4UnqP z-^;7cz(AIXk(r5$ozaL}lugi98I+lnZ3Wpxx&NJG=VE4LVq}ytG^q3P@&{GK8k!6& z3|tI?EG5kO4Au<p48aWXptQoquB>iu40a``=2v24SGHg@RAOT{WLE~Yu)z%hP+1A` zi3Ot}La87qQ$b4`Mx@M!%w~S9<1V<v!*jcUhmK8XsEwAZ&~p(5wve*|9=c$@i_pao zHU*Ivf^J$MzKpuMjEuVapDR!XvksKOXk?)J<guDTsI^U~j<UG$4|T&(8|zSQrSHPx zDmox0;|C2HX$=i&8I6AlAQHs;cLzj*c%b@*nIVkfD)TC)Mg~a+Sq5_k21Z!v0Z!)H zjHZxcQJc|}*;G+fRYc61Q54qXf;6|l0&Gmzbkx-?1q1~JEY;O@)~qq}^D|p>g)!vs zA3w7-YtZGG8U+Qd)YWx#)zz&81cUs{%>07>GlYa_nfV0?3RtPD>*}bhTL}sV`GNX* zj0}v5%nVGipc0W$++3WKk<sSJ5u5)E{~4HK!3=PBkBLF<{~6{-%v%_Y8B##;sHU!_ zu4ZCxX3q#|5{rq8iLkTrGqNeEtC`p{nt__Y%1R&s5s(ZYqcXD+LXVk|xR?k(BO9oR zVr*mvRu3}GNE~JkAEPqk4lZF1Wg#IUA>{+gk%oqm$`DQjzYae?e}tx{h_Q@}vB&{U zO@4k3VXhr`74T~dKy-tQVsznPSJBmt)74cuprop*1Z9T{2=Ht3M`)I4iinDe9MCM$ z<kuEp=lIuwUj;uuRQ~}bRZzTx+R-POzcU|T&}49BU{D47R7sstk5L`eG=SDAkXi$l zB0#+fanwEuydMnK!2F$)Q-@QE>)&Z67Dj_&`v6zBOgT9@xlA|L00>)MnVF6G-#$~M z_A?S&iA#!8hm(`hl$niLSshs)gl%7Jz{tYH_!81qM$%{sVT0;_28RC+SQwZWK-+W- z!m5I-jI4sHjH-gH42%x{4lp)ANrwLn%nS{G85)=u9QdoSfXU&&UxovqutD?>r5Ust z^cd_wX$hPipcMzIuaSBktjv0hro4>8!b)oDs=}a_1XvrqlLhMofI3`Y_TO)c3WYvC zVL_8D{-ta%v0;4qpCQjPXp#lvoDC*65IN=pV5M28-3X8o{}{r2d<qp5ZA>=&OR<;~ z<eA6F@K4;vWCP<Ii%CHcIR;Qa0Nm+ic3@y;;9_7<6;@;xW)@TwR}^J-IPmAdfrbV~ zg$Bk23{0Rp)Zy;|W(P=H6r8ERV+^be42<HSrY_@w2F3$_7?>Rz{yH!_fQ<$BrI{KS z#2FMB^cieHHMAZhsP)Ot$j6A>r)F1XS5{Xx6;>2h2Q@iO%#0PmrKLCukNM|+23B77 ze-7-ttp6F9SyZK&8>CfPY#uZmXn63Ranbt+{~SQADaHf5!otRXK_o8|NQBXZ(SePP zjqTq77H-ym4?z8DMg>-GgN6oCM(uxBSA$w?Alv{VKp50CXK-L{0EY{Mu%e)112e;4 z24;u9pfZPnVYDBPrytG?>feFKP*@ohL9wo?E@&(&&WzFuK+Px2c$!m8lP@={eT$jG zAt@hHc0kGiB=+S?jM7inF-?Xj!qohy0YeM47-C@H0lA+U)K9?d`>8V+gKI)#QDt)| zW`xopJ~I+q)mT)SQB>JfQB>JfSx`}sSy51t(V?N?02uv+P{<@mi0MGXKZk|}<^v9Y z4lp|~IW&O4e+CfQ0MZO*FdcAkaB%p;z{2pyf$0Ef#1uYe1?kNr_wPU>R!FT4Xodpk zF4R$~2&cF>C#SeL#yThib#&@)0$3KL0*XQ9AuBkn{xct7@L-t4u#RCD!!b}h0o-Q? zx8^_%V^CoSYT$tiJU&qW64J#4)eCxza1zuBvttBRD=^a7R0&-hXt)x|Tu>v+2;5kN z=`pus1dY5RnG0&J8;ashd`N?N;GPkrRm#MWZm+4T!zU!o$1B9n%FV>c#Kg$N&B`vs z%O@?wr=zNApPuFbQXweA%Lh^cYC|$HqN>Pn($ut;kkSzqmEq#zVPaxrWMbms;*t>+ z)sd30*3@*$fT)nv5fhc+;^c*x!OMxP!py+H15~AZ7#Nr#v)xlt+}%@B7&%m=Bvn)- zrBs+x7?~h0<dqTP)lt)MNKbRnP}AWR!f+uUuZ$qb4-RSR4jRb5WMYiL;Y5fhIC&wS zKy@P26S^R8f>rz!6+w3{#OeS1z>aozPhs2xakUC~Y!fv2I%3AG*%=rZ9KiJ_>evzk zqp2cja1uP$3@R~L6-5<6SX5C|Q5007C<-bvH~eW(m1a)RusHCSftlg215?A_2F3<P zhW`v8eBi)8a65+SK*L`LX;ljiCWXHTm>L>Dg@%KJ1E`4uFEbh#xEaJ53>aWzNZ=tP zR-{ZI$*5?erp+j7EDRY4Q8WdWAQp_Kj18dC4iIL7v;H!uN*`!25R>vY1yz^QstTZi z4kXN2!Pp?J>hLc`$VAT6+d)+t)Q$jQ1{Mb91O@>H21a#3Wl?oTQDZ?xQ)5v@L1Pw% z0}TiMF@Q=xMu!H*gaeEU3l98aQ22M?zyU^3GlPMVF^Qp<X&%!_24MyURZ!ENQB8@R zO+=oNolQhs%*dQ^9wP%U?|%j!6&_yRM~`@Uc~p3M85ww#c^MgaczBh09zEh!=HcZ9 z)$J%|shgXbsH-WlgBtpbVn!ey(>$mF{~35e+CfI1eDsJ%nU{y>KLf8ah~VW>2Ajq3 zh>@3Bj>!|`E@6;<klWOh_!&WFvWbX4Vgxw}<Tf4^o=1<s&ST<*8VoY<(Ic?)K<+{| zixcEOkekGe>={8GG&50WmIM0_q#0otqbJCNU}y32K77avaTp5&WNcHLfsKKeL4-k? zfq_v_(OlhJoK;a!++3WUSx}K(oLya2QBa*--JH4MKSNTDUDdy&{|rf0b~W=D!CX+F zg1C&@ScT_7G=b^}W`+iaROSX|X$Dt@K!!{P21Wze*s?MoqoDz49DrR3RAm?%u(2B` zDJ!uViW-O+TQM3Mh>44^85*#GY7sFrLvv$s12IqyVWwuNj@)lnWm8i(P*Yc9Gt^@= zH8C?ZFcX&p>1GzoQdP^gwb6@qHc^xk6XfG$WmEHG(d6T2X5r=4ww01&7Z&yx73G%M zCc`HqYb7quEB{Y~M_8DLS4fC)IR`hJo~oKN8@G^`nyRr7BXe#}fQ7jmKR=VAsxTKb zn-T|yV~m>Ubg@7#Mt^B`b_I4eK^r?s9v*2P9z{DwRw0lvygWh)oNP?W+}zBJESx+n zOx)Zmf}n5#^|Q{hFfgBGU}fNBU|<wyR5oR_XB1~=Dm(kP>nu~5d)e7CX8toEcBx0% z*)nJ!W;=@~^L7Rv26YC|oHMJaGIXF;*;E`n-vyfUf?y*tSw=-u6EkZ@K}HzcSdmGU zNySrK;Li*}anDJUJtuii@|vV1ApXZwTu_mDf`It%?cxH=znQn+@#Gg3<@cQQ&y#UG z0*msis`866ZvT5njNj9fUkqAyGv_hqF{pv-eo;ZlC^2ZP+05A76g(^fnT-RL9iU-q zMP^$OSy_?$g+k2|nr@tyD&FzM#s6YNWn@H|d6@HLMgDvdm0=8N4Utu5EMsJe3QcVN zw+199A`7z5p242!8PhWc8*sVB&j{+4s=-FC^%=owz#i1HFg1a7@Z~`*3u7ZOc}8$+ zgda50B+B%RliiO)gqvH0W5o(~QEo0#c0bT~+lmz+(vMw~i(8a^#R`ZDKXy(|_7yAG zIS&)34Ap2zUklt$+s?qvkjKCP8gz%u8yT5_CY0EfK!Zd2jNm2@8+05+9nw@%)?>6~ z1jVC~n79}lKcgI@xS+C<8br(#>|fBJya*e+s4*y_!4Y7`Xs)gY^0qajk(elxsu(}N z7zi`oW@BYyVPs)rHdEBo&$F|4a<aF})7MipV`67vWMN`u<7Pj}#>vdY%xtCJ6PgD~ z1$l}ZVKz2l8j28JXpg!TGcyx2C)-JOZe~@G3Vt!Mzkg1$axpP7F`H^AD(dm_@bKy> zDr%TAGchu8v7Y4MW@lyPX0bGJ=V2@o<@e$jjTLs*v<VBd(R3D$1q=M^<8e2!WZ`CI zW#{Gq)lm$d%&N?J4BQN642cX3=1BDtD|pCIn-M%H1DcXohXj$i9iufPs4M}E#DI$p zaT1i?cF@&xaM06rU{qygW#!}W<r86IlaY?Fv~=PVW@BUJWoOdU(FsyhRZx_YQsd!f zVN_*hW98)t;uB?LH#S<Dn_J5#!p6$R%g*TS;n`+qYig>kWg{rWvK?%!qhm1#9~&E+ zFrSm9WrU108<Pm1A3Gl_D=P~(kD8Q}qJpYgkdBTn6FVO(8=DAUZEo&TV<UD(QNAD! zURE|%79l|!EiE%sTe~(7Pj6@$0&X{{GN>@PgUWGeSs*CK2pz%}mt(YMG%|w@LW2rV zQxP`kU^hD-BWehO8or>OHw%NA>Yr_@X1uZj$|@@E$|}k#;d)GZ;VQ~1%I+#ED*Up% zHfoAWiq1-kiZUTeOiCd#ii%3kib{%dE_%AmUaDqHivO%s&CFC8kMT)zOGro<N=iye znVL#TNk|$=NJwx?@~tokl9CV?*OL$z7q+$*78jS$6Bm~d302p!GgE{5?f(Im2Id0{ zdY~0FjE1nmCQv^DlvmUtS%uvc(&h)%BZ#FLj3Q#<qR=5LHFfAXKDd`)YNBQeE(F;5 z7#SZVM}#-4s;Q|qhesp}s|l%TX@=|Q=o+{%GHNO+>hbVGWSCftw0!%W1r!858coej zOp-u@kal9?;*4hYA#RL}%m?J<GTq$+0^QxR<m8!{)x{;GSy>q+B?1lEdD*3u6n(X| z^#a`8Gv(y}%+zuf5o1zwVq#KN;N(=4kWi5K*3^kJWEbGjEqC#2*JI^j;ALR=znytI zGpMYPU{GN&V6bKIWC&$QVkly$W9Va;#ju)z!Q2Eiha)N?2AZEkVw<WXaafVq$l}B) z0(GW9)7!F)B4WmdMrO=NrkR5Vz!jC)z;cR4W}--P!h*1b2p!A0ttBs~tt}_7bq7R% zICnq<h{L!Y#<~sSf;jl(7`JQ7$?53G$!Wt?-4Wyes|qUIm~QinY0JrLYs<@Nduq%5 zxec<DSyfKkQ(g;XF3fywxjP^kd2Q{zP>EkqzC2iqoVNB}r~p_3#Qx_A)&n9KuYv^R zw6(8J0@(^8RzO7<d;UxUF`4r~Bm*;p)c*ra510=y@G>l6ILp8QiVjfs9I~E-kq=Z4 zi9=>Y<QUD33=F{?WJos`yyC<}O<56Kz(abrrr;#3t_SKyi;F=rfEuVh3GOO`I@4<4 z{;-*ex(R40k1<N7VP_K)7c&AS7l<PG`Uf>ru!$gh`54(%!BsXmVTnPD5zrJ3o0zy2 zcrF-}-@sNe9pGgDdjM21GC8nw{>|hP=Ht<m=9A)<Hs=-46lG-8bhLJqmt|sOW(2GH z=O!j@YwD)Y$ScOdB_+Vb%f`mS%+AHnDJLkT$iu?L!sx8X#>+0O!o|VK5**CL#K^-c z8K^6-ZxA7`z{tqM%PY>r%Ff8l$jZSa!OO?P$f%~4ZfqiLlgh%$!on)R%H{9O#I7D~ z2Xc~Skg~L_tUf<KhXf-#8zU1VD<_i#hk&55yu1NOo}H7E=?uHNtb`#43p2ZbDkldE zn}(CES-YdQhcputCp$Z*n3a-cjiF<p86y)TyAThbg8~~1GZQZxpOzS}2n#C<2Q#z2 zFbg9StA+@_Ad^Qm3o{!tqoz2&A}5!lgMAL8v`n<MjUyWm6C)d|ldWy6tSnQNo0~f) zr!6CBG=ZH}!k$kc$Lg1qILJ0pabX$RAae_M<?J|iZYFltq&yX0YwJjPc?M>NP=*HP z)l63zcp0P_G#MC#K|MrJ+5k5p@bMa$89+1Qf59XUHe-XNkf5ZbppYaZ1B~?#&VsjH zKxMHCgD(SvD!9l6Cjsbc4N%Gvg(OE&MbPAlx*Dq;qd9mS20F3>N>t#Y8%3=hqd7B! zsW&sTin_Xohq}57Gqbm8pu1bToGf#LtX#UA``>R`sg~TLoMI9j;$i`oy#7(B${5AD zC3yFm%C&jfn3(#BiHnQ*nVQ&mwaJ;XiHkXF>lhg5XgiCE3rTD8@X85jMd~`18yVPe zTe)H=<Pzcp`_<w90r2>r2)IQn2x_&0iZMY@#s&Az1sM&&vwol~V!>$1sA#Il-0(L6 z)YD~3_}c)QT4ZMUs{k5|W=i<GfZ5^C0Z>nwnZeuiFUYeEe;q)>%nl5oHHHx^49pq~ z&fxkR+!;~_)nv*_mW&3<O3<nr)K3Bzw4g2#tZp|lG=OJiJ4QnT@InqlMnPUi=5Ipc zvex{j_V(E-Dk>`3_V%Xy*0SP4TwFrpvd)6?R#wH@+F)@rek-u}-vx}K|6Vio`iaYP zGqEs%0SgniytrS6ou6I0zqmXXGcywtXbP2yg^^oc+&|sU&o1NNI!1*Fpe3XXO#crt z|6|_A5X``!YQbp8$!Ni72wGU625OIkq8%m(YOJw=+U%g#8B7qgeiGa^2Q^S&f*^l_ z+wbanjLhHvon$m;Vqs)vW}nP1#L3LY^zY=qlT2*PoI>oA*_oL^vp?qlPNJw_G-otN zR?&$rz(l&C;5id;JN^IzKZ7Wi^?~Z<;*8?V4WNhyjf0qad;jBp8#S5HIEwiIB>o}7 zf1bXJn#5=n1#0Usg2qw7W9C8(4B}?yW<us>#*pl!ti@=^%wP~6{(r^FOUd5e&31Mk z6ATVGOxU!E(IP9$zoOznV8Fiv3=D!GGr;Srq#0BgbQw$-92k5Uf*GP25*czB${A`I z+88D>%w|~1umS(9m9QP7xiKFjyE16;s4|G7D90$SY-+4-3Lkq_RtHx^=As~ZaWH8N znjtinV-yFCgzGVaTVLS(ug(gt)Ywgp`54tf1Usl)0I5_qSJq<$EjX296jy~TQ&qNO zWClrrb%Hd4?B`=-M{TJgwc6IQaWFP8^Ya$`eE?%I-ec!v+`n!ew-}d*ngF*j$Ly^F zY9d@>+_O1^xl8vma<Z@cw}6+Qxq*>`&2axZcFuipm5c#!l?@<;fs7n%1t6sk34Cf2 z3RaQ=vOIsQC9M=B)c6v3WHsTUOqFm!0p<oss}aeS$q@G62GBxD2YE&Z2rciR*x<06 znVX$YTUtm{JV;ubkDZ%&x45Rzqy|L?`F{uG9YE_U8ye&t=3`UV08({8(NRv`LGgf& zuN=Roq=2%po1`YcoUe|s@;@$^m@!O9fPs<0l3@Y!ai#|h+revwKwV5o1Tmv@q}7?h zaiFdQDvm%s10zts3RL2Nr_4cXAi>%|#knx3s|l(P@G2G+5d-(bK_m3wISF&HN$^p8 zNFP=iY$`vaxG<=lp$1=Ti=vGAIH;q^#4pLoCCqi6k(HH&m8qnaiH(JYjp-DZ2p6}k zFe9kr$->Ml%g-yt!z(K&sKCp@%*4be%E7_G%(6T_f=7gdU4kD}s4+4#@kw%Xi}UhG z@$$)lmB~o6vsqiQu}Moaf!2mFF>*=p@riM=3GwnvaWOHovIt0WaZ2#}WzJz?k(Oa% zVrJnI=i?FO<P_oI5d)Q#*O)-IF>-Nm$cz8eV`gS%{`3h%GF}pu<K*N5S<Ax225Ofu zGBPqTvazwUF|xC<3UIRWaQtiAvQtulgPjvJ<$$h=iJy;6h_^hKTZCO$gb~!22Mx$G zLI4XZI~%C!q9ECSoiU3`h(kmaVl-r4fsvJ!fsKKI!IOo7Igf#vfrEjEL54vGJd&bl zs;I7LswfItLJb;_0ImK5jWB@bVg*65tq2)$z{Y3tWX$_F={A$+-|dXKckVE%it+#P z0=12qw}D9P>`9(?JUtmzy#C$>wV?Sy1f$qw&|m_HU=#%jfJH%LJ`4<ulCw_TEmn-@ zxB1Gz%>pVl8EzX)1?`1^(*L)!G%%k9@2vpUs~{DO3=H7C2MjEb<zEe;l}R88ICg}X z1mT0Uf%p*22wDz~j1NG>85&p^7_PD~Fgh@A2lc)g7?@8m7=h*L7`Rv%7{WjsMOYXZ z<iKK(sc>X-Kx~j1AesPXOk!aGVTMO63}6h>2f_?2o(!NkWMEchum{=0tO{`p$fqE8 zF+E_AVqsti1@T$HvkhQ*CXiYrYzbn6eb2=p!XU>`#qfzyf-#Np8&eO{DP|ewG!{0N z9F`BP9ISiT<k;r1ePCx{pT)t(p}{eMV-3eXP8m)u&RtwmTt!?PxUcZ|@bvIp;`ziY z!E48x!rR4rh|iBNgKrbxD}FcrdjbUl_XJ~v9E4MZmxxG-1c+=A)e;R6Efeb!?-G9k zju}UWbD(+*+zJCb3WeZfSO-=GN)Mox8hGY_fr){gp$IC@%)rTD17))?a5A(**{lrQ z4AM|G8v`dpIF!xBAjPl<w0DGslYx;zh=CKzW@6xDsD!ea8H5;Ip==fgA%+Q1HY<Y| zgBq00#vsIy0A+JAm@w=q$Sg`M$<!^)WGG<BWGG@tWGG?CWYA?OWylOmEh^5;&r>ke zGh_&3NM$HuC}zlH$Y;o7P+%}*&|@&fqZf}<P-=Q<PGS*55JM_MIzuT#4nrbC5gzq! z`FSM@>8W|CMTsS;DGEuI3ZBXNzWMoidJJx0*OV|QFr+i2GUS2X2=YKGLkfceLlQ$J ag93vmLo!1?gD*oqSgjspY#JrD&^Q3hiUf=R literal 0 HcmV?d00001 diff --git a/uniweb/static/uniweb/assets/images/logo-round-white.svg b/uniweb/static/uniweb/assets/images/logo-round-white.svg new file mode 100644 index 00000000..49e0b19a --- /dev/null +++ b/uniweb/static/uniweb/assets/images/logo-round-white.svg @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 20.217 20.156" width="20.217pt" height="20.156pt"><defs><clipPath id="_clipPath_tR3ALwD3k6PT9ZS47lNZPyjlLQOtvovj"><rect width="20.217" height="20.156"/></clipPath></defs><g clip-path="url(#_clipPath_tR3ALwD3k6PT9ZS47lNZPyjlLQOtvovj)"><path d=" M 10.081 19.222 C 5.04 19.214 0.96 15.123 0.965 10.083 C 0.97 5.042 5.059 0.959 10.1 0.962 C 15.14 0.965 19.225 5.051 19.225 10.092 C 19.214 15.135 15.124 19.219 10.081 19.222 M 17.242 2.97 C 13.848 -0.384 8.558 -0.878 4.603 1.791 C 0.647 4.46 -0.877 9.549 0.963 13.953 C 2.802 18.356 7.493 20.849 12.172 19.911 C 16.85 18.973 20.217 14.864 20.217 10.092 C 20.212 7.417 19.142 4.854 17.242 2.97" fill="rgb(255,255,255)"/><path d=" M 9.888 9.432 C 9.588 10.889 7.988 11.659 7.051 12.292 L 7.051 4.892 C 8.065 5.051 8.96 5.643 9.505 6.513 C 10.049 7.384 10.189 8.447 9.888 9.429 M 7.051 4.094 L 7.051 2.694 L 6.17 2.694 L 6.17 4.316 C 5.564 4.508 5.233 4.701 5.289 4.811 C 5.578 4.746 5.875 4.727 6.17 4.756 L 6.17 13.256 C 5.261 15.016 6.556 17.711 6.556 17.711 C 6.556 17.711 5.592 14.824 7.74 13.449 C 9.723 12.184 16.609 12.789 16.581 8.912 C 16.581 3.412 10.219 3.44 7.051 4.1" fill="rgb(255,255,255)"/></g></svg> diff --git a/uniweb/static/uniweb/assets/images/logo.svg b/uniweb/static/uniweb/assets/images/logo.svg new file mode 100644 index 00000000..8417bece --- /dev/null +++ b/uniweb/static/uniweb/assets/images/logo.svg @@ -0,0 +1,30 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144.365" height="39.988" viewBox="0 0 144.365 39.988"> + <g id="logo-flag-text-white" transform="translate(-288.3 -170.5)"> + <g id="Group_11" data-name="Group 11" transform="translate(288.3 173.149)"> + <path id="Path_17" data-name="Path 17" d="M306.944,211.307A16.912,16.912,0,1,1,323.856,194.4a16.936,16.936,0,0,1-16.912,16.912M320.189,181.2a18.571,18.571,0,1,0,5.5,13.194,18.794,18.794,0,0,0-5.5-13.194" transform="translate(-288.3 -175.7)" fill="#fff"/> + <path id="Path_18" data-name="Path 18" d="M316,197.98c-.56,2.7-3.515,4.126-5.247,5.3v-13.7c2.9.713,6.368,2.955,5.247,8.405M310.75,188.1v-2.6h-1.63v3.005c-1.121.357-1.732.713-1.63.917a5.119,5.119,0,0,1,1.63-.1v15.741c-1.681,3.26.713,8.252.713,8.252s-1.783-5.349,2.19-7.9c3.668-2.343,16.4-1.223,16.352-8.405,0-10.188-11.767-10.137-17.625-8.915" transform="translate(-297.709 -180.508)" fill="#fff"/> + <path id="Path_19" data-name="Path 19" d="M384.221,186.483a4.663,4.663,0,0,0,.866.051,2.758,2.758,0,0,0,1.936-.611,2.117,2.117,0,0,0,.662-1.681c0-1.375-.866-2.038-2.649-2.038a5.022,5.022,0,0,0-.866.1v4.177Zm0,2.853v4.432H380.4V179.606a29.174,29.174,0,0,1,4.279-.306c4.432,0,6.622,1.579,6.622,4.788a5.032,5.032,0,0,1-1.477,3.922,6.265,6.265,0,0,1-4.381,1.324,9.753,9.753,0,0,1-1.223,0" transform="translate(-333.484 -177.466)" fill="#fff"/> + </g> + <rect id="Rectangle_29" data-name="Rectangle 29" width="4.279" height="14.263" transform="translate(347.951 175.187)" fill="#fff"/> + <g id="Group_12" data-name="Group 12" transform="translate(355.032 174.983)"> + <path id="Path_20" data-name="Path 20" d="M423.121,185.973h1.07a2.269,2.269,0,0,0,1.579-.509,1.639,1.639,0,0,0,.56-1.375q0-1.834-2.14-1.834a6.358,6.358,0,0,0-1.07.1Zm0,2.8v4.992H419.3V179.606a42.086,42.086,0,0,1,5.094-.306c3.922,0,5.858,1.477,5.858,4.381a3.871,3.871,0,0,1-.764,2.292A4.207,4.207,0,0,1,427.5,187.5v.051a2.646,2.646,0,0,1,.968.866,6.5,6.5,0,0,1,.764,1.477l1.426,3.922h-4.024l-1.223-3.719a1.949,1.949,0,0,0-.56-.968,1.2,1.2,0,0,0-.866-.306h-.866Z" transform="translate(-419.3 -179.3)" fill="#fff"/> + </g> + <path id="Path_21" data-name="Path 21" d="M448.551,183.8h2.6l-1.273-5.3h-.051Zm2.089-9.781h-3.107l1.936-3.515h4.279Zm-2.8,12.684-.662,2.751H443.1l4.687-14.263h4.126L456.6,189.45h-4.126l-.662-2.751Z" transform="translate(-75.944)" fill="#fff"/> + <path id="Path_22" data-name="Path 22" d="M480.816,179.7v3.209h-3.871v11.054h-3.973V182.909H469.1V179.7Z" transform="translate(-88.7 -4.513)" fill="#fff"/> + <g id="Group_13" data-name="Group 13" transform="translate(393.237 175.034)"> + <path id="Path_23" data-name="Path 23" d="M504.233,183.373a8.828,8.828,0,0,0-4.024-.968,2.5,2.5,0,0,0-1.375.306,1,1,0,0,0-.458.866c0,.56.408.917,1.274,1.172a11.092,11.092,0,0,1,4.33,1.987,4.145,4.145,0,0,1-.2,6.164,7.27,7.27,0,0,1-4.483,1.121,10.863,10.863,0,0,1-2.7-.408,6,6,0,0,1-2.292-1.07l.866-3.005a8.413,8.413,0,0,0,2.14,1.07,6.866,6.866,0,0,0,2.139.408c1.172,0,1.783-.408,1.783-1.273,0-.56-.509-.968-1.579-1.274a10.417,10.417,0,0,1-4.075-1.987,3.808,3.808,0,0,1-1.223-2.9,3.719,3.719,0,0,1,1.477-3.056,6.681,6.681,0,0,1,4.177-1.121,10.873,10.873,0,0,1,4.89.968Z" transform="translate(-494.3 -179.4)" fill="#fff"/> + </g> + <path id="Path_24" data-name="Path 24" d="M523.722,185.762h.051l3.668-6.062h4.483l-4.483,6.826,4.687,7.437h-4.483l-3.872-6.622h-.051v6.622H519.8V179.7h3.922Z" transform="translate(-113.573 -4.513)" fill="#fff"/> + <path id="Path_25" data-name="Path 25" d="M550.651,183.8h2.6l-1.274-5.3h-.051Zm2.089-9.781h-3.107l1.936-3.515h4.279Zm-2.8,12.684-.662,2.751H545.2l4.687-14.263h4.126L558.7,189.45h-4.126l-.662-2.751Z" transform="translate(-126.034)" fill="#fff"/> + <g id="Group_14" data-name="Group 14" transform="translate(334.758 194.289)"> + <path id="Path_26" data-name="Path 26" d="M389.433,221.173a8.828,8.828,0,0,0-4.024-.968,2.5,2.5,0,0,0-1.375.306,1,1,0,0,0-.458.866c0,.56.408.917,1.274,1.172a11.093,11.093,0,0,1,4.33,1.987,4.146,4.146,0,0,1-.2,6.164,7.27,7.27,0,0,1-4.483,1.121,10.866,10.866,0,0,1-2.7-.408,6.866,6.866,0,0,1-2.292-1.07l.866-3.005a8.414,8.414,0,0,0,2.139,1.07,6.867,6.867,0,0,0,2.14.408c1.172,0,1.783-.408,1.783-1.274,0-.56-.509-.968-1.579-1.273a10.419,10.419,0,0,1-4.075-1.987,3.808,3.808,0,0,1-1.223-2.9,3.719,3.719,0,0,1,1.477-3.056,6.681,6.681,0,0,1,4.177-1.121,10.874,10.874,0,0,1,4.89.968Z" transform="translate(-379.5 -217.2)" fill="#fff"/> + </g> + <path id="Path_27" data-name="Path 27" d="M415.016,217.6v3.209h-3.871v11.054h-3.973V220.809H403.3V217.6Z" transform="translate(-56.418 -23.107)" fill="#fff"/> + <g id="Group_15" data-name="Group 15" transform="translate(360.686 194.289)"> + <path id="Path_28" data-name="Path 28" d="M434.221,223.822h1.07a2.269,2.269,0,0,0,1.579-.509,1.639,1.639,0,0,0,.56-1.375q0-1.834-2.14-1.834a6.36,6.36,0,0,0-1.07.1Zm0,2.853v4.992H430.4V217.506a42.1,42.1,0,0,1,5.094-.306c3.922,0,5.858,1.477,5.858,4.381a3.871,3.871,0,0,1-.764,2.292A4.207,4.207,0,0,1,438.6,225.4v.051a2.647,2.647,0,0,1,.968.866,6.5,6.5,0,0,1,.764,1.477l1.426,3.922h-4.024L436.513,228a1.949,1.949,0,0,0-.56-.968,1.2,1.2,0,0,0-.866-.306h-.866Z" transform="translate(-430.4 -217.2)" fill="#fff"/> + </g> + <path id="Path_29" data-name="Path 29" d="M460.051,226.158h2.6l-1.273-5.3h-.051Zm-.713,2.955-.662,2.751H454.6l4.687-14.263h4.126l4.687,14.263h-4.126l-.662-2.751Z" transform="translate(-81.586 -23.107)" fill="#fff"/> + <path id="Path_30" data-name="Path 30" d="M492.349,225.394h.051V217.6h3.821v14.263H492.4l-4.279-7.845h-.051v7.845H484.3V217.6h3.77Z" transform="translate(-96.157 -23.107)" fill="#fff"/> + <path id="Path_31" data-name="Path 31" d="M516.151,226.158h2.6l-1.274-5.3h-.051Zm-.713,2.955-.662,2.751H510.7l4.686-14.263h4.126l4.687,14.263h-4.126l-.662-2.751Z" transform="translate(-109.108 -23.107)" fill="#fff"/> + </g> +</svg> diff --git a/uniweb/static/uniweb/assets/js/main.bundle.js b/uniweb/static/uniweb/assets/js/main.bundle.js new file mode 100644 index 00000000..5a504f59 --- /dev/null +++ b/uniweb/static/uniweb/assets/js/main.bundle.js @@ -0,0 +1 @@ +!function(e){"use strict";e=e&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e;const t=parseInt("992px".replace("px",""),10),L=function(e,t,L){for(var s=0;s<e.length;s++)t.call(L,e[s])};function s(){return Math.max(document.documentElement.clientWidth||0,window.innerWidth||0)>=t}function i(e,t,L,s,i,a,n,o,r,d){"boolean"!=typeof n&&(r=o,o=n,n=!1);const l="function"==typeof L?L.options:L;let c;if(e&&e.render&&(l.render=e.render,l.staticRenderFns=e.staticRenderFns,l._compiled=!0,i&&(l.functional=!0)),s&&(l._scopeId=s),a?(c=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),t&&t.call(this,r(e)),e&&e._registeredComponents&&e._registeredComponents.add(a)},l._ssrRegister=c):t&&(c=n?function(e){t.call(this,d(e,this.$root.$options.shadowRoot))}:function(e){t.call(this,o(e))}),c)if(l.functional){const e=l.render;l.render=function(t,L){return c.call(L),e(t,L)}}else{const e=l.beforeCreate;l.beforeCreate=e?[].concat(e,c):[c]}return L}const a=i({render:function(){var e=this,t=e.$createElement,L=e._self._c||t;return L("div",{staticClass:"calendar grid grid-cols-4"},[e.showBanner?L("div",{staticClass:"col-span-4 xl:col-span-1"},[L("aside",{staticClass:"banner bg-orange-300 text-white h-full"},[L("i",{staticClass:"ico--calendar banner__icon"}),e._v(" "),L("div",{staticClass:"banner__body"},[L("h1",{staticClass:"head-alt-md banner__cta"},[e._v(e._s(e.name))]),e._v(" "),e.onShowMore&&e.hasMore?L("button",{staticClass:"btn btn--white btn--fullwidth sm:btn--autowidth mt-8",on:{click:function(t){return e.onShowMore()}}},[L("div",{staticClass:"btn__body"},[e._v("Zobrazit další")])]):e._e()])])]):e._e(),e._v(" "),L("div",{class:{"col-span-4 xl:col-span-3":e.showBanner,"col-span-4":!e.showBanner}},e._l(e.events,(function(t){return L("div",{key:t.id,staticClass:"grid grid-cols-12 items-center calendar-table-row",class:{"calendar-table-row--standalone":!e.showBanner}},[L("div",{staticClass:"col-span-2 text-orange-300 head-alt-md calendar-table-row__col"},[L("span",[e._v(e._s(e._f("dateDay")(t.startTimestamp)))])]),e._v(" "),L("div",{staticClass:"col-span-8 grid grid-cols-3 col-gap-4 calendar-table-row__col",class:{"calendar-table-row__col--norborder":!t.mapLink}},[L("div",{staticClass:"col-span-3 md:col-span-1"},[L("strong",{staticClass:"block"},[e._v(e._s(t.startDateVerbose))]),e._v(" "),L("p",{staticClass:"font-light text-sm mt-1"},[e._v(e._s(t.allDay?"Celý den":t.startTimeVerbose))])]),e._v(" "),L("div",{staticClass:"col-span-3 md:col-span-2 mt-4 md:mt-0"},[t.link?L("a",{staticClass:"font-bold block",attrs:{href:t.link,target:"_blank",rel:"noreferrer noopener"}},[e._v(e._s(t.title))]):e._e(),e._v(" "),t.link?e._e():L("strong",{staticClass:"block"},[e._v(e._s(t.title))]),e._v(" "),t.description?L("p",{staticClass:"font-light text-sm mt-1"},[e._v(e._s(t.description))]):e._e()])]),e._v(" "),L("div",{staticClass:"col-span-2 text-center font-light calendar-table-row__col"},[t.mapLink?L("a",{staticClass:"icon-link",attrs:{href:t.mapLink}},[L("i",{staticClass:"ico--location text-violet-300 mr-1",attrs:{"aria-hidden":"true"}}),e._v(" "),L("span",[e._v("Mapa")])]):e._e()])])})),0)])},staticRenderFns:[]},void 0,{props:{name:{type:String,default:"Kalendář"},events:{type:Array,required:!0},onShowMore:{type:Function,required:!1},hasMore:{type:Boolean,default:!0},showBanner:{type:Boolean,default:!0}},filters:{dateDay:e=>new Date(e).getDate()+"."}},void 0,!1,void 0,!1,void 0,void 0,void 0),n=[{id:2,start:"2020-07-08T10:00:00.000Z",startTimestamp:new Date("2020-07-08T10:00:00.000Z").getTime(),startDateVerbose:"středa 8. července 2020",startTimeVerbose:"12:00",allDay:!1,end:"2020-07-08T11:00:00.000Z",title:"Pirátský oběd - Chrudim",description:"Pravidelné setkání pirátů při středečním obědě. Nejen o politice a s chutí.",link:"https://www.google.com/calendar/event?eid=Mmw1Y2RwMTByYm80Y204cWxsaW1maWJmcTJfMjAyMDA3MDhUMTAwMDAwWiA3cjY3M3JsaDI1NW9mb3JodjNvZWIybDBnMEBn"},{id:15,start:"2020-07-13T19:00:00.000Z",startTimestamp:new Date("2020-07-13T19:00:00.000Z").getTime(),startDateVerbose:"pondělí 13. července 2020",startTimeVerbose:"21:00",allDay:!1,end:"2020-07-13T19:30:00.000Z",title:"Mumble - předsednictvo",link:"https://www.google.com/calendar/event?eid=YzVpM2FvaGc2MHAzY2I5aGM1aW1jYjlrNjBvbThiYjE2dGk2NGI5ajY4cjY0ZGhrNzVnamdjOWdjb18yMDIwMDcxM1QxOTAwMDBaIDdyNjczcmxoMjU1b2Zvcmh2M29lYjJsMGcwQGc"},{id:3,start:"2020-07-15T10:00:00.000Z",startTimestamp:new Date("2020-07-15T10:00:00.000Z").getTime(),startDateVerbose:"středa 15. července 2020",startTimeVerbose:"12:00",allDay:!1,end:"2020-07-15T11:00:00.000Z",title:"Pirátský oběd - Chrudim",description:"Pravidelné setkání pirátů při středečním obědě. Nejen o politice a s chutí.",link:"https://www.google.com/calendar/event?eid=Mmw1Y2RwMTByYm80Y204cWxsaW1maWJmcTJfMjAyMDA3MTVUMTAwMDAwWiA3cjY3M3JsaDI1NW9mb3JodjNvZWIybDBnMEBn",mapLink:"https://maps.google.com"},{id:16,start:"2020-07-20T19:00:00.000Z",startTimestamp:new Date("2020-07-20T19:00:00.000Z").getTime(),startDateVerbose:"pondělí 20. července 2020",startTimeVerbose:"21:00",allDay:!1,end:"2020-07-20T19:30:00.000Z",title:"Mumble - předsednictvo",link:"https://www.google.com/calendar/event?eid=YzVpM2FvaGc2MHAzY2I5aGM1aW1jYjlrNjBvbThiYjE2dGk2NGI5ajY4cjY0ZGhrNzVnamdjOWdjb18yMDIwMDcyMFQxOTAwMDBaIDdyNjczcmxoMjU1b2Zvcmh2M29lYjJsMGcwQGc"},{id:4,start:"2020-07-22T10:00:00.000Z",startTimestamp:new Date("2020-07-22T10:00:00.000Z").getTime(),startDateVerbose:"středa 22. července 2020",startTimeVerbose:"12:00",allDay:!1,end:"2020-07-22T11:00:00.000Z",title:"Pirátský oběd - Chrudim",description:"Pravidelné setkání pirátů při středečním obědě. Nejen o politice a s chutí.",link:"https://www.google.com/calendar/event?eid=Mmw1Y2RwMTByYm80Y204cWxsaW1maWJmcTJfMjAyMDA3MjJUMTAwMDAwWiA3cjY3M3JsaDI1NW9mb3JodjNvZWIybDBnMEBn"},{id:17,start:"2020-07-27T19:00:00.000Z",startTimestamp:new Date("2020-07-27T19:00:00.000Z").getTime(),startDateVerbose:"pondělí 27. července 2020",startTimeVerbose:"21:00",allDay:!1,end:"2020-07-27T19:30:00.000Z",title:"Mumble - předsednictvo",link:"https://www.google.com/calendar/event?eid=YzVpM2FvaGc2MHAzY2I5aGM1aW1jYjlrNjBvbThiYjE2dGk2NGI5ajY4cjY0ZGhrNzVnamdjOWdjb18yMDIwMDcyN1QxOTAwMDBaIDdyNjczcmxoMjU1b2Zvcmh2M29lYjJsMGcwQGc"},{id:5,start:"2020-07-29T10:00:00.000Z",startTimestamp:new Date("2020-07-29T10:00:00.000Z").getTime(),startDateVerbose:"středa 29. července 2020",startTimeVerbose:"12:00",allDay:!1,end:"2020-07-29T11:00:00.000Z",title:"Pirátský oběd - Chrudim",description:"Pravidelné setkání pirátů při středečním obědě. Nejen o politice a s chutí.",link:"https://www.google.com/calendar/event?eid=Mmw1Y2RwMTByYm80Y204cWxsaW1maWJmcTJfMjAyMDA3MjlUMTAwMDAwWiA3cjY3M3JsaDI1NW9mb3JodjNvZWIybDBnMEBn"},{id:18,start:"2020-08-03T19:00:00.000Z",startTimestamp:new Date("2020-08-03T19:00:00.000Z").getTime(),startDateVerbose:"pondělí 3. srpna 2020",startTimeVerbose:"21:00",allDay:!1,end:"2020-08-03T19:30:00.000Z",title:"Mumble - předsednictvo",link:"https://www.google.com/calendar/event?eid=YzVpM2FvaGc2MHAzY2I5aGM1aW1jYjlrNjBvbThiYjE2dGk2NGI5ajY4cjY0ZGhrNzVnamdjOWdjb18yMDIwMDgwM1QxOTAwMDBaIDdyNjczcmxoMjU1b2Zvcmh2M29lYjJsMGcwQGc"},{id:6,start:"2020-08-05T10:00:00.000Z",startTimestamp:new Date("2020-08-05T10:00:00.000Z").getTime(),startDateVerbose:"středa 5. srpna 2020",startTimeVerbose:"12:00",allDay:!1,end:"2020-08-05T11:00:00.000Z",title:"Pirátský oběd - Chrudim",description:"Pravidelné setkání pirátů při středečním obědě. Nejen o politice a s chutí.",link:"https://www.google.com/calendar/event?eid=Mmw1Y2RwMTByYm80Y204cWxsaW1maWJmcTJfMjAyMDA4MDVUMTAwMDAwWiA3cjY3M3JsaDI1NW9mb3JodjNvZWIybDBnMEBn"}],o=[{id:19,start:"2020-08-10T19:00:00.000Z",startTimestamp:new Date("2020-08-10T19:00:00.000Z").getTime(),startDateVerbose:"pondělí 10. srpna 2020",startTimeVerbose:"21:00",allDay:!1,end:"2020-08-10T19:30:00.000Z",title:"Mumble - předsednictvo",link:"https://www.google.com/calendar/event?eid=YzVpM2FvaGc2MHAzY2I5aGM1aW1jYjlrNjBvbThiYjE2dGk2NGI5ajY4cjY0ZGhrNzVnamdjOWdjb18yMDIwMDgxMFQxOTAwMDBaIDdyNjczcmxoMjU1b2Zvcmh2M29lYjJsMGcwQGc"},{id:7,start:"2020-08-12T10:00:00.000Z",startTimestamp:new Date("2020-08-12T10:00:00.000Z").getTime(),startDateVerbose:"středa 12. srpna 2020",startTimeVerbose:"12:00",allDay:!1,end:"2020-08-12T11:00:00.000Z",title:"Pirátský oběd - Chrudim",description:"Pravidelné setkání pirátů při středečním obědě. Nejen o politice a s chutí.",link:"https://www.google.com/calendar/event?eid=Mmw1Y2RwMTByYm80Y204cWxsaW1maWJmcTJfMjAyMDA4MTJUMTAwMDAwWiA3cjY3M3JsaDI1NW9mb3JodjNvZWIybDBnMEBn"}],r=i({},void 0,{data:()=>({events:n,hasMore:!0}),methods:{onShowMore(){this.$data.events=[...n,...o],this.$data.hasMore=!1}},render(){return this.$scopedSlots.default({events:this.events,hasMore:this.hasMore,onShowMore:this.onShowMore})}},void 0,void 0,void 0,!1,void 0,void 0,void 0),d=i({},void 0,{props:{calendarId:{type:String,required:!0},apiKey:{type:String,required:!0}},data:()=>({events:[],toShow:7}),computed:{displayedEvents(){return this.events.slice(0,this.toShow)},hasMore(){return this.toShow<this.events.length}},methods:{onShowMore(){this.toShow+=10},loadEventsFromStorage(){if(window.sessionStorage&&window.sessionStorage["__pircal_"+this.calendarId])return JSON.parse(window.sessionStorage["__pircal_"+this.calendarId])},storeEventsToStorage(){window.sessionStorage&&(window.sessionStorage["__pircal_"+this.calendarId]=JSON.stringify(this.events))}},mounted(){const e=this.loadEventsFromStorage();if(e)this.events=e;else{const e=new Date,t=e.toISOString(),L=new Date(+e+7776e6).toISOString(),s=`https://www.googleapis.com/calendar/v3/calendars/${this.calendarId}/events?key=${encodeURIComponent(this.apiKey)}&maxResults=150&timeMin=${encodeURIComponent(t)}&timeMax=${encodeURIComponent(L)}&sanitizeHtml=true&singleEvents=true&maxAtendees=1`;let i=0;fetch(s).then(e=>{if(!e.ok)throw new Error("Problem loading events from google");return e.json()}).then(e=>{this.events=e.items.map(e=>{const t=new Date(e.start.dateTime||e.start.date),L=new Date(e.end.dateTime||e.end.date),s=t.toLocaleDateString("cs-CZ",{weekday:"long",year:"numeric",month:"long",day:"numeric"}),a=t.getHours()+":"+t.getMinutes().toString().padStart(2,"0"),n=!e.start.dateTime;return{id:i++,start:t,startTimestamp:t.getTime(),startDateVerbose:s,startTimeVerbose:a,allDay:n,end:L,title:e.summary,description:e.description,link:e.htmlLink}}).sort((e,t)=>e.start<t.start?-1:1),this.storeEventsToStorage()})}},render(){return this.$scopedSlots.default({events:this.displayedEvents,hasMore:this.hasMore,onShowMore:this.onShowMore})}},void 0,void 0,void 0,!1,void 0,void 0,void 0),l=i({render:function(){var e=this,t=e.$createElement,L=e._self._c||t;return L("div",{staticClass:"region-map flex justify-start items-center space-x-16 "},[L("div",{},[L("h1",{staticClass:"head-alt-sm mb-2"},[e._v("Vyberte kraj")]),e._v(" "),L("ul",{staticClass:"region-map__list leading-loose whitespace-no-wrap text-sm"},e._l(e.regions,(function(t){return L("li",{key:t.id},[L("a",{attrs:{href:"#"},on:{click:function(L){return e.selectRegion(t)},mouseover:function(L){e.current=t},mouseout:function(t){e.current=null}}},[e._v(e._s(t.name))])])})),0)]),e._v(" "),L("div",{staticClass:"w-full max-w-xl hidden md:block"},[L("svg",{attrs:{"xmlns:xlink":"http://www.w3.org/1999/xlink",xmlns:"http://www.w3.org/2000/svg",id:"svgmapy",version:"1.1",viewBox:"0 75 800 450"}},[L("g",e._l(e.regions,(function(t){return L("a",{key:t.id,attrs:{"xlink:href":"#"},on:{mouseover:function(L){e.current=t},mouseout:function(t){e.current=null},click:function(L){return e.selectRegion(t)}}},[L("path",{class:{"region-map__region":!0,"region-map__region--current":e.current===t},attrs:{d:t.polygon}})])})),0)])])])},staticRenderFns:[]},void 0,{props:{links:{type:Object,default:function(){return{praha:"https://praha.pirati.cz",stredocesky:"https://stredocesky.pirati.cz",jihocesky:"https://jihocesky.pirati.cz",plzensky:"https://plzensky.pirati.cz",karlovarsky:"https://karlovarsky.pirati.cz",ustecky:"https://ustecky.pirati.cz",liberecky:"https://liberecky.pirati.cz",kralovehradecky:"https://kralovehradecky.pirati.cz",moravskoslezsky:"https://moravskoslezsky.pirati.cz",pardubicky:"https://pardubicky.pirati.cz",vysocina:"https://vysocina.pirati.cz",jihomoravsky:"https://jihomoravsky.pirati.cz",olomoucky:"https://olomoucky.pirati.cz",zlinsky:"https://zlinsky.pirati.cz"}}}},methods:{selectRegion(e){const t=this.$props.links[e.id];window.location.href=t}},data:()=>({current:null,regions:[{id:"praha",name:"Hlavní město Praha",polygon:"M256.167,247.61L263.167,244.11L265.83399999999995,245.61C265.83399999999995,245.61,270.00299999999993,246.41500000000002,270.5009999999999,245.943S269.33399999999995,241.61,269.33399999999995,241.61L272.33399999999995,239.77700000000002L276.5009999999999,240.61L281.1679999999999,238.11L283.6679999999999,234.77700000000002L289.1679999999999,234.94400000000002L290.5009999999999,237.27700000000002L293.6679999999999,238.27700000000002L294.6679999999999,239.77700000000002L298.33499999999987,238.94400000000002L297.33499999999987,242.61100000000002L302.1679999999999,243.77800000000002L304.33499999999987,247.27800000000002H307.50199999999984L310.50199999999984,251.11100000000002L310.00199999999984,254.11100000000002L305.1689999999998,254.61100000000002L301.8359999999998,256.944L304.1689999999998,258.944L304.6689999999998,264.111L301.1689999999998,267.27799999999996L297.1689999999998,264.611L292,263.944L289.5,266.444L284.833,267.611L282.16600000000005,271.444L278.4990000000001,271.611L274.9990000000001,273.27799999999996L273.9990000000001,275.94499999999994L269.4990000000001,276.94499999999994L266.16600000000005,273.27799999999996L267.833,267.94499999999994L263.16600000000005,265.6119999999999L264.4990000000001,262.6119999999999L260.66600000000005,260.1119999999999L257.66600000000005,255.7789999999999L259.9990000000001,252.2789999999999L256.167,247.61Z"},{id:"stredocesky",name:"Středočeský kraj",polygon:"M404.167,273.11L397.33399999999995,269.777L397.167,265.11L391.667,263.277L386,259.944L386.833,255.27700000000002L390.24800000000005,250.347L392.32000000000005,243.566L384.22100000000006,239.234L388.1770000000001,232.26500000000001L386.1050000000001,227.74400000000003L387.23500000000007,222.09400000000002L385.9170000000001,216.06600000000003L382.9030000000001,213.05200000000002L377.4410000000001,216.63100000000003L368.5880000000001,215.50100000000003V210.22700000000003L363.7850000000001,205.42400000000004L357.4750000000001,204.20000000000005L356.1570000000001,199.49100000000004L360.9600000000001,194.68800000000005L358.0410000000001,186.68300000000005L359.7360000000001,181.97400000000005L356.9110000000001,177.45300000000006L359.35700000000014,173.68500000000006L354.27200000000016,171.42500000000007V167.65800000000007L347.1610000000002,164.03200000000007L343.91200000000015,160.78300000000007H338.35500000000013L334.11700000000013,156.54500000000007L329.9730000000001,163.70200000000008L323.3800000000001,171.0480000000001L321.1200000000001,168.7880000000001L315.47000000000014,169.7290000000001V174.4380000000001L307.55900000000014,180.8420000000001L298.14100000000013,183.1020000000001L295.88100000000014,176.32100000000008L284.95300000000015,176.88600000000008L282.69300000000015,179.90100000000007L283.63500000000016,187.05900000000005H278.92600000000016L277.41900000000015,191.58000000000004H272.52200000000016L274.21700000000016,200.05600000000004L270.63800000000015,203.63500000000005L262.53900000000016,202.88200000000006L258.20600000000013,207.21500000000006H241.81900000000013L233.90800000000013,203.63600000000005L227.50400000000013,207.02600000000004V211.54700000000003L222.32400000000013,216.72700000000003H216.39100000000013L214.36600000000013,218.75100000000003L214.50800000000012,222.66000000000003L208.8570000000001,219.26900000000003L202.6420000000001,225.48400000000004L193.97700000000012,225.29600000000005L185.6890000000001,230.38200000000006L178.3430000000001,230.75800000000007L172.6920000000001,236.03200000000007L171.5620000000001,242.62400000000008L165.3460000000001,245.26100000000008L161.9560000000001,250.72300000000007L164.2510000000001,253.60700000000006L161.5010000000001,257.1070000000001L165.0010000000001,260.3570000000001L169.0010000000001,257.8570000000001L175.7510000000001,258.3570000000001L176.5010000000001,262.6070000000001L180.5010000000001,264.8570000000001L185.0010000000001,267.1070000000001L189.5010000000001,265.3570000000001L194.7510000000001,272.1070000000001L199.7510000000001,271.1070000000001L200.0010000000001,275.1070000000001L205.0010000000001,276.1070000000001L209.2510000000001,278.8570000000001L208.7510000000001,285.3570000000001L210.0010000000001,289.1070000000001L205.2510000000001,293.8570000000001L207.5010000000001,299.8570000000001L205.0010000000001,304.1070000000001L207.2510000000001,308.6070000000001L202.5010000000001,314.3570000000001H197L191.75,318.1070000000001L195.75,322.3570000000001L194,327.3570000000001L197.5,331.8570000000001L200.75,334.3570000000001L199.5,338.8570000000001L199.25,344.8570000000001L202.5,350.3570000000001L216.25,350.8570000000001L220.75,353.1070000000001L227.75,349.6070000000001L230.5,344.8570000000001H235.25L239,348.8570000000001L252.5,347.3570000000001L255.5,343.6070000000001H261.5L265.5,348.6070000000001L269.75,348.8570000000001L276,345.1070000000001L282.5,348.1070000000001L287,347.3570000000001L295,349.3570000000001L302.25,352.3570000000001L305.75,348.3570000000001L312.25,344.8570000000001L310.75,337.1070000000001L316,333.3570000000001L323.75,339.8570000000001L328,339.3570000000001L330.25,344.8570000000001L333.5,349.6070000000001L336.25,346.8570000000001L336.5,341.6070000000001L342,336.1070000000001L350.25,337.3570000000001L356.75,337.1070000000001L361.25,337.8570000000001L363.5,333.8570000000001L367.25,335.6070000000001L372,332.3570000000001L371.75,327.1070000000001L364,323.3570000000001L364.25,317.6070000000001L368,314.1070000000001L368.75,310.1070000000001L371.75,308.3570000000001L375.75,309.3570000000001L379,306.3570000000001H384.75L386.75,302.1070000000001L392.5,302.3570000000001L392,296.3570000000001L396,293.1070000000001L402,292.6070000000001L400,284.4410000000001L403.667,280.7740000000001L404.167,273.11ZM310,254.11L305.167,254.61L301.83399999999995,256.94300000000004L304.167,258.94300000000004L304.667,264.11L301.167,267.277L297.167,264.61L292,263.944L289.5,266.444L284.833,267.611L282.16600000000005,271.444L278.4990000000001,271.611L274.9990000000001,273.27799999999996L273.9990000000001,275.94499999999994L269.4990000000001,276.94499999999994L266.16600000000005,273.27799999999996L267.833,267.94499999999994L263.16600000000005,265.6119999999999L264.4990000000001,262.6119999999999L260.66600000000005,260.1119999999999L257.66600000000005,255.7789999999999L259.9990000000001,252.2789999999999L256.16600000000005,247.6119999999999L263.16600000000005,244.1119999999999L265.833,245.6119999999999L270.5,245.9449999999999L269.333,241.6119999999999L272.333,239.7789999999999L276.5,240.6119999999999L281.167,238.1119999999999L283.667,234.7789999999999L289.167,234.9459999999999L290.5,237.2789999999999L293.667,238.2789999999999L294.667,239.7789999999999L298.33399999999995,238.9459999999999L297.33399999999995,242.61299999999991L302.167,243.77999999999992L304.33399999999995,247.27999999999992H307.5009999999999L310.5009999999999,251.11299999999991L310,254.11Z"},{id:"jihocesky",name:"Jihočeský kraj",polygon:"M173.5,445.61L179.5,447.36L185.61599999999999,452.692L184.61599999999999,455.789L188.963,462.31L196.57,463.669L198.743,470.46099999999996L203.905,477.25299999999993L206.079,483.50199999999995L211.78400000000002,483.77299999999997L221.56500000000003,493.01L226.72700000000003,494.911L232.43300000000002,501.704L228.35800000000003,506.051L237.32400000000004,515.0169999999999H247.64800000000005L257.97200000000004,516.9179999999999L266.39400000000006,521.8089999999999L278.34800000000007,511.75599999999986L280.79300000000006,505.50799999999987L287.0420000000001,510.9419999999999L293.83400000000006,512.2999999999998L299.2680000000001,510.94199999999984L308.2340000000001,516.9189999999999L311.7660000000001,511.2139999999999L310.68000000000006,505.77999999999986L311.76700000000005,496.54299999999984L319.3740000000001,490.29499999999985L322.09100000000007,482.4159999999998L329.1550000000001,482.68699999999984L338.9360000000001,485.67499999999984L340.5660000000001,482.68699999999984L338.1210000000001,478.33999999999986L339.4790000000001,472.36199999999985L341.9240000000001,465.02599999999984L341.1090000000001,455.5169999999998L340.5660000000001,445.4639999999998L343.5540000000001,439.75899999999984L352.5200000000001,442.74699999999984L360.1270000000001,444.3779999999998L362.5720000000001,452.5279999999998L374.2550000000001,449.8109999999998L377.5150000000001,445.4629999999998L385.3940000000001,445.7349999999998L397.3490000000001,451.9829999999998L401.4240000000001,453.88499999999976L405.5010000000001,459.85699999999974L408.7510000000001,452.85699999999974L404.7510000000001,446.60699999999974L400.2510000000001,442.60699999999974L405.7510000000001,436.85699999999974L406.7510000000001,430.60699999999974L412.0010000000001,429.60699999999974L412.7510000000001,425.10699999999974L405.5010000000001,419.35699999999974L398.5010000000001,420.85699999999974L390.0010000000001,420.60699999999974L383.5010000000001,414.10699999999974L384.5010000000001,408.60699999999974L381.2510000000001,404.10699999999974L374.0010000000001,405.35699999999974L366.0010000000001,402.35699999999974L361.0010000000001,405.10699999999974L355.5010000000001,400.10699999999974L352.7510000000001,395.10699999999974L346.5010000000001,391.60699999999974L341.7510000000001,394.35699999999974L336.2510000000001,389.85699999999974L333.5010000000001,384.85699999999974L334.7510000000001,380.35699999999974L332.0010000000001,374.60699999999974V366.85699999999974L335.0010000000001,363.10699999999974L335.2510000000001,356.10699999999974L333.5010000000001,349.60699999999974L330.2510000000001,344.85699999999974L328.0010000000001,339.35699999999974L323.7510000000001,339.85699999999974L316.0010000000001,333.35699999999974L310.7510000000001,337.10699999999974L312.2510000000001,344.85699999999974L305.7510000000001,348.35699999999974L302.2510000000001,352.35699999999974L295.0010000000001,349.35699999999974L287.0010000000001,347.35699999999974L282.5010000000001,348.10699999999974L276.0010000000001,345.10699999999974L269.7510000000001,348.85699999999974C269.7510000000001,348.85699999999974,266.10300000000007,348.62199999999973,265.5010000000001,348.60699999999974S261.5010000000001,343.60699999999974,261.5010000000001,343.60699999999974H255.5010000000001L252.5010000000001,347.35699999999974L239.0010000000001,348.85699999999974L235.2510000000001,344.85699999999974H230.5010000000001L227.7510000000001,349.60699999999974L220.7510000000001,353.10699999999974L216.2510000000001,350.85699999999974L202.5010000000001,350.35699999999974L199.7510000000001,354.35699999999974L201.2510000000001,359.85699999999974V364.35699999999974L200.5010000000001,372.10699999999974L204.0010000000001,377.85699999999974L199.5010000000001,384.85699999999974L196.0010000000001,387.60699999999974V391.35699999999974L193.0010000000001,394.10699999999974L196.7510000000001,398.35699999999974L192.0010000000001,400.85699999999974L195.0010000000001,406.85699999999974L192.5010000000001,412.85699999999974L186.5010000000001,415.10699999999974L185.0010000000001,417.85699999999974L180.5010000000001,416.35699999999974L179.2510000000001,426.10699999999974L181.7510000000001,430.10699999999974L180.5010000000001,433.60699999999974L175.2510000000001,435.85699999999974L173.57600000000008,441.83199999999977L173.5,445.61Z"},{id:"plzensky",name:"Plzeňský kraj",polygon:"M151.027,246.771L147.637,255.059L141.986,256.566V265.042L134.452,259.39099999999996L126.541,258.44899999999996L111.472,268.24299999999994V273.89399999999995L107.61099999999999,277.75499999999994L101.30099999999999,274.6479999999999L98.09899999999999,276.1549999999999L91.883,272.38699999999994L84.34899999999999,275.58899999999994L78.981,280.95699999999994L73.99,276.5299999999999L69.469,280.2979999999999L62.355999999999995,280.0069999999999L54.477,291.9609999999999L54,299.11L45.784,306.63300000000004L52.033,313.696L59.64,318.858L59.097,326.737L64.259,332.71500000000003L63.987,340.05L72.138,345.75600000000003L71.32300000000001,354.721L72.68100000000001,360.969L79.20200000000001,364.501L84.90800000000002,370.479L89.25500000000001,377.81399999999996L97.13400000000001,379.98799999999994L99.85100000000001,378.08699999999993L106.91400000000002,379.44499999999994L115.88000000000001,385.96599999999995L116.96700000000001,393.30099999999993L124.84600000000002,401.17999999999995V404.9839999999999L132.181,410.68999999999994L133.53900000000002,416.3949999999999L138.43,419.9269999999999H145.222L151.743,426.4479999999999L157.72,435.1409999999999L158.535,444.6509999999999L169.674,451.9859999999999L173.501,445.6109999999999L173.576,441.8359999999999L175.251,435.8609999999999L180.501,433.6109999999999L181.751,430.1109999999999L179.251,426.1109999999999L180.501,416.3609999999999L185.001,417.8609999999999L186.501,415.1109999999999L192.501,412.8609999999999L195.001,406.8609999999999L192.001,400.8609999999999L196.751,398.3609999999999L193.001,394.1109999999999L196.001,391.3609999999999V387.6109999999999L199.501,384.8609999999999L204.001,377.8609999999999L200.501,372.1109999999999L201.251,364.3609999999999V359.8609999999999L199.751,354.3609999999999L202.501,350.3609999999999L199.251,344.8609999999999L199.501,338.8609999999999L200.751,334.3609999999999L197.501,331.8609999999999L194.001,327.3609999999999L195.751,322.3609999999999L191.751,318.1109999999999L197.001,314.3609999999999H202.501L207.251,308.6109999999999L205.001,304.1109999999999L207.501,299.8609999999999L205.251,293.8609999999999L210.001,289.1109999999999L208.751,285.3609999999999L209.251,278.8609999999999L205.001,276.1109999999999L200.001,275.1109999999999L199.751,271.1109999999999L194.751,272.1109999999999C194.751,272.1109999999999,189.695,265.40499999999986,189.501,265.3609999999999S185.001,267.1109999999999,185.001,267.1109999999999L180.501,264.8609999999999L176.501,262.6109999999999L175.751,258.3609999999999L169.001,257.8609999999999L165.001,260.3609999999999L161.501,257.1109999999999L164.251,253.61099999999988L161.95600000000002,250.7269999999999L155.175,246.7709999999999L151.027,246.771Z"},{id:"karlovarsky",name:"Karlovarský kraj",polygon:"M69.47,280.299L62.357,280.008V274.846L57.195,272.401L57.466,266.42400000000004L42.251,256.1L32.742,251.21000000000004L28.665999999999997,243.87400000000002L24.590999999999998,239.25500000000002L26.493,230.83300000000003L20.244,221.324L15.761,216.841L18.886,210.728L16.169999999999998,203.936H24.863999999999997L27.037,206.11V212.08700000000002H31.656L34.237,214.668L32.742000000000004,218.87900000000002L35.459,221.59600000000003V228.38800000000003L39.535000000000004,232.46400000000003L41.437000000000005,222.68300000000002C41.437000000000005,222.68300000000002,40.07900000000001,219.42200000000003,41.437000000000005,218.06400000000002S46.871,212.63000000000002,46.871,212.63000000000002L49.316,204.479L59.912000000000006,198.774V194.97L63.30800000000001,191.574L71.051,190.351L80.83200000000001,188.721L84.09200000000001,191.981L89.52600000000001,185.189L99.57900000000001,182.47199999999998L110.17500000000001,190.35099999999997L115.019,195.19499999999996H125.036L129.933,197.04499999999996C129.933,197.04499999999996,129.676,201.25999999999996,129.933,201.75399999999996S140.66899999999998,200.62399999999997,140.66899999999998,200.62399999999997L145.378,205.33299999999997L140.76299999999998,209.94799999999998L143.30599999999998,214.75099999999998L141.611,220.96599999999998L145.755,225.10999999999999L144.06,228.689L148.768,235.093L144.059,239.801L151.028,246.771L147.638,255.059L141.987,256.566V265.042L134.453,259.39099999999996L126.542,258.44899999999996L111.473,268.24299999999994V273.89399999999995L107.612,277.75499999999994L101.30199999999999,274.6479999999999L98.1,276.1549999999999L91.884,272.38699999999994L84.35,275.58899999999994L78.982,280.95699999999994L73.991,276.5299999999999L69.47,280.299Z"},{id:"ustecky",name:"Ústecký kraj",polygon:"M110.174,190.351L119.683,185.189L119.412,177.85399999999998L122.67200000000001,174.593L132.453,172.963L140.604,174.04999999999998L143.864,168.07299999999998V163.72599999999997L146.58100000000002,158.83599999999998H149.841L151.471,163.72599999999997L155.546,162.36799999999997V156.39099999999996L158.128,153.80899999999997L159.62199999999999,149.86999999999998H163.42499999999998L165.05499999999998,155.03199999999998L169.402,157.749L177.82399999999998,151.772L178.367,141.72L182.30599999999998,137.781L186.789,140.09L192.22299999999998,135.20000000000002L195.755,138.73200000000003L202.27599999999998,135.20000000000002L209.611,134.38500000000002L211.24099999999999,138.18900000000002H214.23L219.11999999999998,133.29900000000004V125.69200000000004L225.36899999999997,124.60500000000003L229.71599999999998,120.25800000000004L235.421,123.79000000000003L244.11499999999998,119.17100000000003L247.647,115.63900000000004L254.982,116.18200000000004L258.514,109.11900000000004H263.404L265.306,111.29200000000004L275.087,107.76000000000005L276.174,100.96800000000005L268.02299999999997,98.25100000000005V93.08900000000004L259.873,91.45900000000005L262.861,86.02500000000005L265.578,78.96100000000004L273.729,82.76500000000004L275.631,84.66700000000004H280.52099999999996L288.128,81.95000000000005L293.018,86.84000000000005L297.909,91.45900000000005L298.18,97.43600000000005L294.105,104.22800000000005L303.34200000000004,102.59800000000006L301.71200000000005,112.10700000000006V116.45400000000005L295.31000000000006,118.69000000000005L294.36800000000005,126.03600000000006L287.96400000000006,123.58700000000006L280.8070000000001,122.64500000000007L282.3140000000001,128.67200000000005L277.5110000000001,133.47500000000005V137.33600000000004L273.3200000000001,141.52700000000004C273.3200000000001,141.52700000000004,269.2500000000001,147.21300000000005,269.3180000000001,148.26100000000005S272.7080000000001,153.72300000000004,272.7080000000001,153.72300000000004V158.80900000000005L279.8670000000001,170.67200000000005L284.9510000000001,176.88900000000007L282.6910000000001,179.90400000000005L283.6330000000001,187.06200000000004H278.9240000000001L277.4170000000001,191.58300000000003H272.5200000000001L274.2150000000001,200.05900000000003L270.6360000000001,203.63800000000003L262.5370000000001,202.88500000000005L258.20400000000006,207.21800000000005H241.81700000000006L233.90600000000006,203.63900000000004L227.50200000000007,207.02900000000002V211.55L222.32200000000006,216.73000000000002H216.38900000000007L214.36400000000006,218.75400000000002L214.50600000000006,222.663L208.85500000000005,219.27200000000002L202.64000000000004,225.48700000000002L193.97500000000005,225.29900000000004L185.68700000000004,230.38500000000005L178.34100000000004,230.76100000000005L172.69000000000003,236.03500000000005L171.56000000000003,242.62700000000007L165.34400000000002,245.26400000000007L161.95400000000004,250.72600000000006L155.17300000000003,246.77000000000007L151.02600000000004,246.77100000000007L144.05700000000004,239.80100000000007L148.76600000000005,235.09300000000007L144.05800000000005,228.68900000000008L145.75300000000004,225.11000000000007L141.60900000000004,220.96600000000007L143.30400000000003,214.75100000000006L140.76100000000002,209.94800000000006L145.37600000000003,205.33300000000006L140.66700000000003,200.62400000000005L129.93100000000004,201.75400000000005V197.04500000000004L125.03400000000003,195.19500000000005H115.01700000000004L110.174,190.351Z"},{id:"liberecky",name:"Liberecký kraj",polygon:"M401.151,127.863L407.197,134.697L405.314,142.608L408.51500000000004,150.33100000000002L407.00900000000007,154.47500000000002L410.77600000000007,158.24200000000002L407.76200000000006,164.269L413.41300000000007,169.92000000000002V173.49900000000002L403.8070000000001,175.57100000000003L399.28600000000006,171.05000000000004L393.44700000000006,174.81700000000004V179.90200000000004L388.55000000000007,182.72700000000003L385.34800000000007,177.83000000000004L374.42300000000006,174.06300000000005L367.2660000000001,178.77200000000005L359.3550000000001,173.68600000000004L354.2700000000001,171.42600000000004V167.65900000000005L347.1590000000001,164.03300000000004L343.9100000000001,160.78400000000005H338.35300000000007L334.11500000000007,156.54600000000005L329.97100000000006,163.70300000000006L323.37800000000004,171.04900000000006L321.11800000000005,168.78900000000007L315.4680000000001,169.73000000000008V174.43900000000008L307.5570000000001,180.84300000000007L298.13900000000007,183.10300000000007L295.8790000000001,176.32200000000006L284.9510000000001,176.88700000000006L279.8670000000001,170.67000000000004L272.7080000000001,158.80700000000004V153.72100000000003L269.3180000000001,148.25900000000004L273.3200000000001,141.52500000000003L277.5110000000001,137.33400000000003V133.47300000000004L282.3140000000001,128.67000000000004L280.8070000000001,122.64300000000004L287.96400000000006,123.58500000000004L294.36800000000005,126.03400000000003L295.31000000000006,118.68800000000003L301.71200000000005,116.45200000000003L318.557,121.61400000000003L323.99100000000004,113.73500000000003L334.04300000000006,113.19200000000002C334.04300000000006,113.19200000000002,340.65700000000004,114.42000000000002,341.1070000000001,114.00700000000002S342.7370000000001,104.49800000000002,342.7370000000001,104.49800000000002L344.9100000000001,95.80400000000002L340.29100000000005,91.18500000000002L344.63800000000003,86.83800000000002H351.973L355.777,90.37000000000002L361.75399999999996,87.11000000000001L365.01399999999995,92.81600000000002L369.90399999999994,90.64300000000001L375.33799999999997,97.16400000000002L372.893,102.59800000000001L375.60999999999996,111.02000000000001L380.364,115.77400000000002L384.847,120.25700000000002L385.39,128.13600000000002L387.156,129.90200000000002L393.269,124.33200000000002L401.151,127.863Z"},{id:"kralovehradecky",name:"Královéhradecký kraj",polygon:"M401.151,127.863L409.302,128.406L418.267,132.481L420.984,135.198L427.233,136.285L434.025,132.481L436.74199999999996,138.458L440.54599999999994,146.88H445.43699999999995L452.49999999999994,144.16299999999998L456.84799999999996,152.313L456.304,157.475L463.097,152.585L467.715,147.966L475.86499999999995,153.67100000000002L479.941,153.943L481.299,147.966H492.438L506.294,161.55L501.67499999999995,165.626L500.58799999999997,173.505L491.895,176.765L479.397,186.546L480.484,191.98L487.54699999999997,200.13L493.525,197.142L496.921,200.53799999999998V204.749L500.792,208.62099999999998L505.75,208.01L511.456,218.063L519.335,224.31199999999998L520.693,234.36499999999998L523.521,240.16899999999998L515.126,236.41H511.171V241.87199999999999L501.18899999999996,244.69699999999997L495.91499999999996,249.97099999999998L494.21999999999997,257.128H484.80199999999996L478.21,259.01099999999997L473.972,254.77299999999997L466.71999999999997,250.53499999999997L462.57599999999996,246.39099999999996H458.05499999999995V239.8L454.66399999999993,236.41000000000003L446.9409999999999,236.22200000000004L440.5369999999999,239.42400000000004L437.24099999999993,242.72000000000003C437.24099999999993,242.72000000000003,434.0929999999999,241.62100000000004,433.75699999999995,241.49500000000003S433.75699999999995,235.84400000000002,433.75699999999995,235.84400000000002H428.85999999999996L423.77399999999994,242.81300000000002H414.1689999999999L408.8949999999999,239.799L398.95899999999995,248.40300000000002L390.24799999999993,250.347L392.31999999999994,243.566L384.22099999999995,239.234L388.17699999999996,232.26500000000001L386.10499999999996,227.74400000000003L387.23499999999996,222.09400000000002L385.917,216.06600000000003L382.90299999999996,213.05200000000002L377.441,216.63100000000003L368.58799999999997,215.50100000000003V210.22700000000003L363.78499999999997,205.42400000000004L357.47499999999997,204.20000000000005L356.157,199.49100000000004L360.96,194.68800000000005L358.041,186.68300000000005L359.736,181.97400000000005L356.911,177.45300000000006L359.357,173.68500000000006L367.26800000000003,178.77100000000007L374.425,174.06200000000007L385.35,177.82900000000006L388.552,182.72600000000006L393.449,179.90100000000007V174.81600000000006L399.288,171.04900000000006L403.809,175.57000000000005C403.809,175.57000000000005,413.317,173.60500000000005,413.415,173.49800000000005S413.415,169.91900000000004,413.415,169.91900000000004L407.764,164.26800000000003L410.778,158.24100000000004L407.011,154.47400000000005L408.517,150.33000000000004L405.316,142.60700000000003L407.19899999999996,134.69600000000003L401.151,127.863Z"},{id:"moravskoslezsky",name:"Moravskoslezský kraj",polygon:"M617.687,214.259V224.60999999999999H612.75L608.25,229.10999999999999L598.25,235.60999999999999V242.60999999999999L594.75,246.10999999999999L597.5,251.10999999999999L591.5,259.61L589.75,267.36L593.875,271.485L590,277.86L588.75,285.36L592.375,288.985H597V294.36H603.25L607.25,298.36L614.5,296.36L620.5,305.11H625.5L629.75,307.36L634.75,303.86L639,308.11L644.5,305.11L652,309.11L650.25,317.61H658L660.75,325.11L666.75,327.11L671.875,332.235L671.25,337.36H676.75L679.5,342.86H685.25L690.25,347.11L698.25,343.86L706.25,345.61L712.25,349.86H717.5L723,347.61L723.5,352.11L730.5,356.61L731.75,362.36L737.5,365.046L742.119,363.416L750.813,352.005L750.269,345.484L756.247,342.767L761.1379999999999,345.212L769.2879999999999,343.582L776.0799999999999,345.755L784.7739999999999,341.68L786.1319999999998,335.159L781.2409999999999,321.847L778.2529999999998,312.60999999999996H771.1889999999999L768.2009999999998,309.078L759.2349999999998,306.361L757.8769999999998,299.84L751.8989999999999,286.799L755.1599999999999,279.736L752.4429999999999,278.649L749.7259999999999,271.042L744.2919999999999,275.11699999999996L733.6959999999999,269.14L724.4579999999999,267.782L721.1979999999999,273.488L716.3069999999999,265.338L710.0579999999999,262.34900000000005L707.0699999999998,258.5450000000001L701.6359999999999,262.07700000000006L696.2019999999999,259.63200000000006L696.6089999999999,252.97500000000005L692.127,248.49300000000005L685.606,249.58000000000004L682.345,258.00200000000007C682.345,258.00200000000007,676.811,263.9390000000001,676.096,264.2510000000001S670.255,264.11500000000007,670.255,264.11500000000007L664.686,258.54600000000005L658.98,256.64400000000006L655.992,247.67900000000006L650.8299999999999,240.34300000000005L644.9879999999999,241.02300000000005L639.419,235.45300000000006V230.83400000000006L649.1999999999999,227.84500000000006L656.943,224.04100000000005V219.55800000000005L651.917,214.53200000000004L653.004,209.09800000000004L647.57,203.66400000000004L644.8520000000001,209.09800000000004L640.777,213.17300000000003L627.1930000000001,212.08600000000004L617.687,214.259Z"},{id:"pardubicky",name:"Pardubický kraj",polygon:"M555.742,226.757L554,234.944L549.333,243.944L547.833,252.611L550.333,256.77799999999996L540.333,264.94499999999994V270.6119999999999L542.833,276.44499999999994L543.833,283.77899999999994L546.25,286.1959999999999L540.667,289.94499999999994L544.8330000000001,298.1119999999999L549.3330000000001,306.94499999999994V311.44499999999994L555.0000000000001,313.94499999999994V321.44499999999994L549.8330000000001,326.6119999999999V332.2789999999999L546.667,336.7789999999999L540.5,330.6119999999999H522L518.333,336.6119999999999H506L502.75,339.8619999999999L495.5,332.6119999999999L489.667,332.44499999999994L482.5,323.94499999999994L468.5,320.77899999999994L466,314.94499999999994L459.333,315.1119999999999V311.44499999999994L452.5,315.77899999999994V321.44499999999994L444.833,318.77899999999994L441,316.77899999999994V311.77899999999994L435.833,309.11199999999997L431.833,308.27899999999994L427.66700000000003,303.94499999999994L420.66700000000003,299.44499999999994L411,299.61L402,292.61L400,284.444L403.667,280.77700000000004L404.167,273.11000000000007L397.33399999999995,269.77700000000004L397.167,265.11000000000007L391.667,263.27700000000004L386,259.944L386.833,255.27700000000002L390.24800000000005,250.347L398.95900000000006,248.40300000000002L408.89500000000004,239.79900000000004L414.16900000000004,242.81300000000005C414.16900000000004,242.81300000000005,423.29800000000006,243.14300000000006,423.77400000000006,242.81300000000005S428.86000000000007,235.84400000000005,428.86000000000007,235.84400000000005H433.75700000000006V241.49500000000006L437.24100000000004,242.72000000000006L440.53700000000003,239.42400000000006L446.94100000000003,236.22200000000007L454.66400000000004,236.41000000000005L458.05500000000006,239.80000000000004V246.39300000000003H462.5760000000001L466.7200000000001,250.53700000000003L473.9720000000001,254.77500000000003L478.2100000000001,259.01300000000003L484.8020000000001,257.13000000000005H494.2200000000001L495.9150000000001,249.97300000000004L501.1890000000001,244.69900000000004L511.17100000000005,241.87400000000005V236.41200000000006H515.1260000000001L523.5210000000001,240.17100000000005L535.9080000000001,247.13600000000005L542.9710000000001,240.07300000000006L546.6390000000001,236.40500000000006L546.5030000000002,230.02000000000007L555.742,226.757Z"},{id:"vysocina",name:"Kraj Vysočina",polygon:"M502.75,339.86L495.5,332.61L489.667,332.44300000000004L482.5,323.94300000000004L468.5,320.77700000000004L466,314.94300000000004L459.333,315.11V311.44300000000004L452.5,315.77700000000004C452.5,315.77700000000004,452.729,321.25500000000005,452.5,321.44300000000004S444.833,318.77700000000004,444.833,318.77700000000004L441,316.77700000000004V311.77700000000004L435.833,309.11000000000007L431.833,308.27700000000004L427.66700000000003,303.94300000000004L420.66700000000003,299.44300000000004L411,299.61L402,292.61L396,293.11L392,296.36L392.5,302.36L386.75,302.11L384.75,306.36H379L375.75,309.36L371.75,308.36L368.75,310.11L368,314.11L364.25,317.61L364,323.36L371.75,327.11C371.75,327.11,372.032,331.726,372,332.36S367.25,335.61,367.25,335.61L363.5,333.86L361.25,337.86L356.75,337.11L350.25,337.36L342,336.11L336.5,341.61L336.25,346.86L333.5,349.61L335.25,356.11L335,363.11L332,366.86V374.61L334.75,380.36L333.5,384.86L336.25,389.86L341.75,394.36L346.5,391.61L352.75,395.11L355.5,400.11L361,405.11L366,402.36L374,405.36L381.25,404.11L384.5,408.61L383.5,414.11L390,420.61L398.5,420.86L405.5,419.36L412.75,425.11L412,429.61L406.75,430.61L405.75,436.86L400.25,442.61L404.75,446.61L408.75,452.86L413.25,450.61L417.75,453.86L423.25,448.11L429,452.36L432,446.61L435.5,445.61L438.75,441.11H444.75L447,435.86L454,432.86L460.25,437.11L464.5,434.61L470.25,436.36L475.75,433.61L478.75,428.86L483.5,430.11L485.75,424.61L489.5,423.61L491.25,420.36L486.75,417.11L485.25,412.11L491,408.61L485.75,403.36L487,398.86L491,395.61L487.25,390.86L491.75,387.86L493.5,383.86L503.25,379.36L502.75,370.36L500.75,365.36L503,360.61L500.25,354.11L505.25,351.11L506.75,348.11L501.5,344.61L502.75,339.86Z"},{id:"jihomoravsky",name:"Jihomoravský kraj",polygon:"M546.667,336.777L540.5,330.61H522L518.333,336.61H506L502.75,339.86L501.5,344.61L506.75,348.11L505.25,351.11L500.25,354.11L503,360.61L500.75,365.36L502.75,370.36L503.25,379.36L493.5,383.86L491.75,387.86L487.25,390.86L491,395.61L487,398.86L485.75,403.36L491,408.61L485.25,412.11L486.75,417.11C486.75,417.11,491.12,419.697,491.25,420.36S489.5,423.61,489.5,423.61L485.75,424.61L483.5,430.11L478.75,428.86L475.75,433.61L470.25,436.36L464.5,434.61L460.25,437.11L454,432.86L447,435.86L444.75,441.11H438.75L435.5,445.61L432,446.61L429,452.36L423.25,448.11L417.75,453.86L413.25,450.61L408.75,452.86L405.5,459.86L409.03,460.409L416.09299999999996,461.223L424.24299999999994,467.201L432.39399999999995,468.016L434.29499999999996,464.755L442.44499999999994,465.57L454.3999999999999,473.992L455.7579999999999,478.34000000000003L471.51499999999993,487.033L490.26199999999994,486.762L504.66099999999994,489.479L510.09499999999997,483.22999999999996L513.083,475.08L523.136,474.537L527.483,479.155L537.536,480.78499999999997L538.8939999999999,487.578L544.0559999999999,485.947L553.0219999999999,491.382L561.1719999999999,489.208L566.6059999999999,492.74L569.3229999999999,506.324L573.6709999999998,505.781L576.9309999999998,494.37L579.1049999999998,486.491L588.0709999999998,475.351L590.2439999999998,467.74399999999997L593.5049999999998,466.38599999999997L598.3949999999998,461.496H603.5569999999998L613.6099999999998,465.84299999999996L622.3039999999997,471.00499999999994L630.9969999999997,465.29999999999995L638.3329999999997,470.18999999999994L644.8539999999997,468.55999999999995L651.6459999999997,462.3109999999999L649.4999999999998,459.61099999999993L645.7499999999998,454.11099999999993L639.4999999999998,452.61099999999993L639.2499999999998,448.61099999999993L633.4999999999998,445.11099999999993L626.9999999999998,447.61099999999993L621.4999999999998,442.61099999999993L616.2499999999998,442.86099999999993L616.4999999999998,437.11099999999993L608.2499999999998,436.11099999999993L601.9999999999998,432.61099999999993L602.7499999999998,426.86099999999993L599.7499999999998,423.61099999999993L591.4999999999998,426.86099999999993L587.7499999999998,422.11099999999993L592.7499999999998,416.86099999999993L597.2499999999998,413.86099999999993L597.9999999999998,408.86099999999993L591.2499999999998,408.11099999999993L592.7499999999998,402.86099999999993L589.7499999999998,397.61099999999993L593.3749999999998,392.73599999999993L589.4999999999998,386.11099999999993V382.36099999999993L586.3749999999998,379.23599999999993H579.5L578.5,373.86099999999993V368.86099999999993L572.5,365.11099999999993V360.61099999999993L568.625,356.73599999999993L566.25,351.61099999999993H560.75L557,355.86099999999993L561,359.86099999999993L565.125,363.98599999999993L560.75,370.36099999999993L557.75,373.36099999999993L550.25,367.86099999999993L553.75,364.36099999999993L549.25,358.36099999999993V351.86099999999993L554.25,346.61099999999993L548.5,344.86099999999993L543.75,344.61099999999993L546.667,336.777Z"},{id:"olomoucky",name:"Olomoucký kraj",polygon:"M617.687,214.259V224.60999999999999H612.75L608.25,229.10999999999999L598.25,235.60999999999999V242.60999999999999L594.75,246.10999999999999L597.5,251.10999999999999L591.5,259.61L589.75,267.36L593.875,271.485L590,277.86L588.75,285.36L592.375,288.985H597V294.36H603.25L607.25,298.36L614.5,296.36L620.5,305.11H625.5L629.75,307.36L634.75,303.86L639,308.11L644.5,305.11L652,309.11L650.25,317.61H658L660.75,325.11L666.75,327.11L671.875,332.235L671.25,337.36H676.75L679.5,342.86L675.375,346.985L671.25,345.61L664.5,350.11V357.11L659.125,362.485L653.25,355.86L645.5,358.61L647.75,365.36L641,367.36L636,365.86L631.875,369.985L629,375.11L625.125,371.235L618.5,371.61L616.5,366.86L612.5,370.36L614.75,378.11L611,381.86L608.75,385.36L599.25,386.86L593.375,392.735L589.5,386.11V382.36L586.375,379.235H579.5L578.5,373.86V368.86L572.5,365.11V360.61L568.625,356.735L566.25,351.61H560.75L557,355.86L561,359.86L565.125,363.985L560.75,370.36L557.75,373.36L550.25,367.86L553.75,364.36L549.25,358.36V351.86L554.25,346.61L548.5,344.86L543.75,344.61L546.667,336.777L549.8330000000001,332.277V326.61L555.0000000000001,321.44300000000004V313.94300000000004L549.3330000000001,311.44300000000004V306.94300000000004L544.8330000000001,298.11L540.667,289.94300000000004L546.25,286.194L543.833,283.77700000000004L542.833,276.44300000000004L540.333,270.61V264.94300000000004C540.333,264.94300000000004,550.221,257.03200000000004,550.333,256.77600000000007S547.833,252.60900000000007,547.833,252.60900000000007L549.333,243.94200000000006L554,234.94200000000006L555.742,226.75500000000005L564.435,222.67900000000006H571.228L571.4989999999999,214.25700000000006L567.016,209.77400000000006L562.534,208.00800000000007L559.273,196.32500000000007L552.21,192.52100000000007L556.014,185.18600000000006L564.436,187.35900000000007L570.6850000000001,188.71700000000007L581.009,191.70600000000007L585.22,195.9170000000001L592.4200000000001,193.60700000000008L593.5070000000001,200.67100000000008L599.2120000000001,205.0180000000001H607.9060000000001L610.0790000000001,212.62500000000009L617.687,214.259Z"},{id:"zlinsky",name:"Zlínský kraj",polygon:"M737.5,365.046L731.75,362.36L730.5,356.61L723.5,352.11L723,347.61L717.5,349.86H712.25L706.25,345.61L698.25,343.86L690.25,347.11L685.25,342.86H679.5L675.375,346.985L671.25,345.61L664.5,350.11V357.11C664.5,357.11,660.164,361.736,659.125,362.485S653.25,355.86,653.25,355.86L645.5,358.61L647.75,365.36L641,367.36L636,365.86L631.875,369.985L629,375.11L625.125,371.235L618.5,371.61L616.5,366.86L612.5,370.36L614.75,378.11L611,381.86L608.75,385.36L599.25,386.86L593.375,392.735L589.75,397.61L592.75,402.86L591.25,408.11L598,408.86L597.25,413.86L592.75,416.86L587.75,422.11L591.5,426.86L599.75,423.61L602.75,426.86L602,432.61L608.25,436.11L616.5,437.11L616.25,442.86L621.5,442.61L627,447.61L633.5,445.11L639.25,448.61L639.5,452.61L645.75,454.11L649.5,459.61L651.646,462.31H656.5369999999999L663.6009999999999,457.963L668.4909999999999,449.54L678.5439999999999,448.997L680.3099999999998,435.548L684.2489999999998,431.609L697.2899999999998,430.522L704.0829999999999,420.742V409.06L707.6139999999998,399.007V391.944L713.0479999999998,383.522L720.3839999999998,381.62L727.1759999999998,378.088L733.1539999999998,375.915L737.5,365.046Z"}]})},void 0,!1,void 0,!1,void 0,void 0,void 0),c=i({render:function(){var e=this.$createElement;return(this._self._c||e)("div",[this._t("default",null,{views:this.views,isCurrentView:this.isCurrentView,toggleView:this.toggleView,showView:this.showView,setView:this.setView})],2)},staticRenderFns:[]},void 0,{props:{initial:{default:()=>{}},syncLocation:{type:Boolean,default:!1},locationParam:{type:String,default:"view"}},data(){return{views:this.$props.initial,queryParams:null,keyListener:e=>{27===e.keyCode&&this.hideAllViews()}}},watch:{routeView(){new URLSearchParams(window.location.search)}},methods:{setView(e,t,L=!1){if(L&&Object.keys(this.$data.views).forEach(t=>{t!==e&&this.setView(t,!1)}),this.$data.views[e]=t,t&&this.$props.syncLocation){const t=new URLSearchParams(window.location.search);t.set(this.$props.locationParam,e),history.pushState(null,null,"?"+t.toString())}},setViews(e){this.$data.views=Object.assign({},this.data.views,e)},toggleView(e){this.setView(e,!this.isCurrentView(e),!0)},showView(e){this.setView(e,!0,!0)},isCurrentView(e){return this.$data.views[e]},hideAllViews(){Object.keys(this.$data.views).forEach(e=>{this.setView(e,!1)})}},mounted(){if(window.addEventListener("keydown",this.$data.keyListener),this.$props.syncLocation){const e=new URLSearchParams(window.location.search).get(this.$props.locationParam);e&&-1!==Object.keys(this.$data.views).indexOf(e)&&this.showView(e)}},destroyed(){window.removeEventListener("keydown",this.$data.keyListener)}},void 0,!1,void 0,!1,void 0,void 0,void 0),h=i({},void 0,{components:{UiNavbarSubitem:i({render:function(){var e=this,t=e.$createElement,L=e._self._c||t;return L("div",{on:{mouseenter:e.onMouseEnter,mouseleave:e.onMouseLeave}},[e.href?e._e():L("span",{staticClass:"navbar-menu__link navbar-menu__submenu-toggle",class:{"navbar-menu__submenu-toggle--open":e.show},on:{click:e.handleClick}},[e._v(e._s(e.label))]),e._v(" "),e.href?L("a",{staticClass:"navbar-menu__link navbar-menu__submenu-toggle",class:{"navbar-menu__submenu-toggle--open":e.show},attrs:{href:e.href},on:{click:function(t){return t.preventDefault(),e.handleClick(t)}}},[e._v(e._s(e.label))]):e._e(),e._v(" "),L("div",{staticClass:"navbar-menu__submenu-wrap",class:{"navbar-menu__submenu-wrap--show":e.show}},[e._t("default")],2)])},staticRenderFns:[]},void 0,{data:()=>({show:!1}),props:{href:{type:String},label:{type:String}},methods:{onMouseEnter(){s()&&(this.$data.show=!0)},onMouseLeave(){s()&&(this.$data.show=!1)},handleClick(e){(s()||this.$data.show)&&this.$props.href&&(window.location=this.$props.href),this.$data.show=!this.$data.show}}},void 0,!1,void 0,!1,void 0,void 0,void 0)},data(){return{isLgScreenSize:s(),show:!1,resizeHandler:()=>{this.$data.isLgScreenSize=s()}}},mounted(){this.$nextTick(()=>{window.addEventListener("resize",this.$data.resizeHandler)})},beforeDestroy(){window.removeEventListener("resize",this.$data.resizeHandler)}},void 0,void 0,void 0,!1,void 0,void 0,void 0),p=i({render:function(){var e=this,t=e.$createElement,L=e._self._c||t;return L("div",{class:[e.wrapperclass,"footer-collapsible"]},[L("span",{staticClass:"text-xl uppercase text-white footer-collapsible__toggle",class:[e.labelclass,e.show?"footer-collapsible__toggle--open":""],on:{click:e.handleClick}},[e._v(e._s(e.label))]),e._v(" "),L("div",{directives:[{name:"show",rawName:"v-show",value:e.show||e.isLgScreenSize,expression:"show || isLgScreenSize"}],class:[e.slotwrapperclass]},[e._t("default")],2)])},staticRenderFns:[]},void 0,{data(){return{isLgScreenSize:s(),show:!1,resizeHandler:()=>{this.$data.isLgScreenSize=s()}}},props:{href:{type:String},label:{type:String},labelclass:{type:String},wrapperclass:{type:String,default:""},slotwrapperclass:{type:String,default:""}},methods:{handleClick(){this.$props.href&&(window.location=this.$props.href),this.$data.show=!this.$data.show}},mounted(){this.$nextTick(()=>{window.addEventListener("resize",this.$data.resizeHandler)})},beforeDestroy(){window.removeEventListener("resize",this.$data.resizeHandler)}},void 0,!1,void 0,!1,void 0,void 0,void 0),m=i({render:function(){var e=this,t=e.$createElement,L=e._self._c||t;return L("div",{staticClass:"flip-clock"},[e._l(e.timeData,(function(t){return[L("span",{directives:[{name:"show",rawName:"v-show",value:t.show,expression:"data.show"}],key:t.label,staticClass:"flip-clock__piece",attrs:{id:t.elementId}},[L("span",{class:["flip-clock__card","flip-card",e.clockClasses]},[L("b",{staticClass:"flip-card__top"},[e._v(e._s(e._f("twoDigits")(t.current)))]),e._v(" "),L("b",{staticClass:"flip-card__bottom",attrs:{"data-value":e._f("twoDigits")(t.current)}}),e._v(" "),L("b",{staticClass:"flip-card__back",attrs:{"data-value":e._f("twoDigits")(t.previous)}}),e._v(" "),L("b",{staticClass:"flip-card__back-bottom",attrs:{"data-value":e._f("twoDigits")(t.previous)}})]),e._v(" "),L("span",{class:["flip-clock__slot","font-alt",e.slotClasses]},[e._v(e._s(t.label))])])]}))],2)},staticRenderFns:[]},void 0,{name:"flipCountdown",props:{deadline:{type:String},stop:{type:Boolean},units:{type:String,default:"days,hours,minutes,seconds"},clockClasses:{type:String,default:"text-6xl"},slotClasses:{type:String,default:"text-3xl"}},data(){const e=Math.floor(100*Math.random());return{now:Math.trunc((new Date).getTime()/1e3),date:null,interval:null,diff:0,show:!1,timeData:[{current:0,previous:0,label:"Dní",elementId:"flip-card-days-"+e,show:-1!==this.units.indexOf("days")},{current:0,previous:0,label:"Hod",elementId:"flip-card-hours-"+e,show:-1!==this.units.indexOf("hours")},{current:0,previous:0,label:"Min",elementId:"flip-card-minutes-"+e,show:-1!==this.units.indexOf("minutes")},{current:0,previous:0,label:"Sek",elementId:"flip-card-seconds-"+e,show:-1!==this.units.indexOf("seconds")}]}},created(){if(!this.deadline)throw new Error("Missing props 'deadline'");const e=this.deadline;if(this.date=Math.trunc(Date.parse(e.replace(/-/g,"/"))/1e3),!this.date)throw new Error("Invalid props value, correct the 'deadline'");this.interval=setInterval(()=>{this.now=Math.trunc((new Date).getTime()/1e3)},1e3)},mounted(){0!==this.diff&&(this.show=!0)},watch:{deadline(e,t){const L=this.deadline;if(this.date=Math.trunc(Date.parse(L.replace(/-/g,"/"))/1e3),!this.date)throw new Error("Invalid props value, correct the 'deadline'")},now(e){this.diff=this.date-e,this.diff<=0||this.stop?(this.diff=0,this.updateTime(3,0)):(this.updateTime(0,Math.trunc(this.diff/60/60/24)),this.updateTime(1,Math.trunc(this.diff/60/60)%24),this.updateTime(2,Math.trunc(this.diff/60)%60),this.updateTime(3,Math.trunc(this.diff)%60))}},filters:{twoDigits:e=>e.toString().length<=1?"0"+e.toString():e.toString()},methods:{updateTime(e,t){if(e>=this.timeData.length||void 0===t)return;const s=()=>{const s=this.timeData[e],i=t<0?0:t,a=document.querySelector("#"+s.elementId);if(i!==s.current&&(s.previous=s.current,s.current=i,a&&(a.classList.remove("flip"),a.offsetWidth,a.classList.add("flip")),0===e)){const e=a.querySelectorAll("span b");e&&L(e,e=>{const L=e.classList[0];if(t/1e3>=1){if(!L.includes("-4digits")){const t=L+"-4digits";e.classList.add(t),e.classList.remove(L)}}else if(L.includes("-4digits")){const t=L.replace("-4digits","");e.classList.add(t),e.classList.remove(L)}})}};window.requestAnimationFrame?this.frame=requestAnimationFrame(s):s()}},beforeDestroy(){window.cancelAnimationFrame&&cancelAnimationFrame(this.frame)},destroyed(){clearInterval(interval)}},void 0,!1,void 0,!1,void 0,void 0,void 0),v=i({},void 0,{mounted(){console.log("Mounted generic Vue app in ",this.$el)}},void 0,void 0,void 0,!1,void 0,void 0,void 0);function w(t){return Object.assign({},t.dataset),((t,L)=>{new e({el:t,components:{UiApp:v}})})(t)}e.component("ui-calendar-renderer",a),e.component("ui-calendar-dummy-provider",r),e.component("ui-calendar-google-provider",d),e.component("ui-region-map",l),e.component("ui-view-provider",c),e.component("ui-navbar",h),e.component("ui-footer-collapsible",p),e.component("ui-flip-clock",m),document.addEventListener("DOMContentLoaded",(function(e){L(document.querySelectorAll(".__js-root"),w)}))}(Vue); diff --git a/uniweb/static/uniweb/assets/js/vue.2.6.11.js b/uniweb/static/uniweb/assets/js/vue.2.6.11.js new file mode 100644 index 00000000..e22cf130 --- /dev/null +++ b/uniweb/static/uniweb/assets/js/vue.2.6.11.js @@ -0,0 +1,11965 @@ +/*! + * Vue.js v2.6.11 + * (c) 2014-2019 Evan You + * Released under the MIT License. + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : + typeof define === 'function' && define.amd ? define(factory) : + (global = global || self, global.Vue = factory()); +}(this, function () { 'use strict'; + + /* */ + + var emptyObject = Object.freeze({}); + + // These helpers produce better VM code in JS engines due to their + // explicitness and function inlining. + function isUndef (v) { + return v === undefined || v === null + } + + function isDef (v) { + return v !== undefined && v !== null + } + + function isTrue (v) { + return v === true + } + + function isFalse (v) { + return v === false + } + + /** + * Check if value is primitive. + */ + function isPrimitive (value) { + return ( + typeof value === 'string' || + typeof value === 'number' || + // $flow-disable-line + typeof value === 'symbol' || + typeof value === 'boolean' + ) + } + + /** + * Quick object check - this is primarily used to tell + * Objects from primitive values when we know the value + * is a JSON-compliant type. + */ + function isObject (obj) { + return obj !== null && typeof obj === 'object' + } + + /** + * Get the raw type string of a value, e.g., [object Object]. + */ + var _toString = Object.prototype.toString; + + function toRawType (value) { + return _toString.call(value).slice(8, -1) + } + + /** + * Strict object type check. Only returns true + * for plain JavaScript objects. + */ + function isPlainObject (obj) { + return _toString.call(obj) === '[object Object]' + } + + function isRegExp (v) { + return _toString.call(v) === '[object RegExp]' + } + + /** + * Check if val is a valid array index. + */ + function isValidArrayIndex (val) { + var n = parseFloat(String(val)); + return n >= 0 && Math.floor(n) === n && isFinite(val) + } + + function isPromise (val) { + return ( + isDef(val) && + typeof val.then === 'function' && + typeof val.catch === 'function' + ) + } + + /** + * Convert a value to a string that is actually rendered. + */ + function toString (val) { + return val == null + ? '' + : Array.isArray(val) || (isPlainObject(val) && val.toString === _toString) + ? JSON.stringify(val, null, 2) + : String(val) + } + + /** + * Convert an input value to a number for persistence. + * If the conversion fails, return original string. + */ + function toNumber (val) { + var n = parseFloat(val); + return isNaN(n) ? val : n + } + + /** + * Make a map and return a function for checking if a key + * is in that map. + */ + function makeMap ( + str, + expectsLowerCase + ) { + var map = Object.create(null); + var list = str.split(','); + for (var i = 0; i < list.length; i++) { + map[list[i]] = true; + } + return expectsLowerCase + ? function (val) { return map[val.toLowerCase()]; } + : function (val) { return map[val]; } + } + + /** + * Check if a tag is a built-in tag. + */ + var isBuiltInTag = makeMap('slot,component', true); + + /** + * Check if an attribute is a reserved attribute. + */ + var isReservedAttribute = makeMap('key,ref,slot,slot-scope,is'); + + /** + * Remove an item from an array. + */ + function remove (arr, item) { + if (arr.length) { + var index = arr.indexOf(item); + if (index > -1) { + return arr.splice(index, 1) + } + } + } + + /** + * Check whether an object has the property. + */ + var hasOwnProperty = Object.prototype.hasOwnProperty; + function hasOwn (obj, key) { + return hasOwnProperty.call(obj, key) + } + + /** + * Create a cached version of a pure function. + */ + function cached (fn) { + var cache = Object.create(null); + return (function cachedFn (str) { + var hit = cache[str]; + return hit || (cache[str] = fn(str)) + }) + } + + /** + * Camelize a hyphen-delimited string. + */ + var camelizeRE = /-(\w)/g; + var camelize = cached(function (str) { + return str.replace(camelizeRE, function (_, c) { return c ? c.toUpperCase() : ''; }) + }); + + /** + * Capitalize a string. + */ + var capitalize = cached(function (str) { + return str.charAt(0).toUpperCase() + str.slice(1) + }); + + /** + * Hyphenate a camelCase string. + */ + var hyphenateRE = /\B([A-Z])/g; + var hyphenate = cached(function (str) { + return str.replace(hyphenateRE, '-$1').toLowerCase() + }); + + /** + * Simple bind polyfill for environments that do not support it, + * e.g., PhantomJS 1.x. Technically, we don't need this anymore + * since native bind is now performant enough in most browsers. + * But removing it would mean breaking code that was able to run in + * PhantomJS 1.x, so this must be kept for backward compatibility. + */ + + /* istanbul ignore next */ + function polyfillBind (fn, ctx) { + function boundFn (a) { + var l = arguments.length; + return l + ? l > 1 + ? fn.apply(ctx, arguments) + : fn.call(ctx, a) + : fn.call(ctx) + } + + boundFn._length = fn.length; + return boundFn + } + + function nativeBind (fn, ctx) { + return fn.bind(ctx) + } + + var bind = Function.prototype.bind + ? nativeBind + : polyfillBind; + + /** + * Convert an Array-like object to a real Array. + */ + function toArray (list, start) { + start = start || 0; + var i = list.length - start; + var ret = new Array(i); + while (i--) { + ret[i] = list[i + start]; + } + return ret + } + + /** + * Mix properties into target object. + */ + function extend (to, _from) { + for (var key in _from) { + to[key] = _from[key]; + } + return to + } + + /** + * Merge an Array of Objects into a single Object. + */ + function toObject (arr) { + var res = {}; + for (var i = 0; i < arr.length; i++) { + if (arr[i]) { + extend(res, arr[i]); + } + } + return res + } + + /* eslint-disable no-unused-vars */ + + /** + * Perform no operation. + * Stubbing args to make Flow happy without leaving useless transpiled code + * with ...rest (https://flow.org/blog/2017/05/07/Strict-Function-Call-Arity/). + */ + function noop (a, b, c) {} + + /** + * Always return false. + */ + var no = function (a, b, c) { return false; }; + + /* eslint-enable no-unused-vars */ + + /** + * Return the same value. + */ + var identity = function (_) { return _; }; + + /** + * Generate a string containing static keys from compiler modules. + */ + function genStaticKeys (modules) { + return modules.reduce(function (keys, m) { + return keys.concat(m.staticKeys || []) + }, []).join(',') + } + + /** + * Check if two values are loosely equal - that is, + * if they are plain objects, do they have the same shape? + */ + function looseEqual (a, b) { + if (a === b) { return true } + var isObjectA = isObject(a); + var isObjectB = isObject(b); + if (isObjectA && isObjectB) { + try { + var isArrayA = Array.isArray(a); + var isArrayB = Array.isArray(b); + if (isArrayA && isArrayB) { + return a.length === b.length && a.every(function (e, i) { + return looseEqual(e, b[i]) + }) + } else if (a instanceof Date && b instanceof Date) { + return a.getTime() === b.getTime() + } else if (!isArrayA && !isArrayB) { + var keysA = Object.keys(a); + var keysB = Object.keys(b); + return keysA.length === keysB.length && keysA.every(function (key) { + return looseEqual(a[key], b[key]) + }) + } else { + /* istanbul ignore next */ + return false + } + } catch (e) { + /* istanbul ignore next */ + return false + } + } else if (!isObjectA && !isObjectB) { + return String(a) === String(b) + } else { + return false + } + } + + /** + * Return the first index at which a loosely equal value can be + * found in the array (if value is a plain object, the array must + * contain an object of the same shape), or -1 if it is not present. + */ + function looseIndexOf (arr, val) { + for (var i = 0; i < arr.length; i++) { + if (looseEqual(arr[i], val)) { return i } + } + return -1 + } + + /** + * Ensure a function is called only once. + */ + function once (fn) { + var called = false; + return function () { + if (!called) { + called = true; + fn.apply(this, arguments); + } + } + } + + var SSR_ATTR = 'data-server-rendered'; + + var ASSET_TYPES = [ + 'component', + 'directive', + 'filter' + ]; + + var LIFECYCLE_HOOKS = [ + 'beforeCreate', + 'created', + 'beforeMount', + 'mounted', + 'beforeUpdate', + 'updated', + 'beforeDestroy', + 'destroyed', + 'activated', + 'deactivated', + 'errorCaptured', + 'serverPrefetch' + ]; + + /* */ + + + + var config = ({ + /** + * Option merge strategies (used in core/util/options) + */ + // $flow-disable-line + optionMergeStrategies: Object.create(null), + + /** + * Whether to suppress warnings. + */ + silent: false, + + /** + * Show production mode tip message on boot? + */ + productionTip: "development" !== 'production', + + /** + * Whether to enable devtools + */ + devtools: "development" !== 'production', + + /** + * Whether to record perf + */ + performance: false, + + /** + * Error handler for watcher errors + */ + errorHandler: null, + + /** + * Warn handler for watcher warns + */ + warnHandler: null, + + /** + * Ignore certain custom elements + */ + ignoredElements: [], + + /** + * Custom user key aliases for v-on + */ + // $flow-disable-line + keyCodes: Object.create(null), + + /** + * Check if a tag is reserved so that it cannot be registered as a + * component. This is platform-dependent and may be overwritten. + */ + isReservedTag: no, + + /** + * Check if an attribute is reserved so that it cannot be used as a component + * prop. This is platform-dependent and may be overwritten. + */ + isReservedAttr: no, + + /** + * Check if a tag is an unknown element. + * Platform-dependent. + */ + isUnknownElement: no, + + /** + * Get the namespace of an element + */ + getTagNamespace: noop, + + /** + * Parse the real tag name for the specific platform. + */ + parsePlatformTagName: identity, + + /** + * Check if an attribute must be bound using property, e.g. value + * Platform-dependent. + */ + mustUseProp: no, + + /** + * Perform updates asynchronously. Intended to be used by Vue Test Utils + * This will significantly reduce performance if set to false. + */ + async: true, + + /** + * Exposed for legacy reasons + */ + _lifecycleHooks: LIFECYCLE_HOOKS + }); + + /* */ + + /** + * unicode letters used for parsing html tags, component names and property paths. + * using https://www.w3.org/TR/html53/semantics-scripting.html#potentialcustomelementname + * skipping \u10000-\uEFFFF due to it freezing up PhantomJS + */ + var unicodeRegExp = /a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/; + + /** + * Check if a string starts with $ or _ + */ + function isReserved (str) { + var c = (str + '').charCodeAt(0); + return c === 0x24 || c === 0x5F + } + + /** + * Define a property. + */ + function def (obj, key, val, enumerable) { + Object.defineProperty(obj, key, { + value: val, + enumerable: !!enumerable, + writable: true, + configurable: true + }); + } + + /** + * Parse simple path. + */ + var bailRE = new RegExp(("[^" + (unicodeRegExp.source) + ".$_\\d]")); + function parsePath (path) { + if (bailRE.test(path)) { + return + } + var segments = path.split('.'); + return function (obj) { + for (var i = 0; i < segments.length; i++) { + if (!obj) { return } + obj = obj[segments[i]]; + } + return obj + } + } + + /* */ + + // can we use __proto__? + var hasProto = '__proto__' in {}; + + // Browser environment sniffing + var inBrowser = typeof window !== 'undefined'; + var inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform; + var weexPlatform = inWeex && WXEnvironment.platform.toLowerCase(); + var UA = inBrowser && window.navigator.userAgent.toLowerCase(); + var isIE = UA && /msie|trident/.test(UA); + var isIE9 = UA && UA.indexOf('msie 9.0') > 0; + var isEdge = UA && UA.indexOf('edge/') > 0; + var isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android'); + var isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios'); + var isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge; + var isPhantomJS = UA && /phantomjs/.test(UA); + var isFF = UA && UA.match(/firefox\/(\d+)/); + + // Firefox has a "watch" function on Object.prototype... + var nativeWatch = ({}).watch; + + var supportsPassive = false; + if (inBrowser) { + try { + var opts = {}; + Object.defineProperty(opts, 'passive', ({ + get: function get () { + /* istanbul ignore next */ + supportsPassive = true; + } + })); // https://github.com/facebook/flow/issues/285 + window.addEventListener('test-passive', null, opts); + } catch (e) {} + } + + // this needs to be lazy-evaled because vue may be required before + // vue-server-renderer can set VUE_ENV + var _isServer; + var isServerRendering = function () { + if (_isServer === undefined) { + /* istanbul ignore if */ + if (!inBrowser && !inWeex && typeof global !== 'undefined') { + // detect presence of vue-server-renderer and avoid + // Webpack shimming the process + _isServer = global['process'] && global['process'].env.VUE_ENV === 'server'; + } else { + _isServer = false; + } + } + return _isServer + }; + + // detect devtools + var devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__; + + /* istanbul ignore next */ + function isNative (Ctor) { + return typeof Ctor === 'function' && /native code/.test(Ctor.toString()) + } + + var hasSymbol = + typeof Symbol !== 'undefined' && isNative(Symbol) && + typeof Reflect !== 'undefined' && isNative(Reflect.ownKeys); + + var _Set; + /* istanbul ignore if */ // $flow-disable-line + if (typeof Set !== 'undefined' && isNative(Set)) { + // use native Set when available. + _Set = Set; + } else { + // a non-standard Set polyfill that only works with primitive keys. + _Set = /*@__PURE__*/(function () { + function Set () { + this.set = Object.create(null); + } + Set.prototype.has = function has (key) { + return this.set[key] === true + }; + Set.prototype.add = function add (key) { + this.set[key] = true; + }; + Set.prototype.clear = function clear () { + this.set = Object.create(null); + }; + + return Set; + }()); + } + + /* */ + + var warn = noop; + var tip = noop; + var generateComponentTrace = (noop); // work around flow check + var formatComponentName = (noop); + + { + var hasConsole = typeof console !== 'undefined'; + var classifyRE = /(?:^|[-_])(\w)/g; + var classify = function (str) { return str + .replace(classifyRE, function (c) { return c.toUpperCase(); }) + .replace(/[-_]/g, ''); }; + + warn = function (msg, vm) { + var trace = vm ? generateComponentTrace(vm) : ''; + + if (config.warnHandler) { + config.warnHandler.call(null, msg, vm, trace); + } else if (hasConsole && (!config.silent)) { + console.error(("[Vue warn]: " + msg + trace)); + } + }; + + tip = function (msg, vm) { + if (hasConsole && (!config.silent)) { + console.warn("[Vue tip]: " + msg + ( + vm ? generateComponentTrace(vm) : '' + )); + } + }; + + formatComponentName = function (vm, includeFile) { + if (vm.$root === vm) { + return '<Root>' + } + var options = typeof vm === 'function' && vm.cid != null + ? vm.options + : vm._isVue + ? vm.$options || vm.constructor.options + : vm; + var name = options.name || options._componentTag; + var file = options.__file; + if (!name && file) { + var match = file.match(/([^/\\]+)\.vue$/); + name = match && match[1]; + } + + return ( + (name ? ("<" + (classify(name)) + ">") : "<Anonymous>") + + (file && includeFile !== false ? (" at " + file) : '') + ) + }; + + var repeat = function (str, n) { + var res = ''; + while (n) { + if (n % 2 === 1) { res += str; } + if (n > 1) { str += str; } + n >>= 1; + } + return res + }; + + generateComponentTrace = function (vm) { + if (vm._isVue && vm.$parent) { + var tree = []; + var currentRecursiveSequence = 0; + while (vm) { + if (tree.length > 0) { + var last = tree[tree.length - 1]; + if (last.constructor === vm.constructor) { + currentRecursiveSequence++; + vm = vm.$parent; + continue + } else if (currentRecursiveSequence > 0) { + tree[tree.length - 1] = [last, currentRecursiveSequence]; + currentRecursiveSequence = 0; + } + } + tree.push(vm); + vm = vm.$parent; + } + return '\n\nfound in\n\n' + tree + .map(function (vm, i) { return ("" + (i === 0 ? '---> ' : repeat(' ', 5 + i * 2)) + (Array.isArray(vm) + ? ((formatComponentName(vm[0])) + "... (" + (vm[1]) + " recursive calls)") + : formatComponentName(vm))); }) + .join('\n') + } else { + return ("\n\n(found in " + (formatComponentName(vm)) + ")") + } + }; + } + + /* */ + + var uid = 0; + + /** + * A dep is an observable that can have multiple + * directives subscribing to it. + */ + var Dep = function Dep () { + this.id = uid++; + this.subs = []; + }; + + Dep.prototype.addSub = function addSub (sub) { + this.subs.push(sub); + }; + + Dep.prototype.removeSub = function removeSub (sub) { + remove(this.subs, sub); + }; + + Dep.prototype.depend = function depend () { + if (Dep.target) { + Dep.target.addDep(this); + } + }; + + Dep.prototype.notify = function notify () { + // stabilize the subscriber list first + var subs = this.subs.slice(); + if (!config.async) { + // subs aren't sorted in scheduler if not running async + // we need to sort them now to make sure they fire in correct + // order + subs.sort(function (a, b) { return a.id - b.id; }); + } + for (var i = 0, l = subs.length; i < l; i++) { + subs[i].update(); + } + }; + + // The current target watcher being evaluated. + // This is globally unique because only one watcher + // can be evaluated at a time. + Dep.target = null; + var targetStack = []; + + function pushTarget (target) { + targetStack.push(target); + Dep.target = target; + } + + function popTarget () { + targetStack.pop(); + Dep.target = targetStack[targetStack.length - 1]; + } + + /* */ + + var VNode = function VNode ( + tag, + data, + children, + text, + elm, + context, + componentOptions, + asyncFactory + ) { + this.tag = tag; + this.data = data; + this.children = children; + this.text = text; + this.elm = elm; + this.ns = undefined; + this.context = context; + this.fnContext = undefined; + this.fnOptions = undefined; + this.fnScopeId = undefined; + this.key = data && data.key; + this.componentOptions = componentOptions; + this.componentInstance = undefined; + this.parent = undefined; + this.raw = false; + this.isStatic = false; + this.isRootInsert = true; + this.isComment = false; + this.isCloned = false; + this.isOnce = false; + this.asyncFactory = asyncFactory; + this.asyncMeta = undefined; + this.isAsyncPlaceholder = false; + }; + + var prototypeAccessors = { child: { configurable: true } }; + + // DEPRECATED: alias for componentInstance for backwards compat. + /* istanbul ignore next */ + prototypeAccessors.child.get = function () { + return this.componentInstance + }; + + Object.defineProperties( VNode.prototype, prototypeAccessors ); + + var createEmptyVNode = function (text) { + if ( text === void 0 ) text = ''; + + var node = new VNode(); + node.text = text; + node.isComment = true; + return node + }; + + function createTextVNode (val) { + return new VNode(undefined, undefined, undefined, String(val)) + } + + // optimized shallow clone + // used for static nodes and slot nodes because they may be reused across + // multiple renders, cloning them avoids errors when DOM manipulations rely + // on their elm reference. + function cloneVNode (vnode) { + var cloned = new VNode( + vnode.tag, + vnode.data, + // #7975 + // clone children array to avoid mutating original in case of cloning + // a child. + vnode.children && vnode.children.slice(), + vnode.text, + vnode.elm, + vnode.context, + vnode.componentOptions, + vnode.asyncFactory + ); + cloned.ns = vnode.ns; + cloned.isStatic = vnode.isStatic; + cloned.key = vnode.key; + cloned.isComment = vnode.isComment; + cloned.fnContext = vnode.fnContext; + cloned.fnOptions = vnode.fnOptions; + cloned.fnScopeId = vnode.fnScopeId; + cloned.asyncMeta = vnode.asyncMeta; + cloned.isCloned = true; + return cloned + } + + /* + * not type checking this file because flow doesn't play well with + * dynamically accessing methods on Array prototype + */ + + var arrayProto = Array.prototype; + var arrayMethods = Object.create(arrayProto); + + var methodsToPatch = [ + 'push', + 'pop', + 'shift', + 'unshift', + 'splice', + 'sort', + 'reverse' + ]; + + /** + * Intercept mutating methods and emit events + */ + methodsToPatch.forEach(function (method) { + // cache original method + var original = arrayProto[method]; + def(arrayMethods, method, function mutator () { + var args = [], len = arguments.length; + while ( len-- ) args[ len ] = arguments[ len ]; + + var result = original.apply(this, args); + var ob = this.__ob__; + var inserted; + switch (method) { + case 'push': + case 'unshift': + inserted = args; + break + case 'splice': + inserted = args.slice(2); + break + } + if (inserted) { ob.observeArray(inserted); } + // notify change + ob.dep.notify(); + return result + }); + }); + + /* */ + + var arrayKeys = Object.getOwnPropertyNames(arrayMethods); + + /** + * In some cases we may want to disable observation inside a component's + * update computation. + */ + var shouldObserve = true; + + function toggleObserving (value) { + shouldObserve = value; + } + + /** + * Observer class that is attached to each observed + * object. Once attached, the observer converts the target + * object's property keys into getter/setters that + * collect dependencies and dispatch updates. + */ + var Observer = function Observer (value) { + this.value = value; + this.dep = new Dep(); + this.vmCount = 0; + def(value, '__ob__', this); + if (Array.isArray(value)) { + if (hasProto) { + protoAugment(value, arrayMethods); + } else { + copyAugment(value, arrayMethods, arrayKeys); + } + this.observeArray(value); + } else { + this.walk(value); + } + }; + + /** + * Walk through all properties and convert them into + * getter/setters. This method should only be called when + * value type is Object. + */ + Observer.prototype.walk = function walk (obj) { + var keys = Object.keys(obj); + for (var i = 0; i < keys.length; i++) { + defineReactive$$1(obj, keys[i]); + } + }; + + /** + * Observe a list of Array items. + */ + Observer.prototype.observeArray = function observeArray (items) { + for (var i = 0, l = items.length; i < l; i++) { + observe(items[i]); + } + }; + + // helpers + + /** + * Augment a target Object or Array by intercepting + * the prototype chain using __proto__ + */ + function protoAugment (target, src) { + /* eslint-disable no-proto */ + target.__proto__ = src; + /* eslint-enable no-proto */ + } + + /** + * Augment a target Object or Array by defining + * hidden properties. + */ + /* istanbul ignore next */ + function copyAugment (target, src, keys) { + for (var i = 0, l = keys.length; i < l; i++) { + var key = keys[i]; + def(target, key, src[key]); + } + } + + /** + * Attempt to create an observer instance for a value, + * returns the new observer if successfully observed, + * or the existing observer if the value already has one. + */ + function observe (value, asRootData) { + if (!isObject(value) || value instanceof VNode) { + return + } + var ob; + if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) { + ob = value.__ob__; + } else if ( + shouldObserve && + !isServerRendering() && + (Array.isArray(value) || isPlainObject(value)) && + Object.isExtensible(value) && + !value._isVue + ) { + ob = new Observer(value); + } + if (asRootData && ob) { + ob.vmCount++; + } + return ob + } + + /** + * Define a reactive property on an Object. + */ + function defineReactive$$1 ( + obj, + key, + val, + customSetter, + shallow + ) { + var dep = new Dep(); + + var property = Object.getOwnPropertyDescriptor(obj, key); + if (property && property.configurable === false) { + return + } + + // cater for pre-defined getter/setters + var getter = property && property.get; + var setter = property && property.set; + if ((!getter || setter) && arguments.length === 2) { + val = obj[key]; + } + + var childOb = !shallow && observe(val); + Object.defineProperty(obj, key, { + enumerable: true, + configurable: true, + get: function reactiveGetter () { + var value = getter ? getter.call(obj) : val; + if (Dep.target) { + dep.depend(); + if (childOb) { + childOb.dep.depend(); + if (Array.isArray(value)) { + dependArray(value); + } + } + } + return value + }, + set: function reactiveSetter (newVal) { + var value = getter ? getter.call(obj) : val; + /* eslint-disable no-self-compare */ + if (newVal === value || (newVal !== newVal && value !== value)) { + return + } + /* eslint-enable no-self-compare */ + if (customSetter) { + customSetter(); + } + // #7981: for accessor properties without setter + if (getter && !setter) { return } + if (setter) { + setter.call(obj, newVal); + } else { + val = newVal; + } + childOb = !shallow && observe(newVal); + dep.notify(); + } + }); + } + + /** + * Set a property on an object. Adds the new property and + * triggers change notification if the property doesn't + * already exist. + */ + function set (target, key, val) { + if (isUndef(target) || isPrimitive(target) + ) { + warn(("Cannot set reactive property on undefined, null, or primitive value: " + ((target)))); + } + if (Array.isArray(target) && isValidArrayIndex(key)) { + target.length = Math.max(target.length, key); + target.splice(key, 1, val); + return val + } + if (key in target && !(key in Object.prototype)) { + target[key] = val; + return val + } + var ob = (target).__ob__; + if (target._isVue || (ob && ob.vmCount)) { + warn( + 'Avoid adding reactive properties to a Vue instance or its root $data ' + + 'at runtime - declare it upfront in the data option.' + ); + return val + } + if (!ob) { + target[key] = val; + return val + } + defineReactive$$1(ob.value, key, val); + ob.dep.notify(); + return val + } + + /** + * Delete a property and trigger change if necessary. + */ + function del (target, key) { + if (isUndef(target) || isPrimitive(target) + ) { + warn(("Cannot delete reactive property on undefined, null, or primitive value: " + ((target)))); + } + if (Array.isArray(target) && isValidArrayIndex(key)) { + target.splice(key, 1); + return + } + var ob = (target).__ob__; + if (target._isVue || (ob && ob.vmCount)) { + warn( + 'Avoid deleting properties on a Vue instance or its root $data ' + + '- just set it to null.' + ); + return + } + if (!hasOwn(target, key)) { + return + } + delete target[key]; + if (!ob) { + return + } + ob.dep.notify(); + } + + /** + * Collect dependencies on array elements when the array is touched, since + * we cannot intercept array element access like property getters. + */ + function dependArray (value) { + for (var e = (void 0), i = 0, l = value.length; i < l; i++) { + e = value[i]; + e && e.__ob__ && e.__ob__.dep.depend(); + if (Array.isArray(e)) { + dependArray(e); + } + } + } + + /* */ + + /** + * Option overwriting strategies are functions that handle + * how to merge a parent option value and a child option + * value into the final value. + */ + var strats = config.optionMergeStrategies; + + /** + * Options with restrictions + */ + { + strats.el = strats.propsData = function (parent, child, vm, key) { + if (!vm) { + warn( + "option \"" + key + "\" can only be used during instance " + + 'creation with the `new` keyword.' + ); + } + return defaultStrat(parent, child) + }; + } + + /** + * Helper that recursively merges two data objects together. + */ + function mergeData (to, from) { + if (!from) { return to } + var key, toVal, fromVal; + + var keys = hasSymbol + ? Reflect.ownKeys(from) + : Object.keys(from); + + for (var i = 0; i < keys.length; i++) { + key = keys[i]; + // in case the object is already observed... + if (key === '__ob__') { continue } + toVal = to[key]; + fromVal = from[key]; + if (!hasOwn(to, key)) { + set(to, key, fromVal); + } else if ( + toVal !== fromVal && + isPlainObject(toVal) && + isPlainObject(fromVal) + ) { + mergeData(toVal, fromVal); + } + } + return to + } + + /** + * Data + */ + function mergeDataOrFn ( + parentVal, + childVal, + vm + ) { + if (!vm) { + // in a Vue.extend merge, both should be functions + if (!childVal) { + return parentVal + } + if (!parentVal) { + return childVal + } + // when parentVal & childVal are both present, + // we need to return a function that returns the + // merged result of both functions... no need to + // check if parentVal is a function here because + // it has to be a function to pass previous merges. + return function mergedDataFn () { + return mergeData( + typeof childVal === 'function' ? childVal.call(this, this) : childVal, + typeof parentVal === 'function' ? parentVal.call(this, this) : parentVal + ) + } + } else { + return function mergedInstanceDataFn () { + // instance merge + var instanceData = typeof childVal === 'function' + ? childVal.call(vm, vm) + : childVal; + var defaultData = typeof parentVal === 'function' + ? parentVal.call(vm, vm) + : parentVal; + if (instanceData) { + return mergeData(instanceData, defaultData) + } else { + return defaultData + } + } + } + } + + strats.data = function ( + parentVal, + childVal, + vm + ) { + if (!vm) { + if (childVal && typeof childVal !== 'function') { + warn( + 'The "data" option should be a function ' + + 'that returns a per-instance value in component ' + + 'definitions.', + vm + ); + + return parentVal + } + return mergeDataOrFn(parentVal, childVal) + } + + return mergeDataOrFn(parentVal, childVal, vm) + }; + + /** + * Hooks and props are merged as arrays. + */ + function mergeHook ( + parentVal, + childVal + ) { + var res = childVal + ? parentVal + ? parentVal.concat(childVal) + : Array.isArray(childVal) + ? childVal + : [childVal] + : parentVal; + return res + ? dedupeHooks(res) + : res + } + + function dedupeHooks (hooks) { + var res = []; + for (var i = 0; i < hooks.length; i++) { + if (res.indexOf(hooks[i]) === -1) { + res.push(hooks[i]); + } + } + return res + } + + LIFECYCLE_HOOKS.forEach(function (hook) { + strats[hook] = mergeHook; + }); + + /** + * Assets + * + * When a vm is present (instance creation), we need to do + * a three-way merge between constructor options, instance + * options and parent options. + */ + function mergeAssets ( + parentVal, + childVal, + vm, + key + ) { + var res = Object.create(parentVal || null); + if (childVal) { + assertObjectType(key, childVal, vm); + return extend(res, childVal) + } else { + return res + } + } + + ASSET_TYPES.forEach(function (type) { + strats[type + 's'] = mergeAssets; + }); + + /** + * Watchers. + * + * Watchers hashes should not overwrite one + * another, so we merge them as arrays. + */ + strats.watch = function ( + parentVal, + childVal, + vm, + key + ) { + // work around Firefox's Object.prototype.watch... + if (parentVal === nativeWatch) { parentVal = undefined; } + if (childVal === nativeWatch) { childVal = undefined; } + /* istanbul ignore if */ + if (!childVal) { return Object.create(parentVal || null) } + { + assertObjectType(key, childVal, vm); + } + if (!parentVal) { return childVal } + var ret = {}; + extend(ret, parentVal); + for (var key$1 in childVal) { + var parent = ret[key$1]; + var child = childVal[key$1]; + if (parent && !Array.isArray(parent)) { + parent = [parent]; + } + ret[key$1] = parent + ? parent.concat(child) + : Array.isArray(child) ? child : [child]; + } + return ret + }; + + /** + * Other object hashes. + */ + strats.props = + strats.methods = + strats.inject = + strats.computed = function ( + parentVal, + childVal, + vm, + key + ) { + if (childVal && "development" !== 'production') { + assertObjectType(key, childVal, vm); + } + if (!parentVal) { return childVal } + var ret = Object.create(null); + extend(ret, parentVal); + if (childVal) { extend(ret, childVal); } + return ret + }; + strats.provide = mergeDataOrFn; + + /** + * Default strategy. + */ + var defaultStrat = function (parentVal, childVal) { + return childVal === undefined + ? parentVal + : childVal + }; + + /** + * Validate component names + */ + function checkComponents (options) { + for (var key in options.components) { + validateComponentName(key); + } + } + + function validateComponentName (name) { + if (!new RegExp(("^[a-zA-Z][\\-\\.0-9_" + (unicodeRegExp.source) + "]*$")).test(name)) { + warn( + 'Invalid component name: "' + name + '". Component names ' + + 'should conform to valid custom element name in html5 specification.' + ); + } + if (isBuiltInTag(name) || config.isReservedTag(name)) { + warn( + 'Do not use built-in or reserved HTML elements as component ' + + 'id: ' + name + ); + } + } + + /** + * Ensure all props option syntax are normalized into the + * Object-based format. + */ + function normalizeProps (options, vm) { + var props = options.props; + if (!props) { return } + var res = {}; + var i, val, name; + if (Array.isArray(props)) { + i = props.length; + while (i--) { + val = props[i]; + if (typeof val === 'string') { + name = camelize(val); + res[name] = { type: null }; + } else { + warn('props must be strings when using array syntax.'); + } + } + } else if (isPlainObject(props)) { + for (var key in props) { + val = props[key]; + name = camelize(key); + res[name] = isPlainObject(val) + ? val + : { type: val }; + } + } else { + warn( + "Invalid value for option \"props\": expected an Array or an Object, " + + "but got " + (toRawType(props)) + ".", + vm + ); + } + options.props = res; + } + + /** + * Normalize all injections into Object-based format + */ + function normalizeInject (options, vm) { + var inject = options.inject; + if (!inject) { return } + var normalized = options.inject = {}; + if (Array.isArray(inject)) { + for (var i = 0; i < inject.length; i++) { + normalized[inject[i]] = { from: inject[i] }; + } + } else if (isPlainObject(inject)) { + for (var key in inject) { + var val = inject[key]; + normalized[key] = isPlainObject(val) + ? extend({ from: key }, val) + : { from: val }; + } + } else { + warn( + "Invalid value for option \"inject\": expected an Array or an Object, " + + "but got " + (toRawType(inject)) + ".", + vm + ); + } + } + + /** + * Normalize raw function directives into object format. + */ + function normalizeDirectives (options) { + var dirs = options.directives; + if (dirs) { + for (var key in dirs) { + var def$$1 = dirs[key]; + if (typeof def$$1 === 'function') { + dirs[key] = { bind: def$$1, update: def$$1 }; + } + } + } + } + + function assertObjectType (name, value, vm) { + if (!isPlainObject(value)) { + warn( + "Invalid value for option \"" + name + "\": expected an Object, " + + "but got " + (toRawType(value)) + ".", + vm + ); + } + } + + /** + * Merge two option objects into a new one. + * Core utility used in both instantiation and inheritance. + */ + function mergeOptions ( + parent, + child, + vm + ) { + { + checkComponents(child); + } + + if (typeof child === 'function') { + child = child.options; + } + + normalizeProps(child, vm); + normalizeInject(child, vm); + normalizeDirectives(child); + + // Apply extends and mixins on the child options, + // but only if it is a raw options object that isn't + // the result of another mergeOptions call. + // Only merged options has the _base property. + if (!child._base) { + if (child.extends) { + parent = mergeOptions(parent, child.extends, vm); + } + if (child.mixins) { + for (var i = 0, l = child.mixins.length; i < l; i++) { + parent = mergeOptions(parent, child.mixins[i], vm); + } + } + } + + var options = {}; + var key; + for (key in parent) { + mergeField(key); + } + for (key in child) { + if (!hasOwn(parent, key)) { + mergeField(key); + } + } + function mergeField (key) { + var strat = strats[key] || defaultStrat; + options[key] = strat(parent[key], child[key], vm, key); + } + return options + } + + /** + * Resolve an asset. + * This function is used because child instances need access + * to assets defined in its ancestor chain. + */ + function resolveAsset ( + options, + type, + id, + warnMissing + ) { + /* istanbul ignore if */ + if (typeof id !== 'string') { + return + } + var assets = options[type]; + // check local registration variations first + if (hasOwn(assets, id)) { return assets[id] } + var camelizedId = camelize(id); + if (hasOwn(assets, camelizedId)) { return assets[camelizedId] } + var PascalCaseId = capitalize(camelizedId); + if (hasOwn(assets, PascalCaseId)) { return assets[PascalCaseId] } + // fallback to prototype chain + var res = assets[id] || assets[camelizedId] || assets[PascalCaseId]; + if (warnMissing && !res) { + warn( + 'Failed to resolve ' + type.slice(0, -1) + ': ' + id, + options + ); + } + return res + } + + /* */ + + + + function validateProp ( + key, + propOptions, + propsData, + vm + ) { + var prop = propOptions[key]; + var absent = !hasOwn(propsData, key); + var value = propsData[key]; + // boolean casting + var booleanIndex = getTypeIndex(Boolean, prop.type); + if (booleanIndex > -1) { + if (absent && !hasOwn(prop, 'default')) { + value = false; + } else if (value === '' || value === hyphenate(key)) { + // only cast empty string / same name to boolean if + // boolean has higher priority + var stringIndex = getTypeIndex(String, prop.type); + if (stringIndex < 0 || booleanIndex < stringIndex) { + value = true; + } + } + } + // check default value + if (value === undefined) { + value = getPropDefaultValue(vm, prop, key); + // since the default value is a fresh copy, + // make sure to observe it. + var prevShouldObserve = shouldObserve; + toggleObserving(true); + observe(value); + toggleObserving(prevShouldObserve); + } + { + assertProp(prop, key, value, vm, absent); + } + return value + } + + /** + * Get the default value of a prop. + */ + function getPropDefaultValue (vm, prop, key) { + // no default, return undefined + if (!hasOwn(prop, 'default')) { + return undefined + } + var def = prop.default; + // warn against non-factory defaults for Object & Array + if (isObject(def)) { + warn( + 'Invalid default value for prop "' + key + '": ' + + 'Props with type Object/Array must use a factory function ' + + 'to return the default value.', + vm + ); + } + // the raw prop value was also undefined from previous render, + // return previous default value to avoid unnecessary watcher trigger + if (vm && vm.$options.propsData && + vm.$options.propsData[key] === undefined && + vm._props[key] !== undefined + ) { + return vm._props[key] + } + // call factory function for non-Function types + // a value is Function if its prototype is function even across different execution context + return typeof def === 'function' && getType(prop.type) !== 'Function' + ? def.call(vm) + : def + } + + /** + * Assert whether a prop is valid. + */ + function assertProp ( + prop, + name, + value, + vm, + absent + ) { + if (prop.required && absent) { + warn( + 'Missing required prop: "' + name + '"', + vm + ); + return + } + if (value == null && !prop.required) { + return + } + var type = prop.type; + var valid = !type || type === true; + var expectedTypes = []; + if (type) { + if (!Array.isArray(type)) { + type = [type]; + } + for (var i = 0; i < type.length && !valid; i++) { + var assertedType = assertType(value, type[i]); + expectedTypes.push(assertedType.expectedType || ''); + valid = assertedType.valid; + } + } + + if (!valid) { + warn( + getInvalidTypeMessage(name, value, expectedTypes), + vm + ); + return + } + var validator = prop.validator; + if (validator) { + if (!validator(value)) { + warn( + 'Invalid prop: custom validator check failed for prop "' + name + '".', + vm + ); + } + } + } + + var simpleCheckRE = /^(String|Number|Boolean|Function|Symbol)$/; + + function assertType (value, type) { + var valid; + var expectedType = getType(type); + if (simpleCheckRE.test(expectedType)) { + var t = typeof value; + valid = t === expectedType.toLowerCase(); + // for primitive wrapper objects + if (!valid && t === 'object') { + valid = value instanceof type; + } + } else if (expectedType === 'Object') { + valid = isPlainObject(value); + } else if (expectedType === 'Array') { + valid = Array.isArray(value); + } else { + valid = value instanceof type; + } + return { + valid: valid, + expectedType: expectedType + } + } + + /** + * Use function string name to check built-in types, + * because a simple equality check will fail when running + * across different vms / iframes. + */ + function getType (fn) { + var match = fn && fn.toString().match(/^\s*function (\w+)/); + return match ? match[1] : '' + } + + function isSameType (a, b) { + return getType(a) === getType(b) + } + + function getTypeIndex (type, expectedTypes) { + if (!Array.isArray(expectedTypes)) { + return isSameType(expectedTypes, type) ? 0 : -1 + } + for (var i = 0, len = expectedTypes.length; i < len; i++) { + if (isSameType(expectedTypes[i], type)) { + return i + } + } + return -1 + } + + function getInvalidTypeMessage (name, value, expectedTypes) { + var message = "Invalid prop: type check failed for prop \"" + name + "\"." + + " Expected " + (expectedTypes.map(capitalize).join(', ')); + var expectedType = expectedTypes[0]; + var receivedType = toRawType(value); + var expectedValue = styleValue(value, expectedType); + var receivedValue = styleValue(value, receivedType); + // check if we need to specify expected value + if (expectedTypes.length === 1 && + isExplicable(expectedType) && + !isBoolean(expectedType, receivedType)) { + message += " with value " + expectedValue; + } + message += ", got " + receivedType + " "; + // check if we need to specify received value + if (isExplicable(receivedType)) { + message += "with value " + receivedValue + "."; + } + return message + } + + function styleValue (value, type) { + if (type === 'String') { + return ("\"" + value + "\"") + } else if (type === 'Number') { + return ("" + (Number(value))) + } else { + return ("" + value) + } + } + + function isExplicable (value) { + var explicitTypes = ['string', 'number', 'boolean']; + return explicitTypes.some(function (elem) { return value.toLowerCase() === elem; }) + } + + function isBoolean () { + var args = [], len = arguments.length; + while ( len-- ) args[ len ] = arguments[ len ]; + + return args.some(function (elem) { return elem.toLowerCase() === 'boolean'; }) + } + + /* */ + + function handleError (err, vm, info) { + // Deactivate deps tracking while processing error handler to avoid possible infinite rendering. + // See: https://github.com/vuejs/vuex/issues/1505 + pushTarget(); + try { + if (vm) { + var cur = vm; + while ((cur = cur.$parent)) { + var hooks = cur.$options.errorCaptured; + if (hooks) { + for (var i = 0; i < hooks.length; i++) { + try { + var capture = hooks[i].call(cur, err, vm, info) === false; + if (capture) { return } + } catch (e) { + globalHandleError(e, cur, 'errorCaptured hook'); + } + } + } + } + } + globalHandleError(err, vm, info); + } finally { + popTarget(); + } + } + + function invokeWithErrorHandling ( + handler, + context, + args, + vm, + info + ) { + var res; + try { + res = args ? handler.apply(context, args) : handler.call(context); + if (res && !res._isVue && isPromise(res) && !res._handled) { + res.catch(function (e) { return handleError(e, vm, info + " (Promise/async)"); }); + // issue #9511 + // avoid catch triggering multiple times when nested calls + res._handled = true; + } + } catch (e) { + handleError(e, vm, info); + } + return res + } + + function globalHandleError (err, vm, info) { + if (config.errorHandler) { + try { + return config.errorHandler.call(null, err, vm, info) + } catch (e) { + // if the user intentionally throws the original error in the handler, + // do not log it twice + if (e !== err) { + logError(e, null, 'config.errorHandler'); + } + } + } + logError(err, vm, info); + } + + function logError (err, vm, info) { + { + warn(("Error in " + info + ": \"" + (err.toString()) + "\""), vm); + } + /* istanbul ignore else */ + if ((inBrowser || inWeex) && typeof console !== 'undefined') { + console.error(err); + } else { + throw err + } + } + + /* */ + + var isUsingMicroTask = false; + + var callbacks = []; + var pending = false; + + function flushCallbacks () { + pending = false; + var copies = callbacks.slice(0); + callbacks.length = 0; + for (var i = 0; i < copies.length; i++) { + copies[i](); + } + } + + // Here we have async deferring wrappers using microtasks. + // In 2.5 we used (macro) tasks (in combination with microtasks). + // However, it has subtle problems when state is changed right before repaint + // (e.g. #6813, out-in transitions). + // Also, using (macro) tasks in event handler would cause some weird behaviors + // that cannot be circumvented (e.g. #7109, #7153, #7546, #7834, #8109). + // So we now use microtasks everywhere, again. + // A major drawback of this tradeoff is that there are some scenarios + // where microtasks have too high a priority and fire in between supposedly + // sequential events (e.g. #4521, #6690, which have workarounds) + // or even between bubbling of the same event (#6566). + var timerFunc; + + // The nextTick behavior leverages the microtask queue, which can be accessed + // via either native Promise.then or MutationObserver. + // MutationObserver has wider support, however it is seriously bugged in + // UIWebView in iOS >= 9.3.3 when triggered in touch event handlers. It + // completely stops working after triggering a few times... so, if native + // Promise is available, we will use it: + /* istanbul ignore next, $flow-disable-line */ + if (typeof Promise !== 'undefined' && isNative(Promise)) { + var p = Promise.resolve(); + timerFunc = function () { + p.then(flushCallbacks); + // In problematic UIWebViews, Promise.then doesn't completely break, but + // it can get stuck in a weird state where callbacks are pushed into the + // microtask queue but the queue isn't being flushed, until the browser + // needs to do some other work, e.g. handle a timer. Therefore we can + // "force" the microtask queue to be flushed by adding an empty timer. + if (isIOS) { setTimeout(noop); } + }; + isUsingMicroTask = true; + } else if (!isIE && typeof MutationObserver !== 'undefined' && ( + isNative(MutationObserver) || + // PhantomJS and iOS 7.x + MutationObserver.toString() === '[object MutationObserverConstructor]' + )) { + // Use MutationObserver where native Promise is not available, + // e.g. PhantomJS, iOS7, Android 4.4 + // (#6466 MutationObserver is unreliable in IE11) + var counter = 1; + var observer = new MutationObserver(flushCallbacks); + var textNode = document.createTextNode(String(counter)); + observer.observe(textNode, { + characterData: true + }); + timerFunc = function () { + counter = (counter + 1) % 2; + textNode.data = String(counter); + }; + isUsingMicroTask = true; + } else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) { + // Fallback to setImmediate. + // Technically it leverages the (macro) task queue, + // but it is still a better choice than setTimeout. + timerFunc = function () { + setImmediate(flushCallbacks); + }; + } else { + // Fallback to setTimeout. + timerFunc = function () { + setTimeout(flushCallbacks, 0); + }; + } + + function nextTick (cb, ctx) { + var _resolve; + callbacks.push(function () { + if (cb) { + try { + cb.call(ctx); + } catch (e) { + handleError(e, ctx, 'nextTick'); + } + } else if (_resolve) { + _resolve(ctx); + } + }); + if (!pending) { + pending = true; + timerFunc(); + } + // $flow-disable-line + if (!cb && typeof Promise !== 'undefined') { + return new Promise(function (resolve) { + _resolve = resolve; + }) + } + } + + /* */ + + var mark; + var measure; + + { + var perf = inBrowser && window.performance; + /* istanbul ignore if */ + if ( + perf && + perf.mark && + perf.measure && + perf.clearMarks && + perf.clearMeasures + ) { + mark = function (tag) { return perf.mark(tag); }; + measure = function (name, startTag, endTag) { + perf.measure(name, startTag, endTag); + perf.clearMarks(startTag); + perf.clearMarks(endTag); + // perf.clearMeasures(name) + }; + } + } + + /* not type checking this file because flow doesn't play well with Proxy */ + + var initProxy; + + { + var allowedGlobals = makeMap( + 'Infinity,undefined,NaN,isFinite,isNaN,' + + 'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' + + 'Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,' + + 'require' // for Webpack/Browserify + ); + + var warnNonPresent = function (target, key) { + warn( + "Property or method \"" + key + "\" is not defined on the instance but " + + 'referenced during render. Make sure that this property is reactive, ' + + 'either in the data option, or for class-based components, by ' + + 'initializing the property. ' + + 'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.', + target + ); + }; + + var warnReservedPrefix = function (target, key) { + warn( + "Property \"" + key + "\" must be accessed with \"$data." + key + "\" because " + + 'properties starting with "$" or "_" are not proxied in the Vue instance to ' + + 'prevent conflicts with Vue internals. ' + + 'See: https://vuejs.org/v2/api/#data', + target + ); + }; + + var hasProxy = + typeof Proxy !== 'undefined' && isNative(Proxy); + + if (hasProxy) { + var isBuiltInModifier = makeMap('stop,prevent,self,ctrl,shift,alt,meta,exact'); + config.keyCodes = new Proxy(config.keyCodes, { + set: function set (target, key, value) { + if (isBuiltInModifier(key)) { + warn(("Avoid overwriting built-in modifier in config.keyCodes: ." + key)); + return false + } else { + target[key] = value; + return true + } + } + }); + } + + var hasHandler = { + has: function has (target, key) { + var has = key in target; + var isAllowed = allowedGlobals(key) || + (typeof key === 'string' && key.charAt(0) === '_' && !(key in target.$data)); + if (!has && !isAllowed) { + if (key in target.$data) { warnReservedPrefix(target, key); } + else { warnNonPresent(target, key); } + } + return has || !isAllowed + } + }; + + var getHandler = { + get: function get (target, key) { + if (typeof key === 'string' && !(key in target)) { + if (key in target.$data) { warnReservedPrefix(target, key); } + else { warnNonPresent(target, key); } + } + return target[key] + } + }; + + initProxy = function initProxy (vm) { + if (hasProxy) { + // determine which proxy handler to use + var options = vm.$options; + var handlers = options.render && options.render._withStripped + ? getHandler + : hasHandler; + vm._renderProxy = new Proxy(vm, handlers); + } else { + vm._renderProxy = vm; + } + }; + } + + /* */ + + var seenObjects = new _Set(); + + /** + * Recursively traverse an object to evoke all converted + * getters, so that every nested property inside the object + * is collected as a "deep" dependency. + */ + function traverse (val) { + _traverse(val, seenObjects); + seenObjects.clear(); + } + + function _traverse (val, seen) { + var i, keys; + var isA = Array.isArray(val); + if ((!isA && !isObject(val)) || Object.isFrozen(val) || val instanceof VNode) { + return + } + if (val.__ob__) { + var depId = val.__ob__.dep.id; + if (seen.has(depId)) { + return + } + seen.add(depId); + } + if (isA) { + i = val.length; + while (i--) { _traverse(val[i], seen); } + } else { + keys = Object.keys(val); + i = keys.length; + while (i--) { _traverse(val[keys[i]], seen); } + } + } + + /* */ + + var normalizeEvent = cached(function (name) { + var passive = name.charAt(0) === '&'; + name = passive ? name.slice(1) : name; + var once$$1 = name.charAt(0) === '~'; // Prefixed last, checked first + name = once$$1 ? name.slice(1) : name; + var capture = name.charAt(0) === '!'; + name = capture ? name.slice(1) : name; + return { + name: name, + once: once$$1, + capture: capture, + passive: passive + } + }); + + function createFnInvoker (fns, vm) { + function invoker () { + var arguments$1 = arguments; + + var fns = invoker.fns; + if (Array.isArray(fns)) { + var cloned = fns.slice(); + for (var i = 0; i < cloned.length; i++) { + invokeWithErrorHandling(cloned[i], null, arguments$1, vm, "v-on handler"); + } + } else { + // return handler return value for single handlers + return invokeWithErrorHandling(fns, null, arguments, vm, "v-on handler") + } + } + invoker.fns = fns; + return invoker + } + + function updateListeners ( + on, + oldOn, + add, + remove$$1, + createOnceHandler, + vm + ) { + var name, def$$1, cur, old, event; + for (name in on) { + def$$1 = cur = on[name]; + old = oldOn[name]; + event = normalizeEvent(name); + if (isUndef(cur)) { + warn( + "Invalid handler for event \"" + (event.name) + "\": got " + String(cur), + vm + ); + } else if (isUndef(old)) { + if (isUndef(cur.fns)) { + cur = on[name] = createFnInvoker(cur, vm); + } + if (isTrue(event.once)) { + cur = on[name] = createOnceHandler(event.name, cur, event.capture); + } + add(event.name, cur, event.capture, event.passive, event.params); + } else if (cur !== old) { + old.fns = cur; + on[name] = old; + } + } + for (name in oldOn) { + if (isUndef(on[name])) { + event = normalizeEvent(name); + remove$$1(event.name, oldOn[name], event.capture); + } + } + } + + /* */ + + function mergeVNodeHook (def, hookKey, hook) { + if (def instanceof VNode) { + def = def.data.hook || (def.data.hook = {}); + } + var invoker; + var oldHook = def[hookKey]; + + function wrappedHook () { + hook.apply(this, arguments); + // important: remove merged hook to ensure it's called only once + // and prevent memory leak + remove(invoker.fns, wrappedHook); + } + + if (isUndef(oldHook)) { + // no existing hook + invoker = createFnInvoker([wrappedHook]); + } else { + /* istanbul ignore if */ + if (isDef(oldHook.fns) && isTrue(oldHook.merged)) { + // already a merged invoker + invoker = oldHook; + invoker.fns.push(wrappedHook); + } else { + // existing plain hook + invoker = createFnInvoker([oldHook, wrappedHook]); + } + } + + invoker.merged = true; + def[hookKey] = invoker; + } + + /* */ + + function extractPropsFromVNodeData ( + data, + Ctor, + tag + ) { + // we are only extracting raw values here. + // validation and default values are handled in the child + // component itself. + var propOptions = Ctor.options.props; + if (isUndef(propOptions)) { + return + } + var res = {}; + var attrs = data.attrs; + var props = data.props; + if (isDef(attrs) || isDef(props)) { + for (var key in propOptions) { + var altKey = hyphenate(key); + { + var keyInLowerCase = key.toLowerCase(); + if ( + key !== keyInLowerCase && + attrs && hasOwn(attrs, keyInLowerCase) + ) { + tip( + "Prop \"" + keyInLowerCase + "\" is passed to component " + + (formatComponentName(tag || Ctor)) + ", but the declared prop name is" + + " \"" + key + "\". " + + "Note that HTML attributes are case-insensitive and camelCased " + + "props need to use their kebab-case equivalents when using in-DOM " + + "templates. You should probably use \"" + altKey + "\" instead of \"" + key + "\"." + ); + } + } + checkProp(res, props, key, altKey, true) || + checkProp(res, attrs, key, altKey, false); + } + } + return res + } + + function checkProp ( + res, + hash, + key, + altKey, + preserve + ) { + if (isDef(hash)) { + if (hasOwn(hash, key)) { + res[key] = hash[key]; + if (!preserve) { + delete hash[key]; + } + return true + } else if (hasOwn(hash, altKey)) { + res[key] = hash[altKey]; + if (!preserve) { + delete hash[altKey]; + } + return true + } + } + return false + } + + /* */ + + // The template compiler attempts to minimize the need for normalization by + // statically analyzing the template at compile time. + // + // For plain HTML markup, normalization can be completely skipped because the + // generated render function is guaranteed to return Array<VNode>. There are + // two cases where extra normalization is needed: + + // 1. When the children contains components - because a functional component + // may return an Array instead of a single root. In this case, just a simple + // normalization is needed - if any child is an Array, we flatten the whole + // thing with Array.prototype.concat. It is guaranteed to be only 1-level deep + // because functional components already normalize their own children. + function simpleNormalizeChildren (children) { + for (var i = 0; i < children.length; i++) { + if (Array.isArray(children[i])) { + return Array.prototype.concat.apply([], children) + } + } + return children + } + + // 2. When the children contains constructs that always generated nested Arrays, + // e.g. <template>, <slot>, v-for, or when the children is provided by user + // with hand-written render functions / JSX. In such cases a full normalization + // is needed to cater to all possible types of children values. + function normalizeChildren (children) { + return isPrimitive(children) + ? [createTextVNode(children)] + : Array.isArray(children) + ? normalizeArrayChildren(children) + : undefined + } + + function isTextNode (node) { + return isDef(node) && isDef(node.text) && isFalse(node.isComment) + } + + function normalizeArrayChildren (children, nestedIndex) { + var res = []; + var i, c, lastIndex, last; + for (i = 0; i < children.length; i++) { + c = children[i]; + if (isUndef(c) || typeof c === 'boolean') { continue } + lastIndex = res.length - 1; + last = res[lastIndex]; + // nested + if (Array.isArray(c)) { + if (c.length > 0) { + c = normalizeArrayChildren(c, ((nestedIndex || '') + "_" + i)); + // merge adjacent text nodes + if (isTextNode(c[0]) && isTextNode(last)) { + res[lastIndex] = createTextVNode(last.text + (c[0]).text); + c.shift(); + } + res.push.apply(res, c); + } + } else if (isPrimitive(c)) { + if (isTextNode(last)) { + // merge adjacent text nodes + // this is necessary for SSR hydration because text nodes are + // essentially merged when rendered to HTML strings + res[lastIndex] = createTextVNode(last.text + c); + } else if (c !== '') { + // convert primitive to vnode + res.push(createTextVNode(c)); + } + } else { + if (isTextNode(c) && isTextNode(last)) { + // merge adjacent text nodes + res[lastIndex] = createTextVNode(last.text + c.text); + } else { + // default key for nested array children (likely generated by v-for) + if (isTrue(children._isVList) && + isDef(c.tag) && + isUndef(c.key) && + isDef(nestedIndex)) { + c.key = "__vlist" + nestedIndex + "_" + i + "__"; + } + res.push(c); + } + } + } + return res + } + + /* */ + + function initProvide (vm) { + var provide = vm.$options.provide; + if (provide) { + vm._provided = typeof provide === 'function' + ? provide.call(vm) + : provide; + } + } + + function initInjections (vm) { + var result = resolveInject(vm.$options.inject, vm); + if (result) { + toggleObserving(false); + Object.keys(result).forEach(function (key) { + /* istanbul ignore else */ + { + defineReactive$$1(vm, key, result[key], function () { + warn( + "Avoid mutating an injected value directly since the changes will be " + + "overwritten whenever the provided component re-renders. " + + "injection being mutated: \"" + key + "\"", + vm + ); + }); + } + }); + toggleObserving(true); + } + } + + function resolveInject (inject, vm) { + if (inject) { + // inject is :any because flow is not smart enough to figure out cached + var result = Object.create(null); + var keys = hasSymbol + ? Reflect.ownKeys(inject) + : Object.keys(inject); + + for (var i = 0; i < keys.length; i++) { + var key = keys[i]; + // #6574 in case the inject object is observed... + if (key === '__ob__') { continue } + var provideKey = inject[key].from; + var source = vm; + while (source) { + if (source._provided && hasOwn(source._provided, provideKey)) { + result[key] = source._provided[provideKey]; + break + } + source = source.$parent; + } + if (!source) { + if ('default' in inject[key]) { + var provideDefault = inject[key].default; + result[key] = typeof provideDefault === 'function' + ? provideDefault.call(vm) + : provideDefault; + } else { + warn(("Injection \"" + key + "\" not found"), vm); + } + } + } + return result + } + } + + /* */ + + + + /** + * Runtime helper for resolving raw children VNodes into a slot object. + */ + function resolveSlots ( + children, + context + ) { + if (!children || !children.length) { + return {} + } + var slots = {}; + for (var i = 0, l = children.length; i < l; i++) { + var child = children[i]; + var data = child.data; + // remove slot attribute if the node is resolved as a Vue slot node + if (data && data.attrs && data.attrs.slot) { + delete data.attrs.slot; + } + // named slots should only be respected if the vnode was rendered in the + // same context. + if ((child.context === context || child.fnContext === context) && + data && data.slot != null + ) { + var name = data.slot; + var slot = (slots[name] || (slots[name] = [])); + if (child.tag === 'template') { + slot.push.apply(slot, child.children || []); + } else { + slot.push(child); + } + } else { + (slots.default || (slots.default = [])).push(child); + } + } + // ignore slots that contains only whitespace + for (var name$1 in slots) { + if (slots[name$1].every(isWhitespace)) { + delete slots[name$1]; + } + } + return slots + } + + function isWhitespace (node) { + return (node.isComment && !node.asyncFactory) || node.text === ' ' + } + + /* */ + + function normalizeScopedSlots ( + slots, + normalSlots, + prevSlots + ) { + var res; + var hasNormalSlots = Object.keys(normalSlots).length > 0; + var isStable = slots ? !!slots.$stable : !hasNormalSlots; + var key = slots && slots.$key; + if (!slots) { + res = {}; + } else if (slots._normalized) { + // fast path 1: child component re-render only, parent did not change + return slots._normalized + } else if ( + isStable && + prevSlots && + prevSlots !== emptyObject && + key === prevSlots.$key && + !hasNormalSlots && + !prevSlots.$hasNormal + ) { + // fast path 2: stable scoped slots w/ no normal slots to proxy, + // only need to normalize once + return prevSlots + } else { + res = {}; + for (var key$1 in slots) { + if (slots[key$1] && key$1[0] !== '$') { + res[key$1] = normalizeScopedSlot(normalSlots, key$1, slots[key$1]); + } + } + } + // expose normal slots on scopedSlots + for (var key$2 in normalSlots) { + if (!(key$2 in res)) { + res[key$2] = proxyNormalSlot(normalSlots, key$2); + } + } + // avoriaz seems to mock a non-extensible $scopedSlots object + // and when that is passed down this would cause an error + if (slots && Object.isExtensible(slots)) { + (slots)._normalized = res; + } + def(res, '$stable', isStable); + def(res, '$key', key); + def(res, '$hasNormal', hasNormalSlots); + return res + } + + function normalizeScopedSlot(normalSlots, key, fn) { + var normalized = function () { + var res = arguments.length ? fn.apply(null, arguments) : fn({}); + res = res && typeof res === 'object' && !Array.isArray(res) + ? [res] // single vnode + : normalizeChildren(res); + return res && ( + res.length === 0 || + (res.length === 1 && res[0].isComment) // #9658 + ) ? undefined + : res + }; + // this is a slot using the new v-slot syntax without scope. although it is + // compiled as a scoped slot, render fn users would expect it to be present + // on this.$slots because the usage is semantically a normal slot. + if (fn.proxy) { + Object.defineProperty(normalSlots, key, { + get: normalized, + enumerable: true, + configurable: true + }); + } + return normalized + } + + function proxyNormalSlot(slots, key) { + return function () { return slots[key]; } + } + + /* */ + + /** + * Runtime helper for rendering v-for lists. + */ + function renderList ( + val, + render + ) { + var ret, i, l, keys, key; + if (Array.isArray(val) || typeof val === 'string') { + ret = new Array(val.length); + for (i = 0, l = val.length; i < l; i++) { + ret[i] = render(val[i], i); + } + } else if (typeof val === 'number') { + ret = new Array(val); + for (i = 0; i < val; i++) { + ret[i] = render(i + 1, i); + } + } else if (isObject(val)) { + if (hasSymbol && val[Symbol.iterator]) { + ret = []; + var iterator = val[Symbol.iterator](); + var result = iterator.next(); + while (!result.done) { + ret.push(render(result.value, ret.length)); + result = iterator.next(); + } + } else { + keys = Object.keys(val); + ret = new Array(keys.length); + for (i = 0, l = keys.length; i < l; i++) { + key = keys[i]; + ret[i] = render(val[key], key, i); + } + } + } + if (!isDef(ret)) { + ret = []; + } + (ret)._isVList = true; + return ret + } + + /* */ + + /** + * Runtime helper for rendering <slot> + */ + function renderSlot ( + name, + fallback, + props, + bindObject + ) { + var scopedSlotFn = this.$scopedSlots[name]; + var nodes; + if (scopedSlotFn) { // scoped slot + props = props || {}; + if (bindObject) { + if (!isObject(bindObject)) { + warn( + 'slot v-bind without argument expects an Object', + this + ); + } + props = extend(extend({}, bindObject), props); + } + nodes = scopedSlotFn(props) || fallback; + } else { + nodes = this.$slots[name] || fallback; + } + + var target = props && props.slot; + if (target) { + return this.$createElement('template', { slot: target }, nodes) + } else { + return nodes + } + } + + /* */ + + /** + * Runtime helper for resolving filters + */ + function resolveFilter (id) { + return resolveAsset(this.$options, 'filters', id, true) || identity + } + + /* */ + + function isKeyNotMatch (expect, actual) { + if (Array.isArray(expect)) { + return expect.indexOf(actual) === -1 + } else { + return expect !== actual + } + } + + /** + * Runtime helper for checking keyCodes from config. + * exposed as Vue.prototype._k + * passing in eventKeyName as last argument separately for backwards compat + */ + function checkKeyCodes ( + eventKeyCode, + key, + builtInKeyCode, + eventKeyName, + builtInKeyName + ) { + var mappedKeyCode = config.keyCodes[key] || builtInKeyCode; + if (builtInKeyName && eventKeyName && !config.keyCodes[key]) { + return isKeyNotMatch(builtInKeyName, eventKeyName) + } else if (mappedKeyCode) { + return isKeyNotMatch(mappedKeyCode, eventKeyCode) + } else if (eventKeyName) { + return hyphenate(eventKeyName) !== key + } + } + + /* */ + + /** + * Runtime helper for merging v-bind="object" into a VNode's data. + */ + function bindObjectProps ( + data, + tag, + value, + asProp, + isSync + ) { + if (value) { + if (!isObject(value)) { + warn( + 'v-bind without argument expects an Object or Array value', + this + ); + } else { + if (Array.isArray(value)) { + value = toObject(value); + } + var hash; + var loop = function ( key ) { + if ( + key === 'class' || + key === 'style' || + isReservedAttribute(key) + ) { + hash = data; + } else { + var type = data.attrs && data.attrs.type; + hash = asProp || config.mustUseProp(tag, type, key) + ? data.domProps || (data.domProps = {}) + : data.attrs || (data.attrs = {}); + } + var camelizedKey = camelize(key); + var hyphenatedKey = hyphenate(key); + if (!(camelizedKey in hash) && !(hyphenatedKey in hash)) { + hash[key] = value[key]; + + if (isSync) { + var on = data.on || (data.on = {}); + on[("update:" + key)] = function ($event) { + value[key] = $event; + }; + } + } + }; + + for (var key in value) loop( key ); + } + } + return data + } + + /* */ + + /** + * Runtime helper for rendering static trees. + */ + function renderStatic ( + index, + isInFor + ) { + var cached = this._staticTrees || (this._staticTrees = []); + var tree = cached[index]; + // if has already-rendered static tree and not inside v-for, + // we can reuse the same tree. + if (tree && !isInFor) { + return tree + } + // otherwise, render a fresh tree. + tree = cached[index] = this.$options.staticRenderFns[index].call( + this._renderProxy, + null, + this // for render fns generated for functional component templates + ); + markStatic(tree, ("__static__" + index), false); + return tree + } + + /** + * Runtime helper for v-once. + * Effectively it means marking the node as static with a unique key. + */ + function markOnce ( + tree, + index, + key + ) { + markStatic(tree, ("__once__" + index + (key ? ("_" + key) : "")), true); + return tree + } + + function markStatic ( + tree, + key, + isOnce + ) { + if (Array.isArray(tree)) { + for (var i = 0; i < tree.length; i++) { + if (tree[i] && typeof tree[i] !== 'string') { + markStaticNode(tree[i], (key + "_" + i), isOnce); + } + } + } else { + markStaticNode(tree, key, isOnce); + } + } + + function markStaticNode (node, key, isOnce) { + node.isStatic = true; + node.key = key; + node.isOnce = isOnce; + } + + /* */ + + function bindObjectListeners (data, value) { + if (value) { + if (!isPlainObject(value)) { + warn( + 'v-on without argument expects an Object value', + this + ); + } else { + var on = data.on = data.on ? extend({}, data.on) : {}; + for (var key in value) { + var existing = on[key]; + var ours = value[key]; + on[key] = existing ? [].concat(existing, ours) : ours; + } + } + } + return data + } + + /* */ + + function resolveScopedSlots ( + fns, // see flow/vnode + res, + // the following are added in 2.6 + hasDynamicKeys, + contentHashKey + ) { + res = res || { $stable: !hasDynamicKeys }; + for (var i = 0; i < fns.length; i++) { + var slot = fns[i]; + if (Array.isArray(slot)) { + resolveScopedSlots(slot, res, hasDynamicKeys); + } else if (slot) { + // marker for reverse proxying v-slot without scope on this.$slots + if (slot.proxy) { + slot.fn.proxy = true; + } + res[slot.key] = slot.fn; + } + } + if (contentHashKey) { + (res).$key = contentHashKey; + } + return res + } + + /* */ + + function bindDynamicKeys (baseObj, values) { + for (var i = 0; i < values.length; i += 2) { + var key = values[i]; + if (typeof key === 'string' && key) { + baseObj[values[i]] = values[i + 1]; + } else if (key !== '' && key !== null) { + // null is a special value for explicitly removing a binding + warn( + ("Invalid value for dynamic directive argument (expected string or null): " + key), + this + ); + } + } + return baseObj + } + + // helper to dynamically append modifier runtime markers to event names. + // ensure only append when value is already string, otherwise it will be cast + // to string and cause the type check to miss. + function prependModifier (value, symbol) { + return typeof value === 'string' ? symbol + value : value + } + + /* */ + + function installRenderHelpers (target) { + target._o = markOnce; + target._n = toNumber; + target._s = toString; + target._l = renderList; + target._t = renderSlot; + target._q = looseEqual; + target._i = looseIndexOf; + target._m = renderStatic; + target._f = resolveFilter; + target._k = checkKeyCodes; + target._b = bindObjectProps; + target._v = createTextVNode; + target._e = createEmptyVNode; + target._u = resolveScopedSlots; + target._g = bindObjectListeners; + target._d = bindDynamicKeys; + target._p = prependModifier; + } + + /* */ + + function FunctionalRenderContext ( + data, + props, + children, + parent, + Ctor + ) { + var this$1 = this; + + var options = Ctor.options; + // ensure the createElement function in functional components + // gets a unique context - this is necessary for correct named slot check + var contextVm; + if (hasOwn(parent, '_uid')) { + contextVm = Object.create(parent); + // $flow-disable-line + contextVm._original = parent; + } else { + // the context vm passed in is a functional context as well. + // in this case we want to make sure we are able to get a hold to the + // real context instance. + contextVm = parent; + // $flow-disable-line + parent = parent._original; + } + var isCompiled = isTrue(options._compiled); + var needNormalization = !isCompiled; + + this.data = data; + this.props = props; + this.children = children; + this.parent = parent; + this.listeners = data.on || emptyObject; + this.injections = resolveInject(options.inject, parent); + this.slots = function () { + if (!this$1.$slots) { + normalizeScopedSlots( + data.scopedSlots, + this$1.$slots = resolveSlots(children, parent) + ); + } + return this$1.$slots + }; + + Object.defineProperty(this, 'scopedSlots', ({ + enumerable: true, + get: function get () { + return normalizeScopedSlots(data.scopedSlots, this.slots()) + } + })); + + // support for compiled functional template + if (isCompiled) { + // exposing $options for renderStatic() + this.$options = options; + // pre-resolve slots for renderSlot() + this.$slots = this.slots(); + this.$scopedSlots = normalizeScopedSlots(data.scopedSlots, this.$slots); + } + + if (options._scopeId) { + this._c = function (a, b, c, d) { + var vnode = createElement(contextVm, a, b, c, d, needNormalization); + if (vnode && !Array.isArray(vnode)) { + vnode.fnScopeId = options._scopeId; + vnode.fnContext = parent; + } + return vnode + }; + } else { + this._c = function (a, b, c, d) { return createElement(contextVm, a, b, c, d, needNormalization); }; + } + } + + installRenderHelpers(FunctionalRenderContext.prototype); + + function createFunctionalComponent ( + Ctor, + propsData, + data, + contextVm, + children + ) { + var options = Ctor.options; + var props = {}; + var propOptions = options.props; + if (isDef(propOptions)) { + for (var key in propOptions) { + props[key] = validateProp(key, propOptions, propsData || emptyObject); + } + } else { + if (isDef(data.attrs)) { mergeProps(props, data.attrs); } + if (isDef(data.props)) { mergeProps(props, data.props); } + } + + var renderContext = new FunctionalRenderContext( + data, + props, + children, + contextVm, + Ctor + ); + + var vnode = options.render.call(null, renderContext._c, renderContext); + + if (vnode instanceof VNode) { + return cloneAndMarkFunctionalResult(vnode, data, renderContext.parent, options, renderContext) + } else if (Array.isArray(vnode)) { + var vnodes = normalizeChildren(vnode) || []; + var res = new Array(vnodes.length); + for (var i = 0; i < vnodes.length; i++) { + res[i] = cloneAndMarkFunctionalResult(vnodes[i], data, renderContext.parent, options, renderContext); + } + return res + } + } + + function cloneAndMarkFunctionalResult (vnode, data, contextVm, options, renderContext) { + // #7817 clone node before setting fnContext, otherwise if the node is reused + // (e.g. it was from a cached normal slot) the fnContext causes named slots + // that should not be matched to match. + var clone = cloneVNode(vnode); + clone.fnContext = contextVm; + clone.fnOptions = options; + { + (clone.devtoolsMeta = clone.devtoolsMeta || {}).renderContext = renderContext; + } + if (data.slot) { + (clone.data || (clone.data = {})).slot = data.slot; + } + return clone + } + + function mergeProps (to, from) { + for (var key in from) { + to[camelize(key)] = from[key]; + } + } + + /* */ + + /* */ + + /* */ + + /* */ + + // inline hooks to be invoked on component VNodes during patch + var componentVNodeHooks = { + init: function init (vnode, hydrating) { + if ( + vnode.componentInstance && + !vnode.componentInstance._isDestroyed && + vnode.data.keepAlive + ) { + // kept-alive components, treat as a patch + var mountedNode = vnode; // work around flow + componentVNodeHooks.prepatch(mountedNode, mountedNode); + } else { + var child = vnode.componentInstance = createComponentInstanceForVnode( + vnode, + activeInstance + ); + child.$mount(hydrating ? vnode.elm : undefined, hydrating); + } + }, + + prepatch: function prepatch (oldVnode, vnode) { + var options = vnode.componentOptions; + var child = vnode.componentInstance = oldVnode.componentInstance; + updateChildComponent( + child, + options.propsData, // updated props + options.listeners, // updated listeners + vnode, // new parent vnode + options.children // new children + ); + }, + + insert: function insert (vnode) { + var context = vnode.context; + var componentInstance = vnode.componentInstance; + if (!componentInstance._isMounted) { + componentInstance._isMounted = true; + callHook(componentInstance, 'mounted'); + } + if (vnode.data.keepAlive) { + if (context._isMounted) { + // vue-router#1212 + // During updates, a kept-alive component's child components may + // change, so directly walking the tree here may call activated hooks + // on incorrect children. Instead we push them into a queue which will + // be processed after the whole patch process ended. + queueActivatedComponent(componentInstance); + } else { + activateChildComponent(componentInstance, true /* direct */); + } + } + }, + + destroy: function destroy (vnode) { + var componentInstance = vnode.componentInstance; + if (!componentInstance._isDestroyed) { + if (!vnode.data.keepAlive) { + componentInstance.$destroy(); + } else { + deactivateChildComponent(componentInstance, true /* direct */); + } + } + } + }; + + var hooksToMerge = Object.keys(componentVNodeHooks); + + function createComponent ( + Ctor, + data, + context, + children, + tag + ) { + if (isUndef(Ctor)) { + return + } + + var baseCtor = context.$options._base; + + // plain options object: turn it into a constructor + if (isObject(Ctor)) { + Ctor = baseCtor.extend(Ctor); + } + + // if at this stage it's not a constructor or an async component factory, + // reject. + if (typeof Ctor !== 'function') { + { + warn(("Invalid Component definition: " + (String(Ctor))), context); + } + return + } + + // async component + var asyncFactory; + if (isUndef(Ctor.cid)) { + asyncFactory = Ctor; + Ctor = resolveAsyncComponent(asyncFactory, baseCtor); + if (Ctor === undefined) { + // return a placeholder node for async component, which is rendered + // as a comment node but preserves all the raw information for the node. + // the information will be used for async server-rendering and hydration. + return createAsyncPlaceholder( + asyncFactory, + data, + context, + children, + tag + ) + } + } + + data = data || {}; + + // resolve constructor options in case global mixins are applied after + // component constructor creation + resolveConstructorOptions(Ctor); + + // transform component v-model data into props & events + if (isDef(data.model)) { + transformModel(Ctor.options, data); + } + + // extract props + var propsData = extractPropsFromVNodeData(data, Ctor, tag); + + // functional component + if (isTrue(Ctor.options.functional)) { + return createFunctionalComponent(Ctor, propsData, data, context, children) + } + + // extract listeners, since these needs to be treated as + // child component listeners instead of DOM listeners + var listeners = data.on; + // replace with listeners with .native modifier + // so it gets processed during parent component patch. + data.on = data.nativeOn; + + if (isTrue(Ctor.options.abstract)) { + // abstract components do not keep anything + // other than props & listeners & slot + + // work around flow + var slot = data.slot; + data = {}; + if (slot) { + data.slot = slot; + } + } + + // install component management hooks onto the placeholder node + installComponentHooks(data); + + // return a placeholder vnode + var name = Ctor.options.name || tag; + var vnode = new VNode( + ("vue-component-" + (Ctor.cid) + (name ? ("-" + name) : '')), + data, undefined, undefined, undefined, context, + { Ctor: Ctor, propsData: propsData, listeners: listeners, tag: tag, children: children }, + asyncFactory + ); + + return vnode + } + + function createComponentInstanceForVnode ( + vnode, // we know it's MountedComponentVNode but flow doesn't + parent // activeInstance in lifecycle state + ) { + var options = { + _isComponent: true, + _parentVnode: vnode, + parent: parent + }; + // check inline-template render functions + var inlineTemplate = vnode.data.inlineTemplate; + if (isDef(inlineTemplate)) { + options.render = inlineTemplate.render; + options.staticRenderFns = inlineTemplate.staticRenderFns; + } + return new vnode.componentOptions.Ctor(options) + } + + function installComponentHooks (data) { + var hooks = data.hook || (data.hook = {}); + for (var i = 0; i < hooksToMerge.length; i++) { + var key = hooksToMerge[i]; + var existing = hooks[key]; + var toMerge = componentVNodeHooks[key]; + if (existing !== toMerge && !(existing && existing._merged)) { + hooks[key] = existing ? mergeHook$1(toMerge, existing) : toMerge; + } + } + } + + function mergeHook$1 (f1, f2) { + var merged = function (a, b) { + // flow complains about extra args which is why we use any + f1(a, b); + f2(a, b); + }; + merged._merged = true; + return merged + } + + // transform component v-model info (value and callback) into + // prop and event handler respectively. + function transformModel (options, data) { + var prop = (options.model && options.model.prop) || 'value'; + var event = (options.model && options.model.event) || 'input' + ;(data.attrs || (data.attrs = {}))[prop] = data.model.value; + var on = data.on || (data.on = {}); + var existing = on[event]; + var callback = data.model.callback; + if (isDef(existing)) { + if ( + Array.isArray(existing) + ? existing.indexOf(callback) === -1 + : existing !== callback + ) { + on[event] = [callback].concat(existing); + } + } else { + on[event] = callback; + } + } + + /* */ + + var SIMPLE_NORMALIZE = 1; + var ALWAYS_NORMALIZE = 2; + + // wrapper function for providing a more flexible interface + // without getting yelled at by flow + function createElement ( + context, + tag, + data, + children, + normalizationType, + alwaysNormalize + ) { + if (Array.isArray(data) || isPrimitive(data)) { + normalizationType = children; + children = data; + data = undefined; + } + if (isTrue(alwaysNormalize)) { + normalizationType = ALWAYS_NORMALIZE; + } + return _createElement(context, tag, data, children, normalizationType) + } + + function _createElement ( + context, + tag, + data, + children, + normalizationType + ) { + if (isDef(data) && isDef((data).__ob__)) { + warn( + "Avoid using observed data object as vnode data: " + (JSON.stringify(data)) + "\n" + + 'Always create fresh vnode data objects in each render!', + context + ); + return createEmptyVNode() + } + // object syntax in v-bind + if (isDef(data) && isDef(data.is)) { + tag = data.is; + } + if (!tag) { + // in case of component :is set to falsy value + return createEmptyVNode() + } + // warn against non-primitive key + if (isDef(data) && isDef(data.key) && !isPrimitive(data.key) + ) { + { + warn( + 'Avoid using non-primitive value as key, ' + + 'use string/number value instead.', + context + ); + } + } + // support single function children as default scoped slot + if (Array.isArray(children) && + typeof children[0] === 'function' + ) { + data = data || {}; + data.scopedSlots = { default: children[0] }; + children.length = 0; + } + if (normalizationType === ALWAYS_NORMALIZE) { + children = normalizeChildren(children); + } else if (normalizationType === SIMPLE_NORMALIZE) { + children = simpleNormalizeChildren(children); + } + var vnode, ns; + if (typeof tag === 'string') { + var Ctor; + ns = (context.$vnode && context.$vnode.ns) || config.getTagNamespace(tag); + if (config.isReservedTag(tag)) { + // platform built-in elements + if (isDef(data) && isDef(data.nativeOn)) { + warn( + ("The .native modifier for v-on is only valid on components but it was used on <" + tag + ">."), + context + ); + } + vnode = new VNode( + config.parsePlatformTagName(tag), data, children, + undefined, undefined, context + ); + } else if ((!data || !data.pre) && isDef(Ctor = resolveAsset(context.$options, 'components', tag))) { + // component + vnode = createComponent(Ctor, data, context, children, tag); + } else { + // unknown or unlisted namespaced elements + // check at runtime because it may get assigned a namespace when its + // parent normalizes children + vnode = new VNode( + tag, data, children, + undefined, undefined, context + ); + } + } else { + // direct component options / constructor + vnode = createComponent(tag, data, context, children); + } + if (Array.isArray(vnode)) { + return vnode + } else if (isDef(vnode)) { + if (isDef(ns)) { applyNS(vnode, ns); } + if (isDef(data)) { registerDeepBindings(data); } + return vnode + } else { + return createEmptyVNode() + } + } + + function applyNS (vnode, ns, force) { + vnode.ns = ns; + if (vnode.tag === 'foreignObject') { + // use default namespace inside foreignObject + ns = undefined; + force = true; + } + if (isDef(vnode.children)) { + for (var i = 0, l = vnode.children.length; i < l; i++) { + var child = vnode.children[i]; + if (isDef(child.tag) && ( + isUndef(child.ns) || (isTrue(force) && child.tag !== 'svg'))) { + applyNS(child, ns, force); + } + } + } + } + + // ref #5318 + // necessary to ensure parent re-render when deep bindings like :style and + // :class are used on slot nodes + function registerDeepBindings (data) { + if (isObject(data.style)) { + traverse(data.style); + } + if (isObject(data.class)) { + traverse(data.class); + } + } + + /* */ + + function initRender (vm) { + vm._vnode = null; // the root of the child tree + vm._staticTrees = null; // v-once cached trees + var options = vm.$options; + var parentVnode = vm.$vnode = options._parentVnode; // the placeholder node in parent tree + var renderContext = parentVnode && parentVnode.context; + vm.$slots = resolveSlots(options._renderChildren, renderContext); + vm.$scopedSlots = emptyObject; + // bind the createElement fn to this instance + // so that we get proper render context inside it. + // args order: tag, data, children, normalizationType, alwaysNormalize + // internal version is used by render functions compiled from templates + vm._c = function (a, b, c, d) { return createElement(vm, a, b, c, d, false); }; + // normalization is always applied for the public version, used in + // user-written render functions. + vm.$createElement = function (a, b, c, d) { return createElement(vm, a, b, c, d, true); }; + + // $attrs & $listeners are exposed for easier HOC creation. + // they need to be reactive so that HOCs using them are always updated + var parentData = parentVnode && parentVnode.data; + + /* istanbul ignore else */ + { + defineReactive$$1(vm, '$attrs', parentData && parentData.attrs || emptyObject, function () { + !isUpdatingChildComponent && warn("$attrs is readonly.", vm); + }, true); + defineReactive$$1(vm, '$listeners', options._parentListeners || emptyObject, function () { + !isUpdatingChildComponent && warn("$listeners is readonly.", vm); + }, true); + } + } + + var currentRenderingInstance = null; + + function renderMixin (Vue) { + // install runtime convenience helpers + installRenderHelpers(Vue.prototype); + + Vue.prototype.$nextTick = function (fn) { + return nextTick(fn, this) + }; + + Vue.prototype._render = function () { + var vm = this; + var ref = vm.$options; + var render = ref.render; + var _parentVnode = ref._parentVnode; + + if (_parentVnode) { + vm.$scopedSlots = normalizeScopedSlots( + _parentVnode.data.scopedSlots, + vm.$slots, + vm.$scopedSlots + ); + } + + // set parent vnode. this allows render functions to have access + // to the data on the placeholder node. + vm.$vnode = _parentVnode; + // render self + var vnode; + try { + // There's no need to maintain a stack because all render fns are called + // separately from one another. Nested component's render fns are called + // when parent component is patched. + currentRenderingInstance = vm; + vnode = render.call(vm._renderProxy, vm.$createElement); + } catch (e) { + handleError(e, vm, "render"); + // return error render result, + // or previous vnode to prevent render error causing blank component + /* istanbul ignore else */ + if (vm.$options.renderError) { + try { + vnode = vm.$options.renderError.call(vm._renderProxy, vm.$createElement, e); + } catch (e) { + handleError(e, vm, "renderError"); + vnode = vm._vnode; + } + } else { + vnode = vm._vnode; + } + } finally { + currentRenderingInstance = null; + } + // if the returned array contains only a single node, allow it + if (Array.isArray(vnode) && vnode.length === 1) { + vnode = vnode[0]; + } + // return empty vnode in case the render function errored out + if (!(vnode instanceof VNode)) { + if (Array.isArray(vnode)) { + warn( + 'Multiple root nodes returned from render function. Render function ' + + 'should return a single root node.', + vm + ); + } + vnode = createEmptyVNode(); + } + // set parent + vnode.parent = _parentVnode; + return vnode + }; + } + + /* */ + + function ensureCtor (comp, base) { + if ( + comp.__esModule || + (hasSymbol && comp[Symbol.toStringTag] === 'Module') + ) { + comp = comp.default; + } + return isObject(comp) + ? base.extend(comp) + : comp + } + + function createAsyncPlaceholder ( + factory, + data, + context, + children, + tag + ) { + var node = createEmptyVNode(); + node.asyncFactory = factory; + node.asyncMeta = { data: data, context: context, children: children, tag: tag }; + return node + } + + function resolveAsyncComponent ( + factory, + baseCtor + ) { + if (isTrue(factory.error) && isDef(factory.errorComp)) { + return factory.errorComp + } + + if (isDef(factory.resolved)) { + return factory.resolved + } + + var owner = currentRenderingInstance; + if (owner && isDef(factory.owners) && factory.owners.indexOf(owner) === -1) { + // already pending + factory.owners.push(owner); + } + + if (isTrue(factory.loading) && isDef(factory.loadingComp)) { + return factory.loadingComp + } + + if (owner && !isDef(factory.owners)) { + var owners = factory.owners = [owner]; + var sync = true; + var timerLoading = null; + var timerTimeout = null + + ;(owner).$on('hook:destroyed', function () { return remove(owners, owner); }); + + var forceRender = function (renderCompleted) { + for (var i = 0, l = owners.length; i < l; i++) { + (owners[i]).$forceUpdate(); + } + + if (renderCompleted) { + owners.length = 0; + if (timerLoading !== null) { + clearTimeout(timerLoading); + timerLoading = null; + } + if (timerTimeout !== null) { + clearTimeout(timerTimeout); + timerTimeout = null; + } + } + }; + + var resolve = once(function (res) { + // cache resolved + factory.resolved = ensureCtor(res, baseCtor); + // invoke callbacks only if this is not a synchronous resolve + // (async resolves are shimmed as synchronous during SSR) + if (!sync) { + forceRender(true); + } else { + owners.length = 0; + } + }); + + var reject = once(function (reason) { + warn( + "Failed to resolve async component: " + (String(factory)) + + (reason ? ("\nReason: " + reason) : '') + ); + if (isDef(factory.errorComp)) { + factory.error = true; + forceRender(true); + } + }); + + var res = factory(resolve, reject); + + if (isObject(res)) { + if (isPromise(res)) { + // () => Promise + if (isUndef(factory.resolved)) { + res.then(resolve, reject); + } + } else if (isPromise(res.component)) { + res.component.then(resolve, reject); + + if (isDef(res.error)) { + factory.errorComp = ensureCtor(res.error, baseCtor); + } + + if (isDef(res.loading)) { + factory.loadingComp = ensureCtor(res.loading, baseCtor); + if (res.delay === 0) { + factory.loading = true; + } else { + timerLoading = setTimeout(function () { + timerLoading = null; + if (isUndef(factory.resolved) && isUndef(factory.error)) { + factory.loading = true; + forceRender(false); + } + }, res.delay || 200); + } + } + + if (isDef(res.timeout)) { + timerTimeout = setTimeout(function () { + timerTimeout = null; + if (isUndef(factory.resolved)) { + reject( + "timeout (" + (res.timeout) + "ms)" + ); + } + }, res.timeout); + } + } + } + + sync = false; + // return in case resolved synchronously + return factory.loading + ? factory.loadingComp + : factory.resolved + } + } + + /* */ + + function isAsyncPlaceholder (node) { + return node.isComment && node.asyncFactory + } + + /* */ + + function getFirstComponentChild (children) { + if (Array.isArray(children)) { + for (var i = 0; i < children.length; i++) { + var c = children[i]; + if (isDef(c) && (isDef(c.componentOptions) || isAsyncPlaceholder(c))) { + return c + } + } + } + } + + /* */ + + /* */ + + function initEvents (vm) { + vm._events = Object.create(null); + vm._hasHookEvent = false; + // init parent attached events + var listeners = vm.$options._parentListeners; + if (listeners) { + updateComponentListeners(vm, listeners); + } + } + + var target; + + function add (event, fn) { + target.$on(event, fn); + } + + function remove$1 (event, fn) { + target.$off(event, fn); + } + + function createOnceHandler (event, fn) { + var _target = target; + return function onceHandler () { + var res = fn.apply(null, arguments); + if (res !== null) { + _target.$off(event, onceHandler); + } + } + } + + function updateComponentListeners ( + vm, + listeners, + oldListeners + ) { + target = vm; + updateListeners(listeners, oldListeners || {}, add, remove$1, createOnceHandler, vm); + target = undefined; + } + + function eventsMixin (Vue) { + var hookRE = /^hook:/; + Vue.prototype.$on = function (event, fn) { + var vm = this; + if (Array.isArray(event)) { + for (var i = 0, l = event.length; i < l; i++) { + vm.$on(event[i], fn); + } + } else { + (vm._events[event] || (vm._events[event] = [])).push(fn); + // optimize hook:event cost by using a boolean flag marked at registration + // instead of a hash lookup + if (hookRE.test(event)) { + vm._hasHookEvent = true; + } + } + return vm + }; + + Vue.prototype.$once = function (event, fn) { + var vm = this; + function on () { + vm.$off(event, on); + fn.apply(vm, arguments); + } + on.fn = fn; + vm.$on(event, on); + return vm + }; + + Vue.prototype.$off = function (event, fn) { + var vm = this; + // all + if (!arguments.length) { + vm._events = Object.create(null); + return vm + } + // array of events + if (Array.isArray(event)) { + for (var i$1 = 0, l = event.length; i$1 < l; i$1++) { + vm.$off(event[i$1], fn); + } + return vm + } + // specific event + var cbs = vm._events[event]; + if (!cbs) { + return vm + } + if (!fn) { + vm._events[event] = null; + return vm + } + // specific handler + var cb; + var i = cbs.length; + while (i--) { + cb = cbs[i]; + if (cb === fn || cb.fn === fn) { + cbs.splice(i, 1); + break + } + } + return vm + }; + + Vue.prototype.$emit = function (event) { + var vm = this; + { + var lowerCaseEvent = event.toLowerCase(); + if (lowerCaseEvent !== event && vm._events[lowerCaseEvent]) { + tip( + "Event \"" + lowerCaseEvent + "\" is emitted in component " + + (formatComponentName(vm)) + " but the handler is registered for \"" + event + "\". " + + "Note that HTML attributes are case-insensitive and you cannot use " + + "v-on to listen to camelCase events when using in-DOM templates. " + + "You should probably use \"" + (hyphenate(event)) + "\" instead of \"" + event + "\"." + ); + } + } + var cbs = vm._events[event]; + if (cbs) { + cbs = cbs.length > 1 ? toArray(cbs) : cbs; + var args = toArray(arguments, 1); + var info = "event handler for \"" + event + "\""; + for (var i = 0, l = cbs.length; i < l; i++) { + invokeWithErrorHandling(cbs[i], vm, args, vm, info); + } + } + return vm + }; + } + + /* */ + + var activeInstance = null; + var isUpdatingChildComponent = false; + + function setActiveInstance(vm) { + var prevActiveInstance = activeInstance; + activeInstance = vm; + return function () { + activeInstance = prevActiveInstance; + } + } + + function initLifecycle (vm) { + var options = vm.$options; + + // locate first non-abstract parent + var parent = options.parent; + if (parent && !options.abstract) { + while (parent.$options.abstract && parent.$parent) { + parent = parent.$parent; + } + parent.$children.push(vm); + } + + vm.$parent = parent; + vm.$root = parent ? parent.$root : vm; + + vm.$children = []; + vm.$refs = {}; + + vm._watcher = null; + vm._inactive = null; + vm._directInactive = false; + vm._isMounted = false; + vm._isDestroyed = false; + vm._isBeingDestroyed = false; + } + + function lifecycleMixin (Vue) { + Vue.prototype._update = function (vnode, hydrating) { + var vm = this; + var prevEl = vm.$el; + var prevVnode = vm._vnode; + var restoreActiveInstance = setActiveInstance(vm); + vm._vnode = vnode; + // Vue.prototype.__patch__ is injected in entry points + // based on the rendering backend used. + if (!prevVnode) { + // initial render + vm.$el = vm.__patch__(vm.$el, vnode, hydrating, false /* removeOnly */); + } else { + // updates + vm.$el = vm.__patch__(prevVnode, vnode); + } + restoreActiveInstance(); + // update __vue__ reference + if (prevEl) { + prevEl.__vue__ = null; + } + if (vm.$el) { + vm.$el.__vue__ = vm; + } + // if parent is an HOC, update its $el as well + if (vm.$vnode && vm.$parent && vm.$vnode === vm.$parent._vnode) { + vm.$parent.$el = vm.$el; + } + // updated hook is called by the scheduler to ensure that children are + // updated in a parent's updated hook. + }; + + Vue.prototype.$forceUpdate = function () { + var vm = this; + if (vm._watcher) { + vm._watcher.update(); + } + }; + + Vue.prototype.$destroy = function () { + var vm = this; + if (vm._isBeingDestroyed) { + return + } + callHook(vm, 'beforeDestroy'); + vm._isBeingDestroyed = true; + // remove self from parent + var parent = vm.$parent; + if (parent && !parent._isBeingDestroyed && !vm.$options.abstract) { + remove(parent.$children, vm); + } + // teardown watchers + if (vm._watcher) { + vm._watcher.teardown(); + } + var i = vm._watchers.length; + while (i--) { + vm._watchers[i].teardown(); + } + // remove reference from data ob + // frozen object may not have observer. + if (vm._data.__ob__) { + vm._data.__ob__.vmCount--; + } + // call the last hook... + vm._isDestroyed = true; + // invoke destroy hooks on current rendered tree + vm.__patch__(vm._vnode, null); + // fire destroyed hook + callHook(vm, 'destroyed'); + // turn off all instance listeners. + vm.$off(); + // remove __vue__ reference + if (vm.$el) { + vm.$el.__vue__ = null; + } + // release circular reference (#6759) + if (vm.$vnode) { + vm.$vnode.parent = null; + } + }; + } + + function mountComponent ( + vm, + el, + hydrating + ) { + vm.$el = el; + if (!vm.$options.render) { + vm.$options.render = createEmptyVNode; + { + /* istanbul ignore if */ + if ((vm.$options.template && vm.$options.template.charAt(0) !== '#') || + vm.$options.el || el) { + warn( + 'You are using the runtime-only build of Vue where the template ' + + 'compiler is not available. Either pre-compile the templates into ' + + 'render functions, or use the compiler-included build.', + vm + ); + } else { + warn( + 'Failed to mount component: template or render function not defined.', + vm + ); + } + } + } + callHook(vm, 'beforeMount'); + + var updateComponent; + /* istanbul ignore if */ + if (config.performance && mark) { + updateComponent = function () { + var name = vm._name; + var id = vm._uid; + var startTag = "vue-perf-start:" + id; + var endTag = "vue-perf-end:" + id; + + mark(startTag); + var vnode = vm._render(); + mark(endTag); + measure(("vue " + name + " render"), startTag, endTag); + + mark(startTag); + vm._update(vnode, hydrating); + mark(endTag); + measure(("vue " + name + " patch"), startTag, endTag); + }; + } else { + updateComponent = function () { + vm._update(vm._render(), hydrating); + }; + } + + // we set this to vm._watcher inside the watcher's constructor + // since the watcher's initial patch may call $forceUpdate (e.g. inside child + // component's mounted hook), which relies on vm._watcher being already defined + new Watcher(vm, updateComponent, noop, { + before: function before () { + if (vm._isMounted && !vm._isDestroyed) { + callHook(vm, 'beforeUpdate'); + } + } + }, true /* isRenderWatcher */); + hydrating = false; + + // manually mounted instance, call mounted on self + // mounted is called for render-created child components in its inserted hook + if (vm.$vnode == null) { + vm._isMounted = true; + callHook(vm, 'mounted'); + } + return vm + } + + function updateChildComponent ( + vm, + propsData, + listeners, + parentVnode, + renderChildren + ) { + { + isUpdatingChildComponent = true; + } + + // determine whether component has slot children + // we need to do this before overwriting $options._renderChildren. + + // check if there are dynamic scopedSlots (hand-written or compiled but with + // dynamic slot names). Static scoped slots compiled from template has the + // "$stable" marker. + var newScopedSlots = parentVnode.data.scopedSlots; + var oldScopedSlots = vm.$scopedSlots; + var hasDynamicScopedSlot = !!( + (newScopedSlots && !newScopedSlots.$stable) || + (oldScopedSlots !== emptyObject && !oldScopedSlots.$stable) || + (newScopedSlots && vm.$scopedSlots.$key !== newScopedSlots.$key) + ); + + // Any static slot children from the parent may have changed during parent's + // update. Dynamic scoped slots may also have changed. In such cases, a forced + // update is necessary to ensure correctness. + var needsForceUpdate = !!( + renderChildren || // has new static slots + vm.$options._renderChildren || // has old static slots + hasDynamicScopedSlot + ); + + vm.$options._parentVnode = parentVnode; + vm.$vnode = parentVnode; // update vm's placeholder node without re-render + + if (vm._vnode) { // update child tree's parent + vm._vnode.parent = parentVnode; + } + vm.$options._renderChildren = renderChildren; + + // update $attrs and $listeners hash + // these are also reactive so they may trigger child update if the child + // used them during render + vm.$attrs = parentVnode.data.attrs || emptyObject; + vm.$listeners = listeners || emptyObject; + + // update props + if (propsData && vm.$options.props) { + toggleObserving(false); + var props = vm._props; + var propKeys = vm.$options._propKeys || []; + for (var i = 0; i < propKeys.length; i++) { + var key = propKeys[i]; + var propOptions = vm.$options.props; // wtf flow? + props[key] = validateProp(key, propOptions, propsData, vm); + } + toggleObserving(true); + // keep a copy of raw propsData + vm.$options.propsData = propsData; + } + + // update listeners + listeners = listeners || emptyObject; + var oldListeners = vm.$options._parentListeners; + vm.$options._parentListeners = listeners; + updateComponentListeners(vm, listeners, oldListeners); + + // resolve slots + force update if has children + if (needsForceUpdate) { + vm.$slots = resolveSlots(renderChildren, parentVnode.context); + vm.$forceUpdate(); + } + + { + isUpdatingChildComponent = false; + } + } + + function isInInactiveTree (vm) { + while (vm && (vm = vm.$parent)) { + if (vm._inactive) { return true } + } + return false + } + + function activateChildComponent (vm, direct) { + if (direct) { + vm._directInactive = false; + if (isInInactiveTree(vm)) { + return + } + } else if (vm._directInactive) { + return + } + if (vm._inactive || vm._inactive === null) { + vm._inactive = false; + for (var i = 0; i < vm.$children.length; i++) { + activateChildComponent(vm.$children[i]); + } + callHook(vm, 'activated'); + } + } + + function deactivateChildComponent (vm, direct) { + if (direct) { + vm._directInactive = true; + if (isInInactiveTree(vm)) { + return + } + } + if (!vm._inactive) { + vm._inactive = true; + for (var i = 0; i < vm.$children.length; i++) { + deactivateChildComponent(vm.$children[i]); + } + callHook(vm, 'deactivated'); + } + } + + function callHook (vm, hook) { + // #7573 disable dep collection when invoking lifecycle hooks + pushTarget(); + var handlers = vm.$options[hook]; + var info = hook + " hook"; + if (handlers) { + for (var i = 0, j = handlers.length; i < j; i++) { + invokeWithErrorHandling(handlers[i], vm, null, vm, info); + } + } + if (vm._hasHookEvent) { + vm.$emit('hook:' + hook); + } + popTarget(); + } + + /* */ + + var MAX_UPDATE_COUNT = 100; + + var queue = []; + var activatedChildren = []; + var has = {}; + var circular = {}; + var waiting = false; + var flushing = false; + var index = 0; + + /** + * Reset the scheduler's state. + */ + function resetSchedulerState () { + index = queue.length = activatedChildren.length = 0; + has = {}; + { + circular = {}; + } + waiting = flushing = false; + } + + // Async edge case #6566 requires saving the timestamp when event listeners are + // attached. However, calling performance.now() has a perf overhead especially + // if the page has thousands of event listeners. Instead, we take a timestamp + // every time the scheduler flushes and use that for all event listeners + // attached during that flush. + var currentFlushTimestamp = 0; + + // Async edge case fix requires storing an event listener's attach timestamp. + var getNow = Date.now; + + // Determine what event timestamp the browser is using. Annoyingly, the + // timestamp can either be hi-res (relative to page load) or low-res + // (relative to UNIX epoch), so in order to compare time we have to use the + // same timestamp type when saving the flush timestamp. + // All IE versions use low-res event timestamps, and have problematic clock + // implementations (#9632) + if (inBrowser && !isIE) { + var performance = window.performance; + if ( + performance && + typeof performance.now === 'function' && + getNow() > document.createEvent('Event').timeStamp + ) { + // if the event timestamp, although evaluated AFTER the Date.now(), is + // smaller than it, it means the event is using a hi-res timestamp, + // and we need to use the hi-res version for event listener timestamps as + // well. + getNow = function () { return performance.now(); }; + } + } + + /** + * Flush both queues and run the watchers. + */ + function flushSchedulerQueue () { + currentFlushTimestamp = getNow(); + flushing = true; + var watcher, id; + + // Sort queue before flush. + // This ensures that: + // 1. Components are updated from parent to child. (because parent is always + // created before the child) + // 2. A component's user watchers are run before its render watcher (because + // user watchers are created before the render watcher) + // 3. If a component is destroyed during a parent component's watcher run, + // its watchers can be skipped. + queue.sort(function (a, b) { return a.id - b.id; }); + + // do not cache length because more watchers might be pushed + // as we run existing watchers + for (index = 0; index < queue.length; index++) { + watcher = queue[index]; + if (watcher.before) { + watcher.before(); + } + id = watcher.id; + has[id] = null; + watcher.run(); + // in dev build, check and stop circular updates. + if (has[id] != null) { + circular[id] = (circular[id] || 0) + 1; + if (circular[id] > MAX_UPDATE_COUNT) { + warn( + 'You may have an infinite update loop ' + ( + watcher.user + ? ("in watcher with expression \"" + (watcher.expression) + "\"") + : "in a component render function." + ), + watcher.vm + ); + break + } + } + } + + // keep copies of post queues before resetting state + var activatedQueue = activatedChildren.slice(); + var updatedQueue = queue.slice(); + + resetSchedulerState(); + + // call component updated and activated hooks + callActivatedHooks(activatedQueue); + callUpdatedHooks(updatedQueue); + + // devtool hook + /* istanbul ignore if */ + if (devtools && config.devtools) { + devtools.emit('flush'); + } + } + + function callUpdatedHooks (queue) { + var i = queue.length; + while (i--) { + var watcher = queue[i]; + var vm = watcher.vm; + if (vm._watcher === watcher && vm._isMounted && !vm._isDestroyed) { + callHook(vm, 'updated'); + } + } + } + + /** + * Queue a kept-alive component that was activated during patch. + * The queue will be processed after the entire tree has been patched. + */ + function queueActivatedComponent (vm) { + // setting _inactive to false here so that a render function can + // rely on checking whether it's in an inactive tree (e.g. router-view) + vm._inactive = false; + activatedChildren.push(vm); + } + + function callActivatedHooks (queue) { + for (var i = 0; i < queue.length; i++) { + queue[i]._inactive = true; + activateChildComponent(queue[i], true /* true */); + } + } + + /** + * Push a watcher into the watcher queue. + * Jobs with duplicate IDs will be skipped unless it's + * pushed when the queue is being flushed. + */ + function queueWatcher (watcher) { + var id = watcher.id; + if (has[id] == null) { + has[id] = true; + if (!flushing) { + queue.push(watcher); + } else { + // if already flushing, splice the watcher based on its id + // if already past its id, it will be run next immediately. + var i = queue.length - 1; + while (i > index && queue[i].id > watcher.id) { + i--; + } + queue.splice(i + 1, 0, watcher); + } + // queue the flush + if (!waiting) { + waiting = true; + + if (!config.async) { + flushSchedulerQueue(); + return + } + nextTick(flushSchedulerQueue); + } + } + } + + /* */ + + + + var uid$2 = 0; + + /** + * A watcher parses an expression, collects dependencies, + * and fires callback when the expression value changes. + * This is used for both the $watch() api and directives. + */ + var Watcher = function Watcher ( + vm, + expOrFn, + cb, + options, + isRenderWatcher + ) { + this.vm = vm; + if (isRenderWatcher) { + vm._watcher = this; + } + vm._watchers.push(this); + // options + if (options) { + this.deep = !!options.deep; + this.user = !!options.user; + this.lazy = !!options.lazy; + this.sync = !!options.sync; + this.before = options.before; + } else { + this.deep = this.user = this.lazy = this.sync = false; + } + this.cb = cb; + this.id = ++uid$2; // uid for batching + this.active = true; + this.dirty = this.lazy; // for lazy watchers + this.deps = []; + this.newDeps = []; + this.depIds = new _Set(); + this.newDepIds = new _Set(); + this.expression = expOrFn.toString(); + // parse expression for getter + if (typeof expOrFn === 'function') { + this.getter = expOrFn; + } else { + this.getter = parsePath(expOrFn); + if (!this.getter) { + this.getter = noop; + warn( + "Failed watching path: \"" + expOrFn + "\" " + + 'Watcher only accepts simple dot-delimited paths. ' + + 'For full control, use a function instead.', + vm + ); + } + } + this.value = this.lazy + ? undefined + : this.get(); + }; + + /** + * Evaluate the getter, and re-collect dependencies. + */ + Watcher.prototype.get = function get () { + pushTarget(this); + var value; + var vm = this.vm; + try { + value = this.getter.call(vm, vm); + } catch (e) { + if (this.user) { + handleError(e, vm, ("getter for watcher \"" + (this.expression) + "\"")); + } else { + throw e + } + } finally { + // "touch" every property so they are all tracked as + // dependencies for deep watching + if (this.deep) { + traverse(value); + } + popTarget(); + this.cleanupDeps(); + } + return value + }; + + /** + * Add a dependency to this directive. + */ + Watcher.prototype.addDep = function addDep (dep) { + var id = dep.id; + if (!this.newDepIds.has(id)) { + this.newDepIds.add(id); + this.newDeps.push(dep); + if (!this.depIds.has(id)) { + dep.addSub(this); + } + } + }; + + /** + * Clean up for dependency collection. + */ + Watcher.prototype.cleanupDeps = function cleanupDeps () { + var i = this.deps.length; + while (i--) { + var dep = this.deps[i]; + if (!this.newDepIds.has(dep.id)) { + dep.removeSub(this); + } + } + var tmp = this.depIds; + this.depIds = this.newDepIds; + this.newDepIds = tmp; + this.newDepIds.clear(); + tmp = this.deps; + this.deps = this.newDeps; + this.newDeps = tmp; + this.newDeps.length = 0; + }; + + /** + * Subscriber interface. + * Will be called when a dependency changes. + */ + Watcher.prototype.update = function update () { + /* istanbul ignore else */ + if (this.lazy) { + this.dirty = true; + } else if (this.sync) { + this.run(); + } else { + queueWatcher(this); + } + }; + + /** + * Scheduler job interface. + * Will be called by the scheduler. + */ + Watcher.prototype.run = function run () { + if (this.active) { + var value = this.get(); + if ( + value !== this.value || + // Deep watchers and watchers on Object/Arrays should fire even + // when the value is the same, because the value may + // have mutated. + isObject(value) || + this.deep + ) { + // set new value + var oldValue = this.value; + this.value = value; + if (this.user) { + try { + this.cb.call(this.vm, value, oldValue); + } catch (e) { + handleError(e, this.vm, ("callback for watcher \"" + (this.expression) + "\"")); + } + } else { + this.cb.call(this.vm, value, oldValue); + } + } + } + }; + + /** + * Evaluate the value of the watcher. + * This only gets called for lazy watchers. + */ + Watcher.prototype.evaluate = function evaluate () { + this.value = this.get(); + this.dirty = false; + }; + + /** + * Depend on all deps collected by this watcher. + */ + Watcher.prototype.depend = function depend () { + var i = this.deps.length; + while (i--) { + this.deps[i].depend(); + } + }; + + /** + * Remove self from all dependencies' subscriber list. + */ + Watcher.prototype.teardown = function teardown () { + if (this.active) { + // remove self from vm's watcher list + // this is a somewhat expensive operation so we skip it + // if the vm is being destroyed. + if (!this.vm._isBeingDestroyed) { + remove(this.vm._watchers, this); + } + var i = this.deps.length; + while (i--) { + this.deps[i].removeSub(this); + } + this.active = false; + } + }; + + /* */ + + var sharedPropertyDefinition = { + enumerable: true, + configurable: true, + get: noop, + set: noop + }; + + function proxy (target, sourceKey, key) { + sharedPropertyDefinition.get = function proxyGetter () { + return this[sourceKey][key] + }; + sharedPropertyDefinition.set = function proxySetter (val) { + this[sourceKey][key] = val; + }; + Object.defineProperty(target, key, sharedPropertyDefinition); + } + + function initState (vm) { + vm._watchers = []; + var opts = vm.$options; + if (opts.props) { initProps(vm, opts.props); } + if (opts.methods) { initMethods(vm, opts.methods); } + if (opts.data) { + initData(vm); + } else { + observe(vm._data = {}, true /* asRootData */); + } + if (opts.computed) { initComputed(vm, opts.computed); } + if (opts.watch && opts.watch !== nativeWatch) { + initWatch(vm, opts.watch); + } + } + + function initProps (vm, propsOptions) { + var propsData = vm.$options.propsData || {}; + var props = vm._props = {}; + // cache prop keys so that future props updates can iterate using Array + // instead of dynamic object key enumeration. + var keys = vm.$options._propKeys = []; + var isRoot = !vm.$parent; + // root instance props should be converted + if (!isRoot) { + toggleObserving(false); + } + var loop = function ( key ) { + keys.push(key); + var value = validateProp(key, propsOptions, propsData, vm); + /* istanbul ignore else */ + { + var hyphenatedKey = hyphenate(key); + if (isReservedAttribute(hyphenatedKey) || + config.isReservedAttr(hyphenatedKey)) { + warn( + ("\"" + hyphenatedKey + "\" is a reserved attribute and cannot be used as component prop."), + vm + ); + } + defineReactive$$1(props, key, value, function () { + if (!isRoot && !isUpdatingChildComponent) { + warn( + "Avoid mutating a prop directly since the value will be " + + "overwritten whenever the parent component re-renders. " + + "Instead, use a data or computed property based on the prop's " + + "value. Prop being mutated: \"" + key + "\"", + vm + ); + } + }); + } + // static props are already proxied on the component's prototype + // during Vue.extend(). We only need to proxy props defined at + // instantiation here. + if (!(key in vm)) { + proxy(vm, "_props", key); + } + }; + + for (var key in propsOptions) loop( key ); + toggleObserving(true); + } + + function initData (vm) { + var data = vm.$options.data; + data = vm._data = typeof data === 'function' + ? getData(data, vm) + : data || {}; + if (!isPlainObject(data)) { + data = {}; + warn( + 'data functions should return an object:\n' + + 'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function', + vm + ); + } + // proxy data on instance + var keys = Object.keys(data); + var props = vm.$options.props; + var methods = vm.$options.methods; + var i = keys.length; + while (i--) { + var key = keys[i]; + { + if (methods && hasOwn(methods, key)) { + warn( + ("Method \"" + key + "\" has already been defined as a data property."), + vm + ); + } + } + if (props && hasOwn(props, key)) { + warn( + "The data property \"" + key + "\" is already declared as a prop. " + + "Use prop default value instead.", + vm + ); + } else if (!isReserved(key)) { + proxy(vm, "_data", key); + } + } + // observe data + observe(data, true /* asRootData */); + } + + function getData (data, vm) { + // #7573 disable dep collection when invoking data getters + pushTarget(); + try { + return data.call(vm, vm) + } catch (e) { + handleError(e, vm, "data()"); + return {} + } finally { + popTarget(); + } + } + + var computedWatcherOptions = { lazy: true }; + + function initComputed (vm, computed) { + // $flow-disable-line + var watchers = vm._computedWatchers = Object.create(null); + // computed properties are just getters during SSR + var isSSR = isServerRendering(); + + for (var key in computed) { + var userDef = computed[key]; + var getter = typeof userDef === 'function' ? userDef : userDef.get; + if (getter == null) { + warn( + ("Getter is missing for computed property \"" + key + "\"."), + vm + ); + } + + if (!isSSR) { + // create internal watcher for the computed property. + watchers[key] = new Watcher( + vm, + getter || noop, + noop, + computedWatcherOptions + ); + } + + // component-defined computed properties are already defined on the + // component prototype. We only need to define computed properties defined + // at instantiation here. + if (!(key in vm)) { + defineComputed(vm, key, userDef); + } else { + if (key in vm.$data) { + warn(("The computed property \"" + key + "\" is already defined in data."), vm); + } else if (vm.$options.props && key in vm.$options.props) { + warn(("The computed property \"" + key + "\" is already defined as a prop."), vm); + } + } + } + } + + function defineComputed ( + target, + key, + userDef + ) { + var shouldCache = !isServerRendering(); + if (typeof userDef === 'function') { + sharedPropertyDefinition.get = shouldCache + ? createComputedGetter(key) + : createGetterInvoker(userDef); + sharedPropertyDefinition.set = noop; + } else { + sharedPropertyDefinition.get = userDef.get + ? shouldCache && userDef.cache !== false + ? createComputedGetter(key) + : createGetterInvoker(userDef.get) + : noop; + sharedPropertyDefinition.set = userDef.set || noop; + } + if (sharedPropertyDefinition.set === noop) { + sharedPropertyDefinition.set = function () { + warn( + ("Computed property \"" + key + "\" was assigned to but it has no setter."), + this + ); + }; + } + Object.defineProperty(target, key, sharedPropertyDefinition); + } + + function createComputedGetter (key) { + return function computedGetter () { + var watcher = this._computedWatchers && this._computedWatchers[key]; + if (watcher) { + if (watcher.dirty) { + watcher.evaluate(); + } + if (Dep.target) { + watcher.depend(); + } + return watcher.value + } + } + } + + function createGetterInvoker(fn) { + return function computedGetter () { + return fn.call(this, this) + } + } + + function initMethods (vm, methods) { + var props = vm.$options.props; + for (var key in methods) { + { + if (typeof methods[key] !== 'function') { + warn( + "Method \"" + key + "\" has type \"" + (typeof methods[key]) + "\" in the component definition. " + + "Did you reference the function correctly?", + vm + ); + } + if (props && hasOwn(props, key)) { + warn( + ("Method \"" + key + "\" has already been defined as a prop."), + vm + ); + } + if ((key in vm) && isReserved(key)) { + warn( + "Method \"" + key + "\" conflicts with an existing Vue instance method. " + + "Avoid defining component methods that start with _ or $." + ); + } + } + vm[key] = typeof methods[key] !== 'function' ? noop : bind(methods[key], vm); + } + } + + function initWatch (vm, watch) { + for (var key in watch) { + var handler = watch[key]; + if (Array.isArray(handler)) { + for (var i = 0; i < handler.length; i++) { + createWatcher(vm, key, handler[i]); + } + } else { + createWatcher(vm, key, handler); + } + } + } + + function createWatcher ( + vm, + expOrFn, + handler, + options + ) { + if (isPlainObject(handler)) { + options = handler; + handler = handler.handler; + } + if (typeof handler === 'string') { + handler = vm[handler]; + } + return vm.$watch(expOrFn, handler, options) + } + + function stateMixin (Vue) { + // flow somehow has problems with directly declared definition object + // when using Object.defineProperty, so we have to procedurally build up + // the object here. + var dataDef = {}; + dataDef.get = function () { return this._data }; + var propsDef = {}; + propsDef.get = function () { return this._props }; + { + dataDef.set = function () { + warn( + 'Avoid replacing instance root $data. ' + + 'Use nested data properties instead.', + this + ); + }; + propsDef.set = function () { + warn("$props is readonly.", this); + }; + } + Object.defineProperty(Vue.prototype, '$data', dataDef); + Object.defineProperty(Vue.prototype, '$props', propsDef); + + Vue.prototype.$set = set; + Vue.prototype.$delete = del; + + Vue.prototype.$watch = function ( + expOrFn, + cb, + options + ) { + var vm = this; + if (isPlainObject(cb)) { + return createWatcher(vm, expOrFn, cb, options) + } + options = options || {}; + options.user = true; + var watcher = new Watcher(vm, expOrFn, cb, options); + if (options.immediate) { + try { + cb.call(vm, watcher.value); + } catch (error) { + handleError(error, vm, ("callback for immediate watcher \"" + (watcher.expression) + "\"")); + } + } + return function unwatchFn () { + watcher.teardown(); + } + }; + } + + /* */ + + var uid$3 = 0; + + function initMixin (Vue) { + Vue.prototype._init = function (options) { + var vm = this; + // a uid + vm._uid = uid$3++; + + var startTag, endTag; + /* istanbul ignore if */ + if (config.performance && mark) { + startTag = "vue-perf-start:" + (vm._uid); + endTag = "vue-perf-end:" + (vm._uid); + mark(startTag); + } + + // a flag to avoid this being observed + vm._isVue = true; + // merge options + if (options && options._isComponent) { + // optimize internal component instantiation + // since dynamic options merging is pretty slow, and none of the + // internal component options needs special treatment. + initInternalComponent(vm, options); + } else { + vm.$options = mergeOptions( + resolveConstructorOptions(vm.constructor), + options || {}, + vm + ); + } + /* istanbul ignore else */ + { + initProxy(vm); + } + // expose real self + vm._self = vm; + initLifecycle(vm); + initEvents(vm); + initRender(vm); + callHook(vm, 'beforeCreate'); + initInjections(vm); // resolve injections before data/props + initState(vm); + initProvide(vm); // resolve provide after data/props + callHook(vm, 'created'); + + /* istanbul ignore if */ + if (config.performance && mark) { + vm._name = formatComponentName(vm, false); + mark(endTag); + measure(("vue " + (vm._name) + " init"), startTag, endTag); + } + + if (vm.$options.el) { + vm.$mount(vm.$options.el); + } + }; + } + + function initInternalComponent (vm, options) { + var opts = vm.$options = Object.create(vm.constructor.options); + // doing this because it's faster than dynamic enumeration. + var parentVnode = options._parentVnode; + opts.parent = options.parent; + opts._parentVnode = parentVnode; + + var vnodeComponentOptions = parentVnode.componentOptions; + opts.propsData = vnodeComponentOptions.propsData; + opts._parentListeners = vnodeComponentOptions.listeners; + opts._renderChildren = vnodeComponentOptions.children; + opts._componentTag = vnodeComponentOptions.tag; + + if (options.render) { + opts.render = options.render; + opts.staticRenderFns = options.staticRenderFns; + } + } + + function resolveConstructorOptions (Ctor) { + var options = Ctor.options; + if (Ctor.super) { + var superOptions = resolveConstructorOptions(Ctor.super); + var cachedSuperOptions = Ctor.superOptions; + if (superOptions !== cachedSuperOptions) { + // super option changed, + // need to resolve new options. + Ctor.superOptions = superOptions; + // check if there are any late-modified/attached options (#4976) + var modifiedOptions = resolveModifiedOptions(Ctor); + // update base extend options + if (modifiedOptions) { + extend(Ctor.extendOptions, modifiedOptions); + } + options = Ctor.options = mergeOptions(superOptions, Ctor.extendOptions); + if (options.name) { + options.components[options.name] = Ctor; + } + } + } + return options + } + + function resolveModifiedOptions (Ctor) { + var modified; + var latest = Ctor.options; + var sealed = Ctor.sealedOptions; + for (var key in latest) { + if (latest[key] !== sealed[key]) { + if (!modified) { modified = {}; } + modified[key] = latest[key]; + } + } + return modified + } + + function Vue (options) { + if (!(this instanceof Vue) + ) { + warn('Vue is a constructor and should be called with the `new` keyword'); + } + this._init(options); + } + + initMixin(Vue); + stateMixin(Vue); + eventsMixin(Vue); + lifecycleMixin(Vue); + renderMixin(Vue); + + /* */ + + function initUse (Vue) { + Vue.use = function (plugin) { + var installedPlugins = (this._installedPlugins || (this._installedPlugins = [])); + if (installedPlugins.indexOf(plugin) > -1) { + return this + } + + // additional parameters + var args = toArray(arguments, 1); + args.unshift(this); + if (typeof plugin.install === 'function') { + plugin.install.apply(plugin, args); + } else if (typeof plugin === 'function') { + plugin.apply(null, args); + } + installedPlugins.push(plugin); + return this + }; + } + + /* */ + + function initMixin$1 (Vue) { + Vue.mixin = function (mixin) { + this.options = mergeOptions(this.options, mixin); + return this + }; + } + + /* */ + + function initExtend (Vue) { + /** + * Each instance constructor, including Vue, has a unique + * cid. This enables us to create wrapped "child + * constructors" for prototypal inheritance and cache them. + */ + Vue.cid = 0; + var cid = 1; + + /** + * Class inheritance + */ + Vue.extend = function (extendOptions) { + extendOptions = extendOptions || {}; + var Super = this; + var SuperId = Super.cid; + var cachedCtors = extendOptions._Ctor || (extendOptions._Ctor = {}); + if (cachedCtors[SuperId]) { + return cachedCtors[SuperId] + } + + var name = extendOptions.name || Super.options.name; + if (name) { + validateComponentName(name); + } + + var Sub = function VueComponent (options) { + this._init(options); + }; + Sub.prototype = Object.create(Super.prototype); + Sub.prototype.constructor = Sub; + Sub.cid = cid++; + Sub.options = mergeOptions( + Super.options, + extendOptions + ); + Sub['super'] = Super; + + // For props and computed properties, we define the proxy getters on + // the Vue instances at extension time, on the extended prototype. This + // avoids Object.defineProperty calls for each instance created. + if (Sub.options.props) { + initProps$1(Sub); + } + if (Sub.options.computed) { + initComputed$1(Sub); + } + + // allow further extension/mixin/plugin usage + Sub.extend = Super.extend; + Sub.mixin = Super.mixin; + Sub.use = Super.use; + + // create asset registers, so extended classes + // can have their private assets too. + ASSET_TYPES.forEach(function (type) { + Sub[type] = Super[type]; + }); + // enable recursive self-lookup + if (name) { + Sub.options.components[name] = Sub; + } + + // keep a reference to the super options at extension time. + // later at instantiation we can check if Super's options have + // been updated. + Sub.superOptions = Super.options; + Sub.extendOptions = extendOptions; + Sub.sealedOptions = extend({}, Sub.options); + + // cache constructor + cachedCtors[SuperId] = Sub; + return Sub + }; + } + + function initProps$1 (Comp) { + var props = Comp.options.props; + for (var key in props) { + proxy(Comp.prototype, "_props", key); + } + } + + function initComputed$1 (Comp) { + var computed = Comp.options.computed; + for (var key in computed) { + defineComputed(Comp.prototype, key, computed[key]); + } + } + + /* */ + + function initAssetRegisters (Vue) { + /** + * Create asset registration methods. + */ + ASSET_TYPES.forEach(function (type) { + Vue[type] = function ( + id, + definition + ) { + if (!definition) { + return this.options[type + 's'][id] + } else { + /* istanbul ignore if */ + if (type === 'component') { + validateComponentName(id); + } + if (type === 'component' && isPlainObject(definition)) { + definition.name = definition.name || id; + definition = this.options._base.extend(definition); + } + if (type === 'directive' && typeof definition === 'function') { + definition = { bind: definition, update: definition }; + } + this.options[type + 's'][id] = definition; + return definition + } + }; + }); + } + + /* */ + + + + function getComponentName (opts) { + return opts && (opts.Ctor.options.name || opts.tag) + } + + function matches (pattern, name) { + if (Array.isArray(pattern)) { + return pattern.indexOf(name) > -1 + } else if (typeof pattern === 'string') { + return pattern.split(',').indexOf(name) > -1 + } else if (isRegExp(pattern)) { + return pattern.test(name) + } + /* istanbul ignore next */ + return false + } + + function pruneCache (keepAliveInstance, filter) { + var cache = keepAliveInstance.cache; + var keys = keepAliveInstance.keys; + var _vnode = keepAliveInstance._vnode; + for (var key in cache) { + var cachedNode = cache[key]; + if (cachedNode) { + var name = getComponentName(cachedNode.componentOptions); + if (name && !filter(name)) { + pruneCacheEntry(cache, key, keys, _vnode); + } + } + } + } + + function pruneCacheEntry ( + cache, + key, + keys, + current + ) { + var cached$$1 = cache[key]; + if (cached$$1 && (!current || cached$$1.tag !== current.tag)) { + cached$$1.componentInstance.$destroy(); + } + cache[key] = null; + remove(keys, key); + } + + var patternTypes = [String, RegExp, Array]; + + var KeepAlive = { + name: 'keep-alive', + abstract: true, + + props: { + include: patternTypes, + exclude: patternTypes, + max: [String, Number] + }, + + created: function created () { + this.cache = Object.create(null); + this.keys = []; + }, + + destroyed: function destroyed () { + for (var key in this.cache) { + pruneCacheEntry(this.cache, key, this.keys); + } + }, + + mounted: function mounted () { + var this$1 = this; + + this.$watch('include', function (val) { + pruneCache(this$1, function (name) { return matches(val, name); }); + }); + this.$watch('exclude', function (val) { + pruneCache(this$1, function (name) { return !matches(val, name); }); + }); + }, + + render: function render () { + var slot = this.$slots.default; + var vnode = getFirstComponentChild(slot); + var componentOptions = vnode && vnode.componentOptions; + if (componentOptions) { + // check pattern + var name = getComponentName(componentOptions); + var ref = this; + var include = ref.include; + var exclude = ref.exclude; + if ( + // not included + (include && (!name || !matches(include, name))) || + // excluded + (exclude && name && matches(exclude, name)) + ) { + return vnode + } + + var ref$1 = this; + var cache = ref$1.cache; + var keys = ref$1.keys; + var key = vnode.key == null + // same constructor may get registered as different local components + // so cid alone is not enough (#3269) + ? componentOptions.Ctor.cid + (componentOptions.tag ? ("::" + (componentOptions.tag)) : '') + : vnode.key; + if (cache[key]) { + vnode.componentInstance = cache[key].componentInstance; + // make current key freshest + remove(keys, key); + keys.push(key); + } else { + cache[key] = vnode; + keys.push(key); + // prune oldest entry + if (this.max && keys.length > parseInt(this.max)) { + pruneCacheEntry(cache, keys[0], keys, this._vnode); + } + } + + vnode.data.keepAlive = true; + } + return vnode || (slot && slot[0]) + } + }; + + var builtInComponents = { + KeepAlive: KeepAlive + }; + + /* */ + + function initGlobalAPI (Vue) { + // config + var configDef = {}; + configDef.get = function () { return config; }; + { + configDef.set = function () { + warn( + 'Do not replace the Vue.config object, set individual fields instead.' + ); + }; + } + Object.defineProperty(Vue, 'config', configDef); + + // exposed util methods. + // NOTE: these are not considered part of the public API - avoid relying on + // them unless you are aware of the risk. + Vue.util = { + warn: warn, + extend: extend, + mergeOptions: mergeOptions, + defineReactive: defineReactive$$1 + }; + + Vue.set = set; + Vue.delete = del; + Vue.nextTick = nextTick; + + // 2.6 explicit observable API + Vue.observable = function (obj) { + observe(obj); + return obj + }; + + Vue.options = Object.create(null); + ASSET_TYPES.forEach(function (type) { + Vue.options[type + 's'] = Object.create(null); + }); + + // this is used to identify the "base" constructor to extend all plain-object + // components with in Weex's multi-instance scenarios. + Vue.options._base = Vue; + + extend(Vue.options.components, builtInComponents); + + initUse(Vue); + initMixin$1(Vue); + initExtend(Vue); + initAssetRegisters(Vue); + } + + initGlobalAPI(Vue); + + Object.defineProperty(Vue.prototype, '$isServer', { + get: isServerRendering + }); + + Object.defineProperty(Vue.prototype, '$ssrContext', { + get: function get () { + /* istanbul ignore next */ + return this.$vnode && this.$vnode.ssrContext + } + }); + + // expose FunctionalRenderContext for ssr runtime helper installation + Object.defineProperty(Vue, 'FunctionalRenderContext', { + value: FunctionalRenderContext + }); + + Vue.version = '2.6.11'; + + /* */ + + // these are reserved for web because they are directly compiled away + // during template compilation + var isReservedAttr = makeMap('style,class'); + + // attributes that should be using props for binding + var acceptValue = makeMap('input,textarea,option,select,progress'); + var mustUseProp = function (tag, type, attr) { + return ( + (attr === 'value' && acceptValue(tag)) && type !== 'button' || + (attr === 'selected' && tag === 'option') || + (attr === 'checked' && tag === 'input') || + (attr === 'muted' && tag === 'video') + ) + }; + + var isEnumeratedAttr = makeMap('contenteditable,draggable,spellcheck'); + + var isValidContentEditableValue = makeMap('events,caret,typing,plaintext-only'); + + var convertEnumeratedValue = function (key, value) { + return isFalsyAttrValue(value) || value === 'false' + ? 'false' + // allow arbitrary string value for contenteditable + : key === 'contenteditable' && isValidContentEditableValue(value) + ? value + : 'true' + }; + + var isBooleanAttr = makeMap( + 'allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,' + + 'default,defaultchecked,defaultmuted,defaultselected,defer,disabled,' + + 'enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,' + + 'muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,' + + 'required,reversed,scoped,seamless,selected,sortable,translate,' + + 'truespeed,typemustmatch,visible' + ); + + var xlinkNS = 'http://www.w3.org/1999/xlink'; + + var isXlink = function (name) { + return name.charAt(5) === ':' && name.slice(0, 5) === 'xlink' + }; + + var getXlinkProp = function (name) { + return isXlink(name) ? name.slice(6, name.length) : '' + }; + + var isFalsyAttrValue = function (val) { + return val == null || val === false + }; + + /* */ + + function genClassForVnode (vnode) { + var data = vnode.data; + var parentNode = vnode; + var childNode = vnode; + while (isDef(childNode.componentInstance)) { + childNode = childNode.componentInstance._vnode; + if (childNode && childNode.data) { + data = mergeClassData(childNode.data, data); + } + } + while (isDef(parentNode = parentNode.parent)) { + if (parentNode && parentNode.data) { + data = mergeClassData(data, parentNode.data); + } + } + return renderClass(data.staticClass, data.class) + } + + function mergeClassData (child, parent) { + return { + staticClass: concat(child.staticClass, parent.staticClass), + class: isDef(child.class) + ? [child.class, parent.class] + : parent.class + } + } + + function renderClass ( + staticClass, + dynamicClass + ) { + if (isDef(staticClass) || isDef(dynamicClass)) { + return concat(staticClass, stringifyClass(dynamicClass)) + } + /* istanbul ignore next */ + return '' + } + + function concat (a, b) { + return a ? b ? (a + ' ' + b) : a : (b || '') + } + + function stringifyClass (value) { + if (Array.isArray(value)) { + return stringifyArray(value) + } + if (isObject(value)) { + return stringifyObject(value) + } + if (typeof value === 'string') { + return value + } + /* istanbul ignore next */ + return '' + } + + function stringifyArray (value) { + var res = ''; + var stringified; + for (var i = 0, l = value.length; i < l; i++) { + if (isDef(stringified = stringifyClass(value[i])) && stringified !== '') { + if (res) { res += ' '; } + res += stringified; + } + } + return res + } + + function stringifyObject (value) { + var res = ''; + for (var key in value) { + if (value[key]) { + if (res) { res += ' '; } + res += key; + } + } + return res + } + + /* */ + + var namespaceMap = { + svg: 'http://www.w3.org/2000/svg', + math: 'http://www.w3.org/1998/Math/MathML' + }; + + var isHTMLTag = makeMap( + 'html,body,base,head,link,meta,style,title,' + + 'address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,' + + 'div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,' + + 'a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,' + + 's,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,' + + 'embed,object,param,source,canvas,script,noscript,del,ins,' + + 'caption,col,colgroup,table,thead,tbody,td,th,tr,' + + 'button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,' + + 'output,progress,select,textarea,' + + 'details,dialog,menu,menuitem,summary,' + + 'content,element,shadow,template,blockquote,iframe,tfoot' + ); + + // this map is intentionally selective, only covering SVG elements that may + // contain child elements. + var isSVG = makeMap( + 'svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,' + + 'foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,' + + 'polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view', + true + ); + + var isPreTag = function (tag) { return tag === 'pre'; }; + + var isReservedTag = function (tag) { + return isHTMLTag(tag) || isSVG(tag) + }; + + function getTagNamespace (tag) { + if (isSVG(tag)) { + return 'svg' + } + // basic support for MathML + // note it doesn't support other MathML elements being component roots + if (tag === 'math') { + return 'math' + } + } + + var unknownElementCache = Object.create(null); + function isUnknownElement (tag) { + /* istanbul ignore if */ + if (!inBrowser) { + return true + } + if (isReservedTag(tag)) { + return false + } + tag = tag.toLowerCase(); + /* istanbul ignore if */ + if (unknownElementCache[tag] != null) { + return unknownElementCache[tag] + } + var el = document.createElement(tag); + if (tag.indexOf('-') > -1) { + // http://stackoverflow.com/a/28210364/1070244 + return (unknownElementCache[tag] = ( + el.constructor === window.HTMLUnknownElement || + el.constructor === window.HTMLElement + )) + } else { + return (unknownElementCache[tag] = /HTMLUnknownElement/.test(el.toString())) + } + } + + var isTextInputType = makeMap('text,number,password,search,email,tel,url'); + + /* */ + + /** + * Query an element selector if it's not an element already. + */ + function query (el) { + if (typeof el === 'string') { + var selected = document.querySelector(el); + if (!selected) { + warn( + 'Cannot find element: ' + el + ); + return document.createElement('div') + } + return selected + } else { + return el + } + } + + /* */ + + function createElement$1 (tagName, vnode) { + var elm = document.createElement(tagName); + if (tagName !== 'select') { + return elm + } + // false or null will remove the attribute but undefined will not + if (vnode.data && vnode.data.attrs && vnode.data.attrs.multiple !== undefined) { + elm.setAttribute('multiple', 'multiple'); + } + return elm + } + + function createElementNS (namespace, tagName) { + return document.createElementNS(namespaceMap[namespace], tagName) + } + + function createTextNode (text) { + return document.createTextNode(text) + } + + function createComment (text) { + return document.createComment(text) + } + + function insertBefore (parentNode, newNode, referenceNode) { + parentNode.insertBefore(newNode, referenceNode); + } + + function removeChild (node, child) { + node.removeChild(child); + } + + function appendChild (node, child) { + node.appendChild(child); + } + + function parentNode (node) { + return node.parentNode + } + + function nextSibling (node) { + return node.nextSibling + } + + function tagName (node) { + return node.tagName + } + + function setTextContent (node, text) { + node.textContent = text; + } + + function setStyleScope (node, scopeId) { + node.setAttribute(scopeId, ''); + } + + var nodeOps = /*#__PURE__*/Object.freeze({ + createElement: createElement$1, + createElementNS: createElementNS, + createTextNode: createTextNode, + createComment: createComment, + insertBefore: insertBefore, + removeChild: removeChild, + appendChild: appendChild, + parentNode: parentNode, + nextSibling: nextSibling, + tagName: tagName, + setTextContent: setTextContent, + setStyleScope: setStyleScope + }); + + /* */ + + var ref = { + create: function create (_, vnode) { + registerRef(vnode); + }, + update: function update (oldVnode, vnode) { + if (oldVnode.data.ref !== vnode.data.ref) { + registerRef(oldVnode, true); + registerRef(vnode); + } + }, + destroy: function destroy (vnode) { + registerRef(vnode, true); + } + }; + + function registerRef (vnode, isRemoval) { + var key = vnode.data.ref; + if (!isDef(key)) { return } + + var vm = vnode.context; + var ref = vnode.componentInstance || vnode.elm; + var refs = vm.$refs; + if (isRemoval) { + if (Array.isArray(refs[key])) { + remove(refs[key], ref); + } else if (refs[key] === ref) { + refs[key] = undefined; + } + } else { + if (vnode.data.refInFor) { + if (!Array.isArray(refs[key])) { + refs[key] = [ref]; + } else if (refs[key].indexOf(ref) < 0) { + // $flow-disable-line + refs[key].push(ref); + } + } else { + refs[key] = ref; + } + } + } + + /** + * Virtual DOM patching algorithm based on Snabbdom by + * Simon Friis Vindum (@paldepind) + * Licensed under the MIT License + * https://github.com/paldepind/snabbdom/blob/master/LICENSE + * + * modified by Evan You (@yyx990803) + * + * Not type-checking this because this file is perf-critical and the cost + * of making flow understand it is not worth it. + */ + + var emptyNode = new VNode('', {}, []); + + var hooks = ['create', 'activate', 'update', 'remove', 'destroy']; + + function sameVnode (a, b) { + return ( + a.key === b.key && ( + ( + a.tag === b.tag && + a.isComment === b.isComment && + isDef(a.data) === isDef(b.data) && + sameInputType(a, b) + ) || ( + isTrue(a.isAsyncPlaceholder) && + a.asyncFactory === b.asyncFactory && + isUndef(b.asyncFactory.error) + ) + ) + ) + } + + function sameInputType (a, b) { + if (a.tag !== 'input') { return true } + var i; + var typeA = isDef(i = a.data) && isDef(i = i.attrs) && i.type; + var typeB = isDef(i = b.data) && isDef(i = i.attrs) && i.type; + return typeA === typeB || isTextInputType(typeA) && isTextInputType(typeB) + } + + function createKeyToOldIdx (children, beginIdx, endIdx) { + var i, key; + var map = {}; + for (i = beginIdx; i <= endIdx; ++i) { + key = children[i].key; + if (isDef(key)) { map[key] = i; } + } + return map + } + + function createPatchFunction (backend) { + var i, j; + var cbs = {}; + + var modules = backend.modules; + var nodeOps = backend.nodeOps; + + for (i = 0; i < hooks.length; ++i) { + cbs[hooks[i]] = []; + for (j = 0; j < modules.length; ++j) { + if (isDef(modules[j][hooks[i]])) { + cbs[hooks[i]].push(modules[j][hooks[i]]); + } + } + } + + function emptyNodeAt (elm) { + return new VNode(nodeOps.tagName(elm).toLowerCase(), {}, [], undefined, elm) + } + + function createRmCb (childElm, listeners) { + function remove$$1 () { + if (--remove$$1.listeners === 0) { + removeNode(childElm); + } + } + remove$$1.listeners = listeners; + return remove$$1 + } + + function removeNode (el) { + var parent = nodeOps.parentNode(el); + // element may have already been removed due to v-html / v-text + if (isDef(parent)) { + nodeOps.removeChild(parent, el); + } + } + + function isUnknownElement$$1 (vnode, inVPre) { + return ( + !inVPre && + !vnode.ns && + !( + config.ignoredElements.length && + config.ignoredElements.some(function (ignore) { + return isRegExp(ignore) + ? ignore.test(vnode.tag) + : ignore === vnode.tag + }) + ) && + config.isUnknownElement(vnode.tag) + ) + } + + var creatingElmInVPre = 0; + + function createElm ( + vnode, + insertedVnodeQueue, + parentElm, + refElm, + nested, + ownerArray, + index + ) { + if (isDef(vnode.elm) && isDef(ownerArray)) { + // This vnode was used in a previous render! + // now it's used as a new node, overwriting its elm would cause + // potential patch errors down the road when it's used as an insertion + // reference node. Instead, we clone the node on-demand before creating + // associated DOM element for it. + vnode = ownerArray[index] = cloneVNode(vnode); + } + + vnode.isRootInsert = !nested; // for transition enter check + if (createComponent(vnode, insertedVnodeQueue, parentElm, refElm)) { + return + } + + var data = vnode.data; + var children = vnode.children; + var tag = vnode.tag; + if (isDef(tag)) { + { + if (data && data.pre) { + creatingElmInVPre++; + } + if (isUnknownElement$$1(vnode, creatingElmInVPre)) { + warn( + 'Unknown custom element: <' + tag + '> - did you ' + + 'register the component correctly? For recursive components, ' + + 'make sure to provide the "name" option.', + vnode.context + ); + } + } + + vnode.elm = vnode.ns + ? nodeOps.createElementNS(vnode.ns, tag) + : nodeOps.createElement(tag, vnode); + setScope(vnode); + + /* istanbul ignore if */ + { + createChildren(vnode, children, insertedVnodeQueue); + if (isDef(data)) { + invokeCreateHooks(vnode, insertedVnodeQueue); + } + insert(parentElm, vnode.elm, refElm); + } + + if (data && data.pre) { + creatingElmInVPre--; + } + } else if (isTrue(vnode.isComment)) { + vnode.elm = nodeOps.createComment(vnode.text); + insert(parentElm, vnode.elm, refElm); + } else { + vnode.elm = nodeOps.createTextNode(vnode.text); + insert(parentElm, vnode.elm, refElm); + } + } + + function createComponent (vnode, insertedVnodeQueue, parentElm, refElm) { + var i = vnode.data; + if (isDef(i)) { + var isReactivated = isDef(vnode.componentInstance) && i.keepAlive; + if (isDef(i = i.hook) && isDef(i = i.init)) { + i(vnode, false /* hydrating */); + } + // after calling the init hook, if the vnode is a child component + // it should've created a child instance and mounted it. the child + // component also has set the placeholder vnode's elm. + // in that case we can just return the element and be done. + if (isDef(vnode.componentInstance)) { + initComponent(vnode, insertedVnodeQueue); + insert(parentElm, vnode.elm, refElm); + if (isTrue(isReactivated)) { + reactivateComponent(vnode, insertedVnodeQueue, parentElm, refElm); + } + return true + } + } + } + + function initComponent (vnode, insertedVnodeQueue) { + if (isDef(vnode.data.pendingInsert)) { + insertedVnodeQueue.push.apply(insertedVnodeQueue, vnode.data.pendingInsert); + vnode.data.pendingInsert = null; + } + vnode.elm = vnode.componentInstance.$el; + if (isPatchable(vnode)) { + invokeCreateHooks(vnode, insertedVnodeQueue); + setScope(vnode); + } else { + // empty component root. + // skip all element-related modules except for ref (#3455) + registerRef(vnode); + // make sure to invoke the insert hook + insertedVnodeQueue.push(vnode); + } + } + + function reactivateComponent (vnode, insertedVnodeQueue, parentElm, refElm) { + var i; + // hack for #4339: a reactivated component with inner transition + // does not trigger because the inner node's created hooks are not called + // again. It's not ideal to involve module-specific logic in here but + // there doesn't seem to be a better way to do it. + var innerNode = vnode; + while (innerNode.componentInstance) { + innerNode = innerNode.componentInstance._vnode; + if (isDef(i = innerNode.data) && isDef(i = i.transition)) { + for (i = 0; i < cbs.activate.length; ++i) { + cbs.activate[i](emptyNode, innerNode); + } + insertedVnodeQueue.push(innerNode); + break + } + } + // unlike a newly created component, + // a reactivated keep-alive component doesn't insert itself + insert(parentElm, vnode.elm, refElm); + } + + function insert (parent, elm, ref$$1) { + if (isDef(parent)) { + if (isDef(ref$$1)) { + if (nodeOps.parentNode(ref$$1) === parent) { + nodeOps.insertBefore(parent, elm, ref$$1); + } + } else { + nodeOps.appendChild(parent, elm); + } + } + } + + function createChildren (vnode, children, insertedVnodeQueue) { + if (Array.isArray(children)) { + { + checkDuplicateKeys(children); + } + for (var i = 0; i < children.length; ++i) { + createElm(children[i], insertedVnodeQueue, vnode.elm, null, true, children, i); + } + } else if (isPrimitive(vnode.text)) { + nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(String(vnode.text))); + } + } + + function isPatchable (vnode) { + while (vnode.componentInstance) { + vnode = vnode.componentInstance._vnode; + } + return isDef(vnode.tag) + } + + function invokeCreateHooks (vnode, insertedVnodeQueue) { + for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) { + cbs.create[i$1](emptyNode, vnode); + } + i = vnode.data.hook; // Reuse variable + if (isDef(i)) { + if (isDef(i.create)) { i.create(emptyNode, vnode); } + if (isDef(i.insert)) { insertedVnodeQueue.push(vnode); } + } + } + + // set scope id attribute for scoped CSS. + // this is implemented as a special case to avoid the overhead + // of going through the normal attribute patching process. + function setScope (vnode) { + var i; + if (isDef(i = vnode.fnScopeId)) { + nodeOps.setStyleScope(vnode.elm, i); + } else { + var ancestor = vnode; + while (ancestor) { + if (isDef(i = ancestor.context) && isDef(i = i.$options._scopeId)) { + nodeOps.setStyleScope(vnode.elm, i); + } + ancestor = ancestor.parent; + } + } + // for slot content they should also get the scopeId from the host instance. + if (isDef(i = activeInstance) && + i !== vnode.context && + i !== vnode.fnContext && + isDef(i = i.$options._scopeId) + ) { + nodeOps.setStyleScope(vnode.elm, i); + } + } + + function addVnodes (parentElm, refElm, vnodes, startIdx, endIdx, insertedVnodeQueue) { + for (; startIdx <= endIdx; ++startIdx) { + createElm(vnodes[startIdx], insertedVnodeQueue, parentElm, refElm, false, vnodes, startIdx); + } + } + + function invokeDestroyHook (vnode) { + var i, j; + var data = vnode.data; + if (isDef(data)) { + if (isDef(i = data.hook) && isDef(i = i.destroy)) { i(vnode); } + for (i = 0; i < cbs.destroy.length; ++i) { cbs.destroy[i](vnode); } + } + if (isDef(i = vnode.children)) { + for (j = 0; j < vnode.children.length; ++j) { + invokeDestroyHook(vnode.children[j]); + } + } + } + + function removeVnodes (vnodes, startIdx, endIdx) { + for (; startIdx <= endIdx; ++startIdx) { + var ch = vnodes[startIdx]; + if (isDef(ch)) { + if (isDef(ch.tag)) { + removeAndInvokeRemoveHook(ch); + invokeDestroyHook(ch); + } else { // Text node + removeNode(ch.elm); + } + } + } + } + + function removeAndInvokeRemoveHook (vnode, rm) { + if (isDef(rm) || isDef(vnode.data)) { + var i; + var listeners = cbs.remove.length + 1; + if (isDef(rm)) { + // we have a recursively passed down rm callback + // increase the listeners count + rm.listeners += listeners; + } else { + // directly removing + rm = createRmCb(vnode.elm, listeners); + } + // recursively invoke hooks on child component root node + if (isDef(i = vnode.componentInstance) && isDef(i = i._vnode) && isDef(i.data)) { + removeAndInvokeRemoveHook(i, rm); + } + for (i = 0; i < cbs.remove.length; ++i) { + cbs.remove[i](vnode, rm); + } + if (isDef(i = vnode.data.hook) && isDef(i = i.remove)) { + i(vnode, rm); + } else { + rm(); + } + } else { + removeNode(vnode.elm); + } + } + + function updateChildren (parentElm, oldCh, newCh, insertedVnodeQueue, removeOnly) { + var oldStartIdx = 0; + var newStartIdx = 0; + var oldEndIdx = oldCh.length - 1; + var oldStartVnode = oldCh[0]; + var oldEndVnode = oldCh[oldEndIdx]; + var newEndIdx = newCh.length - 1; + var newStartVnode = newCh[0]; + var newEndVnode = newCh[newEndIdx]; + var oldKeyToIdx, idxInOld, vnodeToMove, refElm; + + // removeOnly is a special flag used only by <transition-group> + // to ensure removed elements stay in correct relative positions + // during leaving transitions + var canMove = !removeOnly; + + { + checkDuplicateKeys(newCh); + } + + while (oldStartIdx <= oldEndIdx && newStartIdx <= newEndIdx) { + if (isUndef(oldStartVnode)) { + oldStartVnode = oldCh[++oldStartIdx]; // Vnode has been moved left + } else if (isUndef(oldEndVnode)) { + oldEndVnode = oldCh[--oldEndIdx]; + } else if (sameVnode(oldStartVnode, newStartVnode)) { + patchVnode(oldStartVnode, newStartVnode, insertedVnodeQueue, newCh, newStartIdx); + oldStartVnode = oldCh[++oldStartIdx]; + newStartVnode = newCh[++newStartIdx]; + } else if (sameVnode(oldEndVnode, newEndVnode)) { + patchVnode(oldEndVnode, newEndVnode, insertedVnodeQueue, newCh, newEndIdx); + oldEndVnode = oldCh[--oldEndIdx]; + newEndVnode = newCh[--newEndIdx]; + } else if (sameVnode(oldStartVnode, newEndVnode)) { // Vnode moved right + patchVnode(oldStartVnode, newEndVnode, insertedVnodeQueue, newCh, newEndIdx); + canMove && nodeOps.insertBefore(parentElm, oldStartVnode.elm, nodeOps.nextSibling(oldEndVnode.elm)); + oldStartVnode = oldCh[++oldStartIdx]; + newEndVnode = newCh[--newEndIdx]; + } else if (sameVnode(oldEndVnode, newStartVnode)) { // Vnode moved left + patchVnode(oldEndVnode, newStartVnode, insertedVnodeQueue, newCh, newStartIdx); + canMove && nodeOps.insertBefore(parentElm, oldEndVnode.elm, oldStartVnode.elm); + oldEndVnode = oldCh[--oldEndIdx]; + newStartVnode = newCh[++newStartIdx]; + } else { + if (isUndef(oldKeyToIdx)) { oldKeyToIdx = createKeyToOldIdx(oldCh, oldStartIdx, oldEndIdx); } + idxInOld = isDef(newStartVnode.key) + ? oldKeyToIdx[newStartVnode.key] + : findIdxInOld(newStartVnode, oldCh, oldStartIdx, oldEndIdx); + if (isUndef(idxInOld)) { // New element + createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx); + } else { + vnodeToMove = oldCh[idxInOld]; + if (sameVnode(vnodeToMove, newStartVnode)) { + patchVnode(vnodeToMove, newStartVnode, insertedVnodeQueue, newCh, newStartIdx); + oldCh[idxInOld] = undefined; + canMove && nodeOps.insertBefore(parentElm, vnodeToMove.elm, oldStartVnode.elm); + } else { + // same key but different element. treat as new element + createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx); + } + } + newStartVnode = newCh[++newStartIdx]; + } + } + if (oldStartIdx > oldEndIdx) { + refElm = isUndef(newCh[newEndIdx + 1]) ? null : newCh[newEndIdx + 1].elm; + addVnodes(parentElm, refElm, newCh, newStartIdx, newEndIdx, insertedVnodeQueue); + } else if (newStartIdx > newEndIdx) { + removeVnodes(oldCh, oldStartIdx, oldEndIdx); + } + } + + function checkDuplicateKeys (children) { + var seenKeys = {}; + for (var i = 0; i < children.length; i++) { + var vnode = children[i]; + var key = vnode.key; + if (isDef(key)) { + if (seenKeys[key]) { + warn( + ("Duplicate keys detected: '" + key + "'. This may cause an update error."), + vnode.context + ); + } else { + seenKeys[key] = true; + } + } + } + } + + function findIdxInOld (node, oldCh, start, end) { + for (var i = start; i < end; i++) { + var c = oldCh[i]; + if (isDef(c) && sameVnode(node, c)) { return i } + } + } + + function patchVnode ( + oldVnode, + vnode, + insertedVnodeQueue, + ownerArray, + index, + removeOnly + ) { + if (oldVnode === vnode) { + return + } + + if (isDef(vnode.elm) && isDef(ownerArray)) { + // clone reused vnode + vnode = ownerArray[index] = cloneVNode(vnode); + } + + var elm = vnode.elm = oldVnode.elm; + + if (isTrue(oldVnode.isAsyncPlaceholder)) { + if (isDef(vnode.asyncFactory.resolved)) { + hydrate(oldVnode.elm, vnode, insertedVnodeQueue); + } else { + vnode.isAsyncPlaceholder = true; + } + return + } + + // reuse element for static trees. + // note we only do this if the vnode is cloned - + // if the new node is not cloned it means the render functions have been + // reset by the hot-reload-api and we need to do a proper re-render. + if (isTrue(vnode.isStatic) && + isTrue(oldVnode.isStatic) && + vnode.key === oldVnode.key && + (isTrue(vnode.isCloned) || isTrue(vnode.isOnce)) + ) { + vnode.componentInstance = oldVnode.componentInstance; + return + } + + var i; + var data = vnode.data; + if (isDef(data) && isDef(i = data.hook) && isDef(i = i.prepatch)) { + i(oldVnode, vnode); + } + + var oldCh = oldVnode.children; + var ch = vnode.children; + if (isDef(data) && isPatchable(vnode)) { + for (i = 0; i < cbs.update.length; ++i) { cbs.update[i](oldVnode, vnode); } + if (isDef(i = data.hook) && isDef(i = i.update)) { i(oldVnode, vnode); } + } + if (isUndef(vnode.text)) { + if (isDef(oldCh) && isDef(ch)) { + if (oldCh !== ch) { updateChildren(elm, oldCh, ch, insertedVnodeQueue, removeOnly); } + } else if (isDef(ch)) { + { + checkDuplicateKeys(ch); + } + if (isDef(oldVnode.text)) { nodeOps.setTextContent(elm, ''); } + addVnodes(elm, null, ch, 0, ch.length - 1, insertedVnodeQueue); + } else if (isDef(oldCh)) { + removeVnodes(oldCh, 0, oldCh.length - 1); + } else if (isDef(oldVnode.text)) { + nodeOps.setTextContent(elm, ''); + } + } else if (oldVnode.text !== vnode.text) { + nodeOps.setTextContent(elm, vnode.text); + } + if (isDef(data)) { + if (isDef(i = data.hook) && isDef(i = i.postpatch)) { i(oldVnode, vnode); } + } + } + + function invokeInsertHook (vnode, queue, initial) { + // delay insert hooks for component root nodes, invoke them after the + // element is really inserted + if (isTrue(initial) && isDef(vnode.parent)) { + vnode.parent.data.pendingInsert = queue; + } else { + for (var i = 0; i < queue.length; ++i) { + queue[i].data.hook.insert(queue[i]); + } + } + } + + var hydrationBailed = false; + // list of modules that can skip create hook during hydration because they + // are already rendered on the client or has no need for initialization + // Note: style is excluded because it relies on initial clone for future + // deep updates (#7063). + var isRenderedModule = makeMap('attrs,class,staticClass,staticStyle,key'); + + // Note: this is a browser-only function so we can assume elms are DOM nodes. + function hydrate (elm, vnode, insertedVnodeQueue, inVPre) { + var i; + var tag = vnode.tag; + var data = vnode.data; + var children = vnode.children; + inVPre = inVPre || (data && data.pre); + vnode.elm = elm; + + if (isTrue(vnode.isComment) && isDef(vnode.asyncFactory)) { + vnode.isAsyncPlaceholder = true; + return true + } + // assert node match + { + if (!assertNodeMatch(elm, vnode, inVPre)) { + return false + } + } + if (isDef(data)) { + if (isDef(i = data.hook) && isDef(i = i.init)) { i(vnode, true /* hydrating */); } + if (isDef(i = vnode.componentInstance)) { + // child component. it should have hydrated its own tree. + initComponent(vnode, insertedVnodeQueue); + return true + } + } + if (isDef(tag)) { + if (isDef(children)) { + // empty element, allow client to pick up and populate children + if (!elm.hasChildNodes()) { + createChildren(vnode, children, insertedVnodeQueue); + } else { + // v-html and domProps: innerHTML + if (isDef(i = data) && isDef(i = i.domProps) && isDef(i = i.innerHTML)) { + if (i !== elm.innerHTML) { + /* istanbul ignore if */ + if (typeof console !== 'undefined' && + !hydrationBailed + ) { + hydrationBailed = true; + console.warn('Parent: ', elm); + console.warn('server innerHTML: ', i); + console.warn('client innerHTML: ', elm.innerHTML); + } + return false + } + } else { + // iterate and compare children lists + var childrenMatch = true; + var childNode = elm.firstChild; + for (var i$1 = 0; i$1 < children.length; i$1++) { + if (!childNode || !hydrate(childNode, children[i$1], insertedVnodeQueue, inVPre)) { + childrenMatch = false; + break + } + childNode = childNode.nextSibling; + } + // if childNode is not null, it means the actual childNodes list is + // longer than the virtual children list. + if (!childrenMatch || childNode) { + /* istanbul ignore if */ + if (typeof console !== 'undefined' && + !hydrationBailed + ) { + hydrationBailed = true; + console.warn('Parent: ', elm); + console.warn('Mismatching childNodes vs. VNodes: ', elm.childNodes, children); + } + return false + } + } + } + } + if (isDef(data)) { + var fullInvoke = false; + for (var key in data) { + if (!isRenderedModule(key)) { + fullInvoke = true; + invokeCreateHooks(vnode, insertedVnodeQueue); + break + } + } + if (!fullInvoke && data['class']) { + // ensure collecting deps for deep class bindings for future updates + traverse(data['class']); + } + } + } else if (elm.data !== vnode.text) { + elm.data = vnode.text; + } + return true + } + + function assertNodeMatch (node, vnode, inVPre) { + if (isDef(vnode.tag)) { + return vnode.tag.indexOf('vue-component') === 0 || ( + !isUnknownElement$$1(vnode, inVPre) && + vnode.tag.toLowerCase() === (node.tagName && node.tagName.toLowerCase()) + ) + } else { + return node.nodeType === (vnode.isComment ? 8 : 3) + } + } + + return function patch (oldVnode, vnode, hydrating, removeOnly) { + if (isUndef(vnode)) { + if (isDef(oldVnode)) { invokeDestroyHook(oldVnode); } + return + } + + var isInitialPatch = false; + var insertedVnodeQueue = []; + + if (isUndef(oldVnode)) { + // empty mount (likely as component), create new root element + isInitialPatch = true; + createElm(vnode, insertedVnodeQueue); + } else { + var isRealElement = isDef(oldVnode.nodeType); + if (!isRealElement && sameVnode(oldVnode, vnode)) { + // patch existing root node + patchVnode(oldVnode, vnode, insertedVnodeQueue, null, null, removeOnly); + } else { + if (isRealElement) { + // mounting to a real element + // check if this is server-rendered content and if we can perform + // a successful hydration. + if (oldVnode.nodeType === 1 && oldVnode.hasAttribute(SSR_ATTR)) { + oldVnode.removeAttribute(SSR_ATTR); + hydrating = true; + } + if (isTrue(hydrating)) { + if (hydrate(oldVnode, vnode, insertedVnodeQueue)) { + invokeInsertHook(vnode, insertedVnodeQueue, true); + return oldVnode + } else { + warn( + 'The client-side rendered virtual DOM tree is not matching ' + + 'server-rendered content. This is likely caused by incorrect ' + + 'HTML markup, for example nesting block-level elements inside ' + + '<p>, or missing <tbody>. Bailing hydration and performing ' + + 'full client-side render.' + ); + } + } + // either not server-rendered, or hydration failed. + // create an empty node and replace it + oldVnode = emptyNodeAt(oldVnode); + } + + // replacing existing element + var oldElm = oldVnode.elm; + var parentElm = nodeOps.parentNode(oldElm); + + // create new node + createElm( + vnode, + insertedVnodeQueue, + // extremely rare edge case: do not insert if old element is in a + // leaving transition. Only happens when combining transition + + // keep-alive + HOCs. (#4590) + oldElm._leaveCb ? null : parentElm, + nodeOps.nextSibling(oldElm) + ); + + // update parent placeholder node element, recursively + if (isDef(vnode.parent)) { + var ancestor = vnode.parent; + var patchable = isPatchable(vnode); + while (ancestor) { + for (var i = 0; i < cbs.destroy.length; ++i) { + cbs.destroy[i](ancestor); + } + ancestor.elm = vnode.elm; + if (patchable) { + for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) { + cbs.create[i$1](emptyNode, ancestor); + } + // #6513 + // invoke insert hooks that may have been merged by create hooks. + // e.g. for directives that uses the "inserted" hook. + var insert = ancestor.data.hook.insert; + if (insert.merged) { + // start at index 1 to avoid re-invoking component mounted hook + for (var i$2 = 1; i$2 < insert.fns.length; i$2++) { + insert.fns[i$2](); + } + } + } else { + registerRef(ancestor); + } + ancestor = ancestor.parent; + } + } + + // destroy old node + if (isDef(parentElm)) { + removeVnodes([oldVnode], 0, 0); + } else if (isDef(oldVnode.tag)) { + invokeDestroyHook(oldVnode); + } + } + } + + invokeInsertHook(vnode, insertedVnodeQueue, isInitialPatch); + return vnode.elm + } + } + + /* */ + + var directives = { + create: updateDirectives, + update: updateDirectives, + destroy: function unbindDirectives (vnode) { + updateDirectives(vnode, emptyNode); + } + }; + + function updateDirectives (oldVnode, vnode) { + if (oldVnode.data.directives || vnode.data.directives) { + _update(oldVnode, vnode); + } + } + + function _update (oldVnode, vnode) { + var isCreate = oldVnode === emptyNode; + var isDestroy = vnode === emptyNode; + var oldDirs = normalizeDirectives$1(oldVnode.data.directives, oldVnode.context); + var newDirs = normalizeDirectives$1(vnode.data.directives, vnode.context); + + var dirsWithInsert = []; + var dirsWithPostpatch = []; + + var key, oldDir, dir; + for (key in newDirs) { + oldDir = oldDirs[key]; + dir = newDirs[key]; + if (!oldDir) { + // new directive, bind + callHook$1(dir, 'bind', vnode, oldVnode); + if (dir.def && dir.def.inserted) { + dirsWithInsert.push(dir); + } + } else { + // existing directive, update + dir.oldValue = oldDir.value; + dir.oldArg = oldDir.arg; + callHook$1(dir, 'update', vnode, oldVnode); + if (dir.def && dir.def.componentUpdated) { + dirsWithPostpatch.push(dir); + } + } + } + + if (dirsWithInsert.length) { + var callInsert = function () { + for (var i = 0; i < dirsWithInsert.length; i++) { + callHook$1(dirsWithInsert[i], 'inserted', vnode, oldVnode); + } + }; + if (isCreate) { + mergeVNodeHook(vnode, 'insert', callInsert); + } else { + callInsert(); + } + } + + if (dirsWithPostpatch.length) { + mergeVNodeHook(vnode, 'postpatch', function () { + for (var i = 0; i < dirsWithPostpatch.length; i++) { + callHook$1(dirsWithPostpatch[i], 'componentUpdated', vnode, oldVnode); + } + }); + } + + if (!isCreate) { + for (key in oldDirs) { + if (!newDirs[key]) { + // no longer present, unbind + callHook$1(oldDirs[key], 'unbind', oldVnode, oldVnode, isDestroy); + } + } + } + } + + var emptyModifiers = Object.create(null); + + function normalizeDirectives$1 ( + dirs, + vm + ) { + var res = Object.create(null); + if (!dirs) { + // $flow-disable-line + return res + } + var i, dir; + for (i = 0; i < dirs.length; i++) { + dir = dirs[i]; + if (!dir.modifiers) { + // $flow-disable-line + dir.modifiers = emptyModifiers; + } + res[getRawDirName(dir)] = dir; + dir.def = resolveAsset(vm.$options, 'directives', dir.name, true); + } + // $flow-disable-line + return res + } + + function getRawDirName (dir) { + return dir.rawName || ((dir.name) + "." + (Object.keys(dir.modifiers || {}).join('.'))) + } + + function callHook$1 (dir, hook, vnode, oldVnode, isDestroy) { + var fn = dir.def && dir.def[hook]; + if (fn) { + try { + fn(vnode.elm, dir, vnode, oldVnode, isDestroy); + } catch (e) { + handleError(e, vnode.context, ("directive " + (dir.name) + " " + hook + " hook")); + } + } + } + + var baseModules = [ + ref, + directives + ]; + + /* */ + + function updateAttrs (oldVnode, vnode) { + var opts = vnode.componentOptions; + if (isDef(opts) && opts.Ctor.options.inheritAttrs === false) { + return + } + if (isUndef(oldVnode.data.attrs) && isUndef(vnode.data.attrs)) { + return + } + var key, cur, old; + var elm = vnode.elm; + var oldAttrs = oldVnode.data.attrs || {}; + var attrs = vnode.data.attrs || {}; + // clone observed objects, as the user probably wants to mutate it + if (isDef(attrs.__ob__)) { + attrs = vnode.data.attrs = extend({}, attrs); + } + + for (key in attrs) { + cur = attrs[key]; + old = oldAttrs[key]; + if (old !== cur) { + setAttr(elm, key, cur); + } + } + // #4391: in IE9, setting type can reset value for input[type=radio] + // #6666: IE/Edge forces progress value down to 1 before setting a max + /* istanbul ignore if */ + if ((isIE || isEdge) && attrs.value !== oldAttrs.value) { + setAttr(elm, 'value', attrs.value); + } + for (key in oldAttrs) { + if (isUndef(attrs[key])) { + if (isXlink(key)) { + elm.removeAttributeNS(xlinkNS, getXlinkProp(key)); + } else if (!isEnumeratedAttr(key)) { + elm.removeAttribute(key); + } + } + } + } + + function setAttr (el, key, value) { + if (el.tagName.indexOf('-') > -1) { + baseSetAttr(el, key, value); + } else if (isBooleanAttr(key)) { + // set attribute for blank value + // e.g. <option disabled>Select one</option> + if (isFalsyAttrValue(value)) { + el.removeAttribute(key); + } else { + // technically allowfullscreen is a boolean attribute for <iframe>, + // but Flash expects a value of "true" when used on <embed> tag + value = key === 'allowfullscreen' && el.tagName === 'EMBED' + ? 'true' + : key; + el.setAttribute(key, value); + } + } else if (isEnumeratedAttr(key)) { + el.setAttribute(key, convertEnumeratedValue(key, value)); + } else if (isXlink(key)) { + if (isFalsyAttrValue(value)) { + el.removeAttributeNS(xlinkNS, getXlinkProp(key)); + } else { + el.setAttributeNS(xlinkNS, key, value); + } + } else { + baseSetAttr(el, key, value); + } + } + + function baseSetAttr (el, key, value) { + if (isFalsyAttrValue(value)) { + el.removeAttribute(key); + } else { + // #7138: IE10 & 11 fires input event when setting placeholder on + // <textarea>... block the first input event and remove the blocker + // immediately. + /* istanbul ignore if */ + if ( + isIE && !isIE9 && + el.tagName === 'TEXTAREA' && + key === 'placeholder' && value !== '' && !el.__ieph + ) { + var blocker = function (e) { + e.stopImmediatePropagation(); + el.removeEventListener('input', blocker); + }; + el.addEventListener('input', blocker); + // $flow-disable-line + el.__ieph = true; /* IE placeholder patched */ + } + el.setAttribute(key, value); + } + } + + var attrs = { + create: updateAttrs, + update: updateAttrs + }; + + /* */ + + function updateClass (oldVnode, vnode) { + var el = vnode.elm; + var data = vnode.data; + var oldData = oldVnode.data; + if ( + isUndef(data.staticClass) && + isUndef(data.class) && ( + isUndef(oldData) || ( + isUndef(oldData.staticClass) && + isUndef(oldData.class) + ) + ) + ) { + return + } + + var cls = genClassForVnode(vnode); + + // handle transition classes + var transitionClass = el._transitionClasses; + if (isDef(transitionClass)) { + cls = concat(cls, stringifyClass(transitionClass)); + } + + // set the class + if (cls !== el._prevClass) { + el.setAttribute('class', cls); + el._prevClass = cls; + } + } + + var klass = { + create: updateClass, + update: updateClass + }; + + /* */ + + var validDivisionCharRE = /[\w).+\-_$\]]/; + + function parseFilters (exp) { + var inSingle = false; + var inDouble = false; + var inTemplateString = false; + var inRegex = false; + var curly = 0; + var square = 0; + var paren = 0; + var lastFilterIndex = 0; + var c, prev, i, expression, filters; + + for (i = 0; i < exp.length; i++) { + prev = c; + c = exp.charCodeAt(i); + if (inSingle) { + if (c === 0x27 && prev !== 0x5C) { inSingle = false; } + } else if (inDouble) { + if (c === 0x22 && prev !== 0x5C) { inDouble = false; } + } else if (inTemplateString) { + if (c === 0x60 && prev !== 0x5C) { inTemplateString = false; } + } else if (inRegex) { + if (c === 0x2f && prev !== 0x5C) { inRegex = false; } + } else if ( + c === 0x7C && // pipe + exp.charCodeAt(i + 1) !== 0x7C && + exp.charCodeAt(i - 1) !== 0x7C && + !curly && !square && !paren + ) { + if (expression === undefined) { + // first filter, end of expression + lastFilterIndex = i + 1; + expression = exp.slice(0, i).trim(); + } else { + pushFilter(); + } + } else { + switch (c) { + case 0x22: inDouble = true; break // " + case 0x27: inSingle = true; break // ' + case 0x60: inTemplateString = true; break // ` + case 0x28: paren++; break // ( + case 0x29: paren--; break // ) + case 0x5B: square++; break // [ + case 0x5D: square--; break // ] + case 0x7B: curly++; break // { + case 0x7D: curly--; break // } + } + if (c === 0x2f) { // / + var j = i - 1; + var p = (void 0); + // find first non-whitespace prev char + for (; j >= 0; j--) { + p = exp.charAt(j); + if (p !== ' ') { break } + } + if (!p || !validDivisionCharRE.test(p)) { + inRegex = true; + } + } + } + } + + if (expression === undefined) { + expression = exp.slice(0, i).trim(); + } else if (lastFilterIndex !== 0) { + pushFilter(); + } + + function pushFilter () { + (filters || (filters = [])).push(exp.slice(lastFilterIndex, i).trim()); + lastFilterIndex = i + 1; + } + + if (filters) { + for (i = 0; i < filters.length; i++) { + expression = wrapFilter(expression, filters[i]); + } + } + + return expression + } + + function wrapFilter (exp, filter) { + var i = filter.indexOf('('); + if (i < 0) { + // _f: resolveFilter + return ("_f(\"" + filter + "\")(" + exp + ")") + } else { + var name = filter.slice(0, i); + var args = filter.slice(i + 1); + return ("_f(\"" + name + "\")(" + exp + (args !== ')' ? ',' + args : args)) + } + } + + /* */ + + + + /* eslint-disable no-unused-vars */ + function baseWarn (msg, range) { + console.error(("[Vue compiler]: " + msg)); + } + /* eslint-enable no-unused-vars */ + + function pluckModuleFunction ( + modules, + key + ) { + return modules + ? modules.map(function (m) { return m[key]; }).filter(function (_) { return _; }) + : [] + } + + function addProp (el, name, value, range, dynamic) { + (el.props || (el.props = [])).push(rangeSetItem({ name: name, value: value, dynamic: dynamic }, range)); + el.plain = false; + } + + function addAttr (el, name, value, range, dynamic) { + var attrs = dynamic + ? (el.dynamicAttrs || (el.dynamicAttrs = [])) + : (el.attrs || (el.attrs = [])); + attrs.push(rangeSetItem({ name: name, value: value, dynamic: dynamic }, range)); + el.plain = false; + } + + // add a raw attr (use this in preTransforms) + function addRawAttr (el, name, value, range) { + el.attrsMap[name] = value; + el.attrsList.push(rangeSetItem({ name: name, value: value }, range)); + } + + function addDirective ( + el, + name, + rawName, + value, + arg, + isDynamicArg, + modifiers, + range + ) { + (el.directives || (el.directives = [])).push(rangeSetItem({ + name: name, + rawName: rawName, + value: value, + arg: arg, + isDynamicArg: isDynamicArg, + modifiers: modifiers + }, range)); + el.plain = false; + } + + function prependModifierMarker (symbol, name, dynamic) { + return dynamic + ? ("_p(" + name + ",\"" + symbol + "\")") + : symbol + name // mark the event as captured + } + + function addHandler ( + el, + name, + value, + modifiers, + important, + warn, + range, + dynamic + ) { + modifiers = modifiers || emptyObject; + // warn prevent and passive modifier + /* istanbul ignore if */ + if ( + warn && + modifiers.prevent && modifiers.passive + ) { + warn( + 'passive and prevent can\'t be used together. ' + + 'Passive handler can\'t prevent default event.', + range + ); + } + + // normalize click.right and click.middle since they don't actually fire + // this is technically browser-specific, but at least for now browsers are + // the only target envs that have right/middle clicks. + if (modifiers.right) { + if (dynamic) { + name = "(" + name + ")==='click'?'contextmenu':(" + name + ")"; + } else if (name === 'click') { + name = 'contextmenu'; + delete modifiers.right; + } + } else if (modifiers.middle) { + if (dynamic) { + name = "(" + name + ")==='click'?'mouseup':(" + name + ")"; + } else if (name === 'click') { + name = 'mouseup'; + } + } + + // check capture modifier + if (modifiers.capture) { + delete modifiers.capture; + name = prependModifierMarker('!', name, dynamic); + } + if (modifiers.once) { + delete modifiers.once; + name = prependModifierMarker('~', name, dynamic); + } + /* istanbul ignore if */ + if (modifiers.passive) { + delete modifiers.passive; + name = prependModifierMarker('&', name, dynamic); + } + + var events; + if (modifiers.native) { + delete modifiers.native; + events = el.nativeEvents || (el.nativeEvents = {}); + } else { + events = el.events || (el.events = {}); + } + + var newHandler = rangeSetItem({ value: value.trim(), dynamic: dynamic }, range); + if (modifiers !== emptyObject) { + newHandler.modifiers = modifiers; + } + + var handlers = events[name]; + /* istanbul ignore if */ + if (Array.isArray(handlers)) { + important ? handlers.unshift(newHandler) : handlers.push(newHandler); + } else if (handlers) { + events[name] = important ? [newHandler, handlers] : [handlers, newHandler]; + } else { + events[name] = newHandler; + } + + el.plain = false; + } + + function getRawBindingAttr ( + el, + name + ) { + return el.rawAttrsMap[':' + name] || + el.rawAttrsMap['v-bind:' + name] || + el.rawAttrsMap[name] + } + + function getBindingAttr ( + el, + name, + getStatic + ) { + var dynamicValue = + getAndRemoveAttr(el, ':' + name) || + getAndRemoveAttr(el, 'v-bind:' + name); + if (dynamicValue != null) { + return parseFilters(dynamicValue) + } else if (getStatic !== false) { + var staticValue = getAndRemoveAttr(el, name); + if (staticValue != null) { + return JSON.stringify(staticValue) + } + } + } + + // note: this only removes the attr from the Array (attrsList) so that it + // doesn't get processed by processAttrs. + // By default it does NOT remove it from the map (attrsMap) because the map is + // needed during codegen. + function getAndRemoveAttr ( + el, + name, + removeFromMap + ) { + var val; + if ((val = el.attrsMap[name]) != null) { + var list = el.attrsList; + for (var i = 0, l = list.length; i < l; i++) { + if (list[i].name === name) { + list.splice(i, 1); + break + } + } + } + if (removeFromMap) { + delete el.attrsMap[name]; + } + return val + } + + function getAndRemoveAttrByRegex ( + el, + name + ) { + var list = el.attrsList; + for (var i = 0, l = list.length; i < l; i++) { + var attr = list[i]; + if (name.test(attr.name)) { + list.splice(i, 1); + return attr + } + } + } + + function rangeSetItem ( + item, + range + ) { + if (range) { + if (range.start != null) { + item.start = range.start; + } + if (range.end != null) { + item.end = range.end; + } + } + return item + } + + /* */ + + /** + * Cross-platform code generation for component v-model + */ + function genComponentModel ( + el, + value, + modifiers + ) { + var ref = modifiers || {}; + var number = ref.number; + var trim = ref.trim; + + var baseValueExpression = '$$v'; + var valueExpression = baseValueExpression; + if (trim) { + valueExpression = + "(typeof " + baseValueExpression + " === 'string'" + + "? " + baseValueExpression + ".trim()" + + ": " + baseValueExpression + ")"; + } + if (number) { + valueExpression = "_n(" + valueExpression + ")"; + } + var assignment = genAssignmentCode(value, valueExpression); + + el.model = { + value: ("(" + value + ")"), + expression: JSON.stringify(value), + callback: ("function (" + baseValueExpression + ") {" + assignment + "}") + }; + } + + /** + * Cross-platform codegen helper for generating v-model value assignment code. + */ + function genAssignmentCode ( + value, + assignment + ) { + var res = parseModel(value); + if (res.key === null) { + return (value + "=" + assignment) + } else { + return ("$set(" + (res.exp) + ", " + (res.key) + ", " + assignment + ")") + } + } + + /** + * Parse a v-model expression into a base path and a final key segment. + * Handles both dot-path and possible square brackets. + * + * Possible cases: + * + * - test + * - test[key] + * - test[test1[key]] + * - test["a"][key] + * - xxx.test[a[a].test1[key]] + * - test.xxx.a["asa"][test1[key]] + * + */ + + var len, str, chr, index$1, expressionPos, expressionEndPos; + + + + function parseModel (val) { + // Fix https://github.com/vuejs/vue/pull/7730 + // allow v-model="obj.val " (trailing whitespace) + val = val.trim(); + len = val.length; + + if (val.indexOf('[') < 0 || val.lastIndexOf(']') < len - 1) { + index$1 = val.lastIndexOf('.'); + if (index$1 > -1) { + return { + exp: val.slice(0, index$1), + key: '"' + val.slice(index$1 + 1) + '"' + } + } else { + return { + exp: val, + key: null + } + } + } + + str = val; + index$1 = expressionPos = expressionEndPos = 0; + + while (!eof()) { + chr = next(); + /* istanbul ignore if */ + if (isStringStart(chr)) { + parseString(chr); + } else if (chr === 0x5B) { + parseBracket(chr); + } + } + + return { + exp: val.slice(0, expressionPos), + key: val.slice(expressionPos + 1, expressionEndPos) + } + } + + function next () { + return str.charCodeAt(++index$1) + } + + function eof () { + return index$1 >= len + } + + function isStringStart (chr) { + return chr === 0x22 || chr === 0x27 + } + + function parseBracket (chr) { + var inBracket = 1; + expressionPos = index$1; + while (!eof()) { + chr = next(); + if (isStringStart(chr)) { + parseString(chr); + continue + } + if (chr === 0x5B) { inBracket++; } + if (chr === 0x5D) { inBracket--; } + if (inBracket === 0) { + expressionEndPos = index$1; + break + } + } + } + + function parseString (chr) { + var stringQuote = chr; + while (!eof()) { + chr = next(); + if (chr === stringQuote) { + break + } + } + } + + /* */ + + var warn$1; + + // in some cases, the event used has to be determined at runtime + // so we used some reserved tokens during compile. + var RANGE_TOKEN = '__r'; + var CHECKBOX_RADIO_TOKEN = '__c'; + + function model ( + el, + dir, + _warn + ) { + warn$1 = _warn; + var value = dir.value; + var modifiers = dir.modifiers; + var tag = el.tag; + var type = el.attrsMap.type; + + { + // inputs with type="file" are read only and setting the input's + // value will throw an error. + if (tag === 'input' && type === 'file') { + warn$1( + "<" + (el.tag) + " v-model=\"" + value + "\" type=\"file\">:\n" + + "File inputs are read only. Use a v-on:change listener instead.", + el.rawAttrsMap['v-model'] + ); + } + } + + if (el.component) { + genComponentModel(el, value, modifiers); + // component v-model doesn't need extra runtime + return false + } else if (tag === 'select') { + genSelect(el, value, modifiers); + } else if (tag === 'input' && type === 'checkbox') { + genCheckboxModel(el, value, modifiers); + } else if (tag === 'input' && type === 'radio') { + genRadioModel(el, value, modifiers); + } else if (tag === 'input' || tag === 'textarea') { + genDefaultModel(el, value, modifiers); + } else if (!config.isReservedTag(tag)) { + genComponentModel(el, value, modifiers); + // component v-model doesn't need extra runtime + return false + } else { + warn$1( + "<" + (el.tag) + " v-model=\"" + value + "\">: " + + "v-model is not supported on this element type. " + + 'If you are working with contenteditable, it\'s recommended to ' + + 'wrap a library dedicated for that purpose inside a custom component.', + el.rawAttrsMap['v-model'] + ); + } + + // ensure runtime directive metadata + return true + } + + function genCheckboxModel ( + el, + value, + modifiers + ) { + var number = modifiers && modifiers.number; + var valueBinding = getBindingAttr(el, 'value') || 'null'; + var trueValueBinding = getBindingAttr(el, 'true-value') || 'true'; + var falseValueBinding = getBindingAttr(el, 'false-value') || 'false'; + addProp(el, 'checked', + "Array.isArray(" + value + ")" + + "?_i(" + value + "," + valueBinding + ")>-1" + ( + trueValueBinding === 'true' + ? (":(" + value + ")") + : (":_q(" + value + "," + trueValueBinding + ")") + ) + ); + addHandler(el, 'change', + "var $$a=" + value + "," + + '$$el=$event.target,' + + "$$c=$$el.checked?(" + trueValueBinding + "):(" + falseValueBinding + ");" + + 'if(Array.isArray($$a)){' + + "var $$v=" + (number ? '_n(' + valueBinding + ')' : valueBinding) + "," + + '$$i=_i($$a,$$v);' + + "if($$el.checked){$$i<0&&(" + (genAssignmentCode(value, '$$a.concat([$$v])')) + ")}" + + "else{$$i>-1&&(" + (genAssignmentCode(value, '$$a.slice(0,$$i).concat($$a.slice($$i+1))')) + ")}" + + "}else{" + (genAssignmentCode(value, '$$c')) + "}", + null, true + ); + } + + function genRadioModel ( + el, + value, + modifiers + ) { + var number = modifiers && modifiers.number; + var valueBinding = getBindingAttr(el, 'value') || 'null'; + valueBinding = number ? ("_n(" + valueBinding + ")") : valueBinding; + addProp(el, 'checked', ("_q(" + value + "," + valueBinding + ")")); + addHandler(el, 'change', genAssignmentCode(value, valueBinding), null, true); + } + + function genSelect ( + el, + value, + modifiers + ) { + var number = modifiers && modifiers.number; + var selectedVal = "Array.prototype.filter" + + ".call($event.target.options,function(o){return o.selected})" + + ".map(function(o){var val = \"_value\" in o ? o._value : o.value;" + + "return " + (number ? '_n(val)' : 'val') + "})"; + + var assignment = '$event.target.multiple ? $$selectedVal : $$selectedVal[0]'; + var code = "var $$selectedVal = " + selectedVal + ";"; + code = code + " " + (genAssignmentCode(value, assignment)); + addHandler(el, 'change', code, null, true); + } + + function genDefaultModel ( + el, + value, + modifiers + ) { + var type = el.attrsMap.type; + + // warn if v-bind:value conflicts with v-model + // except for inputs with v-bind:type + { + var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value']; + var typeBinding = el.attrsMap['v-bind:type'] || el.attrsMap[':type']; + if (value$1 && !typeBinding) { + var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value'; + warn$1( + binding + "=\"" + value$1 + "\" conflicts with v-model on the same element " + + 'because the latter already expands to a value binding internally', + el.rawAttrsMap[binding] + ); + } + } + + var ref = modifiers || {}; + var lazy = ref.lazy; + var number = ref.number; + var trim = ref.trim; + var needCompositionGuard = !lazy && type !== 'range'; + var event = lazy + ? 'change' + : type === 'range' + ? RANGE_TOKEN + : 'input'; + + var valueExpression = '$event.target.value'; + if (trim) { + valueExpression = "$event.target.value.trim()"; + } + if (number) { + valueExpression = "_n(" + valueExpression + ")"; + } + + var code = genAssignmentCode(value, valueExpression); + if (needCompositionGuard) { + code = "if($event.target.composing)return;" + code; + } + + addProp(el, 'value', ("(" + value + ")")); + addHandler(el, event, code, null, true); + if (trim || number) { + addHandler(el, 'blur', '$forceUpdate()'); + } + } + + /* */ + + // normalize v-model event tokens that can only be determined at runtime. + // it's important to place the event as the first in the array because + // the whole point is ensuring the v-model callback gets called before + // user-attached handlers. + function normalizeEvents (on) { + /* istanbul ignore if */ + if (isDef(on[RANGE_TOKEN])) { + // IE input[type=range] only supports `change` event + var event = isIE ? 'change' : 'input'; + on[event] = [].concat(on[RANGE_TOKEN], on[event] || []); + delete on[RANGE_TOKEN]; + } + // This was originally intended to fix #4521 but no longer necessary + // after 2.5. Keeping it for backwards compat with generated code from < 2.4 + /* istanbul ignore if */ + if (isDef(on[CHECKBOX_RADIO_TOKEN])) { + on.change = [].concat(on[CHECKBOX_RADIO_TOKEN], on.change || []); + delete on[CHECKBOX_RADIO_TOKEN]; + } + } + + var target$1; + + function createOnceHandler$1 (event, handler, capture) { + var _target = target$1; // save current target element in closure + return function onceHandler () { + var res = handler.apply(null, arguments); + if (res !== null) { + remove$2(event, onceHandler, capture, _target); + } + } + } + + // #9446: Firefox <= 53 (in particular, ESR 52) has incorrect Event.timeStamp + // implementation and does not fire microtasks in between event propagation, so + // safe to exclude. + var useMicrotaskFix = isUsingMicroTask && !(isFF && Number(isFF[1]) <= 53); + + function add$1 ( + name, + handler, + capture, + passive + ) { + // async edge case #6566: inner click event triggers patch, event handler + // attached to outer element during patch, and triggered again. This + // happens because browsers fire microtask ticks between event propagation. + // the solution is simple: we save the timestamp when a handler is attached, + // and the handler would only fire if the event passed to it was fired + // AFTER it was attached. + if (useMicrotaskFix) { + var attachedTimestamp = currentFlushTimestamp; + var original = handler; + handler = original._wrapper = function (e) { + if ( + // no bubbling, should always fire. + // this is just a safety net in case event.timeStamp is unreliable in + // certain weird environments... + e.target === e.currentTarget || + // event is fired after handler attachment + e.timeStamp >= attachedTimestamp || + // bail for environments that have buggy event.timeStamp implementations + // #9462 iOS 9 bug: event.timeStamp is 0 after history.pushState + // #9681 QtWebEngine event.timeStamp is negative value + e.timeStamp <= 0 || + // #9448 bail if event is fired in another document in a multi-page + // electron/nw.js app, since event.timeStamp will be using a different + // starting reference + e.target.ownerDocument !== document + ) { + return original.apply(this, arguments) + } + }; + } + target$1.addEventListener( + name, + handler, + supportsPassive + ? { capture: capture, passive: passive } + : capture + ); + } + + function remove$2 ( + name, + handler, + capture, + _target + ) { + (_target || target$1).removeEventListener( + name, + handler._wrapper || handler, + capture + ); + } + + function updateDOMListeners (oldVnode, vnode) { + if (isUndef(oldVnode.data.on) && isUndef(vnode.data.on)) { + return + } + var on = vnode.data.on || {}; + var oldOn = oldVnode.data.on || {}; + target$1 = vnode.elm; + normalizeEvents(on); + updateListeners(on, oldOn, add$1, remove$2, createOnceHandler$1, vnode.context); + target$1 = undefined; + } + + var events = { + create: updateDOMListeners, + update: updateDOMListeners + }; + + /* */ + + var svgContainer; + + function updateDOMProps (oldVnode, vnode) { + if (isUndef(oldVnode.data.domProps) && isUndef(vnode.data.domProps)) { + return + } + var key, cur; + var elm = vnode.elm; + var oldProps = oldVnode.data.domProps || {}; + var props = vnode.data.domProps || {}; + // clone observed objects, as the user probably wants to mutate it + if (isDef(props.__ob__)) { + props = vnode.data.domProps = extend({}, props); + } + + for (key in oldProps) { + if (!(key in props)) { + elm[key] = ''; + } + } + + for (key in props) { + cur = props[key]; + // ignore children if the node has textContent or innerHTML, + // as these will throw away existing DOM nodes and cause removal errors + // on subsequent patches (#3360) + if (key === 'textContent' || key === 'innerHTML') { + if (vnode.children) { vnode.children.length = 0; } + if (cur === oldProps[key]) { continue } + // #6601 work around Chrome version <= 55 bug where single textNode + // replaced by innerHTML/textContent retains its parentNode property + if (elm.childNodes.length === 1) { + elm.removeChild(elm.childNodes[0]); + } + } + + if (key === 'value' && elm.tagName !== 'PROGRESS') { + // store value as _value as well since + // non-string values will be stringified + elm._value = cur; + // avoid resetting cursor position when value is the same + var strCur = isUndef(cur) ? '' : String(cur); + if (shouldUpdateValue(elm, strCur)) { + elm.value = strCur; + } + } else if (key === 'innerHTML' && isSVG(elm.tagName) && isUndef(elm.innerHTML)) { + // IE doesn't support innerHTML for SVG elements + svgContainer = svgContainer || document.createElement('div'); + svgContainer.innerHTML = "<svg>" + cur + "</svg>"; + var svg = svgContainer.firstChild; + while (elm.firstChild) { + elm.removeChild(elm.firstChild); + } + while (svg.firstChild) { + elm.appendChild(svg.firstChild); + } + } else if ( + // skip the update if old and new VDOM state is the same. + // `value` is handled separately because the DOM value may be temporarily + // out of sync with VDOM state due to focus, composition and modifiers. + // This #4521 by skipping the unnecesarry `checked` update. + cur !== oldProps[key] + ) { + // some property updates can throw + // e.g. `value` on <progress> w/ non-finite value + try { + elm[key] = cur; + } catch (e) {} + } + } + } + + // check platforms/web/util/attrs.js acceptValue + + + function shouldUpdateValue (elm, checkVal) { + return (!elm.composing && ( + elm.tagName === 'OPTION' || + isNotInFocusAndDirty(elm, checkVal) || + isDirtyWithModifiers(elm, checkVal) + )) + } + + function isNotInFocusAndDirty (elm, checkVal) { + // return true when textbox (.number and .trim) loses focus and its value is + // not equal to the updated value + var notInFocus = true; + // #6157 + // work around IE bug when accessing document.activeElement in an iframe + try { notInFocus = document.activeElement !== elm; } catch (e) {} + return notInFocus && elm.value !== checkVal + } + + function isDirtyWithModifiers (elm, newVal) { + var value = elm.value; + var modifiers = elm._vModifiers; // injected by v-model runtime + if (isDef(modifiers)) { + if (modifiers.number) { + return toNumber(value) !== toNumber(newVal) + } + if (modifiers.trim) { + return value.trim() !== newVal.trim() + } + } + return value !== newVal + } + + var domProps = { + create: updateDOMProps, + update: updateDOMProps + }; + + /* */ + + var parseStyleText = cached(function (cssText) { + var res = {}; + var listDelimiter = /;(?![^(]*\))/g; + var propertyDelimiter = /:(.+)/; + cssText.split(listDelimiter).forEach(function (item) { + if (item) { + var tmp = item.split(propertyDelimiter); + tmp.length > 1 && (res[tmp[0].trim()] = tmp[1].trim()); + } + }); + return res + }); + + // merge static and dynamic style data on the same vnode + function normalizeStyleData (data) { + var style = normalizeStyleBinding(data.style); + // static style is pre-processed into an object during compilation + // and is always a fresh object, so it's safe to merge into it + return data.staticStyle + ? extend(data.staticStyle, style) + : style + } + + // normalize possible array / string values into Object + function normalizeStyleBinding (bindingStyle) { + if (Array.isArray(bindingStyle)) { + return toObject(bindingStyle) + } + if (typeof bindingStyle === 'string') { + return parseStyleText(bindingStyle) + } + return bindingStyle + } + + /** + * parent component style should be after child's + * so that parent component's style could override it + */ + function getStyle (vnode, checkChild) { + var res = {}; + var styleData; + + if (checkChild) { + var childNode = vnode; + while (childNode.componentInstance) { + childNode = childNode.componentInstance._vnode; + if ( + childNode && childNode.data && + (styleData = normalizeStyleData(childNode.data)) + ) { + extend(res, styleData); + } + } + } + + if ((styleData = normalizeStyleData(vnode.data))) { + extend(res, styleData); + } + + var parentNode = vnode; + while ((parentNode = parentNode.parent)) { + if (parentNode.data && (styleData = normalizeStyleData(parentNode.data))) { + extend(res, styleData); + } + } + return res + } + + /* */ + + var cssVarRE = /^--/; + var importantRE = /\s*!important$/; + var setProp = function (el, name, val) { + /* istanbul ignore if */ + if (cssVarRE.test(name)) { + el.style.setProperty(name, val); + } else if (importantRE.test(val)) { + el.style.setProperty(hyphenate(name), val.replace(importantRE, ''), 'important'); + } else { + var normalizedName = normalize(name); + if (Array.isArray(val)) { + // Support values array created by autoprefixer, e.g. + // {display: ["-webkit-box", "-ms-flexbox", "flex"]} + // Set them one by one, and the browser will only set those it can recognize + for (var i = 0, len = val.length; i < len; i++) { + el.style[normalizedName] = val[i]; + } + } else { + el.style[normalizedName] = val; + } + } + }; + + var vendorNames = ['Webkit', 'Moz', 'ms']; + + var emptyStyle; + var normalize = cached(function (prop) { + emptyStyle = emptyStyle || document.createElement('div').style; + prop = camelize(prop); + if (prop !== 'filter' && (prop in emptyStyle)) { + return prop + } + var capName = prop.charAt(0).toUpperCase() + prop.slice(1); + for (var i = 0; i < vendorNames.length; i++) { + var name = vendorNames[i] + capName; + if (name in emptyStyle) { + return name + } + } + }); + + function updateStyle (oldVnode, vnode) { + var data = vnode.data; + var oldData = oldVnode.data; + + if (isUndef(data.staticStyle) && isUndef(data.style) && + isUndef(oldData.staticStyle) && isUndef(oldData.style) + ) { + return + } + + var cur, name; + var el = vnode.elm; + var oldStaticStyle = oldData.staticStyle; + var oldStyleBinding = oldData.normalizedStyle || oldData.style || {}; + + // if static style exists, stylebinding already merged into it when doing normalizeStyleData + var oldStyle = oldStaticStyle || oldStyleBinding; + + var style = normalizeStyleBinding(vnode.data.style) || {}; + + // store normalized style under a different key for next diff + // make sure to clone it if it's reactive, since the user likely wants + // to mutate it. + vnode.data.normalizedStyle = isDef(style.__ob__) + ? extend({}, style) + : style; + + var newStyle = getStyle(vnode, true); + + for (name in oldStyle) { + if (isUndef(newStyle[name])) { + setProp(el, name, ''); + } + } + for (name in newStyle) { + cur = newStyle[name]; + if (cur !== oldStyle[name]) { + // ie9 setting to null has no effect, must use empty string + setProp(el, name, cur == null ? '' : cur); + } + } + } + + var style = { + create: updateStyle, + update: updateStyle + }; + + /* */ + + var whitespaceRE = /\s+/; + + /** + * Add class with compatibility for SVG since classList is not supported on + * SVG elements in IE + */ + function addClass (el, cls) { + /* istanbul ignore if */ + if (!cls || !(cls = cls.trim())) { + return + } + + /* istanbul ignore else */ + if (el.classList) { + if (cls.indexOf(' ') > -1) { + cls.split(whitespaceRE).forEach(function (c) { return el.classList.add(c); }); + } else { + el.classList.add(cls); + } + } else { + var cur = " " + (el.getAttribute('class') || '') + " "; + if (cur.indexOf(' ' + cls + ' ') < 0) { + el.setAttribute('class', (cur + cls).trim()); + } + } + } + + /** + * Remove class with compatibility for SVG since classList is not supported on + * SVG elements in IE + */ + function removeClass (el, cls) { + /* istanbul ignore if */ + if (!cls || !(cls = cls.trim())) { + return + } + + /* istanbul ignore else */ + if (el.classList) { + if (cls.indexOf(' ') > -1) { + cls.split(whitespaceRE).forEach(function (c) { return el.classList.remove(c); }); + } else { + el.classList.remove(cls); + } + if (!el.classList.length) { + el.removeAttribute('class'); + } + } else { + var cur = " " + (el.getAttribute('class') || '') + " "; + var tar = ' ' + cls + ' '; + while (cur.indexOf(tar) >= 0) { + cur = cur.replace(tar, ' '); + } + cur = cur.trim(); + if (cur) { + el.setAttribute('class', cur); + } else { + el.removeAttribute('class'); + } + } + } + + /* */ + + function resolveTransition (def$$1) { + if (!def$$1) { + return + } + /* istanbul ignore else */ + if (typeof def$$1 === 'object') { + var res = {}; + if (def$$1.css !== false) { + extend(res, autoCssTransition(def$$1.name || 'v')); + } + extend(res, def$$1); + return res + } else if (typeof def$$1 === 'string') { + return autoCssTransition(def$$1) + } + } + + var autoCssTransition = cached(function (name) { + return { + enterClass: (name + "-enter"), + enterToClass: (name + "-enter-to"), + enterActiveClass: (name + "-enter-active"), + leaveClass: (name + "-leave"), + leaveToClass: (name + "-leave-to"), + leaveActiveClass: (name + "-leave-active") + } + }); + + var hasTransition = inBrowser && !isIE9; + var TRANSITION = 'transition'; + var ANIMATION = 'animation'; + + // Transition property/event sniffing + var transitionProp = 'transition'; + var transitionEndEvent = 'transitionend'; + var animationProp = 'animation'; + var animationEndEvent = 'animationend'; + if (hasTransition) { + /* istanbul ignore if */ + if (window.ontransitionend === undefined && + window.onwebkittransitionend !== undefined + ) { + transitionProp = 'WebkitTransition'; + transitionEndEvent = 'webkitTransitionEnd'; + } + if (window.onanimationend === undefined && + window.onwebkitanimationend !== undefined + ) { + animationProp = 'WebkitAnimation'; + animationEndEvent = 'webkitAnimationEnd'; + } + } + + // binding to window is necessary to make hot reload work in IE in strict mode + var raf = inBrowser + ? window.requestAnimationFrame + ? window.requestAnimationFrame.bind(window) + : setTimeout + : /* istanbul ignore next */ function (fn) { return fn(); }; + + function nextFrame (fn) { + raf(function () { + raf(fn); + }); + } + + function addTransitionClass (el, cls) { + var transitionClasses = el._transitionClasses || (el._transitionClasses = []); + if (transitionClasses.indexOf(cls) < 0) { + transitionClasses.push(cls); + addClass(el, cls); + } + } + + function removeTransitionClass (el, cls) { + if (el._transitionClasses) { + remove(el._transitionClasses, cls); + } + removeClass(el, cls); + } + + function whenTransitionEnds ( + el, + expectedType, + cb + ) { + var ref = getTransitionInfo(el, expectedType); + var type = ref.type; + var timeout = ref.timeout; + var propCount = ref.propCount; + if (!type) { return cb() } + var event = type === TRANSITION ? transitionEndEvent : animationEndEvent; + var ended = 0; + var end = function () { + el.removeEventListener(event, onEnd); + cb(); + }; + var onEnd = function (e) { + if (e.target === el) { + if (++ended >= propCount) { + end(); + } + } + }; + setTimeout(function () { + if (ended < propCount) { + end(); + } + }, timeout + 1); + el.addEventListener(event, onEnd); + } + + var transformRE = /\b(transform|all)(,|$)/; + + function getTransitionInfo (el, expectedType) { + var styles = window.getComputedStyle(el); + // JSDOM may return undefined for transition properties + var transitionDelays = (styles[transitionProp + 'Delay'] || '').split(', '); + var transitionDurations = (styles[transitionProp + 'Duration'] || '').split(', '); + var transitionTimeout = getTimeout(transitionDelays, transitionDurations); + var animationDelays = (styles[animationProp + 'Delay'] || '').split(', '); + var animationDurations = (styles[animationProp + 'Duration'] || '').split(', '); + var animationTimeout = getTimeout(animationDelays, animationDurations); + + var type; + var timeout = 0; + var propCount = 0; + /* istanbul ignore if */ + if (expectedType === TRANSITION) { + if (transitionTimeout > 0) { + type = TRANSITION; + timeout = transitionTimeout; + propCount = transitionDurations.length; + } + } else if (expectedType === ANIMATION) { + if (animationTimeout > 0) { + type = ANIMATION; + timeout = animationTimeout; + propCount = animationDurations.length; + } + } else { + timeout = Math.max(transitionTimeout, animationTimeout); + type = timeout > 0 + ? transitionTimeout > animationTimeout + ? TRANSITION + : ANIMATION + : null; + propCount = type + ? type === TRANSITION + ? transitionDurations.length + : animationDurations.length + : 0; + } + var hasTransform = + type === TRANSITION && + transformRE.test(styles[transitionProp + 'Property']); + return { + type: type, + timeout: timeout, + propCount: propCount, + hasTransform: hasTransform + } + } + + function getTimeout (delays, durations) { + /* istanbul ignore next */ + while (delays.length < durations.length) { + delays = delays.concat(delays); + } + + return Math.max.apply(null, durations.map(function (d, i) { + return toMs(d) + toMs(delays[i]) + })) + } + + // Old versions of Chromium (below 61.0.3163.100) formats floating pointer numbers + // in a locale-dependent way, using a comma instead of a dot. + // If comma is not replaced with a dot, the input will be rounded down (i.e. acting + // as a floor function) causing unexpected behaviors + function toMs (s) { + return Number(s.slice(0, -1).replace(',', '.')) * 1000 + } + + /* */ + + function enter (vnode, toggleDisplay) { + var el = vnode.elm; + + // call leave callback now + if (isDef(el._leaveCb)) { + el._leaveCb.cancelled = true; + el._leaveCb(); + } + + var data = resolveTransition(vnode.data.transition); + if (isUndef(data)) { + return + } + + /* istanbul ignore if */ + if (isDef(el._enterCb) || el.nodeType !== 1) { + return + } + + var css = data.css; + var type = data.type; + var enterClass = data.enterClass; + var enterToClass = data.enterToClass; + var enterActiveClass = data.enterActiveClass; + var appearClass = data.appearClass; + var appearToClass = data.appearToClass; + var appearActiveClass = data.appearActiveClass; + var beforeEnter = data.beforeEnter; + var enter = data.enter; + var afterEnter = data.afterEnter; + var enterCancelled = data.enterCancelled; + var beforeAppear = data.beforeAppear; + var appear = data.appear; + var afterAppear = data.afterAppear; + var appearCancelled = data.appearCancelled; + var duration = data.duration; + + // activeInstance will always be the <transition> component managing this + // transition. One edge case to check is when the <transition> is placed + // as the root node of a child component. In that case we need to check + // <transition>'s parent for appear check. + var context = activeInstance; + var transitionNode = activeInstance.$vnode; + while (transitionNode && transitionNode.parent) { + context = transitionNode.context; + transitionNode = transitionNode.parent; + } + + var isAppear = !context._isMounted || !vnode.isRootInsert; + + if (isAppear && !appear && appear !== '') { + return + } + + var startClass = isAppear && appearClass + ? appearClass + : enterClass; + var activeClass = isAppear && appearActiveClass + ? appearActiveClass + : enterActiveClass; + var toClass = isAppear && appearToClass + ? appearToClass + : enterToClass; + + var beforeEnterHook = isAppear + ? (beforeAppear || beforeEnter) + : beforeEnter; + var enterHook = isAppear + ? (typeof appear === 'function' ? appear : enter) + : enter; + var afterEnterHook = isAppear + ? (afterAppear || afterEnter) + : afterEnter; + var enterCancelledHook = isAppear + ? (appearCancelled || enterCancelled) + : enterCancelled; + + var explicitEnterDuration = toNumber( + isObject(duration) + ? duration.enter + : duration + ); + + if (explicitEnterDuration != null) { + checkDuration(explicitEnterDuration, 'enter', vnode); + } + + var expectsCSS = css !== false && !isIE9; + var userWantsControl = getHookArgumentsLength(enterHook); + + var cb = el._enterCb = once(function () { + if (expectsCSS) { + removeTransitionClass(el, toClass); + removeTransitionClass(el, activeClass); + } + if (cb.cancelled) { + if (expectsCSS) { + removeTransitionClass(el, startClass); + } + enterCancelledHook && enterCancelledHook(el); + } else { + afterEnterHook && afterEnterHook(el); + } + el._enterCb = null; + }); + + if (!vnode.data.show) { + // remove pending leave element on enter by injecting an insert hook + mergeVNodeHook(vnode, 'insert', function () { + var parent = el.parentNode; + var pendingNode = parent && parent._pending && parent._pending[vnode.key]; + if (pendingNode && + pendingNode.tag === vnode.tag && + pendingNode.elm._leaveCb + ) { + pendingNode.elm._leaveCb(); + } + enterHook && enterHook(el, cb); + }); + } + + // start enter transition + beforeEnterHook && beforeEnterHook(el); + if (expectsCSS) { + addTransitionClass(el, startClass); + addTransitionClass(el, activeClass); + nextFrame(function () { + removeTransitionClass(el, startClass); + if (!cb.cancelled) { + addTransitionClass(el, toClass); + if (!userWantsControl) { + if (isValidDuration(explicitEnterDuration)) { + setTimeout(cb, explicitEnterDuration); + } else { + whenTransitionEnds(el, type, cb); + } + } + } + }); + } + + if (vnode.data.show) { + toggleDisplay && toggleDisplay(); + enterHook && enterHook(el, cb); + } + + if (!expectsCSS && !userWantsControl) { + cb(); + } + } + + function leave (vnode, rm) { + var el = vnode.elm; + + // call enter callback now + if (isDef(el._enterCb)) { + el._enterCb.cancelled = true; + el._enterCb(); + } + + var data = resolveTransition(vnode.data.transition); + if (isUndef(data) || el.nodeType !== 1) { + return rm() + } + + /* istanbul ignore if */ + if (isDef(el._leaveCb)) { + return + } + + var css = data.css; + var type = data.type; + var leaveClass = data.leaveClass; + var leaveToClass = data.leaveToClass; + var leaveActiveClass = data.leaveActiveClass; + var beforeLeave = data.beforeLeave; + var leave = data.leave; + var afterLeave = data.afterLeave; + var leaveCancelled = data.leaveCancelled; + var delayLeave = data.delayLeave; + var duration = data.duration; + + var expectsCSS = css !== false && !isIE9; + var userWantsControl = getHookArgumentsLength(leave); + + var explicitLeaveDuration = toNumber( + isObject(duration) + ? duration.leave + : duration + ); + + if (isDef(explicitLeaveDuration)) { + checkDuration(explicitLeaveDuration, 'leave', vnode); + } + + var cb = el._leaveCb = once(function () { + if (el.parentNode && el.parentNode._pending) { + el.parentNode._pending[vnode.key] = null; + } + if (expectsCSS) { + removeTransitionClass(el, leaveToClass); + removeTransitionClass(el, leaveActiveClass); + } + if (cb.cancelled) { + if (expectsCSS) { + removeTransitionClass(el, leaveClass); + } + leaveCancelled && leaveCancelled(el); + } else { + rm(); + afterLeave && afterLeave(el); + } + el._leaveCb = null; + }); + + if (delayLeave) { + delayLeave(performLeave); + } else { + performLeave(); + } + + function performLeave () { + // the delayed leave may have already been cancelled + if (cb.cancelled) { + return + } + // record leaving element + if (!vnode.data.show && el.parentNode) { + (el.parentNode._pending || (el.parentNode._pending = {}))[(vnode.key)] = vnode; + } + beforeLeave && beforeLeave(el); + if (expectsCSS) { + addTransitionClass(el, leaveClass); + addTransitionClass(el, leaveActiveClass); + nextFrame(function () { + removeTransitionClass(el, leaveClass); + if (!cb.cancelled) { + addTransitionClass(el, leaveToClass); + if (!userWantsControl) { + if (isValidDuration(explicitLeaveDuration)) { + setTimeout(cb, explicitLeaveDuration); + } else { + whenTransitionEnds(el, type, cb); + } + } + } + }); + } + leave && leave(el, cb); + if (!expectsCSS && !userWantsControl) { + cb(); + } + } + } + + // only used in dev mode + function checkDuration (val, name, vnode) { + if (typeof val !== 'number') { + warn( + "<transition> explicit " + name + " duration is not a valid number - " + + "got " + (JSON.stringify(val)) + ".", + vnode.context + ); + } else if (isNaN(val)) { + warn( + "<transition> explicit " + name + " duration is NaN - " + + 'the duration expression might be incorrect.', + vnode.context + ); + } + } + + function isValidDuration (val) { + return typeof val === 'number' && !isNaN(val) + } + + /** + * Normalize a transition hook's argument length. The hook may be: + * - a merged hook (invoker) with the original in .fns + * - a wrapped component method (check ._length) + * - a plain function (.length) + */ + function getHookArgumentsLength (fn) { + if (isUndef(fn)) { + return false + } + var invokerFns = fn.fns; + if (isDef(invokerFns)) { + // invoker + return getHookArgumentsLength( + Array.isArray(invokerFns) + ? invokerFns[0] + : invokerFns + ) + } else { + return (fn._length || fn.length) > 1 + } + } + + function _enter (_, vnode) { + if (vnode.data.show !== true) { + enter(vnode); + } + } + + var transition = inBrowser ? { + create: _enter, + activate: _enter, + remove: function remove$$1 (vnode, rm) { + /* istanbul ignore else */ + if (vnode.data.show !== true) { + leave(vnode, rm); + } else { + rm(); + } + } + } : {}; + + var platformModules = [ + attrs, + klass, + events, + domProps, + style, + transition + ]; + + /* */ + + // the directive module should be applied last, after all + // built-in modules have been applied. + var modules = platformModules.concat(baseModules); + + var patch = createPatchFunction({ nodeOps: nodeOps, modules: modules }); + + /** + * Not type checking this file because flow doesn't like attaching + * properties to Elements. + */ + + /* istanbul ignore if */ + if (isIE9) { + // http://www.matts411.com/post/internet-explorer-9-oninput/ + document.addEventListener('selectionchange', function () { + var el = document.activeElement; + if (el && el.vmodel) { + trigger(el, 'input'); + } + }); + } + + var directive = { + inserted: function inserted (el, binding, vnode, oldVnode) { + if (vnode.tag === 'select') { + // #6903 + if (oldVnode.elm && !oldVnode.elm._vOptions) { + mergeVNodeHook(vnode, 'postpatch', function () { + directive.componentUpdated(el, binding, vnode); + }); + } else { + setSelected(el, binding, vnode.context); + } + el._vOptions = [].map.call(el.options, getValue); + } else if (vnode.tag === 'textarea' || isTextInputType(el.type)) { + el._vModifiers = binding.modifiers; + if (!binding.modifiers.lazy) { + el.addEventListener('compositionstart', onCompositionStart); + el.addEventListener('compositionend', onCompositionEnd); + // Safari < 10.2 & UIWebView doesn't fire compositionend when + // switching focus before confirming composition choice + // this also fixes the issue where some browsers e.g. iOS Chrome + // fires "change" instead of "input" on autocomplete. + el.addEventListener('change', onCompositionEnd); + /* istanbul ignore if */ + if (isIE9) { + el.vmodel = true; + } + } + } + }, + + componentUpdated: function componentUpdated (el, binding, vnode) { + if (vnode.tag === 'select') { + setSelected(el, binding, vnode.context); + // in case the options rendered by v-for have changed, + // it's possible that the value is out-of-sync with the rendered options. + // detect such cases and filter out values that no longer has a matching + // option in the DOM. + var prevOptions = el._vOptions; + var curOptions = el._vOptions = [].map.call(el.options, getValue); + if (curOptions.some(function (o, i) { return !looseEqual(o, prevOptions[i]); })) { + // trigger change event if + // no matching option found for at least one value + var needReset = el.multiple + ? binding.value.some(function (v) { return hasNoMatchingOption(v, curOptions); }) + : binding.value !== binding.oldValue && hasNoMatchingOption(binding.value, curOptions); + if (needReset) { + trigger(el, 'change'); + } + } + } + } + }; + + function setSelected (el, binding, vm) { + actuallySetSelected(el, binding, vm); + /* istanbul ignore if */ + if (isIE || isEdge) { + setTimeout(function () { + actuallySetSelected(el, binding, vm); + }, 0); + } + } + + function actuallySetSelected (el, binding, vm) { + var value = binding.value; + var isMultiple = el.multiple; + if (isMultiple && !Array.isArray(value)) { + warn( + "<select multiple v-model=\"" + (binding.expression) + "\"> " + + "expects an Array value for its binding, but got " + (Object.prototype.toString.call(value).slice(8, -1)), + vm + ); + return + } + var selected, option; + for (var i = 0, l = el.options.length; i < l; i++) { + option = el.options[i]; + if (isMultiple) { + selected = looseIndexOf(value, getValue(option)) > -1; + if (option.selected !== selected) { + option.selected = selected; + } + } else { + if (looseEqual(getValue(option), value)) { + if (el.selectedIndex !== i) { + el.selectedIndex = i; + } + return + } + } + } + if (!isMultiple) { + el.selectedIndex = -1; + } + } + + function hasNoMatchingOption (value, options) { + return options.every(function (o) { return !looseEqual(o, value); }) + } + + function getValue (option) { + return '_value' in option + ? option._value + : option.value + } + + function onCompositionStart (e) { + e.target.composing = true; + } + + function onCompositionEnd (e) { + // prevent triggering an input event for no reason + if (!e.target.composing) { return } + e.target.composing = false; + trigger(e.target, 'input'); + } + + function trigger (el, type) { + var e = document.createEvent('HTMLEvents'); + e.initEvent(type, true, true); + el.dispatchEvent(e); + } + + /* */ + + // recursively search for possible transition defined inside the component root + function locateNode (vnode) { + return vnode.componentInstance && (!vnode.data || !vnode.data.transition) + ? locateNode(vnode.componentInstance._vnode) + : vnode + } + + var show = { + bind: function bind (el, ref, vnode) { + var value = ref.value; + + vnode = locateNode(vnode); + var transition$$1 = vnode.data && vnode.data.transition; + var originalDisplay = el.__vOriginalDisplay = + el.style.display === 'none' ? '' : el.style.display; + if (value && transition$$1) { + vnode.data.show = true; + enter(vnode, function () { + el.style.display = originalDisplay; + }); + } else { + el.style.display = value ? originalDisplay : 'none'; + } + }, + + update: function update (el, ref, vnode) { + var value = ref.value; + var oldValue = ref.oldValue; + + /* istanbul ignore if */ + if (!value === !oldValue) { return } + vnode = locateNode(vnode); + var transition$$1 = vnode.data && vnode.data.transition; + if (transition$$1) { + vnode.data.show = true; + if (value) { + enter(vnode, function () { + el.style.display = el.__vOriginalDisplay; + }); + } else { + leave(vnode, function () { + el.style.display = 'none'; + }); + } + } else { + el.style.display = value ? el.__vOriginalDisplay : 'none'; + } + }, + + unbind: function unbind ( + el, + binding, + vnode, + oldVnode, + isDestroy + ) { + if (!isDestroy) { + el.style.display = el.__vOriginalDisplay; + } + } + }; + + var platformDirectives = { + model: directive, + show: show + }; + + /* */ + + var transitionProps = { + name: String, + appear: Boolean, + css: Boolean, + mode: String, + type: String, + enterClass: String, + leaveClass: String, + enterToClass: String, + leaveToClass: String, + enterActiveClass: String, + leaveActiveClass: String, + appearClass: String, + appearActiveClass: String, + appearToClass: String, + duration: [Number, String, Object] + }; + + // in case the child is also an abstract component, e.g. <keep-alive> + // we want to recursively retrieve the real component to be rendered + function getRealChild (vnode) { + var compOptions = vnode && vnode.componentOptions; + if (compOptions && compOptions.Ctor.options.abstract) { + return getRealChild(getFirstComponentChild(compOptions.children)) + } else { + return vnode + } + } + + function extractTransitionData (comp) { + var data = {}; + var options = comp.$options; + // props + for (var key in options.propsData) { + data[key] = comp[key]; + } + // events. + // extract listeners and pass them directly to the transition methods + var listeners = options._parentListeners; + for (var key$1 in listeners) { + data[camelize(key$1)] = listeners[key$1]; + } + return data + } + + function placeholder (h, rawChild) { + if (/\d-keep-alive$/.test(rawChild.tag)) { + return h('keep-alive', { + props: rawChild.componentOptions.propsData + }) + } + } + + function hasParentTransition (vnode) { + while ((vnode = vnode.parent)) { + if (vnode.data.transition) { + return true + } + } + } + + function isSameChild (child, oldChild) { + return oldChild.key === child.key && oldChild.tag === child.tag + } + + var isNotTextNode = function (c) { return c.tag || isAsyncPlaceholder(c); }; + + var isVShowDirective = function (d) { return d.name === 'show'; }; + + var Transition = { + name: 'transition', + props: transitionProps, + abstract: true, + + render: function render (h) { + var this$1 = this; + + var children = this.$slots.default; + if (!children) { + return + } + + // filter out text nodes (possible whitespaces) + children = children.filter(isNotTextNode); + /* istanbul ignore if */ + if (!children.length) { + return + } + + // warn multiple elements + if (children.length > 1) { + warn( + '<transition> can only be used on a single element. Use ' + + '<transition-group> for lists.', + this.$parent + ); + } + + var mode = this.mode; + + // warn invalid mode + if (mode && mode !== 'in-out' && mode !== 'out-in' + ) { + warn( + 'invalid <transition> mode: ' + mode, + this.$parent + ); + } + + var rawChild = children[0]; + + // if this is a component root node and the component's + // parent container node also has transition, skip. + if (hasParentTransition(this.$vnode)) { + return rawChild + } + + // apply transition data to child + // use getRealChild() to ignore abstract components e.g. keep-alive + var child = getRealChild(rawChild); + /* istanbul ignore if */ + if (!child) { + return rawChild + } + + if (this._leaving) { + return placeholder(h, rawChild) + } + + // ensure a key that is unique to the vnode type and to this transition + // component instance. This key will be used to remove pending leaving nodes + // during entering. + var id = "__transition-" + (this._uid) + "-"; + child.key = child.key == null + ? child.isComment + ? id + 'comment' + : id + child.tag + : isPrimitive(child.key) + ? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key) + : child.key; + + var data = (child.data || (child.data = {})).transition = extractTransitionData(this); + var oldRawChild = this._vnode; + var oldChild = getRealChild(oldRawChild); + + // mark v-show + // so that the transition module can hand over the control to the directive + if (child.data.directives && child.data.directives.some(isVShowDirective)) { + child.data.show = true; + } + + if ( + oldChild && + oldChild.data && + !isSameChild(child, oldChild) && + !isAsyncPlaceholder(oldChild) && + // #6687 component root is a comment node + !(oldChild.componentInstance && oldChild.componentInstance._vnode.isComment) + ) { + // replace old child transition data with fresh one + // important for dynamic transitions! + var oldData = oldChild.data.transition = extend({}, data); + // handle transition mode + if (mode === 'out-in') { + // return placeholder node and queue update when leave finishes + this._leaving = true; + mergeVNodeHook(oldData, 'afterLeave', function () { + this$1._leaving = false; + this$1.$forceUpdate(); + }); + return placeholder(h, rawChild) + } else if (mode === 'in-out') { + if (isAsyncPlaceholder(child)) { + return oldRawChild + } + var delayedLeave; + var performLeave = function () { delayedLeave(); }; + mergeVNodeHook(data, 'afterEnter', performLeave); + mergeVNodeHook(data, 'enterCancelled', performLeave); + mergeVNodeHook(oldData, 'delayLeave', function (leave) { delayedLeave = leave; }); + } + } + + return rawChild + } + }; + + /* */ + + var props = extend({ + tag: String, + moveClass: String + }, transitionProps); + + delete props.mode; + + var TransitionGroup = { + props: props, + + beforeMount: function beforeMount () { + var this$1 = this; + + var update = this._update; + this._update = function (vnode, hydrating) { + var restoreActiveInstance = setActiveInstance(this$1); + // force removing pass + this$1.__patch__( + this$1._vnode, + this$1.kept, + false, // hydrating + true // removeOnly (!important, avoids unnecessary moves) + ); + this$1._vnode = this$1.kept; + restoreActiveInstance(); + update.call(this$1, vnode, hydrating); + }; + }, + + render: function render (h) { + var tag = this.tag || this.$vnode.data.tag || 'span'; + var map = Object.create(null); + var prevChildren = this.prevChildren = this.children; + var rawChildren = this.$slots.default || []; + var children = this.children = []; + var transitionData = extractTransitionData(this); + + for (var i = 0; i < rawChildren.length; i++) { + var c = rawChildren[i]; + if (c.tag) { + if (c.key != null && String(c.key).indexOf('__vlist') !== 0) { + children.push(c); + map[c.key] = c + ;(c.data || (c.data = {})).transition = transitionData; + } else { + var opts = c.componentOptions; + var name = opts ? (opts.Ctor.options.name || opts.tag || '') : c.tag; + warn(("<transition-group> children must be keyed: <" + name + ">")); + } + } + } + + if (prevChildren) { + var kept = []; + var removed = []; + for (var i$1 = 0; i$1 < prevChildren.length; i$1++) { + var c$1 = prevChildren[i$1]; + c$1.data.transition = transitionData; + c$1.data.pos = c$1.elm.getBoundingClientRect(); + if (map[c$1.key]) { + kept.push(c$1); + } else { + removed.push(c$1); + } + } + this.kept = h(tag, null, kept); + this.removed = removed; + } + + return h(tag, null, children) + }, + + updated: function updated () { + var children = this.prevChildren; + var moveClass = this.moveClass || ((this.name || 'v') + '-move'); + if (!children.length || !this.hasMove(children[0].elm, moveClass)) { + return + } + + // we divide the work into three loops to avoid mixing DOM reads and writes + // in each iteration - which helps prevent layout thrashing. + children.forEach(callPendingCbs); + children.forEach(recordPosition); + children.forEach(applyTranslation); + + // force reflow to put everything in position + // assign to this to avoid being removed in tree-shaking + // $flow-disable-line + this._reflow = document.body.offsetHeight; + + children.forEach(function (c) { + if (c.data.moved) { + var el = c.elm; + var s = el.style; + addTransitionClass(el, moveClass); + s.transform = s.WebkitTransform = s.transitionDuration = ''; + el.addEventListener(transitionEndEvent, el._moveCb = function cb (e) { + if (e && e.target !== el) { + return + } + if (!e || /transform$/.test(e.propertyName)) { + el.removeEventListener(transitionEndEvent, cb); + el._moveCb = null; + removeTransitionClass(el, moveClass); + } + }); + } + }); + }, + + methods: { + hasMove: function hasMove (el, moveClass) { + /* istanbul ignore if */ + if (!hasTransition) { + return false + } + /* istanbul ignore if */ + if (this._hasMove) { + return this._hasMove + } + // Detect whether an element with the move class applied has + // CSS transitions. Since the element may be inside an entering + // transition at this very moment, we make a clone of it and remove + // all other transition classes applied to ensure only the move class + // is applied. + var clone = el.cloneNode(); + if (el._transitionClasses) { + el._transitionClasses.forEach(function (cls) { removeClass(clone, cls); }); + } + addClass(clone, moveClass); + clone.style.display = 'none'; + this.$el.appendChild(clone); + var info = getTransitionInfo(clone); + this.$el.removeChild(clone); + return (this._hasMove = info.hasTransform) + } + } + }; + + function callPendingCbs (c) { + /* istanbul ignore if */ + if (c.elm._moveCb) { + c.elm._moveCb(); + } + /* istanbul ignore if */ + if (c.elm._enterCb) { + c.elm._enterCb(); + } + } + + function recordPosition (c) { + c.data.newPos = c.elm.getBoundingClientRect(); + } + + function applyTranslation (c) { + var oldPos = c.data.pos; + var newPos = c.data.newPos; + var dx = oldPos.left - newPos.left; + var dy = oldPos.top - newPos.top; + if (dx || dy) { + c.data.moved = true; + var s = c.elm.style; + s.transform = s.WebkitTransform = "translate(" + dx + "px," + dy + "px)"; + s.transitionDuration = '0s'; + } + } + + var platformComponents = { + Transition: Transition, + TransitionGroup: TransitionGroup + }; + + /* */ + + // install platform specific utils + Vue.config.mustUseProp = mustUseProp; + Vue.config.isReservedTag = isReservedTag; + Vue.config.isReservedAttr = isReservedAttr; + Vue.config.getTagNamespace = getTagNamespace; + Vue.config.isUnknownElement = isUnknownElement; + + // install platform runtime directives & components + extend(Vue.options.directives, platformDirectives); + extend(Vue.options.components, platformComponents); + + // install platform patch function + Vue.prototype.__patch__ = inBrowser ? patch : noop; + + // public mount method + Vue.prototype.$mount = function ( + el, + hydrating + ) { + el = el && inBrowser ? query(el) : undefined; + return mountComponent(this, el, hydrating) + }; + + // devtools global hook + /* istanbul ignore next */ + if (inBrowser) { + setTimeout(function () { + if (config.devtools) { + if (devtools) { + devtools.emit('init', Vue); + } else { + console[console.info ? 'info' : 'log']( + 'Download the Vue Devtools extension for a better development experience:\n' + + 'https://github.com/vuejs/vue-devtools' + ); + } + } + if (config.productionTip !== false && + typeof console !== 'undefined' + ) { + console[console.info ? 'info' : 'log']( + "You are running Vue in development mode.\n" + + "Make sure to turn on production mode when deploying for production.\n" + + "See more tips at https://vuejs.org/guide/deployment.html" + ); + } + }, 0); + } + + /* */ + + var defaultTagRE = /\{\{((?:.|\r?\n)+?)\}\}/g; + var regexEscapeRE = /[-.*+?^${}()|[\]\/\\]/g; + + var buildRegex = cached(function (delimiters) { + var open = delimiters[0].replace(regexEscapeRE, '\\$&'); + var close = delimiters[1].replace(regexEscapeRE, '\\$&'); + return new RegExp(open + '((?:.|\\n)+?)' + close, 'g') + }); + + + + function parseText ( + text, + delimiters + ) { + var tagRE = delimiters ? buildRegex(delimiters) : defaultTagRE; + if (!tagRE.test(text)) { + return + } + var tokens = []; + var rawTokens = []; + var lastIndex = tagRE.lastIndex = 0; + var match, index, tokenValue; + while ((match = tagRE.exec(text))) { + index = match.index; + // push text token + if (index > lastIndex) { + rawTokens.push(tokenValue = text.slice(lastIndex, index)); + tokens.push(JSON.stringify(tokenValue)); + } + // tag token + var exp = parseFilters(match[1].trim()); + tokens.push(("_s(" + exp + ")")); + rawTokens.push({ '@binding': exp }); + lastIndex = index + match[0].length; + } + if (lastIndex < text.length) { + rawTokens.push(tokenValue = text.slice(lastIndex)); + tokens.push(JSON.stringify(tokenValue)); + } + return { + expression: tokens.join('+'), + tokens: rawTokens + } + } + + /* */ + + function transformNode (el, options) { + var warn = options.warn || baseWarn; + var staticClass = getAndRemoveAttr(el, 'class'); + if (staticClass) { + var res = parseText(staticClass, options.delimiters); + if (res) { + warn( + "class=\"" + staticClass + "\": " + + 'Interpolation inside attributes has been removed. ' + + 'Use v-bind or the colon shorthand instead. For example, ' + + 'instead of <div class="{{ val }}">, use <div :class="val">.', + el.rawAttrsMap['class'] + ); + } + } + if (staticClass) { + el.staticClass = JSON.stringify(staticClass); + } + var classBinding = getBindingAttr(el, 'class', false /* getStatic */); + if (classBinding) { + el.classBinding = classBinding; + } + } + + function genData (el) { + var data = ''; + if (el.staticClass) { + data += "staticClass:" + (el.staticClass) + ","; + } + if (el.classBinding) { + data += "class:" + (el.classBinding) + ","; + } + return data + } + + var klass$1 = { + staticKeys: ['staticClass'], + transformNode: transformNode, + genData: genData + }; + + /* */ + + function transformNode$1 (el, options) { + var warn = options.warn || baseWarn; + var staticStyle = getAndRemoveAttr(el, 'style'); + if (staticStyle) { + /* istanbul ignore if */ + { + var res = parseText(staticStyle, options.delimiters); + if (res) { + warn( + "style=\"" + staticStyle + "\": " + + 'Interpolation inside attributes has been removed. ' + + 'Use v-bind or the colon shorthand instead. For example, ' + + 'instead of <div style="{{ val }}">, use <div :style="val">.', + el.rawAttrsMap['style'] + ); + } + } + el.staticStyle = JSON.stringify(parseStyleText(staticStyle)); + } + + var styleBinding = getBindingAttr(el, 'style', false /* getStatic */); + if (styleBinding) { + el.styleBinding = styleBinding; + } + } + + function genData$1 (el) { + var data = ''; + if (el.staticStyle) { + data += "staticStyle:" + (el.staticStyle) + ","; + } + if (el.styleBinding) { + data += "style:(" + (el.styleBinding) + "),"; + } + return data + } + + var style$1 = { + staticKeys: ['staticStyle'], + transformNode: transformNode$1, + genData: genData$1 + }; + + /* */ + + var decoder; + + var he = { + decode: function decode (html) { + decoder = decoder || document.createElement('div'); + decoder.innerHTML = html; + return decoder.textContent + } + }; + + /* */ + + var isUnaryTag = makeMap( + 'area,base,br,col,embed,frame,hr,img,input,isindex,keygen,' + + 'link,meta,param,source,track,wbr' + ); + + // Elements that you can, intentionally, leave open + // (and which close themselves) + var canBeLeftOpenTag = makeMap( + 'colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source' + ); + + // HTML5 tags https://html.spec.whatwg.org/multipage/indices.html#elements-3 + // Phrasing Content https://html.spec.whatwg.org/multipage/dom.html#phrasing-content + var isNonPhrasingTag = makeMap( + 'address,article,aside,base,blockquote,body,caption,col,colgroup,dd,' + + 'details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,' + + 'h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,' + + 'optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,' + + 'title,tr,track' + ); + + /** + * Not type-checking this file because it's mostly vendor code. + */ + + // Regular Expressions for parsing tags and attributes + var attribute = /^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/; + var dynamicArgAttribute = /^\s*((?:v-[\w-]+:|@|:|#)\[[^=]+\][^\s"'<>\/=]*)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/; + var ncname = "[a-zA-Z_][\\-\\.0-9_a-zA-Z" + (unicodeRegExp.source) + "]*"; + var qnameCapture = "((?:" + ncname + "\\:)?" + ncname + ")"; + var startTagOpen = new RegExp(("^<" + qnameCapture)); + var startTagClose = /^\s*(\/?)>/; + var endTag = new RegExp(("^<\\/" + qnameCapture + "[^>]*>")); + var doctype = /^<!DOCTYPE [^>]+>/i; + // #7298: escape - to avoid being passed as HTML comment when inlined in page + var comment = /^<!\--/; + var conditionalComment = /^<!\[/; + + // Special Elements (can contain anything) + var isPlainTextElement = makeMap('script,style,textarea', true); + var reCache = {}; + + var decodingMap = { + '<': '<', + '>': '>', + '"': '"', + '&': '&', + ' ': '\n', + '	': '\t', + ''': "'" + }; + var encodedAttr = /&(?:lt|gt|quot|amp|#39);/g; + var encodedAttrWithNewLines = /&(?:lt|gt|quot|amp|#39|#10|#9);/g; + + // #5992 + var isIgnoreNewlineTag = makeMap('pre,textarea', true); + var shouldIgnoreFirstNewline = function (tag, html) { return tag && isIgnoreNewlineTag(tag) && html[0] === '\n'; }; + + function decodeAttr (value, shouldDecodeNewlines) { + var re = shouldDecodeNewlines ? encodedAttrWithNewLines : encodedAttr; + return value.replace(re, function (match) { return decodingMap[match]; }) + } + + function parseHTML (html, options) { + var stack = []; + var expectHTML = options.expectHTML; + var isUnaryTag$$1 = options.isUnaryTag || no; + var canBeLeftOpenTag$$1 = options.canBeLeftOpenTag || no; + var index = 0; + var last, lastTag; + while (html) { + last = html; + // Make sure we're not in a plaintext content element like script/style + if (!lastTag || !isPlainTextElement(lastTag)) { + var textEnd = html.indexOf('<'); + if (textEnd === 0) { + // Comment: + if (comment.test(html)) { + var commentEnd = html.indexOf('-->'); + + if (commentEnd >= 0) { + if (options.shouldKeepComment) { + options.comment(html.substring(4, commentEnd), index, index + commentEnd + 3); + } + advance(commentEnd + 3); + continue + } + } + + // http://en.wikipedia.org/wiki/Conditional_comment#Downlevel-revealed_conditional_comment + if (conditionalComment.test(html)) { + var conditionalEnd = html.indexOf(']>'); + + if (conditionalEnd >= 0) { + advance(conditionalEnd + 2); + continue + } + } + + // Doctype: + var doctypeMatch = html.match(doctype); + if (doctypeMatch) { + advance(doctypeMatch[0].length); + continue + } + + // End tag: + var endTagMatch = html.match(endTag); + if (endTagMatch) { + var curIndex = index; + advance(endTagMatch[0].length); + parseEndTag(endTagMatch[1], curIndex, index); + continue + } + + // Start tag: + var startTagMatch = parseStartTag(); + if (startTagMatch) { + handleStartTag(startTagMatch); + if (shouldIgnoreFirstNewline(startTagMatch.tagName, html)) { + advance(1); + } + continue + } + } + + var text = (void 0), rest = (void 0), next = (void 0); + if (textEnd >= 0) { + rest = html.slice(textEnd); + while ( + !endTag.test(rest) && + !startTagOpen.test(rest) && + !comment.test(rest) && + !conditionalComment.test(rest) + ) { + // < in plain text, be forgiving and treat it as text + next = rest.indexOf('<', 1); + if (next < 0) { break } + textEnd += next; + rest = html.slice(textEnd); + } + text = html.substring(0, textEnd); + } + + if (textEnd < 0) { + text = html; + } + + if (text) { + advance(text.length); + } + + if (options.chars && text) { + options.chars(text, index - text.length, index); + } + } else { + var endTagLength = 0; + var stackedTag = lastTag.toLowerCase(); + var reStackedTag = reCache[stackedTag] || (reCache[stackedTag] = new RegExp('([\\s\\S]*?)(</' + stackedTag + '[^>]*>)', 'i')); + var rest$1 = html.replace(reStackedTag, function (all, text, endTag) { + endTagLength = endTag.length; + if (!isPlainTextElement(stackedTag) && stackedTag !== 'noscript') { + text = text + .replace(/<!\--([\s\S]*?)-->/g, '$1') // #7298 + .replace(/<!\[CDATA\[([\s\S]*?)]]>/g, '$1'); + } + if (shouldIgnoreFirstNewline(stackedTag, text)) { + text = text.slice(1); + } + if (options.chars) { + options.chars(text); + } + return '' + }); + index += html.length - rest$1.length; + html = rest$1; + parseEndTag(stackedTag, index - endTagLength, index); + } + + if (html === last) { + options.chars && options.chars(html); + if (!stack.length && options.warn) { + options.warn(("Mal-formatted tag at end of template: \"" + html + "\""), { start: index + html.length }); + } + break + } + } + + // Clean up any remaining tags + parseEndTag(); + + function advance (n) { + index += n; + html = html.substring(n); + } + + function parseStartTag () { + var start = html.match(startTagOpen); + if (start) { + var match = { + tagName: start[1], + attrs: [], + start: index + }; + advance(start[0].length); + var end, attr; + while (!(end = html.match(startTagClose)) && (attr = html.match(dynamicArgAttribute) || html.match(attribute))) { + attr.start = index; + advance(attr[0].length); + attr.end = index; + match.attrs.push(attr); + } + if (end) { + match.unarySlash = end[1]; + advance(end[0].length); + match.end = index; + return match + } + } + } + + function handleStartTag (match) { + var tagName = match.tagName; + var unarySlash = match.unarySlash; + + if (expectHTML) { + if (lastTag === 'p' && isNonPhrasingTag(tagName)) { + parseEndTag(lastTag); + } + if (canBeLeftOpenTag$$1(tagName) && lastTag === tagName) { + parseEndTag(tagName); + } + } + + var unary = isUnaryTag$$1(tagName) || !!unarySlash; + + var l = match.attrs.length; + var attrs = new Array(l); + for (var i = 0; i < l; i++) { + var args = match.attrs[i]; + var value = args[3] || args[4] || args[5] || ''; + var shouldDecodeNewlines = tagName === 'a' && args[1] === 'href' + ? options.shouldDecodeNewlinesForHref + : options.shouldDecodeNewlines; + attrs[i] = { + name: args[1], + value: decodeAttr(value, shouldDecodeNewlines) + }; + if (options.outputSourceRange) { + attrs[i].start = args.start + args[0].match(/^\s*/).length; + attrs[i].end = args.end; + } + } + + if (!unary) { + stack.push({ tag: tagName, lowerCasedTag: tagName.toLowerCase(), attrs: attrs, start: match.start, end: match.end }); + lastTag = tagName; + } + + if (options.start) { + options.start(tagName, attrs, unary, match.start, match.end); + } + } + + function parseEndTag (tagName, start, end) { + var pos, lowerCasedTagName; + if (start == null) { start = index; } + if (end == null) { end = index; } + + // Find the closest opened tag of the same type + if (tagName) { + lowerCasedTagName = tagName.toLowerCase(); + for (pos = stack.length - 1; pos >= 0; pos--) { + if (stack[pos].lowerCasedTag === lowerCasedTagName) { + break + } + } + } else { + // If no tag name is provided, clean shop + pos = 0; + } + + if (pos >= 0) { + // Close all the open elements, up the stack + for (var i = stack.length - 1; i >= pos; i--) { + if (i > pos || !tagName && + options.warn + ) { + options.warn( + ("tag <" + (stack[i].tag) + "> has no matching end tag."), + { start: stack[i].start, end: stack[i].end } + ); + } + if (options.end) { + options.end(stack[i].tag, start, end); + } + } + + // Remove the open elements from the stack + stack.length = pos; + lastTag = pos && stack[pos - 1].tag; + } else if (lowerCasedTagName === 'br') { + if (options.start) { + options.start(tagName, [], true, start, end); + } + } else if (lowerCasedTagName === 'p') { + if (options.start) { + options.start(tagName, [], false, start, end); + } + if (options.end) { + options.end(tagName, start, end); + } + } + } + } + + /* */ + + var onRE = /^@|^v-on:/; + var dirRE = /^v-|^@|^:|^#/; + var forAliasRE = /([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/; + var forIteratorRE = /,([^,\}\]]*)(?:,([^,\}\]]*))?$/; + var stripParensRE = /^\(|\)$/g; + var dynamicArgRE = /^\[.*\]$/; + + var argRE = /:(.*)$/; + var bindRE = /^:|^\.|^v-bind:/; + var modifierRE = /\.[^.\]]+(?=[^\]]*$)/g; + + var slotRE = /^v-slot(:|$)|^#/; + + var lineBreakRE = /[\r\n]/; + var whitespaceRE$1 = /\s+/g; + + var invalidAttributeRE = /[\s"'<>\/=]/; + + var decodeHTMLCached = cached(he.decode); + + var emptySlotScopeToken = "_empty_"; + + // configurable state + var warn$2; + var delimiters; + var transforms; + var preTransforms; + var postTransforms; + var platformIsPreTag; + var platformMustUseProp; + var platformGetTagNamespace; + var maybeComponent; + + function createASTElement ( + tag, + attrs, + parent + ) { + return { + type: 1, + tag: tag, + attrsList: attrs, + attrsMap: makeAttrsMap(attrs), + rawAttrsMap: {}, + parent: parent, + children: [] + } + } + + /** + * Convert HTML string to AST. + */ + function parse ( + template, + options + ) { + warn$2 = options.warn || baseWarn; + + platformIsPreTag = options.isPreTag || no; + platformMustUseProp = options.mustUseProp || no; + platformGetTagNamespace = options.getTagNamespace || no; + var isReservedTag = options.isReservedTag || no; + maybeComponent = function (el) { return !!el.component || !isReservedTag(el.tag); }; + + transforms = pluckModuleFunction(options.modules, 'transformNode'); + preTransforms = pluckModuleFunction(options.modules, 'preTransformNode'); + postTransforms = pluckModuleFunction(options.modules, 'postTransformNode'); + + delimiters = options.delimiters; + + var stack = []; + var preserveWhitespace = options.preserveWhitespace !== false; + var whitespaceOption = options.whitespace; + var root; + var currentParent; + var inVPre = false; + var inPre = false; + var warned = false; + + function warnOnce (msg, range) { + if (!warned) { + warned = true; + warn$2(msg, range); + } + } + + function closeElement (element) { + trimEndingWhitespace(element); + if (!inVPre && !element.processed) { + element = processElement(element, options); + } + // tree management + if (!stack.length && element !== root) { + // allow root elements with v-if, v-else-if and v-else + if (root.if && (element.elseif || element.else)) { + { + checkRootConstraints(element); + } + addIfCondition(root, { + exp: element.elseif, + block: element + }); + } else { + warnOnce( + "Component template should contain exactly one root element. " + + "If you are using v-if on multiple elements, " + + "use v-else-if to chain them instead.", + { start: element.start } + ); + } + } + if (currentParent && !element.forbidden) { + if (element.elseif || element.else) { + processIfConditions(element, currentParent); + } else { + if (element.slotScope) { + // scoped slot + // keep it in the children list so that v-else(-if) conditions can + // find it as the prev node. + var name = element.slotTarget || '"default"' + ;(currentParent.scopedSlots || (currentParent.scopedSlots = {}))[name] = element; + } + currentParent.children.push(element); + element.parent = currentParent; + } + } + + // final children cleanup + // filter out scoped slots + element.children = element.children.filter(function (c) { return !(c).slotScope; }); + // remove trailing whitespace node again + trimEndingWhitespace(element); + + // check pre state + if (element.pre) { + inVPre = false; + } + if (platformIsPreTag(element.tag)) { + inPre = false; + } + // apply post-transforms + for (var i = 0; i < postTransforms.length; i++) { + postTransforms[i](element, options); + } + } + + function trimEndingWhitespace (el) { + // remove trailing whitespace node + if (!inPre) { + var lastNode; + while ( + (lastNode = el.children[el.children.length - 1]) && + lastNode.type === 3 && + lastNode.text === ' ' + ) { + el.children.pop(); + } + } + } + + function checkRootConstraints (el) { + if (el.tag === 'slot' || el.tag === 'template') { + warnOnce( + "Cannot use <" + (el.tag) + "> as component root element because it may " + + 'contain multiple nodes.', + { start: el.start } + ); + } + if (el.attrsMap.hasOwnProperty('v-for')) { + warnOnce( + 'Cannot use v-for on stateful component root element because ' + + 'it renders multiple elements.', + el.rawAttrsMap['v-for'] + ); + } + } + + parseHTML(template, { + warn: warn$2, + expectHTML: options.expectHTML, + isUnaryTag: options.isUnaryTag, + canBeLeftOpenTag: options.canBeLeftOpenTag, + shouldDecodeNewlines: options.shouldDecodeNewlines, + shouldDecodeNewlinesForHref: options.shouldDecodeNewlinesForHref, + shouldKeepComment: options.comments, + outputSourceRange: options.outputSourceRange, + start: function start (tag, attrs, unary, start$1, end) { + // check namespace. + // inherit parent ns if there is one + var ns = (currentParent && currentParent.ns) || platformGetTagNamespace(tag); + + // handle IE svg bug + /* istanbul ignore if */ + if (isIE && ns === 'svg') { + attrs = guardIESVGBug(attrs); + } + + var element = createASTElement(tag, attrs, currentParent); + if (ns) { + element.ns = ns; + } + + { + if (options.outputSourceRange) { + element.start = start$1; + element.end = end; + element.rawAttrsMap = element.attrsList.reduce(function (cumulated, attr) { + cumulated[attr.name] = attr; + return cumulated + }, {}); + } + attrs.forEach(function (attr) { + if (invalidAttributeRE.test(attr.name)) { + warn$2( + "Invalid dynamic argument expression: attribute names cannot contain " + + "spaces, quotes, <, >, / or =.", + { + start: attr.start + attr.name.indexOf("["), + end: attr.start + attr.name.length + } + ); + } + }); + } + + if (isForbiddenTag(element) && !isServerRendering()) { + element.forbidden = true; + warn$2( + 'Templates should only be responsible for mapping the state to the ' + + 'UI. Avoid placing tags with side-effects in your templates, such as ' + + "<" + tag + ">" + ', as they will not be parsed.', + { start: element.start } + ); + } + + // apply pre-transforms + for (var i = 0; i < preTransforms.length; i++) { + element = preTransforms[i](element, options) || element; + } + + if (!inVPre) { + processPre(element); + if (element.pre) { + inVPre = true; + } + } + if (platformIsPreTag(element.tag)) { + inPre = true; + } + if (inVPre) { + processRawAttrs(element); + } else if (!element.processed) { + // structural directives + processFor(element); + processIf(element); + processOnce(element); + } + + if (!root) { + root = element; + { + checkRootConstraints(root); + } + } + + if (!unary) { + currentParent = element; + stack.push(element); + } else { + closeElement(element); + } + }, + + end: function end (tag, start, end$1) { + var element = stack[stack.length - 1]; + // pop stack + stack.length -= 1; + currentParent = stack[stack.length - 1]; + if (options.outputSourceRange) { + element.end = end$1; + } + closeElement(element); + }, + + chars: function chars (text, start, end) { + if (!currentParent) { + { + if (text === template) { + warnOnce( + 'Component template requires a root element, rather than just text.', + { start: start } + ); + } else if ((text = text.trim())) { + warnOnce( + ("text \"" + text + "\" outside root element will be ignored."), + { start: start } + ); + } + } + return + } + // IE textarea placeholder bug + /* istanbul ignore if */ + if (isIE && + currentParent.tag === 'textarea' && + currentParent.attrsMap.placeholder === text + ) { + return + } + var children = currentParent.children; + if (inPre || text.trim()) { + text = isTextTag(currentParent) ? text : decodeHTMLCached(text); + } else if (!children.length) { + // remove the whitespace-only node right after an opening tag + text = ''; + } else if (whitespaceOption) { + if (whitespaceOption === 'condense') { + // in condense mode, remove the whitespace node if it contains + // line break, otherwise condense to a single space + text = lineBreakRE.test(text) ? '' : ' '; + } else { + text = ' '; + } + } else { + text = preserveWhitespace ? ' ' : ''; + } + if (text) { + if (!inPre && whitespaceOption === 'condense') { + // condense consecutive whitespaces into single space + text = text.replace(whitespaceRE$1, ' '); + } + var res; + var child; + if (!inVPre && text !== ' ' && (res = parseText(text, delimiters))) { + child = { + type: 2, + expression: res.expression, + tokens: res.tokens, + text: text + }; + } else if (text !== ' ' || !children.length || children[children.length - 1].text !== ' ') { + child = { + type: 3, + text: text + }; + } + if (child) { + if (options.outputSourceRange) { + child.start = start; + child.end = end; + } + children.push(child); + } + } + }, + comment: function comment (text, start, end) { + // adding anyting as a sibling to the root node is forbidden + // comments should still be allowed, but ignored + if (currentParent) { + var child = { + type: 3, + text: text, + isComment: true + }; + if (options.outputSourceRange) { + child.start = start; + child.end = end; + } + currentParent.children.push(child); + } + } + }); + return root + } + + function processPre (el) { + if (getAndRemoveAttr(el, 'v-pre') != null) { + el.pre = true; + } + } + + function processRawAttrs (el) { + var list = el.attrsList; + var len = list.length; + if (len) { + var attrs = el.attrs = new Array(len); + for (var i = 0; i < len; i++) { + attrs[i] = { + name: list[i].name, + value: JSON.stringify(list[i].value) + }; + if (list[i].start != null) { + attrs[i].start = list[i].start; + attrs[i].end = list[i].end; + } + } + } else if (!el.pre) { + // non root node in pre blocks with no attributes + el.plain = true; + } + } + + function processElement ( + element, + options + ) { + processKey(element); + + // determine whether this is a plain element after + // removing structural attributes + element.plain = ( + !element.key && + !element.scopedSlots && + !element.attrsList.length + ); + + processRef(element); + processSlotContent(element); + processSlotOutlet(element); + processComponent(element); + for (var i = 0; i < transforms.length; i++) { + element = transforms[i](element, options) || element; + } + processAttrs(element); + return element + } + + function processKey (el) { + var exp = getBindingAttr(el, 'key'); + if (exp) { + { + if (el.tag === 'template') { + warn$2( + "<template> cannot be keyed. Place the key on real elements instead.", + getRawBindingAttr(el, 'key') + ); + } + if (el.for) { + var iterator = el.iterator2 || el.iterator1; + var parent = el.parent; + if (iterator && iterator === exp && parent && parent.tag === 'transition-group') { + warn$2( + "Do not use v-for index as key on <transition-group> children, " + + "this is the same as not using keys.", + getRawBindingAttr(el, 'key'), + true /* tip */ + ); + } + } + } + el.key = exp; + } + } + + function processRef (el) { + var ref = getBindingAttr(el, 'ref'); + if (ref) { + el.ref = ref; + el.refInFor = checkInFor(el); + } + } + + function processFor (el) { + var exp; + if ((exp = getAndRemoveAttr(el, 'v-for'))) { + var res = parseFor(exp); + if (res) { + extend(el, res); + } else { + warn$2( + ("Invalid v-for expression: " + exp), + el.rawAttrsMap['v-for'] + ); + } + } + } + + + + function parseFor (exp) { + var inMatch = exp.match(forAliasRE); + if (!inMatch) { return } + var res = {}; + res.for = inMatch[2].trim(); + var alias = inMatch[1].trim().replace(stripParensRE, ''); + var iteratorMatch = alias.match(forIteratorRE); + if (iteratorMatch) { + res.alias = alias.replace(forIteratorRE, '').trim(); + res.iterator1 = iteratorMatch[1].trim(); + if (iteratorMatch[2]) { + res.iterator2 = iteratorMatch[2].trim(); + } + } else { + res.alias = alias; + } + return res + } + + function processIf (el) { + var exp = getAndRemoveAttr(el, 'v-if'); + if (exp) { + el.if = exp; + addIfCondition(el, { + exp: exp, + block: el + }); + } else { + if (getAndRemoveAttr(el, 'v-else') != null) { + el.else = true; + } + var elseif = getAndRemoveAttr(el, 'v-else-if'); + if (elseif) { + el.elseif = elseif; + } + } + } + + function processIfConditions (el, parent) { + var prev = findPrevElement(parent.children); + if (prev && prev.if) { + addIfCondition(prev, { + exp: el.elseif, + block: el + }); + } else { + warn$2( + "v-" + (el.elseif ? ('else-if="' + el.elseif + '"') : 'else') + " " + + "used on element <" + (el.tag) + "> without corresponding v-if.", + el.rawAttrsMap[el.elseif ? 'v-else-if' : 'v-else'] + ); + } + } + + function findPrevElement (children) { + var i = children.length; + while (i--) { + if (children[i].type === 1) { + return children[i] + } else { + if (children[i].text !== ' ') { + warn$2( + "text \"" + (children[i].text.trim()) + "\" between v-if and v-else(-if) " + + "will be ignored.", + children[i] + ); + } + children.pop(); + } + } + } + + function addIfCondition (el, condition) { + if (!el.ifConditions) { + el.ifConditions = []; + } + el.ifConditions.push(condition); + } + + function processOnce (el) { + var once$$1 = getAndRemoveAttr(el, 'v-once'); + if (once$$1 != null) { + el.once = true; + } + } + + // handle content being passed to a component as slot, + // e.g. <template slot="xxx">, <div slot-scope="xxx"> + function processSlotContent (el) { + var slotScope; + if (el.tag === 'template') { + slotScope = getAndRemoveAttr(el, 'scope'); + /* istanbul ignore if */ + if (slotScope) { + warn$2( + "the \"scope\" attribute for scoped slots have been deprecated and " + + "replaced by \"slot-scope\" since 2.5. The new \"slot-scope\" attribute " + + "can also be used on plain elements in addition to <template> to " + + "denote scoped slots.", + el.rawAttrsMap['scope'], + true + ); + } + el.slotScope = slotScope || getAndRemoveAttr(el, 'slot-scope'); + } else if ((slotScope = getAndRemoveAttr(el, 'slot-scope'))) { + /* istanbul ignore if */ + if (el.attrsMap['v-for']) { + warn$2( + "Ambiguous combined usage of slot-scope and v-for on <" + (el.tag) + "> " + + "(v-for takes higher priority). Use a wrapper <template> for the " + + "scoped slot to make it clearer.", + el.rawAttrsMap['slot-scope'], + true + ); + } + el.slotScope = slotScope; + } + + // slot="xxx" + var slotTarget = getBindingAttr(el, 'slot'); + if (slotTarget) { + el.slotTarget = slotTarget === '""' ? '"default"' : slotTarget; + el.slotTargetDynamic = !!(el.attrsMap[':slot'] || el.attrsMap['v-bind:slot']); + // preserve slot as an attribute for native shadow DOM compat + // only for non-scoped slots. + if (el.tag !== 'template' && !el.slotScope) { + addAttr(el, 'slot', slotTarget, getRawBindingAttr(el, 'slot')); + } + } + + // 2.6 v-slot syntax + { + if (el.tag === 'template') { + // v-slot on <template> + var slotBinding = getAndRemoveAttrByRegex(el, slotRE); + if (slotBinding) { + { + if (el.slotTarget || el.slotScope) { + warn$2( + "Unexpected mixed usage of different slot syntaxes.", + el + ); + } + if (el.parent && !maybeComponent(el.parent)) { + warn$2( + "<template v-slot> can only appear at the root level inside " + + "the receiving component", + el + ); + } + } + var ref = getSlotName(slotBinding); + var name = ref.name; + var dynamic = ref.dynamic; + el.slotTarget = name; + el.slotTargetDynamic = dynamic; + el.slotScope = slotBinding.value || emptySlotScopeToken; // force it into a scoped slot for perf + } + } else { + // v-slot on component, denotes default slot + var slotBinding$1 = getAndRemoveAttrByRegex(el, slotRE); + if (slotBinding$1) { + { + if (!maybeComponent(el)) { + warn$2( + "v-slot can only be used on components or <template>.", + slotBinding$1 + ); + } + if (el.slotScope || el.slotTarget) { + warn$2( + "Unexpected mixed usage of different slot syntaxes.", + el + ); + } + if (el.scopedSlots) { + warn$2( + "To avoid scope ambiguity, the default slot should also use " + + "<template> syntax when there are other named slots.", + slotBinding$1 + ); + } + } + // add the component's children to its default slot + var slots = el.scopedSlots || (el.scopedSlots = {}); + var ref$1 = getSlotName(slotBinding$1); + var name$1 = ref$1.name; + var dynamic$1 = ref$1.dynamic; + var slotContainer = slots[name$1] = createASTElement('template', [], el); + slotContainer.slotTarget = name$1; + slotContainer.slotTargetDynamic = dynamic$1; + slotContainer.children = el.children.filter(function (c) { + if (!c.slotScope) { + c.parent = slotContainer; + return true + } + }); + slotContainer.slotScope = slotBinding$1.value || emptySlotScopeToken; + // remove children as they are returned from scopedSlots now + el.children = []; + // mark el non-plain so data gets generated + el.plain = false; + } + } + } + } + + function getSlotName (binding) { + var name = binding.name.replace(slotRE, ''); + if (!name) { + if (binding.name[0] !== '#') { + name = 'default'; + } else { + warn$2( + "v-slot shorthand syntax requires a slot name.", + binding + ); + } + } + return dynamicArgRE.test(name) + // dynamic [name] + ? { name: name.slice(1, -1), dynamic: true } + // static name + : { name: ("\"" + name + "\""), dynamic: false } + } + + // handle <slot/> outlets + function processSlotOutlet (el) { + if (el.tag === 'slot') { + el.slotName = getBindingAttr(el, 'name'); + if (el.key) { + warn$2( + "`key` does not work on <slot> because slots are abstract outlets " + + "and can possibly expand into multiple elements. " + + "Use the key on a wrapping element instead.", + getRawBindingAttr(el, 'key') + ); + } + } + } + + function processComponent (el) { + var binding; + if ((binding = getBindingAttr(el, 'is'))) { + el.component = binding; + } + if (getAndRemoveAttr(el, 'inline-template') != null) { + el.inlineTemplate = true; + } + } + + function processAttrs (el) { + var list = el.attrsList; + var i, l, name, rawName, value, modifiers, syncGen, isDynamic; + for (i = 0, l = list.length; i < l; i++) { + name = rawName = list[i].name; + value = list[i].value; + if (dirRE.test(name)) { + // mark element as dynamic + el.hasBindings = true; + // modifiers + modifiers = parseModifiers(name.replace(dirRE, '')); + // support .foo shorthand syntax for the .prop modifier + if (modifiers) { + name = name.replace(modifierRE, ''); + } + if (bindRE.test(name)) { // v-bind + name = name.replace(bindRE, ''); + value = parseFilters(value); + isDynamic = dynamicArgRE.test(name); + if (isDynamic) { + name = name.slice(1, -1); + } + if ( + value.trim().length === 0 + ) { + warn$2( + ("The value for a v-bind expression cannot be empty. Found in \"v-bind:" + name + "\"") + ); + } + if (modifiers) { + if (modifiers.prop && !isDynamic) { + name = camelize(name); + if (name === 'innerHtml') { name = 'innerHTML'; } + } + if (modifiers.camel && !isDynamic) { + name = camelize(name); + } + if (modifiers.sync) { + syncGen = genAssignmentCode(value, "$event"); + if (!isDynamic) { + addHandler( + el, + ("update:" + (camelize(name))), + syncGen, + null, + false, + warn$2, + list[i] + ); + if (hyphenate(name) !== camelize(name)) { + addHandler( + el, + ("update:" + (hyphenate(name))), + syncGen, + null, + false, + warn$2, + list[i] + ); + } + } else { + // handler w/ dynamic event name + addHandler( + el, + ("\"update:\"+(" + name + ")"), + syncGen, + null, + false, + warn$2, + list[i], + true // dynamic + ); + } + } + } + if ((modifiers && modifiers.prop) || ( + !el.component && platformMustUseProp(el.tag, el.attrsMap.type, name) + )) { + addProp(el, name, value, list[i], isDynamic); + } else { + addAttr(el, name, value, list[i], isDynamic); + } + } else if (onRE.test(name)) { // v-on + name = name.replace(onRE, ''); + isDynamic = dynamicArgRE.test(name); + if (isDynamic) { + name = name.slice(1, -1); + } + addHandler(el, name, value, modifiers, false, warn$2, list[i], isDynamic); + } else { // normal directives + name = name.replace(dirRE, ''); + // parse arg + var argMatch = name.match(argRE); + var arg = argMatch && argMatch[1]; + isDynamic = false; + if (arg) { + name = name.slice(0, -(arg.length + 1)); + if (dynamicArgRE.test(arg)) { + arg = arg.slice(1, -1); + isDynamic = true; + } + } + addDirective(el, name, rawName, value, arg, isDynamic, modifiers, list[i]); + if (name === 'model') { + checkForAliasModel(el, value); + } + } + } else { + // literal attribute + { + var res = parseText(value, delimiters); + if (res) { + warn$2( + name + "=\"" + value + "\": " + + 'Interpolation inside attributes has been removed. ' + + 'Use v-bind or the colon shorthand instead. For example, ' + + 'instead of <div id="{{ val }}">, use <div :id="val">.', + list[i] + ); + } + } + addAttr(el, name, JSON.stringify(value), list[i]); + // #6887 firefox doesn't update muted state if set via attribute + // even immediately after element creation + if (!el.component && + name === 'muted' && + platformMustUseProp(el.tag, el.attrsMap.type, name)) { + addProp(el, name, 'true', list[i]); + } + } + } + } + + function checkInFor (el) { + var parent = el; + while (parent) { + if (parent.for !== undefined) { + return true + } + parent = parent.parent; + } + return false + } + + function parseModifiers (name) { + var match = name.match(modifierRE); + if (match) { + var ret = {}; + match.forEach(function (m) { ret[m.slice(1)] = true; }); + return ret + } + } + + function makeAttrsMap (attrs) { + var map = {}; + for (var i = 0, l = attrs.length; i < l; i++) { + if ( + map[attrs[i].name] && !isIE && !isEdge + ) { + warn$2('duplicate attribute: ' + attrs[i].name, attrs[i]); + } + map[attrs[i].name] = attrs[i].value; + } + return map + } + + // for script (e.g. type="x/template") or style, do not decode content + function isTextTag (el) { + return el.tag === 'script' || el.tag === 'style' + } + + function isForbiddenTag (el) { + return ( + el.tag === 'style' || + (el.tag === 'script' && ( + !el.attrsMap.type || + el.attrsMap.type === 'text/javascript' + )) + ) + } + + var ieNSBug = /^xmlns:NS\d+/; + var ieNSPrefix = /^NS\d+:/; + + /* istanbul ignore next */ + function guardIESVGBug (attrs) { + var res = []; + for (var i = 0; i < attrs.length; i++) { + var attr = attrs[i]; + if (!ieNSBug.test(attr.name)) { + attr.name = attr.name.replace(ieNSPrefix, ''); + res.push(attr); + } + } + return res + } + + function checkForAliasModel (el, value) { + var _el = el; + while (_el) { + if (_el.for && _el.alias === value) { + warn$2( + "<" + (el.tag) + " v-model=\"" + value + "\">: " + + "You are binding v-model directly to a v-for iteration alias. " + + "This will not be able to modify the v-for source array because " + + "writing to the alias is like modifying a function local variable. " + + "Consider using an array of objects and use v-model on an object property instead.", + el.rawAttrsMap['v-model'] + ); + } + _el = _el.parent; + } + } + + /* */ + + function preTransformNode (el, options) { + if (el.tag === 'input') { + var map = el.attrsMap; + if (!map['v-model']) { + return + } + + var typeBinding; + if (map[':type'] || map['v-bind:type']) { + typeBinding = getBindingAttr(el, 'type'); + } + if (!map.type && !typeBinding && map['v-bind']) { + typeBinding = "(" + (map['v-bind']) + ").type"; + } + + if (typeBinding) { + var ifCondition = getAndRemoveAttr(el, 'v-if', true); + var ifConditionExtra = ifCondition ? ("&&(" + ifCondition + ")") : ""; + var hasElse = getAndRemoveAttr(el, 'v-else', true) != null; + var elseIfCondition = getAndRemoveAttr(el, 'v-else-if', true); + // 1. checkbox + var branch0 = cloneASTElement(el); + // process for on the main node + processFor(branch0); + addRawAttr(branch0, 'type', 'checkbox'); + processElement(branch0, options); + branch0.processed = true; // prevent it from double-processed + branch0.if = "(" + typeBinding + ")==='checkbox'" + ifConditionExtra; + addIfCondition(branch0, { + exp: branch0.if, + block: branch0 + }); + // 2. add radio else-if condition + var branch1 = cloneASTElement(el); + getAndRemoveAttr(branch1, 'v-for', true); + addRawAttr(branch1, 'type', 'radio'); + processElement(branch1, options); + addIfCondition(branch0, { + exp: "(" + typeBinding + ")==='radio'" + ifConditionExtra, + block: branch1 + }); + // 3. other + var branch2 = cloneASTElement(el); + getAndRemoveAttr(branch2, 'v-for', true); + addRawAttr(branch2, ':type', typeBinding); + processElement(branch2, options); + addIfCondition(branch0, { + exp: ifCondition, + block: branch2 + }); + + if (hasElse) { + branch0.else = true; + } else if (elseIfCondition) { + branch0.elseif = elseIfCondition; + } + + return branch0 + } + } + } + + function cloneASTElement (el) { + return createASTElement(el.tag, el.attrsList.slice(), el.parent) + } + + var model$1 = { + preTransformNode: preTransformNode + }; + + var modules$1 = [ + klass$1, + style$1, + model$1 + ]; + + /* */ + + function text (el, dir) { + if (dir.value) { + addProp(el, 'textContent', ("_s(" + (dir.value) + ")"), dir); + } + } + + /* */ + + function html (el, dir) { + if (dir.value) { + addProp(el, 'innerHTML', ("_s(" + (dir.value) + ")"), dir); + } + } + + var directives$1 = { + model: model, + text: text, + html: html + }; + + /* */ + + var baseOptions = { + expectHTML: true, + modules: modules$1, + directives: directives$1, + isPreTag: isPreTag, + isUnaryTag: isUnaryTag, + mustUseProp: mustUseProp, + canBeLeftOpenTag: canBeLeftOpenTag, + isReservedTag: isReservedTag, + getTagNamespace: getTagNamespace, + staticKeys: genStaticKeys(modules$1) + }; + + /* */ + + var isStaticKey; + var isPlatformReservedTag; + + var genStaticKeysCached = cached(genStaticKeys$1); + + /** + * Goal of the optimizer: walk the generated template AST tree + * and detect sub-trees that are purely static, i.e. parts of + * the DOM that never needs to change. + * + * Once we detect these sub-trees, we can: + * + * 1. Hoist them into constants, so that we no longer need to + * create fresh nodes for them on each re-render; + * 2. Completely skip them in the patching process. + */ + function optimize (root, options) { + if (!root) { return } + isStaticKey = genStaticKeysCached(options.staticKeys || ''); + isPlatformReservedTag = options.isReservedTag || no; + // first pass: mark all non-static nodes. + markStatic$1(root); + // second pass: mark static roots. + markStaticRoots(root, false); + } + + function genStaticKeys$1 (keys) { + return makeMap( + 'type,tag,attrsList,attrsMap,plain,parent,children,attrs,start,end,rawAttrsMap' + + (keys ? ',' + keys : '') + ) + } + + function markStatic$1 (node) { + node.static = isStatic(node); + if (node.type === 1) { + // do not make component slot content static. this avoids + // 1. components not able to mutate slot nodes + // 2. static slot content fails for hot-reloading + if ( + !isPlatformReservedTag(node.tag) && + node.tag !== 'slot' && + node.attrsMap['inline-template'] == null + ) { + return + } + for (var i = 0, l = node.children.length; i < l; i++) { + var child = node.children[i]; + markStatic$1(child); + if (!child.static) { + node.static = false; + } + } + if (node.ifConditions) { + for (var i$1 = 1, l$1 = node.ifConditions.length; i$1 < l$1; i$1++) { + var block = node.ifConditions[i$1].block; + markStatic$1(block); + if (!block.static) { + node.static = false; + } + } + } + } + } + + function markStaticRoots (node, isInFor) { + if (node.type === 1) { + if (node.static || node.once) { + node.staticInFor = isInFor; + } + // For a node to qualify as a static root, it should have children that + // are not just static text. Otherwise the cost of hoisting out will + // outweigh the benefits and it's better off to just always render it fresh. + if (node.static && node.children.length && !( + node.children.length === 1 && + node.children[0].type === 3 + )) { + node.staticRoot = true; + return + } else { + node.staticRoot = false; + } + if (node.children) { + for (var i = 0, l = node.children.length; i < l; i++) { + markStaticRoots(node.children[i], isInFor || !!node.for); + } + } + if (node.ifConditions) { + for (var i$1 = 1, l$1 = node.ifConditions.length; i$1 < l$1; i$1++) { + markStaticRoots(node.ifConditions[i$1].block, isInFor); + } + } + } + } + + function isStatic (node) { + if (node.type === 2) { // expression + return false + } + if (node.type === 3) { // text + return true + } + return !!(node.pre || ( + !node.hasBindings && // no dynamic bindings + !node.if && !node.for && // not v-if or v-for or v-else + !isBuiltInTag(node.tag) && // not a built-in + isPlatformReservedTag(node.tag) && // not a component + !isDirectChildOfTemplateFor(node) && + Object.keys(node).every(isStaticKey) + )) + } + + function isDirectChildOfTemplateFor (node) { + while (node.parent) { + node = node.parent; + if (node.tag !== 'template') { + return false + } + if (node.for) { + return true + } + } + return false + } + + /* */ + + var fnExpRE = /^([\w$_]+|\([^)]*?\))\s*=>|^function(?:\s+[\w$]+)?\s*\(/; + var fnInvokeRE = /\([^)]*?\);*$/; + var simplePathRE = /^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/; + + // KeyboardEvent.keyCode aliases + var keyCodes = { + esc: 27, + tab: 9, + enter: 13, + space: 32, + up: 38, + left: 37, + right: 39, + down: 40, + 'delete': [8, 46] + }; + + // KeyboardEvent.key aliases + var keyNames = { + // #7880: IE11 and Edge use `Esc` for Escape key name. + esc: ['Esc', 'Escape'], + tab: 'Tab', + enter: 'Enter', + // #9112: IE11 uses `Spacebar` for Space key name. + space: [' ', 'Spacebar'], + // #7806: IE11 uses key names without `Arrow` prefix for arrow keys. + up: ['Up', 'ArrowUp'], + left: ['Left', 'ArrowLeft'], + right: ['Right', 'ArrowRight'], + down: ['Down', 'ArrowDown'], + // #9112: IE11 uses `Del` for Delete key name. + 'delete': ['Backspace', 'Delete', 'Del'] + }; + + // #4868: modifiers that prevent the execution of the listener + // need to explicitly return null so that we can determine whether to remove + // the listener for .once + var genGuard = function (condition) { return ("if(" + condition + ")return null;"); }; + + var modifierCode = { + stop: '$event.stopPropagation();', + prevent: '$event.preventDefault();', + self: genGuard("$event.target !== $event.currentTarget"), + ctrl: genGuard("!$event.ctrlKey"), + shift: genGuard("!$event.shiftKey"), + alt: genGuard("!$event.altKey"), + meta: genGuard("!$event.metaKey"), + left: genGuard("'button' in $event && $event.button !== 0"), + middle: genGuard("'button' in $event && $event.button !== 1"), + right: genGuard("'button' in $event && $event.button !== 2") + }; + + function genHandlers ( + events, + isNative + ) { + var prefix = isNative ? 'nativeOn:' : 'on:'; + var staticHandlers = ""; + var dynamicHandlers = ""; + for (var name in events) { + var handlerCode = genHandler(events[name]); + if (events[name] && events[name].dynamic) { + dynamicHandlers += name + "," + handlerCode + ","; + } else { + staticHandlers += "\"" + name + "\":" + handlerCode + ","; + } + } + staticHandlers = "{" + (staticHandlers.slice(0, -1)) + "}"; + if (dynamicHandlers) { + return prefix + "_d(" + staticHandlers + ",[" + (dynamicHandlers.slice(0, -1)) + "])" + } else { + return prefix + staticHandlers + } + } + + function genHandler (handler) { + if (!handler) { + return 'function(){}' + } + + if (Array.isArray(handler)) { + return ("[" + (handler.map(function (handler) { return genHandler(handler); }).join(',')) + "]") + } + + var isMethodPath = simplePathRE.test(handler.value); + var isFunctionExpression = fnExpRE.test(handler.value); + var isFunctionInvocation = simplePathRE.test(handler.value.replace(fnInvokeRE, '')); + + if (!handler.modifiers) { + if (isMethodPath || isFunctionExpression) { + return handler.value + } + return ("function($event){" + (isFunctionInvocation ? ("return " + (handler.value)) : handler.value) + "}") // inline statement + } else { + var code = ''; + var genModifierCode = ''; + var keys = []; + for (var key in handler.modifiers) { + if (modifierCode[key]) { + genModifierCode += modifierCode[key]; + // left/right + if (keyCodes[key]) { + keys.push(key); + } + } else if (key === 'exact') { + var modifiers = (handler.modifiers); + genModifierCode += genGuard( + ['ctrl', 'shift', 'alt', 'meta'] + .filter(function (keyModifier) { return !modifiers[keyModifier]; }) + .map(function (keyModifier) { return ("$event." + keyModifier + "Key"); }) + .join('||') + ); + } else { + keys.push(key); + } + } + if (keys.length) { + code += genKeyFilter(keys); + } + // Make sure modifiers like prevent and stop get executed after key filtering + if (genModifierCode) { + code += genModifierCode; + } + var handlerCode = isMethodPath + ? ("return " + (handler.value) + "($event)") + : isFunctionExpression + ? ("return (" + (handler.value) + ")($event)") + : isFunctionInvocation + ? ("return " + (handler.value)) + : handler.value; + return ("function($event){" + code + handlerCode + "}") + } + } + + function genKeyFilter (keys) { + return ( + // make sure the key filters only apply to KeyboardEvents + // #9441: can't use 'keyCode' in $event because Chrome autofill fires fake + // key events that do not have keyCode property... + "if(!$event.type.indexOf('key')&&" + + (keys.map(genFilterCode).join('&&')) + ")return null;" + ) + } + + function genFilterCode (key) { + var keyVal = parseInt(key, 10); + if (keyVal) { + return ("$event.keyCode!==" + keyVal) + } + var keyCode = keyCodes[key]; + var keyName = keyNames[key]; + return ( + "_k($event.keyCode," + + (JSON.stringify(key)) + "," + + (JSON.stringify(keyCode)) + "," + + "$event.key," + + "" + (JSON.stringify(keyName)) + + ")" + ) + } + + /* */ + + function on (el, dir) { + if (dir.modifiers) { + warn("v-on without argument does not support modifiers."); + } + el.wrapListeners = function (code) { return ("_g(" + code + "," + (dir.value) + ")"); }; + } + + /* */ + + function bind$1 (el, dir) { + el.wrapData = function (code) { + return ("_b(" + code + ",'" + (el.tag) + "'," + (dir.value) + "," + (dir.modifiers && dir.modifiers.prop ? 'true' : 'false') + (dir.modifiers && dir.modifiers.sync ? ',true' : '') + ")") + }; + } + + /* */ + + var baseDirectives = { + on: on, + bind: bind$1, + cloak: noop + }; + + /* */ + + + + + + var CodegenState = function CodegenState (options) { + this.options = options; + this.warn = options.warn || baseWarn; + this.transforms = pluckModuleFunction(options.modules, 'transformCode'); + this.dataGenFns = pluckModuleFunction(options.modules, 'genData'); + this.directives = extend(extend({}, baseDirectives), options.directives); + var isReservedTag = options.isReservedTag || no; + this.maybeComponent = function (el) { return !!el.component || !isReservedTag(el.tag); }; + this.onceId = 0; + this.staticRenderFns = []; + this.pre = false; + }; + + + + function generate ( + ast, + options + ) { + var state = new CodegenState(options); + var code = ast ? genElement(ast, state) : '_c("div")'; + return { + render: ("with(this){return " + code + "}"), + staticRenderFns: state.staticRenderFns + } + } + + function genElement (el, state) { + if (el.parent) { + el.pre = el.pre || el.parent.pre; + } + + if (el.staticRoot && !el.staticProcessed) { + return genStatic(el, state) + } else if (el.once && !el.onceProcessed) { + return genOnce(el, state) + } else if (el.for && !el.forProcessed) { + return genFor(el, state) + } else if (el.if && !el.ifProcessed) { + return genIf(el, state) + } else if (el.tag === 'template' && !el.slotTarget && !state.pre) { + return genChildren(el, state) || 'void 0' + } else if (el.tag === 'slot') { + return genSlot(el, state) + } else { + // component or element + var code; + if (el.component) { + code = genComponent(el.component, el, state); + } else { + var data; + if (!el.plain || (el.pre && state.maybeComponent(el))) { + data = genData$2(el, state); + } + + var children = el.inlineTemplate ? null : genChildren(el, state, true); + code = "_c('" + (el.tag) + "'" + (data ? ("," + data) : '') + (children ? ("," + children) : '') + ")"; + } + // module transforms + for (var i = 0; i < state.transforms.length; i++) { + code = state.transforms[i](el, code); + } + return code + } + } + + // hoist static sub-trees out + function genStatic (el, state) { + el.staticProcessed = true; + // Some elements (templates) need to behave differently inside of a v-pre + // node. All pre nodes are static roots, so we can use this as a location to + // wrap a state change and reset it upon exiting the pre node. + var originalPreState = state.pre; + if (el.pre) { + state.pre = el.pre; + } + state.staticRenderFns.push(("with(this){return " + (genElement(el, state)) + "}")); + state.pre = originalPreState; + return ("_m(" + (state.staticRenderFns.length - 1) + (el.staticInFor ? ',true' : '') + ")") + } + + // v-once + function genOnce (el, state) { + el.onceProcessed = true; + if (el.if && !el.ifProcessed) { + return genIf(el, state) + } else if (el.staticInFor) { + var key = ''; + var parent = el.parent; + while (parent) { + if (parent.for) { + key = parent.key; + break + } + parent = parent.parent; + } + if (!key) { + state.warn( + "v-once can only be used inside v-for that is keyed. ", + el.rawAttrsMap['v-once'] + ); + return genElement(el, state) + } + return ("_o(" + (genElement(el, state)) + "," + (state.onceId++) + "," + key + ")") + } else { + return genStatic(el, state) + } + } + + function genIf ( + el, + state, + altGen, + altEmpty + ) { + el.ifProcessed = true; // avoid recursion + return genIfConditions(el.ifConditions.slice(), state, altGen, altEmpty) + } + + function genIfConditions ( + conditions, + state, + altGen, + altEmpty + ) { + if (!conditions.length) { + return altEmpty || '_e()' + } + + var condition = conditions.shift(); + if (condition.exp) { + return ("(" + (condition.exp) + ")?" + (genTernaryExp(condition.block)) + ":" + (genIfConditions(conditions, state, altGen, altEmpty))) + } else { + return ("" + (genTernaryExp(condition.block))) + } + + // v-if with v-once should generate code like (a)?_m(0):_m(1) + function genTernaryExp (el) { + return altGen + ? altGen(el, state) + : el.once + ? genOnce(el, state) + : genElement(el, state) + } + } + + function genFor ( + el, + state, + altGen, + altHelper + ) { + var exp = el.for; + var alias = el.alias; + var iterator1 = el.iterator1 ? ("," + (el.iterator1)) : ''; + var iterator2 = el.iterator2 ? ("," + (el.iterator2)) : ''; + + if (state.maybeComponent(el) && + el.tag !== 'slot' && + el.tag !== 'template' && + !el.key + ) { + state.warn( + "<" + (el.tag) + " v-for=\"" + alias + " in " + exp + "\">: component lists rendered with " + + "v-for should have explicit keys. " + + "See https://vuejs.org/guide/list.html#key for more info.", + el.rawAttrsMap['v-for'], + true /* tip */ + ); + } + + el.forProcessed = true; // avoid recursion + return (altHelper || '_l') + "((" + exp + ")," + + "function(" + alias + iterator1 + iterator2 + "){" + + "return " + ((altGen || genElement)(el, state)) + + '})' + } + + function genData$2 (el, state) { + var data = '{'; + + // directives first. + // directives may mutate the el's other properties before they are generated. + var dirs = genDirectives(el, state); + if (dirs) { data += dirs + ','; } + + // key + if (el.key) { + data += "key:" + (el.key) + ","; + } + // ref + if (el.ref) { + data += "ref:" + (el.ref) + ","; + } + if (el.refInFor) { + data += "refInFor:true,"; + } + // pre + if (el.pre) { + data += "pre:true,"; + } + // record original tag name for components using "is" attribute + if (el.component) { + data += "tag:\"" + (el.tag) + "\","; + } + // module data generation functions + for (var i = 0; i < state.dataGenFns.length; i++) { + data += state.dataGenFns[i](el); + } + // attributes + if (el.attrs) { + data += "attrs:" + (genProps(el.attrs)) + ","; + } + // DOM props + if (el.props) { + data += "domProps:" + (genProps(el.props)) + ","; + } + // event handlers + if (el.events) { + data += (genHandlers(el.events, false)) + ","; + } + if (el.nativeEvents) { + data += (genHandlers(el.nativeEvents, true)) + ","; + } + // slot target + // only for non-scoped slots + if (el.slotTarget && !el.slotScope) { + data += "slot:" + (el.slotTarget) + ","; + } + // scoped slots + if (el.scopedSlots) { + data += (genScopedSlots(el, el.scopedSlots, state)) + ","; + } + // component v-model + if (el.model) { + data += "model:{value:" + (el.model.value) + ",callback:" + (el.model.callback) + ",expression:" + (el.model.expression) + "},"; + } + // inline-template + if (el.inlineTemplate) { + var inlineTemplate = genInlineTemplate(el, state); + if (inlineTemplate) { + data += inlineTemplate + ","; + } + } + data = data.replace(/,$/, '') + '}'; + // v-bind dynamic argument wrap + // v-bind with dynamic arguments must be applied using the same v-bind object + // merge helper so that class/style/mustUseProp attrs are handled correctly. + if (el.dynamicAttrs) { + data = "_b(" + data + ",\"" + (el.tag) + "\"," + (genProps(el.dynamicAttrs)) + ")"; + } + // v-bind data wrap + if (el.wrapData) { + data = el.wrapData(data); + } + // v-on data wrap + if (el.wrapListeners) { + data = el.wrapListeners(data); + } + return data + } + + function genDirectives (el, state) { + var dirs = el.directives; + if (!dirs) { return } + var res = 'directives:['; + var hasRuntime = false; + var i, l, dir, needRuntime; + for (i = 0, l = dirs.length; i < l; i++) { + dir = dirs[i]; + needRuntime = true; + var gen = state.directives[dir.name]; + if (gen) { + // compile-time directive that manipulates AST. + // returns true if it also needs a runtime counterpart. + needRuntime = !!gen(el, dir, state.warn); + } + if (needRuntime) { + hasRuntime = true; + res += "{name:\"" + (dir.name) + "\",rawName:\"" + (dir.rawName) + "\"" + (dir.value ? (",value:(" + (dir.value) + "),expression:" + (JSON.stringify(dir.value))) : '') + (dir.arg ? (",arg:" + (dir.isDynamicArg ? dir.arg : ("\"" + (dir.arg) + "\""))) : '') + (dir.modifiers ? (",modifiers:" + (JSON.stringify(dir.modifiers))) : '') + "},"; + } + } + if (hasRuntime) { + return res.slice(0, -1) + ']' + } + } + + function genInlineTemplate (el, state) { + var ast = el.children[0]; + if (el.children.length !== 1 || ast.type !== 1) { + state.warn( + 'Inline-template components must have exactly one child element.', + { start: el.start } + ); + } + if (ast && ast.type === 1) { + var inlineRenderFns = generate(ast, state.options); + return ("inlineTemplate:{render:function(){" + (inlineRenderFns.render) + "},staticRenderFns:[" + (inlineRenderFns.staticRenderFns.map(function (code) { return ("function(){" + code + "}"); }).join(',')) + "]}") + } + } + + function genScopedSlots ( + el, + slots, + state + ) { + // by default scoped slots are considered "stable", this allows child + // components with only scoped slots to skip forced updates from parent. + // but in some cases we have to bail-out of this optimization + // for example if the slot contains dynamic names, has v-if or v-for on them... + var needsForceUpdate = el.for || Object.keys(slots).some(function (key) { + var slot = slots[key]; + return ( + slot.slotTargetDynamic || + slot.if || + slot.for || + containsSlotChild(slot) // is passing down slot from parent which may be dynamic + ) + }); + + // #9534: if a component with scoped slots is inside a conditional branch, + // it's possible for the same component to be reused but with different + // compiled slot content. To avoid that, we generate a unique key based on + // the generated code of all the slot contents. + var needsKey = !!el.if; + + // OR when it is inside another scoped slot or v-for (the reactivity may be + // disconnected due to the intermediate scope variable) + // #9438, #9506 + // TODO: this can be further optimized by properly analyzing in-scope bindings + // and skip force updating ones that do not actually use scope variables. + if (!needsForceUpdate) { + var parent = el.parent; + while (parent) { + if ( + (parent.slotScope && parent.slotScope !== emptySlotScopeToken) || + parent.for + ) { + needsForceUpdate = true; + break + } + if (parent.if) { + needsKey = true; + } + parent = parent.parent; + } + } + + var generatedSlots = Object.keys(slots) + .map(function (key) { return genScopedSlot(slots[key], state); }) + .join(','); + + return ("scopedSlots:_u([" + generatedSlots + "]" + (needsForceUpdate ? ",null,true" : "") + (!needsForceUpdate && needsKey ? (",null,false," + (hash(generatedSlots))) : "") + ")") + } + + function hash(str) { + var hash = 5381; + var i = str.length; + while(i) { + hash = (hash * 33) ^ str.charCodeAt(--i); + } + return hash >>> 0 + } + + function containsSlotChild (el) { + if (el.type === 1) { + if (el.tag === 'slot') { + return true + } + return el.children.some(containsSlotChild) + } + return false + } + + function genScopedSlot ( + el, + state + ) { + var isLegacySyntax = el.attrsMap['slot-scope']; + if (el.if && !el.ifProcessed && !isLegacySyntax) { + return genIf(el, state, genScopedSlot, "null") + } + if (el.for && !el.forProcessed) { + return genFor(el, state, genScopedSlot) + } + var slotScope = el.slotScope === emptySlotScopeToken + ? "" + : String(el.slotScope); + var fn = "function(" + slotScope + "){" + + "return " + (el.tag === 'template' + ? el.if && isLegacySyntax + ? ("(" + (el.if) + ")?" + (genChildren(el, state) || 'undefined') + ":undefined") + : genChildren(el, state) || 'undefined' + : genElement(el, state)) + "}"; + // reverse proxy v-slot without scope on this.$slots + var reverseProxy = slotScope ? "" : ",proxy:true"; + return ("{key:" + (el.slotTarget || "\"default\"") + ",fn:" + fn + reverseProxy + "}") + } + + function genChildren ( + el, + state, + checkSkip, + altGenElement, + altGenNode + ) { + var children = el.children; + if (children.length) { + var el$1 = children[0]; + // optimize single v-for + if (children.length === 1 && + el$1.for && + el$1.tag !== 'template' && + el$1.tag !== 'slot' + ) { + var normalizationType = checkSkip + ? state.maybeComponent(el$1) ? ",1" : ",0" + : ""; + return ("" + ((altGenElement || genElement)(el$1, state)) + normalizationType) + } + var normalizationType$1 = checkSkip + ? getNormalizationType(children, state.maybeComponent) + : 0; + var gen = altGenNode || genNode; + return ("[" + (children.map(function (c) { return gen(c, state); }).join(',')) + "]" + (normalizationType$1 ? ("," + normalizationType$1) : '')) + } + } + + // determine the normalization needed for the children array. + // 0: no normalization needed + // 1: simple normalization needed (possible 1-level deep nested array) + // 2: full normalization needed + function getNormalizationType ( + children, + maybeComponent + ) { + var res = 0; + for (var i = 0; i < children.length; i++) { + var el = children[i]; + if (el.type !== 1) { + continue + } + if (needsNormalization(el) || + (el.ifConditions && el.ifConditions.some(function (c) { return needsNormalization(c.block); }))) { + res = 2; + break + } + if (maybeComponent(el) || + (el.ifConditions && el.ifConditions.some(function (c) { return maybeComponent(c.block); }))) { + res = 1; + } + } + return res + } + + function needsNormalization (el) { + return el.for !== undefined || el.tag === 'template' || el.tag === 'slot' + } + + function genNode (node, state) { + if (node.type === 1) { + return genElement(node, state) + } else if (node.type === 3 && node.isComment) { + return genComment(node) + } else { + return genText(node) + } + } + + function genText (text) { + return ("_v(" + (text.type === 2 + ? text.expression // no need for () because already wrapped in _s() + : transformSpecialNewlines(JSON.stringify(text.text))) + ")") + } + + function genComment (comment) { + return ("_e(" + (JSON.stringify(comment.text)) + ")") + } + + function genSlot (el, state) { + var slotName = el.slotName || '"default"'; + var children = genChildren(el, state); + var res = "_t(" + slotName + (children ? ("," + children) : ''); + var attrs = el.attrs || el.dynamicAttrs + ? genProps((el.attrs || []).concat(el.dynamicAttrs || []).map(function (attr) { return ({ + // slot props are camelized + name: camelize(attr.name), + value: attr.value, + dynamic: attr.dynamic + }); })) + : null; + var bind$$1 = el.attrsMap['v-bind']; + if ((attrs || bind$$1) && !children) { + res += ",null"; + } + if (attrs) { + res += "," + attrs; + } + if (bind$$1) { + res += (attrs ? '' : ',null') + "," + bind$$1; + } + return res + ')' + } + + // componentName is el.component, take it as argument to shun flow's pessimistic refinement + function genComponent ( + componentName, + el, + state + ) { + var children = el.inlineTemplate ? null : genChildren(el, state, true); + return ("_c(" + componentName + "," + (genData$2(el, state)) + (children ? ("," + children) : '') + ")") + } + + function genProps (props) { + var staticProps = ""; + var dynamicProps = ""; + for (var i = 0; i < props.length; i++) { + var prop = props[i]; + var value = transformSpecialNewlines(prop.value); + if (prop.dynamic) { + dynamicProps += (prop.name) + "," + value + ","; + } else { + staticProps += "\"" + (prop.name) + "\":" + value + ","; + } + } + staticProps = "{" + (staticProps.slice(0, -1)) + "}"; + if (dynamicProps) { + return ("_d(" + staticProps + ",[" + (dynamicProps.slice(0, -1)) + "])") + } else { + return staticProps + } + } + + // #3895, #4268 + function transformSpecialNewlines (text) { + return text + .replace(/\u2028/g, '\\u2028') + .replace(/\u2029/g, '\\u2029') + } + + /* */ + + + + // these keywords should not appear inside expressions, but operators like + // typeof, instanceof and in are allowed + var prohibitedKeywordRE = new RegExp('\\b' + ( + 'do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,' + + 'super,throw,while,yield,delete,export,import,return,switch,default,' + + 'extends,finally,continue,debugger,function,arguments' + ).split(',').join('\\b|\\b') + '\\b'); + + // these unary operators should not be used as property/method names + var unaryOperatorsRE = new RegExp('\\b' + ( + 'delete,typeof,void' + ).split(',').join('\\s*\\([^\\)]*\\)|\\b') + '\\s*\\([^\\)]*\\)'); + + // strip strings in expressions + var stripStringRE = /'(?:[^'\\]|\\.)*'|"(?:[^"\\]|\\.)*"|`(?:[^`\\]|\\.)*\$\{|\}(?:[^`\\]|\\.)*`|`(?:[^`\\]|\\.)*`/g; + + // detect problematic expressions in a template + function detectErrors (ast, warn) { + if (ast) { + checkNode(ast, warn); + } + } + + function checkNode (node, warn) { + if (node.type === 1) { + for (var name in node.attrsMap) { + if (dirRE.test(name)) { + var value = node.attrsMap[name]; + if (value) { + var range = node.rawAttrsMap[name]; + if (name === 'v-for') { + checkFor(node, ("v-for=\"" + value + "\""), warn, range); + } else if (name === 'v-slot' || name[0] === '#') { + checkFunctionParameterExpression(value, (name + "=\"" + value + "\""), warn, range); + } else if (onRE.test(name)) { + checkEvent(value, (name + "=\"" + value + "\""), warn, range); + } else { + checkExpression(value, (name + "=\"" + value + "\""), warn, range); + } + } + } + } + if (node.children) { + for (var i = 0; i < node.children.length; i++) { + checkNode(node.children[i], warn); + } + } + } else if (node.type === 2) { + checkExpression(node.expression, node.text, warn, node); + } + } + + function checkEvent (exp, text, warn, range) { + var stripped = exp.replace(stripStringRE, ''); + var keywordMatch = stripped.match(unaryOperatorsRE); + if (keywordMatch && stripped.charAt(keywordMatch.index - 1) !== '$') { + warn( + "avoid using JavaScript unary operator as property name: " + + "\"" + (keywordMatch[0]) + "\" in expression " + (text.trim()), + range + ); + } + checkExpression(exp, text, warn, range); + } + + function checkFor (node, text, warn, range) { + checkExpression(node.for || '', text, warn, range); + checkIdentifier(node.alias, 'v-for alias', text, warn, range); + checkIdentifier(node.iterator1, 'v-for iterator', text, warn, range); + checkIdentifier(node.iterator2, 'v-for iterator', text, warn, range); + } + + function checkIdentifier ( + ident, + type, + text, + warn, + range + ) { + if (typeof ident === 'string') { + try { + new Function(("var " + ident + "=_")); + } catch (e) { + warn(("invalid " + type + " \"" + ident + "\" in expression: " + (text.trim())), range); + } + } + } + + function checkExpression (exp, text, warn, range) { + try { + new Function(("return " + exp)); + } catch (e) { + var keywordMatch = exp.replace(stripStringRE, '').match(prohibitedKeywordRE); + if (keywordMatch) { + warn( + "avoid using JavaScript keyword as property name: " + + "\"" + (keywordMatch[0]) + "\"\n Raw expression: " + (text.trim()), + range + ); + } else { + warn( + "invalid expression: " + (e.message) + " in\n\n" + + " " + exp + "\n\n" + + " Raw expression: " + (text.trim()) + "\n", + range + ); + } + } + } + + function checkFunctionParameterExpression (exp, text, warn, range) { + try { + new Function(exp, ''); + } catch (e) { + warn( + "invalid function parameter expression: " + (e.message) + " in\n\n" + + " " + exp + "\n\n" + + " Raw expression: " + (text.trim()) + "\n", + range + ); + } + } + + /* */ + + var range = 2; + + function generateCodeFrame ( + source, + start, + end + ) { + if ( start === void 0 ) start = 0; + if ( end === void 0 ) end = source.length; + + var lines = source.split(/\r?\n/); + var count = 0; + var res = []; + for (var i = 0; i < lines.length; i++) { + count += lines[i].length + 1; + if (count >= start) { + for (var j = i - range; j <= i + range || end > count; j++) { + if (j < 0 || j >= lines.length) { continue } + res.push(("" + (j + 1) + (repeat$1(" ", 3 - String(j + 1).length)) + "| " + (lines[j]))); + var lineLength = lines[j].length; + if (j === i) { + // push underline + var pad = start - (count - lineLength) + 1; + var length = end > count ? lineLength - pad : end - start; + res.push(" | " + repeat$1(" ", pad) + repeat$1("^", length)); + } else if (j > i) { + if (end > count) { + var length$1 = Math.min(end - count, lineLength); + res.push(" | " + repeat$1("^", length$1)); + } + count += lineLength + 1; + } + } + break + } + } + return res.join('\n') + } + + function repeat$1 (str, n) { + var result = ''; + if (n > 0) { + while (true) { // eslint-disable-line + if (n & 1) { result += str; } + n >>>= 1; + if (n <= 0) { break } + str += str; + } + } + return result + } + + /* */ + + + + function createFunction (code, errors) { + try { + return new Function(code) + } catch (err) { + errors.push({ err: err, code: code }); + return noop + } + } + + function createCompileToFunctionFn (compile) { + var cache = Object.create(null); + + return function compileToFunctions ( + template, + options, + vm + ) { + options = extend({}, options); + var warn$$1 = options.warn || warn; + delete options.warn; + + /* istanbul ignore if */ + { + // detect possible CSP restriction + try { + new Function('return 1'); + } catch (e) { + if (e.toString().match(/unsafe-eval|CSP/)) { + warn$$1( + 'It seems you are using the standalone build of Vue.js in an ' + + 'environment with Content Security Policy that prohibits unsafe-eval. ' + + 'The template compiler cannot work in this environment. Consider ' + + 'relaxing the policy to allow unsafe-eval or pre-compiling your ' + + 'templates into render functions.' + ); + } + } + } + + // check cache + var key = options.delimiters + ? String(options.delimiters) + template + : template; + if (cache[key]) { + return cache[key] + } + + // compile + var compiled = compile(template, options); + + // check compilation errors/tips + { + if (compiled.errors && compiled.errors.length) { + if (options.outputSourceRange) { + compiled.errors.forEach(function (e) { + warn$$1( + "Error compiling template:\n\n" + (e.msg) + "\n\n" + + generateCodeFrame(template, e.start, e.end), + vm + ); + }); + } else { + warn$$1( + "Error compiling template:\n\n" + template + "\n\n" + + compiled.errors.map(function (e) { return ("- " + e); }).join('\n') + '\n', + vm + ); + } + } + if (compiled.tips && compiled.tips.length) { + if (options.outputSourceRange) { + compiled.tips.forEach(function (e) { return tip(e.msg, vm); }); + } else { + compiled.tips.forEach(function (msg) { return tip(msg, vm); }); + } + } + } + + // turn code into functions + var res = {}; + var fnGenErrors = []; + res.render = createFunction(compiled.render, fnGenErrors); + res.staticRenderFns = compiled.staticRenderFns.map(function (code) { + return createFunction(code, fnGenErrors) + }); + + // check function generation errors. + // this should only happen if there is a bug in the compiler itself. + // mostly for codegen development use + /* istanbul ignore if */ + { + if ((!compiled.errors || !compiled.errors.length) && fnGenErrors.length) { + warn$$1( + "Failed to generate render function:\n\n" + + fnGenErrors.map(function (ref) { + var err = ref.err; + var code = ref.code; + + return ((err.toString()) + " in\n\n" + code + "\n"); + }).join('\n'), + vm + ); + } + } + + return (cache[key] = res) + } + } + + /* */ + + function createCompilerCreator (baseCompile) { + return function createCompiler (baseOptions) { + function compile ( + template, + options + ) { + var finalOptions = Object.create(baseOptions); + var errors = []; + var tips = []; + + var warn = function (msg, range, tip) { + (tip ? tips : errors).push(msg); + }; + + if (options) { + if (options.outputSourceRange) { + // $flow-disable-line + var leadingSpaceLength = template.match(/^\s*/)[0].length; + + warn = function (msg, range, tip) { + var data = { msg: msg }; + if (range) { + if (range.start != null) { + data.start = range.start + leadingSpaceLength; + } + if (range.end != null) { + data.end = range.end + leadingSpaceLength; + } + } + (tip ? tips : errors).push(data); + }; + } + // merge custom modules + if (options.modules) { + finalOptions.modules = + (baseOptions.modules || []).concat(options.modules); + } + // merge custom directives + if (options.directives) { + finalOptions.directives = extend( + Object.create(baseOptions.directives || null), + options.directives + ); + } + // copy other options + for (var key in options) { + if (key !== 'modules' && key !== 'directives') { + finalOptions[key] = options[key]; + } + } + } + + finalOptions.warn = warn; + + var compiled = baseCompile(template.trim(), finalOptions); + { + detectErrors(compiled.ast, warn); + } + compiled.errors = errors; + compiled.tips = tips; + return compiled + } + + return { + compile: compile, + compileToFunctions: createCompileToFunctionFn(compile) + } + } + } + + /* */ + + // `createCompilerCreator` allows creating compilers that use alternative + // parser/optimizer/codegen, e.g the SSR optimizing compiler. + // Here we just export a default compiler using the default parts. + var createCompiler = createCompilerCreator(function baseCompile ( + template, + options + ) { + var ast = parse(template.trim(), options); + if (options.optimize !== false) { + optimize(ast, options); + } + var code = generate(ast, options); + return { + ast: ast, + render: code.render, + staticRenderFns: code.staticRenderFns + } + }); + + /* */ + + var ref$1 = createCompiler(baseOptions); + var compile = ref$1.compile; + var compileToFunctions = ref$1.compileToFunctions; + + /* */ + + // check whether current browser encodes a char inside attribute values + var div; + function getShouldDecode (href) { + div = div || document.createElement('div'); + div.innerHTML = href ? "<a href=\"\n\"/>" : "<div a=\"\n\"/>"; + return div.innerHTML.indexOf(' ') > 0 + } + + // #3663: IE encodes newlines inside attribute values while other browsers don't + var shouldDecodeNewlines = inBrowser ? getShouldDecode(false) : false; + // #6828: chrome encodes content in a[href] + var shouldDecodeNewlinesForHref = inBrowser ? getShouldDecode(true) : false; + + /* */ + + var idToTemplate = cached(function (id) { + var el = query(id); + return el && el.innerHTML + }); + + var mount = Vue.prototype.$mount; + Vue.prototype.$mount = function ( + el, + hydrating + ) { + el = el && query(el); + + /* istanbul ignore if */ + if (el === document.body || el === document.documentElement) { + warn( + "Do not mount Vue to <html> or <body> - mount to normal elements instead." + ); + return this + } + + var options = this.$options; + // resolve template/el and convert to render function + if (!options.render) { + var template = options.template; + if (template) { + if (typeof template === 'string') { + if (template.charAt(0) === '#') { + template = idToTemplate(template); + /* istanbul ignore if */ + if (!template) { + warn( + ("Template element not found or is empty: " + (options.template)), + this + ); + } + } + } else if (template.nodeType) { + template = template.innerHTML; + } else { + { + warn('invalid template option:' + template, this); + } + return this + } + } else if (el) { + template = getOuterHTML(el); + } + if (template) { + /* istanbul ignore if */ + if (config.performance && mark) { + mark('compile'); + } + + var ref = compileToFunctions(template, { + outputSourceRange: "development" !== 'production', + shouldDecodeNewlines: shouldDecodeNewlines, + shouldDecodeNewlinesForHref: shouldDecodeNewlinesForHref, + delimiters: options.delimiters, + comments: options.comments + }, this); + var render = ref.render; + var staticRenderFns = ref.staticRenderFns; + options.render = render; + options.staticRenderFns = staticRenderFns; + + /* istanbul ignore if */ + if (config.performance && mark) { + mark('compile end'); + measure(("vue " + (this._name) + " compile"), 'compile', 'compile end'); + } + } + } + return mount.call(this, el, hydrating) + }; + + /** + * Get outerHTML of elements, taking care + * of SVG elements in IE as well. + */ + function getOuterHTML (el) { + if (el.outerHTML) { + return el.outerHTML + } else { + var container = document.createElement('div'); + container.appendChild(el.cloneNode(true)); + return container.innerHTML + } + } + + Vue.compile = compileToFunctions; + + return Vue; + +})); diff --git a/uniweb/static/uniweb/icons/icomoon.eot b/uniweb/static/uniweb/icons/icomoon.eot deleted file mode 100644 index cab88ec4cc00f28eb94308704629fd46b85a7f97..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3384 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 diff --git a/uniweb/static/uniweb/icons/icomoon.svg b/uniweb/static/uniweb/icons/icomoon.svg deleted file mode 100644 index ae6f3d57..00000000 --- a/uniweb/static/uniweb/icons/icomoon.svg +++ /dev/null @@ -1,22 +0,0 @@ -<?xml version="1.0" standalone="no"?> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > -<svg xmlns="http://www.w3.org/2000/svg"> -<metadata>Generated by IcoMoon</metadata> -<defs> -<font id="icomoon" horiz-adv-x="1024"> -<font-face units-per-em="1024" ascent="896" descent="-128" /> -<missing-glyph horiz-adv-x="1024" /> -<glyph unicode=" " horiz-adv-x="0" d="" /> -<glyph unicode="" glyph-name="heart" d="M924.6 770.8c125.6-107.201 132.201-299.602 19.6-415.8l-387-399.6c-25-25.801-65.6-25.801-90.6 0l-387 399.6c-112.4 116.199-105.799 308.6 19.801 415.8 109.6 93.398 272.798 76.6 373.2-27.201l39.4-40.6 39.4 40.6c100.6 103.801 263.6 120.6 373.2 27.201z" /> -<glyph unicode="" glyph-name="check" horiz-adv-x="896" d="M827.010 712.098c9.373 9.373 24.568 9.373 33.939 0l22.629-22.627c9.371-9.375 9.371-24.57 0-33.943l-599.626-599.624c-9.373-9.373-24.568-9.373-33.941 0l-237.588 237.588c-9.371 9.373-9.371 24.57 0 33.941l22.627 22.627c9.373 9.371 24.568 9.371 33.941 0l197.99-197.99z" /> -<glyph unicode="" glyph-name="chevron-left" horiz-adv-x="512" d="M476.95-55.070c-9.371-9.373-24.566-9.373-33.939-0.002l-422.102 422.1c-9.373 9.375-9.373 24.57 0 33.943l422.102 422.1c9.373 9.371 24.568 9.371 33.939 0l14.143-14.141c9.373-9.373 9.373-24.57 0-33.941l-390.986-390.988 390.986-390.988c9.373-9.373 9.373-24.57 0-33.941z" /> -<glyph unicode="" glyph-name="chevron-right" horiz-adv-x="512" d="M35.051 823.070c9.371 9.373 24.566 9.373 33.939 0l422.102-422.098c9.373-9.375 9.373-24.57 0-33.943l-422.102-422.1c-9.373-9.371-24.568-9.371-33.939 0l-14.143 14.141c-9.373 9.373-9.373 24.57 0 33.941l390.986 390.988-390.986 390.988c-9.373 9.373-9.373 24.57 0 33.941z" /> -<glyph unicode="" glyph-name="linkedin" d="M832 832c35.199 0 64-29 64-64.6v-766.8c0-35.6-28.801-64.6-64-64.6h-768.2c-35.201 0-63.801 29-63.801 64.6v766.8c0 35.6 28.6 64.6 63.801 64.6h768.2zM270.8 64h0.199v427.6h-133v-427.6h132.801zM204.4 550c42.6 0 77 34.4 77 77 0 42.4-34.6 77-77 77-42.6 0-77-34.6-77-77s34.4-77 77-77zM768.6 64v234.4c0 115.199-25 203.798-159.4 203.798-64.6 0-108-35.398-125.799-69h-1.801v58.4h-127.4v-427.6h132.801v211.6c0 55.801 10.6 109.801 79.801 109.801 68 0 69-63.801 69-113.4v-208h132.799z" /> -<glyph unicode="" glyph-name="external-link" d="M880 384c8.832 0 16-7.168 16-16v-400c0-52.992-43.008-96-96-96h-704c-52.992 0-96 43.008-96 96v704c0 52.992 43.008 96 96 96h400c8.832 0 16-7.168 16-16v-32c0-8.832-7.168-16-16-16h-400c-17.664 0-32-14.336-32-32v-704c0-17.664 14.336-32 32-32h704c17.664 0 32 14.336 32 32v400c0 8.832 7.168 16 16 16h32zM1000 896c13.248 0 24-10.752 24-24l-0.68-272.080c0-13.248-10.752-24-24-24h-20c-13.248 0-24 10.752-24 24l0.68 180-1.42 1.4-646.24-646.36c-3.883-3.898-11.498-7.061-17-7.061-5.5 0-13.117 3.162-17 7.061l-11.32 11.318c-3.896 3.883-7.059 11.5-7.059 17 0 5.502 3.162 13.117 7.059 17l646.38 646.3-1.4 1.42-180-0.68c-13.248 0-24 10.752-24 24v20c0 13.248 10.752 24 24 24z" /> -<glyph unicode="" glyph-name="twitter" d="M918.74 592.568c0.65-9.096 0.65-18.195 0.65-27.291 0-277.44-211.166-597.116-597.118-597.116-118.904 0-229.36 34.438-322.274 94.211 16.895-1.947 33.137-2.598 50.68-2.598 98.109 0 188.426 33.137 260.548 89.664-92.264 1.951-169.584 62.377-196.225 145.545 12.996-1.949 25.99-3.248 39.637-3.248 18.842 0 37.686 2.6 55.227 7.146-96.162 19.494-168.285 103.959-168.285 205.968v2.598c27.938-15.594 60.428-25.34 94.861-26.637-56.527 37.686-93.561 102.010-93.561 174.781 0 38.984 10.393 74.721 28.588 105.908 103.309-127.35 258.6-210.516 432.728-219.614-3.248 15.594-5.197 31.836-5.197 48.080 0 115.654 93.564 209.868 209.868 209.868 60.428 0 115.004-25.34 153.342-66.273 47.43 9.096 92.91 26.639 133.197 50.68-15.596-48.732-48.732-89.666-92.264-115.654 42.234 4.547 83.168 16.244 120.852 32.486-28.584-41.582-64.322-78.617-105.256-108.506z" /> -<glyph unicode="" glyph-name="calendar" horiz-adv-x="896" d="M800 768c53.020 0 96-42.98 96-96v-704c0-53.020-42.98-96-96-96h-704c-53.020 0-96 42.98-96 96v704c0 53.020 42.98 96 96 96h96v104c0 13.254 10.746 24 24 24h16c13.254 0 24-10.746 24-24v-104h384v104c0 13.254 10.746 24 24 24h16c13.254 0 24-10.746 24-24v-104h96zM96 704c-17.645 0-32-14.355-32-32v-96h768v96c0 17.645-14.355 32-32 32h-704zM800-64c17.645 0 32 14.355 32 32v544h-768v-544c0-17.645 14.355-32 32-32h704z" /> -<glyph unicode="" glyph-name="youtube" horiz-adv-x="1152" d="M1099.31 647.834c22.824-85.734 22.824-264.61 22.824-264.61s0-178.877-22.824-264.612c-12.563-47.299-49.574-83-96.568-95.641-85.182-22.973-426.742-22.973-426.742-22.973s-341.56 0-426.742 22.973c-46.994 12.641-84.006 48.342-96.568 95.641-22.824 85.734-22.824 264.612-22.824 264.612s0 178.875 22.824 264.61c12.563 47.301 49.574 84.551 96.568 97.193 85.182 22.973 426.742 22.973 426.742 22.973s341.562 0 426.742-22.973c46.994-12.641 84.006-49.893 96.568-97.193zM464.29 220.818l285.478 162.402-285.478 162.41v-324.812z" /> -<glyph unicode="" glyph-name="instagram" d="M448.2 614c127.201 0 229.8-102.6 229.8-229.8s-102.6-229.798-229.8-229.798c-127.199 0-229.798 102.6-229.798 229.798 0 127.201 102.6 229.8 229.798 229.8zM448.2 234.8c82.201 0 149.4 67 149.4 149.398 0 82.4-67 149.4-149.4 149.4-82.398 0-149.398-67-149.398-149.4 0-82.398 67.199-149.398 149.398-149.398zM741 623.4c0-29.801-24-53.6-53.6-53.6-29.801 0-53.6 24-53.6 53.6s24 53.6 53.6 53.6 53.6-24 53.6-53.6zM893.2 569c4.201-74 4.201-295.6 0-369.6-3.6-71.801-20-135.4-72.398-187.801-52.4-52.6-116-69-187.801-72.4-74-4.199-295.8-4.199-369.8 0-71.799 3.602-135.199 20-187.799 72.4s-69 116-72.4 187.801c-4.199 74-4.199 295.798 0 369.798 3.6 71.801 19.801 135.4 72.4 187.801s116.199 68.801 187.799 72.199c74 4.201 295.8 4.201 369.8 0 71.801-3.6 135.4-20 187.801-72.398 52.6-52.4 69-116 72.398-187.801zM797.6 120c23.4 58.801 18 199 18 264.2s5.4 205.202-18 264.202c-15.799 39.4-46 69.6-85.199 85.199-58.801 23.201-199 18-264.202 18-65.199 0-205.2 5.4-264.2-18-39.4-15.799-69.6-46-85.199-85.199-23.201-58.801-18-199-18-264.202 0-65.199-5.4-205.2 18-264.2 15.799-39.4 46-69.6 85.199-85.199 58.801-23.201 199-18 264.2-18s205.202-5.4 264.202 18c39.4 15.799 69.6 46 85.199 85.199z" /> -<glyph unicode="" glyph-name="flickr" d="M800 832c53 0 96-43 96-96v-704c0-53-43-96-96-96h-704c-53 0-96 43-96 96v704c0 53 43 96 96 96h704zM289 258c70.199 0 127 56.801 127 127s-56.801 127-127 127-127-56.801-127-127 56.801-127 127-127zM607 258c70.199 0 127 56.801 127 127s-56.801 127-127 127-127-56.801-127-127 56.801-127 127-127z" /> -<glyph unicode="" glyph-name="facebook-f" horiz-adv-x="640" d="M558.28 320h-149.379v-448h-200.34v448h-162.781v185.32h162.781v141.24c0 160.68 95.719 249.44 242.16 249.44 70.139 0 143.5-12.52 143.5-12.52v-157.781h-80.84c-79.641 0-104.48-49.42-104.48-100.119v-120.26h177.82z" /> -</font></defs></svg> diff --git a/uniweb/static/uniweb/icons/icomoon.ttf b/uniweb/static/uniweb/icons/icomoon.ttf deleted file mode 100644 index fa59609ee85bc976737b94433954173288573a23..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3220 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 bki<~Qpupe>_JA+M1K^khwWy&Hf{g+I7!e6y diff --git a/uniweb/static/uniweb/icons/icomoon.woff b/uniweb/static/uniweb/icons/icomoon.woff deleted file mode 100644 index 87c46d1a16a4e75d3012924560f851023629e81c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3296 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 diff --git a/uniweb/templates/uniweb/base.html b/uniweb/templates/uniweb/base.html index 76dc5551..23afdfa5 100644 --- a/uniweb/templates/uniweb/base.html +++ b/uniweb/templates/uniweb/base.html @@ -2,25 +2,9 @@ <!doctype html> <html lang="cs"> <head> - - <!-- Font loader --> - <script type="text/javascript"> - WebFontConfig = { - google: { families: ['Roboto+Condensed:300,300i,400,400i,700,700i:latin-ext', 'Bebas+Neue'] } - }; - (function () { - var wf = document.createElement('script'); - wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js'; - wf.type = 'text/javascript'; - wf.async = 'true'; - var s = document.getElementsByTagName('script')[0]; - s.parentNode.insertBefore(wf, s); - })(); - </script> - <!-- Meta --> <meta charset="utf-8"> - <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + <meta name="viewport" content="width=device-width" /> {% meta_tags %} {% if settings.MAJAK_ENV == "test" %} <meta name="robots" content="noindex, nofollow"> @@ -29,86 +13,129 @@ <!-- Favicon --> {% include "shared/favicon_snippet.html" %} - <!-- Bootstrap CSS --> - <link rel="stylesheet" href="{% static "shared/vendor/bootstrap-4.4.1/css/bootstrap.min.css" %}"> - <link rel="stylesheet" href="{% static "shared/vendor/fancybox/jquery.fancybox.min.css" %}"> - <!-- Styles --> - <link href="{% static "uniweb/assets/css/style.css" %}" rel="stylesheet"> - <link href="{% static "uniweb/assets/css/icons.css" %}" rel="stylesheet"> + <link href="{% static "uniweb/assets/css/styles.css" %}" rel="stylesheet" media="all" /> + <link href="{% static "uniweb/assets/css/pattern-scaffolding.css" %}" rel="stylesheet" media="all" /> + <link href="{% static "shared/vendor/fancybox/jquery.fancybox.min.css" %}" rel="stylesheet"> + + <style type="text/css"> + .float-left { + float: left; + } + .float-right { + float: right; + } + .clearfix::after { + content: ""; + display: table; + clear: both; + } + .mx-auto { + margin-left: auto; + margin-right: auto; + } + </style> {% if page.matomo_id %} {% include "shared/matomo_snippet.html" with matomo_id=page.matomo_id %} {% endif %} </head> -<body id="top"> - - <!-- HEADER --> - <div class="pre-navbar d-none d-lg-flex" style="background:black;"> - <div class="container d-flex justify-content-end"> - <a href="https://www.pirati.cz/" class="header_link header_link--desktop mr-4 py-2" target="_blank" rel="noreferrer"><i class="icon-external-link mr-2" title="Ikona odkazu"></i>www.pirati.cz</a> - </div> - </div> - - <nav class="navbar navbar-expand-xl navbar-dark"> - <div class="container"> - - <div class="brand-wrapper"> - <a class="navbar-brand" href="/"> - <h1 class="lead ml-1 mt-3" style="color: #FFFFFF; font-size: 3rem;"> - <img src="{% static "shared/img/logo_white.svg" %}" alt="Logo Pirátské strany" style="width: 50px; height: 50px;" class="mr-2"> - {{ page.root_page.seo_title }} - </h1> - </a> - </div> - - <!-- Mobile menu toggler --> - <button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#mainNavigation" aria-controls="mainNavigation" aria-expanded="false" aria-label="Otevřít menu"> - <span></span> - <span></span> - <span></span> - </button> - - <!-- Navigation --> - <div class="collapse navbar-collapse" id="mainNavigation"> - <ul class="navbar-nav ml-auto"> - {% for item in page.root_page.top_menu %} - <li class="nav-item"> - <a class="nav-link" href="{% pageurl item.value.page %}">{{ item.value.name }}</a> - </li> - {% endfor %} - </ul> - <a href="https://www.pirati.cz/" class="d-block d-lg-none mb-3 header_link header_link--mobile" target="_blank" rel="noreferrer"><i class="icon-external-link mr-2" title="Ikona odkazu"></i>www.pirati.cz</a> - </div><!-- /navigation --> - - </div><!-- /container --> +<body> + + <nav class="navbar __js-root"> + <ui-app inline-template> + <ui-navbar inline-template> + <div> + <div class="container navbar__content max-w-screen-xl" :class="{'navbar__content--initialized': true}"> + <div class="navbar__brand my-4 flex items-center lg:block lg:pr-8 lg:my-0"> + <a href="/" class="no-underline hover:no-underline"> + <img src="{% static "uniweb/assets/images/logo-round-white.svg" %}" class="w-8 lg:w-full lg:border-r lg:border-grey-300 lg:pr-8" /> + </a> + <a href="/" class="no-underline hover:no-underline pt-1"> + <span class="lg:hidden pl-4 head-alt-base">{{ page.root_page.seo_title }}</span> + </a> + </div> + <div class="navbar__menutoggle my-4 lg:hidden flex justify-end"> + <a href="#" @click="show = !show" class="no-underline hover:no-underline"> + <i class="ico--menu text-3xl"></i> + </a> + </div> + <div v-if="isLgScreenSize" class="lg:mt-4"> + <a href="/" class="no-underline hover:no-underline"> + <span class="head-alt-base lg:head-alt-md">{{ page.root_page.seo_title }}</span> + </a> + </div> + <div v-if="show || isLgScreenSize" class="my-4 lg:mb-0 flex justify-end"> + <ul class="navbar-menu text-white"> + {% for item in page.root_page.top_menu %} + <li class="navbar-menu__item"> + <a class="navbar-menu__link" href="{% pageurl item.value.page %}">{{ item.value.name }}</a> + </li> + {% endfor %} + </ul> + </div> + </div> + </div> + </ui-navbar> + </ui-app> </nav> - <!-- /HEADER --> + <div class="container container--default py-4 lg:py-12"> {% block content %}{% endblock %} + </div> - <!-- FOOTER --> - <footer id="kontakt"> - - <div class="footer__bottom"> - <div class="container"> - <div class="row"> - <div class="col-12 col-md-6 mb-3 mb-md-0"> - <p class="mb-0">© {% now "Y" %} Piráti. Všechna práva vyhlazena.<br/>Sdílejte a nechte ostatní sdílet za stejných podmínek.</p> - </div><!-- /column --> - </div><!-- /row --> - </div><!-- /container --> - </div><!-- /footer_bottom --> - + <footer class="footer bg-grey-700 text-white __js-root"> + <ui-app inline-template> + <div> + <div class="footer__main py-4 lg:py-16 container container--default"> + <section class="footer__brand"> + <a href="https://www.pirati.cz"> + <img src="{% static "uniweb/assets/images/logo.svg" %}" alt="logo pirátské strany" class="w-32 md:w-40 pb-6" /> + </a> + <p class="para hidden md:block md:mb-4 lg:mb-0 text-grey-200"> + {% now "Y" %} Piráti. Všechna práva vyhlazena. Sdílejte a nechte ostatní sdílet za stejných podmínek. + </p> + </section> + <section class="footer__social lg:text-right"> + <div class="mb-4"> + <div class="social-icon-group space-x-2 text-white pb-4"> + <a href="https://www.pirati.cz" class="social-icon "><i class="ico--home"></i></a> + <a href="https://www.facebook.com/ceska.piratska.strana/" class="social-icon "><i class="ico--facebook"></i></a> + <a href="https://twitter.com/PiratskaStrana" class="social-icon "><i class="ico--twitter"></i></a> + <a href="https://www.youtube.com/user/CeskaPiratskaStrana" class="social-icon "><i class="ico--youtube"></i></a> + <a href="https://www.instagram.com/pirati.cz/" class="social-icon "><i class="ico--instagram"></i></a> + <a href="https://www.flickr.com/photos/pirati/" class="social-icon "><i class="ico--flickr"></i></a> + </div> + </div> + <div class="flex flex-col md:flex-row lg:flex-col lg:items-end space-y-2 md:space-y-0 md:space-x-2 lg:space-x-0 lg:space-y-2"> + <a href="https://dary.pirati.cz" class="btn btn--icon btn--cyan-200 btn--hoveractive text-lg btn--fullwidth sm:btn--autowidth"> + <div class="btn__body-wrap"> + <div class="btn__body ">Přispěj</div> + <div class="btn__icon "> + <i class="ico--pig"></i> + </div> + </div> + </a> + <a href="https://nalodeni.pirati.cz" class="btn btn--icon btn--blue-300 btn--hoveractive text-lg btn--fullwidth sm:btn--autowidth"> + <div class="btn__body-wrap"> + <div class="btn__body ">Naloď se</div> + <div class="btn__icon "> + <i class="ico--anchor"></i> + </div> + </div> + </a> + </div> + </section> + </div> + </div> + </ui-app> </footer> - <!-- /FOOTER --> - <!-- JavaScript libraries --> + <script src="{% static "uniweb/assets/js/vue.2.6.11.js" %}"></script> + <script src="{% static "uniweb/assets/js/main.bundle.js" %}"></script> <script src="{% static "shared/vendor/jquery/jquery-3.4.1.min.js" %}"></script> - <script src="{% static "shared/vendor/bootstrap-4.4.1/js/bootstrap.min.js" %}"></script> <script src="{% static "shared/vendor/lazysizes/lazysizes.min.js" %}"></script> <script src="{% static "shared/vendor/fancybox/jquery.fancybox.min.js" %}"></script> - </body> </html> diff --git a/uniweb/templates/uniweb/snippet_sections.html b/uniweb/templates/uniweb/snippet_sections.html index 91e37d92..277fe9e3 100644 --- a/uniweb/templates/uniweb/snippet_sections.html +++ b/uniweb/templates/uniweb/snippet_sections.html @@ -1,33 +1,29 @@ {% load wagtailcore_tags wagtailimages_tags %} {% for section in page.content %} -<section class="section--{% cycle "alternate" "primary" %}"> - <div class="container"> +<section class="mb-8 lg:mb-16 clearfix"> - {% if section.value.title %} - <h2 class="lead page-subheading mb-4">{{ section.value.title }}</h2> - {% endif %} + {% if section.value.title %} + <h1 class="head-alt-md md:head-alt-lg max-w-5xl mt-4 mb-6">{{ section.value.title }}</h1> + {% endif %} - {% if section.block_type == "text_section" %} - <div class="row"> - <div class="col-12 richtext"> - {{ section.value.text|richtext }} - </div> - </div> - {% endif %} - - {% if section.block_type == "gallery_section" %} - <div class="row about-images"> - {% for picture in section.value.images %} - {% image picture width-2000 as img %} - {% image picture fill-300x200 as thumb %} - <div class="col-6 col-md-3 mb-4"> - <a data-fancybox="gallery" href="{{ img.url }}"><img data-src="{{ thumb.url }}" class="lazyload img-fluid" alt="{{ thumb.alt }}"></a> - </div> - {% endfor %} - </div> - {% endif %} + {% if section.block_type == "text_section" %} + <div class="content-block w-full my-4"> + {{ section.value.text|richtext }} + </div> + {% endif %} + {% if section.block_type == "gallery_section" %} + <div class="content-block w-full my-6 grid grid-cols-4 gap-4"> + {% for picture in section.value.images %} + {% image picture width-2000 as img %} + {% image picture fill-300x200 as thumb %} + <div> + <a data-fancybox="gallery" href="{{ img.url }}"><img data-src="{{ thumb.url }}" class="lazyload img-fluid" alt="{{ thumb.alt }}"></a> + </div> + {% endfor %} </div> + {% endif %} + </section> {% endfor %} diff --git a/uniweb/templates/uniweb/uniweb_flexible_page.html b/uniweb/templates/uniweb/uniweb_flexible_page.html index 8a8eb7f0..2e78ec45 100644 --- a/uniweb/templates/uniweb/uniweb_flexible_page.html +++ b/uniweb/templates/uniweb/uniweb_flexible_page.html @@ -1,13 +1,9 @@ {% extends "uniweb/base.html" %} {% block content %} - -<!-- CONTENT --> -<main role="main"> +<main> {% include "uniweb/snippet_sections.html" %} </main> -<!-- /CONTENT --> - {% endblock %} diff --git a/uniweb/templates/uniweb/uniweb_home_page.html b/uniweb/templates/uniweb/uniweb_home_page.html index 36ac0c7e..a288e155 100644 --- a/uniweb/templates/uniweb/uniweb_home_page.html +++ b/uniweb/templates/uniweb/uniweb_home_page.html @@ -2,13 +2,9 @@ {% load wagtailcore_tags %} {% block content %} - -<!-- CONTENT --> -<main role="main"> +<main> {% include "uniweb/snippet_sections.html" %} </main> -<!-- /CONTENT --> - {% endblock %} -- GitLab