Initial Upload

This commit is contained in:
Matt Batchelder
2025-12-02 10:32:59 -05:00
commit 05ce0da296
2240 changed files with 467811 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<?php
/*
* Copyright (C) 2023 Xibo Signage Ltd
*
* Xibo - Digital Signage - https://xibosignage.com
*
* This file is part of Xibo.
*
* Xibo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* Xibo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Theme Configuration Object
*/
$config = array(
'theme_name' => 'Xibo Default Theme',
'theme_title' => 'Xibo Digital Signage',
'app_name' => 'Xibo',
'theme_url' => 'https://xibosignage.com',
'cms_source_url' => 'https://github.com/xibosignage/xibo/',
'cms_install_url' => 'manual/en/install_cms.html',
'cms_release_notes_url' => 'manual/en/release_notes.html',
);

View File

@@ -0,0 +1,297 @@
/*
* Copyright (C) 2023 Xibo Signage Ltd
*
* Xibo - Digital Signage - https://xibosignage.com
*
* This file is part of Xibo.
*
* Xibo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* Xibo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
*/
#calendar-progress {
font-size: 1.5rem;
opacity: 0;
transform: scale(0.8);
transition: transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
display: inline-block;
}
#calendar-progress.show {
opacity: 1;
transform: scale(1);
}
#cal-week-box {
z-index: 1000;
}
.cal-legend ul {
list-style: none;
}
#cal-day-box {
overflow-x: auto;
}
#cal-day-box #cal-day-panel {
width: max-content;
min-width: 100%;
}
.day-highlight {
overflow: hidden;
}
.day-event.day-event-small {
border-color: orange !important;
background-color: orange;
min-height: 20px;
opacity: 0.8;
}
.day-event.day-event-small:hover {
opacity: 1;
}
.agenda-view-modal .modal-dialog {
max-width: 1200px;
}
.agenda-view-modal .modal-dialog .modal-body {
min-height: 600px;
}
.agenda-view-modal .modal-title {
display: inline-flex;
}
.agenda-view-modal .agenda-view-loading {
height: 15px;
margin: 6px 0px 0px 6px;
}
.agenda-table {
margin-bottom: 20px;
background-color: #fff;
border-radius: 4px;
}
.agenda-table thead {
background-color: #e3e3e3 !important;
}
.agenda-table .table-title {
background-color: #30426a !important;
color: #fff;
}
.agenda-panel .panel-body {
background-color: #f5f5f5;
padding: 10px 0 0 0;
}
.agenda-panel .panel-heading {
background-color: white;
}
.agenda-panel .nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
background-color: #ddd;
}
.agenda-panel .text-danger {
text-align: center;
vertical-align: middle;
line-height: 90px;
}
.agenda-table tbody tr.low-priority {
color: grey;
}
.agenda-table tbody tr:hover {
cursor: pointer;
color: #428bca;
}
.agenda-table tbody tr.selected {
cursor: pointer;
background-color: #428bca;
color: white;
}
.agenda-table tbody tr.selected-linked {
cursor: pointer;
background-color: #83acd0;
color: white;
}
.agenda-table .btn-tag {
padding: 0px 5px;
cursor: default;
}
.agenda-panel .dataTables_wrapper {
padding-top: 10px;
float: left;
width: 100%;
}
.agenda-panel .dataTables_wrapper:not(:last-child) {
border-bottom: 2px solid #e3e3e3;
}
@media (min-width: 1200px) {
.agenda-panel .agenda-col {
padding: 0 5px;
}
.agenda-panel .agenda-col-lt .dataTables_length {
height: 40px;
}
.agenda-panel .agenda-col-dg, .agenda-panel .agenda-col-lt > .agenda-table {
margin-top: 46px;
}
.agenda-panel .dataTables_wrapper .col-sm-12 {
padding: 0;
}
.agenda-panel .table>tbody>tr>td, .agenda-panel .table>tbody>tr>th, .agenda-panel .table>tfoot>tr>td, .agenda-panel .table>tfoot>tr>th, .agenda-panel .table>thead>tr>td, .agenda-panel .table>thead>tr>th {
padding: 4px;
}
.agenda-panel table.dataTable thead>tr>th.sorting_asc, .agenda-panel table.dataTable thead>tr>th.sorting_desc, .agenda-panel table.dataTable thead>tr>th.sorting, .agenda-panel table.dataTable thead>tr>td.sorting_asc, .agenda-panel table.dataTable thead>tr>td.sorting_desc, .agenda-panel table.dataTable thead>tr>td.sorting {
padding-right: 25px;
}
.agenda-panel table.dataTable thead .sorting:after, .agenda-panel table.dataTable thead .sorting_asc:after, .agenda-panel table.dataTable thead .sorting_desc:after, .agenda-panel table.dataTable thead .sorting_asc_disabled:after, .agenda-panel table.dataTable thead .sorting_desc_disabled:after {
bottom: 6px;
right: 6px;
}
.cal-context .tab-pane {
padding: 25px 5px 5px 5px !important;
}
.agenda-panel .dataTables_wrapper:first-child {
padding-top: 0;
}
.agenda-panel .dataTables_wrapper>.row:first-of-type>div {
margin: 0;
}
}
.cal-event-time-bar {
margin: 15px 0;
height: 50px;
}
.cal-event-time-bar .slider.slider-horizontal {
float: left;
width: calc(100% - 80px);
margin-top: 7px;
}
.cal-event-time-bar .slider-step-btn {
float: left;
width: 40px;
color: #337ab7;
}
.cal-event-time-bar .slider .tooltip.top {
margin-top: -36px;
z-index: 10;
}
.cal-event-time-bar .slider .tooltip-inner {
font-weight: bold;
font-size: 1rem;
}
.cal-event-time-bar .slider .slider-tick:not(.in-selection) {
background-image: linear-gradient(to bottom, #d7f2ff, #d0f0ff);
}
.cal-event-time-bar .slider .slider-tick-label {
width: 60px !important;
transform: translateX(-30px);
margin-left: 0 !important;
overflow: hidden;
}
.cal-event-time-bar .slider-handle:hover {
cursor: grabbing;
}
.cal-event-time-bar .tooltip {
z-index: 1040;
}
.cal-event-agenda-filter {
margin-top: 15px;
padding: 0 15px;
}
.cal-event-agenda-filter .cal-event-location-map {
border-radius: 3.5px;
overflow: hidden;
margin-bottom: 8px;
}
.cal-event-location {
display: table;
width: inherit;
margin: 6px 0;
}
.cal-event-location>button, .cal-event-location>div {
margin: 0 2px;
}
.cal-event-location>button {
width: 40px;
}
.cal-context .tab-pane {
padding-top: 25px;
}
.cal-event-breadcrumb-trail #content {
text-align: center;
}
#CalendarContainer .cal-events-num {
margin-top: 15px;
background-color: #5bc0de;
}
.cal-month-day-number-events {
position: absolute;
display: none;
top: 5px;
left: 5px;
border-radius: 0.5em;
border-top-left-radius: 0;
}
.cal-cell:hover .cal-month-day-number-events {
display: block;
}
[data-event-class="event-important"] .event-priority {
vertical-align: super;
font-size: smaller;
margin: 1px;
}

View File

View File

