Initial import of almalinux-logos-100.1-1.el10

This commit is contained in:
Andrew Lukoshko 2024-09-02 15:11:25 +00:00
commit 2a34ead67e
170 changed files with 1263 additions and 0 deletions

5
COPYING Normal file
View File

@ -0,0 +1,5 @@
AlmaLinux and AlmaLinux logo, either separately or in combination, are hereinafter referred to as "Trademarks" and are trademarks of AlmaLinux OS Foundation, registered in the United States and other countries.
The almalinux-logos package ("Package") contains images that are or include the AlmaLinux Trademarks. You are granted the right to use the Package only during the normal operation of software programs that call upon the Package. No other copyright or trademark license is granted herein.
NO WARRANTY. THIS PACKAGE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND INTELLECTUAL PROPERTY NONINFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL ALMALINUX OS FOUNDATION BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
NAME = redhat-logos
XML = backgrounds/desktop-backgrounds-default.xml
all: update-po
update-po:
@echo "updating pot files..."
sed -e "s/_name/name/g" $(XML).in > $(XML)
# FIXME need to handle translations
#
#( cd po && intltool-update --gettext-package=$(NAME) --pot )
#@echo "merging existing po files to xml..."
#intltool-merge -x po $(XML).in $(XML)

27
anaconda/Makefile Normal file
View File

@ -0,0 +1,27 @@
ANACONDADATADIR = /usr/share/anaconda
ANACONDABOOTDIR = $(ANACONDADATADIR)/boot
all:
@echo "Nothing to do."
#splash.lss: syslinux-splash.png
# ./splashtolss.sh syslinux-splash.png splash.lss
install:
@if [ "$(DESTDIR)" = "" ]; then \
echo " "; \
echo "ERROR: A destdir is required"; \
exit 1; \
fi
mkdir -p $(DESTDIR)/$(ANACONDADATADIR)
mkdir -p $(DESTDIR)/$(ANACONDABOOTDIR)
mkdir -p $(DESTDIR)/$(ANACONDADATADIR)/pixmaps/rnotes/en
install -m 644 splash.lss $(DESTDIR)/$(ANACONDABOOTDIR)
install -m 644 syslinux-splash.png $(DESTDIR)/$(ANACONDABOOTDIR)/syslinux-splash.png
# install -m 755 splashtolss.sh $(DESTDIR)/$(ANACONDADATADIR)
install -m 644 -t $(DESTDIR)/$(ANACONDADATADIR)/pixmaps theme/*
clean:
rm -f splash.lss

19
anaconda/README Normal file
View File

@ -0,0 +1,19 @@
These files are used by anaconda during the installation process. A
basic description/specification for them is as follows:
* anaconda_header.png: This is strip header at the top of
the screen during the install. 800x58.
* progress_first.png: First graphic displayed during package
installation. If there are no rnotes, this is displayed the entire
time. 500x325
* progress_first-lowres.png: Lowres version of progress_first.png. 350x225
* splash.png: Splash screen shown on the "Welcome to ..." screen.
400x420
* syslinux-splash.png: Splash screen used at the boot prompt with
syslinux/isolinux. This gets transformed into the syslinux specific
format. 640x300. This uses a 16 color palette (should be an indexed png).
You should ensure that 0 = #000000, 1 = #ffffff, 7 = #cdcfd5, 15 = #c90000.
Alternately, you can use 12 colors and have them be any that you want.
* syslinux-vesa-splash.jpg: Splash screen used at the boot prompt when
using the menu. It should be 640x480 RGB. Can just be a conversion
of the grub splash and work well.

BIN
anaconda/splash.lss Normal file

Binary file not shown.

12
anaconda/splashtolss.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
usage() {
echo "Usage: $0 <source> <output>"
exit 1
}
if [ -z "$1" -o -z "$2" ]; then
usage
fi
pngtopnm $1 | ppmtolss16 \#cdcfd5=7 \#ffffff=1 \#000000=0 \#c90000=15 > $2

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 B

41
anaconda/theme/redhat.css Normal file
View File

@ -0,0 +1,41 @@
/* Anaconda gtk style overrides for RHEL */
/* vendor-specific colors */
@define-color almalinux #0b2335;
/* logo and sidebar classes */
/* The sidebar consists of three parts: a background, a logo, and a product logo,
* rendered in that order. The product logo is empty by default and is intended
* to be overridden by a stylesheet in product.img.
*/
.logo-sidebar {
background-image: url('/usr/share/anaconda/pixmaps/sidebar-bg.png');
background-color: @almalinux;
background-repeat: no-repeat;
background-size: cover;
background-position: top left;
}
/* Add a logo to the sidebar */
.logo {
background-image: url('/usr/share/anaconda/pixmaps/sidebar-logo.png');
background-position: 50% 20px;
background-repeat: no-repeat;
background-color: transparent;
}
/* This is a placeholder to be filled by a product-specific logo. */
.product-logo {
background-image: none;
background-color: transparent;
}
AnacondaSpokeWindow #nav-box {
background-color: @almalinux;
background-image: url('/usr/share/anaconda/pixmaps/topbar-bg.png');
background-repeat: no-repeat;
background-size: cover;
background-position: top left;
color: white;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -0,0 +1,4 @@
[org.gnome.desktop.background]
picture-uri='file:///usr/share/backgrounds/Alma-mountains-white.xml'
picture-options='scaled'

View File

@ -0,0 +1,4 @@
[org.gnome.desktop.screensaver]
picture-uri='file:///usr/share/backgrounds/Alma-mountains-dark.xml'
picture-options='scaled'

Binary file not shown.

After

Width:  |  Height:  |  Size: 227 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 260 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 KiB

View File

