You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wave-commits@incubator.apache.org by wi...@apache.org on 2016/04/30 11:37:57 UTC

[1/2] incubator-wave git commit: start working on website and implement a somewhat decent design.

Repository: incubator-wave
Updated Branches:
  refs/heads/wavy c97d5d575 -> 52a478451


http://git-wip-us.apache.org/repos/asf/incubator-wave/blob/52a47845/website/source/stylesheets/site.css.scss
----------------------------------------------------------------------
diff --git a/website/source/stylesheets/site.css.scss b/website/source/stylesheets/site.css.scss
index ff3718c..c5a3cec 100644
--- a/website/source/stylesheets/site.css.scss
+++ b/website/source/stylesheets/site.css.scss
@@ -1,18 +1,12 @@
 @charset "utf-8";
-@import "normalize";
 
 body {
-  background: #ECC561;
+  background: #ffffff;
   text-align: center;
   font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
   font-size: 1em;
 }
 
-.logo img {
-  height: 18.75em;
-  margin-top: 6em;
-}
-
 h1 {
   color: rgba(0,0,0,0.5);
   font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
@@ -21,47 +15,42 @@ h1 {
   margin: 0;
 }
 
-.doc {
-  margin: 3em 0;
+#container {
+  min-height: 100%;
+}
+
+#footer {
+  clear: both;
+  font-size: 0.7rem;
+  margin-top: -2.4rem;
+  height: 2.4rem;
+}
+
+.full {
+  max-width: 100%;
+  width: 100%;
+  margin: 0;
+}
+
+.title {
+  color: rgba(0,0,0,0.8);
+  font-size: 1.6rem;
   font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 1.1em;
-  font-weight: 300;
+}
+
+.apache {
+  background-color: #E4E5FC;
+  color: #303284;
 
   a {
-    border: 1px solid white;
-    border-radius: 3px;
-    padding: 0.75em 0.7em;
-    color: white;
-    text-decoration: none;
-    transition: color 0.1s linear;
+    color: rgba(0, 0, 0, 0.6);
+    font-size: 0.8em;
     &:hover {
-      background: rgba(0,0,0,0.2);
-      color: white;
-      transition: all 0.15s linear;
+      color: black;
     }
   }
 }
 