@@ -0,0 +1,497 @@
/*
* Copyright (C) 2023 Xibo Signage Ltd
*
* Xibo - Digital Signage - https://xibosignage.com
*
* This file is part of Xibo.
*
* Xibo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* Xibo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Base structure
*/
/* Base */
body {
background: #f3f3f3;
color: #333333 !important;
}
.row {
margin-left: 0 !important;
margin-right: 0 !important;
}
.row > div {
margin-bottom: 1rem;
}
.alerts-container .alert:last-child {
margin-bottom: 0px;
}
#page-wrapper {
height: 100%
}
#sidebar-wrapper {
margin-left: -10rem;
width: 11rem;
position: fixed;
height: 100%;
}
.green {
background: #23ae89 !important;
}
.blue {
background: #2361ae !important;
}
.orange {
background: #d3a938 !important;
}
.red {
background: #ae2323 !important;
}
.form-group .help-block.form-group-inline-message {
padding-top: 5px;
}
div.input-mask {
padding-top: 7px;
}
/* Sidebar */
ul.sidebar {
position: absolute;
top: 0;
bottom: 1px;
padding: 0;
margin: 0;
list-style: none;
text-indent: 20px;
overflow-x: hidden;
overflow-y: auto;
}
#page-wrapper:not(.active) ul.sidebar {
bottom: 0;
}
ul.sidebar li a {
color: #fff;
display: block;
float: left;
text-decoration: none;
width: 11rem;
}
ul.sidebar .sidebar-main {
height: 65px;
}
ul.sidebar .sidebar-main a {
font-size: 1.2rem;
line-height: 60px;
text-indent: 12px;
}
ul.sidebar .sidebar-main .menu-icon {
float: right;
font-size: 1.3rem;
padding-right: 28px;
line-height: 60px;
}
ul.sidebar .sidebar-title {
display: table;
font-size: 0.9rem;
margin-top: 1rem;
line-height: 2rem;
text-transform: uppercase;
text-indent: 12px;
}
ul.sidebar .sidebar-title a, ul.sidebar .sidebar-title a:hover {
color: #fff;
}
#page-wrapper:not(.active) ul.sidebar .sidebar-title {
display: none;
}
#page-wrapper:not(.active) ul.sidebar .sidebar-title.separator {
display: block;
height: 2px;
margin: 13px 0;
}
ul.sidebar .sidebar-list {
height: 40px;
}
ul.sidebar .sidebar-list a {
text-indent: 16px;
font-size: 1rem;
color: #b2bfdc;
line-height: 40px;
}
ul.sidebar .sidebar-list a:hover {
color: #fff;
border-left: 3px solid #e99d1a;
text-indent: 13px;
}
ul.sidebar .sidebar-list a.sidebar-list-selected {
color: #fff;
border-left: 3px solid #e99d1a;
text-indent: 13px;
}
#page-wrapper:not(.active) ul.sidebar .sidebar-list a:hover span {
border-left: 3px solid #e99d1a;
}
ul.sidebar .sidebar-list .menu-icon {
float: right;
padding-right: 29px;
line-height: 40px;
width: 70px;
}
ul.sidebar .sidebar-list a:hover .menu-icon {
text-indent: 16px;
}
.sidebar-footer {
position: absolute;
height: 40px;
bottom: 0;
width: 100%;
padding: 0;
margin: 0;
text-align: center;
}
#page-wrapper:not(.active) .sidebar-footer {
display: none;
}
.sidebar-footer div a {
color: #b2bfdc;
font-size: 0.85rem;
line-height: 43px;
}
.sidebar-footer div a:hover {
color: #ffffff;
text-decoration: none;
}
/* Main Content */
#content-wrapper {
padding-left: 0;
margin-left: 0;
width: 100%;
height: auto;
}
@media only screen and (min-width:561px){
#page-wrapper.active {
padding-left: 11rem;
}
}
@media only screen and (max-width:560px){
#page-wrapper.active {
padding-left: 70px;
}
}
#page-wrapper.active #sidebar-wrapper {
left: 10rem;
z-index: 3;
}
/* Header */
.row.header {
height: 60px;
background: #273759;
margin-bottom: 15px;
z-index: 1;
}
.row.header > div:last-child {
padding-right: 0;
}
.row.header .meta .page {
font-size: 1.2rem;
padding-top: 11px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
@media only screen and (min-width : 993px) {
.row.header .meta .page {
width: 380px;
}
}
@media only screen and (max-width : 992px) {
.row header .meta .page {
width: 11rem;
}
}
.row.header .meta .breadcrumb-links {
font-size: 0.7rem;
}
.row.header .login a {
padding: 18px;
display: block;
}
.row.header .user > .item {
width: 65px;
height: 60px;
display: inline-block;
text-align: center;
vertical-align: middle;
}
.row.header .user > .item > a {
color: #cccccc;
display: block;
padding: 10px 0;
}
.row.header .user > .item > a:hover {
color: #f9f9f9;
}
.row.header .user-notif > .item > a {
padding: 5px 0;
line-height: 49px;
}
.row.header .user-notif > .item > i {
font-size: 1.4rem;
line-height: 50px;
}
.row.header .user > .item img {
width: 40px;
height: 40px;
border-radius: 2px;
}
.row.header .user > .item a::after {
display: none;
}
.row.header .user > .item div.dropdown-menu {
border-radius: 2px;
-webkit-box-shadow: 0 6px 12px rgba(0,0,0,.05);
box-shadow: 0 6px 12px rgba(0,0,0,.05);
}
.row.header .user > .item div.dropdown-menu:before {
position: absolute;
top: -7px;
right: 23px;
display: inline-block;
border-right: 7px solid transparent;
border-bottom: 7px solid #ccc;
border-left: 7px solid transparent;
border-bottom-color: rgba(0, 0, 0, 0.2);
content: '';
}
.row.header .user > .item div.dropdown-menu:after {
position: absolute;
top: -6px;
right: 24px;
display: inline-block;
border-right: 6px solid transparent;
border-bottom: 6px solid #ffffff;
border-left: 6px solid transparent;
content: '';
}
.row.header .user > .item div.dropdown-menu .dropdown-header {
text-align: center;
}
.row.header .user > .item div.dropdown-menu li.link {
text-align: left;
}
.row.header .user > .item div.dropdown-menu li.link a {
padding-left: 7px;
padding-right: 7px;
}
.row.header .user > .item div.dropdown-menu div {
padding: 5px;
}
/* Widgets */
.widget {
background: #ffffff;
border: 1px solid transparent;
border-radius: 2px;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
border-color: #e9e9e9;
}
.widget .widget-title {
font-size: 1.2rem;
color: #767676;
background-color: #f6f6f6;
padding: 10px 15px;
border-bottom: 1px solid #e9e9e9;
line-height: 29px;
}
.widget .widget-title .widget-sub-title {
font-size: 1rem;
}
.widget .widget-title i {
margin-right: 5px;
}
.widget .widget-title .saving {
font-size: 1rem;
}
.widget .widget-title .widget-title-info {
font-size: 1rem;
}
.widget .widget-title input {
width: 25%;
}
/* Reset */
.widget .widget-title .bootstrap-select-searchbox input {
width: 100%;
}
.widget .widget-body {
padding: 15px;
}
.widget .widget-button {
cursor: pointer;
}
.widget .widget-body table thead * {
font-size: 14px !important;
}
.widget .widget-body table tbody * {
font-size: 13px !important;
}
.widget .widget-body table tbody .btn-tag {
padding: 0px 5px;
}
.widget .widget-body.no-padding .error, .widget .widget-body.no-padding .message {
padding: 20px;
}
.widget .widget-body .error {
color: #ff0000;
}
.widget .widget-body table thead {
background: #fafafa;
}
.widget .widget-body .dataTables_length {
margin: 3px 0 -3px 0;
}
.widget .widget-body .dataTables_length label {
margin: 0;
}
.dataTables_wrapper .row:first-child > div {
margin-bottom: 0.5rem;
}
.widget .widget-body.large {
height: 350px;
overflow-y: auto;
}
.widget .widget-body.medium {
height: 250px;
overflow-y: auto;
}
.widget .widget-body.small {
height: 10rem;
overflow-y: auto;
}
.widget .widget-body.no-padding {
padding: 0;
}
.widget .widget-body div.alert {
margin-bottom: 10px;
}
.widget .widget-icon {
background: #30426a;
width: 65px;
height: 65px;
border-radius: 50%;
text-align: center;
vertical-align: middle;
margin-right: 15px;
}
.widget .widget-icon i {
line-height: 66px;
color: #ffffff;
font-size: 2.2rem;
}
.widget .widget-content .title {
font-size: 1.75rem;
display: block;
}
.widget-action-menu {
padding: 8px;
padding-right: 15px;
}
.widget-navigation-menu {
background-color: #e9ecef;
}
/* Blue */
ul.sidebar .sidebar-main a,
.sidebar-footer,
ul.sidebar .sidebar-list a:hover,
#page-wrapper:not(.active) ul.sidebar .sidebar-title.separator {
/* Sidebar header and footer color */
background: #273759;
}
.sidebar-list a.sidebar-list-selected {
/* Sidebar selected */
background: #2c3d63;
}
#sidebar-wrapper {
/* Sidebar background color */
background: #30426a;
}
ul.sidebar .sidebar-title {
/* Sidebar title text colour */
color: #627cb7;
}
.news-widget div.article {
padding-top: 15px;
}
/* Horizontal Menu */
.navbar-default {
background-color: #273759;
font-size: 1rem;
padding: 0 8px;
margin-bottom: 20px;
}
.navbar-default .navbar-brand {
padding: 13px 0;
}
.navbar-default img.nav-avatar {
width: 40px;
height: 40px;
border-radius: 2px;
}
.navbar-default .navbar-nav>li>a {
line-height: 49px;
color: #b2bfdc;
border-bottom: 1px solid #273759;
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
color: #fff;
background-color: #30426a;
}
.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
color: #fff;
border-bottom: 1px solid #e99d1a;
background-color: #30426a;
}
.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
color: #fff;
border-bottom: 1px solid #e99d1a;
background-color: #30426a;
}
.notification-drawer-icon i {
font-size: 1.4rem;
}
.remote-icons a {
padding-right: 5px;
}
.capitalize {
text-transform: capitalize;
}
/* Display Map */
#display-map {
width: 100% !important;
}
.display-map-legend {
background-color: #ffffffad;
border-radius: 5px;
padding: 10px;
border: 1px solid grey;
}