@ -0,0 +1,21 @@
<background>
<starttime>
<year>2012</year>
<month>06</month>
<day>4</day>
<hour>7</hour>
<minute>00</minute>
<second>00</second>
</starttime>
<static>
<duration>10000000000.0</duration>
<file>
<size width="1800" height="1440">/usr/share/backgrounds/Alma-abstract-dark-1800x1440.jpg</size>
<size width="2048" height="1536">/usr/share/backgrounds/Alma-abstract-dark-2048x1536.jpg</size>
<size width="2560" height="1440">/usr/share/backgrounds/Alma-abstract-dark-2560x1440.jpg</size>
<size width="2560" height="1600">/usr/share/backgrounds/Alma-abstract-dark-2560x1600.jpg</size>
<size width="2560" height="1080">/usr/share/backgrounds/Alma-abstract-dark-2560x1080.jpg</size>
<size width="3440" height="1440">/usr/share/backgrounds/Alma-abstract-dark-3440x1440.jpg</size>
</file>
</static>
</background>

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 227 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 251 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 302 KiB

View File

@ -0,0 +1,21 @@
<background>
<starttime>
<year>2012</year>
<month>06</month>
<day>4</day>
<hour>7</hour>
<minute>00</minute>
<second>00</second>
</starttime>
<static>
<duration>10000000000.0</duration>
<file>
<size width="1800" height="1440">/usr/share/backgrounds/Alma-abstract-light-1800x1440.jpg</size>
<size width="2048" height="1536">/usr/share/backgrounds/Alma-abstract-light-2048x1536.jpg</size>
<size width="2560" height="1440">/usr/share/backgrounds/Alma-abstract-light-2560x1440.jpg</size>
<size width="2560" height="1600">/usr/share/backgrounds/Alma-abstract-light-2560x1600.jpg</size>
<size width="2560" height="1080">/usr/share/backgrounds/Alma-abstract-light-2560x1080.jpg</size>
<size width="3440" height="1440">/usr/share/backgrounds/Alma-abstract-light-3440x1440.jpg</size>
</file>
</static>
</background>

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

21
backgrounds/Alma-dark.xml Normal file
View File

@ -0,0 +1,21 @@
<background>
<starttime>
<year>2012</year>
<month>06</month>
<day>4</day>
<hour>7</hour>
<minute>00</minute>
<second>00</second>
</starttime>
<static>
<duration>10000000000.0</duration>
<file>
<size width="1800" height="1440">/usr/share/backgrounds/Alma-dark-1800x1440.jpg</size>
<size width="2048" height="1536">/usr/share/backgrounds/Alma-dark-2048x1536.jpg</size>
<size width="2560" height="1440">/usr/share/backgrounds/Alma-dark-2560x1440.jpg</size>
<size width="2560" height="1600">/usr/share/backgrounds/Alma-dark-2560x1600.jpg</size>
<size width="2560" height="1080">/usr/share/backgrounds/Alma-dark-2560x1080.jpg</size>
<size width="3440" height="1440">/usr/share/backgrounds/Alma-dark-3440x1440.jpg</size>
</file>
</static>
</background>

Binary file not shown.

After

Width:  |  Height:  |  Size: 131 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 KiB

View File

@ -0,0 +1,21 @@
<background>
<starttime>
<year>2012</year>
<month>06</month>
<day>4</day>
<hour>7</hour>
<minute>00</minute>
<second>00</second>
</starttime>
<static>
<duration>10000000000.0</duration>
<file>
<size width="1800" height="1440">/usr/share/backgrounds/Alma-light-1800x1440.jpg</size>
<size width="2048" height="1536">/usr/share/backgrounds/Alma-light-2048x1536.jpg</size>
<size width="2560" height="1440">/usr/share/backgrounds/Alma-light-2560x1440.jpg</size>
<size width="2560" height="1600">/usr/share/backgrounds/Alma-light-2560x1600.jpg</size>
<size width="2560" height="1080">/usr/share/backgrounds/Alma-light-2560x1080.jpg</size>
<size width="3440" height="1440">/usr/share/backgrounds/Alma-light-3440x1440.jpg</size>
</file>
</static>
</background>

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 305 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 306 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 370 KiB

View File

@ -0,0 +1,21 @@
<background>
<starttime>
<year>2012</year>
<month>06</month>
<day>4</day>
<hour>7</hour>
<minute>00</minute>
<second>00</second>
</starttime>
<static>
<duration>10000000000.0</duration>
<file>
<size width="1800" height="1440">/usr/share/backgrounds/Alma-mountains-dark-1800x1440.jpg</size>
<size width="2048" height="1536">/usr/share/backgrounds/Alma-mountains-dark-2048x1536.jpg</size>
<size width="2560" height="1440">/usr/share/backgrounds/Alma-mountains-dark-2560x1440.jpg</size>
<size width="2560" height="1600">/usr/share/backgrounds/Alma-mountains-dark-2560x1600.jpg</size>
<size width="2560" height="1080">/usr/share/backgrounds/Alma-mountains-dark-2560x1080.jpg</size>
<size width="3440" height="1440">/usr/share/backgrounds/Alma-mountains-dark-3440x1440.jpg</size>
</file>
</static>
</background>

Binary file not shown.

After

Width:  |  Height:  |  Size: 262 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 265 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 346 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 326 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 435 KiB

View File

@ -0,0 +1,21 @@
<background>
<starttime>
<year>2012</year>
<month>06</month>
<day>4</day>
<hour>7</hour>
<minute>00</minute>
<second>00</second>
</starttime>
<static>
<duration>10000000000.0</duration>
<file>
<size width="1800" height="1440">/usr/share/backgrounds/Alma-mountains-white-1800x1440.jpg</size>
<size width="2048" height="1536">/usr/share/backgrounds/Alma-mountains-white-2048x1536.jpg</size>
<size width="2560" height="1440">/usr/share/backgrounds/Alma-mountains-white-2560x1440.jpg</size>
<size width="2560" height="1600">/usr/share/backgrounds/Alma-mountains-white-2560x1600.jpg</size>
<size width="2560" height="1080">/usr/share/backgrounds/Alma-mountains-white-2560x1080.jpg</size>
<size width="3440" height="1440">/usr/share/backgrounds/Alma-mountains-white-3440x1440.jpg</size>
</file>
</static>
</background>

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 306 KiB

View File