-.welcome {
-  -webkit-animation-name: welcome;
-  -webkit-animation-duration: .9s;
-}
-
-@-webkit-keyframes welcome {
-  from {
-    -webkit-transform: scale(0);
-    opacity: 0;
-  }
-  50% {
-   -webkit-transform: scale(0);
-   opacity: 0;
-  }
-  82.5% {
-    -webkit-transform: scale(1.03);
-    -webkit-animation-timing-function: ease-out;
-    opacity: 1;
-  }
-  to {
-    -webkit-transform: scale(1);
-  }
+.header-line {
+  border-bottom: 1px black solid;
 }


[2/2] incubator-wave git commit: start working on website and implement a somewhat decent design.

Posted by wi...@apache.org.
start working on website and implement a somewhat decent design.


Project: http://git-wip-us.apache.org/repos/asf/incubator-wave/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-wave/commit/52a47845
Tree: http://git-wip-us.apache.org/repos/asf/incubator-wave/tree/52a47845
Diff: http://git-wip-us.apache.org/repos/asf/incubator-wave/diff/52a47845

Branch: refs/heads/wavy
Commit: 52a478451a8d106184ad2e4a49960b0c63fa8702
Parents: c97d5d5
Author: wisebaldone <wi...@apache.org>
Authored: Sat Apr 30 19:37:06 2016 +1000
Committer: wisebaldone <wi...@apache.org>
Committed: Sat Apr 30 19:37:06 2016 +1000

----------------------------------------------------------------------
 TODO.md                                    |   5 +-
 website/scripts/run.sh                     |   2 +-
 website/source/images/OpenWaveLogo.svg     | 962 ++++++++++++++++++++++++
 website/source/images/WaveDemo.webm        | Bin 0 -> 3193094 bytes
 website/source/images/middleman-logo.svg   |   1 -
 website/source/index.html.erb              |  54 +-
 website/source/javascripts/all.js          |   1 -
 website/source/layouts/layout.erb          |  58 +-
 website/source/stylesheets/_normalize.scss | 419 -----------
 website/source/stylesheets/site.css.scss   |  73 +-
 10 files changed, 1093 insertions(+), 482 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-wave/blob/52a47845/TODO.md
----------------------------------------------------------------------
diff --git a/TODO.md b/TODO.md
index 70fd243..36d8ff3 100644
--- a/TODO.md
+++ b/TODO.md
@@ -2,7 +2,7 @@ While the project is being setup a few todo's will be added and removed here
 to track tasks which must be completed before full development can start.
 
 # Apache Related
-
+- Integrate Apache Whisker after prebuilt jars are released.
 
 # Project Related
 - Create initial Android base
@@ -12,3 +12,6 @@ to track tasks which must be completed before full development can start.
 - create initial notepad base (single wave doc, used to test editor)
 - Add testing for editor
 - Add testing for webclient
+- Add mobile menu for website
+- Change text to be imported by T function for localisation.
+- Fill in blurbs on website

http://git-wip-us.apache.org/repos/asf/incubator-wave/blob/52a47845/website/scripts/run.sh
----------------------------------------------------------------------
diff --git a/website/scripts/run.sh b/website/scripts/run.sh
index 032da0d..3cff3c7 100755
--- a/website/scripts/run.sh
+++ b/website/scripts/run.sh
@@ -1,2 +1,2 @@
 cd website
-bundle exec middleman
+bundle exec middleman server development

http://git-wip-us.apache.org/repos/asf/incubator-wave/blob/52a47845/website/source/images/OpenWaveLogo.svg
----------------------------------------------------------------------
diff --git a/website/source/images/OpenWaveLogo.svg b/website/source/images/OpenWaveLogo.svg
new file mode 100644
index 0000000..29b5cfa
--- /dev/null
+++ b/website/source/images/OpenWaveLogo.svg
@@ -0,0 +1,962 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   viewBox="0 0 513.33331 401.12"
+   height="401.12"
+   width="513.33331"
+   xml:space="preserve"
+   id="svg2"
+   version="1.1"><metadata
+     id="metadata8"><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><defs
+     id="defs6"><clipPath
+       id="clipPath22"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path20"
+         d="m 2691.34,964.18 c -13.21,0.031 -25.05,3.129 -36.85,9.57 -17.61,9.621 -35.23,27.6 -51.27,54.91 -16.01,27.17 -30.24,63.28 -41.7,107.19 l -108.48,452.61 89.28,378.93 498.82,103.42 -178.02,-776.57 c -15.89,-61.31 -30.04,-113.5 -43.68,-156.96 -10.25,-32.66 -20.22,-60.39 -30.28,-83.26 -15.05,-34.39 -30.4,-57.418 -45.72,-70.801 -7.68,-6.75 -15.3,-11.301 -23.62,-14.367 -8.33,-3.063 -17.52,-4.661 -28.48,-4.672 m -120.14,1041.21 485.49,133.26 -7.84,-34.23 -477.65,-99.03 m 71.47,55.11 430.02,145.62 c -2.07,-7.28 -3.88,-14.43 -5.43,-21.37 l -1.88,-8.22 -422.71,-116.03 m -59.82,18.93 c 14.79,19.59 37.21,40.36 70.58,53.96 l 487.44,204.94 c -14.89,-16.62 -27.36,-35.89 -37.95,-55.97 -5.47,-10.44 -10.42,-21.13 -14.83,-31.84 l -505.24,-171.09" /></clipPath><linearGradient
+       id="linearGradient30"
+       spreadMethod="pad"
+       gradientTransform="matrix(-6.24e-5,1427.33,1427.33,6.24e-5,2831.07,944.23)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop24"
+         offset="0"
+         style="stop-opacity:1;stop-color:#99def9" /><stop
+         id="stop26"
+         offset="0.429448"
+         style="stop-opacity:1;stop-color:#99def9" /><stop
+         id="stop28"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath68"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path66"
+         d="m 2530.88,1066.24 -233.8,234.13 c 0.53,214.41 0.82,419.09 0.82,580.84 0,4.02 0,7.99 0,12.01 l 26.91,15.7 188.2,-785.2 0.07,-0.25 c 5.34,-20.4 11.25,-39.49 17.8,-57.23 m -251.55,251.91 -119.33,119.5 c 0,0 -30.17,26.92 -50.22,87.71 l -53.11,227.08 221.88,129.49 c 0,-0.23 0,-0.5 0,-0.72 0,-157.26 0.28,-355.15 0.78,-563.06 m -225.05,444.48 -39.1,167.19 c -11.35,23.89 -23.37,35.23 -34.45,39.62 l 43.44,181.21 0.02,0.11 c 7.14,31.29 18.8,72.71 38.21,103.98 9.65,15.67 21,28.61 33.93,37.36 13.01,8.72 27.41,13.82 46.39,13.9 h 5.61 c 18.97,-0.08 33.37,-5.18 46.37,-13.9 9.71,-6.58 18.5,-15.46 26.38,-26.14 11.83,-15.99 21.42,-35.98 28.86,-56.4 7.48,-20.41 12.85,-41.18 16.91,-58.81 l 0.02,-0.09 11.87,-49.51 c -0.12,-67.26 -0.18,-136.66 -0.19,-207.64 l -224.27,-130.88 m 243.62,142.17 c -0.01,39.47 -0.03,78.34 -0.07,116.71 l 24.55,-102.43 -24.48,-14.28" /></clipPath><linearGradient
+       id="linearGradient76"
+       spreadMethod="pad"
+       gradientTransform="matrix(-5.91e-5,1353.09,1353.09,5.91e-5,2271.69,988.94)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop70"
+         offset="0"
+         style="stop-opacity:1;stop-color:#ffffff" /><stop
+         id="stop72"
+         offset="0.570552"
+         style="stop-opacity:1;stop-color:#99def9" /><stop
+         id="stop74"
+         offset="1"
+         style="stop-opacity:1;stop-color:#99def9" /></linearGradient><clipPath
+       id="clipPath86"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path84"
+         d="m 1599.71,964.18 c -9.74,0 -18.1,1.281 -25.67,3.699 -13.18,4.281 -24.64,11.93 -36.65,25.723 -17.94,20.558 -35.54,55.388 -53.1,105.418 -14.85,42.05 -29.89,94.67 -46.73,158.32 13.65,-3.79 26.99,-8.33 39.97,-13.58 l 2.35,5.8 c 19.57,-6.43 37.8,-14.17 54.72,-22.94 l -5.2,-8.69 c 16.63,-9.95 32.44,-21.16 47.27,-33.5 l 8.51,10.24 c 52.91,-40.06 89.66,-91.3 115.15,-142.13 -1.14,-2.42 -2.29,-4.8 -3.45,-7.12 -1.01,2.44 -2.06,4.87 -3.12,7.29 l -13.21,-5.83 c 2.62,-5.92 5.08,-11.93 7.39,-18.01 -5.37,-9.17 -10.93,-17.33 -16.64,-24.45 -11.3,-14.17 -23,-24.209 -34.75,-30.67 -11.81,-6.441 -23.64,-9.539 -36.84,-9.57 m 29.36,189.48 -10.81,-9.56 c 12.77,-14.46 24.46,-29.91 34.91,-46.21 l 12.15,7.79 c -10.86,16.93 -22.98,32.97 -36.25,47.98 m -221.96,231.28 -183.39,800.07 -0.03,0.14 c -7.89,32.53 -20.62,69.12 -38.8,102.59 l 399.47,-318.82 110.66,-415.96 -34.56,-20.16 c -17.76,-7.31 -31.7,-17.02 -39.28,-22.93 l -214.07,-124.93 m 403.67,89.99 c -1.63,4.14 -3.51,8.16 -5.63,12.03 l -4.39,-2.4 c
  -3.6,6.91 -8.06,13.44 -13.47,19.56 2.48,3.74 4.97,7.94 7.46,12.65 l 29.27,99.9 24.11,14.07 -37.35,-155.81 m -114.68,67.09 1.59,0.92 0.2,-0.75 c -0.6,-0.06 -1.19,-0.11 -1.79,-0.17 m 132.02,88.62 109.75,374.47 -86.51,-360.91 -23.24,-13.56" /></clipPath><linearGradient
+       id="linearGradient94"
+       spreadMethod="pad"
+       gradientTransform="matrix(-6.11e-5,1397.71,1397.71,6.11e-5,1618.8,939.18)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop88"
+         offset="0"
+         style="stop-opacity:1;stop-color:#99def9" /><stop
+         id="stop90"
+         offset="0.429448"
+         style="stop-opacity:1;stop-color:#99def9" /><stop
+         id="stop92"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath150"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path148"
+         d="m 1793.79,2351.3 c -241.9,0 -467.55,0.54 -657.89,1.49 -5.06,4.59 -10.37,8.87 -15.96,12.78 -1.71,1.2 -3.44,2.36 -5.21,3.48 194.69,1.01 428.1,1.6 679.06,1.6 138.83,0 306.58,-0.18 485.72,-0.51 -0.03,-6.1 -0.05,-12.18 -0.08,-18.33 -32.57,-0.06 -64.78,-0.12 -96.5,-0.17 -10.74,2.82 -22.18,4.36 -34.19,4.36 -0.14,0 -0.27,0 -0.41,0 h -5.61 c -0.14,0 -0.28,0 -0.42,0 -12.17,0 -23.75,-1.58 -34.61,-4.47 -114.13,-0.15 -220.59,-0.23 -313.9,-0.23 m 503.23,0.54 c -0.02,6.09 -0.05,12.23 -0.07,18.27 288.8,-0.56 605.38,-1.5 876.97,-2.71 -1.06,-0.7 -2.11,-1.42 -3.14,-2.15 -4.75,-3.34 -9.3,-6.95 -13.67,-10.78 -267.75,-1.18 -577.25,-2.09 -860.09,-2.63 m -1317.344,1.87 c -256.25,1.77 -417.879,4.36 -417.879,7.25 0,2.96 168.637,5.61 434.383,7.39 -5.875,-4.35 -11.364,-9.27 -16.504,-14.64 m 2258.744,1.13 v 12.26 c 350.7,-1.67 611.58,-3.81 611.58,-6.14 0,-2.32 -260.88,-4.45 -611.58,-6.12" /></clipPath><clipPath
+       id="clipPath156"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path154"
+         d="M 561.797,2370.65 H 3850 V 2351.3 H 561.797 Z" /></clipPath><linearGradient
+       id="linearGradient166"
+       spreadMethod="pad"
+       gradientTransform="matrix(-3288.2,-1.437e-4,-1.437e-4,3288.2,3850,2360.98)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop158"
+         offset="0"
+         style="stop-opacity:1;stop-color:#ffffff" /><stop
+         id="stop160"
+         offset="0.552147"
+         style="stop-opacity:1;stop-color:#4dc6f4" /><stop
+         id="stop162"
+         offset="0.98773"
+         style="stop-opacity:1;stop-color:#ffffff" /><stop
+         id="stop164"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath176"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path174"
+         d="m 2288.22,0 c -3.1,0 -5.87,425.609 -7.64,904.238 5.09,0.032 10.24,0.051 15.29,0.082 C 2294.1,425.621 2291.33,0 2288.22,0 m 7.7,917.211 c -5.14,0.027 -10.21,0.051 -15.38,0.078 -0.49,132.441 -0.89,268.701 -1.21,400.861 l 17.75,-17.78 c -0.31,-126.62 -0.7,-256.61 -1.16,-383.159 m 1.52,1308.079 c -5.02,13.89 -11.02,28.04 -18.3,41.77 0.09,28.82 0.19,57.08 0.29,84.75 5.9,0.01 11.67,0.02 17.59,0.03 0.16,-40.94 0.3,-83.14 0.42,-126.55" /></clipPath><linearGradient
+       id="linearGradient186"
+       spreadMethod="pad"
+       gradientTransform="matrix(-1.315e-4,3008.35,3008.35,1.315e-4,2288.22,-6.1e-5)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop178"
+         offset="0"
+         style="stop-opacity:1;stop-color:#ffffff" /><stop
+         id="stop180"
+         offset="0.552147"
+         style="stop-opacity:1;stop-color:#4dc6f4" /><stop
+         id="stop182"
+         offset="0.98773"
+         style="stop-opacity:1;stop-color:#ffffff" /><stop
+         id="stop184"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath196"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path194"
+         d="m 2297.08,1300.37 -17.75,17.78 c -0.5,207.91 -0.78,405.8 -0.78,563.06 0,0.22 0,0.49 0,0.72 l 19.35,11.29 c 0,-4.02 0,-7.99 0,-12.01 0,-161.75 -0.29,-366.43 -0.82,-580.84 m -18.53,593.14 c 0.01,70.98 0.07,140.38 0.19,207.64 l 19.09,-79.64 c 0.04,-38.37 0.06,-77.24 0.07,-116.71 l -19.35,-11.29" /></clipPath><clipPath
+       id="clipPath208"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path206"
+         d="M 0,0 V 3008 H 3850 V 0 Z" /></clipPath><clipPath
+       id="clipPath214"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path212"
+         d="m 2296.95,2370.11 c -5.81,0 -11.65,0.01 -17.44,0.03 1.56,377.62 4.87,638.21 8.71,638.21 3.85,0 7.16,-260.57 8.73,-638.24" /></clipPath><linearGradient
+       id="linearGradient224"
+       spreadMethod="pad"
+       gradientTransform="matrix(-1.315e-4,3008.35,3008.35,1.315e-4,2288.22,-6.1e-5)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop216"
+         offset="0"
+         style="stop-opacity:1;stop-color:#ffffff" /><stop
+         id="stop218"
+         offset="0.552147"
+         style="stop-opacity:1;stop-color:#4dc6f4" /><stop
+         id="stop220"
+         offset="0.98773"
+         style="stop-opacity:1;stop-color:#ffffff" /><stop
+         id="stop222"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath234"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path232"
+         d="m 2279.43,2351.81 c 0.03,6.15 0.05,12.23 0.08,18.33 5.79,-0.02 11.63,-0.03 17.44,-0.03 0.02,-6.04 0.05,-12.18 0.07,-18.27 -5.92,-0.01 -11.69,-0.02 -17.59,-0.03" /></clipPath><clipPath
+       id="clipPath246"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path244"
+         d="m 1085.31,901.102 c -41.85,0 -83.17,0.019 -123.787,0.058 0.094,6.449 0.352,12.852 0.766,19.211 40.381,0.039 81.431,0.059 123.021,0.059 134.38,0 299.49,-0.211 474.89,-0.61 12.54,-3.84 25.76,-5.64 39.4,-5.64 0.04,0 0.07,0 0.11,0 0.07,-0.008 0.14,-0.008 0.22,-0.008 12.48,0 24.72,1.879 36.44,5.469 24.95,-0.071 50,-0.129 75.17,-0.2 0.36,-5.75 0.59,-11.531 0.69,-17.339 -230.74,-0.641 -454.23,-1 -626.92,-1 M 947.09,901.18 C 412.965,901.781 0,905.84 0,910.77 c 0,4.91 413.34,8.992 947.824,9.589 -0.398,-6.359 -0.644,-12.75 -0.734,-19.179 m 779.58,0.961 c -0.1,5.781 -0.32,11.539 -0.67,17.257 6.86,-0.019 13.73,-0.039 20.59,-0.058 1.29,-5.981 2.44,-11.711 3.46,-17.141 -7.8,-0.019 -15.6,-0.039 -23.38,-0.058 m 36.5,0.097 1.64,17.051 c 175.99,-0.519 354.37,-1.199 515.73,-2 0.01,-4.379 0.03,-8.68 0.04,-13.051 -161.93,-0.797 -340.79,-1.476 -517.41,-2 m 532.7,2.082 c 0.02,4.27 0.03,8.61 0.05,12.891 147.84,-0.742 280.82,-1.59 383.83,-2.52 3.76,-0.339 7.56,-0.519 11.37,-0.519 0.07,0 0.14,0 0
 .22,0.008 0.02,0 0.04,0 0.06,0 3.32,0 6.61,0.101 9.87,0.32 121.04,-1.148 195.47,-2.41 195.47,-3.73 0,-2.481 -261.08,-4.739 -600.87,-6.45" /></clipPath><linearGradient
+       id="linearGradient256"
+       spreadMethod="pad"
+       gradientTransform="matrix(-2896.74,-1.266e-4,-1.266e-4,2896.74,2896.74,910.78)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop248"
+         offset="0"
+         style="stop-opacity:1;stop-color:#ffffff" /><stop
+         id="stop250"
+         offset="0.552147"
+         style="stop-opacity:1;stop-color:#4dc6f4" /><stop
+         id="stop252"
+         offset="0.98773"
+         style="stop-opacity:1;stop-color:#ffffff" /><stop
+         id="stop254"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath266"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path264"
+         d="m 2280.58,904.238 c -0.01,4.371 -0.03,8.672 -0.04,13.051 5.17,-0.027 10.24,-0.051 15.38,-0.078 -0.02,-4.281 -0.03,-8.621 -0.05,-12.891 -5.05,-0.031 -10.2,-0.05 -15.29,-0.082" /></clipPath><clipPath
+       id="clipPath280"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path278"
+         d="m 1700.33,1052.54 c -25.49,50.83 -62.24,102.07 -115.15,142.13 l 0.72,0.86 c -15.41,12.81 -31.81,24.45 -49.09,34.79 l -2.21,-3.7 c -16.92,8.77 -35.15,16.51 -54.72,22.94 l 3.06,7.58 c -16.03,6.48 -32.6,11.93 -49.61,16.26 -1.79,6.83 -3.6,13.78 -5.43,20.85 l -18.45,80.48 223.48,130.42 9.89,-8.57 c 7.37,8.5 16.28,15.64 26.28,20.98 l -3.54,6.63 24.59,14.36 2.66,-12.28 c 2.92,0.63 5.9,1.12 8.92,1.47 l 4.6,-17.29 c 0,0 18.69,-32.48 43.85,-32.48 11.42,0 24.17,6.7 37.11,26.15 5.41,-6.12 9.87,-12.65 13.47,-19.56 l -7.55,-4.14 c 5.32,-9.72 8.93,-20.49 10.44,-31.93 l 0.82,0.11 -16.51,-68.88 -1.87,1.41 v 0 c -6.77,-9.03 -15.16,-16.77 -24.73,-22.8 l 7.26,-11.52 c 4.95,3.12 9.62,6.63 13.97,10.5 l -53.08,-221.45 c -8.35,-32.1 -18.23,-60.01 -29.18,-83.32 m 4.55,292.01 -1.1,-13.58 c 2.84,-0.22 5.71,-0.34 8.61,-0.34 10.32,0 20.32,1.48 29.77,4.25 l -3.83,13.07 c -8.22,-2.41 -16.92,-3.7 -25.94,-3.7 -2.53,0 -5.04,0.1 -7.51,0.3 m -53.48,22.8 -9.03,-10.2 c 9.62,-8.51 20.81,-15.3 33.08,-19.88 l 4
 .76,12.76 v 0 c -10.68,3.98 -20.42,9.89 -28.81,17.32 m -29.18,50.29 -13.33,-2.75 c 2.66,-12.93 7.68,-25 14.59,-35.73 l 11.45,7.37 v 0 c -6.02,9.35 -10.39,19.85 -12.71,31.11 m -5.52,63.55 c -5.39,-11.48 -8.78,-24.09 -9.72,-37.36 l 13.58,-0.96 h 0.01 c 0.81,11.57 3.76,22.54 8.46,32.53 l -12.33,5.79 m 4.48,28.68 c 7.58,5.91 21.52,15.62 39.28,22.93 l -39.28,-22.93 m 71.79,30.32 3.13,1.83 c 0.6,0.06 1.19,0.11 1.79,0.17 l 0.31,-1.17 c -1.76,-0.23 -3.51,-0.51 -5.23,-0.83" /></clipPath><linearGradient
+       id="linearGradient288"
+       spreadMethod="pad"
+       gradientTransform="matrix(-6.11e-5,1397.71,1397.71,6.11e-5,1618.8,939.18)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop282"
+         offset="0"
+         style="stop-opacity:1;stop-color:#cceffc" /><stop
+         id="stop284"
+         offset="0.429448"
+         style="stop-opacity:1;stop-color:#cceffc" /><stop
+         id="stop286"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath298"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path296"
+         d="m 1750.05,902.199 c -1.02,5.43 -2.17,11.16 -3.46,17.141 6.08,-0.02 12.13,-0.039 18.22,-0.051 l -1.64,-17.051 c -4.37,-0.008 -8.76,-0.019 -13.12,-0.039" /></clipPath><linearGradient
+       id="linearGradient308"
+       spreadMethod="pad"
+       gradientTransform="matrix(-2896.74,-1.266e-4,-1.266e-4,2896.74,2896.74,910.78)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop300"
+         offset="0"
+         style="stop-opacity:1;stop-color:#ffffff" /><stop
+         id="stop302"
+         offset="0.552147"
+         style="stop-opacity:1;stop-color:#a6e2f9" /><stop
+         id="stop304"
+         offset="0.98773"
+         style="stop-opacity:1;stop-color:#ffffff" /><stop
+         id="stop306"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath320"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path318"
+         d="m 1712.23,902.102 c -0.1,5.808 -0.33,11.589 -0.69,17.339 4.84,-0.023 9.62,-0.031 14.46,-0.043 0.35,-5.718 0.57,-11.476 0.67,-17.257 -4.8,-0.02 -9.65,-0.032 -14.44,-0.039" /></clipPath><linearGradient
+       id="linearGradient330"
+       spreadMethod="pad"
+       gradientTransform="matrix(-2896.74,-1.266e-4,-1.266e-4,2896.74,2896.74,910.78)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop322"
+         offset="0"
+         style="stop-opacity:1;stop-color:#7fd6f7" /><stop
+         id="stop324"
+         offset="0.552147"
+         style="stop-opacity:1;stop-color:#26b9f1" /><stop
+         id="stop326"
+         offset="0.98773"
+         style="stop-opacity:1;stop-color:#7fd6f7" /><stop
+         id="stop328"
+         offset="1"
+         style="stop-opacity:1;stop-color:#7fd6f7" /></linearGradient><clipPath
+       id="clipPath342"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path340"
+         d="m 961.523,901.16 c -4.828,0.012 -9.625,0.012 -14.433,0.02 0.09,6.429 0.336,12.82 0.734,19.179 4.813,0 9.633,0.012 14.465,0.012 -0.414,-6.359 -0.672,-12.762 -0.766,-19.211" /></clipPath><linearGradient
+       id="linearGradient352"
+       spreadMethod="pad"
+       gradientTransform="matrix(-2896.74,-1.266e-4,-1.266e-4,2896.74,2896.74,910.78)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop344"
+         offset="0"
+         style="stop-opacity:1;stop-color:#7fd6f7" /><stop
+         id="stop346"
+         offset="0.552147"
+         style="stop-opacity:1;stop-color:#26b9f1" /><stop
+         id="stop348"
+         offset="0.98773"
+         style="stop-opacity:1;stop-color:#7fd6f7" /><stop
+         id="stop350"
+         offset="1"
+         style="stop-opacity:1;stop-color:#7fd6f7" /></linearGradient><clipPath
+       id="clipPath364"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path362"
+         d="m 1687.94,1028.87 c -2.31,6.08 -4.77,12.09 -7.39,18.01 l 13.21,5.83 c 1.06,-2.42 2.11,-4.85 3.12,-7.29 -2.91,-5.84 -5.89,-11.35 -8.94,-16.55" /></clipPath><linearGradient
+       id="linearGradient372"
+       spreadMethod="pad"
+       gradientTransform="matrix(-6.11e-5,1397.71,1397.71,6.11e-5,1618.8,939.18)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop366"
+         offset="0"
+         style="stop-opacity:1;stop-color:#4cc5f4" /><stop
+         id="stop368"
+         offset="0.429448"
+         style="stop-opacity:1;stop-color:#4cc5f4" /><stop
+         id="stop370"
+         offset="1"
+         style="stop-opacity:1;stop-color:#7fd6f7" /></linearGradient><clipPath
+       id="clipPath384"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path382"
+         d="m 1653.17,1097.89 c -10.45,16.3 -22.14,31.75 -34.91,46.21 l 10.81,9.56 c 13.27,-15.01 25.39,-31.05 36.25,-47.98 l -12.15,-7.79" /></clipPath><linearGradient
+       id="linearGradient392"
+       spreadMethod="pad"
+       gradientTransform="matrix(-6.11e-5,1397.71,1397.71,6.11e-5,1618.8,939.18)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop386"
+         offset="0"
+         style="stop-opacity:1;stop-color:#4cc5f4" /><stop
+         id="stop388"
+         offset="0.429448"
+         style="stop-opacity:1;stop-color:#4cc5f4" /><stop
+         id="stop390"
+         offset="1"
+         style="stop-opacity:1;stop-color:#7fd6f7" /></linearGradient><clipPath
+       id="clipPath404"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path402"
+         d="m 1576.67,1184.43 c -14.83,12.34 -30.64,23.55 -47.27,33.5 l 5.2,8.69 c 18.32,-9.51 35.14,-20.25 50.58,-31.95 l -8.51,-10.24" /></clipPath><linearGradient
+       id="linearGradient412"
+       spreadMethod="pad"
+       gradientTransform="matrix(-6.11e-5,1397.71,1397.71,6.11e-5,1618.8,939.18)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop406"
+         offset="0"
+         style="stop-opacity:1;stop-color:#4cc5f4" /><stop
+         id="stop408"
+         offset="0.429448"
+         style="stop-opacity:1;stop-color:#4cc5f4" /><stop
+         id="stop410"
+         offset="1"
+         style="stop-opacity:1;stop-color:#7fd6f7" /></linearGradient><clipPath
+       id="clipPath424"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path422"
+         d="m 1477.53,1243.76 c -12.98,5.25 -26.32,9.79 -39.97,13.58 -0.34,1.27 -0.68,2.54 -1.01,3.82 15.15,-3.19 29.57,-7.07 43.33,-11.6 l -2.35,-5.8" /></clipPath><linearGradient
+       id="linearGradient432"
+       spreadMethod="pad"
+       gradientTransform="matrix(-6.11e-5,1397.71,1397.71,6.11e-5,1618.8,939.18)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop426"
+         offset="0"
+         style="stop-opacity:1;stop-color:#4cc5f4" /><stop
+         id="stop428"
+         offset="0.429448"
+         style="stop-opacity:1;stop-color:#4cc5f4" /><stop
+         id="stop430"
+         offset="1"
+         style="stop-opacity:1;stop-color:#7fd6f7" /></linearGradient><clipPath
+       id="clipPath444"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path442"
+         d="m 1585.18,1194.67 c -15.44,11.7 -32.26,22.44 -50.58,31.95 l 2.21,3.7 c 17.28,-10.34 33.68,-21.98 49.09,-34.79 l -0.72,-0.86 m -105.3,54.89 c -13.76,4.53 -28.18,8.41 -43.33,11.6 -1.07,4.03 -2.14,8.12 -3.22,12.24 17.01,-4.33 33.58,-9.78 49.61,-16.26 l -3.06,-7.58" /></clipPath><linearGradient
+       id="linearGradient452"
+       spreadMethod="pad"
+       gradientTransform="matrix(-6.11e-5,1397.71,1397.71,6.11e-5,1618.8,939.18)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop446"
+         offset="0"
+         style="stop-opacity:1;stop-color:#66cef5" /><stop
+         id="stop448"
+         offset="0.429448"
+         style="stop-opacity:1;stop-color:#66cef5" /><stop
+         id="stop450"
+         offset="1"
+         style="stop-opacity:1;stop-color:#7fd6f7" /></linearGradient><clipPath
+       id="clipPath474"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path472"
+         d="m 1407.72,1382.28 -0.61,2.66 214.07,124.93 c -4.09,-3.18 -6.34,-5.26 -6.34,-5.26 l -207.12,-122.33 m 252.74,150.52 34.56,20.16 2.67,-10.02 -1.59,-0.92 c -12.89,-1.31 -24.96,-4.83 -35.64,-9.22 m 163.56,83.87 4.1,13.97 23.24,13.56 -3.23,-13.46 -24.11,-14.07" /></clipPath><linearGradient
+       id="linearGradient482"
+       spreadMethod="pad"
+       gradientTransform="matrix(-6.11e-5,1397.71,1397.71,6.11e-5,1618.8,939.18)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop476"
+         offset="0"
+         style="stop-opacity:1;stop-color:#5ccbf5" /><stop
+         id="stop478"
+         offset="0.429448"
+         style="stop-opacity:1;stop-color:#5ccbf5" /><stop
+         id="stop480"
+         offset="1"
+         style="stop-opacity:1;stop-color:#99def9" /></linearGradient><clipPath
+       id="clipPath492"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path490"
+         d="m 1409.45,1374.73 -1.73,7.55 207.12,122.33 c 0,0 2.25,2.08 6.34,5.26 l 39.28,22.93 c 10.68,4.39 22.75,7.91 35.64,9.22 l -3.13,-1.83 c -1.02,-0.19 -2.03,-0.39 -3.04,-0.61 l 0.22,-1.03 -24.59,-14.36 -2.88,5.38 c -11.48,-6.13 -21.69,-14.31 -30.15,-24.07 l 0.4,-0.35 -223.48,-130.42" /></clipPath><linearGradient
+       id="linearGradient500"
+       spreadMethod="pad"
+       gradientTransform="matrix(-6.11e-5,1397.71,1397.71,6.11e-5,1618.8,939.18)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop494"
+         offset="0"
+         style="stop-opacity:1;stop-color:#7ad4f7" /><stop
+         id="stop496"
+         offset="0.429448"
+         style="stop-opacity:1;stop-color:#7ad4f7" /><stop
+         id="stop498"
+         offset="1"
+         style="stop-opacity:1;stop-color:#99def9" /></linearGradient><clipPath
+       id="clipPath512"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path510"
+         d="m 2056.67,1752.44 -2.39,10.19 224.27,130.88 c 0,-3.87 0,-7.71 0,-11.58 l -221.88,-129.49 m 241.23,140.78 c 0,3.83 0,7.76 0,11.58 l 24.48,14.28 2.43,-10.16 -26.91,-15.7" /></clipPath><linearGradient
+       id="linearGradient520"
+       spreadMethod="pad"
+       gradientTransform="matrix(-5.91e-5,1353.09,1353.09,5.91e-5,2271.69,988.94)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop514"
+         offset="0"
+         style="stop-opacity:1;stop-color:#99def9" /><stop
+         id="stop516"
+         offset="0.570552"
+         style="stop-opacity:1;stop-color:#5ccbf5" /><stop
+         id="stop518"
+         offset="1"
+         style="stop-opacity:1;stop-color:#5ccbf5" /></linearGradient><clipPath
+       id="clipPath530"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path528"
+         d="m 2278.55,1881.93 c 0,3.87 0,7.71 0,11.58 l 19.35,11.29 c 0,-3.82 0,-7.75 0,-11.58 l -19.35,-11.29" /></clipPath><clipPath
+       id="clipPath556"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path554"
+         d="m 1712.39,1330.63 c -2.9,0 -5.77,0.12 -8.61,0.34 l 1.1,13.58 c 2.47,-0.2 4.98,-0.3 7.51,-0.3 9.02,0 17.72,1.29 25.94,3.7 l 3.83,-13.07 c -9.45,-2.77 -19.45,-4.25 -29.77,-4.25 m -36.94,6.64 c -12.27,4.58 -23.46,11.37 -33.08,19.88 l 9.03,10.2 c 8.39,-7.43 18.13,-13.34 28.81,-17.32 v 0 l -4.76,-12.76 m 93.17,9.54 -7.26,11.52 c 9.57,6.03 17.96,13.77 24.73,22.8 v 0 l 1.87,-1.41 -5.37,-22.41 c -4.35,-3.87 -9.02,-7.38 -13.97,-10.5 m -145.14,32.35 c -6.91,10.73 -11.93,22.8 -14.59,35.73 l 13.33,2.75 c 2.32,-11.26 6.69,-21.76 12.71,-31.11 v 0 l -11.45,-7.37 m -2.91,63.71 h -0.01 l -13.58,0.96 c 0.94,13.27 4.33,25.88 9.72,37.36 l 12.33,-5.79 c -4.7,-9.99 -7.65,-20.96 -8.46,-32.53" /></clipPath><linearGradient
+       id="linearGradient564"
+       spreadMethod="pad"
+       gradientTransform="matrix(-6.11e-5,1397.71,1397.71,6.11e-5,1618.8,939.18)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop558"
+         offset="0"
+         style="stop-opacity:1;stop-color:#66cef5" /><stop
+         id="stop560"
+         offset="0.429448"
+         style="stop-opacity:1;stop-color:#66cef5" /><stop
+         id="stop562"
+         offset="1"
+         style="stop-opacity:1;stop-color:#7fd6f7" /></linearGradient><clipPath
+       id="clipPath574"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path572"
+         d="m 1808.43,1465.12 c -1.9,6.75 -4.44,13.25 -7.67,19.44 l 4.39,2.4 c 2.12,-3.87 4,-7.89 5.63,-12.03 l -2.35,-9.81" /></clipPath><linearGradient
+       id="linearGradient582"
+       spreadMethod="pad"
+       gradientTransform="matrix(-6.11e-5,1397.71,1397.71,6.11e-5,1618.8,939.18)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop576"
+         offset="0"
+         style="stop-opacity:1;stop-color:#4cc5f4" /><stop
+         id="stop578"
+         offset="0.429448"
+         style="stop-opacity:1;stop-color:#4cc5f4" /><stop
+         id="stop580"
+         offset="1"
+         style="stop-opacity:1;stop-color:#7fd6f7" /></linearGradient><clipPath
+       id="clipPath592"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path590"
+         d="m 1803.65,1448.49 c -1.51,11.44 -5.12,22.21 -10.44,31.93 l 7.55,4.14 c 3.23,-6.19 5.77,-12.69 7.67,-19.44 l -3.96,-16.52 -0.82,-0.11 m -160.83,48.09 -9.89,8.57 32.63,19.04 3.54,-6.63 c -10,-5.34 -18.91,-12.48 -26.28,-20.98" /></clipPath><linearGradient
+       id="linearGradient600"
+       spreadMethod="pad"
+       gradientTransform="matrix(-6.11e-5,1397.71,1397.71,6.11e-5,1618.8,939.18)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop594"
+         offset="0"
+         style="stop-opacity:1;stop-color:#66cef5" /><stop
+         id="stop596"
+         offset="0.429448"
+         style="stop-opacity:1;stop-color:#66cef5" /><stop
+         id="stop598"
+         offset="1"
+         style="stop-opacity:1;stop-color:#7fd6f7" /></linearGradient><clipPath
+       id="clipPath618"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path616"
+         d="m 1692.81,1526.27 -2.66,12.28 2.82,1.64 c 1.72,0.32 3.47,0.6 5.23,0.83 l 3.53,-13.28 c -3.02,-0.35 -6,-0.84 -8.92,-1.47" /></clipPath><linearGradient
+       id="linearGradient626"
+       spreadMethod="pad"
+       gradientTransform="matrix(-6.11e-5,1397.71,1397.71,6.11e-5,1618.8,939.18)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop620"
+         offset="0"
+         style="stop-opacity:1;stop-color:#66cef5" /><stop
+         id="stop622"
+         offset="0.429448"
+         style="stop-opacity:1;stop-color:#66cef5" /><stop
+         id="stop624"
+         offset="1"
+         style="stop-opacity:1;stop-color:#7fd6f7" /></linearGradient><clipPath
+       id="clipPath636"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path634"
+         d="m 1632.93,1505.15 -0.4,0.35 c 8.46,9.76 18.67,17.94 30.15,24.07 l 2.88,-5.38 -32.63,-19.04 m 57.22,33.4 -0.22,1.03 c 1.01,0.22 2.02,0.42 3.04,0.61 l -2.82,-1.64" /></clipPath><linearGradient
+       id="linearGradient644"
+       spreadMethod="pad"
+       gradientTransform="matrix(-6.11e-5,1397.71,1397.71,6.11e-5,1618.8,939.18)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop638"
+         offset="0"
+         style="stop-opacity:1;stop-color:#3dc1f3" /><stop
+         id="stop640"
+         offset="0.429448"
+         style="stop-opacity:1;stop-color:#3dc1f3" /><stop
+         id="stop642"
+         offset="1"
+         style="stop-opacity:1;stop-color:#4cc5f4" /></linearGradient></defs><g
+     transform="matrix(1.3333333,0,0,-1.3333333,0,401.12)"
+     id="g10"><g
+       transform="scale(0.1)"
+       id="g12"><path
+         id="path14"
+         style="fill:#b2e6fa;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="M 1038.58,2353.51 C 914.258,2319.72 880.027,1899.37 880.027,1899.37 l 396.773,-54.19 -88.43,387.47 -65.07,104.24 -48.17,15.53 c -1.32,0.45 -2.63,0.82 -3.8,1.09 h -32.75" /><g
+         id="g16"><g
+           clip-path="url(#clipPath22)"
+           id="g18"><path
+             id="path32"
+             style="fill:url(#linearGradient30);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 2691.34,964.18 c -13.21,0.031 -25.05,3.129 -36.85,9.57 -17.61,9.621 -35.23,27.6 -51.27,54.91 -16.01,27.17 -30.24,63.28 -41.7,107.19 l -108.48,452.61 89.28,378.93 498.82,103.42 -178.02,-776.57 c -15.89,-61.31 -30.04,-113.5 -43.68,-156.96 -10.25,-32.66 -20.22,-60.39 -30.28,-83.26 -15.05,-34.39 -30.4,-57.418 -45.72,-70.801 -7.68,-6.75 -15.3,-11.301 -23.62,-14.367 -8.33,-3.063 -17.52,-4.661 -28.48,-4.672 m -120.14,1041.21 485.49,133.26 -7.84,-34.23 -477.65,-99.03 m 71.47,55.11 430.02,145.62 c -2.07,-7.28 -3.88,-14.43 -5.43,-21.37 l -1.88,-8.22 -422.71,-116.03 m -59.82,18.93 c 14.79,19.59 37.21,40.36 70.58,53.96 l 487.44,204.94 c -14.89,-16.62 -27.36,-35.89 -37.95,-55.97 -5.47,-10.44 -10.42,-21.13 -14.83,-31.84 l -505.24,-171.09" /></g></g><path
+         id="path34"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2439.29,1666.21 465.79,-320.86 1.42,2.06 -465.79,320.86" /><path
+         id="path36"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2444.81,1695.68 479.96,-276.18 2.69,4.67 -479.96,276.18" /><path
+         id="path38"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2450.55,1725.04 494.13,-231.5 3.51,7.48 -494.13,231.51" /><path
+         id="path40"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2456.53,1754.32 508.3,-186.82 3.85,10.47 -508.3,186.82" /><path
+         id="path42"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2462.78,1783.54 522.47,-142.13 3.68,13.55 -522.47,142.13" /><path
+         id="path44"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2469.25,1812.76 536.64,-97.45 3.02,16.65 -536.64,97.45" /><path
+         id="path46"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2475.98,1842 550.81,-52.77 1.89,19.72 -550.81,52.76" /><path
+         id="path48"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2482.91,1871.28 564.98,-8.09 0.33,22.69 -564.98,8.09" /><path
+         id="path50"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2490.03,1900.64 579.16,36.59 -1.62,25.52 -579.15,-36.59" /><path
+         id="path52"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2497.32,1930.07 593.32,81.27 -3.86,28.2 -593.32,-81.28" /><path
+         id="path54"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2504.71,1959.59 607.5,125.95 -6.37,30.69 -607.49,-125.95 6.36,-30.69" /><path
+         id="path56"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2512.23,1989.2 621.66,170.64 -9.07,33.01 -621.66,-170.64 9.07,-33.01" /><path
+         id="path58"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2519.8,2018.89 635.83,215.32 -11.9,35.15 -635.83,-215.31 11.9,-35.16" /><path
+         id="path60"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2527.43,2048.67 650,260 -14.86,37.14 -650,-260" /><g
+         id="g62"><g
+           clip-path="url(#clipPath68)"
+           id="g64"><path
+             id="path78"
+             style="fill:url(#linearGradient76);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 2530.88,1066.24 -233.8,234.13 c 0.53,214.41 0.82,419.09 0.82,580.84 0,4.02 0,7.99 0,12.01 l 26.91,15.7 188.2,-785.2 0.07,-0.25 c 5.34,-20.4 11.25,-39.49 17.8,-57.23 m -251.55,251.91 -119.33,119.5 c 0,0 -30.17,26.92 -50.22,87.71 l -53.11,227.08 221.88,129.49 c 0,-0.23 0,-0.5 0,-0.72 0,-157.26 0.28,-355.15 0.78,-563.06 m -225.05,444.48 -39.1,167.19 c -11.35,23.89 -23.37,35.23 -34.45,39.62 l 43.44,181.21 0.02,0.11 c 7.14,31.29 18.8,72.71 38.21,103.98 9.65,15.67 21,28.61 33.93,37.36 13.01,8.72 27.41,13.82 46.39,13.9 h 5.61 c 18.97,-0.08 33.37,-5.18 46.37,-13.9 9.71,-6.58 18.5,-15.46 26.38,-26.14 11.83,-15.99 21.42,-35.98 28.86,-56.4 7.48,-20.41 12.85,-41.18 16.91,-58.81 l 0.02,-0.09 11.87,-49.51 c -0.12,-67.26 -0.18,-136.66 -0.19,-207.64 l -224.27,-130.88 m 243.62,142.17 c -0.01,39.47 -0.03,78.34 -0.07,116.71 l 24.55,-102.43 -24.48,-14.28" /></g></g><g
+         id="g80"><g
+           clip-path="url(#clipPath86)"
+           id="g82"><path
+             id="path96"
+             style="fill:url(#linearGradient94);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1599.71,964.18 c -9.74,0 -18.1,1.281 -25.67,3.699 -13.18,4.281 -24.64,11.93 -36.65,25.723 -17.94,20.558 -35.54,55.388 -53.1,105.418 -14.85,42.05 -29.89,94.67 -46.73,158.32 13.65,-3.79 26.99,-8.33 39.97,-13.58 l 2.35,5.8 c 19.57,-6.43 37.8,-14.17 54.72,-22.94 l -5.2,-8.69 c 16.63,-9.95 32.44,-21.16 47.27,-33.5 l 8.51,10.24 c 52.91,-40.06 89.66,-91.3 115.15,-142.13 -1.14,-2.42 -2.29,-4.8 -3.45,-7.12 -1.01,2.44 -2.06,4.87 -3.12,7.29 l -13.21,-5.83 c 2.62,-5.92 5.08,-11.93 7.39,-18.01 -5.37,-9.17 -10.93,-17.33 -16.64,-24.45 -11.3,-14.17 -23,-24.209 -34.75,-30.67 -11.81,-6.441 -23.64,-9.539 -36.84,-9.57 m 29.36,189.48 -10.81,-9.56 c 12.77,-14.46 24.46,-29.91 34.91,-46.21 l 12.15,7.79 c -10.86,16.93 -22.98,32.97 -36.25,47.98 m -221.96,231.28 -183.39,800.07 -0.03,0.14 c -7.89,32.53 -20.62,69.12 -38.8,102.59 l 399.47,-318.82 110.66,-415.96 -34.56,-20.16 c -17.76,-7.31 -31.7,-17.02 -39.28,-22.93 l -214.07,-124.93 m 403.67,89.99 c -1.63,4.14 -3.51,8.16 -5.63,12.03 l -4.39,-2
 .4 c -3.6,6.91 -8.06,13.44 -13.47,19.56 2.48,3.74 4.97,7.94 7.46,12.65 l 29.27,99.9 24.11,14.07 -37.35,-155.81 m -114.68,67.09 1.59,0.92 0.2,-0.75 c -0.6,-0.06 -1.19,-0.11 -1.79,-0.17 m 132.02,88.62 109.75,374.47 -86.51,-360.91 -23.24,-13.56" /></g></g><path
+         id="path98"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1180.77,2279.5 500,-260 18.46,35.48 -500,260" /><path
+         id="path100"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1196.35,2210.48 486.64,-224.7 15.56,33.7 -486.64,224.69" /><path
+         id="path102"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1211.89,2141.52 473.29,-189.4 12.72,31.78 -473.29,189.4" /><path
+         id="path104"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1227.39,2072.62 459.94,-154.09 9.96,29.73 -459.94,154.09" /><path
+         id="path106"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1242.84,2003.82 446.58,-118.79 7.31,27.51 -446.58,118.78" /><path
+         id="path108"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1258.2,1935.09 433.23,-83.48 4.84,25.11 -433.23,83.49" /><path
+         id="path110"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1273.45,1866.46 419.87,-48.18 2.59,22.54 -419.87,48.19" /><path
+         id="path112"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1288.55,1797.92 406.52,-12.88 0.63,19.8 -406.52,12.88" /><path
+         id="path114"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1303.47,1729.45 393.17,22.42 -0.96,16.9 -393.17,-22.43" /><path
+         id="path116"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1318.17,1661.04 379.81,57.73 -2.11,13.88 -379.81,-57.73" /><path
+         id="path118"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1332.61,1592.65 366.46,93.03 -2.75,10.81 -366.45,-93.03" /><path
+         id="path120"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1346.77,1524.25 353.1,128.33 -2.82,7.78 -353.1,-128.33" /><path
+         id="path122"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1360.66,1455.8 339.74,163.63 -2.34,4.85 -339.74,-163.63" /><path
+         id="path124"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1374.26,1387.24 326.39,198.93 -1.3,2.14 -326.39,-198.94" /><path
+         id="path126"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 795.129,2170.07 433.331,-115.55 0.86,3.22 -433.336,115.56" /><path
+         id="path128"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 780.395,2112.88 456.655,-101.12 1.44,6.51 -456.654,101.11" /><path
+         id="path130"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 765.781,2055.65 479.999,-86.66 1.78,9.84 -480.001,86.66" /><path
+         id="path132"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 751.273,1998.42 503.337,-72.22 1.89,13.2 -503.332,72.22" /><path
+         id="path134"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 736.871,1941.18 526.659,-57.78 1.82,16.57 -526.662,57.78" /><path
+         id="path136"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 722.551,1883.94 549.989,-43.33 1.58,19.94 -549.999,43.33" /><path
+         id="path138"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 708.301,1826.7 573.339,-28.89 1.17,23.31 -573.337,28.88" /><path
+         id="path140"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 694.121,1769.47 596.669,-14.45 0.65,26.66 -596.674,14.45" /><path
+         id="path142"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 680,1712.24 h 620 v 30 H 680 Z" /><g
+         id="g144"><g
+           clip-path="url(#clipPath150)"
+           id="g146"><g
+             clip-path="url(#clipPath156)"
+             id="g152"><path
+               id="path168"
+               style="fill:url(#linearGradient166);fill-opacity:1;fill-rule:nonzero;stroke:none"
+               d="m 1334,2351 v 1 h -199 v 1 h -1 v 1 h -1 v 1 h -2 v 1 h -1 v 1 h -1 v 1 h -1 v 1 h -2 v 1 h -1 v 1 h -1 v 1 h -1 v 1 h -2 v 1 h -1 v 1 h -1 v 1 h -2 v 1 h -1 v 1 h -2 v 2 h 236 v 1 h 930 v -20 h -99 v 1 h -6 v 1 h -5 v 1 h -6 v 1 h -16 v 1 h -5 v -1 h -16 v -1 h -6 v -1 h -5 v -1 h -5 v -1 z m 963,0 v 5 h -1 v 15 h 52 v -1 h 394 v -1 h 287 v -1 h 145 v -2 h -2 v -1 h -1 v -1 h -1 v -1 h -2 v -1 h -1 v -1 h -1 v -1 h -1 v -1 h -2 v -1 h -1 v -1 h -1 v -1 h -1 v -1 h -2 v -1 h -114 v -1 h -285 v -1 h -385 v -1 z m -1358,2 v 1 H 824 v 1 h -88 v 1 h -66 v 1 h -49 v 1 h -34 v 1 h -19 v 1 h -7 v 2 h 7 v 1 h 21 v 1 h 34 v 1 h 50 v 1 h 68 v 1 h 89 v 1 h 117 v 1 h 50 v -1 h -1 v -1 h -1 v -1 h -1 v -1 h -1 v -1 h -1 v -1 h -1 v -1 h -1 v -1 h -2 v -1 h -1 v -1 h -1 v -1 h -1 v -1 h -1 v -1 h -1 v -1 h -1 v -1 h -1 v -1 z m 2299,1 v 14 h 21 v -1 h 185 v -1 h 147 v -1 h 113 v -1 h 80 v -1 h 49 v -1 h 17 v -2 h -15 v -1 h -47 v -1 h -78 v -1 h -111 v -1 h -145 v -1 h -183 v -1
 " /></g></g></g><g
+         id="g170"><g
+           clip-path="url(#clipPath176)"
+           id="g172"><path
+             id="path188"
+             style="fill:url(#linearGradient186);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 2288.22,0 c -3.1,0 -5.87,425.609 -7.64,904.238 5.09,0.032 10.24,0.051 15.29,0.082 C 2294.1,425.621 2291.33,0 2288.22,0 m 7.7,917.211 c -5.14,0.027 -10.21,0.051 -15.38,0.078 -0.49,132.441 -0.89,268.701 -1.21,400.861 l 17.75,-17.78 c -0.31,-126.62 -0.7,-256.61 -1.16,-383.159 m 1.52,1308.079 c -5.02,13.89 -11.02,28.04 -18.3,41.77 0.09,28.82 0.19,57.08 0.29,84.75 5.9,0.01 11.67,0.02 17.59,0.03 0.16,-40.94 0.3,-83.14 0.42,-126.55" /></g></g><g
+         id="g190"><g
+           clip-path="url(#clipPath196)"
+           id="g192"><g
+             transform="matrix(34.2002,0,0,817.2,2269.9,1293.9)"
+             id="g198"><image
+               id="image200"
+               xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAACqCAYAAABh0FXjAAAABHNCSVQICAgIfAhkiAAAAMFJREFUWIXVlUEOwCAIBLXxg311P9Sz9gWMCWQLeiXiAMva7+ddzTiXFcgKjmWyxtI2O+/upgZIVack7fQDSerM6FBGKRFaEZC3CaghES0DgSWk9NbvYOWkGdDtLFZKOSWc9a+wTPr/aTOMcXQg4pvomkTk/7PLfct+mfCb2D4aGaf1ixp16wbKoN00ntYhAWiTlmntqAoIngxNhYIJ6hOtg2gqAQ3RVZFhhLaMFF/NpMhqRNIsN7KzpBmaih32N+EDS2EyFQsIFuAAAAAASUVORK5CYII="
+               transform="matrix(1,0,0,-1,0,1)"
+               preserveAspectRatio="none"
+               style="image-rendering:optimizeSpeed"
+               height="1"
+               width="1" /></g></g></g><g
+         id="g202"><g
+           clip-path="url(#clipPath208)"
+           id="g204"><g
+             clip-path="url(#clipPath214)"
+             id="g210"><path
+               id="path226"
+               style="fill:url(#linearGradient224);fill-opacity:1;fill-rule:nonzero;stroke:none"
+               d="m 2279,2370 v 103 h 1 v 158 h 1 v 113 h 1 v 86 h 1 v 65 h 1 v 49 h 1 v 35 h 1 v 20 h 1 v 9 h 2 v -3 h 1 v -16 h 1 v -27 h 1 v -43 h 1 v -57 h 1 v -76 h 1 v -100 h 1 v -135 h 1 v -181" /></g></g></g><g
+         id="g228"><g
+           clip-path="url(#clipPath234)"
+           id="g230"><g
+             transform="matrix(34.2002,0,0,35.2002,2269.9,2344.9)"
+             id="g236"><image
+               id="image238"
+               xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAABHNCSVQICAgIfAhkiAAAACdJREFUCJljjDz55T8DEmBkRLCZGPAADMn///FI4tVJtCQLNkGYvQB+CAcj2355xAAAAABJRU5ErkJggg=="
+               transform="matrix(1,0,0,-1,0,1)"
+               preserveAspectRatio="none"
+               style="image-rendering:optimizeSpeed"
+               height="1"
+               width="1" /></g></g></g><g
+         id="g240"><g
+           clip-path="url(#clipPath246)"
+           id="g242"><path
+             id="path258"
+             style="fill:url(#linearGradient256);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1085.31,901.102 c -41.85,0 -83.17,0.019 -123.787,0.058 0.094,6.449 0.352,12.852 0.766,19.211 40.381,0.039 81.431,0.059 123.021,0.059 134.38,0 299.49,-0.211 474.89,-0.61 12.54,-3.84 25.76,-5.64 39.4,-5.64 0.04,0 0.07,0 0.11,0 0.07,-0.008 0.14,-0.008 0.22,-0.008 12.48,0 24.72,1.879 36.44,5.469 24.95,-0.071 50,-0.129 75.17,-0.2 0.36,-5.75 0.59,-11.531 0.69,-17.339 -230.74,-0.641 -454.23,-1 -626.92,-1 M 947.09,901.18 C 412.965,901.781 0,905.84 0,910.77 c 0,4.91 413.34,8.992 947.824,9.589 -0.398,-6.359 -0.644,-12.75 -0.734,-19.179 m 779.58,0.961 c -0.1,5.781 -0.32,11.539 -0.67,17.257 6.86,-0.019 13.73,-0.039 20.59,-0.058 1.29,-5.981 2.44,-11.711 3.46,-17.141 -7.8,-0.019 -15.6,-0.039 -23.38,-0.058 m 36.5,0.097 1.64,17.051 c 175.99,-0.519 354.37,-1.199 515.73,-2 0.01,-4.379 0.03,-8.68 0.04,-13.051 -161.93,-0.797 -340.79,-1.476 -517.41,-2 m 532.7,2.082 c 0.02,4.27 0.03,8.61 0.05,12.891 147.84,-0.742 280.82,-1.59 383.83,-2.52 3.76,-0.339 7.56,-0.519 11.37,-0.519 0.07,0 0.14
 ,0 0.22,0.008 0.02,0 0.04,0 0.06,0 3.32,0 6.61,0.101 9.87,0.32 121.04,-1.148 195.47,-2.41 195.47,-3.73 0,-2.481 -261.08,-4.739 -600.87,-6.45" /></g></g><g
+         id="g260"><g
+           clip-path="url(#clipPath266)"
+           id="g262"><g
+             transform="matrix(29.2002,0,0,30.2,2274.9,895.9)"
+             id="g268"><image
+               id="image270"
+               xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAABHNCSVQICAgIfAhkiAAAAC5JREFUCJljrL367T8jAypgZGBgYGFEE4ABJgYcgAVdJVwHNkFGRkZMoxgZIUoB6ywDY509eFoAAAAASUVORK5CYII="
+               transform="matrix(1,0,0,-1,0,1)"
+               preserveAspectRatio="none"
+               style="image-rendering:optimizeSpeed"
+               height="1"
+               width="1" /></g></g></g><path
+         id="path272"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1757.63,844.48 c 0,0 -1.05,22.75 -7.58,57.719 4.36,0.02 8.75,0.031 13.12,0.039 l -5.54,-57.758 m 7.18,74.809 c -6.09,0.012 -12.14,0.031 -18.22,0.051 -4.79,22.09 -11.63,47.672 -21.34,74.762 1.92,3 3.81,6.068 5.66,9.208 19.18,32.65 34.69,72.89 47.04,120.16 l 0.06,0.24 10.7,44.64 -23.9,-249.061 m -515.89,345.591 -2.38,10.02 c -4.91,-1.17 -9.79,-2.43 -14.64,-3.78 l 132.31,77.21 15.11,-65.96 0.09,-0.34 c 1.14,-4.37 2.26,-8.69 3.38,-12.97 -5.81,0.51 -11.75,0.93 -17.74,1.25 l 1.04,14.04 c -9.64,0.71 -19.38,1.07 -29.2,1.07 -10.41,0 -20.72,-0.4 -30.93,-1.21 l 1.09,-13.88 c -18.62,-0.92 -37.95,-2.71 -58.13,-5.45 m 501.26,213.09 c -25.16,0 -43.85,32.48 -43.85,32.48 l -4.6,17.29 c 3.5,0.41 7.05,0.61 10.66,0.61 4.78,0 9.46,-0.36 14.04,-1.06 l 1.97,12.91 c 8.8,-1.98 17.77,-5.28 26.76,-10.26 l -4.52,-9.88 v 0 c 10.33,-4.73 19.65,-11.31 27.51,-19.33 l 6.45,6.32 c 0.92,-0.96 1.82,-1.94 2.69,-2.93 -12.94,-19.45 -25.69,-26.15 -37.11,-26.15 m -51.98,63.05 -0.31,1.17 c 2.92,0.24 5.89,0.37 
 8.89,0.37 4.3,0 8.68,-0.27 13.11,-0.85 -2.48,0.17 -4.98,0.26 -7.5,0.26 -4.81,0 -9.55,-0.32 -14.19,-0.95" /><g
+         id="g274"><g
+           clip-path="url(#clipPath280)"
+           id="g276"><path
+             id="path290"
+             style="fill:url(#linearGradient288);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1700.33,1052.54 c -25.49,50.83 -62.24,102.07 -115.15,142.13 l 0.72,0.86 c -15.41,12.81 -31.81,24.45 -49.09,34.79 l -2.21,-3.7 c -16.92,8.77 -35.15,16.51 -54.72,22.94 l 3.06,7.58 c -16.03,6.48 -32.6,11.93 -49.61,16.26 -1.79,6.83 -3.6,13.78 -5.43,20.85 l -18.45,80.48 223.48,130.42 9.89,-8.57 c 7.37,8.5 16.28,15.64 26.28,20.98 l -3.54,6.63 24.59,14.36 2.66,-12.28 c 2.92,0.63 5.9,1.12 8.92,1.47 l 4.6,-17.29 c 0,0 18.69,-32.48 43.85,-32.48 11.42,0 24.17,6.7 37.11,26.15 5.41,-6.12 9.87,-12.65 13.47,-19.56 l -7.55,-4.14 c 5.32,-9.72 8.93,-20.49 10.44,-31.93 l 0.82,0.11 -16.51,-68.88 -1.87,1.41 v 0 c -6.77,-9.03 -15.16,-16.77 -24.73,-22.8 l 7.26,-11.52 c 4.95,3.12 9.62,6.63 13.97,10.5 l -53.08,-221.45 c -8.35,-32.1 -18.23,-60.01 -29.18,-83.32 m 4.55,292.01 -1.1,-13.58 c 2.84,-0.22 5.71,-0.34 8.61,-0.34 10.32,0 20.32,1.48 29.77,4.25 l -3.83,13.07 c -8.22,-2.41 -16.92,-3.7 -25.94,-3.7 -2.53,0 -5.04,0.1 -7.51,0.3 m -53.48,22.8 -9.03,-10.2 c 9.62,-8.51 20.81,-15.3 33.08,-19.88
  l 4.76,12.76 v 0 c -10.68,3.98 -20.42,9.89 -28.81,17.32 m -29.18,50.29 -13.33,-2.75 c 2.66,-12.93 7.68,-25 14.59,-35.73 l 11.45,7.37 v 0 c -6.02,9.35 -10.39,19.85 -12.71,31.11 m -5.52,63.55 c -5.39,-11.48 -8.78,-24.09 -9.72,-37.36 l 13.58,-0.96 h 0.01 c 0.81,11.57 3.76,22.54 8.46,32.53 l -12.33,5.79 m 4.48,28.68 c 7.58,5.91 21.52,15.62 39.28,22.93 l -39.28,-22.93 m 71.79,30.32 3.13,1.83 c 0.6,0.06 1.19,0.11 1.79,0.17 l 0.31,-1.17 c -1.76,-0.23 -3.51,-0.51 -5.23,-0.83" /></g></g><g
+         id="g292"><g
+           clip-path="url(#clipPath298)"
+           id="g294"><path
+             id="path310"
+             style="fill:url(#linearGradient308);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1750.05,902.199 c -1.02,5.43 -2.17,11.16 -3.46,17.141 6.08,-0.02 12.13,-0.039 18.22,-0.051 l -1.64,-17.051 c -4.37,-0.008 -8.76,-0.019 -13.12,-0.039" /></g></g><path
+         id="path312"
+         style="fill:#7fd6f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1336.89,505.809 c -16.84,0 -33.44,1.07 -49.73,3.14 l 1.82,14.321 c 15.69,-2 31.68,-3.032 47.91,-3.032 3.33,0 6.65,0.043 9.95,0.133 l 0.38,-14.43 c -3.43,-0.089 -6.87,-0.132 -10.33,-0.132 m 70.15,6.293 -2.58,14.199 c 19.22,3.5 37.93,8.449 56,14.75 l 4.75,-13.621 c -18.78,-6.551 -38.21,-11.7 -58.17,-15.328 m -178.78,9.046 c -19.45,5.633 -38.27,12.743 -56.34,21.192 l 6.12,13.07 c 17.39,-8.14 35.51,-14.98 54.24,-20.398 l -4.02,-13.864 m 292.01,30.403 -6.8,12.73 c 17.1,9.141 33.42,19.559 48.82,31.141 v 0 l 8.67,-11.531 c -15.98,-12.032 -32.93,-22.852 -50.69,-32.34 m -400.72,20.418 c -16.68,11.23 -32.46,23.711 -47.18,37.32 l 9.8,10.602 c 14.18,-13.11 29.37,-25.129 45.44,-35.942 l -8.06,-11.98 m 496.56,51.64 -10.33,10.082 c 13.48,13.829 25.9,28.7 37.13,44.469 l 11.75,-8.371 c -11.66,-16.379 -24.55,-31.82 -38.55,-46.18 m -584.65,29.762 c -12.45,15.668 -23.71,32.32 -33.667,49.82 l 12.547,7.137 c 9.58,-16.848 20.43,-32.887 32.42,-47.976 l -11.3,-8.981 m 654.22,67.981 -12.91,6.45
 7 c 8.61,17.179 15.93,35.113 21.85,53.671 l 13.75,-4.378 c -6.15,-19.282 -13.76,-37.911 -22.69,-55.75 M 972.203,757.59 c -7.051,18.609 -12.715,37.898 -16.871,57.738 l 14.125,2.961 c 4.004,-19.109 9.457,-37.668 16.242,-55.59 l -13.496,-5.109 m 749.927,78.058 -14.26,2.211 c 2.91,18.821 4.42,38.11 4.42,57.75 0,2.172 -0.02,4.332 -0.06,6.493 4.79,0.007 9.64,0.019 14.44,0.039 0.03,-2.172 0.05,-4.352 0.05,-6.532 0,-20.379 -1.57,-40.41 -4.59,-59.961 m 3.87,83.75 c -4.84,0.012 -9.62,0.02 -14.46,0.043 -0.33,5.309 -0.77,10.59 -1.33,15.84 v 0 l 14.36,1.508 c 0.6,-5.758 1.08,-11.559 1.43,-17.391" /><g
+         id="g314"><g
+           clip-path="url(#clipPath320)"
+           id="g316"><path
+             id="path332"
+             style="fill:url(#linearGradient330);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1712.23,902.102 c -0.1,5.808 -0.33,11.589 -0.69,17.339 4.84,-0.023 9.62,-0.031 14.46,-0.043 0.35,-5.718 0.57,-11.476 0.67,-17.257 -4.8,-0.02 -9.65,-0.032 -14.44,-0.039" /></g></g><path
+         id="path334"
+         style="fill:#7fd6f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 947.59,874.969 c -0.36,6.832 -0.539,13.722 -0.539,20.64 0,1.86 0.011,3.711 0.039,5.571 4.808,-0.008 9.605,-0.008 14.433,-0.02 -0.027,-1.851 -0.039,-3.699 -0.039,-5.551 0,-6.668 0.172,-13.3 0.52,-19.89 l -14.414,-0.75 m 0.234,45.39 c 0.309,4.93 0.711,9.84 1.203,14.719 l 14.36,-1.437 c -0.446,-4.403 -0.809,-8.821 -1.098,-13.27 -4.832,0 -9.652,-0.012 -14.465,-0.012" /><g
+         id="g336"><g
+           clip-path="url(#clipPath342)"
+           id="g338"><path
+             id="path354"
+             style="fill:url(#linearGradient352);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 961.523,901.16 c -4.828,0.012 -9.625,0.012 -14.433,0.02 0.09,6.429 0.336,12.82 0.734,19.179 4.813,0 9.633,0.012 14.465,0.012 -0.414,-6.359 -0.672,-12.762 -0.766,-19.211" /></g></g><path
+         id="path356"
+         style="fill:#7fd6f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 973.621,990.641 -13.969,3.648 c 5.118,19.601 11.723,38.611 19.688,56.881 l 13.23,-5.76 c -7.668,-17.6 -14.023,-35.89 -18.949,-54.769" /><g
+         id="g358"><g
+           clip-path="url(#clipPath364)"
+           id="g360"><path
+             id="path374"
+             style="fill:url(#linearGradient372);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1687.94,1028.87 c -2.31,6.08 -4.77,12.09 -7.39,18.01 l 13.21,5.83 c 1.06,-2.42 2.11,-4.85 3.12,-7.29 -2.91,-5.84 -5.89,-11.35 -8.94,-16.55" /></g></g><path
+         id="path376"
+         style="fill:#7fd6f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1019.76,1096.57 -12.18,7.74 c 10.79,16.98 22.86,33.08 36.07,48.15 l 10.85,-9.52 c -12.72,-14.51 -24.35,-30.01 -34.74,-46.37" /><g
+         id="g378"><g
+           clip-path="url(#clipPath384)"
+           id="g380"><path
+             id="path394"
+             style="fill:url(#linearGradient392);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1653.17,1097.89 c -10.45,16.3 -22.14,31.75 -34.91,46.21 l 10.81,9.56 c 13.27,-15.01 25.39,-31.05 36.25,-47.98 l -12.15,-7.79" /></g></g><path
+         id="path396"
+         style="fill:#7fd6f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1095.92,1183.44 -4.68,5.59 50.84,29.67 0.95,-1.58 c -16.58,-10.02 -32.33,-21.29 -47.11,-33.68 m 7,23.98 c 10.48,7.88 21.38,15.25 32.65,22.05 l 1.34,-2.21 -33.99,-19.84" /><g
+         id="g398"><g
+           clip-path="url(#clipPath404)"
+           id="g400"><path
+             id="path414"
+             style="fill:url(#linearGradient412);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1576.67,1184.43 c -14.83,12.34 -30.64,23.55 -47.27,33.5 l 5.2,8.69 c 18.32,-9.51 35.14,-20.25 50.58,-31.95 l -8.51,-10.24" /></g></g><path
+         id="path416"
+         style="fill:#7fd6f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1194.74,1243.14 -2.08,5.08 17.94,10.47 c 13.07,2.43 25.87,4.5 38.32,6.19 l 0.95,-4.03 c -18.97,-4.5 -37.39,-10.45 -55.13,-17.71" /><g
+         id="g418"><g
+           clip-path="url(#clipPath424)"
+           id="g420"><path
+             id="path434"
+             style="fill:url(#linearGradient432);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1477.53,1243.76 c -12.98,5.25 -26.32,9.79 -39.97,13.58 -0.34,1.27 -0.68,2.54 -1.01,3.82 15.15,-3.19 29.57,-7.07 43.33,-11.6 l -2.35,-5.8" /></g></g><path
+         id="path436"
+         style="fill:#7fd6f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1307.09,1269.83 -0.04,0.5 c 9.97,0.49 19.72,0.73 29.26,0.73 9.81,0 19.38,-0.25 28.74,-0.75 l -0.03,-0.36 c -9.28,0.69 -18.66,1.04 -28.13,1.04 -10.03,0 -19.97,-0.39 -29.8,-1.16 v 0" /><g
+         id="g438"><g
+           clip-path="url(#clipPath444)"
+           id="g440"><path
+             id="path454"
+             style="fill:url(#linearGradient452);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1585.18,1194.67 c -15.44,11.7 -32.26,22.44 -50.58,31.95 l 2.21,3.7 c 17.28,-10.34 33.68,-21.98 49.09,-34.79 l -0.72,-0.86 m -105.3,54.89 c -13.76,4.53 -28.18,8.41 -43.33,11.6 -1.07,4.03 -2.14,8.12 -3.22,12.24 17.01,-4.33 33.58,-9.78 49.61,-16.26 l -3.06,-7.58" /></g></g><path
+         id="path456"
+         style="fill:#7fd6f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1210.6,1258.69 21.3,12.43 c 4.85,1.35 9.73,2.61 14.64,3.78 l 2.38,-10.02 c -12.45,-1.69 -25.25,-3.76 -38.32,-6.19 m 154.45,11.62 c -9.36,0.5 -18.93,0.75 -28.74,0.75 -9.54,0 -19.29,-0.24 -29.26,-0.73 l -1.09,13.88 c 10.21,0.81 20.52,1.21 30.93,1.21 9.82,0 19.56,-0.36 29.2,-1.07 l -1.04,-14.04" /><path
+         id="path458"
+         style="fill:#99def9;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 773.996,1003.89 -5.043,8.64 333.967,194.89 c -5.54,-4.16 -10.97,-8.47 -16.27,-12.91 l 4.59,-5.48 -317.244,-185.14 m 368.084,214.81 -5.17,8.56 224.96,131.28 0.67,-2.94 -157.64,-93.09 c -5.26,-1.9 -10.48,-3.9 -15.63,-6.01 l 3.39,-8.28 -50.58,-29.52" /><path
+         id="path460"
+         style="fill:#99def9;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1204.9,1262.51 157.64,93.09 1.67,-7.27 -132.31,-77.21 c -9.14,-2.55 -18.14,-5.43 -27,-8.61" /><path
+         id="path462"
+         style="fill:#4cc5f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1091.24,1189.03 -4.59,5.48 c 5.3,4.44 10.73,8.75 16.27,12.91 l 33.99,19.84 5.17,-8.56 -50.84,-29.67 m 101.42,59.19 -3.39,8.28 c 5.15,2.11 10.37,4.11 15.63,6.01 l -12.59,-7.44 c 6.18,1.29 12.25,2.49 18.29,3.62 l -17.94,-10.47" /><path
+         id="path464"
+         style="fill:#4cc5f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1192.31,1255.07 12.59,7.44 c 8.86,3.18 17.86,6.06 27,8.61 l -21.3,-12.43 c -6.04,-1.13 -12.11,-2.33 -18.29,-3.62" /><path
+         id="path466"
+         style="fill:#99def9;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1697.69,1542.94 -2.67,10.02 133.1,77.68 -4.1,-13.97 -126.33,-73.73" /><g
+         id="g468"><g
+           clip-path="url(#clipPath474)"
+           id="g470"><path
+             id="path484"
+             style="fill:url(#linearGradient482);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1407.72,1382.28 -0.61,2.66 214.07,124.93 c -4.09,-3.18 -6.34,-5.26 -6.34,-5.26 l -207.12,-122.33 m 252.74,150.52 34.56,20.16 2.67,-10.02 -1.59,-0.92 c -12.89,-1.31 -24.96,-4.83 -35.64,-9.22 m 163.56,83.87 4.1,13.97 23.24,13.56 -3.23,-13.46 -24.11,-14.07" /></g></g><g
+         id="g486"><g
+           clip-path="url(#clipPath492)"
+           id="g488"><path
+             id="path502"
+             style="fill:url(#linearGradient500);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1409.45,1374.73 -1.73,7.55 207.12,122.33 c 0,0 2.25,2.08 6.34,5.26 l 39.28,22.93 c 10.68,4.39 22.75,7.91 35.64,9.22 l -3.13,-1.83 c -1.02,-0.19 -2.03,-0.39 -3.04,-0.61 l 0.22,-1.03 -24.59,-14.36 -2.88,5.38 c -11.48,-6.13 -21.69,-14.31 -30.15,-24.07 l 0.4,-0.35 -223.48,-130.42" /></g></g><path
+         id="path504"
+         style="fill:#99def9;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1907.91,1665.63 3.23,13.46 143.14,83.54 2.39,-10.19 -148.76,-86.81" /><g
+         id="g506"><g
+           clip-path="url(#clipPath512)"
+           id="g508"><path
+             id="path522"
+             style="fill:url(#linearGradient520);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 2056.67,1752.44 -2.39,10.19 224.27,130.88 c 0,-3.87 0,-7.71 0,-11.58 l -221.88,-129.49 m 241.23,140.78 c 0,3.83 0,7.76 0,11.58 l 24.48,14.28 2.43,-10.16 -26.91,-15.7" /></g></g><g
+         id="g524"><g
+           clip-path="url(#clipPath530)"
+           id="g526"><g
+             transform="matrix(34.2002,0,0,39.2,2269.9,1874.9)"
+             id="g532"><image
+               id="image534"
+               xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAICAYAAAA1BOUGAAAABHNCSVQICAgIfAhkiAAAABtJREFUCJlj1Nj58T8DDsCES4IySRacFtJOJwA6BATj+uIWQQAAAABJRU5ErkJggg=="
+               transform="matrix(1,0,0,-1,0,1)"
+               preserveAspectRatio="none"
+               style="image-rendering:optimizeSpeed"
+               height="1"
+               width="1" /></g></g></g><path
+         id="path536"
+         style="fill:#99def9;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2369.92,1935.25 -2.44,10.15 83.18,48.55 4.36,-3.25 0.69,-5.39 -85.79,-50.06" /><path
+         id="path538"
+         style="fill:#99def9;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2460.1,1950.79 -4.39,34.52 -0.69,5.39 -4.36,3.25 -27.9,20.81 94.3,12.23 0.05,-0.15 -0.75,-1.01 -13.2,-3.62 2.81,-10.23 -45.87,-61.19" /><path
+         id="path540"
+         style="fill:#99def9;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2505.97,2011.98 -2.81,10.23 13.2,3.62 -10.39,-13.85" /><path
+         id="path542"
+         style="fill:#99def9;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2517.11,2026.84 -0.05,0.15 0.19,0.03 -0.14,-0.18" /><path
+         id="path544"
+         style="fill:#00adef;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 3238.42,2387.75 c -25.29,0.04 -48.39,-8.94 -67.64,-22.5 -28.99,-20.45 -50.84,-50.63 -67.86,-82.89 -16.94,-32.34 -28.83,-66.99 -35.67,-97.65 l 0.02,0.08 -204.23,-890.9 24.37,-5.58 -24.2,6.27 c -15.93,-61.46 -30.11,-113.76 -43.77,-157.3 -10.25,-32.66 -20.22,-60.39 -30.28,-83.26 -15.05,-34.39 -30.4,-57.418 -45.72,-70.801 -7.68,-6.75 -15.3,-11.301 -23.62,-14.367 -8.33,-3.063 -17.52,-4.661 -28.48,-4.672 -13.21,0.031 -25.05,3.129 -36.85,9.57 -17.61,9.621 -35.23,27.6 -51.27,54.91 -16.04,27.22 -30.3,63.41 -41.76,107.43 l -24.19,-6.31 24.31,5.83 -246.02,1026.45 0.01,-0.07 c -7.74,33.19 -19.88,79.08 -44.38,119 -12.31,19.93 -27.93,38.56 -48.4,52.48 -20.39,13.94 -45.81,22.62 -74.46,22.53 h -5.61 c -28.66,0.09 -54.08,-8.59 -74.47,-22.53 -15.35,-10.42 -27.99,-23.55 -38.53,-37.83 -15.79,-21.44 -27.02,-45.53 -35.59,-68.91 -8.54,-23.37 -14.36,-46.1 -18.66,-64.74 l 0.03,0.11 -246.05,-1026.49 24.31,-5.83 -24.19,6.31 c -15.25,-58.71 -35.62,-103.42 -58.27,-131.67 -11.3,-14.17 -23,-24.209 -
 34.75,-30.67 -11.81,-6.441 -23.64,-9.539 -36.84,-9.57 -9.74,0 -18.1,1.281 -25.67,3.699 -13.18,4.281 -24.64,11.93 -36.65,25.723 -17.94,20.558 -35.54,55.388 -53.1,105.418 -17.66,49.99 -35.58,114.91 -56.48,195.56 l -24.2,-6.27 24.37,5.58 -204.26,891.12 -0.03,0.14 c -10.05,41.44 -27.95,89.46 -54.98,129.23 -13.58,19.85 -29.52,37.74 -48.77,51.19 -19.15,13.42 -42.16,22.23 -67.33,22.18 -12.3,0.02 -24.23,-2.54 -35.1,-7.13 -20.467,-8.68 -36.905,-23.85 -50.67,-42.07 -24.016,-32.02 -41.102,-74.47 -54.809,-120.76 -20.375,-69.38 -32.316,-147.49 -39.367,-208.67 -7.023,-61.13 -9.055,-105.19 -9.074,-105.59 l 49.949,-2.3 0.059,1.2 c 0.625,12.78 7.05,126.78 30.093,235.75 11.43,54.41 27.266,107.61 47.172,144.91 9.877,18.65 20.737,33.12 31.247,42.02 5.25,4.48 10.35,7.61 15.3,9.63 4.97,2.01 9.8,2.99 15.2,3.01 13.64,-0.05 26.03,-4.42 38.74,-13.2 18.96,-13.07 37.21,-36.75 51.66,-64.51 14.53,-27.7 25.48,-59.16 32.07,-86.6 l 24.3,5.85 -24.36,-5.58 204.3,-891.34 0.09,-0.34 c 16.02,-61.76 30.35,-114.71 44.48,-
 159.73 10.61,-33.77 21.08,-63.08 32.21,-88.4 16.72,-37.9 34.81,-67.259 58.44,-88.201 11.8,-10.41 25.04,-18.508 39.43,-23.781 14.39,-5.297 29.78,-7.758 45.74,-7.738 21.49,-0.039 42.29,5.468 60.91,15.75 28.04,15.461 51.11,40.808 70.29,73.38 19.18,32.65 34.69,72.89 47.04,120.16 l 0.06,0.24 246.16,1026.94 0.02,0.11 c 7.14,31.29 18.8,72.71 38.21,103.98 9.65,15.67 21,28.61 33.93,37.36 13.01,8.72 27.41,13.82 46.39,13.9 h 5.61 c 18.97,-0.08 33.37,-5.18 46.37,-13.9 9.71,-6.58 18.5,-15.46 26.38,-26.14 11.83,-15.99 21.42,-35.98 28.86,-56.4 7.48,-20.41 12.85,-41.18 16.91,-58.81 l 0.02,-0.09 246.14,-1026.94 0.07,-0.25 c 16.5,-63 38.46,-113.6 67.56,-150.232 14.57,-18.258 31.1,-33.047 49.77,-43.308 18.63,-10.282 39.43,-15.789 60.93,-15.75 14.19,-0.008 27.91,1.922 40.9,6.082 22.82,7.226 42.72,21.41 59.24,40.636 24.87,28.954 43.74,68.792 62.42,121.482 18.59,52.72 36.69,118.58 57.71,199.65 l 0.09,0.34 204.34,891.41 0.02,0.09 c 7.74,35.16 24.36,78.84 46.84,111.54 11.19,16.39 23.76,29.96 36.56,38.89 12
 .9,8.96 25.43,13.41 38.96,13.45 v 50" /><path
+         id="path546"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2254.25,2214.02 c 0,-60.14 -48.76,-108.89 -108.9,-108.89 -60.14,0 -108.89,48.75 -108.89,108.89 0,60.14 48.75,108.89 108.89,108.89 60.14,0 108.9,-48.75 108.9,-108.89" /><path
+         id="path548"
+         style="fill:#00adef;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2254.25,2214.02 h -10.28 c -0.01,-27.26 -11.02,-51.85 -28.89,-69.73 -17.88,-17.86 -42.47,-28.87 -69.73,-28.88 -27.26,0.01 -51.85,11.02 -69.73,28.88 -17.86,17.88 -28.88,42.47 -28.89,69.73 0.01,27.27 11.03,51.86 28.89,69.73 17.88,17.86 42.47,28.88 69.73,28.89 27.26,-0.01 51.85,-11.03 69.73,-28.89 17.87,-17.87 28.88,-42.46 28.89,-69.73 h 20.56 c -0.01,65.83 -53.36,119.17 -119.18,119.18 -65.82,-0.01 -119.17,-53.35 -119.17,-119.18 0,-65.82 53.35,-119.16 119.17,-119.17 65.82,0.01 119.17,53.35 119.18,119.17 h -10.28" /><g
+         id="g550"><g
+           clip-path="url(#clipPath556)"
+           id="g552"><path
+             id="path566"
+             style="fill:url(#linearGradient564);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1712.39,1330.63 c -2.9,0 -5.77,0.12 -8.61,0.34 l 1.1,13.58 c 2.47,-0.2 4.98,-0.3 7.51,-0.3 9.02,0 17.72,1.29 25.94,3.7 l 3.83,-13.07 c -9.45,-2.77 -19.45,-4.25 -29.77,-4.25 m -36.94,6.64 c -12.27,4.58 -23.46,11.37 -33.08,19.88 l 9.03,10.2 c 8.39,-7.43 18.13,-13.34 28.81,-17.32 v 0 l -4.76,-12.76 m 93.17,9.54 -7.26,11.52 c 9.57,6.03 17.96,13.77 24.73,22.8 v 0 l 1.87,-1.41 -5.37,-22.41 c -4.35,-3.87 -9.02,-7.38 -13.97,-10.5 m -145.14,32.35 c -6.91,10.73 -11.93,22.8 -14.59,35.73 l 13.33,2.75 c 2.32,-11.26 6.69,-21.76 12.71,-31.11 v 0 l -11.45,-7.37 m -2.91,63.71 h -0.01 l -13.58,0.96 c 0.94,13.27 4.33,25.88 9.72,37.36 l 12.33,-5.79 c -4.7,-9.99 -7.65,-20.96 -8.46,-32.53" /></g></g><g
+         id="g568"><g
+           clip-path="url(#clipPath574)"
+           id="g570"><path
+             id="path584"
+             style="fill:url(#linearGradient582);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1808.43,1465.12 c -1.9,6.75 -4.44,13.25 -7.67,19.44 l 4.39,2.4 c 2.12,-3.87 4,-7.89 5.63,-12.03 l -2.35,-9.81" /></g></g><g
+         id="g586"><g
+           clip-path="url(#clipPath592)"
+           id="g588"><path
+             id="path602"
+             style="fill:url(#linearGradient600);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1803.65,1448.49 c -1.51,11.44 -5.12,22.21 -10.44,31.93 l 7.55,4.14 c 3.23,-6.19 5.77,-12.69 7.67,-19.44 l -3.96,-16.52 -0.82,-0.11 m -160.83,48.09 -9.89,8.57 32.63,19.04 3.54,-6.63 c -10,-5.34 -18.91,-12.48 -26.28,-20.98" /></g></g><path
+         id="path604"
+         style="fill:#7fd6f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1784.6,1507.05 c -0.88,0.92 -1.78,1.83 -2.71,2.73 -8.84,8.61 -17.79,15.21 -26.73,20.16 l 1.14,2.5 c 11.87,-5.43 22.56,-12.98 31.57,-22.18 l -3.27,-3.21" /><path
+         id="path606"
+         style="fill:#7fd6f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1778.15,1500.73 c -7.86,8.02 -17.18,14.6 -27.51,19.33 v 0 l 4.52,9.88 c 8.94,-4.95 17.89,-11.55 26.73,-20.16 0.93,-0.9 1.83,-1.81 2.71,-2.73 l -6.45,-6.32" /><path
+         id="path608"
+         style="fill:#7fd6f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1728.4,1540.2 c -2.86,0.64 -5.69,1.14 -8.51,1.51 2.9,-0.2 5.76,-0.52 8.59,-0.96 l -0.08,-0.55" /><path
+         id="path610"
+         style="fill:#7fd6f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1726.43,1527.29 c -4.58,0.7 -9.26,1.06 -14.04,1.06 -3.61,0 -7.16,-0.2 -10.66,-0.61 l -3.53,13.28 c 4.64,0.63 9.38,0.95 14.19,0.95 2.52,0 5.02,-0.09 7.5,-0.26 2.82,-0.37 5.65,-0.87 8.51,-1.51 l -1.97,-12.91" /><g
+         id="g612"><g
+           clip-path="url(#clipPath618)"
+           id="g614"><path
+             id="path628"
+             style="fill:url(#linearGradient626);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1692.81,1526.27 -2.66,12.28 2.82,1.64 c 1.72,0.32 3.47,0.6 5.23,0.83 l 3.53,-13.28 c -3.02,-0.35 -6,-0.84 -8.92,-1.47" /></g></g><g
+         id="g630"><g
+           clip-path="url(#clipPath636)"
+           id="g632"><path
+             id="path646"
+             style="fill:url(#linearGradient644);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1632.93,1505.15 -0.4,0.35 c 8.46,9.76 18.67,17.94 30.15,24.07 l 2.88,-5.38 -32.63,-19.04 m 57.22,33.4 -0.22,1.03 c 1.01,0.22 2.02,0.42 3.04,0.61 l -2.82,-1.64" /></g></g><path
+         id="path648"
+         style="fill:#00adef;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1782.59,1357.31 5.37,22.41 9.03,-6.76 c -4.27,-5.69 -9.1,-10.93 -14.4,-15.65 m 28.46,41.03 -12.71,4.89 c 3.94,10.26 6.11,21.39 6.11,33.06 h 13.62 c 0,-13.35 -2.49,-26.16 -7.02,-37.95 m -6.58,50.26 3.96,16.52 2.35,9.81 c 3.07,-7.81 5.24,-16.07 6.37,-24.66 l -12.68,-1.67" /></g></g></svg>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-wave/blob/52a47845/website/source/images/WaveDemo.webm
----------------------------------------------------------------------
diff --git a/website/source/images/WaveDemo.webm b/website/source/images/WaveDemo.webm
new file mode 100644
index 0000000..bb929e0
Binary files /dev/null and b/website/source/images/WaveDemo.webm differ

http://git-wip-us.apache.org/repos/asf/incubator-wave/blob/52a47845/website/source/images/middleman-logo.svg
----------------------------------------------------------------------
diff --git a/website/source/images/middleman-logo.svg b/website/source/images/middleman-logo.svg
deleted file mode 100644
index 98ef9fc..0000000
--- a/website/source/images/middleman-logo.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500" enable-background="new 0 0 500 500"><g><path fill="#ECC561" d="M1.3 0h500v500H1.3z"/><path fill="#fff" d="M446 165.2v172.1l-41.7 5.4V233.6l-40.8 76.9h-.9l-43-77.2v119l-49.1 4.4V141.5l52.6 7.4 40.3 76.6 38.3-65.9zM445 115.7L254 77.2v27.2l191 32.4z"/><path d="M59.9 164.9v170.8l41.7 7.1V234.7l40.8 76.9h.9l43-77.2v116.2l49.2 7.3V141.2l-52.7 7.4-40.3 78.1-38.3-68.8zM59 115.7l195-38.5v28.6L59 138.1z" opacity=".25"/><path fill="#fff" d="M445 380.6L254 419v-28.5l191-31z"/><path opacity=".25" d="M59 380.6L254 419v-28.5L59 358.1z"/></g></svg>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-wave/blob/52a47845/website/source/index.html.erb
----------------------------------------------------------------------
diff --git a/website/source/index.html.erb b/website/source/index.html.erb
index 9a74ae6..1e5dfad 100644
--- a/website/source/index.html.erb
+++ b/website/source/index.html.erb
@@ -1,13 +1,49 @@
 ---
-title: Welcome to Middleman
 ---
 
-<div class="welcome">
-  <div class="logo">
-    <%= image_tag "middleman-logo.svg" %>
+<div class="row full" style="max-height: 600px;">
+  <video src="images/WaveDemo.webm" loop autoplay style="max-width: 100%; max-height: 600px;"></video>
+</div>
+<div class="row column large-6">
+  <p class="text-left">
+    Apache Wave is a distributed, near-real-time, rich collaboration platform
+    that allows users to work together in new and exciting ways. Wave allows
+    for flexible modes of communication, blending chat, email and collaborative
+    document editing in to one seamless environment. Wave provides a lively and
+    responsive environment that promotes more fluid and dynamic collaboration
+    between users.
+  </p>
+  <p class="text-left">
+    The Apache Wave project is still in its infancy. To graduate from incubation we
+    need to mature the code base, grow the community, provide better
+    documentation, and make some software releases. We are currently driving
+    towards our first stable release. If you are interested in joining the
+    comunnity please see the Get Involved page.
+  </p>
+  <h1 class="text-left header-line">Server</h1>
+  <p class="text-left">
+    blurb about the server
+  </p>
+  <a href="#" class="button">Learn More</a>
+  <h1 class="text-left header-line">Client</h1>
+  <p class="text-left">
+    blurb about the clients
+  </p>
+  <a href="#" class="button">Learn More</a>
+  <h1 class="text-left header-line">Editor</h1>
+  <p class="text-left">
+    blurb about the editor
+  </p>
+  <a href="#" class="button">Learn More</a>
+</div>
+<div class="row full apache">
+  <div class="column small-5" style="padding: 20px; text-align: right;">
+    <a href="https://www.apache.org/">
+      <img src="https://www.apache.org/foundation/press/kit/feather.svg" alt="Apache Software Foundation feather logo" style="height: 200px;" />
+    </a>
   </div>
-  <h1>Middleman is Running</h1>
-  <p class="doc">
-    <%= link_to "Read Documentation Online", "https://middlemanapp.com", target: "_blank" %>
-  </p><!-- .doc -->
-</div><!-- .welcome -->
+  <div class="column small-7" style="text-align: left; font-size: 1.4rem; padding: 70px 0;">
+    Apache Wave is an incubating project<br/> at the Apache Software Foundation.<br/>
+    <span class="apache-links"><a href="https://www.apache.org/foundation/thanks.html">Thanks</a> - <a href="https://www.apache.org/foundation/sponsorship.html">Become a Sponsor</a> - <a href="https://www.apache.org/security/">Security</a></span>
+  </div>
+</div>

http://git-wip-us.apache.org/repos/asf/incubator-wave/blob/52a47845/website/source/javascripts/all.js
----------------------------------------------------------------------
diff --git a/website/source/javascripts/all.js b/website/source/javascripts/all.js
index 9ffad0d..e69de29 100644
--- a/website/source/javascripts/all.js
+++ b/website/source/javascripts/all.js
@@ -1 +0,0 @@
-// This is where it all goes :)
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-wave/blob/52a47845/website/source/layouts/layout.erb
----------------------------------------------------------------------
diff --git a/website/source/layouts/layout.erb b/website/source/layouts/layout.erb
index dec76b6..ea4cfbf 100644
--- a/website/source/layouts/layout.erb
+++ b/website/source/layouts/layout.erb
@@ -4,17 +4,59 @@
     <meta content="IE=edge" http-equiv="X-UA-Compatible">
     <meta charset="utf-8">
     <meta content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" name="viewport">
-
-    <!-- Use title if it's in the page YAML frontmatter -->
-    <title><%= current_page.data.title || "Middleman" %></title>
-
-    <link href='//fonts.googleapis.com/css?family=Lato:300,400' rel='stylesheet' type='text/css'>
-
+    <title><%= current_page.data.title || "Apache Wave (incubating)" %></title>
+    <link href='https://fonts.googleapis.com/css?family=Lato:300,400' rel='stylesheet' type='text/css'>
+    <link href='https://cdn.jsdelivr.net/foundation/6.2.1/foundation.min.css' rel='stylesheet' type='text/css'>
     <%= stylesheet_link_tag :site %>
+    <script src="https://cdn.jsdelivr.net/jquery/2.2.3/jquery.min.js" charset="utf-8"></script>
+    <script src="https://cdn.jsdelivr.net/foundation/6.2.1/foundation.min.js" charset="utf-8"></script>
     <%= javascript_include_tag :all %>
   </head>
-
   <body class="<%= page_classes %>">
-    <%= yield %>
+    <div id="container" class="">
+      <div id="header" class="row">
+        <span class="title" style="float: left;"><%= image_tag "OpenWaveLogo.svg", width: "120px" %> Apache Wave</span>
+        <span style="float: right; padding-top: 10px;">
+          <ul class="dropdown menu hide-for-small-only" data-dropdown-menu>
+            <li>
+              <a href="#">About</a>
+              <ul class="menu">
+                <li><a href="#">Client</a></li>
+                <li><a href="#">Server</a></li>
+                <li><a href="#">Editor</a></li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">Community</a>
+              <ul class="menu">
+                <li><a href="#">Get Involved</a></li>
+                <li><a href="#">Chat</a></li>
+                <li><a href="#">People</a></li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">Docs</a>
+              <ul class="menu">
+                <li><a href="#">Client</a></li>
+                <li><a href="#">Server</a></li>
+                <li><a href="#">Editor</a></li>
+              </ul>
+            </li>
+            <li><a href="#">Source</a></li>
+          </ul>
+        </span>
+      </div>
+      <%= yield %>
+    </div>
+    <div id="footer" class="row">
+      Copyright &copy; 2012-2014 The Apache Software Foundation, Licensed under
+      the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License,
+      Version 2.0</a>.<br />
+      Apache, Apache Wave, and the Apache feather logo are trademarks of The
+      Apache Software Foundation.
+    </div>
+    <script type="text/javascript">
+    $(document).foundation();
+    </script>
   </body>
 </html>

http://git-wip-us.apache.org/repos/asf/incubator-wave/blob/52a47845/website/source/stylesheets/_normalize.scss
----------------------------------------------------------------------
diff --git a/website/source/stylesheets/_normalize.scss b/website/source/stylesheets/_normalize.scss
deleted file mode 100644
index 18ddf7f..0000000
--- a/website/source/stylesheets/_normalize.scss
+++ /dev/null
@@ -1,419 +0,0 @@
-/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
-
-/**
- * 1. Change the default font family in all browsers (opinionated).
- * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
- */
-
-html {
-  font-family: sans-serif; /* 1 */
-  -ms-text-size-adjust: 100%; /* 2 */
-  -webkit-text-size-adjust: 100%; /* 2 */
-}
-
-/**
- * Remove the margin in all browsers (opinionated).
- */
-
-body {
-  margin: 0;
-}
-
-/* HTML5 display definitions
-   ========================================================================== */
-
-/**
- * Add the correct display in IE 9-.
- * 1. Add the correct display in Edge, IE, and Firefox.
- * 2. Add the correct display in IE.
- */
-
-article,
-aside,
-details, /* 1 */
-figcaption,
-figure,
-footer,
-header,
-main, /* 2 */
-menu,
-nav,
-section,
-summary { /* 1 */
-  display: block;
-}
-
-/**
- * Add the correct display in IE 9-.
- */
-
-audio,
-canvas,
-progress,
-video {
-  display: inline-block;
-}
-
-/**
- * Add the correct display in iOS 4-7.
- */
-
-audio:not([controls]) {
-  display: none;
-  height: 0;
-}
-
-/**
- * Add the correct vertical alignment in Chrome, Firefox, and Opera.
- */
-
-progress {
-  vertical-align: baseline;
-}
-
-/**
- * Add the correct display in IE 10-.
- * 1. Add the correct display in IE.
- */
-
-template, /* 1 */
-[hidden] {
-  display: none;
-}
-
-/* Links
-   ========================================================================== */
-
-/**
- * 1. Remove the gray background on active links in IE 10.
- * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
- */
-
-a {
-  background-color: transparent; /* 1 */
-  -webkit-text-decoration-skip: objects; /* 2 */
-}
-
-/**
- * Remove the outline on focused links when they are also active or hovered
- * in all browsers (opinionated).
- */
-
-a:active,
-a:hover {
-  outline-width: 0;
-}
-
-/* Text-level semantics
-   ========================================================================== */
-
-/**
- * 1. Remove the bottom border in Firefox 39-.
- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
- */
-
-abbr[title] {
-  border-bottom: none; /* 1 */
-  text-decoration: underline; /* 2 */
-  text-decoration: underline dotted; /* 2 */
-}
-
-/**
- * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
- */
-
-b,
-strong {
-  font-weight: inherit;
-}
-
-/**
- * Add the correct font weight in Chrome, Edge, and Safari.
- */
-
-b,
-strong {
-  font-weight: bolder;
-}
-
-/**
- * Add the correct font style in Android 4.3-.
- */
-
-dfn {
-  font-style: italic;
-}
-
-/**
- * Correct the font size and margin on `h1` elements within `section` and
- * `article` contexts in Chrome, Firefox, and Safari.
- */
-
-h1 {
-  font-size: 2em;
-  margin: 0.67em 0;
-}
-
-/**
- * Add the correct background and color in IE 9-.
- */
-
-mark {
-  background-color: #ff0;
-  color: #000;
-}
-
-/**
- * Add the correct font size in all browsers.
- */
-
-small {
-  font-size: 80%;
-}
-
-/**
- * Prevent `sub` and `sup` elements from affecting the line height in
- * all browsers.
- */
-
-sub,
-sup {
-  font-size: 75%;
-  line-height: 0;
-  position: relative;
-  vertical-align: baseline;
-}
-
-sub {
-  bottom: -0.25em;
-}
-
-sup {
-  top: -0.5em;
-}
-
-/* Embedded content
-   ========================================================================== */
-
-/**
- * Remove the border on images inside links in IE 10-.
- */
-
-img {
-  border-style: none;
-}
-
-/**
- * Hide the overflow in IE.
- */
-
-svg:not(:root) {
-  overflow: hidden;
-}
-
-/* Grouping content
-   ========================================================================== */
-
-/**
- * 1. Correct the inheritance and scaling of font size in all browsers.
- * 2. Correct the odd `em` font sizing in all browsers.
- */
-
-code,
-kbd,
-pre,
-samp {
-  font-family: monospace, monospace; /* 1 */
-  font-size: 1em; /* 2 */
-}
-
-/**
- * Add the correct margin in IE 8.
- */
-
-figure {
-  margin: 1em 40px;
-}
-
-/**
- * 1. Add the correct box sizing in Firefox.
- * 2. Show the overflow in Edge and IE.
- */
-
-hr {
-  box-sizing: content-box; /* 1 */
-  height: 0; /* 1 */
-  overflow: visible; /* 2 */
-}
-
-/* Forms
-   ========================================================================== */
-
-/**
- * 1. Change font properties to `inherit` in all browsers (opinionated).
- * 2. Remove the margin in Firefox and Safari.
- */
-
-button,
-input,
-select,
-textarea {
-  font: inherit; /* 1 */
-  margin: 0; /* 2 */
-}
-
-/**
- * Restore the font weight unset by the previous rule.
- */
-
-optgroup {
-  font-weight: bold;
-}
-
-/**
- * Show the overflow in IE.
- * 1. Show the overflow in Edge.
- */
-
-button,
-input { /* 1 */
-  overflow: visible;
-}
-
-/**
- * Remove the inheritance of text transform in Edge, Firefox, and IE.
- * 1. Remove the inheritance of text transform in Firefox.
- */
-
-button,
-select { /* 1 */
-  text-transform: none;
-}
-
-/**
- * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
- *    controls in Android 4.
- * 2. Correct the inability to style clickable types in iOS and Safari.
- */
-
-button,
-html [type="button"], /* 1 */
-[type="reset"],
-[type="submit"] {
-  -webkit-appearance: button; /* 2 */
-}
-
-/**
- * Remove the inner border and padding in Firefox.
- */
-
-button::-moz-focus-inner,
-[type="button"]::-moz-focus-inner,
-[type="reset"]::-moz-focus-inner,
-[type="submit"]::-moz-focus-inner {
-  border-style: none;
-  padding: 0;
-}
-
-/**
- * Restore the focus styles unset by the previous rule.
- */
-
-button:-moz-focusring,
-[type="button"]:-moz-focusring,
-[type="reset"]:-moz-focusring,
-[type="submit"]:-moz-focusring {
-  outline: 1px dotted ButtonText;
-}
-
-/**
- * Change the border, margin, and padding in all browsers (opinionated).
- */
-
-fieldset {
-  border: 1px solid #c0c0c0;
-  margin: 0 2px;
-  padding: 0.35em 0.625em 0.75em;
-}
-
-/**
- * 1. Correct the text wrapping in Edge and IE.
- * 2. Correct the color inheritance from `fieldset` elements in IE.
- * 3. Remove the padding so developers are not caught out when they zero out
- *    `fieldset` elements in all browsers.
- */
-
-legend {
-  box-sizing: border-box; /* 1 */
-  color: inherit; /* 2 */
-  display: table; /* 1 */
-  max-width: 100%; /* 1 */
-  padding: 0; /* 3 */
-  white-space: normal; /* 1 */
-}
-
-/**
- * Remove the default vertical scrollbar in IE.
- */
-
-textarea {
-  overflow: auto;
-}
-
-/**
- * 1. Add the correct box sizing in IE 10-.
- * 2. Remove the padding in IE 10-.
- */
-
-[type="checkbox"],
-[type="radio"] {
-  box-sizing: border-box; /* 1 */
-  padding: 0; /* 2 */
-}
-
-/**
- * Correct the cursor style of increment and decrement buttons in Chrome.
- */
-
-[type="number"]::-webkit-inner-spin-button,
-[type="number"]::-webkit-outer-spin-button {
-  height: auto;
-}
-
-/**
- * 1. Correct the odd appearance in Chrome and Safari.
- * 2. Correct the outline style in Safari.
- */
-
-[type="search"] {
-  -webkit-appearance: textfield; /* 1 */
-  outline-offset: -2px; /* 2 */
-}
-
-/**
- * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
- */
-
-[type="search"]::-webkit-search-cancel-button,
-[type="search"]::-webkit-search-decoration {
-  -webkit-appearance: none;
-}
-
-/**
- * Correct the text style of placeholders in Chrome, Edge, and Safari.
- */
-
-::-webkit-input-placeholder {
-  color: inherit;
-  opacity: 0.54;
-}
-
-/**
- * 1. Correct the inability to style clickable types in iOS and Safari.
- * 2. Change font properties to `inherit` in Safari.
- */
-
-::-webkit-file-upload-button {
-  -webkit-appearance: button; /* 1 */
-  font: inherit; /* 2 */
-}