View File

@@ -0,0 +1,77 @@
/*
* Copyright (C) 2019 Xibo Signage Ltd
*
* Xibo - Digital Signage - http://www.xibo.org.uk
*
* This file is part of Xibo.
*
* Xibo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* Xibo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
*/
body {
color: #333333 !important;
margin-bottom: 60px;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
}
.header {
text-align: center;
margin-bottom: 15px;
font-size: 24px;
}
.small {
font-size: 85%;
}
.logo {
height: 60px;
margin-left: 15px;
margin-bottom: 15px;
}
.saved-report-table {
border-collapse: collapse;
width: 100%;
}
.saved-report-table td, .saved-report-table th {
border: 1px solid #ddd;
padding: 8px;
}
.saved-report-table tr:nth-child(even){background-color: #f2f2f2;}
.saved-report-table tr:hover {background-color: #ddd;}
.saved-report-table th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #273759;
color: white;
}
.clear {
clear:both;
}
.right {
float: right;
}
.left {
float: left;
}

View File

@@ -0,0 +1,24 @@
/**
* Copyright (C) 2019 Xibo Signage Ltd
*
* Xibo - Digital Signage - http://www.xibo.org.uk
*
* This file is part of Xibo.
*
* Xibo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* Xibo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
*/
/* This file is included after the core Layout Preview CSS, replace
* this with a theme to override Layout Preview CSS.
*/

View File

@@ -0,0 +1,58 @@
/*
* Copyright (C) 2023 Xibo Signage Ltd
*
* Xibo - Digital Signage - http://www.xibo.org.uk
*
* This file is part of Xibo.
*
* Xibo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* Xibo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
*/
/* Move down content because we have a fixed navbar that is 50px tall */
body {
padding-top: 50px;
padding-bottom: 20px;
}
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: 60px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: 80px;
padding: 5px;
}
img.logo {
height: 60px;
}
.main-container {
margin-top: 25px;
}
.main-container button {
margin-left: -15px;
margin-right: -15px;
float: left;
}
.tab-pane {
padding-top: 25px;
}

View File

@@ -0,0 +1,21 @@
/*
* Copyright (C) 2023 Xibo Signage Ltd
*
* Xibo - Digital Signage - http://www.xibo.org.uk
*
* This file is part of Xibo.
*
* Xibo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* Xibo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
*/

View File

@@ -0,0 +1,70 @@
/*
* Copyright (C) 2019 Xibo Signage Ltd
*
* Xibo - Digital Signage - http://www.xibo.org.uk
*
* This file is part of Xibo.
*
* Xibo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* Xibo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
*/
/* Print Style Sheet */
@media print {
@page {
margin: 0;
size: landscape;
}
body {
margin: 1.6cm;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
}
.nav-pills, .proof-of-play-report-div, #applyBtn, #applyWarning, .fa-info-circle , .dt-buttons, .pagination,
.select2-selection__clear, button.select-all, button.dropdown-toggle,
.navbar-collapse, #sidebar-wrapper, #content-wrapper > div > div.row.header
{
display: none;
}
.widget .widget-title {
font-size: 1.4rem;
color: #767676;
background-color: #f6f6f6;
text-align: center;
line-height: 60px;
}
.card.bg-light {
border: 2px solid #e3e3e3;
}
/* Reports of summary, distribution */
#canvas {
max-width: 25cm;
max-height: 7cm;
}
/* Custom reports*/
.custom-chart {
max-width: 25cm;
max-height: 6.5cm;
}
.page-break-avoid {
page-break-inside : avoid
}
}

View File