@ -0,0 +1,21 @@
<background>
<starttime>
<year>2012</year>
<month>06</month>
<day>4</day>
<hour>7</hour>
<minute>00</minute>
<second>00</second>
</starttime>
<static>
<duration>10000000000.0</duration>
<file>
<size width="1800" height="1440">/usr/share/backgrounds/Alma-waves-dark-1800x1440.jpg</size>
<size width="2048" height="1536">/usr/share/backgrounds/Alma-waves-dark-2048x1536.jpg</size>
<size width="2560" height="1440">/usr/share/backgrounds/Alma-waves-dark-2560x1440.jpg</size>
<size width="2560" height="1600">/usr/share/backgrounds/Alma-waves-dark-2560x1600.jpg</size>
<size width="2560" height="1080">/usr/share/backgrounds/Alma-waves-dark-2560x1080.jpg</size>
<size width="3440" height="1440">/usr/share/backgrounds/Alma-waves-dark-3440x1440.jpg</size>
</file>
</static>
</background>

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 221 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 320 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 374 KiB

View File

@ -0,0 +1,21 @@
<background>
<starttime>
<year>2012</year>
<month>06</month>
<day>4</day>
<hour>7</hour>
<minute>00</minute>
<second>00</second>
</starttime>
<static>
<duration>10000000000.0</duration>
<file>
<size width="1800" height="1440">/usr/share/backgrounds/Alma-waves-light-1800x1440.jpg</size>
<size width="2048" height="1536">/usr/share/backgrounds/Alma-waves-light-2048x1536.jpg</size>
<size width="2560" height="1440">/usr/share/backgrounds/Alma-waves-light-2560x1440.jpg</size>
<size width="2560" height="1600">/usr/share/backgrounds/Alma-waves-light-2560x1600.jpg</size>
<size width="2560" height="1080">/usr/share/backgrounds/Alma-waves-light-2560x1080.jpg</size>
<size width="3440" height="1440">/usr/share/backgrounds/Alma-waves-light-3440x1440.jpg</size>
</file>
</static>
</background>

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 183 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 237 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 300 KiB

View File

@ -0,0 +1,21 @@
<background>
<starttime>
<year>2012</year>
<month>06</month>
<day>4</day>
<hour>7</hour>
<minute>00</minute>
<second>00</second>
</starttime>
<static>
<duration>10000000000.0</duration>
<file>
<size width="1800" height="1440">/usr/share/backgrounds/Alma-waves-sunset-1800x1440.jpg</size>
<size width="2048" height="1536">/usr/share/backgrounds/Alma-waves-sunset-2048x1536.jpg</size>
<size width="2560" height="1440">/usr/share/backgrounds/Alma-waves-sunset-2560x1440.jpg</size>
<size width="2560" height="1600">/usr/share/backgrounds/Alma-waves-sunset-2560x1600.jpg</size>
<size width="2560" height="1080">/usr/share/backgrounds/Alma-waves-sunset-2560x1080.jpg</size>
<size width="3440" height="1440">/usr/share/backgrounds/Alma-waves-sunset-3440x1440.jpg</size>
</file>
</static>
</background>

View File

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE wallpapers SYSTEM "gnome-wp-list.dtd">
<wallpapers>
<wallpaper deleted="false">
<name>Mountains Light</name>
<filename>/usr/share/backgrounds/Alma-mountains-white.xml</filename>
<options>zoom</options>
</wallpaper>
<wallpaper deleted="false">
<name>Mountains Dark</name>
<filename>/usr/share/backgrounds/Alma-mountains-dark.xml</filename>
<options>zoom</options>
</wallpaper>
<wallpaper deleted="false">
<name>Waves Light</name>
<filename>/usr/share/backgrounds/Alma-waves-light.xml</filename>
<options>zoom</options>
</wallpaper>
<wallpaper deleted="false">
<name>Waves Dark</name>
<filename>/usr/share/backgrounds/Alma-waves-dark.xml</filename>
<options>zoom</options>
</wallpaper>
<wallpaper deleted="false">
<name>Waves Sunset</name>
<filename>/usr/share/backgrounds/Alma-waves-sunset.xml</filename>
<options>zoom</options>
</wallpaper>
<wallpaper deleted="false">
<name>Abstract Dark</name>
<filename>/usr/share/backgrounds/Alma-abstract-dark.xml</filename>
<options>zoom</options>
</wallpaper>
<wallpaper deleted="false">
<name>Abstract Light</name>
<filename>/usr/share/backgrounds/Alma-abstract-light.xml</filename>
<options>zoom</options>
</wallpaper>
<wallpaper deleted="false">
<name>Dark</name>
<filename>/usr/share/backgrounds/Alma-dark.xml</filename>
<options>zoom</options>
</wallpaper>
<wallpaper deleted="false">
<name>Light</name>
<filename>/usr/share/backgrounds/Alma-light.xml</filename>
<options>zoom</options>
</wallpaper>
</wallpapers>

0
debugfiles.list Normal file
View File

0
debuglinks.list Normal file
View File

0
debugsources.list Normal file
View File

0
elfbins.list Normal file
View File

