[branding] sync with 3.2.x branch

This commit is contained in:
Philip Mueller 2023-05-26 13:19:29 +02:00
parent 8785180a3a
commit cfa2e8d25f
15 changed files with 1724 additions and 131 deletions

View File

@ -1,45 +1,219 @@
import QtQuick 2.15
Item {
Rectangle {
id: root
// Max size of the scene - needed to load heavy assets only once and also set star field sizes
QtObject {
id: maxSceneSize
property int width: 6075
property int height: 6950
}
SystemPalette {
id: systemPalette
}
property int rocketLift: 0
id: root
color: "#103e49"
Image {
id: background
anchors {
fill: parent
margins: -10
bottomMargin: 20
id: comet
source: "comet.svg"
sourceSize {
width: 50
height: 50
}
opacity: 0
Timer {
id: cometShowupTimeout
running: true
interval: 6000
repeat: true
onTriggered: {
comet.x = Math.floor(Math.random() * root.width);
comet.y = Math.floor(Math.random() * root.height);
cometShowupAnimation.start();
}
}
source: systemPalette.window.hslLightness > 0.5 ? "background.svg" : "background_dark.svg"
sourceSize.width: width
sourceSize.height: height
ParallelAnimation {
id: cometShowupAnimation
loops: 1
SequentialAnimation {
loops: Animation.Infinite
running: true
XAnimator{
target: background
from: -20
to: 0
duration: 5000
}
XAnimator {
target: background
NumberAnimation {
target: comet
property: "opacity"
duration: 200
from: 0
to: -20
duration: 5000
to: 1
}
NumberAnimation {
target: comet
property: "opacity"
duration: 200
from: 1
to: 0
}
}
NumberAnimation {
target: comet
properties: "x"
duration: 700
easing.type: Easing.OutQuad
to: comet.x-100
}
NumberAnimation {
target: comet
properties: "y"
duration: 700
easing.type: Easing.OutQuad
to: comet.y+100
}
}
}
Column {
id: starsClose
anchors {
left: parent.left
right: parent.right
top: parent.top
topMargin: -starsClose1.sourceSize.height
}
height: starsClose1.height+starsClose2.height
Image {
fillMode: Image.Tile
id: starsClose1
source: 'starsClose.svg'
height: maxSceneSize.height
width: maxSceneSize.width
}
Image {
fillMode: Image.Tile
id: starsClose2
source: 'starsClose.svg'
height: maxSceneSize.height
width: maxSceneSize.width
}
NumberAnimation {
id: starsCloseMovingAnimation
running: true
loops: -1
duration: 100000
target: starsClose
property: "anchors.topMargin"
from: -starsClose1.sourceSize.height
to: 0
}
}
Column {
id: starsFar
anchors {
left: parent.left
right: parent.right
top: parent.top
topMargin: -starsFar1.sourceSize.height
}
height: starsFar1.height+starsFar2.height
Image {
fillMode: Image.Tile
id: starsFar1
source: 'starsFar.svg'
height: maxSceneSize.height
width: maxSceneSize.width
}
Image {
fillMode: Image.Tile
id: starsFar2
source: 'starsFar.svg'
height: maxSceneSize.height
width: maxSceneSize.width
}
NumberAnimation {
id: starsFarMovingAnimation
running: true
loops: -1
duration: 200000
target: starsFar
property: "anchors.topMargin"
from: -starsFar1.sourceSize.height
to: 0
}
}
Image {
id: moon
source: "moon.svg"
sourceSize.height: height
sourceSize.width: width
x: -height
height: 70
width: height
Timer {
id: moonShowupTimeout
running: true
interval: 25000
repeat: true
onTriggered: {
moon.height = Math.floor(Math.random() * (45 - 200) + 200)
moon.x = Math.floor(Math.random() * root.width);
moonShowupAnimation.start();
}
}
NumberAnimation {
id: moonShowupAnimation
target: moon
properties: "y"
duration: 25000
from: -moon.height
to: maxSceneSize.height+moon.height
}
}
Image {
id: background
anchors.fill: parent
mipmap: true
source: systemPalette.window.hslLightness > 0.5 ? "background.svg" : "background_dark.svg"
sourceSize {
height: maxSceneSize.height
width: maxSceneSize.width
}
}
Item {
id: smoke
anchors{
bottom: parent.bottom
right: parent.right
left: parent.left
}
height: smokeAsset.paintedHeight
Rectangle {
id: smoke
anchors{
bottom: parent.bottom
right: parent.right
@ -48,41 +222,228 @@ Item {
height: 57
color: "#eff0f1"
}
Image {
id: smokeAsset
anchors{
bottom: parent.bottom
left: parent.left
horizontalCenter: parent.horizontalCenter
}
source: "smoke.svg"
sourceSize.width: width
sourceSize.height: height
}
}
Image {
Rocket {
id: rocket
property int lift: 0
anchors {
bottom: parent.bottom
bottomMargin: -(height-rocketLift)
left: parent.left
leftMargin: 105
bottomMargin: -(height-lift)
horizontalCenter: parent.horizontalCenter
horizontalCenterOffset: -235
}
width: 100
showSmoke: true
}
source: "rocket_smoke.svg"
sourceSize.width: width
sourceSize.height: height
state: "onGround"
Behavior on anchors.bottomMargin {
states: [
State {
name: "onGround"
PropertyChanges {
target: rocket
lift: 180
}
PropertyChanges {
target: background
anchors.topMargin: -root.height
anchors.bottomMargin: 20
opacity: 1
}
PropertyChanges {
target: starsCloseMovingAnimation
running: false
}
PropertyChanges {
target: starsFarMovingAnimation
running: false
}
PropertyChanges {
target: moonShowupTimeout
running: false
}
PropertyChanges {
target: cometShowupTimeout
running: false
}
},
State {
extend: "onGround"
name: "nearGround"
PropertyChanges {
target: rocket
lift: root.height/2 + 150
}
PropertyChanges {
target: smoke
anchors.bottomMargin: -smoke.height/2 + 100
}
PropertyChanges {
target: background
anchors.bottomMargin: -(root.height*0.2)
anchors.topMargin: -root.height+root.height*0.2
}
},
State {
extend: "nearGround"
name: "inAtmosphere"
PropertyChanges {
target: rocket
showSmoke: false
}
PropertyChanges {
target: rocket
lift: root.height/2 + 100
}
PropertyChanges {
target: background
anchors.bottomMargin: -root.height*0.9
anchors.topMargin: 0
}
},
State {
extend: "inAtmosphere"
name: "inSpace"
PropertyChanges {
target: background
anchors.bottomMargin: -(root.height*2)
anchors.topMargin: root.height
}
PropertyChanges {
target: starsCloseMovingAnimation
running: true
}
PropertyChanges {
target: starsFarMovingAnimation
running: true
}
PropertyChanges {
target: moonShowupTimeout
running: true
}
PropertyChanges {
target: cometShowupTimeout
running: true
}
}
]
transitions: [
Transition{
id: transition1
from: "onGround"
to: "nearGround"
SequentialAnimation {
NumberAnimation {
duration: 1400
target: rocket
property: "lift"
duration: 10000
easing.type: Easing.InQuad
}
ScriptAction { script: root.state = "inAtmosphere" }
}
NumberAnimation {
target: smoke
property: "bottomMargin"
duration: 10000
easing.type: Easing.InQuad
}
NumberAnimation {
target: background
properties: "anchors.topMargin,anchors.bottomMargin"
duration: 10000
easing.type: Easing.InQuad
}
},
Transition {
id: transition2
from: "nearGround"
to: "inAtmosphere"
NumberAnimation {
target: rocket
property: "lift"
duration: 5000
easing.type: Easing.OutQuad
}
SequentialAnimation {
NumberAnimation {
target: background
properties: "anchors.topMargin,anchors.bottomMargin"
duration: 5000
}
ScriptAction { script: root.state = "inSpace" }
}
},
Transition {
id: transition3
from: "inAtmosphere"
to: "inSpace"
NumberAnimation {
target: rocket
property: "lift"
duration: 3000
easing.type: Easing.OutQuad
}
NumberAnimation {
target: background
properties: "anchors.bottomMargin"
duration: 15000
from: -root.height
}
NumberAnimation {
target: background
properties: "anchors.topMargin"
duration: 15000
from: 0
}
}
]
// Animation objects don't bind properties - so we have to reset the animation when a window size changes. In our case it's only about height.
// Timeout is needed to ensure that properties already have needed values set.
Timer {
id: sizeChangeTimeout
interval: 1
onTriggered: {
switch(state) {
case "nearGround":
if(!transition1.running) return;
state = "onGround";
state = "nearGround";
break;
case "inAtmosphere":
if(!transition2.running) return;
state = "nearGround";
state = "inAtmosphere";
break;
case "inSpace":
if(!transition3.running) return;
state = "inAtmosphere";
state = "inSpace";
}
}
}
onHeightChanged: {
sizeChangeTimeout.restart();
}
}
}

View File

@ -0,0 +1,58 @@
import QtQuick 2.15
Item {
property bool showSmoke: false
Item {
id: rocketNoSmoke
property bool rocketFrame: false
Timer {
interval: 200
running: !showSmoke
repeat: true
onTriggered: rocketNoSmoke.rocketFrame = !rocketNoSmoke.rocketFrame
}
width: 250
height: Math.min(rocket_a.paintedHeight, rocket_b.paintedHeight)
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: parent.top
Image {
opacity: rocketNoSmoke.rocketFrame?1:0
width: parent.width
id: rocket_a
fillMode: Image.PreserveAspectFit
source: "rocket_a.svg"
}
Image {
opacity: rocketNoSmoke.rocketFrame?0:1
width: parent.width
id: rocket_b
fillMode: Image.PreserveAspectFit
source: "rocket_b.svg"
}
}
Image {
opacity: showSmoke?1:0
width: 250
anchors.top: parent.top
anchors.horizontalCenter: parent.horizontalCenter
id: rocketSmoke
fillMode: Image.PreserveAspectFit
source: "rocket_smoke.svg"
Behavior on opacity {
NumberAnimation{}
}
}
}

View File

@ -1,7 +1,8 @@
import QtQuick 2.15
Item {
QtObject {
required property string title
property string secondaryTitle
required property string body
property string footer
}

View File

@ -7,6 +7,7 @@ Item {
function onActivate(){
timer.restart();
slider.reset();
artwork.state = "nearGround";
}
function onLeave(){
@ -35,14 +36,6 @@ Item {
Artwork {
id: artwork
anchors.fill: parent
rocketLift: 120 + ((root.height - 140) / slider.slidesSize) * (slider.slidesSize)
Binding {
target: artwork
property: "rocketLift"
value: 120 + ((root.height - 140) / slider.slidesSize) * (slider.currentSlideIndex + 1)
when: slider.firstIteration
restoreMode: Binding.RestoreBinding
}
}
Slider {
@ -51,20 +44,21 @@ Item {
slides: [
Slide {
title: qsTr("hello")
title: qsTr("Hello")
body: qsTr("Manjaro is simple and elegant yet fully customizable. Use as is or create something incredible? You decide.")
footer: qsTr("During the installation, this slideshow will provide a quick introduction.")
},
Slide {
title: qsTr("pamac")
title: qsTr("Pamac")
secondaryTitle: qsTr("Add/Remove Software")
body: qsTr("Accessible via command line or fast, beautiful graphical interface. Add or remove software with the greatest of ease.")
},
Slide {
title: qsTr("control panel")
body: qsTr("Settings manager, the same for every redaction you choose, will help you to install drivers, download missing translation and language packets, or update your kernel.")
title: qsTr("Control Panel")
body: qsTr("The control panel is a handy tool to install device drivers, download missing translations and language packages, it also helps in keeping your kernels up to date.")
},
Slide {
title: qsTr("thank you")
title: qsTr("Thank You")
body: qsTr("It's time to relax and prepare for new adventures.")
footer: qsTr("Check our forum and wiki if you have any questions or feedback.")
}

View File

@ -29,18 +29,28 @@ Item {
Text {
id: titleText
font {
family: "Comfortaa"
capitalization: Font.AllLowercase
family: "Montserrat"
capitalization: Font.AllUppercase
weight: Font.DemiBold
pointSize: 18
}
color: "white"
text: slides[_currentSlideIndex].title
}
Text {
id: secondaryTitleText
font {
family: "Montserrat"
weight: Font.Light
pointSize: 12
}
color: "white"
text: slides[_currentSlideIndex].secondaryTitle ?? ""
}
Text {
id: bodyText
font {
family: "Comfortaa"
family: "Montserrat"
pointSize: 12
}
width: 400
@ -52,7 +62,7 @@ Item {
Text {
id: footerText
font {
family: "Comfortaa"
family: "Montserrat"
weight: Font.Light
pointSize: 12
}
@ -74,6 +84,12 @@ Item {
to: 0.0
duration: transitionAnimation.duration
}
OpacityAnimator {
target: secondaryTitleText
from: 1.0
to: 0.0
duration: transitionAnimation.duration
}
OpacityAnimator {
target: bodyText
from: 1.0
@ -92,6 +108,12 @@ Item {
to: -30
duration: transitionAnimation.duration
}
XAnimator {
target: secondaryTitleText
from: 0
to: -30
duration: transitionAnimation.duration
}
XAnimator {
target: bodyText
from: 0
@ -117,6 +139,12 @@ Item {
to: 1.0
duration: transitionAnimation.duration
}
OpacityAnimator {
target: secondaryTitleText
from: 0.0
to: 1.0
duration: transitionAnimation.duration
}
OpacityAnimator {
target: bodyText
from: 0.0
@ -135,6 +163,12 @@ Item {
to: 0
duration: transitionAnimation.duration
}
XAnimator {
target: secondaryTitleText
from: 30
to: 0
duration: transitionAnimation.duration
}
XAnimator {
target: bodyText
from: 25

View File

@ -3,31 +3,63 @@
<svg
width="800.00085"
height="439.99997"
viewBox="0 0 800.00094 439.99999"
height="880"
viewBox="0 0 800.00094 880.00004"
version="1.1"
id="svg8"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
sodipodi:docname="background1.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
sodipodi:docname="background.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs2" />
<sodipodi:namedview
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
id="defs2"><linearGradient
inkscape:collect="always"
id="linearGradient895"><stop
style="stop-color:#1abc9c;stop-opacity:0;"
offset="0"
id="stop891" /><stop
style="stop-color:#1abc9c;stop-opacity:1;"
offset="1"
id="stop893" /></linearGradient><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath290923"><rect
style="opacity:0.7;fill:#2f6b5a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.70918;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
id="rect290925"
width="309.65643"
height="170.30928"
x="-358.01489"
y="775.27844" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath292441"><rect
style="opacity:0.7;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.18763;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
id="rect292443"
width="478.64374"
height="263.22327"
x="-510.89438"
y="765.67975" /></clipPath><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient895"
id="linearGradient897"
x1="13.87441"
y1="170.36914"
x2="13.87441"
y2="781.91968"
gradientUnits="userSpaceOnUse" /></defs><sodipodi:namedview
id="base"
pagecolor="#525252"
bordercolor="#404040"
borderopacity="1"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="10"
inkscape:cy="131.42857"
inkscape:zoom="0.49497475"
inkscape:cx="355.5737"
inkscape:cy="307.08637"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
@ -41,61 +73,47 @@
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
fit-margin-bottom="0"
inkscape:showpageshadow="0"
inkscape:deskcolor="#525252" /><metadata
id="metadata5"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-13.87441,-610.36914)">
<rect
style="display:inline;fill:#1abc9c;fill-opacity:1;fill-rule:evenodd;stroke-width:0.41201"
transform="translate(-13.87441,-170.36914)"><rect
style="display:inline;fill:url(#linearGradient897);fill-opacity:1;fill-rule:evenodd;stroke-width:0.58267"
id="rect250371"
width="800"
height="439.99997"
height="880"
x="13.87523"
y="610.36914"
y="170.36914"
inkscape:export-filename="/run/media/bogdan/WORK/Work2022/Manjaro2022/4Calamares/2022/slide5.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
<path
inkscape:export-ydpi="96" /><path
id="path287238"
style="opacity:1;fill:#569e8f;fill-opacity:1;stroke:none;stroke-width:0.442273px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 13.87523,730.29327 53.765199,-34.07878 64.588571,39.80441 259.69851,-14.76567 148.75299,-67.1822 129.87247,-4.50792 53.32883,11.68417 72.25841,48.3183 17.73503,-6.46425 V 1050.3691 H 13.87523 Z"
sodipodi:nodetypes="cccccccccccc"
inkscape:export-filename="/run/media/bogdan/WORK/Work2021/Manjaro2021/Wallpapers_renew/mountain.png"
inkscape:export-xdpi="95.990692"
inkscape:export-ydpi="95.990692" />
<path
inkscape:export-ydpi="95.990692" /><path
id="path287240"
style="opacity:1;fill:#428476;fill-opacity:1;stroke:none;stroke-width:0.278593px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 318.15234,21.335938 -6.375,35.107421 33.32227,-27.544921 z m -33.61718,1.957031 -24.48243,51.285156 16.22071,0.0293 z M 247.70508,25.4375 223.89453,60.746094 246.9082,36.841797 Z m 105.75195,3.855469 2.95313,5.613281 0.0254,6.609375 4.00195,1.826172 20.45703,42.847656 21.73438,14.515627 -6.95703,-13.187502 -16.9336,-14.714844 -3.66797,-22.787109 1.08008,0.494141 -0.57227,0.0098 47.88477,42.738281 -19.80469,-30.201171 16.38672,7.474609 4.41992,7.376953 -5.55468,-2.492187 15.85546,25.253899 -0.34374,-6.144524 4.99023,8.328124 -12.11328,33.26757 15.24609,-28.03906 0.5332,-11.933587 18.375,3.630859 0.0117,-1.380859 -18.09179,-8.845704 0.008,-0.154296 8.73633,-5.046876 2.56054,-7.054687 -10.9375,4.042969 -72.25781,-48.31836 z m 49.17188,71.412111 6.95703,13.18554 14.77734,1.32813 z M 267.07422,40.679688 245.91211,54.544922 232.63867,76.619141 Z m 72.91797,3.222656 -13.32813,44.646484 24.69336,-7.742187 z m -624.75196,24.085937 7.6211,19.115235 -15.58203,-4.888672 -10.76368,26.503906 32.12696,-3.49414 -36.4375,49.88672 -0.92188,-0.16016 -22.82422,-1.66406 -6.98437,0.40625 v 268.44922 h 800 V 220.46094 l -62.03711,-22.61914 -64.5957,8.96484 -223.85157,-14.41797 -165.587886,-30.34961 -113.066404,-9.57422 -38.99805,-0.10351 -74.59375,7.36719 -25.00781,-4.34961 46.75781,-50.59571 39.33594,3.00977 z"
transform="translate(352.3998,628.22633)" />
<path
transform="translate(352.3998,628.22633)" /><path
id="path287242"
style="opacity:1;fill:#2f6b5a;fill-opacity:1;stroke:none;stroke-width:0.349527px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 813.87524,967.12639 665.97943,942.26861 601.38381,967.12639 463.3455,957.90524 381.43491,916.17674 268.36838,913.1349 229.37092,919.38449 86.448992,950.60632 54.605504,944.26915 H 31.781024 L 13.87523,946.15991 V 1050.3691 H 813.87524 Z"
sodipodi:nodetypes="cccccccccccccc"
inkscape:export-filename="/run/media/bogdan/WORK/Work2021/Manjaro2021/Wallpapers_renew/mountain.png"
inkscape:export-xdpi="95.990692"
inkscape:export-ydpi="95.990692" />
<path
inkscape:export-ydpi="95.990692" /><path
id="path287244"
style="opacity:1;fill:#bbebe1;fill-opacity:1;stroke:none;stroke-width:0.442273px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 573.63768,655.20388 -17.83295,12.99664 -1.02684,-7.45301 -14.09739,-6.67648 16.81831,-7.59808 113.05416,-4.87076 38.9932,10.00736 14.33563,9.63773 -18.02455,-3.72859 2.95337,5.61347 0.0257,6.61008 -11.33663,-12.61828 -26.94668,-7.56085 -33.61726,1.95663 -13.00846,5.92247 -0.48663,-5.137 -23.33635,1.35822 -11.6817,6.28436 0.29872,-5.62183 z"
sodipodi:nodetypes="cccccccccccccccccccc"
inkscape:export-filename="/run/media/bogdan/WORK/Work2021/Manjaro2021/Wallpapers_renew/mountain.png"
inkscape:export-xdpi="95.990692"
inkscape:export-ydpi="95.990692" />
</g>
</svg>
inkscape:export-ydpi="95.990692" /></g></svg>

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

@ -2,22 +2,31 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="800.00085"
height="439.99997"
viewBox="0 0 800.00094 439.99999"
width="800"
height="879.99994"
viewBox="0 0 800.00009 879.99998"
version="1.1"
id="svg8"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
sodipodi:docname="night_mountain.svg"
sodipodi:docname="background_dark.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
id="defs2"><clipPath
id="defs2"><linearGradient
inkscape:collect="always"
id="linearGradient883"><stop
style="stop-color:#103e49;stop-opacity:1;"
offset="0"
id="stop879" /><stop
style="stop-color:#103e49;stop-opacity:0;"
offset="1"
id="stop881" /></linearGradient><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath290923"><rect
style="opacity:0.7;fill:#2f6b5a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.70918;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
@ -33,22 +42,30 @@
width="478.64374"
height="263.22327"
x="-510.89438"
y="765.67975" /></clipPath></defs><sodipodi:namedview
y="765.67975" /></clipPath><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient883"
id="linearGradient885"
x1="20.85878"
y1="781.51343"
x2="20.85878"
y2="170.36917"
gradientUnits="userSpaceOnUse" /></defs><sodipodi:namedview
id="base"
pagecolor="#525252"
bordercolor="#404040"
borderopacity="1"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="485.71429"
inkscape:cy="-8.5714286"
inkscape:zoom="0.35"
inkscape:cx="321.42857"
inkscape:cy="37.142857"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1914"
inkscape:window-width="955"
inkscape:window-height="1047"
inkscape:window-x="1923"
inkscape:window-x="2881"
inkscape:window-y="3"
inkscape:window-maximized="0"
inkscape:pagecheckerboard="0"
@ -65,13 +82,13 @@
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-13.87441,-610.36914)"><rect
style="display:inline;fill:#103e49;fill-opacity:1;fill-rule:evenodd;stroke-width:0.41201"
transform="translate(-13.875305,-170.36917)"><rect
style="display:inline;fill:url(#linearGradient885);fill-opacity:1;fill-rule:evenodd;stroke-width:0.58267"
id="rect75224"
width="800"
height="439.99997"
height="879.99994"
x="13.875305"
y="610.36914"
y="170.36917"
inkscape:export-filename="/run/media/bogdan/WORK/Work2022/Manjaro2022/4Calamares/2022/slide1.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" /><path

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

@ -0,0 +1,200 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="331.13705"
height="323.99829"
viewBox="0 0 331.13706 323.9983"
version="1.1"
id="svg8"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
sodipodi:docname="commet.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#525252"
bordercolor="#404040"
borderopacity="1"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="0.49497475"
inkscape:cx="364.66507"
inkscape:cy="177.78685"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1295"
inkscape:window-height="1047"
inkscape:window-x="621"
inkscape:window-y="3"
inkscape:window-maximized="0"
inkscape:pagecheckerboard="0"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:showpageshadow="0"
inkscape:deskcolor="#525252" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-431.57434,-620.85803)">
<path
d="m 628.10824,737.56939 a 14.553263,14.553263 0 1 1 -19.6346,-21.44806 l 17.4293,-15.07994 -1.3219,12.2555 27.2135,-16.78564 -16.2414,23.8439 8.8083,2.29153 z"
id="path97219"
style="display:inline;fill:#35e3c1;fill-opacity:1;stroke-width:0.327349" />
<path
d="M 539.9357,788.1585 A 14.553263,14.553263 0 1 1 520.301,766.71082 l 17.4293,-15.07956 -1.3218,12.25512 25.8219,-14.16643 -14.8499,21.22469 8.8083,2.29153 z"
id="path97221"
style="display:inline;fill:#35e3c1;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 561.0519,870.18408 a 28.806974,28.806974 0 0 1 -39.5437,-41.9006 l 31.8363,-29.18476 -2.4443,12.22111 27.2629,-21.00889 -1.8803,14.61619 48.7985,-34.25688 -44.286,58.04258 18.0359,1.53487 z"
id="path97223"
style="display:inline;fill:#35e3c1;fill-opacity:1;stroke-width:0.327349" />
<circle
cx="541.28003"
cy="849.23401"
r="18.331522"
id="circle97227"
style="display:inline;fill:#569e8f;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 558.8718,854.40266 a 18.292567,18.292567 0 0 1 -4.7564,7.91849 5.2375775,5.2375775 0 1 1 4.7564,-7.91849 z"
id="path97229"
style="display:inline;fill:#569e8f;fill-opacity:1;stroke-width:0.327349" />
<circle
cx="536.04248"
cy="851.85272"
r="5.2375774"
id="circle97231"
style="display:inline;fill:#428476;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 558.8718,854.40266 a 18.292567,18.292567 0 0 1 -4.7564,7.91849 5.2375775,5.2375775 0 1 1 4.7564,-7.91849 z"
id="path97233"
style="display:inline;fill:#428476;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 538.6613,849.23378 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.4708 l 5.2376,-5.2373 a 2.6188562,2.6188562 0 0 1 3.7036,3.70356 l -5.2376,5.23767 a 2.6102776,2.6102776 0 0 1 -1.8518,0.76687 z"
id="path97235"
style="display:inline;fill:#95f9e2;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 556.9928,854.47145 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.47081 l 15.7127,-15.71263 a 2.6188562,2.6188562 0 1 1 3.7036,3.70356 l -15.7127,15.71263 a 2.6102776,2.6102776 0 0 1 -1.8518,0.76725 z"
id="path97237"
style="display:inline;fill:#95f9e2;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 541.2801,836.13998 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.4708 l 15.7127,-15.71263 a 2.6188562,2.6188562 0 1 1 3.7036,3.70356 l -15.7127,15.71263 a 2.6102776,2.6102776 0 0 1 -1.8518,0.76724 z"
id="path97239"
style="display:inline;fill:#95f9e2;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 599.7609,823.91359 a 2.6187887,2.6187887 0 0 1 -1.8849,-4.43603 l 16.7217,-17.34955 a 2.6187887,2.6187887 0 1 1 3.7707,3.63364 l -16.7216,17.34917 a 2.6102776,2.6102776 0 0 1 -1.8859,0.80277 z"
id="path97241"
style="display:inline;fill:#569e8f;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 587.3076,785.12619 a 2.6187887,2.6187887 0 0 1 -1.8165,-4.5052 l 9.5684,-9.21411 a 2.6189931,2.6189931 0 1 1 3.6336,3.77272 l -9.5687,9.21412 a 2.6096229,2.6096229 0 0 1 -1.8168,0.73247 z"
id="path97243"
style="display:inline;fill:#569e8f;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 563.0982,830.90231 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.4708 l 9.6073,-9.60718 a 2.6188562,2.6188562 0 1 1 3.7036,3.70356 l -9.607,9.60718 a 2.6115871,2.6115871 0 0 1 -1.8521,0.76724 z"
id="path97245"
style="display:inline;fill:#95f9e2;fill-opacity:1;stroke-width:0.327349" />
<circle
cx="529.64526"
cy="777.86823"
r="7.1980686"
id="circle97247"
style="display:inline;fill:#428476;fill-opacity:1;stroke-width:0.327349" />
<circle
cx="617.79968"
cy="727.27893"
r="6.3973732"
id="circle97249"
style="display:inline;fill:#569e8f;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 646.03324,686.83717 a 2.6187887,2.6187887 0 0 1 -1.678,-4.63068 l 3.1426,-2.61883 a 2.6189565,2.6189565 0 0 1 3.3533,4.02368 l -3.1425,2.61884 a 2.6092956,2.6092956 0 0 1 -1.6754,0.60699 z"
id="path97251"
style="display:inline;fill:#569e8f;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 664.8885,702.5498 a 2.6187887,2.6187887 0 0 1 -1.678,-4.63068 l 3.1425,-2.61845 a 2.6189565,2.6189565 0 0 1 3.3534,4.02368 l -3.1426,2.61884 a 2.6092956,2.6092956 0 0 1 -1.6753,0.60661 z"
id="path97253"
style="display:inline;fill:#35e3c1;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 654.41334,713.02514 a 2.6187887,2.6187887 0 0 1 -1.678,-4.63068 l 3.1426,-2.61883 a 2.6189565,2.6189565 0 0 1 3.3533,4.02368 l -3.1425,2.61884 a 2.6092956,2.6092956 0 0 1 -1.6754,0.60699 z"
id="path97255"
style="display:inline;fill:#569e8f;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 633.46304,697.31251 a 2.6187887,2.6187887 0 0 1 -1.6777,-4.63068 l 5.2376,-4.3646 a 2.6187887,2.6187887 0 1 1 3.3527,4.02331 l -5.2375,4.36498 a 2.6076589,2.6076589 0 0 1 -1.6751,0.60699 z"
id="path97257"
style="display:inline;fill:#35e3c1;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 670.126,681.5995 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.47042 l 2.6188,-2.61884 a 2.6188619,2.6188619 0 0 1 3.7037,3.70356 l -2.6188,2.61883 a 2.6102776,2.6102776 0 0 1 -1.8519,0.76687 z"
id="path97259"
style="display:inline;fill:#35e3c1;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 638.1753,786.38288 a 2.6187887,2.6187887 0 0 1 -1.8519,-4.4708 l 2.6188,-2.61884 a 2.6189962,2.6189962 0 0 1 3.7037,3.70394 l -2.6188,2.61883 a 2.6102776,2.6102776 0 0 1 -1.8518,0.76687 z"
id="path97261"
style="display:inline;fill:#569e8f;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 609.3686,765.43258 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.4708 l 2.6187,-2.61884 a 2.6189962,2.6189962 0 1 1 3.7037,3.70394 l -2.6188,2.61883 a 2.6102776,2.6102776 0 0 1 -1.8518,0.76687 z"
id="path97263"
style="display:inline;fill:#569e8f;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 659.65094,692.07484 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.4708 l 5.23756,-5.2373 a 2.6188562,2.6188562 0 0 1 3.7036,3.70356 l -5.2376,5.23767 a 2.6102776,2.6102776 0 0 1 -1.85176,0.76687 z"
id="path97265"
style="display:inline;fill:#569e8f;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 625.0813,799.47668 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.47043 l 5.2376,-5.23767 a 2.6188562,2.6188562 0 0 1 3.7036,3.70356 l -5.2376,5.23767 a 2.6102776,2.6102776 0 0 1 -1.8518,0.76687 z"
id="path97267"
style="display:inline;fill:#35e3c1;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 577.9431,754.95724 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.47042 l 2.6188,-2.61884 a 2.6188562,2.6188562 0 0 1 3.7036,3.70356 l -2.6188,2.61884 a 2.6102776,2.6102776 0 0 1 -1.8518,0.76686 z"
id="path97269"
style="display:inline;fill:#569e8f;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 564.8492,768.05142 a 2.6187887,2.6187887 0 0 1 -1.8518,-4.47081 l 5.2375,-5.23767 a 2.6189609,2.6189609 0 1 1 3.7036,3.70394 l -5.2375,5.23729 a 2.6102776,2.6102776 0 0 1 -1.8518,0.76725 z"
id="path97271"
style="display:inline;fill:#569e8f;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 582.309,734.00694 a 2.6187887,2.6187887 0 0 1 -1.7055,-4.60686 l 6.1106,-5.23767 a 2.6187887,2.6187887 0 1 1 3.4084,3.97644 l -6.1107,5.23767 a 2.6079862,2.6079862 0 0 1 -1.7028,0.63042 z"
id="path97273"
style="display:inline;fill:#569e8f;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 570.0868,744.48228 a 2.6187887,2.6187887 0 0 1 -1.7056,-4.60724 l 5.2376,-4.4897 a 2.6193578,2.6193578 0 0 1 3.4097,3.97719 l -5.2376,4.48933 a 2.6079862,2.6079862 0 0 1 -1.7041,0.63042 z"
id="path97275"
style="display:inline;fill:#35e3c1;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 555.8713,736.62578 a 2.6187887,2.6187887 0 0 1 -1.7251,-4.58986 l 8.9785,-7.85613 a 2.618876,2.618876 0 1 1 3.449,3.94167 l -8.9789,7.85651 a 2.6096229,2.6096229 0 0 1 -1.7235,0.64781 z"
id="path97277"
style="display:inline;fill:#569e8f;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 543.8989,747.10112 a 2.6187887,2.6187887 0 0 1 -1.7255,-4.58986 l 5.9862,-5.23767 a 2.618807,2.618807 0 0 1 3.4486,3.94205 l -5.9859,5.23767 a 2.6079862,2.6079862 0 0 1 -1.7234,0.64781 z"
id="path97279"
style="display:inline;fill:#569e8f;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 647.4873,752.33841 a 2.6187887,2.6187887 0 0 1 -1.7526,-4.56492 l 11.6389,-10.47533 a 2.6187887,2.6187887 0 1 1 3.5026,3.89291 l -11.6392,10.47496 a 2.6083136,2.6083136 0 0 1 -1.7497,0.67238 z"
id="path97281"
style="display:inline;fill:#35e3c1;fill-opacity:1;stroke-width:0.327349" />
<path
d="m 632.9377,765.43258 a 2.6187887,2.6187887 0 0 1 -1.753,-4.56529 l 5.8196,-5.23767 a 2.6187887,2.6187887 0 1 1 3.5027,3.89291 l -5.8193,5.23767 a 2.6096229,2.6096229 0 0 1 -1.75,0.67238 z"
id="path97283"
style="display:inline;fill:#569e8f;fill-opacity:1;stroke-width:0.327349" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -0,0 +1,249 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="50.609062"
height="246.19336"
viewBox="0 0 50.609068 246.19337"
version="1.1"
id="svg8"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
sodipodi:docname="rocket_smoke2.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs2">
<linearGradient
inkscape:collect="always"
id="linearGradient939">
<stop
style="stop-color:#eff0f1;stop-opacity:1;"
offset="0"
id="stop935" />
<stop
style="stop-color:#eff0f1;stop-opacity:0;"
offset="1"
id="stop937" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient939"
id="linearGradient941"
x1="188.87804"
y1="716.58759"
x2="188.87804"
y2="855.77551"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#525252"
bordercolor="#404040"
borderopacity="1"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="0.49497475"
inkscape:cx="374.76659"
inkscape:cy="422.24376"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1914"
inkscape:window-height="1047"
inkscape:window-x="533"
inkscape:window-y="183"
inkscape:window-maximized="0"
inkscape:pagecheckerboard="0"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
height="2160px"
inkscape:showpageshadow="2"
inkscape:deskcolor="#525252" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-149.54261,-610.36914)">
<path
id="path250403"
style="display:inline;fill:url(#linearGradient941);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.46489;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke"
d="m 174.05576,714.57812 c -7.95027,0 -12.70931,39.06501 -15.53515,87.92774 l 6.625,-11.61328 5.03515,65.66992 10.09571,-79.48828 8.60156,12.38086 C 185.96244,746.78153 181.304,714.5918 174.05576,714.5918 Z" />
<g
id="g250475"
transform="matrix(-0.13168343,0,0,0.13168343,404.83556,757.91908)"
style="display:inline">
<path
style="fill:#1a1c1b;fill-opacity:1"
d="m 1846.0893,-550.96782 c 0.078,3.94424 0.099,7.8998 0.111,11.86596 -0.011,6.81722 -0.1209,13.64504 -0.3642,20.42902 12.9267,17.16926 -24.5401,147.31085 -24.5401,147.31085 -2.011,6.38659 -4.1224,12.6954 -6.3647,18.91581 -0.1881,0.54165 -0.3974,1.06066 -0.5854,1.60231 26.5774,21.98515 55.6478,30.97769 71.2212,110.31141 0.3981,0.26516 1.4587,0.79549 1.4587,0.79549 1.3478,0.64064 2.8504,0.9949 4.4746,1.00551 4.8168,0 8.8721,-3.21521 10.1866,-7.62402 0,0 0.21,-0.78419 0.2319,-0.93904 5.1272,-20.55065 7.8892,-112.52112 7.8885,-135.23693 0,-68.19196 -24.8817,-128.9593 -63.7181,-168.43637 z"
id="path250405"
sodipodi:nodetypes="ccccccccccccc" />
<path
id="path250409"
style="opacity:1;fill:#eff0f1;fill-opacity:1"
d="m 1752.772,-1120.4892 c -44.0463,47.7284 -104.1176,101.2739 -136.0025,150.51654 -34.0677,49.69728 -62.4062,118.71236 -62.4062,210.93946 0,56.67085 35.0815,153.37542 65.9492,250.58593 -20.7749,35.77189 -33.0703,80.0034 -33.0703,127.91407 -7e-4,22.71581 2.7615,114.68567 7.8887,135.23632 0.022,0.15485 0.2304,0.93946 0.2304,0.93946 1.3145,4.40881 5.3707,7.625 10.1875,7.625 1.6242,-0.0106 8.9132,-0.89646 10.261,-1.5371 0,0 1.0609,-0.52976 1.459,-0.79492 11.9395,-60.82187 26.0274,-79.75628 46.6277,-95.44142 3.8365,17.81576 19.7188,30.88477 38.1797,30.88477 h 38.2011 z"
sodipodi:nodetypes="ccsccccccccscc" />
<g
id="g250417"
transform="rotate(-45,1722.222,787.87678)">
<path
d="m 2410.4087,18.99406 a 88.000921,88.000921 0 0 1 127.9237,120.88083 l -91.9962,94.5719 5.3193,-37.69998 -79.4767,68.83767 3.1807,-44.90544 -142.8421,113.0054 124.9235,-184.75996 -55.275,-1.52884 z"
id="path250411"
style="fill:#fbb540" />
<path
d="m 2443.6657,10.65886 a 69.979282,69.979282 0 0 1 101.7263,96.12574 l -73.1564,75.2046 4.23,-29.97943 -63.2008,54.74045 2.5294,-35.70929 -113.5896,89.86312 99.3405,-146.92312 -43.9553,-1.21575 z"
id="path250413"
style="fill:#ffcc00;fill-opacity:1;stroke-width:0.795211" />
<path
style="fill:#ffdd55;stroke-width:0.658127"
d="m 2561.492,69.78156 c -1.5795,3.02738 -3.4222,5.98901 -5.3967,8.75311 -2.7641,3.88293 -5.7915,7.43682 -9.1479,10.793271 -15.466,15.465979 -59.3968,40.233089 -81.2138,39.873479 -0.06,-4.49525 0.3595,-8.93066 1.0188,-13.18616 -11.5078,6.59304 -24.8737,10.30915 -39.3184,10.06941 -0.1798,-14.44474 3.5363,-27.810589 10.0693,-39.31853 -4.2555,0.6593 -8.6908,1.07891 -13.186,0.95903 -0.3596,-26.4321 29.8342,-74.01598 51.5523,-89.482 2.7642,-1.97434 5.7258,-3.81711 8.7532,-5.39662 -0.066,0.3291 -0.1317,0.72391 -0.1975,1.05302 7.5027,0.98717 14.8737,2.96156 21.9815,5.92313043 4.6727,1.90858997 9.1479,4.21198997 13.4916,6.97615997 5.4624,3.4222296 10.5958,7.5025996 15.3343,12.2411296 4.7385,4.73854 8.7531,9.87194 12.1754,15.33436 2.7641,4.34367 5.1334,8.81892 7.0419,13.49158 2.9616,7.10779 4.936,14.4788 5.9231,21.98144 0.4607,0.0658 0.7898,3e-5 1.1189,-0.0658 z"
id="path250415"
sodipodi:nodetypes="ccsccccccccccscccc" />
</g>
<path
style="fill:#1a1c1b;fill-opacity:1"
d="m 1662.96,-550.96924 c -0.078,3.94424 -0.099,7.8998 -0.111,11.86596 0.011,6.81722 0.1209,13.64504 0.3642,20.42902 -12.9267,17.16926 24.5401,147.31085 24.5401,147.31085 2.011,6.38659 4.1224,12.6954 6.3647,18.91581 0.1881,0.54165 0.3974,1.06066 0.5854,1.60231 -26.5774,21.98515 -55.6478,30.97769 -71.2212,110.31141 -0.3981,0.26516 -1.4587,0.79549 -1.4587,0.79549 -1.3478,0.64064 -2.8504,0.9949 -4.4746,1.00551 -4.8168,0 -8.8721,-3.21521 -10.1866,-7.62402 0,0 -0.21,-0.78419 -0.2319,-0.93904 -5.1272,-20.55065 -7.8892,-112.52112 -7.8885,-135.23693 0,-68.19196 24.8817,-128.9593 63.7181,-168.43637 z"
id="path250419"
sodipodi:nodetypes="ccccccccccccc" />
<path
style="fill:#ffdd55;stroke-width:0.658127"
d="m 1807.3005,-314.23094 c 1.0238,3.25755 1.815,6.65473 2.3734,10.00536 0.7911,4.7002 1.1634,9.35386 1.1634,14.10059 0,21.8722 -8.5162,43.69785 -25.7347,60.35795 -3.5368,-3.4437 -6.6548,-7.21317 -9.447,-11.02916 -3.816,14.05404 -11.3084,27.31697 -22.7098,38.34614 -11.3549,-11.07571 -18.8473,-24.33863 -22.7099,-38.34614 -2.7922,3.81599 -5.9101,7.58546 -9.4934,10.98263 -20.8019,-20.24342 -28.9923,-48.16538 -24.5714,-74.45854 0.5585,-3.35064 1.3496,-6.74781 2.3734,-10.00537 0.1862,0.27922 0.4188,0.60497 0.605,0.8842 6.0032,-4.60713 12.6114,-8.42312 19.7315,-11.35494 4.6537,-1.95454 9.4469,-3.49024 14.4729,-4.60711 6.2824,-1.44264 12.7975,-2.18723 19.4988,-2.18723 6.7013,0 13.1699,0.79113 19.4523,2.23376 5.026,1.11688 9.8658,2.60604 14.5194,4.56058 7.1201,2.93182 13.7283,6.74781 19.7315,11.35494 0.3723,-0.27923 0.5585,-0.55845 0.7446,-0.83766 z"
id="path250421" />
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.658127"
d="m 1786.964,-324.70168 c 6.0498,10.4242 9.3074,22.24449 9.3074,34.53015 0,13.49561 -3.9091,26.43278 -11.1223,37.55502 l -15.5898,-21.26722 -8.0042,29.22498 c -1.815,6.84088 -4.7468,13.30947 -8.6093,19.31269 -3.816,-5.95669 -6.7013,-12.47181 -8.6093,-19.31269 l -8.0043,-29.22498 -15.5897,21.26722 c -7.2132,-11.12224 -11.1223,-24.05941 -11.1223,-37.55502 0,-12.28566 3.2576,-24.10595 9.3073,-34.53015 4.6537,-1.95453 9.447,-3.49024 14.4729,-4.60712 6.2825,-1.44263 12.7976,-2.18722 19.4989,-2.18722 6.7012,0 13.1698,0.79113 19.4522,2.23376 5.1191,1.11687 9.9589,2.60605 14.6125,4.56058 z"
id="path250423" />
<path
style="fill:#6b9b89;fill-opacity:1;stroke-width:1.22212"
d="m 1757.8035,-949.18846 c -3.0932,-1.86129 -6.9698,-1.86129 -10.063,0 -4.1821,2.51146 -111.3675,56.64763 -111.3675,198.5711 0,57.30534 22.0097,279.07118 39.4628,412.9313 2.5298,19.42073 19.191,34.06662 38.7352,34.06662 h 76.4021 c 19.5441,0 36.2053,-14.64589 38.7351,-34.06662 17.4531,-133.86012 39.4628,-355.62596 39.4628,-412.9313 0,-141.92347 -107.1854,-196.06086 -111.3675,-198.5711 z"
id="path250425"
sodipodi:nodetypes="ccscsscsc" />
<path
id="path250427"
style="opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:7.55906;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke markers fill"
d="m 1752.7723,-976.92188 v 673.30274 h 38.2012 c 19.5441,0 36.2045,-14.64568 38.7343,-34.06641 17.4531,-133.86012 39.4629,-355.6263 39.4629,-412.93164 0,-57.74221 -17.7429,-100.95157 -39.0722,-132.0664 -12.283,-19.09437 -26.1497,-37.37853 -41.5723,-54.51368 z" />
<path
style="fill:#53dcff;fill-opacity:1;stroke-width:0.802037"
d="m 1779.5567,-616.10815 c -6.4509,6.45104 -15.0287,9.99501 -24.1384,9.99558 -9.1183,-0.009 -17.6966,-3.55362 -24.1476,-10.00465 -6.4511,-6.45105 -9.9956,-15.02938 -10.0047,-24.14761 0,-9.10916 3.5621,-17.70509 9.9956,-24.13855 6.451,-6.45104 15.0288,-9.995 24.1561,-10.01315 18.8314,0.009 34.1523,15.32938 34.1523,34.15226 -0.018,9.12675 -3.5621,17.70507 -9.9956,24.13854 -0.018,0.0175 -0.018,0.0175 -0.018,0.0175 z"
id="path250429" />
<g
id="g250435"
transform="matrix(1.2221209,0,0,1.2221209,1439.9078,-817.55053)"
style="fill:#24282c;fill-opacity:1">
<g
id="g250433"
style="fill:#24282c;fill-opacity:1">
<path
style="fill:#24282c;fill-opacity:1"
d="m 256.001,451.35877 c -4.422,0 -8,-3.582 -8,-8 V 249.57205 c 0,-4.418 3.578,-8 8,-8 4.422,0 8,3.582 8,8 v 193.78672 c 0,4.418 -3.578,8 -8,8 z"
id="path250431"
sodipodi:nodetypes="sssssss" />
</g>
</g>
<path
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:0.802035"
d="m 1762.1431,-674.93939 c -11.4043,0.009 -22.1359,4.44852 -30.1994,12.5119 -8.0463,8.04637 -12.4852,18.77693 -12.4943,30.18182 0.011,11.38673 4.4394,22.12695 12.4943,30.18183 8.064,8.06394 18.7951,12.48638 30.1909,12.5034 11.4038,-0.009 22.127,-4.45761 30.1728,-12.5034 8.0639,-8.06396 12.5124,-18.78603 12.521,-30.19033 5e-4,-23.53626 -19.1485,-42.68522 -42.6853,-42.68522 z m 25.6011,42.68522 c -0.011,7.07998 -2.8622,13.47772 -7.5059,18.12133 -4.6254,4.62548 -11.0413,7.49683 -18.1031,7.48775 -14.1429,0 -25.6097,-11.46669 -25.6097,-25.60966 -0.011,-7.0624 2.8709,-13.46921 7.4962,-18.09469 4.6437,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
id="path250437" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.802035"
d="m 1755.4268,-682.94948 c -11.4044,0.009 -22.1361,4.44853 -30.1994,12.51191 -8.0464,8.04637 -12.4853,18.77693 -12.4944,30.18182 0.011,11.38673 4.4395,22.12695 12.4944,30.18182 8.0639,8.06395 18.795,12.48639 30.1909,12.5034 11.4037,-0.009 22.1269,-4.4576 30.1727,-12.5034 8.0639,-8.06395 12.5125,-18.78602 12.521,-30.19032 6e-4,-23.53626 -19.1484,-42.68523 -42.6852,-42.68523 z m 25.6011,42.68523 c -0.011,7.07998 -2.8623,13.47771 -7.5059,18.12133 -4.6255,4.62548 -11.0414,7.49683 -18.1032,7.48775 -14.143,0 -25.6096,-11.46669 -25.6096,-25.60966 -0.011,-7.06241 2.8707,-13.46921 7.4962,-18.09469 4.6436,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
id="path250439" />
<path
style="fill:#53dcff;fill-opacity:1;stroke-width:1.38175"
d="m 1795.5329,-776.35953 c -11.454,10.78389 -26.6678,16.72333 -42.8584,16.70911 -16.1745,9.4e-4 -31.4216,-5.93944 -42.8604,-16.70911 -11.4539,-10.78389 -17.7625,-25.1381 -17.7776,-40.38154 0,-15.22732 6.2934,-29.5673 17.7473,-40.35119 11.455,-10.78485 26.685,-16.7091 42.8907,-16.73946 33.4345,0.015 60.6379,25.62729 60.6379,57.09065 -0.016,15.27284 -6.3246,29.59669 -17.7795,40.38154 z"
id="path250441" />
<path
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:1.38175"
d="m 1706.6505,-853.77411 c -14.3177,13.48011 -22.1839,31.37331 -22.201,50.43924 -0.016,19.06307 7.8824,36.98851 22.2001,50.46863 14.3025,13.46588 33.3235,20.8871 53.5893,20.8871 20.2496,-0.015 39.2717,-7.40701 53.5893,-20.8871 14.3187,-13.48106 22.2011,-31.41976 22.2171,-50.48476 0,-39.34342 -34.0013,-71.35571 -75.7893,-71.35571 -20.2496,0.015 -39.2868,7.45156 -53.6055,20.9326 z m 110.8518,50.42311 c 0,14.92369 -6.4012,28.37408 -16.7842,38.14968 -10.3424,9.7374 -24.6678,15.80116 -40.4783,15.76298 -31.6258,0 -57.2636,-24.13816 -57.2625,-53.91266 -0.02,-14.86874 6.419,-28.35496 16.7615,-38.09234 10.383,-9.77562 24.6691,-15.80238 40.501,-15.8203 31.622,-9.4e-4 57.2613,24.13812 57.2625,53.91264 z"
id="path250443"
sodipodi:nodetypes="scscsccscsccscc" />
<path
style="fill:#f2f2f2;fill-opacity:1;stroke-width:1.45856"
d="m 1696.0983,-869.96743 c -15.1136,14.22941 -23.417,33.11723 -23.4351,53.24295 -0.017,20.1227 8.3205,39.04455 23.4341,53.27397 15.0976,14.21439 35.176,22.04812 56.5681,22.04812 21.3752,-0.0158 41.4547,-7.81872 56.5682,-22.04812 15.1146,-14.23042 23.4351,-33.16625 23.4522,-53.29099 0,-41.53037 -35.8914,-75.32209 -80.0022,-75.32209 -21.3753,0.0158 -41.4707,7.86577 -56.5853,22.09616 z m 115.3426,53.22593 c 0,15.31768 -6.5704,29.12317 -17.2276,39.15686 -10.6155,9.99448 -25.319,16.21833 -41.5468,16.17914 -32.4607,0 -58.7756,-24.77541 -58.7742,-55.336 -0.02,-15.26129 6.5885,-29.10357 17.2039,-39.09802 10.6571,-10.0337 25.3203,-16.21958 41.5703,-16.23795 32.4569,-9.4e-4 58.7729,24.77537 58.7744,55.33597 z"
id="path250445"
sodipodi:nodetypes="scscsccscsccscc" />
<path
style="fill:#f2705b;fill-opacity:1;stroke-width:1.10803"
d="m 1837.2865,-871.1305 h -169.0289 c 13.9742,-23.28887 30.1784,-45.42157 48.7612,-66.06774 l 35.7532,-39.72324 35.7533,39.72324 c 18.5084,20.56359 34.7869,42.77887 48.7612,66.06774 z"
id="path250447" />
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.658127"
d="m 1786.964,-324.70168 c 6.0498,10.4242 9.3074,22.24449 9.3074,34.53015 0,13.49561 -3.9091,26.43278 -11.1223,37.55502 l -15.5898,-21.26722 -8.0042,29.22498 c -1.815,6.84088 -4.7468,13.30947 -8.6093,19.31269 -3.816,-5.95669 -6.7013,-12.47181 -8.6093,-19.31269 l -8.0043,-29.22498 -15.5897,21.26722 c -7.2132,-11.12224 -11.1223,-24.05941 -11.1223,-37.55502 0,-12.28566 3.2576,-24.10595 9.3073,-34.53015 4.6537,-1.95453 9.447,-3.49024 14.4729,-4.60712 6.2825,-1.44263 12.7976,-2.18722 19.4989,-2.18722 6.7012,0 13.1698,0.79113 19.4522,2.23376 5.1191,1.11687 9.9589,2.60605 14.6125,4.56058 z"
id="path250449" />
<path
style="fill:#454948;fill-opacity:1;stroke-width:1.22212"
d="m 1760.8084,-1076.1934 c -4.9405,-2.9729 -11.1323,-2.9729 -16.0728,0 -6.6798,4.0113 -177.8786,90.4788 -177.8786,317.16201 0,91.52932 91.5257,287.48521 108.9788,421.34533 2.5298,19.42073 19.191,34.06662 38.7352,34.06662 h 76.4021 c 19.5441,0 36.2053,-14.64589 38.7351,-34.06662 17.4531,-133.86012 108.9788,-329.81601 108.9788,-421.34533 0,-226.68321 -171.1988,-313.15261 -177.8786,-317.16201 z"
id="path250451"
sodipodi:nodetypes="ccscsscsc" />
<path
id="path250453"
style="opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:7.55906;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke markers fill"
d="m 1752.7725,-1120.4898 -2e-4,816.87066 h 38.2012 c 19.5441,0 36.2045,-14.64568 38.7343,-34.06641 17.4531,-133.86012 108.9787,-329.81625 108.9787,-421.34557 0,-92.2271 -28.3393,-161.24201 -62.407,-210.93929 -19.6186,-30.49789 -41.767,-59.70159 -66.4001,-87.07039 z"
sodipodi:nodetypes="ccscscsc" />
<path
style="fill:#53dcff;fill-opacity:1;stroke-width:0.802037"
d="m 1779.5567,-616.10815 c -6.4509,6.45104 -15.0287,9.99501 -24.1384,9.99558 -9.1183,-0.009 -17.6966,-3.55362 -24.1476,-10.00465 -6.4511,-6.45105 -9.9956,-15.02938 -10.0047,-24.14761 0,-9.10916 3.5621,-17.70509 9.9956,-24.13855 6.451,-6.45104 15.0288,-9.995 24.1561,-10.01315 18.8314,0.009 34.1523,15.32938 34.1523,34.15226 -0.018,9.12675 -3.5621,17.70507 -9.9956,24.13854 -0.018,0.0175 -0.018,0.0175 -0.018,0.0175 z"
id="path250455" />
<g
id="g250461"
transform="matrix(1.2221209,0,0,1.2221209,1439.9078,-817.55053)"
style="fill:#1a1c1b;fill-opacity:1">
<g
id="g250459"
style="fill:#1a1c1b;fill-opacity:1">
<path
style="fill:#1a1c1b;fill-opacity:1"
d="m 256.001,451.35877 c -4.422,0 -8,-3.582 -8,-8 V 249.57205 c 0,-4.418 3.578,-8 8,-8 4.422,0 8,3.582 8,8 v 193.78672 c 0,4.418 -3.578,8 -8,8 z"
id="path250457"
sodipodi:nodetypes="sssssss" />
</g>
</g>
<path
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:0.802035"
d="m 1762.1431,-674.93939 c -11.4043,0.009 -22.1359,4.44852 -30.1994,12.5119 -8.0463,8.04637 -12.4852,18.77693 -12.4943,30.18182 0.011,11.38673 4.4394,22.12695 12.4943,30.18183 8.064,8.06394 18.7951,12.48638 30.1909,12.5034 11.4038,-0.009 22.127,-4.45761 30.1728,-12.5034 8.0639,-8.06396 12.5124,-18.78603 12.521,-30.19033 5e-4,-23.53626 -19.1485,-42.68522 -42.6853,-42.68522 z m 25.6011,42.68522 c -0.011,7.07998 -2.8622,13.47772 -7.5059,18.12133 -4.6254,4.62548 -11.0413,7.49683 -18.1031,7.48775 -14.1429,0 -25.6097,-11.46669 -25.6097,-25.60966 -0.011,-7.0624 2.8709,-13.46921 7.4962,-18.09469 4.6437,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
id="path250463" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.802035"
d="m 1755.4268,-682.94948 c -11.4044,0.009 -22.1361,4.44853 -30.1994,12.51191 -8.0464,8.04637 -12.4853,18.77693 -12.4944,30.18182 0.011,11.38673 4.4395,22.12695 12.4944,30.18182 8.0639,8.06395 18.795,12.48639 30.1909,12.5034 11.4037,-0.009 22.1269,-4.4576 30.1727,-12.5034 8.0639,-8.06395 12.5125,-18.78602 12.521,-30.19032 6e-4,-23.53626 -19.1484,-42.68523 -42.6852,-42.68523 z m 25.6011,42.68523 c -0.011,7.07998 -2.8623,13.47771 -7.5059,18.12133 -4.6255,4.62548 -11.0414,7.49683 -18.1032,7.48775 -14.143,0 -25.6096,-11.46669 -25.6096,-25.60966 -0.011,-7.06241 2.8707,-13.46921 7.4962,-18.09469 4.6436,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
id="path250465" />
<path
style="fill:#53dcff;fill-opacity:1;stroke-width:1.38175"
d="m 1795.5329,-776.35953 c -11.454,10.78389 -26.6678,16.72333 -42.8584,16.70911 -16.1745,9.4e-4 -31.4216,-5.93944 -42.8604,-16.70911 -11.4539,-10.78389 -17.7625,-25.1381 -17.7776,-40.38154 0,-15.22732 6.2934,-29.5673 17.7473,-40.35119 11.455,-10.78485 26.685,-16.7091 42.8907,-16.73946 33.4345,0.015 60.6379,25.62729 60.6379,57.09065 -0.016,15.27284 -6.3246,29.59669 -17.7795,40.38154 z"
id="path250467" />
<path
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:1.38175"
d="m 1706.6505,-853.77411 c -14.3177,13.48011 -22.1839,31.37331 -22.201,50.43924 -0.016,19.06307 7.8824,36.98851 22.2001,50.46863 14.3025,13.46588 33.3235,20.8871 53.5893,20.8871 20.2496,-0.015 39.2717,-7.40701 53.5893,-20.8871 14.3187,-13.48106 22.2011,-31.41976 22.2171,-50.48476 0,-39.34342 -34.0013,-71.35571 -75.7893,-71.35571 -20.2496,0.015 -39.2868,7.45156 -53.6055,20.9326 z m 110.8518,50.42311 c 0,14.92369 -6.4012,28.37408 -16.7842,38.14968 -10.3424,9.7374 -24.6678,15.80116 -40.4783,15.76298 -31.6258,0 -57.2636,-24.13816 -57.2625,-53.91266 -0.02,-14.86874 6.419,-28.35496 16.7615,-38.09234 10.383,-9.77562 24.6691,-15.80238 40.501,-15.8203 31.622,-9.4e-4 57.2613,24.13812 57.2625,53.91264 z"
id="path250469"
sodipodi:nodetypes="scscsccscsccscc" />
<path
style="fill:#f2f2f2;fill-opacity:1;stroke-width:1.45856"
d="m 1696.0983,-869.96743 c -15.1136,14.22941 -23.417,33.11723 -23.4351,53.24295 -0.017,20.1227 8.3205,39.04455 23.4341,53.27397 15.0976,14.21439 35.176,22.04812 56.5681,22.04812 21.3752,-0.0158 41.4547,-7.81872 56.5682,-22.04812 15.1146,-14.23042 23.4351,-33.16625 23.4522,-53.29099 0,-41.53037 -35.8914,-75.32209 -80.0022,-75.32209 -21.3753,0.0158 -41.4707,7.86577 -56.5853,22.09616 z m 115.3426,53.22593 c 0,15.31768 -6.5704,29.12317 -17.2276,39.15686 -10.6155,9.99448 -25.319,16.21833 -41.5468,16.17914 -32.4607,0 -58.7756,-24.77541 -58.7742,-55.336 -0.02,-15.26129 6.5885,-29.10357 17.2039,-39.09802 10.6571,-10.0337 25.3203,-16.21958 41.5703,-16.23795 32.4569,-9.4e-4 58.7729,24.77537 58.7744,55.33597 z"
id="path250471"
sodipodi:nodetypes="scscsccscsccscc" />
<path
style="fill:#f2705b;fill-opacity:1;stroke-width:1.10803"
d="m 1887.7604,-951.51756 c -91.5372,-11.38291 -181.4702,-10.94666 -269.9766,0 22.3199,-37.19749 48.2016,-72.54824 77.8824,-105.52484 l 57.1058,-63.4468 57.1059,63.4468 c 29.5621,32.8446 55.5624,68.32735 77.8825,105.52484 z"
id="path250473"
sodipodi:nodetypes="ccscsc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,250 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="50.609062"
height="246.19336"
viewBox="0 0 50.609068 246.19337"
version="1.1"
id="svg8"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
sodipodi:docname="rocket_smoke2b.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs2">
<linearGradient
inkscape:collect="always"
id="linearGradient939">
<stop
style="stop-color:#eff0f1;stop-opacity:1;"
offset="0"
id="stop935" />
<stop
style="stop-color:#eff0f1;stop-opacity:0;"
offset="1"
id="stop937" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient939"
id="linearGradient941"
x1="188.87804"
y1="716.58759"
x2="188.87804"
y2="855.77551"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,347.39864,0)" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#525252"
bordercolor="#404040"
borderopacity="1"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="66.25"
inkscape:cy="145"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1914"
inkscape:window-height="1047"
inkscape:window-x="646"
inkscape:window-y="3"
inkscape:window-maximized="0"
inkscape:pagecheckerboard="0"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
height="2160px"
inkscape:showpageshadow="2"
inkscape:deskcolor="#525252" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-149.54261,-610.36914)">
<path
id="path250403"
style="display:inline;fill:url(#linearGradient941);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.46489;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke"
d="m 173.34288,714.57812 c 7.95027,0 12.70931,39.06501 15.53515,87.92774 l -6.625,-11.61328 -5.03515,65.66992 -10.09571,-79.48828 -8.60156,12.38086 c 2.91559,-42.67355 7.57403,-74.86328 14.82227,-74.86328 z" />
<g
id="g250475"
transform="matrix(-0.13168343,0,0,0.13168343,404.83556,757.91908)"
style="display:inline">
<path
style="fill:#1a1c1b;fill-opacity:1"
d="m 1846.0893,-550.96782 c 0.078,3.94424 0.099,7.8998 0.111,11.86596 -0.011,6.81722 -0.1209,13.64504 -0.3642,20.42902 12.9267,17.16926 -24.5401,147.31085 -24.5401,147.31085 -2.011,6.38659 -4.1224,12.6954 -6.3647,18.91581 -0.1881,0.54165 -0.3974,1.06066 -0.5854,1.60231 26.5774,21.98515 55.6478,30.97769 71.2212,110.31141 0.3981,0.26516 1.4587,0.79549 1.4587,0.79549 1.3478,0.64064 2.8504,0.9949 4.4746,1.00551 4.8168,0 8.8721,-3.21521 10.1866,-7.62402 0,0 0.21,-0.78419 0.2319,-0.93904 5.1272,-20.55065 7.8892,-112.52112 7.8885,-135.23693 0,-68.19196 -24.8817,-128.9593 -63.7181,-168.43637 z"
id="path250405"
sodipodi:nodetypes="ccccccccccccc" />
<path
id="path250409"
style="opacity:1;fill:#eff0f1;fill-opacity:1"
d="m 1752.772,-1120.4892 c -44.0463,47.7284 -104.1176,101.2739 -136.0025,150.51654 -34.0677,49.69728 -62.4062,118.71236 -62.4062,210.93946 0,56.67085 35.0815,153.37542 65.9492,250.58593 -20.7749,35.77189 -33.0703,80.0034 -33.0703,127.91407 -7e-4,22.71581 2.7615,114.68567 7.8887,135.23632 0.022,0.15485 0.2304,0.93946 0.2304,0.93946 1.3145,4.40881 5.3707,7.625 10.1875,7.625 1.6242,-0.0106 8.9132,-0.89646 10.261,-1.5371 0,0 1.0609,-0.52976 1.459,-0.79492 11.9395,-60.82187 26.0274,-79.75628 46.6277,-95.44142 3.8365,17.81576 19.7188,30.88477 38.1797,30.88477 h 38.2011 z"
sodipodi:nodetypes="ccsccccccccscc" />
<g
id="g250417"
transform="rotate(-45,1722.222,787.87678)">
<path
d="m 2410.4087,18.99406 a 88.000921,88.000921 0 0 1 127.9237,120.88083 l -91.9962,94.5719 5.3193,-37.69998 -79.4767,68.83767 3.1807,-44.90544 -142.8421,113.0054 124.9235,-184.75996 -55.275,-1.52884 z"
id="path250411"
style="fill:#fbb540" />
<path
d="m 2443.6657,10.65886 a 69.979282,69.979282 0 0 1 101.7263,96.12574 l -73.1564,75.2046 4.23,-29.97943 -63.2008,54.74045 2.5294,-35.70929 -113.5896,89.86312 99.3405,-146.92312 -43.9553,-1.21575 z"
id="path250413"
style="fill:#ffcc00;fill-opacity:1;stroke-width:0.795211" />
<path
style="fill:#ffdd55;stroke-width:0.658127"
d="m 2561.492,69.78156 c -1.5795,3.02738 -3.4222,5.98901 -5.3967,8.75311 -2.7641,3.88293 -5.7915,7.43682 -9.1479,10.793271 -15.466,15.465979 -59.3968,40.233089 -81.2138,39.873479 -0.06,-4.49525 0.3595,-8.93066 1.0188,-13.18616 -11.5078,6.59304 -24.8737,10.30915 -39.3184,10.06941 -0.1798,-14.44474 3.5363,-27.810589 10.0693,-39.31853 -4.2555,0.6593 -8.6908,1.07891 -13.186,0.95903 -0.3596,-26.4321 29.8342,-74.01598 51.5523,-89.482 2.7642,-1.97434 5.7258,-3.81711 8.7532,-5.39662 -0.066,0.3291 -0.1317,0.72391 -0.1975,1.05302 7.5027,0.98717 14.8737,2.96156 21.9815,5.92313043 4.6727,1.90858997 9.1479,4.21198997 13.4916,6.97615997 5.4624,3.4222296 10.5958,7.5025996 15.3343,12.2411296 4.7385,4.73854 8.7531,9.87194 12.1754,15.33436 2.7641,4.34367 5.1334,8.81892 7.0419,13.49158 2.9616,7.10779 4.936,14.4788 5.9231,21.98144 0.4607,0.0658 0.7898,3e-5 1.1189,-0.0658 z"
id="path250415"
sodipodi:nodetypes="ccsccccccccccscccc" />
</g>
<path
style="fill:#1a1c1b;fill-opacity:1"
d="m 1662.96,-550.96924 c -0.078,3.94424 -0.099,7.8998 -0.111,11.86596 0.011,6.81722 0.1209,13.64504 0.3642,20.42902 -12.9267,17.16926 24.5401,147.31085 24.5401,147.31085 2.011,6.38659 4.1224,12.6954 6.3647,18.91581 0.1881,0.54165 0.3974,1.06066 0.5854,1.60231 -26.5774,21.98515 -55.6478,30.97769 -71.2212,110.31141 -0.3981,0.26516 -1.4587,0.79549 -1.4587,0.79549 -1.3478,0.64064 -2.8504,0.9949 -4.4746,1.00551 -4.8168,0 -8.8721,-3.21521 -10.1866,-7.62402 0,0 -0.21,-0.78419 -0.2319,-0.93904 -5.1272,-20.55065 -7.8892,-112.52112 -7.8885,-135.23693 0,-68.19196 24.8817,-128.9593 63.7181,-168.43637 z"
id="path250419"
sodipodi:nodetypes="ccccccccccccc" />
<path
style="fill:#ffdd55;stroke-width:0.658127"
d="m 1807.3005,-314.23094 c 1.0238,3.25755 1.815,6.65473 2.3734,10.00536 0.7911,4.7002 1.1634,9.35386 1.1634,14.10059 0,21.8722 -8.5162,43.69785 -25.7347,60.35795 -3.5368,-3.4437 -6.6548,-7.21317 -9.447,-11.02916 -3.816,14.05404 -11.3084,27.31697 -22.7098,38.34614 -11.3549,-11.07571 -18.8473,-24.33863 -22.7099,-38.34614 -2.7922,3.81599 -5.9101,7.58546 -9.4934,10.98263 -20.8019,-20.24342 -28.9923,-48.16538 -24.5714,-74.45854 0.5585,-3.35064 1.3496,-6.74781 2.3734,-10.00537 0.1862,0.27922 0.4188,0.60497 0.605,0.8842 6.0032,-4.60713 12.6114,-8.42312 19.7315,-11.35494 4.6537,-1.95454 9.4469,-3.49024 14.4729,-4.60711 6.2824,-1.44264 12.7975,-2.18723 19.4988,-2.18723 6.7013,0 13.1699,0.79113 19.4523,2.23376 5.026,1.11688 9.8658,2.60604 14.5194,4.56058 7.1201,2.93182 13.7283,6.74781 19.7315,11.35494 0.3723,-0.27923 0.5585,-0.55845 0.7446,-0.83766 z"
id="path250421" />
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.658127"
d="m 1786.964,-324.70168 c 6.0498,10.4242 9.3074,22.24449 9.3074,34.53015 0,13.49561 -3.9091,26.43278 -11.1223,37.55502 l -15.5898,-21.26722 -8.0042,29.22498 c -1.815,6.84088 -4.7468,13.30947 -8.6093,19.31269 -3.816,-5.95669 -6.7013,-12.47181 -8.6093,-19.31269 l -8.0043,-29.22498 -15.5897,21.26722 c -7.2132,-11.12224 -11.1223,-24.05941 -11.1223,-37.55502 0,-12.28566 3.2576,-24.10595 9.3073,-34.53015 4.6537,-1.95453 9.447,-3.49024 14.4729,-4.60712 6.2825,-1.44263 12.7976,-2.18722 19.4989,-2.18722 6.7012,0 13.1698,0.79113 19.4522,2.23376 5.1191,1.11687 9.9589,2.60605 14.6125,4.56058 z"
id="path250423" />
<path
style="fill:#6b9b89;fill-opacity:1;stroke-width:1.22212"
d="m 1757.8035,-949.18846 c -3.0932,-1.86129 -6.9698,-1.86129 -10.063,0 -4.1821,2.51146 -111.3675,56.64763 -111.3675,198.5711 0,57.30534 22.0097,279.07118 39.4628,412.9313 2.5298,19.42073 19.191,34.06662 38.7352,34.06662 h 76.4021 c 19.5441,0 36.2053,-14.64589 38.7351,-34.06662 17.4531,-133.86012 39.4628,-355.62596 39.4628,-412.9313 0,-141.92347 -107.1854,-196.06086 -111.3675,-198.5711 z"
id="path250425"
sodipodi:nodetypes="ccscsscsc" />
<path
id="path250427"
style="opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:7.55906;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke markers fill"
d="m 1752.7723,-976.92188 v 673.30274 h 38.2012 c 19.5441,0 36.2045,-14.64568 38.7343,-34.06641 17.4531,-133.86012 39.4629,-355.6263 39.4629,-412.93164 0,-57.74221 -17.7429,-100.95157 -39.0722,-132.0664 -12.283,-19.09437 -26.1497,-37.37853 -41.5723,-54.51368 z" />
<path
style="fill:#53dcff;fill-opacity:1;stroke-width:0.802037"
d="m 1779.5567,-616.10815 c -6.4509,6.45104 -15.0287,9.99501 -24.1384,9.99558 -9.1183,-0.009 -17.6966,-3.55362 -24.1476,-10.00465 -6.4511,-6.45105 -9.9956,-15.02938 -10.0047,-24.14761 0,-9.10916 3.5621,-17.70509 9.9956,-24.13855 6.451,-6.45104 15.0288,-9.995 24.1561,-10.01315 18.8314,0.009 34.1523,15.32938 34.1523,34.15226 -0.018,9.12675 -3.5621,17.70507 -9.9956,24.13854 -0.018,0.0175 -0.018,0.0175 -0.018,0.0175 z"
id="path250429" />
<g
id="g250435"
transform="matrix(1.2221209,0,0,1.2221209,1439.9078,-817.55053)"
style="fill:#24282c;fill-opacity:1">
<g
id="g250433"
style="fill:#24282c;fill-opacity:1">
<path
style="fill:#24282c;fill-opacity:1"
d="m 256.001,451.35877 c -4.422,0 -8,-3.582 -8,-8 V 249.57205 c 0,-4.418 3.578,-8 8,-8 4.422,0 8,3.582 8,8 v 193.78672 c 0,4.418 -3.578,8 -8,8 z"
id="path250431"
sodipodi:nodetypes="sssssss" />
</g>
</g>
<path
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:0.802035"
d="m 1762.1431,-674.93939 c -11.4043,0.009 -22.1359,4.44852 -30.1994,12.5119 -8.0463,8.04637 -12.4852,18.77693 -12.4943,30.18182 0.011,11.38673 4.4394,22.12695 12.4943,30.18183 8.064,8.06394 18.7951,12.48638 30.1909,12.5034 11.4038,-0.009 22.127,-4.45761 30.1728,-12.5034 8.0639,-8.06396 12.5124,-18.78603 12.521,-30.19033 5e-4,-23.53626 -19.1485,-42.68522 -42.6853,-42.68522 z m 25.6011,42.68522 c -0.011,7.07998 -2.8622,13.47772 -7.5059,18.12133 -4.6254,4.62548 -11.0413,7.49683 -18.1031,7.48775 -14.1429,0 -25.6097,-11.46669 -25.6097,-25.60966 -0.011,-7.0624 2.8709,-13.46921 7.4962,-18.09469 4.6437,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
id="path250437" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.802035"
d="m 1755.4268,-682.94948 c -11.4044,0.009 -22.1361,4.44853 -30.1994,12.51191 -8.0464,8.04637 -12.4853,18.77693 -12.4944,30.18182 0.011,11.38673 4.4395,22.12695 12.4944,30.18182 8.0639,8.06395 18.795,12.48639 30.1909,12.5034 11.4037,-0.009 22.1269,-4.4576 30.1727,-12.5034 8.0639,-8.06395 12.5125,-18.78602 12.521,-30.19032 6e-4,-23.53626 -19.1484,-42.68523 -42.6852,-42.68523 z m 25.6011,42.68523 c -0.011,7.07998 -2.8623,13.47771 -7.5059,18.12133 -4.6255,4.62548 -11.0414,7.49683 -18.1032,7.48775 -14.143,0 -25.6096,-11.46669 -25.6096,-25.60966 -0.011,-7.06241 2.8707,-13.46921 7.4962,-18.09469 4.6436,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
id="path250439" />
<path
style="fill:#53dcff;fill-opacity:1;stroke-width:1.38175"
d="m 1795.5329,-776.35953 c -11.454,10.78389 -26.6678,16.72333 -42.8584,16.70911 -16.1745,9.4e-4 -31.4216,-5.93944 -42.8604,-16.70911 -11.4539,-10.78389 -17.7625,-25.1381 -17.7776,-40.38154 0,-15.22732 6.2934,-29.5673 17.7473,-40.35119 11.455,-10.78485 26.685,-16.7091 42.8907,-16.73946 33.4345,0.015 60.6379,25.62729 60.6379,57.09065 -0.016,15.27284 -6.3246,29.59669 -17.7795,40.38154 z"
id="path250441" />
<path
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:1.38175"
d="m 1706.6505,-853.77411 c -14.3177,13.48011 -22.1839,31.37331 -22.201,50.43924 -0.016,19.06307 7.8824,36.98851 22.2001,50.46863 14.3025,13.46588 33.3235,20.8871 53.5893,20.8871 20.2496,-0.015 39.2717,-7.40701 53.5893,-20.8871 14.3187,-13.48106 22.2011,-31.41976 22.2171,-50.48476 0,-39.34342 -34.0013,-71.35571 -75.7893,-71.35571 -20.2496,0.015 -39.2868,7.45156 -53.6055,20.9326 z m 110.8518,50.42311 c 0,14.92369 -6.4012,28.37408 -16.7842,38.14968 -10.3424,9.7374 -24.6678,15.80116 -40.4783,15.76298 -31.6258,0 -57.2636,-24.13816 -57.2625,-53.91266 -0.02,-14.86874 6.419,-28.35496 16.7615,-38.09234 10.383,-9.77562 24.6691,-15.80238 40.501,-15.8203 31.622,-9.4e-4 57.2613,24.13812 57.2625,53.91264 z"
id="path250443"
sodipodi:nodetypes="scscsccscsccscc" />
<path
style="fill:#f2f2f2;fill-opacity:1;stroke-width:1.45856"
d="m 1696.0983,-869.96743 c -15.1136,14.22941 -23.417,33.11723 -23.4351,53.24295 -0.017,20.1227 8.3205,39.04455 23.4341,53.27397 15.0976,14.21439 35.176,22.04812 56.5681,22.04812 21.3752,-0.0158 41.4547,-7.81872 56.5682,-22.04812 15.1146,-14.23042 23.4351,-33.16625 23.4522,-53.29099 0,-41.53037 -35.8914,-75.32209 -80.0022,-75.32209 -21.3753,0.0158 -41.4707,7.86577 -56.5853,22.09616 z m 115.3426,53.22593 c 0,15.31768 -6.5704,29.12317 -17.2276,39.15686 -10.6155,9.99448 -25.319,16.21833 -41.5468,16.17914 -32.4607,0 -58.7756,-24.77541 -58.7742,-55.336 -0.02,-15.26129 6.5885,-29.10357 17.2039,-39.09802 10.6571,-10.0337 25.3203,-16.21958 41.5703,-16.23795 32.4569,-9.4e-4 58.7729,24.77537 58.7744,55.33597 z"
id="path250445"
sodipodi:nodetypes="scscsccscsccscc" />
<path
style="fill:#f2705b;fill-opacity:1;stroke-width:1.10803"
d="m 1837.2865,-871.1305 h -169.0289 c 13.9742,-23.28887 30.1784,-45.42157 48.7612,-66.06774 l 35.7532,-39.72324 35.7533,39.72324 c 18.5084,20.56359 34.7869,42.77887 48.7612,66.06774 z"
id="path250447" />
<path
style="fill:#ffe6d5;fill-opacity:1;stroke-width:0.658127"
d="m 1786.964,-324.70168 c 6.0498,10.4242 9.3074,22.24449 9.3074,34.53015 0,13.49561 -3.9091,26.43278 -11.1223,37.55502 l -15.5898,-21.26722 -8.0042,29.22498 c -1.815,6.84088 -4.7468,13.30947 -8.6093,19.31269 -3.816,-5.95669 -6.7013,-12.47181 -8.6093,-19.31269 l -8.0043,-29.22498 -15.5897,21.26722 c -7.2132,-11.12224 -11.1223,-24.05941 -11.1223,-37.55502 0,-12.28566 3.2576,-24.10595 9.3073,-34.53015 4.6537,-1.95453 9.447,-3.49024 14.4729,-4.60712 6.2825,-1.44263 12.7976,-2.18722 19.4989,-2.18722 6.7012,0 13.1698,0.79113 19.4522,2.23376 5.1191,1.11687 9.9589,2.60605 14.6125,4.56058 z"
id="path250449" />
<path
style="fill:#454948;fill-opacity:1;stroke-width:1.22212"
d="m 1760.8084,-1076.1934 c -4.9405,-2.9729 -11.1323,-2.9729 -16.0728,0 -6.6798,4.0113 -177.8786,90.4788 -177.8786,317.16201 0,91.52932 91.5257,287.48521 108.9788,421.34533 2.5298,19.42073 19.191,34.06662 38.7352,34.06662 h 76.4021 c 19.5441,0 36.2053,-14.64589 38.7351,-34.06662 17.4531,-133.86012 108.9788,-329.81601 108.9788,-421.34533 0,-226.68321 -171.1988,-313.15261 -177.8786,-317.16201 z"
id="path250451"
sodipodi:nodetypes="ccscsscsc" />
<path
id="path250453"
style="opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:7.55906;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke markers fill"
d="m 1752.7725,-1120.4898 -2e-4,816.87066 h 38.2012 c 19.5441,0 36.2045,-14.64568 38.7343,-34.06641 17.4531,-133.86012 108.9787,-329.81625 108.9787,-421.34557 0,-92.2271 -28.3393,-161.24201 -62.407,-210.93929 -19.6186,-30.49789 -41.767,-59.70159 -66.4001,-87.07039 z"
sodipodi:nodetypes="ccscscsc" />
<path
style="fill:#53dcff;fill-opacity:1;stroke-width:0.802037"
d="m 1779.5567,-616.10815 c -6.4509,6.45104 -15.0287,9.99501 -24.1384,9.99558 -9.1183,-0.009 -17.6966,-3.55362 -24.1476,-10.00465 -6.4511,-6.45105 -9.9956,-15.02938 -10.0047,-24.14761 0,-9.10916 3.5621,-17.70509 9.9956,-24.13855 6.451,-6.45104 15.0288,-9.995 24.1561,-10.01315 18.8314,0.009 34.1523,15.32938 34.1523,34.15226 -0.018,9.12675 -3.5621,17.70507 -9.9956,24.13854 -0.018,0.0175 -0.018,0.0175 -0.018,0.0175 z"
id="path250455" />
<g
id="g250461"
transform="matrix(1.2221209,0,0,1.2221209,1439.9078,-817.55053)"
style="fill:#1a1c1b;fill-opacity:1">
<g
id="g250459"
style="fill:#1a1c1b;fill-opacity:1">
<path
style="fill:#1a1c1b;fill-opacity:1"
d="m 256.001,451.35877 c -4.422,0 -8,-3.582 -8,-8 V 249.57205 c 0,-4.418 3.578,-8 8,-8 4.422,0 8,3.582 8,8 v 193.78672 c 0,4.418 -3.578,8 -8,8 z"
id="path250457"
sodipodi:nodetypes="sssssss" />
</g>
</g>
<path
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:0.802035"
d="m 1762.1431,-674.93939 c -11.4043,0.009 -22.1359,4.44852 -30.1994,12.5119 -8.0463,8.04637 -12.4852,18.77693 -12.4943,30.18182 0.011,11.38673 4.4394,22.12695 12.4943,30.18183 8.064,8.06394 18.7951,12.48638 30.1909,12.5034 11.4038,-0.009 22.127,-4.45761 30.1728,-12.5034 8.0639,-8.06396 12.5124,-18.78603 12.521,-30.19033 5e-4,-23.53626 -19.1485,-42.68522 -42.6853,-42.68522 z m 25.6011,42.68522 c -0.011,7.07998 -2.8622,13.47772 -7.5059,18.12133 -4.6254,4.62548 -11.0413,7.49683 -18.1031,7.48775 -14.1429,0 -25.6097,-11.46669 -25.6097,-25.60966 -0.011,-7.0624 2.8709,-13.46921 7.4962,-18.09469 4.6437,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
id="path250463" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.802035"
d="m 1755.4268,-682.94948 c -11.4044,0.009 -22.1361,4.44853 -30.1994,12.51191 -8.0464,8.04637 -12.4853,18.77693 -12.4944,30.18182 0.011,11.38673 4.4395,22.12695 12.4944,30.18182 8.0639,8.06395 18.795,12.48639 30.1909,12.5034 11.4037,-0.009 22.1269,-4.4576 30.1727,-12.5034 8.0639,-8.06395 12.5125,-18.78602 12.521,-30.19032 6e-4,-23.53626 -19.1484,-42.68523 -42.6852,-42.68523 z m 25.6011,42.68523 c -0.011,7.07998 -2.8623,13.47771 -7.5059,18.12133 -4.6255,4.62548 -11.0414,7.49683 -18.1032,7.48775 -14.143,0 -25.6096,-11.46669 -25.6096,-25.60966 -0.011,-7.06241 2.8707,-13.46921 7.4962,-18.09469 4.6436,-4.64361 11.0323,-7.50589 18.1129,-7.5144 14.1424,5.7e-4 25.6091,11.46727 25.6096,25.60967 z"
id="path250465" />
<path
style="fill:#53dcff;fill-opacity:1;stroke-width:1.38175"
d="m 1795.5329,-776.35953 c -11.454,10.78389 -26.6678,16.72333 -42.8584,16.70911 -16.1745,9.4e-4 -31.4216,-5.93944 -42.8604,-16.70911 -11.4539,-10.78389 -17.7625,-25.1381 -17.7776,-40.38154 0,-15.22732 6.2934,-29.5673 17.7473,-40.35119 11.455,-10.78485 26.685,-16.7091 42.8907,-16.73946 33.4345,0.015 60.6379,25.62729 60.6379,57.09065 -0.016,15.27284 -6.3246,29.59669 -17.7795,40.38154 z"
id="path250467" />
<path
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke-width:1.38175"
d="m 1706.6505,-853.77411 c -14.3177,13.48011 -22.1839,31.37331 -22.201,50.43924 -0.016,19.06307 7.8824,36.98851 22.2001,50.46863 14.3025,13.46588 33.3235,20.8871 53.5893,20.8871 20.2496,-0.015 39.2717,-7.40701 53.5893,-20.8871 14.3187,-13.48106 22.2011,-31.41976 22.2171,-50.48476 0,-39.34342 -34.0013,-71.35571 -75.7893,-71.35571 -20.2496,0.015 -39.2868,7.45156 -53.6055,20.9326 z m 110.8518,50.42311 c 0,14.92369 -6.4012,28.37408 -16.7842,38.14968 -10.3424,9.7374 -24.6678,15.80116 -40.4783,15.76298 -31.6258,0 -57.2636,-24.13816 -57.2625,-53.91266 -0.02,-14.86874 6.419,-28.35496 16.7615,-38.09234 10.383,-9.77562 24.6691,-15.80238 40.501,-15.8203 31.622,-9.4e-4 57.2613,24.13812 57.2625,53.91264 z"
id="path250469"
sodipodi:nodetypes="scscsccscsccscc" />
<path
style="fill:#f2f2f2;fill-opacity:1;stroke-width:1.45856"
d="m 1696.0983,-869.96743 c -15.1136,14.22941 -23.417,33.11723 -23.4351,53.24295 -0.017,20.1227 8.3205,39.04455 23.4341,53.27397 15.0976,14.21439 35.176,22.04812 56.5681,22.04812 21.3752,-0.0158 41.4547,-7.81872 56.5682,-22.04812 15.1146,-14.23042 23.4351,-33.16625 23.4522,-53.29099 0,-41.53037 -35.8914,-75.32209 -80.0022,-75.32209 -21.3753,0.0158 -41.4707,7.86577 -56.5853,22.09616 z m 115.3426,53.22593 c 0,15.31768 -6.5704,29.12317 -17.2276,39.15686 -10.6155,9.99448 -25.319,16.21833 -41.5468,16.17914 -32.4607,0 -58.7756,-24.77541 -58.7742,-55.336 -0.02,-15.26129 6.5885,-29.10357 17.2039,-39.09802 10.6571,-10.0337 25.3203,-16.21958 41.5703,-16.23795 32.4569,-9.4e-4 58.7729,24.77537 58.7744,55.33597 z"
id="path250471"
sodipodi:nodetypes="scscsccscsccscc" />
<path
style="fill:#f2705b;fill-opacity:1;stroke-width:1.10803"
d="m 1887.7604,-951.51756 c -91.5372,-11.38291 -181.4702,-10.94666 -269.9766,0 22.3199,-37.19749 48.2016,-72.54824 77.8824,-105.52484 l 57.1058,-63.4468 57.1059,63.4468 c 29.5621,32.8446 55.5624,68.32735 77.8825,105.52484 z"
id="path250473"
sodipodi:nodetypes="ccscsc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -25,9 +25,9 @@
borderopacity="1"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="557.85714"
inkscape:cy="251.42857"
inkscape:zoom="0.98994949"
inkscape:cx="-169.20055"
inkscape:cy="1534.4217"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
@ -64,11 +64,11 @@
<path
id="path250403"
style="display:inline;fill:#eff0f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.46489;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke"
d="m 174.0562,714.59209 c 9.38797,0 14.50417,53.62433 17.00032,114.68438 8.24465,1098.39983 1.91828,1138.93853 33.79043,1941.61563 -46.56792,0 -58.65508,0 -108.81853,0 34.53647,-791.4836 28.78177,-828.0114 41.02962,-1941.62914 2.4963,-61.06021 7.61008,-114.68446 16.99812,-114.68446 v -8.5e-4 z"
d="m 170.0562,714.59209 c 9.38797,0 14.50417,53.62433 17.00032,114.68438 8.24465,1098.39983 1.91828,1138.93853 33.79043,1941.61563 -46.56792,0 -58.65508,0 -108.81853,0 34.53647,-791.4836 28.78177,-828.0114 41.02962,-1941.62914 2.4963,-61.06021 7.61008,-114.68446 16.99812,-114.68446 v -8.5e-4 z"
sodipodi:nodetypes="sccccscs" />
<g
id="g250475"
transform="matrix(-0.13168343,0,0,0.13168343,404.83556,757.91908)"
transform="matrix(-0.13168343,0,0,0.13168343,400.42611,757.91908)"
style="display:inline">
<path
style="fill:#1a1c1b;fill-opacity:1"

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="800.00085"
height="439.99997"
viewBox="0 0 800.00094 439.99999"
version="1.1"
id="svg8"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
sodipodi:docname="sky_dark.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
id="defs2"><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath290923"><rect
style="opacity:0.7;fill:#2f6b5a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.70918;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
id="rect290925"
width="309.65643"
height="170.30928"
x="-358.01489"
y="775.27844" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath292441"><rect
style="opacity:0.7;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.18763;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
id="rect292443"
width="478.64374"
height="263.22327"
x="-510.89438"
y="765.67975" /></clipPath></defs><sodipodi:namedview
id="base"
pagecolor="#525252"
bordercolor="#404040"
borderopacity="1"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="484.28571"
inkscape:cy="85.714286"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1914"
inkscape:window-height="1047"
inkscape:window-x="1923"
inkscape:window-y="3"
inkscape:window-maximized="0"
inkscape:pagecheckerboard="0"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:showpageshadow="0"
inkscape:deskcolor="#525252"
showguides="true" /><metadata
id="metadata5"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-13.87441,-610.36914)"><rect
style="display:inline;fill:#103e49;fill-opacity:1;fill-rule:evenodd;stroke-width:0.41201"
id="rect75224"
width="800"
height="440"
x="13.874837"
y="610.36914"
inkscape:export-filename="/run/media/bogdan/WORK/Work2022/Manjaro2022/4Calamares/2022/slide1.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" /></g></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 22 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 46 KiB