@@ -0,0 +1,218 @@
/*
* Xibo - Digital Signage - http://www.xibo.org.uk
* Copyright (C) 2012 Daniel Garner
*
* This file is part of Xibo.
*
* Xibo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* Xibo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
*/
div.timelineMediaVerticalList {
float: left;
width: 560px;
}
div#timelinePreview {
float: left;
width: 180px;
}
div.timelineMediaDetails h3 {
font-size: 1.15rem;
}
ul.timelineSortableListOfMedia {
list-style: none;
}
li.timelineModuleListItem {
list-style: none;
}
img.timelineModuleButtonImage {
width: 35px;
height: 35px;
float: left;
}
span.timelineModuleButtonText {
float:left;
padding-top: 12px;
}
a.timelineModuleButtonAnchor {
display: block;
clear: left;
}
div.timelineMediaItem {
width: 500px;
}
li.timelineMediaListItem {
padding: 5px;
padding-bottom: 60px;
}
ul.timelineMediaItemLinks li {
display: inline;
padding-left: 15px;
}
ul.timelineMediaItemLinks li a {
color: white;
}
ul.timelineMediaItemLinks {
background-color: black;
margin: 0;
padding: 10px;
}
div.timelineMediaPreview {
display: none;
}
div.timelineMediaDetails {
height: 60px;
}
div.timelineMediaDetails h3 {
float: left;
padding-left: 20px;
color: whiteSmoke;
max-width: 350px;
max-height: 60px;
overflow: hidden;
margin-top: 1px;
}
div.timelineMediaDetails .timelineMediaTags {
float: right;
max-width: 150px;
max-height: 60px;
overflow: hidden;
}
div.timelineMediaItemColouringDefault {
background-color: green;
}
div.timelineMediaItemColouring_powerpoint {
background-color: #3333D6;
}
div.timelineMediaItemColouring_image {
background-color: #FF3030;
}
div.timelineMediaItemColouring_webpage {
background-color: #009933;
}
div.timelineMediaItemColouring_shellcommand {
background-color: #66C285;
}
div.timelineMediaItemColouring_microblog {
background-color: #FF6600;
}
div.timelineMediaItemColouring_embedded {
background-color: #FF3399;
}
div.timelineMediaItemColouring_text {
background-color: #CCCC00;
}
div.timelineMediaItemColouring_ticker {
background-color: #006600;
}
div.timelineMediaItemColouring_video {
background-color: #990099;
}
div.timelineMediaItemColouring_flash {
background-color: #ADAD85;
}
div.timelineMediaItemColouring_counter {
background-color: #3366FF;
}
div.timelineMediaItemColouring_datasetview {
background-color: #009999;
}
div.timelineMediaItemColouring_enabled {
background-color: green;
}
div.timelineMediaItemColouring_disabled{
background-color: #999966;
}
span.library_assign_list_select {
cursor: pointer;
}
ul#LibraryAssignSortable {
display: inline-block;
padding: 0;
}
#LibraryAssignSortable .li-sortable {
padding: 5px;
margin: 5px;
border: 1px solid #8080ff;
background-color: #E5F0FF;
cursor: pointer;
list-style: none;
word-break: break-all;
}
div.timelineLink {
color: white;
background-color: black;
z-index: 50;
padding: 5px;
position: absolute;
right: 15px;
font-family: Verdana;
top: 109px;
}
div.timelineLink a {
color: white;
}
div.regionPreviewOverlay {
width: 100%;
height: 100%;
position: absolute;
}
div.previewContent {
overflow: hidden;
}
.designer-control-panel .btn {
overflow: hidden;
}
.designer-control-panel-checkbox {
padding-top: 5px;
}

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" height="123.87" width="640" version="1.1" viewBox="0 0 640 123.87">
<g transform="translate(-156.15726,-367.21451)" fill="#333">
<path d="m679.67,407.38c-3.4778-2.461-6.0048-4.9559-6.0048-8.0337h-19.338c0,5.5388-2.527,8.0337-5.6449,8.0337h-5.1644v56.236h100.42v-56.236h-64.629zm-6.0056,16.067-18.096,0,0-8.0337,20.084,0,0,6.4644zm33.991,31.276c-11.457,0-20.779-9.2018-20.779-20.513s9.3215-20.04,20.779-20.04c11.457,0,20.778,8.7283,20.778,20.04,0,11.311-9.3207,20.513-20.778,20.513zm11.17-20.513c0,6.0803-5.011,11.028-11.169,11.028-6.1591,0-11.17-4.9476-11.17-11.028,0-6.081,5.0109-11.027,11.17-11.027,6.1582,0,11.169,4.9468,11.169,11.027zm77.334-34.48-25.001,63.735-19.184-7.6934,0-10.862,13.323,5.4522,17.592-44.844-65.92-25.205-6.1099,19.034-11,0,11.248-32.135,85.053,32.519z"/>
<g style="word-spacing:0px;letter-spacing:0px;" font-family="VomZom" transform="matrix(4.129044,0,0,4.129044,-488.6229,-1536.6294)" font-style="normal" font-stretch="normal" font-size="23.68645096px" font-variant="normal" font-weight="normal" line-height="125%">
<path d="m164.38,467.99c4.011-0.0921,7.7758,3.1703,8.1995,7.17,0.50671,3.5153-1.5613,7.166-4.8022,8.5926-1.9632,0.97468-4.1802,0.67513-6.2919,0.72493h-2.063v6.6094h-3.2677c0.007-5.0998-0.0132-10.2,0.01-15.3,0.10696-3.7986,3.2179-7.2015,6.9739-7.7072,0.41065-0.061,0.82716-0.0908,1.2414-0.0901zm0,13.219c2.3572,0.0591,4.5679-1.78,4.9197-4.1152,0.46978-2.3507-1.0297-4.8765-3.3219-5.5815-2.214-0.78561-4.8777,0.24867-5.9588,2.3393-0.83901,1.4284-0.54099,3.1171-0.59666,4.691v2.6665c1.6526-0.00001,3.3051,0.00001,4.9577-0.00001z"/>
<path d="m174.16,467.91,3.2308,0,0,16.488-3.2308,0,0-16.488z"/>
<path d="m187.1,478.32,0.11776,0,4.5925,6.1234,4.0037,0-6.2411-8.4785,5.5346-8.0075-4.0038,0-3.886,5.6523-0.11776,0-3.886-5.6523-4.0037,0,5.5346,8.0075-6.2411,8.4785,4.0038,0z"/>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" height="500" width="500" version="1.1" viewBox="0 0 500 500">
<g transform="translate(-507.42999,175.07001)">
<rect height="500" width="500" y="-175.07" x="507.43" fill="#222"/>
<g fill="#FFF" transform="matrix(2.7777778,0,0,2.7777778,-2096.4989,0.29221019)">
<path d="m993.33-7.7954c-2.671,0-4.8365-2.1665-4.8365-4.8392h-16.569c0,2.6727-2.1651,4.8392-4.8363,4.8392h-4.4254v51.484h84.798v-51.483h-54.065zm-4.83,15.24h-16.571v-7.2076h16.569v7.2076zm29.124,28.522c-9.8169,0-17.804-7.9906-17.804-17.813,0-9.8226,7.987-17.402,17.804-17.402,9.8171,0,17.804,7.5795,17.804,17.402,0,9.8226-7.9865,17.813-17.804,17.813zm9.571-17.813c0,5.28-4.2937,9.576-9.5707,9.576-5.2772,0-9.5708-4.2963-9.5708-9.576,0-5.2806,4.2936-9.576,9.5708-9.576,5.277,0,9.5707,4.2957,9.5707,9.576zm66.262-29.941-21.421,55.346-17.241-6.6808v-9.4327l12.218,4.7345,15.073-38.942-56.483-21.887-5.2351,13.525h-9.426l9.6383-24.901,72.876,28.239z"/>
<g style="letter-spacing:0px;word-spacing:0px;" font-family="VomZom" font-size="27.43096924px" line-height="125%" font-stretch="normal" font-variant="normal" font-weight="normal" font-style="normal">
<path d="m972.14,64.921c-2.7039,0.06735-4.9506,0.99582-6.7402,2.7854s-2.7181,4.0364-2.7854,6.7402v17.223h3.7847v-7.6545h5.7409c2.7056-0.0691,4.9595-1.0047,6.7615-2.8067s2.7375-4.0558,2.8067-6.7615c-0.0691-2.7039-1.0047-4.9506-2.8067-6.7402s-4.0558-2.718-6.7615-2.7854zm-5.7409,15.309,0-5.7834c0.0399-1.6346,0.59801-2.99,1.6744-4.0665,1.0764-1.0764,2.4319-1.6345,4.0665-1.6744,1.6549,0.03988,3.0228,0.59802,4.1037,1.6744,1.0808,1.0764,1.6407,2.4319,1.6797,4.0665-0.039,1.6549-0.59891,3.0228-1.6797,4.1037-1.0809,1.0809-2.4488,1.6408-4.1037,1.6797z"/>
<path d="m984.13,83.93,3.7422,0,0-19.094-3.7422,0z"/>

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

View File

@@ -0,0 +1,3 @@
<svg width="3004" height="141" viewBox="0 0 3004 141" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.95496 86.921C15.955 81.221 29.955 74.9877 43.955 68.221C375.155 -91.879 831.755 88.121 831.755 88.121C933.455 125.321 1181.85 191.221 1436.05 68.221C1767.15 -91.879 2220.45 86.521 2220.45 86.521C2321.25 123.621 2573.25 191.721 2828.65 68.221C2883.95 41.521 2942.55 24.221 3001.95 13.921" stroke="#8CDFFD" stroke-width="3" stroke-linecap="round" stroke-dasharray="10 20"/>
</svg>

After

Width:  |  Height:  |  Size: 493 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

View File

@@ -0,0 +1,4 @@
<svg width="29" height="28" viewBox="0 0 29 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.650391" width="28" height="28" rx="4" fill="#EB7857"/>
<path d="M9.65039 16.501L14.6504 11.501L19.6504 16.501H9.65039Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 249 B