67
fedora/fedora_logo.svg Normal file
View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Слой_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 393 195" style="enable-background:new 0 0 393 195;" xml:space="preserve">
<style type="text/css">
.st0{fill:#00245E;}
.st1{fill:#86DA2F;}
.st2{fill:#24C2FF;}
.st3{fill:#FFCB12;}
.st4{fill:#0069DA;}
.st5{fill:#FF4649;}
</style>
<title>Монтажная область 1</title>
<g>
<path class="st0" d="M130.8,117.5l-2.3-7H113l-2.3,7h-8.3l13.5-38.7h9.5l13.6,38.7H130.8z M115.4,103.3H126l-5.3-15.8L115.4,103.3z
"/>
<path class="st0" d="M142.5,117.5V77.1h7.2v40.3H142.5z"/>
<path class="st0" d="M186.7,89.1c3.2,0,5.6,1,7.5,3.1c1.9,2.1,2.9,4.9,2.9,8.3v17H190v-16.6c0-1.7-0.4-3-1.2-3.9
c-0.8-0.9-2-1.3-3.4-1.3c-1.7,0-2.9,0.6-3.8,1.7c-0.9,1.1-1.3,2.7-1.3,4.6v15.5h-7.1v-16.6c0-1.7-0.4-3-1.2-3.9
c-0.8-0.9-2-1.3-3.4-1.3c-1.5,0-2.9,0.6-3.9,1.7c-0.9,1.1-1.3,2.7-1.3,4.6v15.5h-7.1V89.8h7.1v3c1.7-2.4,4.2-3.8,7.7-3.8
c3.4,0,5.9,1.3,7.5,4C180.3,90.4,183,89.1,186.7,89.1z"/>
<path class="st0" d="M224.1,89.8h7.1v27.6h-7.1v-3.3c-2.1,2.7-5.2,4.1-9.1,4.1c-3.6,0-6.9-1.4-9.5-4.2c-2.7-2.9-4-6.3-4-10.4
s1.3-7.5,4-10.3c2.7-2.9,5.9-4.3,9.5-4.3c3.9,0,6.9,1.3,9.1,4.1V89.8z M211,109.3c1.4,1.4,3.2,2.2,5.4,2.2s4.1-0.7,5.5-2.2
c1.4-1.4,2.2-3.3,2.2-5.6s-0.8-4.2-2.2-5.5c-1.4-1.4-3.3-2.2-5.5-2.2s-4,0.8-5.4,2.2c-1.4,1.4-2.1,3.3-2.1,5.5
C208.9,105.9,209.6,107.8,211,109.3z"/>
<path class="st0" d="M245.7,110.2h14.7v7.3h-22.3V78.8h7.6V110.2z"/>
<path class="st0" d="M268,86.5c-1.2,0-2.2-0.4-3.1-1.2c-0.9-0.9-1.3-1.9-1.3-3.1s0.4-2.2,1.3-3.1c0.9-0.9,1.9-1.3,3.1-1.3
s2.2,0.4,3.1,1.3c0.9,0.9,1.3,1.9,1.3,3.1c0,1.2-0.4,2.2-1.3,3.1C270.2,86.1,269.2,86.5,268,86.5z M264.5,117.5V89.8h7.2v27.6
H264.5z"/>
<path class="st0" d="M293.4,89.1c3,0,5.5,1,7.5,3.1c2,2,3,4.9,3,8.4v16.9h-7.1v-16c0-1.9-0.6-3.2-1.5-4.2s-2.3-1.5-4-1.5
c-1.9,0-3.3,0.6-4.4,1.8c-1.1,1.1-1.7,2.9-1.7,5.1v14.9h-7.1V89.8h7.1v3.1C287,90.4,289.7,89.1,293.4,89.1z"/>
<path class="st0" d="M328.2,89.8h7.2v27.6h-7.2v-3.1c-1.8,2.5-4.4,3.9-8.2,3.9c-3,0-5.5-1-7.5-3.1c-2-2-2.9-4.9-2.9-8.4V89.8h7.2
v16c0,1.9,0.4,3.3,1.4,4.3s2.3,1.4,4,1.4c1.9,0,3.3-0.6,4.4-1.7c1.1-1.1,1.7-2.9,1.7-5.2V89.8H328.2z"/>
<path class="st0" d="M367.3,117.5h-8.3l-6-8.4l-6.1,8.4h-8.2l10.1-14.1l-9.7-13.5h8.2l5.6,7.7l5.5-7.7h8.2l-9.7,13.5L367.3,117.5z"
/>
<path class="st1" d="M87,101.8c2.9-0.2,5.2,1.7,5.4,4.5c0.2,3-1.9,5.4-4.8,5.6c-2.8,0.2-5.2-1.9-5.4-4.6
C82.1,104.3,84,102.1,87,101.8z"/>
<path class="st2" d="M52.1,125.3c0-2.9,2.2-5.1,4.9-5.1c2.7,0,5.2,2.4,5.2,5.2c0,2.7-2.2,5-4.8,5.1
C54.2,130.5,52.1,128.5,52.1,125.3z"/>
<path class="st3" d="M60,93c-0.4,0.2-0.7-0.1-0.8-0.4c-4.1-7.6-2.9-17.2,4.3-23c1.9-1.5,5.4-1.9,7-0.3c0.7,0.6,0.8,1.2,0.9,2
c0.2,1.7,0.6,3.3,1.7,4.6c1.2,1.4,2.8,2,4.5,1.9c1.5,0,3.1-0.2,4.1,1.5c0.6,1,0.3,4.9-0.6,5.6c-0.4,0.3-0.8,0.1-1.1,0
c-2.5-1-5.2-1-7.8-0.6c-0.9,0.1-1.3-0.1-1.3-1.1c-0.1-1.7-0.4-3.2-1.3-4.6c-1.7-3-4.8-3.1-6.7-0.3c-1.7,2.2-2.1,4.9-2.5,7.5
C59.7,88.2,59.8,90.6,60,93C60,93,59.8,93,60,93z"/>
<path class="st1" d="M62.7,94.7c-0.2-0.3-0.1-0.7,0.2-0.9c6.3-5.7,15.7-6.9,23-1.2c1.9,1.5,3.1,4.8,2.1,6.6c-0.4,0.8-1,1.1-1.7,1.3
c-1.5,0.7-3,1.3-4,2.8c-1,1.4-1.2,3.1-0.8,4.9c0.3,1.4,0.9,3-0.6,4.3c-0.8,0.8-4.5,1.4-5.5,0.8c-0.4-0.3-0.3-0.7-0.2-1.1
c0.3-2.8-0.3-5.3-1.3-7.7c-0.3-0.9-0.2-1.3,0.7-1.5c1.5-0.4,3-1.2,4.1-2.3c2.4-2.3,1.9-5.3-1.3-6.6c-2.5-1.1-5.2-0.9-7.7-0.7
C67.2,93.4,64.9,94,62.7,94.7L62.7,94.7z"/>
<path class="st2" d="M61.3,97.6c0.3-0.3,0.6-0.2,0.9,0c7.3,4.4,11,13.1,7.7,21.7c-0.9,2.2-3.8,4.4-5.9,3.9
c-0.9-0.2-1.3-0.7-1.8-1.2c-1-1.3-2.1-2.5-3.8-3.1c-1.8-0.6-3.3-0.2-4.9,0.7c-1.3,0.8-2.7,1.8-4.3,0.8c-1-0.6-2.7-4-2.3-5.1
c0.2-0.4,0.7-0.4,1.1-0.4c2.8-0.4,5-1.8,7.1-3.5c0.7-0.6,1.2-0.6,1.8,0.2c0.9,1.3,2,2.4,3.4,3.2c2.9,1.7,5.6,0.2,6-3.1
c0.3-2.8-0.7-5.2-1.5-7.6C63.8,101.7,62.6,99.6,61.3,97.6L61.3,97.6z"/>
<path class="st4" d="M57.7,98.2c-0.4,2.2-1.4,4.3-2.8,6.2c-4,6-9.7,8.4-16.8,7.7c-2.5-0.2-4.6-2.3-4.9-4.4
c-0.1-0.9,0.1-1.5,0.7-2.2c0.8-1,1.4-1.9,1.8-3.1c0.7-2.4-0.2-4.4-2-6.2c-2.4-2.4-2.1-4.6,0.8-6.4c0.3-0.2,0.8-0.4,1.2-0.7
c0.7-0.3,1.2-0.3,1.4,0.4c1,2.5,3,4.4,5.2,6c0.8,0.7,0.8,1.1,0.1,1.9c-1.3,1.4-2.1,3.2-2.2,5.2c-0.2,2.4,1.2,4,3.6,4
c1.5,0,3-0.6,4.3-1.2c3.4-1.8,6.1-4.3,8.6-7C57.2,98.3,57.3,98.1,57.7,98.2z"/>
<path class="st5" d="M39.6,75c0.2,0,0.8,0.1,1.3,0.2c4.1,0.8,6.6-0.7,8-4.5c0.9-2.5,2.8-3.3,5.2-2c0.1,0,0.1,0.1,0.2,0.1
c2.4,1.4,2.4,1.7,0.8,3.9c-1.3,1.8-2,3.8-2.3,5.9c-0.2,1.2-0.7,1.4-1.8,1c-1.8-0.7-3.6-0.7-5.5,0c-2.1,0.7-3,2.5-2.3,4.6
c0.9,2.8,3.3,4,5.4,5.4c2.1,1.4,4.5,2.2,6.9,3.2c0.3,0.1,0.9,0.1,0.8,0.7c-0.1,0.3-0.6,0.3-1,0.3c-5,0.2-9.7-0.6-13.6-3.9
c-3.6-3-6.3-6.6-5.9-11.7C36.3,76.6,37.5,75.4,39.6,75z"/>
<path class="st4" d="M30.6,106.1c-2.7,0.3-5.3-1.9-5.5-4.6c-0.2-2.7,2-5.3,4.5-5.5c2.9-0.3,5.5,1.7,5.7,4.3
C35.4,102.8,33.8,105.9,30.6,106.1z"/>
<path class="st3" d="M77,66.7c2.8-0.2,5.4,2,5.6,4.8c0.2,2.7-2,5.2-4.6,5.4c-2.9,0.2-5.4-1.9-5.6-4.6C72.1,69.5,74.1,67,77,66.7z"
/>
<path class="st5" d="M48.1,68.8c0.3,2.9-1.7,5.3-4.6,5.7c-2.5,0.3-5.2-1.8-5.5-4.2c-0.3-3.2,1.4-5.5,4.4-5.9
C45.1,64.2,47.8,66.3,48.1,68.8z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Слой_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 393 195" style="enable-background:new 0 0 393 195;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
.st1{fill:#86DA2F;}
.st2{fill:#24C2FF;}
.st3{fill:#FFCB12;}
.st4{fill:#0069DA;}
.st5{fill:#FF4649;}
</style>
<title>Монтажная область 1</title>
<g>
<path class="st0" d="M131.1,117.5l-2.3-7h-15.5l-2.3,7h-8.3l13.5-38.7h9.5l13.6,38.7H131.1z M115.7,103.3h10.6L121,87.5
L115.7,103.3z"/>
<path class="st0" d="M142.8,117.5V77.1h7.2v40.3H142.8z"/>
<path class="st0" d="M187,89.1c3.2,0,5.6,1,7.5,3.1c1.9,2.1,2.9,4.9,2.9,8.3v17h-7.1v-16.6c0-1.7-0.4-3-1.2-3.9
c-0.8-0.9-2-1.3-3.4-1.3c-1.7,0-2.9,0.6-3.8,1.7c-0.9,1.1-1.3,2.7-1.3,4.6v15.5h-7.1v-16.6c0-1.7-0.4-3-1.2-3.9
c-0.8-0.9-2-1.3-3.4-1.3c-1.5,0-2.9,0.6-3.9,1.7c-0.9,1.1-1.3,2.7-1.3,4.6v15.5h-7.1V89.8h7.1v2.9c1.7-2.4,4.2-3.8,7.7-3.8
c3.4,0,5.9,1.3,7.5,4C180.6,90.4,183.4,89.1,187,89.1z"/>
<path class="st0" d="M224.5,89.8h7.1v27.6h-7.1v-3.3c-2.1,2.7-5.2,4.1-9.1,4.1c-3.6,0-6.9-1.4-9.5-4.2c-2.7-2.9-4-6.3-4-10.4
c0-4.1,1.3-7.5,4-10.4c2.7-2.9,5.9-4.3,9.5-4.3c3.9,0,6.9,1.3,9.1,4.1V89.8z M211.3,109.3c1.4,1.4,3.2,2.2,5.4,2.2
c2.2,0,4.1-0.7,5.5-2.2c1.4-1.4,2.2-3.3,2.2-5.6c0-2.3-0.8-4.2-2.2-5.5c-1.4-1.4-3.3-2.2-5.5-2.2c-2.2,0-4,0.8-5.4,2.2
c-1.4,1.4-2.1,3.3-2.1,5.5C209.2,105.9,209.9,107.8,211.3,109.3z"/>
<path class="st0" d="M246,110.2h14.7v7.3h-22.3V78.8h7.6V110.2z"/>
<path class="st0" d="M268.3,86.5c-1.2,0-2.2-0.4-3.1-1.2c-0.9-0.9-1.3-1.9-1.3-3.1c0-1.2,0.4-2.2,1.3-3.1c0.9-0.9,1.9-1.3,3.1-1.3
s2.2,0.4,3.1,1.3c0.9,0.9,1.3,1.9,1.3,3.1c0,1.2-0.4,2.2-1.3,3.1C270.5,86.1,269.5,86.5,268.3,86.5z M264.8,117.5V89.8h7.2v27.6
H264.8z"/>
<path class="st0" d="M293.7,89.1c3,0,5.5,1,7.5,3.1c2,2,3,4.9,3,8.4v16.9h-7.1v-16.1c0-1.9-0.6-3.2-1.5-4.2s-2.3-1.5-4-1.5
c-1.9,0-3.3,0.6-4.4,1.8c-1.1,1.2-1.7,2.9-1.7,5.2v14.9h-7.1V89.8h7.1v3.1C287.3,90.4,290,89.1,293.7,89.1z"/>
<path class="st0" d="M328.5,89.8h7.2v27.6h-7.2v-3.1c-1.8,2.5-4.4,3.9-8.2,3.9c-3,0-5.5-1-7.5-3.1c-2-2-2.9-4.9-2.9-8.4V89.8h7.2
v16c0,1.9,0.4,3.3,1.4,4.3s2.3,1.4,4,1.4c1.9,0,3.3-0.6,4.4-1.7c1.1-1.1,1.7-2.9,1.7-5.2V89.8H328.5z"/>
<path class="st0" d="M367.7,117.5h-8.3l-6-8.4l-6.1,8.4h-8.2l10.1-14.1l-9.7-13.5h8.2l5.6,7.7l5.5-7.7h8.2l-9.7,13.5L367.7,117.5z"
/>
<path class="st1" d="M87.3,101.8c2.9-0.2,5.2,1.7,5.4,4.5c0.2,3-1.9,5.4-4.8,5.6c-2.8,0.2-5.2-1.9-5.4-4.6
C82.4,104.3,84.4,102.1,87.3,101.8z"/>
<path class="st2" d="M52.4,125.3c0-2.9,2.2-5.1,4.9-5.1s5.2,2.4,5.2,5.2c0,2.7-2.2,5-4.8,5.1C54.5,130.5,52.4,128.5,52.4,125.3z"/>
<path class="st3" d="M60.3,93c-0.4,0.2-0.7-0.1-0.8-0.4c-4.1-7.6-2.9-17.2,4.3-23c1.9-1.5,5.4-1.9,7-0.3c0.7,0.6,0.8,1.2,0.9,2
c0.2,1.7,0.6,3.3,1.7,4.6c1.2,1.4,2.8,2,4.5,1.9c1.5,0,3.1-0.2,4.1,1.5c0.6,1,0.3,4.9-0.6,5.6c-0.4,0.3-0.8,0.1-1.1,0
c-2.5-1-5.2-1-7.8-0.6c-0.9,0.1-1.3-0.1-1.3-1.1c-0.1-1.7-0.4-3.2-1.3-4.6c-1.7-3-4.8-3.1-6.7-0.3c-1.7,2.2-2.1,4.9-2.5,7.5
C60,88.2,60.2,90.6,60.3,93C60.3,93,60.2,93,60.3,93z"/>
<path class="st1" d="M63,94.7c-0.2-0.3-0.1-0.7,0.2-0.9c6.3-5.7,15.7-6.9,23-1.2c1.9,1.5,3.1,4.8,2.1,6.6c-0.4,0.8-1,1.1-1.7,1.3
c-1.5,0.7-3,1.3-4,2.8s-1.2,3.1-0.8,4.9c0.3,1.4,0.9,3-0.6,4.3c-0.8,0.8-4.5,1.4-5.5,0.8c-0.4-0.3-0.3-0.7-0.2-1.1
c0.3-2.8-0.3-5.3-1.3-7.7c-0.3-0.9-0.2-1.3,0.7-1.5c1.5-0.4,3-1.2,4.1-2.3c2.4-2.3,1.9-5.3-1.3-6.6c-2.5-1.1-5.2-0.9-7.7-0.7
C67.6,93.4,65.2,94,63,94.7L63,94.7z"/>
<path class="st2" d="M61.6,97.6c0.3-0.3,0.6-0.2,0.9,0c7.3,4.4,11,13.1,7.7,21.7c-0.9,2.2-3.8,4.4-5.9,3.9
c-0.9-0.2-1.3-0.7-1.8-1.2c-1-1.3-2.1-2.5-3.8-3.1c-1.8-0.6-3.3-0.2-4.9,0.7c-1.3,0.8-2.7,1.8-4.3,0.8c-1-0.6-2.7-4-2.3-5.1
c0.2-0.4,0.7-0.4,1.1-0.4c2.8-0.4,5-1.8,7.1-3.5c0.7-0.6,1.2-0.6,1.8,0.2c0.9,1.3,2,2.4,3.4,3.2c2.9,1.7,5.6,0.2,6-3.1
c0.3-2.8-0.7-5.2-1.5-7.6C64.1,101.7,62.9,99.6,61.6,97.6L61.6,97.6z"/>
<path class="st4" d="M58.1,98.2c-0.4,2.2-1.4,4.3-2.8,6.2c-4,6-9.7,8.4-16.8,7.7c-2.5-0.2-4.6-2.3-4.9-4.4
c-0.1-0.9,0.1-1.5,0.7-2.2c0.8-1,1.4-1.9,1.8-3.1c0.7-2.4-0.2-4.4-2-6.2c-2.4-2.4-2.1-4.6,0.8-6.4c0.3-0.2,0.8-0.4,1.2-0.7
c0.7-0.3,1.2-0.3,1.4,0.4c1,2.5,3,4.4,5.2,6c0.8,0.7,0.8,1.1,0.1,1.9c-1.3,1.4-2.1,3.2-2.2,5.2c-0.2,2.4,1.2,4,3.6,4
c1.5,0,3-0.6,4.3-1.2c3.4-1.8,6.1-4.3,8.6-7C57.5,98.3,57.6,98.1,58.1,98.2z"/>
<path class="st5" d="M39.9,75c0.2,0,0.8,0.1,1.3,0.2c4.1,0.8,6.6-0.7,8-4.5c0.9-2.5,2.8-3.3,5.2-2c0.1,0,0.1,0.1,0.2,0.1
c2.5,1.4,2.5,1.7,1,3.9c-1.3,1.8-2,3.8-2.3,5.9c-0.2,1.2-0.7,1.4-1.8,1c-1.8-0.7-3.6-0.7-5.5,0c-2.1,0.7-3,2.5-2.3,4.6
c0.9,2.8,3.3,4,5.4,5.4c2.1,1.4,4.5,2.2,6.9,3.2c0.3,0.1,0.9,0.1,0.8,0.7c-0.1,0.3-0.6,0.3-1,0.3c-5,0.2-9.7-0.6-13.6-3.9
c-3.6-3-6.3-6.6-5.9-11.7C36.6,76.6,37.8,75.4,39.9,75z"/>
<path class="st4" d="M30.9,106.1c-2.7,0.3-5.3-1.9-5.5-4.6c-0.2-2.7,2-5.3,4.5-5.5c2.9-0.3,5.5,1.7,5.7,4.3
C35.7,102.8,34.1,105.9,30.9,106.1z"/>
<path class="st3" d="M77.3,66.7c2.8-0.2,5.4,2,5.6,4.8c0.2,2.7-2,5.2-4.6,5.4c-2.9,0.2-5.4-1.9-5.6-4.6
C72.4,69.5,74.4,67,77.3,66.7z"/>
<path class="st5" d="M48.4,68.8c0.3,2.9-1.7,5.3-4.6,5.7c-2.5,0.3-5.2-1.8-5.5-4.2c-0.3-3.2,1.4-5.5,4.4-5.9
C45.5,64.2,48.1,66.3,48.4,68.8z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Слой_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 393 195" style="enable-background:new 0 0 393 195;" xml:space="preserve">
<style type="text/css">
.st0{fill:#00245E;}
.st1{fill:#86DA2F;}
.st2{fill:#24C2FF;}
.st3{fill:#FFCB12;}
.st4{fill:#0069DA;}
.st5{fill:#FF4649;}
</style>
<title>Монтажная область 1</title>
<g>
<path class="st0" d="M130.8,117.5l-2.3-7H113l-2.3,7h-8.3l13.5-38.7h9.5l13.6,38.7H130.8z M115.4,103.3H126l-5.3-15.8L115.4,103.3z
"/>
<path class="st0" d="M142.5,117.5V77.1h7.2v40.3H142.5z"/>
<path class="st0" d="M186.7,89.1c3.2,0,5.6,1,7.5,3.1c1.9,2.1,2.9,4.9,2.9,8.3v17H190v-16.6c0-1.7-0.4-3-1.2-3.9
c-0.8-0.9-2-1.3-3.4-1.3c-1.7,0-2.9,0.6-3.8,1.7c-0.9,1.1-1.3,2.7-1.3,4.6v15.5h-7.1v-16.6c0-1.7-0.4-3-1.2-3.9
c-0.8-0.9-2-1.3-3.4-1.3c-1.5,0-2.9,0.6-3.9,1.7c-0.9,1.1-1.3,2.7-1.3,4.6v15.5h-7.1V89.8h7.1v3c1.7-2.4,4.2-3.8,7.7-3.8
c3.4,0,5.9,1.3,7.5,4C180.3,90.4,183,89.1,186.7,89.1z"/>
<path class="st0" d="M224.1,89.8h7.1v27.6h-7.1v-3.3c-2.1,2.7-5.2,4.1-9.1,4.1c-3.6,0-6.9-1.4-9.5-4.2c-2.7-2.9-4-6.3-4-10.4
s1.3-7.5,4-10.3c2.7-2.9,5.9-4.3,9.5-4.3c3.9,0,6.9,1.3,9.1,4.1V89.8z M211,109.3c1.4,1.4,3.2,2.2,5.4,2.2s4.1-0.7,5.5-2.2
c1.4-1.4,2.2-3.3,2.2-5.6s-0.8-4.2-2.2-5.5c-1.4-1.4-3.3-2.2-5.5-2.2s-4,0.8-5.4,2.2c-1.4,1.4-2.1,3.3-2.1,5.5
C208.9,105.9,209.6,107.8,211,109.3z"/>
<path class="st0" d="M245.7,110.2h14.7v7.3h-22.3V78.8h7.6V110.2z"/>
<path class="st0" d="M268,86.5c-1.2,0-2.2-0.4-3.1-1.2c-0.9-0.9-1.3-1.9-1.3-3.1s0.4-2.2,1.3-3.1c0.9-0.9,1.9-1.3,3.1-1.3
s2.2,0.4,3.1,1.3c0.9,0.9,1.3,1.9,1.3,3.1c0,1.2-0.4,2.2-1.3,3.1C270.2,86.1,269.2,86.5,268,86.5z M264.5,117.5V89.8h7.2v27.6
H264.5z"/>
<path class="st0" d="M293.4,89.1c3,0,5.5,1,7.5,3.1c2,2,3,4.9,3,8.4v16.9h-7.1v-16c0-1.9-0.6-3.2-1.5-4.2s-2.3-1.5-4-1.5
c-1.9,0-3.3,0.6-4.4,1.8c-1.1,1.1-1.7,2.9-1.7,5.1v14.9h-7.1V89.8h7.1v3.1C287,90.4,289.7,89.1,293.4,89.1z"/>
<path class="st0" d="M328.2,89.8h7.2v27.6h-7.2v-3.1c-1.8,2.5-4.4,3.9-8.2,3.9c-3,0-5.5-1-7.5-3.1c-2-2-2.9-4.9-2.9-8.4V89.8h7.2
v16c0,1.9,0.4,3.3,1.4,4.3s2.3,1.4,4,1.4c1.9,0,3.3-0.6,4.4-1.7c1.1-1.1,1.7-2.9,1.7-5.2V89.8H328.2z"/>
<path class="st0" d="M367.3,117.5h-8.3l-6-8.4l-6.1,8.4h-8.2l10.1-14.1l-9.7-13.5h8.2l5.6,7.7l5.5-7.7h8.2l-9.7,13.5L367.3,117.5z"
/>
<path class="st1" d="M87,101.8c2.9-0.2,5.2,1.7,5.4,4.5c0.2,3-1.9,5.4-4.8,5.6c-2.8,0.2-5.2-1.9-5.4-4.6
C82.1,104.3,84,102.1,87,101.8z"/>
<path class="st2" d="M52.1,125.3c0-2.9,2.2-5.1,4.9-5.1c2.7,0,5.2,2.4,5.2,5.2c0,2.7-2.2,5-4.8,5.1
C54.2,130.5,52.1,128.5,52.1,125.3z"/>
<path class="st3" d="M60,93c-0.4,0.2-0.7-0.1-0.8-0.4c-4.1-7.6-2.9-17.2,4.3-23c1.9-1.5,5.4-1.9,7-0.3c0.7,0.6,0.8,1.2,0.9,2
c0.2,1.7,0.6,3.3,1.7,4.6c1.2,1.4,2.8,2,4.5,1.9c1.5,0,3.1-0.2,4.1,1.5c0.6,1,0.3,4.9-0.6,5.6c-0.4,0.3-0.8,0.1-1.1,0
c-2.5-1-5.2-1-7.8-0.6c-0.9,0.1-1.3-0.1-1.3-1.1c-0.1-1.7-0.4-3.2-1.3-4.6c-1.7-3-4.8-3.1-6.7-0.3c-1.7,2.2-2.1,4.9-2.5,7.5
C59.7,88.2,59.8,90.6,60,93C60,93,59.8,93,60,93z"/>
<path class="st1" d="M62.7,94.7c-0.2-0.3-0.1-0.7,0.2-0.9c6.3-5.7,15.7-6.9,23-1.2c1.9,1.5,3.1,4.8,2.1,6.6c-0.4,0.8-1,1.1-1.7,1.3
c-1.5,0.7-3,1.3-4,2.8c-1,1.4-1.2,3.1-0.8,4.9c0.3,1.4,0.9,3-0.6,4.3c-0.8,0.8-4.5,1.4-5.5,0.8c-0.4-0.3-0.3-0.7-0.2-1.1
c0.3-2.8-0.3-5.3-1.3-7.7c-0.3-0.9-0.2-1.3,0.7-1.5c1.5-0.4,3-1.2,4.1-2.3c2.4-2.3,1.9-5.3-1.3-6.6c-2.5-1.1-5.2-0.9-7.7-0.7
C67.2,93.4,64.9,94,62.7,94.7L62.7,94.7z"/>
<path class="st2" d="M61.3,97.6c0.3-0.3,0.6-0.2,0.9,0c7.3,4.4,11,13.1,7.7,21.7c-0.9,2.2-3.8,4.4-5.9,3.9
c-0.9-0.2-1.3-0.7-1.8-1.2c-1-1.3-2.1-2.5-3.8-3.1c-1.8-0.6-3.3-0.2-4.9,0.7c-1.3,0.8-2.7,1.8-4.3,0.8c-1-0.6-2.7-4-2.3-5.1
c0.2-0.4,0.7-0.4,1.1-0.4c2.8-0.4,5-1.8,7.1-3.5c0.7-0.6,1.2-0.6,1.8,0.2c0.9,1.3,2,2.4,3.4,3.2c2.9,1.7,5.6,0.2,6-3.1
c0.3-2.8-0.7-5.2-1.5-7.6C63.8,101.7,62.6,99.6,61.3,97.6L61.3,97.6z"/>
<path class="st4" d="M57.7,98.2c-0.4,2.2-1.4,4.3-2.8,6.2c-4,6-9.7,8.4-16.8,7.7c-2.5-0.2-4.6-2.3-4.9-4.4
c-0.1-0.9,0.1-1.5,0.7-2.2c0.8-1,1.4-1.9,1.8-3.1c0.7-2.4-0.2-4.4-2-6.2c-2.4-2.4-2.1-4.6,0.8-6.4c0.3-0.2,0.8-0.4,1.2-0.7
c0.7-0.3,1.2-0.3,1.4,0.4c1,2.5,3,4.4,5.2,6c0.8,0.7,0.8,1.1,0.1,1.9c-1.3,1.4-2.1,3.2-2.2,5.2c-0.2,2.4,1.2,4,3.6,4
c1.5,0,3-0.6,4.3-1.2c3.4-1.8,6.1-4.3,8.6-7C57.2,98.3,57.3,98.1,57.7,98.2z"/>
<path class="st5" d="M39.6,75c0.2,0,0.8,0.1,1.3,0.2c4.1,0.8,6.6-0.7,8-4.5c0.9-2.5,2.8-3.3,5.2-2c0.1,0,0.1,0.1,0.2,0.1
c2.4,1.4,2.4,1.7,0.8,3.9c-1.3,1.8-2,3.8-2.3,5.9c-0.2,1.2-0.7,1.4-1.8,1c-1.8-0.7-3.6-0.7-5.5,0c-2.1,0.7-3,2.5-2.3,4.6
c0.9,2.8,3.3,4,5.4,5.4c2.1,1.4,4.5,2.2,6.9,3.2c0.3,0.1,0.9,0.1,0.8,0.7c-0.1,0.3-0.6,0.3-1,0.3c-5,0.2-9.7-0.6-13.6-3.9
c-3.6-3-6.3-6.6-5.9-11.7C36.3,76.6,37.5,75.4,39.6,75z"/>
<path class="st4" d="M30.6,106.1c-2.7,0.3-5.3-1.9-5.5-4.6c-0.2-2.7,2-5.3,4.5-5.5c2.9-0.3,5.5,1.7,5.7,4.3
C35.4,102.8,33.8,105.9,30.6,106.1z"/>
<path class="st3" d="M77,66.7c2.8-0.2,5.4,2,5.6,4.8c0.2,2.7-2,5.2-4.6,5.4c-2.9,0.2-5.4-1.9-5.6-4.6C72.1,69.5,74.1,67,77,66.7z"
/>
<path class="st5" d="M48.1,68.8c0.3,2.9-1.7,5.3-4.6,5.7c-2.5,0.3-5.2-1.8-5.5-4.2c-0.3-3.2,1.4-5.5,4.4-5.9
C45.1,64.2,47.8,66.3,48.1,68.8z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

BIN
firstboot/workstation.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 226 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 226 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 257 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 257 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 299 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 299 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 320 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 320 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 771 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Some files were not shown because too many files have changed in this diff Show More