View File

@@ -0,0 +1,8 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="mask0_662_27" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="32" height="32">
<rect width="32" height="32" fill="#D9D9D9"/>
</mask>
<g mask="url(#mask0_662_27)">
<path d="M6.66667 28L4 12H28L25.3333 28H6.66667ZM8.9 25.3333H23.1L24.8 14.6667H7.2L8.9 25.3333ZM13.3333 20H18.6667C19.0444 20 19.3611 19.8722 19.6167 19.6167C19.8722 19.3611 20 19.0444 20 18.6667C20 18.2889 19.8722 17.9722 19.6167 17.7167C19.3611 17.4611 19.0444 17.3333 18.6667 17.3333H13.3333C12.9556 17.3333 12.6389 17.4611 12.3833 17.7167C12.1278 17.9722 12 18.2889 12 18.6667C12 19.0444 12.1278 19.3611 12.3833 19.6167C12.6389 19.8722 12.9556 20 13.3333 20ZM8 10.6667C7.62222 10.6667 7.30556 10.5389 7.05 10.2833C6.79444 10.0278 6.66667 9.71111 6.66667 9.33333C6.66667 8.95556 6.79444 8.63889 7.05 8.38333C7.30556 8.12778 7.62222 8 8 8H24C24.3778 8 24.6944 8.12778 24.95 8.38333C25.2056 8.63889 25.3333 8.95556 25.3333 9.33333C25.3333 9.71111 25.2056 10.0278 24.95 10.2833C24.6944 10.5389 24.3778 10.6667 24 10.6667H8ZM10.6667 6.66667C10.2889 6.66667 9.97222 6.53889 9.71667 6.28333C9.46111 6.02778 9.33333 5.71111 9.33333 5.33333C9.33333 4.95556 9.46111 4.63889 9.71667 4.38333C9.97222 4.12778 10.2889 4 10.6667 4H21.3333C21.7111 4 22.0278 4.12778 22.2833 4.38333C22.5389 4.63889 22.6667 4.95556 22.6667 5.33333C22.6667 5.71111 22.5389 6.02778 22.2833 6.28333C22.0278 6.53889 21.7111 6.66667 21.3333 6.66667H10.6667Z" fill="#EB7857"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View File

@@ -0,0 +1,8 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="mask0_662_6" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="32" height="32">
<rect width="32" height="32" fill="#D9D9D9"/>
</mask>
<g mask="url(#mask0_662_6)">
<path d="M6.66667 22.6667C5.93333 22.6667 5.30556 22.4056 4.78333 21.8833C4.26111 21.3611 4 20.7333 4 20V12C4 11.2667 4.26111 10.6389 4.78333 10.1167C5.30556 9.59444 5.93333 9.33333 6.66667 9.33333H25.3333C26.0667 9.33333 26.6944 9.59444 27.2167 10.1167C27.7389 10.6389 28 11.2667 28 12V20C28 20.7333 27.7389 21.3611 27.2167 21.8833C26.6944 22.4056 26.0667 22.6667 25.3333 22.6667H6.66667ZM6.66667 20H25.3333V12H6.66667V20ZM4 6.66667V4H28V6.66667H4ZM4 28V25.3333H28V28H4Z" fill="#EB7857"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 791 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

@@ -0,0 +1,8 @@
<svg width="52" height="52" viewBox="0 0 52 52" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="mask0_584_552" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="52" height="52">
<rect width="51.1973" height="51.1973" fill="#D9D9D9"/>
</mask>
<g mask="url(#mask0_584_552)">
<path d="M10.6661 44.7974C9.49283 44.7974 8.48844 44.3796 7.65292 43.5441C6.81741 42.7086 6.39966 41.7042 6.39966 40.5309V10.6659C6.39966 9.49258 6.81741 8.48819 7.65292 7.65268C8.48844 6.81717 9.49283 6.39941 10.6661 6.39941H40.5312C41.7044 6.39941 42.7088 6.81717 43.5443 7.65268C44.3799 8.48819 44.7976 9.49258 44.7976 10.6659V40.5309C44.7976 41.7042 44.3799 42.7086 43.5443 43.5441C42.7088 44.3796 41.7044 44.7974 40.5312 44.7974H10.6661ZM10.6661 10.6659V40.5309H40.5312V10.6659H36.2647V25.5984L30.9317 22.3986L25.5986 25.5984V10.6659H10.6661Z" fill="#EB7857"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 881 B

View File

@@ -0,0 +1,3 @@
<svg width="24" height="28" viewBox="0 0 24 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.6667 23.9003V14.767L2.66667 10.1337V19.267L10.6667 23.9003ZM13.3333 23.9003L21.3333 19.267V10.1337L13.3333 14.767V23.9003ZM12 12.467L19.9 7.90033L12 3.33366L4.1 7.90033L12 12.467ZM1.33333 21.6003C0.911111 21.3559 0.583333 21.0337 0.35 20.6337C0.116667 20.2337 0 19.7892 0 19.3003V8.70033C0 8.21144 0.116667 7.76699 0.35 7.36699C0.583333 6.96699 0.911111 6.64477 1.33333 6.40033L10.6667 1.03366C11.0889 0.789214 11.5333 0.666992 12 0.666992C12.4667 0.666992 12.9111 0.789214 13.3333 1.03366L22.6667 6.40033C23.0889 6.64477 23.4167 6.96699 23.65 7.36699C23.8833 7.76699 24 8.21144 24 8.70033V19.3003C24 19.7892 23.8833 20.2337 23.65 20.6337C23.4167 21.0337 23.0889 21.3559 22.6667 21.6003L13.3333 26.967C12.9111 27.2114 12.4667 27.3337 12 27.3337C11.5333 27.3337 11.0889 27.2114 10.6667 26.967L1.33333 21.6003Z" fill="#EB7857"/>
</svg>

After

Width:  |  Height:  |  Size: 943 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View File

@@ -0,0 +1,8 @@
<svg width="52" height="52" viewBox="0 0 52 52" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="mask0_584_569" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="52" height="52">
<rect width="51.1973" height="51.1973" fill="#D9D9D9"/>
</mask>
<g mask="url(#mask0_584_569)">
<path d="M23.4653 44.7974V40.5309H40.5311V25.3851C40.5311 21.2253 39.0823 17.6966 36.1847 14.799C33.287 11.9013 29.7583 10.4525 25.5985 10.4525C21.4388 10.4525 17.9101 11.9013 15.0124 14.799C12.1148 17.6966 10.666 21.2253 10.666 25.3851V38.3977H8.5328C7.35953 38.3977 6.35513 37.98 5.51962 37.1444C4.68411 36.3089 4.26636 35.3045 4.26636 34.1313V29.8648C4.26636 29.1182 4.45301 28.416 4.82633 27.7583C5.19964 27.1005 5.72406 26.5761 6.39958 26.185L6.55957 23.3585C6.844 20.9409 7.54618 18.701 8.66612 16.6389C9.78606 14.5768 11.1904 12.7813 12.8792 11.2525C14.568 9.72368 16.5057 8.53263 18.6923 7.67935C20.8788 6.82606 23.1809 6.39941 25.5985 6.39941C28.0162 6.39941 30.3094 6.82606 32.4782 7.67935C34.647 8.53263 36.5846 9.71479 38.2912 11.2258C39.9978 12.7369 41.4022 14.5234 42.5043 16.5855C43.6065 18.6476 44.3176 20.8875 44.6375 23.3052L44.7975 26.0784C45.473 26.3983 45.9975 26.8783 46.3708 27.5183C46.7441 28.1583 46.9307 28.8338 46.9307 29.5448V34.4513C46.9307 35.1623 46.7441 35.8378 46.3708 36.4778C45.9975 37.1178 45.473 37.5977 44.7975 37.9177V40.5309C44.7975 41.7042 44.3798 42.7086 43.5443 43.5441C42.7087 44.3796 41.7044 44.7974 40.5311 44.7974H23.4653ZM19.1989 29.8648C18.5945 29.8648 18.0878 29.6604 17.679 29.2515C17.2701 28.8427 17.0657 28.336 17.0657 27.7316C17.0657 27.1272 17.2701 26.6206 17.679 26.2117C18.0878 25.8028 18.5945 25.5984 19.1989 25.5984C19.8033 25.5984 20.3099 25.8028 20.7188 26.2117C21.1277 26.6206 21.3321 27.1272 21.3321 27.7316C21.3321 28.336 21.1277 28.8427 20.7188 29.2515C20.3099 29.6604 19.8033 29.8648 19.1989 29.8648ZM31.9982 29.8648C31.3938 29.8648 30.8872 29.6604 30.4783 29.2515C30.0694 28.8427 29.865 28.336 29.865 27.7316C29.865 27.1272 30.0694 26.6206 30.4783 26.2117C30.8872 25.8028 31.3938 25.5984 31.9982 25.5984C32.6026 25.5984 33.1093 25.8028 33.5181 26.2117C33.927 26.6206 34.1314 27.1272 34.1314 27.7316C34.1314 28.336 33.927 28.8427 33.5181 29.2515C33.1093 29.6604 32.6026 29.8648 31.9982 29.8648ZM12.8526 26.5583C12.6037 22.7896 13.7414 19.5543 16.2657 16.8522C18.79 14.1501 21.9365 12.7991 25.7052 12.7991C28.8695 12.7991 31.6516 13.8035 34.0514 15.8122C36.4513 17.821 37.9001 20.3898 38.3979 23.5185C35.1625 23.4829 32.1849 22.6119 29.465 20.9053C26.7452 19.1987 24.6564 16.8877 23.1987 13.9723C22.6298 16.8166 21.4299 19.3498 19.5989 21.5719C17.7679 23.794 15.5191 25.4562 12.8526 26.5583Z" fill="#EB7857"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1,3 @@
<svg width="28" height="24" viewBox="0 0 28 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6.00008 24V21.3333H12.6667V17.3333H3.33341C2.60008 17.3333 1.9723 17.0722 1.45008 16.55C0.927859 16.0278 0.666748 15.4 0.666748 14.6667V2.66667C0.666748 1.93333 0.927859 1.30556 1.45008 0.783333C1.9723 0.261111 2.60008 0 3.33341 0H24.6667C25.4001 0 26.0279 0.261111 26.5501 0.783333C27.0723 1.30556 27.3334 1.93333 27.3334 2.66667V14.6667C27.3334 15.4 27.0723 16.0278 26.5501 16.55C26.0279 17.0722 25.4001 17.3333 24.6667 17.3333H15.3334V21.3333H22.0001V24H6.00008ZM3.33341 14.6667H24.6667V2.66667H3.33341V14.6667Z" fill="#EB7857"/>
</svg>

After

Width:  |  Height:  |  Size: 646 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

View File

@@ -0,0 +1,3 @@
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.4001 20.267L20.2667 18.4003L15.3334 13.467V7.33366H12.6667V14.5337L18.4001 20.267ZM14.0001 27.3337C12.1556 27.3337 10.4223 26.9837 8.80008 26.2837C7.17786 25.5837 5.76675 24.6337 4.56675 23.4337C3.36675 22.2337 2.41675 20.8225 1.71675 19.2003C1.01675 17.5781 0.666748 15.8448 0.666748 14.0003C0.666748 12.1559 1.01675 10.4225 1.71675 8.80032C2.41675 7.1781 3.36675 5.76699 4.56675 4.56699C5.76675 3.36699 7.17786 2.41699 8.80008 1.71699C10.4223 1.01699 12.1556 0.666992 14.0001 0.666992C15.8445 0.666992 17.5779 1.01699 19.2001 1.71699C20.8223 2.41699 22.2334 3.36699 23.4334 4.56699C24.6334 5.76699 25.5834 7.1781 26.2834 8.80032C26.9834 10.4225 27.3334 12.1559 27.3334 14.0003C27.3334 15.8448 26.9834 17.5781 26.2834 19.2003C25.5834 20.8225 24.6334 22.2337 23.4334 23.4337C22.2334 24.6337 20.8223 25.5837 19.2001 26.2837C17.5779 26.9837 15.8445 27.3337 14.0001 27.3337ZM14.0001 24.667C16.9556 24.667 19.4723 23.6281 21.5501 21.5503C23.6279 19.4725 24.6667 16.9559 24.6667 14.0003C24.6667 11.0448 23.6279 8.5281 21.5501 6.45033C19.4723 4.37255 16.9556 3.33366 14.0001 3.33366C11.0445 3.33366 8.52786 4.37255 6.45008 6.45033C4.3723 8.5281 3.33341 11.0448 3.33341 14.0003C3.33341 16.9559 4.3723 19.4725 6.45008 21.5503C8.52786 23.6281 11.0445 24.667 14.0001 24.667Z" fill="#EB7857"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

View File

@@ -0,0 +1,8 @@
<svg width="52" height="52" viewBox="0 0 52 52" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="mask0_584_562" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="52" height="52">
<rect width="51.1973" height="51.1973" fill="#D9D9D9"/>
</mask>
<g mask="url(#mask0_584_562)">
<path d="M20.2655 35.1983L35.198 25.5988L20.2655 15.9993V35.1983ZM25.5985 46.931C22.6476 46.931 19.8744 46.371 17.279 45.2511C14.6836 44.1311 12.4259 42.6112 10.506 40.6913C8.58613 38.7714 7.06621 36.5138 5.94627 33.9184C4.82633 31.3229 4.26636 28.5497 4.26636 25.5988C4.26636 22.6478 4.82633 19.8747 5.94627 17.2792C7.06621 14.6838 8.58613 12.4262 10.506 10.5063C12.4259 8.58637 14.6836 7.06645 17.279 5.94651C19.8744 4.82657 22.6476 4.2666 25.5985 4.2666C28.5495 4.2666 31.3227 4.82657 33.9181 5.94651C36.5135 7.06645 38.7712 8.58637 40.6911 10.5063C42.611 12.4262 44.1309 14.6838 45.2508 17.2792C46.3708 19.8747 46.9307 22.6478 46.9307 25.5988C46.9307 28.5497 46.3708 31.3229 45.2508 33.9184C44.1309 36.5138 42.611 38.7714 40.6911 40.6913C38.7712 42.6112 36.5135 44.1311 33.9181 45.2511C31.3227 46.371 28.5495 46.931 25.5985 46.931ZM25.5985 42.6645C30.3627 42.6645 34.3981 41.0113 37.7046 37.7048C41.0111 34.3983 42.6643 30.363 42.6643 25.5988C42.6643 20.8346 41.0111 16.7993 37.7046 13.4928C34.3981 10.1863 30.3627 8.53304 25.5985 8.53304C20.8344 8.53304 16.799 10.1863 13.4925 13.4928C10.186 16.7993 8.5328 20.8346 8.5328 25.5988C8.5328 30.363 10.186 34.3983 13.4925 37.7048C16.799 41.0113 20.8344 42.6645 25.5985 42.6645Z" fill="#EB7857"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 57.001 57.001" width="512" height="512"><g fill="#FFF"><path d="M35.361 5.677l2.497-4.162A1 1 0 1 0 36.143.486l-2.635 4.392C31.939 4.32 30.259 4 28.501 4s-3.438.32-5.007.878L20.859.486a.999.999 0 1 0-1.715 1.029l2.497 4.162c-4.827 2.495-8.14 7.525-8.14 13.324a1 1 0 0 0 1 1h28a1 1 0 0 0 1-1c-.001-5.798-3.313-10.828-8.14-13.324zM15.539 18.001c.512-6.703 6.13-12 12.962-12s12.45 5.297 12.962 12H15.539z"/><path d="M35.478 11.364H34.16a.659.659 0 0 0-.659.659v1.318c0 .364.295.659.659.659h1.319a.659.659 0 0 0 .659-.659v-1.318a.66.66 0 0 0-.66-.659zm-12.637 0h-1.319a.659.659 0 0 0-.659.659v1.318c0 .364.295.659.659.659h1.319a.659.659 0 0 0 .659-.659v-1.318a.659.659 0 0 0-.659-.659zM42.5 21.001h-28a1 1 0 0 0-1 1v20.171a4.837 4.837 0 0 0 4.834 4.829H19.5v6.006c0 2.202 1.794 3.994 4 3.994s4-1.792 4-3.994v-6.006h2v6.006c0 2.202 1.794 3.994 4 3.994s4-1.792 4-3.994v-6.006h1.166a4.836 4.836 0 0 0 4.834-4.829V22.001a1 1 0 0 0-1-1zm-1 21.171a2.834 2.834 0 0 1-2.834 2.829H36.5a1 1 0 0 0-1 1v7.006a2 2 0 1 1-4 0v-7.006a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v7.006a2 2 0 1 1-4 0v-7.006a1 1 0 0 0-1-1h-2.165a2.836 2.836 0 0 1-2.835-2.829V23.001h26v19.171zM48 21.001c-1.93 0-3.5 1.572-3.5 3.504v13.992c0 1.932 1.57 3.504 3.5 3.504s3.5-1.572 3.5-3.504V24.505a3.506 3.506 0 0 0-3.5-3.504zm1.5 17.496c0 .829-.673 1.504-1.5 1.504s-1.5-.675-1.5-1.504V24.505c0-.829.673-1.504 1.5-1.504s1.5.675 1.5 1.504v13.992zM9 21.001c-1.93 0-3.5 1.572-3.5 3.504v13.992c0 1.932 1.57 3.504 3.5 3.504s3.5-1.572 3.5-3.504V24.505A3.506 3.506 0 0 0 9 21.001zm1.5 17.496c0 .829-.673 1.504-1.5 1.504s-1.5-.675-1.5-1.504V24.505c0-.829.673-1.504 1.5-1.504s1.5.675 1.5 1.504v13.992z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="320" viewBox="0 0 320 320"><path d="M70.681 136.386h2.076l-17.021 53.35h-2.699l-16.606-51.273h-.208l-16.71 51.273h-2.906L0 136.385h2.076l15.88 51.272h.208l16.503-51.272h3.219l16.397 51.272h.208zm5.914 27.092c.208 14.321 5.917 25.428 21.068 25.428 11.002 0 19.1-6.123 20.862-17.645h2.076c-1.453 12.247-10.587 19.721-22.73 19.721-16.502.207-23.354-12.041-23.354-27.92 0-17.75 11.312-27.92 23.354-27.92 16.606 0 23.978 13.701 23.354 28.336zm42.556-2.077c.104-13.081-7.266-24.186-21.07-24.186-11.521 0-20.759 9.237-21.483 24.186zm13.758 11.397c2.695 9.062 9.49 16.107 20.283 16.107 13.804 0 20.654-12.039 20.654-25.74 0-12.354-6.021-25.948-20.654-25.948-12.974 0-21.589 9.445-21.589 25.948l.005.508-2.08.006v-48.052h2.076v35.704h-.001.207c2.491-9.651 10.068-16.19 21.382-16.19 14.738 0 22.729 13.078 22.729 28.024 0 16.089-8.612 27.816-22.729 27.816-10.896 0-19.763-7.634-22.361-18.176l.134-.009m88.184-58.933c24.521 0 37.698 17.749 37.698 38.819 0 21.07-13.18 38.818-37.698 38.818-24.52 0-37.696-17.748-37.696-38.818-.001-21.07 13.176-38.819 37.696-38.819zm0 75.561c22.001 0 35.177-15.36 35.406-36.743-.229-21.381-13.405-36.743-35.406-36.743-21.999 0-35.175 15.361-35.404 36.743.229 21.383 13.405 36.743 35.404 36.743zm93.914-53.038c-.532-15.154-10.99-20.447-24.756-20.447-10.78 0-23.905 3.737-23.905 17.022 0 13.389 13.23 14.946 26.253 17.956 14.192 3.529 26.038 5.189 26.038 20.654 0 14.013-13.873 19.929-26.895 19.929-17.286 0-30.095-7.681-29.771-26.363h2.134c0 17.749 11.419 24.288 27.64 24.288 11.951 0 24.76-5.189 24.76-17.956 0-14.946-14.94-16.192-26.681-18.995-12.38-2.802-25.61-4.982-25.61-19.513 0-14.739 13.767-19.098 26.04-19.098 14.938 0 26.145 5.917 26.891 22.523z" fill="#fff"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1 @@
<svg baseProfile="tiny" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><g fill="#fff"><path d="M227 104.4c-.8.8-1.8 1.4-2.9 1.7-11.8 3.8-23.6 7.7-35.3 11.5-1.6.5-3.2 1.1-4.7 1.6-1.4.4-2.8.3-4-.6-7.1-5.2-14.2-10.4-21.4-15.6-.2-.1-.3-.3-.5-.5 1.1-1.8 2.6-3.3 4-4.9 5.1-5.7 10.6-10.9 17.2-14.9 3.6-2.1 7.3-3.7 11.5-4 1.8-.1 3.4.4 5 1.2 3.6 1.9 6.9 4.3 10.2 6.7l18.9 13.8c.8.6 1.5 1.2 2.1 1.9-.1.8-.1 1.5-.1 2.1zm-198 2.7c1.5-1.8 2-1.9 4.3-1.2 11 3.6 22.1 7.3 33.1 10.9 2.4.8 4.7 1.6 7.1 2.4 1.6.5 2.5 1.5 2.9 3 2.5 7.9 5 15.9 7.5 23.8.6 2 .6 1.9-1.3 2.4-7 1.8-14.1 2.9-21.3 3-3.7.1-7.4-.3-11.1-1.2-1.7-.4-3.3-1.1-4.8-1.9-2-1-3.5-2.5-4.5-4.6-2.3-4.8-3.8-9.9-5.5-15-2.1-6.5-4.1-13-6.2-19.4-.1-.2-.2-.3-.3-.5.1-.4.1-1.1.1-1.7zM168.6 153c4.3 1.6 8.2 3.4 12.1 5.5 4.4 2.4 8.7 5 12.5 8.3 3.1 2.7 5.9 5.7 7.6 9.6.9 2 1 4.1.6 6.2-.8 4.9-2.5 9.5-4 14.2-2.1 6.5-4.3 13-6.4 19.6l-.3.9c-.3 1.1-.9 1.8-2.1 2-1.1.2-2-.3-2.6-1.2-2.7-3.8-5.4-7.5-8.1-11.3-5.6-7.7-11.1-15.5-16.7-23.2-1.1-1.6-1.6-3.1-1-5 2.7-8.2 5.4-16.5 8.1-24.7 0-.2.1-.4.3-.9zm-63.2-53.9c-1.4-1.9-2.6-4-3.7-6.1-3.3-6-6.2-12.2-7.9-19-1.1-4.7-1.7-9.3-.3-14.1.3-1 .7-1.8 1.4-2.5 3.1-3.4 6.8-6.1 10.5-8.7 6.6-4.7 13.2-9.4 19.8-14.2.3-.2.6-.5 1-.6 1.6-.8 3.2.1 3.5 1.8.1.6.1 1.2.1 1.7v42.1c0 1.8-.6 2.8-2 3.8-6.6 4.7-13.2 9.4-19.8 14.2-.8.6-1.5 1.2-2.6 1.6zm19.4 82.5c-.5 9.6-1.9 18.9-5.5 27.8-1.3 3.2-3.1 6.2-5.5 8.8-2.2 2.4-4.8 3.4-8 3.7-4.2.5-8.5.4-12.7.4H71.4c-1.3 0-2.5-.2-3.1-1.5-.6-1.2 0-2.2.7-3.2 8.2-11.4 16.4-22.7 24.6-34.2 1.2-1.7 2.7-2.2 4.6-2.2h24.9c.6.1 1 0 1.7.4z"/><path d="M88.2 65.9c.9 11.5 5.4 21.6 11.1 31.2 4.3 7.1 9.5 13.6 14.3 20.4 1.6 2.4 3.4 4.7 5 7.1 1.1 1.6 1.1 2 0 3.6-.6.9-1.3 1.8-1.9 2.7-1.1 1.5-1.8 1.8-3.6 1.1l-14.4-4.8c-6.1-2-12.3-4.1-18.4-6.1-.5-.2-1.1-.4-1.6-.6-2.8-1.1-3.7-2.9-2.9-5.8 1-3.9 2-7.7 2.9-11.6 2.8-11.2 5.7-22.4 8.5-33.6.2-1.1.6-2.4 1-3.6zM199.8 170c-2.6-3.3-5.7-5.9-9.1-8.3-8-5.7-16.8-9.8-26.2-12.8-7.7-2.4-15.3-5-22.9-7.5-1.7-.6-2-1-2-2.8v-3.3c0-2.1.3-2.6 2.3-3.2 5.8-1.9 11.6-3.8 17.4-5.6 5.5-1.8 11-3.5 16.5-5.3 3.2-1.1 5.2-.2 6.4 2.9 5.6 14 11.2 28 16.8 42.1.5 1.1.9 2.4.8 3.8zm-151-17.3c1.9.1 3.4.7 5 1 9.1 1.7 18 .8 26.9-1.7 9.9-2.9 19.6-6.3 29.5-9.3 1.1-.3 2.2-.7 3.3-1.1 1.2-.5 2.1-.2 2.9.8.9 1.2 1.8 2.5 2.7 3.7.8 1.1.3 2-.4 3-2.5 3.4-4.9 6.8-7.4 10.1-4.5 6.1-8.9 12.3-13.4 18.4l-.9 1.2c-1.7 2.1-3.6 2.5-5.9 1.1-5.1-3.2-10.2-6.4-15.3-9.7-8.3-5.2-16.5-10.4-24.8-15.7-.8-.3-1.6-.7-2.2-1.8zm69.8 64.1c3.3-4.8 5-10 6.4-15.4 2-8 2.8-16.2 2.8-24.5v-23.4c0-3 .3-3.4 3.1-4.3 4-1.3 4-1.4 6.4 2 6.6 9.3 13.2 18.5 19.8 27.8 1.7 2.4 1.4 4.6-.8 6.5-11.6 10-23.2 20-34.9 29.9-.7.7-1.3 1.7-2.8 1.4zm65.6-139.1c-6.2 2.2-11.6 5.8-16.6 10.1-5.5 4.7-10.4 10-14.6 15.9-4.8 6.6-9.8 13.1-14.6 19.7-.8 1.1-1.8 1.4-3 1.1-1.4-.4-2.7-.9-4-1.3-1.1-.3-1.6-1.1-1.7-2.1-.1-.4 0-.9 0-1.4V84.9c.3-2.5 1.7-3.9 4.3-4.2l8.1-.6c6-.4 12.1-.8 18.1-1.2l18.9-1.2c1.7-.1 3.4-.5 5.1 0z"/></g></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 493.423 493.423" width="512" height="512"><path d="M168.839 241.198c0-38.117 17.894-72.05 45.685-93.896L171.988 79.22c-35.648 25.603-62.472 62.66-75.127 105.796 19.811 12.751 32.949 35.031 32.949 60.353 0 24.424-12.143 45.957-30.783 58.918 13.606 40.86 40.12 75.838 74.706 100.113l39.559-70.358c-27.105-21.838-44.453-55.318-44.453-92.844z" fill="#fff"/><path d="M109.704 245.368c0 28.484-23.132 51.592-51.609 51.592-28.491 0-51.606-23.107-51.606-51.592 0-28.47 23.115-51.577 51.606-51.577 28.477 0 51.609 23.107 51.609 51.577zm289.79 124.758c12.002 0 23.301 2.936 33.23 8.149 30.924-32.591 50.906-75.595 54.211-123.228l-80.148-1.551c-6.171 60.111-56.954 106.941-118.677 106.941-17.084 0-33.388-3.594-48.101-10.093l-39.841 69.704c26.56 13.069 56.376 20.411 87.941 20.411a199.39 199.39 0 0 0 39.854-4.006c2.746-37.072 33.717-66.327 71.531-66.327z" fill="#fff"/><path d="M451.071 441.847c0 28.478-23.084 51.576-51.577 51.576S347.9 470.325 347.9 441.847c0-28.5 23.101-51.592 51.594-51.592 28.493 0 51.577 23.092 51.577 51.592zm-12.86-331.695a71.425 71.425 0 0 1-41.399 13.163c-39.637 0-71.73-32.102-71.73-71.715 0-2.104.094-4.139.25-6.181-12.05-2.307-24.503-3.491-37.222-3.491-31.859 0-61.988 7.498-88.689 20.777l39.607 69.75a119.219 119.219 0 0 1 49.082-10.544c61.177 0 111.601 46.074 118.491 105.414l80.147-2.447c-3.539-43.758-21.261-83.506-48.537-114.726z" fill="#fff"/><path d="M448.374 51.601c0 28.492-23.038 51.592-51.561 51.592-28.491 0-51.592-23.1-51.592-51.592C345.22 23.107 368.321 0 396.812 0c28.523 0 51.562 23.107 51.562 51.601z" fill="#fff"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="512" height="512"><path d="M498.37 2.691c-2.362-2.069-5.686-3-8.814-2.601l-219.47 29.298c-5.41.723-10 5.34-10 10.798v191.651c0 6.016 5.793 10.77 11.809 10.77h218.917c6.016 0 11.66-4.754 11.66-10.77V10.888c-.001-3.143-1.741-6.127-4.102-8.197zM480.683 220.82h-198.81V49.718l198.811-26.383V220.82zm-245.125 47.459c-2.048-2.043-4.005-3.426-7.261-3.181l-205.555.431c-6.011.011-10.49 4.888-10.49 10.894v163.411c0 5.484 3.697 10.112 9.133 10.808l205.747 26.219c.463.058.824.085 1.282.085 2.633 0 4.691-.958 6.697-2.718 2.346-2.069 3.186-5.048 3.186-8.176v-190.06c.001-2.893-.691-5.665-2.739-7.713zM216.51 453.686L34.04 430.238V287.296l182.47-.388v166.778zm274.7-188.57l-219.3-.721h-.016c-2.888 0-6.112 1.556-8.154 3.599-2.048 2.043-3.654 5.227-3.654 8.121V471.5c0 5.452 4.489 10.064 9.894 10.798l219.146 29.606c.484.064 1.088.096 1.572.096 2.622 0 5.61-.947 7.61-2.691 2.367-2.069 4.164-5.059 4.164-8.202V276.423c-.001-6.011-5.251-11.297-11.262-11.307zm-10.527 223.522l-198.811-26.66V287.024l198.811.276v201.338zM235.058 37.335c-2.356-2.069-5.048-3.032-8.128-2.622L19.492 61.357c-5.436.697-9.963 5.324-9.963 10.803v159.677c0 6.016 5.793 10.77 11.809 10.77h206.981c6.016 0 9.979-4.754 9.979-10.77V45.516c0-3.133-.889-6.111-3.24-8.181zM216.51 220.82H31.317V81.74L216.51 57.905V220.82z" fill="#fff"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

View File

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.