[VOL-2875] Documentation update

- Updated the main landing page and overview documentation
- Added the lab setup (copied from CORD docs)
- Use forked sphinx-multiversion to publish docs, which allows versions
  to be listed at bottom of sidebar
- Updated logo and favicon, fixed CSS to make logo legible
- Use VERSION file to set the version in the sidebar
- Add more words to dictionary
- removed reload functionality that is nonworking in Sphinx 2.x
- Fixed lint/linkcheck issues

Change-Id: I032e67d76393778fc697944a6d5df9c8cdacbbc4
diff --git a/.gitignore b/.gitignore
index 71e3fcf..27f7af0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,10 +1,12 @@
 # build related
-doc_venv
+venv_docs
 _build
 repos
 
 # subrepos
 bbsim
+ofagent-go
+openolt
 pyvoltha
 voltha-go
 voltha-openolt-adapter
@@ -12,6 +14,7 @@
 voltha-protos
 voltha-system-tests
 voltctl
+cord-tester
 
 # IDEs
 .idea
diff --git a/Makefile b/Makefile
index 56360b0..cc0b514 100644
--- a/Makefile
+++ b/Makefile
@@ -11,24 +11,29 @@
 
 # Other repos with documentation to include.
 # edit the `git_refs` file with the commit/tag/branch that you want to use
-OTHER_REPO_DOCS ?= bbsim voltha-go voltha-openolt-adapter voltha-openonu-adapter voltha-protos voltctl voltha-system-tests cord-tester
+OTHER_REPO_DOCS ?= bbsim cord-tester ofagent-go openolt voltctl voltha-openolt-adapter voltha-openonu-adapter voltha-protos voltha-system-tests
 
-# Put it first so that "make" without argument is like "make help".
-help: doc_venv
-	source $</bin/activate ; set -u ;\
-	$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
+# Static docs, built by other means (usually robot framework)
+STATIC_DOCS    := _static/voltha-system-tests _static/cord-tester
+
+# name of python virtualenv that is used to run commands
+VENV_NAME      := venv_docs
 
 .PHONY: help test lint reload Makefile prep
 
+# Put it first so that "make" without argument is like "make help".
+help: $(VENV_NAME)
+	source $</bin/activate ; set -u ;\
+	$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
+
 # Create the virtualenv with all the tools installed
-doc_venv:
-	virtualenv -p python3 doc_venv ;\
+$(VENV_NAME):
+	virtualenv -p python3 $(VENV_NAME) ;\
 	source $@/bin/activate ;\
-	pip install livereload ;\
 	pip install -r requirements.txt
 
 # automatically reload changes in browser as they're made
-reload: doc_venv
+reload: $(VENV_NAME)
 	source $</bin/activate ; set -u ;\
 	sphinx-reload $(SOURCEDIR)
 
@@ -37,10 +42,10 @@
 
 lint: doc8
 
-doc8: doc_venv | $(OTHER_REPO_DOCS)
+doc8: $(VENV_NAME) | $(OTHER_REPO_DOCS)
 	source $</bin/activate ; set -u ;\
 	doc8 --max-line-length 119 \
-	     $$(find . -name \*.rst ! -path "*doc_venv*" ! -path "*vendor*" ! -path "*repos/voltha-system-tests/vst_venv/*" ! -path "*repos/cord-tester/venv_cord/*")
+	     $$(find . -name \*.rst ! -path "*venv*" ! -path "*vendor*" ! -path "*repos*" )
 
 # markdown linting
 #  currently not enabled, should be added to lint target
@@ -51,14 +56,14 @@
 	@echo "---"
 	@cat $(LINT_STYLE)
 	@echo "---"
-	mdl -s $(LINT_STYLE) `find -L $(SOURCEDIR) ! -path "./_doc_venv/*" ! -path "./_build/*" ! -path "./repos/*" ! -path "*vendor*" -name "*.md"`
+	mdl -s $(LINT_STYLE) `find -L $(SOURCEDIR) ! -path "./_$(VENV_NAME)/*" ! -path "./_build/*" ! -path "./repos/*" ! -path "*vendor*" -name "*.md"`
 
 # clean up
 clean:
-	rm -rf $(BUILDDIR) $(OTHER_REPO_DOCS) _static/voltha-system-tests _static/cord-tester
+	rm -rf $(BUILDDIR) $(OTHER_REPO_DOCS) $(STATIC_DOCS)
 
 clean-all: clean
-	rm -rf doc_venv repos
+	rm -rf $(VENV_NAME) repos
 
 # checkout the repos inside repos/ dir
 repos:
@@ -112,23 +117,17 @@
 	  cd ../.. ;\
 	done
 
-# use sphinxcontrib-versioning to make a versioned copy of the
-# NOTE: document root is now in _build, not _build/html
-versioned: doc_venv Makefile | $(OTHER_REPO_DOCS)
+# build multiple versions
+multiversion: $(VENV_NAME) Makefile | prep $(OTHER_REPO_DOCS)
 	source $</bin/activate ; set -u ;\
-	sphinx-versioning build -r master "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS)
+	sphinx-multiversion "$(SOURCEDIR)" "$(BUILDDIR)/multiversion" $(SPHINXOPTS)
+	cp "$(SOURCEDIR)/_templates/meta_refresh.html" "$(BUILDDIR)/multiversion/index.html"
 
-# prep target - used in sphinxcontrib-versioning to create versioned repos when
-# building multiple versions
-prep: | $(OTHER_REPO_DOCS)
-
-html: doc_venv Makefile | $(OTHER_REPO_DOCS) _static/voltha-system-tests _static/cord-tester
-	source $</bin/activate ; set -u ;\
-	$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
+# prep target - used in sphinx-multiversion to properly link
+prep: | $(OTHER_REPO_DOCS) $(STATIC_DOCS)
 
 # Catch-all target: route all unknown targets to Sphinx using the new
 # "make mode" option.  $(O) is meant as a shortcut for $(SPHINXOPTS).
-%: doc_venv Makefile | $(OTHER_REPO_DOCS)
+%: $(VENV_NAME) Makefile | $(OTHER_REPO_DOCS) $(STATIC_DOCS)
 	source $</bin/activate ; set -u ;\
 	$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
-
diff --git a/VERSION b/VERSION
new file mode 100644
index 0000000..a724a9c
--- /dev/null
+++ b/VERSION
@@ -0,0 +1 @@
+2.4.0-dev
diff --git a/_static/css/rtd_theme_mods.css b/_static/css/rtd_theme_mods.css
index 30da586..be943dc 100644
--- a/_static/css/rtd_theme_mods.css
+++ b/_static/css/rtd_theme_mods.css
@@ -23,3 +23,13 @@
 .wy-table-responsive table td, .wy-table-responsive table th {
   white-space: normal;
 }
+
+.wy-side-nav-search {
+  background-color: #d9d9d9;
+}
+
+.wy-side-nav-search>div.version {
+  color: #404040;
+}
+
+
diff --git a/_static/voltha-favicon-128.png b/_static/voltha-favicon-128.png
new file mode 100644
index 0000000..f372015
--- /dev/null
+++ b/_static/voltha-favicon-128.png
Binary files differ
diff --git a/_static/voltha.svg b/_static/voltha.svg
new file mode 100644
index 0000000..b01d5f3
--- /dev/null
+++ b/_static/voltha.svg
@@ -0,0 +1,405 @@
+<?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"
+   viewBox="0 0 521.17334 160.26109"
+   height="160.26109"
+   width="521.17334"
+   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="clipPath80"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path78"
+         d="m 1209.63,304.602 c 12.17,6.91 21.72,15.359 28.66,25.328 6.92,9.968 11.63,20.91 14.12,32.82 2.49,11.898 3.74,22.852 3.74,32.809 0,9.972 -1.25,20.91 -3.74,32.832 -2.49,11.898 -7.2,22.847 -14.12,32.808 -6.94,9.973 -16.49,18.41 -28.66,25.34 -12.19,6.91 -27.7,10.383 -46.53,10.383 H 827.461 c -19.387,0 -35.031,-3.473 -46.938,-10.383 -11.918,-6.93 -21.328,-15.367 -28.246,-25.34 -6.929,-9.961 -11.632,-20.91 -14.125,-32.808 -2.492,-11.922 -3.738,-22.86 -3.738,-32.832 0,-9.957 1.246,-20.911 3.738,-32.809 2.493,-11.91 7.196,-22.852 14.125,-32.82 6.918,-9.969 16.328,-18.418 28.246,-25.328 11.907,-6.942 27.551,-10.383 46.938,-10.383 H 1163.1 c 18.83,0 34.34,3.441 46.53,10.383 z m 123.78,90.957 c 0,-21.047 -3.47,-42.227 -10.38,-63.547 -6.94,-21.332 -17.03,-40.703 -30.32,-58.153 -13.3,-17.461 -29.37,-31.718 -48.19,-42.789 -18.84,-11.082 -40.17,-16.621 -63.98,-16.621 H 801.711 c -22.719,1.102 -42.93,7.34 -60.648,18.699 -17.731,11.34 -32.821,25.614 -45.278,42.774 -12.465,17.18 -22.015,36.277 -28.664,57.34 -6.644,21.039 -9.965,41.808 -9.965,62.297 0,21.05 3.449,42.242 10.379,63.57 6.918,21.312 17.035,40.699 30.324,58.141 13.293,17.449 29.348,31.699 48.188,42.789 18.82,11.082 40.152,16.632 63.973,16.632 h 378.83 c 22.71,-1.14 42.92,-7.363 60.65,-18.711 17.72,-11.351 32.82,-25.621 45.28,-42.789 12.46,-17.171 22.01,-36.273 28.66,-57.312 6.64,-21.059 9.97,-41.828 9.97,-62.32 z" /></clipPath><linearGradient
+       id="linearGradient86"
+       spreadMethod="pad"
+       gradientTransform="matrix(676.259,0,0,-676.259,657.153,395.57)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop82"
+         offset="0"
+         style="stop-opacity:1;stop-color:#263e7f" /><stop
+         id="stop84"
+         offset="1"
+         style="stop-opacity:1;stop-color:#3779c6" /></linearGradient><clipPath
+       id="clipPath98"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path96"
+         d="m 2485.68,565.051 c 7.75,-7.77 11.63,-17.18 11.63,-28.262 0,-11.078 -3.88,-20.488 -11.63,-28.238 -7.76,-7.75 -17.17,-11.629 -28.25,-11.629 H 2211.52 V 254.328 c 0,-11.09 -3.88,-20.496 -11.63,-28.25 -7.76,-7.746 -17.18,-11.629 -28.24,-11.629 -11.09,0 -20.5,3.883 -28.26,11.629 -7.75,7.754 -11.63,17.16 -11.63,28.25 v 242.594 h -249.23 c -9.97,1.098 -18.56,5.398 -25.75,12.879 -7.2,7.469 -10.8,16.469 -10.8,26.988 0,11.082 3.86,20.492 11.63,28.262 7.75,7.75 17.16,11.64 28.25,11.64 h 571.57 c 11.08,0 20.49,-3.89 28.25,-11.64 z" /></clipPath><linearGradient
+       id="linearGradient106"
+       spreadMethod="pad"
+       gradientTransform="matrix(651.331,0,0,-651.331,1845.98,395.57)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop100"
+         offset="0"
+         style="stop-opacity:1;stop-color:#3779c6" /><stop
+         id="stop102"
+         offset="0.0996414"
+         style="stop-opacity:1;stop-color:#3779c6" /><stop
+         id="stop104"
+         offset="1"
+         style="stop-opacity:1;stop-color:#3779c6" /></linearGradient><clipPath
+       id="clipPath116"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path114"
+         d="m 3219.24,226.078 c -7.75,-7.746 -17.16,-11.629 -28.24,-11.629 -11.08,0 -20.5,3.883 -28.24,11.629 -7.77,7.754 -11.64,17.16 -11.64,28.25 V 355.691 H 2660.13 V 254.328 c 0,-11.09 -3.87,-20.496 -11.63,-28.25 -7.76,-7.746 -17.17,-11.629 -28.24,-11.629 -11.09,0 -20.5,3.883 -28.25,11.629 -7.77,7.754 -11.63,17.16 -11.63,28.25 v 282.461 c 0,11.082 3.86,20.492 11.63,28.262 7.75,7.75 17.16,11.64 28.25,11.64 11.07,0 20.48,-3.89 28.24,-11.64 7.76,-7.77 11.63,-17.18 11.63,-28.262 v -101.34 h 490.99 v 101.34 c 0,11.082 3.87,20.492 11.64,28.262 7.74,7.75 17.16,11.64 28.24,11.64 11.08,0 20.49,-3.89 28.24,-11.64 7.76,-7.77 11.64,-17.18 11.64,-28.262 V 254.328 c 0,-11.09 -3.88,-20.496 -11.64,-28.25 z" /></clipPath><linearGradient
+       id="linearGradient122"
+       spreadMethod="pad"
+       gradientTransform="matrix(650.5,0,0,-650.5,2580.38,395.57)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop118"
+         offset="0"
+         style="stop-opacity:1;stop-color:#3475c1" /><stop
+         id="stop120"
+         offset="1"
+         style="stop-opacity:1;stop-color:#63b5e4" /></linearGradient><clipPath
+       id="clipPath134"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path132"
+         d="m 1666.16,940.148 -9.04,30.653 304.93,89.959 9.04,-30.64 z" /></clipPath><linearGradient
+       id="linearGradient140"
+       spreadMethod="pad"
+       gradientTransform="matrix(313.978,0,0,-313.978,1657.12,1000.46)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop136"
+         offset="0"
+         style="stop-opacity:1;stop-color:#c81e27" /><stop
+         id="stop138"
+         offset="1"
+         style="stop-opacity:1;stop-color:#77151b" /></linearGradient><clipPath
+       id="clipPath150"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path148"
+         d="m 1614.51,723.539 -8.8,30.723 669.8,191.75 -647.82,190.818 9.02,30.66 753.38,-221.92 z" /></clipPath><linearGradient
+       id="linearGradient156"
+       spreadMethod="pad"
+       gradientTransform="matrix(784.383,-1e-7,-1e-7,-784.383,1605.71,945.52)"
+       gradientUnits="userSpaceOnUse"
+       y2="0"
+       x2="1"
+       y1="0"
+       x1="0"><stop
+         id="stop152"
+         offset="0"
+         style="stop-opacity:1;stop-color:#c81e27" /><stop
+         id="stop154"
+         offset="1"
+         style="stop-opacity:1;stop-color:#77151b" /></linearGradient><clipPath
+       id="clipPath166"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path164"
+         d="m 1923.06,1051.2 c 0,-27.8 22.54,-50.32 50.33,-50.32 27.79,0 50.33,22.52 50.33,50.32 0,27.8 -22.54,50.33 -50.33,50.33 -27.79,0 -50.33,-22.53 -50.33,-50.33 z" /></clipPath><radialGradient
+       id="radialGradient174"
+       spreadMethod="pad"
+       gradientTransform="matrix(-50.3263,0,0,-50.3263,1973.39,1051.2)"
+       gradientUnits="userSpaceOnUse"
+       r="1"
+       cy="0"
+       cx="0"
+       fy="0"
+       fx="0"><stop
+         id="stop168"
+         offset="0"
+         style="stop-opacity:1;stop-color:#d53130" /><stop
+         id="stop170"
+         offset="0.867953"
+         style="stop-opacity:1;stop-color:#9f1c22" /><stop
+         id="stop172"
+         offset="1"
+         style="stop-opacity:1;stop-color:#9f1c22" /></radialGradient><clipPath
+       id="clipPath184"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path182"
+         d="m 1923.37,839.102 c 0,-27.793 22.52,-50.332 50.32,-50.332 27.8,0 50.32,22.539 50.32,50.332 0,27.789 -22.52,50.32 -50.32,50.32 -27.8,0 -50.32,-22.531 -50.32,-50.32 z" /></clipPath><radialGradient
+       id="radialGradient192"
+       spreadMethod="pad"
+       gradientTransform="matrix(-50.3263,0,0,-50.3263,1973.69,839.1)"
+       gradientUnits="userSpaceOnUse"
+       r="1"
+       cy="0"
+       cx="0"
+       fy="0"
+       fx="0"><stop
+         id="stop186"
+         offset="0"
+         style="stop-opacity:1;stop-color:#d53130" /><stop
+         id="stop188"
+         offset="0.867953"
+         style="stop-opacity:1;stop-color:#9f1c22" /><stop
+         id="stop190"
+         offset="1"
+         style="stop-opacity:1;stop-color:#9f1c22" /></radialGradient><clipPath
+       id="clipPath202"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path200"
+         d="m 1573.58,1151.65 c 0,-27.81 22.53,-50.34 50.33,-50.34 27.79,0 50.32,22.53 50.32,50.34 0,27.79 -22.53,50.32 -50.32,50.32 -27.8,0 -50.33,-22.53 -50.33,-50.32 z" /></clipPath><radialGradient
+       id="radialGradient210"
+       spreadMethod="pad"
+       gradientTransform="matrix(-50.3263,0,0,-50.3263,1623.91,1151.64)"
+       gradientUnits="userSpaceOnUse"
+       r="1"
+       cy="0"
+       cx="0"
+       fy="0"
+       fx="0"><stop
+         id="stop204"
+         offset="0"
+         style="stop-opacity:1;stop-color:#d53130" /><stop
+         id="stop206"
+         offset="0.153011"
+         style="stop-opacity:1;stop-color:#d53130" /><stop
+         id="stop208"
+         offset="1"
+         style="stop-opacity:1;stop-color:#9f1c22" /></radialGradient><clipPath
+       id="clipPath220"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path218"
+         d="m 1573.58,949.461 c 0,-27.789 22.53,-50.32 50.33,-50.32 27.79,0 50.32,22.531 50.32,50.32 0,27.789 -22.53,50.328 -50.32,50.328 -27.8,0 -50.33,-22.539 -50.33,-50.328 z" /></clipPath><radialGradient
+       id="radialGradient228"
+       spreadMethod="pad"
+       gradientTransform="matrix(-50.3263,0,0,-50.3263,1623.91,949.46)"
+       gradientUnits="userSpaceOnUse"
+       r="1"
+       cy="0"
+       cx="0"
+       fy="0"
+       fx="0"><stop
+         id="stop222"
+         offset="0"
+         style="stop-opacity:1;stop-color:#d53130" /><stop
+         id="stop224"
+         offset="0.153011"
+         style="stop-opacity:1;stop-color:#d53130" /><stop
+         id="stop226"
+         offset="1"
+         style="stop-opacity:1;stop-color:#9f1c22" /></radialGradient><clipPath
+       id="clipPath238"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path236"
+         d="m 1573.28,743.98 c 0,-27.789 22.53,-50.32 50.32,-50.32 27.8,0 50.33,22.531 50.33,50.32 0,27.79 -22.53,50.329 -50.33,50.329 -27.79,0 -50.32,-22.539 -50.32,-50.329 z" /></clipPath><radialGradient
+       id="radialGradient246"
+       spreadMethod="pad"
+       gradientTransform="matrix(-50.3263,0,0,-50.3263,1623.61,743.98)"
+       gradientUnits="userSpaceOnUse"
+       r="1"
+       cy="0"
+       cx="0"
+       fy="0"
+       fx="0"><stop
+         id="stop240"
+         offset="0"
+         style="stop-opacity:1;stop-color:#d53130" /><stop
+         id="stop242"
+         offset="0.153011"
+         style="stop-opacity:1;stop-color:#d53130" /><stop
+         id="stop244"
+         offset="1"
+         style="stop-opacity:1;stop-color:#9f1c22" /></radialGradient><clipPath
+       id="clipPath256"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path254"
+         d="m 2244.83,952.422 c 0,-39.711 32.19,-71.902 71.9,-71.902 39.7,0 71.89,32.191 71.89,71.902 0,39.707 -32.19,71.888 -71.89,71.888 -39.71,0 -71.9,-32.181 -71.9,-71.888 z" /></clipPath><radialGradient
+       id="radialGradient262"
+       spreadMethod="pad"
+       gradientTransform="matrix(-71.8947,0,0,-71.8947,2316.73,952.42)"
+       gradientUnits="userSpaceOnUse"
+       r="1"
+       cy="0"
+       cx="0"
+       fy="0"
+       fx="0"><stop
+         id="stop258"
+         offset="0"
+         style="stop-opacity:1;stop-color:#9f1c22" /><stop
+         id="stop260"
+         offset="1"
+         style="stop-opacity:1;stop-color:#77151b" /></radialGradient></defs><g
+     transform="matrix(1.3333333,0,0,-1.3333333,0,160.26266)"
+     id="g10"><g
+       transform="scale(0.1)"
+       id="g12"><path
+         id="path14"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 278.008,107.27 h 25.621 l 27.57,-74.27 27.567,74.27 h 25.011 L 341.141,1.05859 H 320.652 L 278.008,107.27" /><path
+         id="path16"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 404.043,107.27 h 23.219 V 1.80859 H 404.043 V 107.27" /><path
+         id="path18"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 503.309,56.0391 c 11.308,0 17.781,6.0312 17.781,14.9218 v 0.3204 c 0,9.9296 -6.922,15.039 -18.238,15.039 H 479.813 V 56.0391 Z m -46.7,51.2309 h 48.211 c 13.403,0 23.809,-3.77 30.739,-10.6919 5.863,-5.8789 9.031,-14.1679 9.031,-24.0976 v -0.3203 c 0,-17.0196 -9.188,-27.711 -22.594,-32.6797 L 547.754,1.80859 H 520.641 L 498.035,35.5586 H 479.813 V 1.80859 H 456.609 V 107.27" /><path
+         id="path20"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="M 593.035,85.8789 H 560.957 V 107.27 h 87.367 V 85.8789 H 616.238 V 1.80859 H 593.035 V 85.8789" /><path
+         id="path22"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="M 667.41,47.0117 V 107.27 h 23.203 V 47.6211 c 0,-17.1719 8.59,-26.0703 22.742,-26.0703 14.172,0 22.75,8.5781 22.75,25.3008 V 107.27 h 23.204 V 47.7617 c 0,-31.9297 -17.93,-47.601544 -46.246,-47.601544 -28.321,0 -45.653,15.820344 -45.653,46.851544" /><path
+         id="path24"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="M 846.492,45.9492 832.48,80.1484 818.469,45.9492 Z M 822.07,108.031 h 21.407 L 888.664,1.80859 H 864.422 L 854.777,25.4688 H 810.188 L 800.543,1.80859 H 776.875 L 822.07,108.031" /><path
+         id="path26"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 907.887,107.27 h 23.199 V 22.9102 h 52.578 V 1.80859 H 907.887 V 107.27" /><path
+         id="path28"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1135.46,54.2305 v 0.3203 c 0,18.0586 -13.26,33.1289 -31.95,33.1289 -18.68,0 -31.63,-14.75 -31.63,-32.8399 v -0.289 c 0,-18.0899 13.25,-33.1602 31.94,-33.1602 18.67,0 31.64,14.7813 31.64,32.8399 z m -87.84,0 v 0.3203 c 0,29.9687 23.65,54.5272 56.2,54.5272 32.54,0 55.88,-24.2499 55.88,-54.2382 v -0.289 c 0,-29.9922 -23.65,-54.5390812 -56.19,-54.5390812 -32.54,0 -55.89,24.2499812 -55.89,54.2187812" /><path
+         id="path30"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1183.29,107.27 h 23.21 V 22.9102 h 52.57 V 1.80859 h -75.78 V 107.27" /><path
+         id="path32"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1304.07,85.8789 h -32.09 V 107.27 h 87.39 V 85.8789 h -32.1 V 1.80859 h -23.2 V 85.8789" /><path
+         id="path34"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1428.28,107.27 h 23.2 V 65.5391 h 42.8 V 107.27 h 23.2 V 1.80859 h -23.2 V 44.1406 h -42.8 V 1.80859 h -23.2 V 107.27" /><path
+         id="path36"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1606.3,45.9492 -14.01,34.1992 -14.01,-34.1992 z m -24.4,62.0818 h 21.39 l 45.2,-106.22241 h -24.27 l -9.63,23.66021 H 1570 l -9.65,-23.66021 h -23.65 l 45.2,106.22241" /><path
+         id="path38"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1714.41,56.0391 c 11.31,0 17.78,6.0312 17.78,14.9218 v 0.3204 c 0,9.9296 -6.93,15.039 -18.23,15.039 h -23.05 V 56.0391 Z m -46.7,51.2309 h 48.21 c 13.4,0 23.81,-3.77 30.74,-10.6919 5.87,-5.8789 9.03,-14.1679 9.03,-24.0976 v -0.3203 c 0,-17.0196 -9.19,-27.711 -22.59,-32.6797 l 25.76,-37.67191 h -27.12 l -22.61,33.75001 h -18.22 V 1.80859 h -23.2 V 107.27" /><path
+         id="path40"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="M 1802.78,86.3203 V 22.75 h 17.94 c 18.97,0 31.78,12.8086 31.78,31.4805 v 0.3203 c 0,18.668 -12.81,31.7695 -31.78,31.7695 z m -23.2,20.9497 h 41.14 c 33.14,0 56.04,-22.7505 56.04,-52.4302 v -0.289 c 0,-29.6914 -22.9,-52.74221 -56.04,-52.74221 h -41.14 V 107.27" /><path
+         id="path42"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1892.21,107.27 h 24.85 l 21.85,-71.4106 23.65,71.7106 h 19.89 l 23.65,-71.7106 21.85,71.4106 h 24.26 L 2016.2,1.05859 h -20.19 L 1972.2,70.0586 1948.41,1.05859 h -20.19 L 1892.21,107.27" /><path
+         id="path44"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2132.87,45.9492 -14.01,34.1992 -14.01,-34.1992 z m -24.42,62.0818 h 21.41 L 2175.05,1.80859 h -24.25 l -9.64,23.66021 h -44.59 l -9.64,-23.66021 h -23.67 l 45.19,106.22241" /><path
+         id="path46"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2240.98,56.0391 c 11.3,0 17.77,6.0312 17.77,14.9218 v 0.3204 c 0,9.9296 -6.93,15.039 -18.22,15.039 h -23.06 V 56.0391 Z m -46.71,51.2309 h 48.21 c 13.41,0 23.81,-3.77 30.73,-10.6919 5.89,-5.8789 9.05,-14.1679 9.05,-24.0976 v -0.3203 c 0,-17.0196 -9.19,-27.711 -22.61,-32.6797 l 25.77,-37.67191 h -27.12 l -22.6,33.75001 h -18.23 V 1.80859 h -23.2 V 107.27" /><path
+         id="path48"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2306.15,107.27 h 79.54 V 86.6289 H 2329.2 V 65.2305 h 49.72 V 44.6016 H 2329.2 V 22.4609 h 57.26 V 1.80859 h -80.31 V 107.27" /><path
+         id="path50"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2518.79,45.9492 -14.01,34.1992 -14.01,-34.1992 z m -24.4,62.0818 h 21.39 l 45.2,-106.22241 h -24.26 l -9.64,23.66021 h -44.59 l -9.65,-23.66021 h -23.65 l 45.2,106.22241" /><path
+         id="path52"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2629.62,45.3594 h -26.83 v -23.211 h 27.57 c 10.25,0 16.43,3.6133 16.43,11.4414 v 0.3086 c 0,7.0899 -5.27,11.461 -17.17,11.461 z m 11.29,30.7304 c 0,6.9297 -5.42,10.8516 -15.21,10.8516 h -22.91 V 64.6406 h 21.4 c 10.24,0 16.72,3.3086 16.72,11.1407 z M 2580.2,107.27 h 48.96 c 12.06,0 21.55,-3.309 27.57,-9.3286 4.82,-4.832 7.24,-10.7109 7.24,-17.9297 v -0.3203 c 0,-11.9023 -6.33,-18.5117 -13.87,-22.7422 12.22,-4.6679 19.74,-11.75 19.74,-25.9179 v -0.293 c 0,-19.2891 -15.67,-28.92971 -39.48,-28.92971 H 2580.2 V 107.27" /><path
+         id="path54"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2684.69,17.1797 13.71,16.4101 c 9.49,-7.8281 19.44,-12.789 31.49,-12.789 9.5,0 15.23,3.7578 15.23,9.9375 v 0.293 c 0,5.8906 -3.62,8.8984 -21.25,13.4179 -21.25,5.4219 -34.95,11.3008 -34.95,32.2422 v 0.2891 c 0,19.1484 15.37,31.8085 36.91,31.8085 15.35,0 28.48,-4.828 39.17,-13.4101 l -12.05,-17.4883 c -9.35,6.4883 -18.53,10.4102 -27.43,10.4102 -8.89,0 -13.56,-4.082 -13.56,-9.1914 v -0.3086 c 0,-6.9414 4.53,-9.1914 22.75,-13.8594 21.39,-5.5703 33.45,-13.2617 33.45,-31.6406 V 33 c 0,-20.9297 -15.98,-32.699219 -38.73,-32.699219 -15.95,0 -32.09,5.589849 -44.74,16.878919" /><path
+         id="path56"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2815.88,85.8789 h -32.1 V 107.27 h 87.39 V 85.8789 h -32.1 V 1.80859 h -23.19 V 85.8789" /><path
+         id="path58"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2938.6,56.0391 c 11.31,0 17.79,6.0312 17.79,14.9218 v 0.3204 c 0,9.9296 -6.93,15.039 -18.24,15.039 H 2915.1 V 56.0391 Z m -46.7,51.2309 h 48.21 c 13.41,0 23.81,-3.77 30.74,-10.6919 5.87,-5.8789 9.03,-14.1679 9.03,-24.0976 v -0.3203 c 0,-17.0196 -9.19,-27.711 -22.59,-32.6797 l 25.76,-37.67191 h -27.12 l -22.6,33.75001 H 2915.1 V 1.80859 h -23.2 V 107.27" /><path
+         id="path60"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 3064.34,45.9492 -14.01,34.1992 -14.02,-34.1992 z m -24.4,62.0818 h 21.38 l 45.2,-106.22241 h -24.26 l -9.64,23.66021 h -44.59 l -9.64,-23.66021 h -23.65 l 45.2,106.22241" /><path
+         id="path62"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 3121.08,54.2305 v 0.3203 c 0,29.9687 22.59,54.5272 54.99,54.5272 19.89,0 31.79,-6.629 41.57,-16.2694 l -14.76,-17.0273 c -8.14,7.3789 -16.42,11.8984 -26.97,11.8984 -17.77,0 -30.58,-14.75 -30.58,-32.8399 v -0.289 c 0,-18.0899 12.51,-33.1602 30.58,-33.1602 12.06,0 19.44,4.8282 27.72,12.3594 l 14.76,-14.918 C 3207.55,7.23828 3195.5,0.0117188 3175.16,0.0117188 c -31.03,0 -54.08,23.9374812 -54.08,54.2187812" /><path
+         id="path64"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 3264.43,85.8789 h -32.08 V 107.27 h 87.38 V 85.8789 h -32.1 V 1.80859 h -23.2 V 85.8789" /><path
+         id="path66"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 3341.52,107.27 h 23.2 V 1.80859 h -23.2 V 107.27" /><path
+         id="path68"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 3477.25,54.2305 v 0.3203 c 0,18.0586 -13.26,33.1289 -31.95,33.1289 -18.68,0 -31.63,-14.75 -31.63,-32.8399 v -0.289 c 0,-18.0899 13.25,-33.1602 31.94,-33.1602 18.67,0 31.64,14.7813 31.64,32.8399 z m -87.84,0 v 0.3203 c 0,29.9687 23.65,54.5272 56.2,54.5272 32.54,0 55.88,-24.2499 55.88,-54.2382 v -0.289 c 0,-29.9922 -23.65,-54.5390812 -56.19,-54.5390812 -32.54,0 -55.89,24.2499812 -55.89,54.2187812" /><path
+         id="path70"
+         style="fill:#5bc9f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 3525.08,107.27 h 21.39 l 49.42,-64.9184 V 107.27 h 22.91 V 1.80859 h -19.74 L 3547.98,68.8516 V 1.80859 h -22.9 V 107.27" /><path
+         id="path72"
+         style="fill:#20497f;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 524.227,561.719 c 8.304,9.98 18.546,14.972 30.734,14.972 11.074,0 20.488,-3.89 28.25,-11.64 7.746,-7.77 11.629,-17.18 11.629,-28.262 0,-9.969 -2.774,-17.988 -8.305,-24.078 l -0.836,-0.832 -201.043,-270.84 c -9.972,-12.738 -22.582,-23.129 -37.804,-31.148 -15.239,-8.039 -31.715,-12.051 -49.43,-12.051 -16.613,0 -32.27,3.601 -46.938,10.801 -14.687,7.191 -27,17.16 -36.972,29.91 l -201.8792,270 C 8.30859,512.43 5.53516,516.719 3.32031,521.43 1.10547,526.129 0,531.262 0,536.789 c 0,11.082 3.86719,20.492 11.6328,28.262 7.75,7.75 17.1563,11.64 28.2422,11.64 13.2969,0 23.8086,-5.281 31.5703,-15.8 L 265.02,302.52 c 3.867,-4.45 8.722,-9.282 14.539,-14.551 5.812,-5.258 11.761,-7.887 17.863,-7.887 6.086,0 12.043,2.629 17.859,7.887 5.813,5.269 10.383,10.101 13.711,14.551 l 195.235,259.199" /><g
+         id="g74"><g
+           clip-path="url(#clipPath80)"
+           id="g76"><path
+             id="path88"
+             style="fill:url(#linearGradient86);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1209.63,304.602 c 12.17,6.91 21.72,15.359 28.66,25.328 6.92,9.968 11.63,20.91 14.12,32.82 2.49,11.898 3.74,22.852 3.74,32.809 0,9.972 -1.25,20.91 -3.74,32.832 -2.49,11.898 -7.2,22.847 -14.12,32.808 -6.94,9.973 -16.49,18.41 -28.66,25.34 -12.19,6.91 -27.7,10.383 -46.53,10.383 H 827.461 c -19.387,0 -35.031,-3.473 -46.938,-10.383 -11.918,-6.93 -21.328,-15.367 -28.246,-25.34 -6.929,-9.961 -11.632,-20.91 -14.125,-32.808 -2.492,-11.922 -3.738,-22.86 -3.738,-32.832 0,-9.957 1.246,-20.911 3.738,-32.809 2.493,-11.91 7.196,-22.852 14.125,-32.82 6.918,-9.969 16.328,-18.418 28.246,-25.328 11.907,-6.942 27.551,-10.383 46.938,-10.383 H 1163.1 c 18.83,0 34.34,3.441 46.53,10.383 z m 123.78,90.957 c 0,-21.047 -3.47,-42.227 -10.38,-63.547 -6.94,-21.332 -17.03,-40.703 -30.32,-58.153 -13.3,-17.461 -29.37,-31.718 -48.19,-42.789 -18.84,-11.082 -40.17,-16.621 -63.98,-16.621 H 801.711 c -22.719,1.102 -42.93,7.34 -60.648,18.699 -17.731,11.34 -32.821,25.614 -45.278,42.774 -12.465,17.18 -22.015,36.277 -28.664,57.34 -6.644,21.039 -9.965,41.808 -9.965,62.297 0,21.05 3.449,42.242 10.379,63.57 6.918,21.312 17.035,40.699 30.324,58.141 13.293,17.449 29.348,31.699 48.188,42.789 18.82,11.082 40.152,16.632 63.973,16.632 h 378.83 c 22.71,-1.14 42.92,-7.363 60.65,-18.711 17.72,-11.351 32.82,-25.621 45.28,-42.789 12.46,-17.171 22.01,-36.273 28.66,-57.312 6.64,-21.059 9.97,-41.828 9.97,-62.32" /></g></g><path
+         id="path90"
+         style="fill:#3779c6;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1486.26,223.18 c -13.84,5.808 -25.89,13.699 -36.13,23.672 -10.26,9.968 -18.43,21.597 -24.51,34.898 -6.1,13.301 -9.14,27.691 -9.14,43.199 v 211.84 c 0,11.082 3.86,20.492 11.63,28.262 7.75,7.75 17.16,11.64 28.24,11.64 10.52,0 19.8,-3.89 27.84,-11.64 8.03,-7.77 12.04,-17.18 12.04,-28.262 v -211.84 c 0,-8.301 3.19,-15.508 9.55,-21.597 6.37,-6.114 13.72,-9.133 22.02,-9.133 h 498.47 c 11.07,0 20.49,-3.891 28.26,-11.637 7.74,-7.773 11.62,-17.184 11.62,-28.254 0,-11.09 -3.88,-20.496 -11.62,-28.25 -7.77,-7.746 -17.19,-11.629 -28.26,-11.629 H 1530.3 c -15.52,0 -30.2,2.91 -44.04,8.731" /><g
+         id="g92"><g
+           clip-path="url(#clipPath98)"
+           id="g94"><path
+             id="path108"
+             style="fill:url(#linearGradient106);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 2485.68,565.051 c 7.75,-7.77 11.63,-17.18 11.63,-28.262 0,-11.078 -3.88,-20.488 -11.63,-28.238 -7.76,-7.75 -17.17,-11.629 -28.25,-11.629 H 2211.52 V 254.328 c 0,-11.09 -3.88,-20.496 -11.63,-28.25 -7.76,-7.746 -17.18,-11.629 -28.24,-11.629 -11.09,0 -20.5,3.883 -28.26,11.629 -7.75,7.754 -11.63,17.16 -11.63,28.25 v 242.594 h -249.23 c -9.97,1.098 -18.56,5.398 -25.75,12.879 -7.2,7.469 -10.8,16.469 -10.8,26.988 0,11.082 3.86,20.492 11.63,28.262 7.75,7.75 17.16,11.64 28.25,11.64 h 571.57 c 11.08,0 20.49,-3.89 28.25,-11.64" /></g></g><g
+         id="g110"><g
+           clip-path="url(#clipPath116)"
+           id="g112"><path
+             id="path124"
+             style="fill:url(#linearGradient122);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 3219.24,226.078 c -7.75,-7.746 -17.16,-11.629 -28.24,-11.629 -11.08,0 -20.5,3.883 -28.24,11.629 -7.77,7.754 -11.64,17.16 -11.64,28.25 V 355.691 H 2660.13 V 254.328 c 0,-11.09 -3.87,-20.496 -11.63,-28.25 -7.76,-7.746 -17.17,-11.629 -28.24,-11.629 -11.09,0 -20.5,3.883 -28.25,11.629 -7.77,7.754 -11.63,17.16 -11.63,28.25 v 282.461 c 0,11.082 3.86,20.492 11.63,28.262 7.75,7.75 17.16,11.64 28.25,11.64 11.07,0 20.48,-3.89 28.24,-11.64 7.76,-7.77 11.63,-17.18 11.63,-28.262 v -101.34 h 490.99 v 101.34 c 0,11.082 3.87,20.492 11.64,28.262 7.74,7.75 17.16,11.64 28.24,11.64 11.08,0 20.49,-3.89 28.24,-11.64 7.76,-7.77 11.64,-17.18 11.64,-28.262 V 254.328 c 0,-11.09 -3.88,-20.496 -11.64,-28.25" /></g></g><path
+         id="path126"
+         style="fill:#63b6e4;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 3384.57,229.41 c -8.3,-9.969 -18.56,-14.961 -30.74,-14.961 -11.08,0 -20.49,3.883 -28.24,11.629 -7.77,7.754 -11.63,17.16 -11.63,28.25 0,9.973 2.76,18 8.3,24.094 l 201.88,271.668 c 9.41,12.738 21.87,23.121 37.38,31.16 15.5,8.012 32.12,12.051 49.84,12.051 16.62,0 32.41,-3.621 47.37,-10.801 14.95,-7.211 27.13,-17.18 36.55,-29.918 l 201.88,-270 c 3.32,-3.883 6.09,-8.184 8.31,-12.883 2.21,-4.711 3.33,-9.84 3.33,-15.371 0,-11.09 -3.89,-20.496 -11.64,-28.25 -7.77,-7.746 -17.17,-11.629 -28.24,-11.629 -13.3,0 -23.83,5.262 -31.57,15.789 l -193.58,258.371 c -3.87,4.422 -8.72,9.282 -14.54,14.551 -5.82,5.25 -11.76,7.891 -17.87,7.891 -6.09,0 -12.03,-2.641 -17.85,-7.891 -5.81,-5.269 -10.39,-10.129 -13.71,-14.551 L 3384.57,229.41" /><g
+         id="g128"><g
+           clip-path="url(#clipPath134)"
+           id="g130"><path
+             id="path142"
+             style="fill:url(#linearGradient140);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1666.16,940.148 -9.04,30.653 304.93,89.959 9.04,-30.64 -304.93,-89.972" /></g></g><g
+         id="g144"><g
+           clip-path="url(#clipPath150)"
+           id="g146"><path
+             id="path158"
+             style="fill:url(#linearGradient156);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1614.51,723.539 -8.8,30.723 669.8,191.75 -647.82,190.818 9.02,30.66 753.38,-221.92 -775.58,-222.031" /></g></g><g
+         id="g160"><g
+           clip-path="url(#clipPath166)"
+           id="g162"><path
+             id="path176"
+             style="fill:url(#radialGradient174);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1923.06,1051.2 c 0,-27.8 22.54,-50.32 50.33,-50.32 27.79,0 50.33,22.52 50.33,50.32 0,27.8 -22.54,50.33 -50.33,50.33 -27.79,0 -50.33,-22.53 -50.33,-50.33" /></g></g><g
+         id="g178"><g
+           clip-path="url(#clipPath184)"
+           id="g180"><path
+             id="path194"
+             style="fill:url(#radialGradient192);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1923.37,839.102 c 0,-27.793 22.52,-50.332 50.32,-50.332 27.8,0 50.32,22.539 50.32,50.332 0,27.789 -22.52,50.32 -50.32,50.32 -27.8,0 -50.32,-22.531 -50.32,-50.32" /></g></g><g
+         id="g196"><g
+           clip-path="url(#clipPath202)"
+           id="g198"><path
+             id="path212"
+             style="fill:url(#radialGradient210);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1573.58,1151.65 c 0,-27.81 22.53,-50.34 50.33,-50.34 27.79,0 50.32,22.53 50.32,50.34 0,27.79 -22.53,50.32 -50.32,50.32 -27.8,0 -50.33,-22.53 -50.33,-50.32" /></g></g><g
+         id="g214"><g
+           clip-path="url(#clipPath220)"
+           id="g216"><path
+             id="path230"
+             style="fill:url(#radialGradient228);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1573.58,949.461 c 0,-27.789 22.53,-50.32 50.33,-50.32 27.79,0 50.32,22.531 50.32,50.32 0,27.789 -22.53,50.328 -50.32,50.328 -27.8,0 -50.33,-22.539 -50.33,-50.328" /></g></g><g
+         id="g232"><g
+           clip-path="url(#clipPath238)"
+           id="g234"><path
+             id="path248"
+             style="fill:url(#radialGradient246);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 1573.28,743.98 c 0,-27.789 22.53,-50.32 50.32,-50.32 27.8,0 50.33,22.531 50.33,50.32 0,27.79 -22.53,50.329 -50.33,50.329 -27.79,0 -50.32,-22.539 -50.32,-50.329" /></g></g><g
+         id="g250"><g
+           clip-path="url(#clipPath256)"
+           id="g252"><path
+             id="path264"
+             style="fill:url(#radialGradient262);fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="m 2244.83,952.422 c 0,-39.711 32.19,-71.902 71.9,-71.902 39.7,0 71.89,32.191 71.89,71.902 0,39.707 -32.19,71.888 -71.89,71.888 -39.71,0 -71.9,-32.181 -71.9,-71.888" /></g></g></g></g></svg>
\ No newline at end of file
diff --git a/_static/voltha_components.svg b/_static/voltha_components.svg
new file mode 100644
index 0000000..35ddf79
--- /dev/null
+++ b/_static/voltha_components.svg
@@ -0,0 +1 @@
+<svg version="1.1" viewBox="0.0 0.0 412.71128608923885 407.1023622047244" fill="none" stroke="none" stroke-linecap="square" stroke-miterlimit="10" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><clipPath id="p.0"><path d="m0 0l412.71127 0l0 407.10236l-412.71127 0l0 -407.10236z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000" fill-opacity="0.0" d="m0 0l412.71127 0l0 407.10236l-412.71127 0z" fill-rule="evenodd"/><g filter="url(#shadowFilter-p.1)"><use xlink:href="#p.1" transform="matrix(1.0 0.0 0.0 1.0 0.0 2.099737532808399)"/></g><defs><filter id="shadowFilter-p.1" filterUnits="userSpaceOnUse"><feGaussianBlur in="SourceAlpha" stdDeviation="1.399825" result="blur"/><feComponentTransfer in="blur" color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0" intercept="0.0"/><feFuncG type="linear" slope="0" intercept="0.0"/><feFuncB type="linear" slope="0" intercept="0.0"/><feFuncA type="linear" slope="0.3765" intercept="0"/></feComponentTransfer></filter></defs><g id="p.1"><defs><linearGradient id="p.2" gradientUnits="userSpaceOnUse" gradientTransform="matrix(6.32459098406712 0.0 0.0 6.32459098406712 0.0 0.0)" spreadMethod="pad" x1="32.62709302349305" y1="31.91372032797191" x2="32.62707032846886" y2="38.23831131199831"><stop offset="0.0" stop-color="#fff6db"/><stop offset="1.0" stop-color="#fad25c"/></linearGradient></defs><path fill="url(#p.2)" d="m206.35301 208.50848l0 0c0 -3.6819763 2.9848328 -6.666809 6.666809 -6.666809l106.82387 0c1.768158 0 3.4638672 0.7023926 4.714142 1.9526672c1.2502747 1.2502594 1.9526672 2.9459991 1.9526672 4.714142l0 26.666397c0 3.6819763 -2.9848328 6.666794 -6.666809 6.666794l-106.82387 0c-3.6819763 0 -6.666809 -2.9848175 -6.666809 -6.666794z" fill-rule="evenodd"/><path stroke="#a1a1a1" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m206.35301 208.50848l0 0c0 -3.6819763 2.9848328 -6.666809 6.666809 -6.666809l106.82387 0c1.768158 0 3.4638672 0.7023926 4.714142 1.9526672c1.2502747 1.2502594 1.9526672 2.9459991 1.9526672 4.714142l0 26.666397c0 3.6819763 -2.9848328 6.666794 -6.666809 6.666794l-106.82387 0c-3.6819763 0 -6.666809 -2.9848175 -6.666809 -6.666794z" fill-rule="evenodd"/></g><g filter="url(#shadowFilter-p.3)"><use xlink:href="#p.3" transform="matrix(1.0 0.0 0.0 1.0 0.0 2.099737532808399)"/></g><defs><filter id="shadowFilter-p.3" filterUnits="userSpaceOnUse"><feGaussianBlur in="SourceAlpha" stdDeviation="1.399825" result="blur"/><feComponentTransfer in="blur" color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0" intercept="0.0"/><feFuncG type="linear" slope="0" intercept="0.0"/><feFuncB type="linear" slope="0" intercept="0.0"/><feFuncA type="linear" slope="0.3765" intercept="0"/></feComponentTransfer></filter></defs><g id="p.3"><path fill="#ff9900" d="m88.24541 140.1514l221.82677 0l0 24.661407l-221.82677 0z" fill-rule="evenodd"/><path stroke="#000000" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m88.24541 140.1514l221.82677 0l0 24.661407l-221.82677 0z" fill-rule="evenodd"/><path fill="#ffffff" d="m161.59238 156.91072q-0.046875 0.125 -0.109375 0.21875q-0.0625 0.078125 -0.203125 0.125q-0.140625 0.046875 -0.390625 0.046875q-0.234375 0.015625 -0.625 0.015625q-0.3125 0 -0.53125 0q-0.21875 0 -0.375 -0.015625q-0.15625 -0.015625 -0.265625 -0.046875q-0.09375 -0.046875 -0.15625 -0.09375q-0.0625 -0.046875 -0.109375 -0.109375q-0.03125 -0.0625 -0.0625 -0.171875l-3.0 -8.953125q-0.09375 -0.28125 -0.125 -0.4375q-0.015625 -0.171875 0.078125 -0.25q0.109375 -0.09375 0.34375 -0.109375q0.234375 -0.015625 0.65625 -0.015625q0.359375 0 0.5625 0.015625q0.203125 0.015625 0.3125 0.0625q0.109375 0.03125 0.140625 0.109375q0.046875 0.078125 0.09375 0.1875l2.453125 7.796875l0.015625 0l2.40625 -7.75q0.03125 -0.140625 0.078125 -0.21875q0.046875 -0.078125 0.15625 -0.125q0.125 -0.046875 0.328125 -0.0625q0.21875 -0.015625 0.578125 -0.015625q0.359375 0 0.5625 0.03125q0.203125 0.015625 0.265625 0.109375q0.078125 0.078125 0.046875 0.25q-0.015625 0.15625 -0.109375 0.4375l-3.015625 8.96875zm13.5234375 -4.8125q0 1.25 -0.3125 2.25q-0.3125 0.984375 -0.9375 1.6875q-0.609375 0.6875 -1.53125 1.0625q-0.90625 0.359375 -2.09375 0.359375q-1.1875 0 -2.0625 -0.3125q-0.875 -0.3125 -1.46875 -0.9375q-0.578125 -0.640625 -0.875 -1.609375q-0.296875 -0.984375 -0.296875 -2.328125q0 -1.21875 0.3125 -2.203125q0.3125 -0.984375 0.921875 -1.671875q0.625 -0.6875 1.53125 -1.046875q0.921875 -0.375 2.125 -0.375q1.140625 0 2.015625 0.3125q0.890625 0.296875 1.46875 0.9375q0.59375 0.625 0.890625 1.59375q0.3125 0.96875 0.3125 2.28125zm-2.15625 0.109375q0 -0.796875 -0.125 -1.453125q-0.125 -0.65625 -0.4375 -1.109375q-0.296875 -0.46875 -0.796875 -0.71875q-0.5 -0.265625 -1.25 -0.265625q-0.75 0 -1.265625 0.296875q-0.5 0.28125 -0.8125 0.765625q-0.3125 0.46875 -0.453125 1.109375q-0.125 0.625 -0.125 1.34375q0 0.828125 0.125 1.484375q0.125 0.65625 0.421875 1.125q0.296875 0.46875 0.796875 0.71875q0.5 0.25 1.265625 0.25q0.75 0 1.25 -0.28125q0.515625 -0.28125 0.828125 -0.765625q0.3125 -0.484375 0.4375 -1.125q0.140625 -0.65625 0.140625 -1.375zm9.4296875 4.203125q0 0.234375 -0.015625 0.390625q-0.015625 0.15625 -0.0625 0.265625q-0.03125 0.109375 -0.09375 0.15625q-0.0625 0.046875 -0.140625 0.046875l-4.625 0q-0.265625 0 -0.4375 -0.15625q-0.171875 -0.15625 -0.171875 -0.5l0 -9.171875q0 -0.078125 0.046875 -0.140625q0.046875 -0.0625 0.15625 -0.09375q0.125 -0.046875 0.328125 -0.0625q0.203125 -0.03125 0.5 -0.03125q0.296875 0 0.484375 0.03125q0.203125 0.015625 0.3125 0.0625q0.125 0.03125 0.171875 0.09375q0.0625 0.0625 0.0625 0.140625l0 8.125l3.171875 0q0.078125 0 0.140625 0.046875q0.0625 0.046875 0.09375 0.140625q0.046875 0.09375 0.0625 0.265625q0.015625 0.15625 0.015625 0.390625zm7.9375 -8.40625q0 0.21875 -0.015625 0.390625q-0.015625 0.15625 -0.0625 0.25q-0.03125 0.09375 -0.09375 0.140625q-0.0625 0.046875 -0.125 0.046875l-2.53125 0l0 8.15625q0 0.078125 -0.0625 0.140625q-0.046875 0.0625 -0.171875 0.109375q-0.109375 0.03125 -0.3125 0.046875q-0.1875 0.03125 -0.484375 0.03125q-0.296875 0 -0.5 -0.03125q-0.203125 -0.015625 -0.328125 -0.046875q-0.109375 -0.046875 -0.15625 -0.109375q-0.046875 -0.0625 -0.046875 -0.140625l0 -8.15625l-2.53125 0q-0.078125 0 -0.140625 -0.046875q-0.046875 -0.046875 -0.09375 -0.140625q-0.03125 -0.09375 -0.0625 -0.25q-0.015625 -0.171875 -0.015625 -0.390625q0 -0.234375 0.015625 -0.390625q0.03125 -0.171875 0.0625 -0.265625q0.046875 -0.109375 0.09375 -0.140625q0.0625 -0.046875 0.140625 -0.046875l7.125 0q0.0625 0 0.125 0.046875q0.0625 0.03125 0.09375 0.140625q0.046875 0.09375 0.0625 0.265625q0.015625 0.15625 0.015625 0.390625zm9.09375 8.984375q0 0.078125 -0.0625 0.140625q-0.046875 0.0625 -0.171875 0.109375q-0.109375 0.03125 -0.3125 0.046875q-0.1875 0.03125 -0.484375 0.03125q-0.296875 0 -0.5 -0.03125q-0.203125 -0.015625 -0.3125 -0.046875q-0.109375 -0.046875 -0.171875 -0.109375q-0.046875 -0.0625 -0.046875 -0.140625l0 -4.09375l-3.78125 0l0 4.09375q0 0.078125 -0.046875 0.140625q-0.046875 0.0625 -0.171875 0.109375q-0.109375 0.03125 -0.3125 0.046875q-0.1875 0.03125 -0.484375 0.03125q-0.296875 0 -0.5 -0.03125q-0.203125 -0.015625 -0.328125 -0.046875q-0.109375 -0.046875 -0.15625 -0.109375q-0.046875 -0.0625 -0.046875 -0.140625l0 -9.546875q0 -0.078125 0.046875 -0.140625q0.046875 -0.0625 0.15625 -0.09375q0.125 -0.046875 0.328125 -0.0625q0.203125 -0.03125 0.5 -0.03125q0.296875 0 0.484375 0.03125q0.203125 0.015625 0.3125 0.0625q0.125 0.03125 0.171875 0.09375q0.046875 0.0625 0.046875 0.140625l0 3.703125l3.78125 0l0 -3.703125q0 -0.078125 0.046875 -0.140625q0.0625 -0.0625 0.171875 -0.09375q0.109375 -0.046875 0.3125 -0.0625q0.203125 -0.03125 0.5 -0.03125q0.296875 0 0.484375 0.03125q0.203125 0.015625 0.3125 0.0625q0.125 0.03125 0.171875 0.09375q0.0625 0.0625 0.0625 0.140625l0 9.546875zm10.484375 -0.484375q0.09375 0.28125 0.109375 0.453125q0.03125 0.15625 -0.0625 0.25q-0.078125 0.078125 -0.296875 0.09375q-0.21875 0.015625 -0.609375 0.015625q-0.390625 0 -0.625 -0.015625q-0.21875 0 -0.34375 -0.03125q-0.109375 -0.046875 -0.15625 -0.109375q-0.046875 -0.0625 -0.078125 -0.171875l-0.671875 -2.03125l-3.796875 0l-0.640625 1.984375q-0.03125 0.109375 -0.09375 0.1875q-0.046875 0.0625 -0.15625 0.109375q-0.109375 0.046875 -0.328125 0.0625q-0.203125 0.015625 -0.53125 0.015625q-0.359375 0 -0.5625 -0.03125q-0.203125 -0.015625 -0.28125 -0.109375q-0.078125 -0.09375 -0.0625 -0.25q0.03125 -0.171875 0.125 -0.4375l3.109375 -8.96875q0.046875 -0.140625 0.109375 -0.21875q0.0625 -0.078125 0.203125 -0.125q0.140625 -0.046875 0.375 -0.046875q0.25 -0.015625 0.640625 -0.015625q0.46875 0 0.734375 0.015625q0.28125 0 0.421875 0.046875q0.15625 0.046875 0.21875 0.140625q0.078125 0.078125 0.125 0.21875l3.125 8.96875zm-4.640625 -7.421875l-0.015625 0l-1.421875 4.296875l2.859375 0l-1.421875 -4.296875zm14.82814 6.8125q0 0.203125 -0.015625 0.34375q-0.015625 0.125 -0.03125 0.21875q-0.015625 0.09375 -0.046875 0.15625q-0.03125 0.0625 -0.125 0.15625q-0.09375 0.078125 -0.328125 0.21875q-0.21875 0.125 -0.515625 0.234375q-0.28125 0.09375 -0.625 0.15625q-0.328125 0.0625 -0.6875 0.0625q-0.8125 0 -1.4375 -0.25q-0.60939026 -0.25 -1.0312653 -0.734375q-0.421875 -0.5 -0.640625 -1.203125q-0.21875 -0.703125 -0.21875 -1.609375q0 -1.046875 0.265625 -1.796875q0.265625 -0.765625 0.734375 -1.265625q0.46875 -0.5 1.1093903 -0.734375q0.640625 -0.25 1.40625 -0.25q0.3125 0 0.609375 0.0625q0.296875 0.046875 0.5625 0.140625q0.265625 0.09375 0.46875 0.21875q0.203125 0.109375 0.28125 0.203125q0.09375 0.078125 0.125 0.140625q0.046875 0.046875 0.0625 0.140625q0.015625 0.09375 0.03125 0.234375q0.015625 0.140625 0.015625 0.328125q0 0.453125 -0.078125 0.640625q-0.078125 0.1875 -0.203125 0.1875q-0.140625 0 -0.296875 -0.109375q-0.140625 -0.109375 -0.34375 -0.234375q-0.203125 -0.140625 -0.484375 -0.25q-0.28125 -0.109375 -0.671875 -0.109375q-0.765625 0 -1.171875 0.59375q-0.40625 0.578125 -0.40625 1.71875q0 0.5625 0.09375 1.0q0.109375 0.421875 0.3125 0.71875q0.203125 0.28125 0.5 0.4375q0.296875 0.140625 0.703125 0.140625q0.40625 0 0.6875 -0.125q0.296875 -0.125 0.515625 -0.265625q0.21875 -0.15625 0.359375 -0.265625q0.15625 -0.125 0.265625 -0.125q0.0625 0 0.109375 0.046875q0.046875 0.03125 0.078125 0.140625q0.03125 0.09375 0.046875 0.265625q0.015625 0.15625 0.015625 0.421875zm8.4609375 -2.453125q0 0.890625 -0.234375 1.625q-0.234375 0.734375 -0.71875 1.265625q-0.46875 0.53125 -1.1875 0.828125q-0.71875 0.296875 -1.671875 0.296875q-0.9375 0 -1.625 -0.265625q-0.6875 -0.265625 -1.140625 -0.75q-0.453125 -0.5 -0.671875 -1.21875q-0.21875 -0.71875 -0.21875 -1.640625q0 -0.890625 0.234375 -1.625q0.25 -0.734375 0.71875 -1.265625q0.484375 -0.53125 1.1875 -0.8125q0.71875 -0.296875 1.6875 -0.296875q0.9375 0 1.625 0.265625q0.6875 0.25 1.125 0.75q0.453125 0.484375 0.671875 1.203125q0.21875 0.71875 0.21875 1.640625zm-2.015625 0.078125q0 -0.515625 -0.09375 -0.9375q-0.078125 -0.4375 -0.28125 -0.75q-0.1875 -0.328125 -0.515625 -0.5q-0.3125 -0.1875 -0.8125 -0.1875q-0.4375 0 -0.765625 0.15625q-0.328125 0.15625 -0.546875 0.46875q-0.203125 0.3125 -0.3125 0.75q-0.09375 0.421875 -0.09375 0.984375q0 0.515625 0.078125 0.953125q0.09375 0.421875 0.28125 0.75q0.1875 0.3125 0.515625 0.5q0.328125 0.171875 0.8125 0.171875q0.453125 0 0.78125 -0.15625q0.328125 -0.171875 0.53125 -0.46875q0.21875 -0.3125 0.3125 -0.734375q0.109375 -0.4375 0.109375 -1.0zm8.0546875 -2.84375q0 0.28125 -0.015625 0.46875q-0.015625 0.171875 -0.046875 0.28125q-0.03125 0.09375 -0.09375 0.140625q-0.046875 0.03125 -0.125 0.03125q-0.0625 0 -0.140625 -0.015625q-0.078125 -0.03125 -0.171875 -0.0625q-0.09375 -0.03125 -0.21875 -0.0625q-0.109375 -0.03125 -0.25 -0.03125q-0.171875 0 -0.34375 0.078125q-0.15625 0.0625 -0.328125 0.203125q-0.171875 0.140625 -0.375 0.375q-0.1875 0.234375 -0.40625 0.578125l0 4.34375q0 0.078125 -0.046875 0.140625q-0.046875 0.046875 -0.15625 0.09375q-0.109375 0.046875 -0.296875 0.0625q-0.1875 0.015625 -0.484375 0.015625q-0.28125 0 -0.46875 -0.015625q-0.1875 -0.015625 -0.3125 -0.0625q-0.109375 -0.046875 -0.15625 -0.09375q-0.046875 -0.0625 -0.046875 -0.140625l0 -6.96875q0 -0.078125 0.03125 -0.140625q0.046875 -0.0625 0.140625 -0.09375q0.109375 -0.046875 0.265625 -0.0625q0.171875 -0.015625 0.40625 -0.015625q0.25 0 0.40625 0.015625q0.171875 0.015625 0.265625 0.0625q0.09375 0.03125 0.125 0.09375q0.046875 0.0625 0.046875 0.140625l0 0.859375q0.265625 -0.390625 0.5 -0.640625q0.25 -0.25 0.46875 -0.390625q0.21875 -0.15625 0.4375 -0.21875q0.21875 -0.0625 0.4375 -0.0625q0.109375 0 0.21875 0.015625q0.125 0.015625 0.25 0.046875q0.125 0.015625 0.21875 0.0625q0.09375 0.03125 0.125 0.078125q0.046875 0.03125 0.0625 0.078125q0.03125 0.046875 0.046875 0.125q0.015625 0.078125 0.015625 0.25q0.015625 0.15625 0.015625 0.4375zm7.640625 2.640625q0 0.359375 -0.15625 0.53125q-0.15625 0.171875 -0.4375 0.171875l-4.25 0q0 0.4375 0.109375 0.8125q0.109375 0.359375 0.328125 0.609375q0.234375 0.25 0.59375 0.390625q0.375 0.125 0.875 0.125q0.515625 0 0.90625 -0.0625q0.390625 -0.078125 0.671875 -0.171875q0.296875 -0.09375 0.484375 -0.15625q0.1875 -0.078125 0.296875 -0.078125q0.078125 0 0.125 0.03125q0.046875 0.015625 0.078125 0.09375q0.03125 0.0625 0.03125 0.203125q0.015625 0.125 0.015625 0.3125q0 0.171875 -0.015625 0.296875q0 0.125 -0.015625 0.21875q-0.015625 0.078125 -0.046875 0.140625q-0.03125 0.046875 -0.078125 0.109375q-0.046875 0.046875 -0.28125 0.140625q-0.21875 0.09375 -0.578125 0.1875q-0.34375 0.09375 -0.796875 0.15625q-0.453125 0.078125 -0.96875 0.078125q-0.9375 0 -1.640625 -0.234375q-0.6875 -0.25 -1.15625 -0.71875q-0.46875 -0.484375 -0.703125 -1.203125q-0.234375 -0.734375 -0.234375 -1.703125q0 -0.9375 0.234375 -1.671875q0.25 -0.75 0.703125 -1.265625q0.46875 -0.53125 1.125 -0.796875q0.671875 -0.28125 1.5 -0.28125q0.875 0 1.484375 0.265625q0.625 0.25 1.015625 0.71875q0.40625 0.453125 0.59375 1.078125q0.1875 0.625 0.1875 1.359375l0 0.3125zm-1.90625 -0.5625q0.03125 -0.828125 -0.328125 -1.296875q-0.359375 -0.484375 -1.09375 -0.484375q-0.375 0 -0.65625 0.140625q-0.28125 0.140625 -0.46875 0.390625q-0.171875 0.234375 -0.28125 0.5625q-0.09375 0.3125 -0.109375 0.6875l2.9375 0z" fill-rule="nonzero"/></g><path fill="#ffffff" d="m49.845406 295.45792l0 0c0 -10.645813 8.63015 -19.27597 19.275978 -19.27597l133.98347 0c5.1123047 0 10.015228 2.0308533 13.630173 5.645813c3.6149445 3.6149292 5.645813 8.517853 5.645813 13.630157l0 77.10159c0 10.6458435 -8.630157 19.27597 -19.275986 19.27597l-133.98347 0l0 0c-10.645828 0 -19.275978 -8.630127 -19.275978 -19.27597z" fill-rule="evenodd"/><path stroke="#a5a5a5" stroke-width="2.6666666666666665" stroke-linejoin="round" stroke-linecap="butt" d="m49.845406 295.45792l0 0c0 -10.645813 8.63015 -19.27597 19.275978 -19.27597l133.98347 0c5.1123047 0 10.015228 2.0308533 13.630173 5.645813c3.6149445 3.6149292 5.645813 8.517853 5.645813 13.630157l0 77.10159c0 10.6458435 -8.630157 19.27597 -19.275986 19.27597l-133.98347 0l0 0c-10.645828 0 -19.275978 -8.630127 -19.275978 -19.27597z" fill-rule="evenodd"/><path fill="#000000" d="m94.083496 383.08133q-0.03125 0.140625 -0.109375 0.21875q-0.078125 0.078125 -0.21875 0.125q-0.125 0.03125 -0.3125 0.046875q-0.1875 0.03125 -0.46875 0.03125q-0.296875 0 -0.5 -0.03125q-0.203125 -0.015625 -0.328125 -0.046875q-0.125 -0.046875 -0.203125 -0.125q-0.0625 -0.078125 -0.09375 -0.21875l-2.546875 -9.15625l-0.015625 0l-2.34375 9.15625q-0.03125 0.140625 -0.09375 0.21875q-0.0625 0.078125 -0.1875 0.125q-0.125 0.03125 -0.3125 0.046875q-0.1875 0.03125 -0.484375 0.03125q-0.3125 0 -0.53125 -0.03125q-0.203125 -0.015625 -0.328125 -0.046875q-0.125 -0.046875 -0.203125 -0.125q-0.0625 -0.078125 -0.09375 -0.21875l-3.203125 -11.1875q-0.0625 -0.21875 -0.0625 -0.34375q0 -0.125 0.078125 -0.1875q0.078125 -0.0625 0.25 -0.078125q0.1875 -0.015625 0.484375 -0.015625q0.28125 0 0.453125 0.015625q0.171875 0 0.25 0.046875q0.09375 0.03125 0.125 0.09375q0.046875 0.0625 0.0625 0.171875l2.71875 10.15625l0.015625 0l2.578125 -10.140625q0.03125 -0.09375 0.0625 -0.15625q0.046875 -0.078125 0.140625 -0.109375q0.09375 -0.046875 0.265625 -0.0625q0.1875 -0.015625 0.46875 -0.015625q0.25 0 0.40625 0.015625q0.15625 0.015625 0.25 0.0625q0.09375 0.03125 0.140625 0.109375q0.046875 0.0625 0.0625 0.15625l2.78125 10.140625l0.03125 0l2.671875 -10.140625q0.015625 -0.09375 0.046875 -0.15625q0.03125 -0.078125 0.109375 -0.109375q0.09375 -0.046875 0.25 -0.0625q0.171875 -0.015625 0.453125 -0.015625q0.28125 0 0.4375 0.03125q0.171875 0.015625 0.234375 0.078125q0.078125 0.0625 0.078125 0.1875q0 0.109375 -0.046875 0.328125l-3.21875 11.1875zm12.538879 0.125q0 0.078125 -0.03125 0.125q-0.03125 0.046875 -0.125 0.09375q-0.078125 0.03125 -0.234375 0.046875q-0.140625 0.03125 -0.375 0.03125q-0.234375 0 -0.390625 -0.03125q-0.140625 -0.015625 -0.234375 -0.046875q-0.078125 -0.046875 -0.109375 -0.09375q-0.03125 -0.046875 -0.03125 -0.125l0 -4.9375q0 -0.71875 -0.125 -1.15625q-0.109375 -0.453125 -0.328125 -0.765625q-0.203125 -0.3125 -0.546875 -0.484375q-0.34375 -0.171875 -0.796875 -0.171875q-0.578125 0 -1.171875 0.421875q-0.578125 0.40625 -1.203125 1.203125l0 5.890625q0 0.078125 -0.046875 0.125q-0.03125 0.046875 -0.125 0.09375q-0.078125 0.03125 -0.234375 0.046875q-0.140625 0.03125 -0.375 0.03125q-0.21875 0 -0.375 -0.03125q-0.15625 -0.015625 -0.25 -0.046875q-0.078125 -0.046875 -0.109375 -0.09375q-0.03125 -0.046875 -0.03125 -0.125l0 -12.515625q0 -0.078125 0.03125 -0.125q0.03125 -0.0625 0.109375 -0.09375q0.09375 -0.046875 0.25 -0.0625q0.15625 -0.015625 0.375 -0.015625q0.234375 0 0.375 0.015625q0.15625 0.015625 0.234375 0.0625q0.09375 0.03125 0.125 0.09375q0.046875 0.046875 0.046875 0.125l0 5.046875q0.65625 -0.703125 1.328125 -1.046875q0.6875 -0.34375 1.359375 -0.34375q0.84375 0 1.421875 0.296875q0.578125 0.28125 0.9375 0.765625q0.359375 0.46875 0.5 1.109375q0.15625 0.640625 0.15625 1.546875l0 5.140625zm4.3778076 0q0 0.078125 -0.046875 0.125q-0.03125 0.046875 -0.125 0.09375q-0.078125 0.03125 -0.234375 0.046875q-0.140625 0.03125 -0.375 0.03125q-0.21875 0 -0.375 -0.03125q-0.15625 -0.015625 -0.25 -0.046875q-0.078125 -0.046875 -0.109375 -0.09375q-0.03125 -0.046875 -0.03125 -0.125l0 -8.4375q0 -0.0625 0.03125 -0.109375q0.03125 -0.0625 0.109375 -0.09375q0.09375 -0.046875 0.25 -0.0625q0.15625 -0.015625 0.375 -0.015625q0.234375 0 0.375 0.015625q0.15625 0.015625 0.234375 0.0625q0.09375 0.03125 0.125 0.09375q0.046875 0.046875 0.046875 0.109375l0 8.4375zm0.171875 -11.28125q0 0.546875 -0.203125 0.75q-0.203125 0.1875 -0.765625 0.1875q-0.53125 0 -0.734375 -0.1875q-0.203125 -0.203125 -0.203125 -0.734375q0 -0.53125 0.203125 -0.734375q0.203125 -0.203125 0.765625 -0.203125q0.53125 0 0.734375 0.203125q0.203125 0.1875 0.203125 0.71875zm7.0596313 10.65625q0 0.28125 -0.03125 0.4375q-0.03125 0.15625 -0.109375 0.234375q-0.078125 0.078125 -0.234375 0.140625q-0.140625 0.0625 -0.34375 0.109375q-0.1875 0.046875 -0.40625 0.0625q-0.203125 0.03125 -0.421875 0.03125q-0.65625 0 -1.125 -0.171875q-0.46875 -0.171875 -0.765625 -0.515625q-0.296875 -0.359375 -0.4375 -0.890625q-0.140625 -0.546875 -0.140625 -1.28125l0 -4.921875l-1.171875 0q-0.140625 0 -0.234375 -0.140625q-0.078125 -0.15625 -0.078125 -0.5q0 -0.171875 0.015625 -0.296875q0.03125 -0.125 0.0625 -0.203125q0.046875 -0.078125 0.09375 -0.109375q0.0625 -0.03125 0.140625 -0.03125l1.171875 0l0 -2.015625q0 -0.0625 0.03125 -0.109375q0.03125 -0.0625 0.125 -0.09375q0.09375 -0.046875 0.234375 -0.0625q0.15625 -0.03125 0.375 -0.03125q0.234375 0 0.375 0.03125q0.15625 0.015625 0.234375 0.0625q0.09375 0.03125 0.125 0.09375q0.046875 0.046875 0.046875 0.109375l0 2.015625l2.171875 0q0.0625 0 0.125 0.03125q0.0625 0.03125 0.09375 0.109375q0.046875 0.078125 0.0625 0.203125q0.015625 0.125 0.015625 0.296875q0 0.34375 -0.078125 0.5q-0.078125 0.140625 -0.21875 0.140625l-2.171875 0l0 4.703125q0 0.875 0.25 1.328125q0.265625 0.4375 0.9375 0.4375q0.203125 0 0.375 -0.046875q0.171875 -0.046875 0.296875 -0.09375q0.140625 -0.046875 0.234375 -0.078125q0.09375 -0.046875 0.171875 -0.046875q0.046875 0 0.078125 0.03125q0.046875 0.015625 0.0625 0.078125q0.03125 0.0625 0.046875 0.1875q0.015625 0.109375 0.015625 0.265625zm9.239563 -3.953125q0 0.359375 -0.1875 0.515625q-0.171875 0.15625 -0.40625 0.15625l-5.53125 0q0 0.703125 0.140625 1.265625q0.140625 0.5625 0.46875 0.96875q0.328125 0.390625 0.84375 0.609375q0.53125 0.21875 1.296875 0.21875q0.59375 0 1.0625 -0.09375q0.46875 -0.109375 0.8125 -0.21875q0.34375 -0.125 0.5625 -0.21875q0.21875 -0.109375 0.328125 -0.109375q0.0625 0 0.109375 0.03125q0.0625 0.03125 0.09375 0.109375q0.03125 0.0625 0.03125 0.1875q0.015625 0.109375 0.015625 0.28125q0 0.109375 -0.015625 0.203125q0 0.09375 -0.015625 0.171875q-0.015625 0.0625 -0.046875 0.125q-0.03125 0.046875 -0.078125 0.109375q-0.046875 0.046875 -0.3125 0.171875q-0.25 0.109375 -0.65625 0.21875q-0.390625 0.109375 -0.921875 0.1875q-0.53125 0.09375 -1.125 0.09375q-1.046875 0 -1.828125 -0.28125q-0.78125 -0.296875 -1.3125 -0.859375q-0.53125 -0.578125 -0.8125 -1.4375q-0.265625 -0.859375 -0.265625 -2.0q0 -1.09375 0.28125 -1.953125q0.28125 -0.875 0.796875 -1.46875q0.53125 -0.609375 1.28125 -0.9375q0.75 -0.328125 1.6875 -0.328125q0.984375 0 1.6875 0.328125q0.703125 0.3125 1.140625 0.859375q0.453125 0.53125 0.65625 1.265625q0.21875 0.71875 0.21875 1.546875l0 0.28125zm-1.546875 -0.46875q0.03125 -1.21875 -0.546875 -1.90625q-0.5625 -0.6875 -1.671875 -0.6875q-0.578125 0 -1.015625 0.21875q-0.421875 0.203125 -0.71875 0.5625q-0.28125 0.359375 -0.453125 0.828125q-0.15625 0.46875 -0.171875 0.984375l4.578125 0zm11.6562805 0.71875q0 1.09375 -0.234375 1.96875q-0.234375 0.875 -0.703125 1.5q-0.46875 0.609375 -1.140625 0.9375q-0.671875 0.328125 -1.546875 0.328125q-0.40625 0 -0.75 -0.078125q-0.328125 -0.078125 -0.65625 -0.25q-0.328125 -0.1875 -0.65625 -0.453125q-0.328125 -0.265625 -0.703125 -0.65625l0 1.03125q0 0.078125 -0.046875 0.140625q-0.03125 0.046875 -0.109375 0.078125q-0.078125 0.03125 -0.203125 0.046875q-0.125 0.03125 -0.328125 0.03125q-0.1875 0 -0.328125 -0.03125q-0.125 -0.015625 -0.21875 -0.046875q-0.078125 -0.03125 -0.109375 -0.078125q-0.015625 -0.0625 -0.015625 -0.140625l0 -12.515625q0 -0.078125 0.03125 -0.125q0.03125 -0.0625 0.109375 -0.09375q0.09375 -0.046875 0.25 -0.0625q0.15625 -0.015625 0.375 -0.015625q0.234375 0 0.375 0.015625q0.15625 0.015625 0.234375 0.0625q0.09375 0.03125 0.125 0.09375q0.046875 0.046875 0.046875 0.125l0 5.046875q0.375 -0.375 0.71875 -0.640625q0.359375 -0.265625 0.6875 -0.421875q0.34375 -0.171875 0.671875 -0.25q0.34375 -0.078125 0.71875 -0.078125q0.921875 0 1.5625 0.375q0.65625 0.359375 1.0625 0.984375q0.40625 0.609375 0.59375 1.4375q0.1875 0.8125 0.1875 1.734375zm-1.625 0.171875q0 -0.640625 -0.109375 -1.25q-0.09375 -0.609375 -0.34375 -1.078125q-0.234375 -0.46875 -0.640625 -0.75q-0.390625 -0.28125 -1.0 -0.28125q-0.296875 0 -0.59375 0.078125q-0.28125 0.078125 -0.59375 0.28125q-0.296875 0.1875 -0.625 0.5q-0.3125 0.3125 -0.671875 0.78125l0 3.359375q0.625 0.78125 1.203125 1.1875q0.59375 0.40625 1.21875 0.40625q0.578125 0 0.984375 -0.28125q0.421875 -0.28125 0.671875 -0.734375q0.265625 -0.46875 0.375 -1.046875q0.125 -0.578125 0.125 -1.171875zm11.799683 -0.15625q0 1.03125 -0.28125 1.90625q-0.265625 0.859375 -0.8125 1.484375q-0.53125 0.625 -1.34375 0.984375q-0.8125 0.34375 -1.875 0.34375q-1.046875 0 -1.828125 -0.296875q-0.765625 -0.3125 -1.28125 -0.90625q-0.515625 -0.59375 -0.765625 -1.4375q-0.25 -0.84375 -0.25 -1.90625q0 -1.03125 0.265625 -1.890625q0.265625 -0.875 0.796875 -1.5q0.546875 -0.625 1.34375 -0.96875q0.8125 -0.359375 1.890625 -0.359375q1.046875 0 1.8125 0.3125q0.78125 0.3125 1.296875 0.90625q0.515625 0.59375 0.765625 1.4375q0.265625 0.828125 0.265625 1.890625zm-1.640625 0.109375q0 -0.6875 -0.125 -1.296875q-0.125 -0.609375 -0.421875 -1.0625q-0.28125 -0.46875 -0.78125 -0.734375q-0.5 -0.265625 -1.234375 -0.265625q-0.6875 0 -1.1875 0.25q-0.484375 0.234375 -0.8125 0.6875q-0.3125 0.4375 -0.46875 1.046875q-0.140625 0.609375 -0.140625 1.328125q0 0.703125 0.125 1.3125q0.125 0.609375 0.421875 1.0625q0.296875 0.453125 0.78125 0.71875q0.5 0.265625 1.25 0.265625q0.671875 0 1.15625 -0.234375q0.5 -0.25 0.8125 -0.6875q0.328125 -0.4375 0.46875 -1.046875q0.15625 -0.609375 0.15625 -1.34375zm10.305908 4.03125q0.0625 0.125 0.0625 0.21875q0 0.078125 -0.09375 0.140625q-0.078125 0.0625 -0.265625 0.078125q-0.171875 0.03125 -0.46875 0.03125q-0.28125 0 -0.453125 -0.015625q-0.15625 -0.015625 -0.25 -0.046875q-0.09375 -0.03125 -0.15625 -0.078125q-0.046875 -0.0625 -0.078125 -0.125l-2.03125 -3.34375l-2.015625 3.34375q-0.03125 0.0625 -0.09375 0.125q-0.046875 0.046875 -0.140625 0.078125q-0.09375 0.03125 -0.265625 0.046875q-0.15625 0.015625 -0.421875 0.015625q-0.265625 0 -0.4375 -0.03125q-0.171875 -0.015625 -0.25 -0.078125q-0.078125 -0.0625 -0.078125 -0.140625q0 -0.09375 0.09375 -0.21875l2.609375 -4.125l-2.46875 -3.953125q-0.078125 -0.140625 -0.09375 -0.21875q0 -0.09375 0.09375 -0.15625q0.09375 -0.0625 0.265625 -0.078125q0.1875 -0.015625 0.484375 -0.015625q0.28125 0 0.4375 0.015625q0.171875 0.015625 0.265625 0.046875q0.09375 0.015625 0.140625 0.0625q0.046875 0.046875 0.078125 0.109375l1.921875 3.140625l1.953125 -3.140625q0.03125 -0.046875 0.078125 -0.09375q0.046875 -0.046875 0.125 -0.078125q0.078125 -0.03125 0.21875 -0.046875q0.15625 -0.015625 0.40625 -0.015625q0.265625 0 0.4375 0.015625q0.171875 0.015625 0.25 0.078125q0.09375 0.046875 0.078125 0.140625q0 0.09375 -0.078125 0.234375l-2.46875 3.90625l2.609375 4.171875zm16.58551 -5.796875q0 1.46875 -0.34375 2.65625q-0.34375 1.171875 -1.03125 2.0q-0.6875 0.828125 -1.734375 1.28125q-1.046875 0.4375 -2.421875 0.4375q-1.375 0 -2.375 -0.40625q-1.0 -0.40625 -1.65625 -1.171875q-0.640625 -0.78125 -0.96875 -1.9375q-0.3125 -1.15625 -0.3125 -2.65625q0 -1.421875 0.34375 -2.59375q0.359375 -1.171875 1.046875 -1.984375q0.6875 -0.828125 1.734375 -1.265625q1.046875 -0.453125 2.421875 -0.453125q1.34375 0 2.328125 0.40625q1.0 0.390625 1.65625 1.171875q0.671875 0.765625 0.984375 1.90625q0.328125 1.140625 0.328125 2.609375zm-1.6875 0.109375q0 -1.03125 -0.1875 -1.90625q-0.1875 -0.890625 -0.609375 -1.53125q-0.421875 -0.65625 -1.140625 -1.015625q-0.71875 -0.375 -1.765625 -0.375q-1.046875 0 -1.765625 0.390625q-0.703125 0.390625 -1.15625 1.046875q-0.4375 0.65625 -0.640625 1.53125q-0.1875 0.875 -0.1875 1.84375q0 1.0625 0.171875 1.96875q0.1875 0.90625 0.609375 1.5625q0.421875 0.640625 1.125 1.0q0.71875 0.359375 1.78125 0.359375q1.0625 0 1.78125 -0.390625q0.71875 -0.390625 1.15625 -1.0625q0.453125 -0.671875 0.640625 -1.546875q0.1875 -0.890625 0.1875 -1.875zm10.516724 5.390625q0 0.1875 -0.015625 0.3125q-0.015625 0.125 -0.0625 0.21875q-0.03125 0.09375 -0.09375 0.140625q-0.0625 0.03125 -0.15625 0.03125l-5.34375 0q-0.21875 0 -0.421875 -0.140625q-0.1875 -0.15625 -0.1875 -0.515625l0 -11.21875q0 -0.078125 0.03125 -0.125q0.046875 -0.0625 0.140625 -0.09375q0.09375 -0.03125 0.25 -0.046875q0.15625 -0.03125 0.390625 -0.03125q0.234375 0 0.375 0.03125q0.15625 0.015625 0.25 0.046875q0.09375 0.03125 0.125 0.09375q0.046875 0.046875 0.046875 0.125l0 10.484375l4.34375 0q0.09375 0 0.15625 0.046875q0.0625 0.03125 0.09375 0.109375q0.046875 0.078125 0.0625 0.21875q0.015625 0.125 0.015625 0.3125zm9.37912 -10.734375q0 0.1875 -0.015625 0.328125q-0.015625 0.125 -0.0625 0.203125q-0.03125 0.078125 -0.09375 0.125q-0.0625 0.03125 -0.140625 0.03125l-3.40625 0l0 10.5q0 0.078125 -0.046875 0.140625q-0.03125 0.046875 -0.125 0.09375q-0.09375 0.03125 -0.25 0.046875q-0.15625 0.03125 -0.390625 0.03125q-0.21875 0 -0.390625 -0.03125q-0.15625 -0.015625 -0.25 -0.046875q-0.09375 -0.046875 -0.125 -0.09375q-0.03125 -0.0625 -0.03125 -0.140625l0 -10.5l-3.421875 0q-0.0625 0 -0.125 -0.03125q-0.0625 -0.046875 -0.109375 -0.125q-0.03125 -0.078125 -0.0625 -0.203125q-0.015625 -0.140625 -0.015625 -0.328125q0 -0.171875 0.015625 -0.296875q0.03125 -0.140625 0.0625 -0.21875q0.046875 -0.09375 0.109375 -0.125q0.0625 -0.046875 0.125 -0.046875l8.4375 0q0.078125 0 0.140625 0.046875q0.0625 0.03125 0.09375 0.125q0.046875 0.078125 0.0625 0.21875q0.015625 0.125 0.015625 0.296875z" fill-rule="nonzero"/><g filter="url(#shadowFilter-p.4)"><use xlink:href="#p.4" transform="matrix(1.0 0.0 0.0 1.0 0.0 2.099737532808399)"/></g><defs><filter id="shadowFilter-p.4" filterUnits="userSpaceOnUse"><feGaussianBlur in="SourceAlpha" stdDeviation="1.399825" result="blur"/><feComponentTransfer in="blur" color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0" intercept="0.0"/><feFuncG type="linear" slope="0" intercept="0.0"/><feFuncB type="linear" slope="0" intercept="0.0"/><feFuncA type="linear" slope="0.3765" intercept="0"/></feComponentTransfer></filter></defs><g id="p.4"><defs><radialGradient id="p.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(7.81749938464577 0.0 0.0 7.81749938464577 0.0 0.0)" spreadMethod="pad" cx="17.41147240388523" cy="27.818898887478127" fx="17.41147240388523" fy="27.818898887478127" r="7.817499160766602"><stop offset="0.0" stop-color="#f5d0d0"/><stop offset="1.0" stop-color="#d96868"/></radialGradient></defs><path fill="url(#p.5)" d="m78.36614 204.14102l0 0c0 -3.6819763 2.9848328 -6.666794 6.6668015 -6.666794l102.16246 0c1.7681427 0 3.4638672 0.7023926 4.714142 1.952652c1.2502747 1.2502747 1.9526672 2.9459991 1.9526672 4.714142l0 26.666397c0 3.6819763 -2.9848328 6.666809 -6.666809 6.666809l-102.16246 0c-3.6819687 0 -6.6668015 -2.9848328 -6.6668015 -6.666809z" fill-rule="evenodd"/><path stroke="#a1a1a1" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m78.36614 204.14102l0 0c0 -3.6819763 2.9848328 -6.666794 6.6668015 -6.666794l102.16246 0c1.7681427 0 3.4638672 0.7023926 4.714142 1.952652c1.2502747 1.2502747 1.9526672 2.9459991 1.9526672 4.714142l0 26.666397c0 3.6819763 -2.9848328 6.666809 -6.666809 6.666809l-102.16246 0c-3.6819687 0 -6.6668015 -2.9848328 -6.6668015 -6.666809z" fill-rule="evenodd"/><path fill="#000000" d="m115.68449 208.66235q0 1.21875 -0.296875 2.203125q-0.28125 0.984375 -0.859375 1.6875q-0.5625 0.6875 -1.4375 1.0625q-0.859375 0.375 -2.015625 0.375q-1.140625 0 -1.984375 -0.34375q-0.828125 -0.34375 -1.375 -0.984375q-0.53125 -0.65625 -0.796875 -1.609375q-0.265625 -0.96875 -0.265625 -2.21875q0 -1.203125 0.28125 -2.171875q0.296875 -0.984375 0.875 -1.65625q0.578125 -0.6875 1.4375 -1.0625q0.875 -0.375 2.03125 -0.375q1.109375 0 1.9375 0.34375q0.828125 0.328125 1.375 0.984375q0.5625 0.640625 0.828125 1.59375q0.265625 0.9375 0.265625 2.171875zm-1.40625 0.09375q0 -0.859375 -0.15625 -1.59375q-0.15625 -0.75 -0.515625 -1.28125q-0.34375 -0.546875 -0.9375 -0.84375q-0.59375 -0.3125 -1.46875 -0.3125q-0.875 0 -1.46875 0.328125q-0.59375 0.328125 -0.96875 0.875q-0.375 0.546875 -0.53125 1.28125q-0.15625 0.71875 -0.15625 1.53125q0 0.890625 0.140625 1.640625q0.15625 0.75 0.5 1.296875q0.359375 0.53125 0.9375 0.84375q0.59375 0.296875 1.484375 0.296875q0.890625 0 1.484375 -0.328125q0.609375 -0.328125 0.96875 -0.890625q0.375 -0.5625 0.53125 -1.296875q0.15625 -0.734375 0.15625 -1.546875zm9.859375 1.25q0 0.921875 -0.203125 1.65625q-0.203125 0.734375 -0.59375 1.25q-0.375 0.515625 -0.953125 0.796875q-0.5625 0.28125 -1.296875 0.28125q-0.3125 0 -0.578125 -0.0625q-0.265625 -0.0625 -0.53125 -0.203125q-0.25 -0.140625 -0.5 -0.34375q-0.25 -0.203125 -0.53125 -0.46875l0 3.515625q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.0625 0.03125 -0.1875 0.046875q-0.125 0.015625 -0.3125 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.078125 -0.03125 -0.109375 -0.078125q-0.015625 -0.046875 -0.015625 -0.109375l0 -9.828125q0 -0.0625 0.015625 -0.109375q0.03125 -0.046875 0.09375 -0.078125q0.078125 -0.03125 0.1875 -0.03125q0.109375 -0.015625 0.265625 -0.015625q0.15625 0 0.265625 0.015625q0.109375 0 0.171875 0.03125q0.078125 0.03125 0.09375 0.078125q0.03125 0.046875 0.03125 0.109375l0 0.953125q0.328125 -0.328125 0.625 -0.5625q0.296875 -0.25 0.59375 -0.40625q0.296875 -0.171875 0.609375 -0.25q0.328125 -0.078125 0.671875 -0.078125q0.765625 0 1.296875 0.296875q0.546875 0.296875 0.890625 0.8125q0.34375 0.515625 0.5 1.203125q0.15625 0.671875 0.15625 1.4375zm-1.359375 0.15625q0 -0.546875 -0.09375 -1.046875q-0.078125 -0.5 -0.28125 -0.890625q-0.1875 -0.390625 -0.53125 -0.625q-0.328125 -0.234375 -0.828125 -0.234375q-0.25 0 -0.5 0.078125q-0.234375 0.0625 -0.484375 0.234375q-0.25 0.15625 -0.53125 0.421875q-0.265625 0.25 -0.578125 0.640625l0 2.796875q0.53125 0.640625 1.0 0.984375q0.484375 0.34375 1.015625 0.34375q0.484375 0 0.828125 -0.234375q0.34375 -0.234375 0.5625 -0.625q0.21875 -0.390625 0.3125 -0.875q0.109375 -0.484375 0.109375 -0.96875zm9.296867 -0.34375q0 0.296875 -0.15625 0.4375q-0.15625 0.125 -0.34375 0.125l-4.6093674 0q0 0.578125 0.109375 1.046875q0.125 0.46875 0.390625 0.8125q0.28125 0.328125 0.7187424 0.515625q0.4375 0.171875 1.0625 0.171875q0.5 0 0.890625 -0.078125q0.390625 -0.078125 0.671875 -0.171875q0.296875 -0.109375 0.46875 -0.1875q0.1875 -0.09375 0.28125 -0.09375q0.0625 0 0.09375 0.03125q0.046875 0.03125 0.0625 0.09375q0.03125 0.046875 0.046875 0.140625q0.015625 0.09375 0.015625 0.234375q0 0.109375 -0.015625 0.1875q0 0.0625 -0.015625 0.125q-0.015625 0.0625 -0.046875 0.109375q-0.015625 0.046875 -0.0625 0.09375q-0.046875 0.03125 -0.265625 0.140625q-0.203125 0.09375 -0.546875 0.1875q-0.328125 0.09375 -0.765625 0.171875q-0.4375 0.078125 -0.9375 0.078125q-0.875 0 -1.5312424 -0.25q-0.640625 -0.25 -1.09375 -0.71875q-0.4375 -0.484375 -0.671875 -1.203125q-0.21875 -0.71875 -0.21875 -1.671875q0 -0.90625 0.234375 -1.625q0.234375 -0.71875 0.671875 -1.21875q0.4375 -0.515625 1.0625 -0.78125q0.6249924 -0.265625 1.4062424 -0.265625q0.828125 0 1.40625 0.265625q0.578125 0.265625 0.953125 0.71875q0.375 0.4375 0.546875 1.046875q0.1875 0.609375 0.1875 1.296875l0 0.234375zm-1.296875 -0.390625q0.015625 -1.015625 -0.453125 -1.59375q-0.46875 -0.578125 -1.40625 -0.578125q-0.46875 0 -0.828125 0.1875q-0.35936737 0.171875 -0.6093674 0.46875q-0.234375 0.296875 -0.375 0.703125q-0.125 0.390625 -0.140625 0.8125l3.8124924 0zm9.3046875 4.203125q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.0625 0.03125 -0.1875 0.046875q-0.125 0.015625 -0.3125 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.0625 -0.03125 -0.09375 -0.078125q-0.03125 -0.046875 -0.03125 -0.109375l0 -4.109375q0 -0.609375 -0.09375 -0.96875q-0.09375 -0.375 -0.28125 -0.640625q-0.171875 -0.265625 -0.46875 -0.40625q-0.28125 -0.140625 -0.65625 -0.140625q-0.484375 0 -0.96875 0.34375q-0.484375 0.34375 -1.015625 1.015625l0 4.90625q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.0625 0.03125 -0.1875 0.046875q-0.125 0.015625 -0.3125 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.078125 -0.03125 -0.109375 -0.078125q-0.015625 -0.046875 -0.015625 -0.109375l0 -7.03125q0 -0.0625 0.015625 -0.09375q0.03125 -0.046875 0.09375 -0.078125q0.078125 -0.046875 0.1875 -0.046875q0.109375 -0.015625 0.28125 -0.015625q0.171875 0 0.28125 0.015625q0.125 0 0.1875 0.046875q0.0625 0.03125 0.078125 0.078125q0.03125 0.03125 0.03125 0.09375l0 0.9375q0.59375 -0.671875 1.1875 -0.96875q0.59375 -0.3125 1.1875 -0.3125q0.703125 0 1.1875 0.234375q0.484375 0.234375 0.78125 0.640625q0.296875 0.390625 0.421875 0.9375q0.125 0.53125 0.125 1.28125l0 4.28125zm10.968765 -4.96875q0 1.21875 -0.296875 2.203125q-0.28125 0.984375 -0.859375 1.6875q-0.5625 0.6875 -1.4375 1.0625q-0.859375 0.375 -2.015625 0.375q-1.140625 0 -1.984375 -0.34375q-0.82814026 -0.34375 -1.3750153 -0.984375q-0.53125 -0.65625 -0.796875 -1.609375q-0.265625 -0.96875 -0.265625 -2.21875q0 -1.203125 0.28125 -2.171875q0.296875 -0.984375 0.875 -1.65625q0.578125 -0.6875 1.4375153 -1.0625q0.875 -0.375 2.03125 -0.375q1.109375 0 1.9375 0.34375q0.828125 0.328125 1.375 0.984375q0.5625 0.640625 0.828125 1.59375q0.265625 0.9375 0.265625 2.171875zm-1.40625 0.09375q0 -0.859375 -0.15625 -1.59375q-0.15625 -0.75 -0.515625 -1.28125q-0.34375 -0.546875 -0.9375 -0.84375q-0.59375 -0.3125 -1.46875 -0.3125q-0.875 0 -1.46875 0.328125q-0.59375 0.328125 -0.96876526 0.875q-0.375 0.546875 -0.53125 1.28125q-0.15625 0.71875 -0.15625 1.53125q0 0.890625 0.140625 1.640625q0.15625 0.75 0.5 1.296875q0.35939026 0.53125 0.93751526 0.84375q0.59375 0.296875 1.484375 0.296875q0.890625 0 1.484375 -0.328125q0.609375 -0.328125 0.96875 -0.890625q0.375 -0.5625 0.53125 -1.296875q0.15625 -0.734375 0.15625 -1.546875zm8.78125 4.484375q0 0.15625 -0.015625 0.265625q-0.015625 0.109375 -0.0625 0.1875q-0.03125 0.0625 -0.078125 0.109375q-0.046875 0.03125 -0.125 0.03125l-4.46875 0q-0.171875 0 -0.34375 -0.125q-0.15625 -0.125 -0.15625 -0.421875l0 -9.359375q0 -0.0625 0.03125 -0.109375q0.03125 -0.046875 0.109375 -0.078125q0.078125 -0.03125 0.203125 -0.046875q0.140625 -0.015625 0.328125 -0.015625q0.203125 0 0.328125 0.015625q0.125 0.015625 0.203125 0.046875q0.078125 0.03125 0.109375 0.078125q0.03125 0.046875 0.03125 0.109375l0 8.734375l3.625 0q0.078125 0 0.125 0.046875q0.046875 0.03125 0.078125 0.09375q0.046875 0.0625 0.0625 0.171875q0.015625 0.109375 0.015625 0.265625zm7.8203125 -8.9375q0 0.140625 -0.015625 0.25q-0.015625 0.109375 -0.0625 0.1875q-0.03125 0.0625 -0.078125 0.09375q-0.046875 0.03125 -0.109375 0.03125l-2.84375 0l0 8.765625q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.078125 0.03125 -0.21875 0.046875q-0.125 0.015625 -0.3125 0.015625q-0.1875 0 -0.328125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.078125 -0.03125 -0.109375 -0.078125q-0.03125 -0.046875 -0.03125 -0.109375l0 -8.765625l-2.84375 0q-0.0625 0 -0.125 -0.03125q-0.046875 -0.03125 -0.078125 -0.09375q-0.03125 -0.078125 -0.046875 -0.1875q-0.015625 -0.109375 -0.015625 -0.25q0 -0.15625 0.015625 -0.265625q0.015625 -0.109375 0.046875 -0.171875q0.03125 -0.078125 0.078125 -0.109375q0.0625 -0.03125 0.125 -0.03125l7.03125 0q0.0625 0 0.109375 0.03125q0.046875 0.03125 0.078125 0.109375q0.046875 0.0625 0.0625 0.171875q0.015625 0.109375 0.015625 0.265625z" fill-rule="nonzero"/><path fill="#000000" d="m118.48136 232.34985q0.0625 0.171875 0.0625 0.28125q0 0.109375 -0.0625 0.171875q-0.0625 0.046875 -0.203125 0.0625q-0.140625 0.015625 -0.390625 0.015625q-0.234375 0 -0.390625 -0.015625q-0.140625 0 -0.21875 -0.03125q-0.0625 -0.03125 -0.109375 -0.078125q-0.03125 -0.046875 -0.0625 -0.125l-0.859375 -2.453125l-4.203125 0l-0.828125 2.421875q-0.03125 0.078125 -0.078125 0.125q-0.03125 0.046875 -0.109375 0.09375q-0.0625 0.03125 -0.203125 0.046875q-0.140625 0.015625 -0.359375 0.015625q-0.21875 0 -0.375 -0.015625q-0.140625 -0.015625 -0.203125 -0.078125q-0.046875 -0.0625 -0.046875 -0.15625q0 -0.109375 0.0625 -0.28125l3.390625 -9.390625q0.03125 -0.09375 0.078125 -0.140625q0.0625 -0.0625 0.15625 -0.09375q0.09375 -0.03125 0.25 -0.03125q0.15625 -0.015625 0.390625 -0.015625q0.25 0 0.40625 0.015625q0.171875 0 0.265625 0.03125q0.109375 0.03125 0.15625 0.09375q0.0625 0.0625 0.09375 0.140625l3.390625 9.390625zm-4.359375 -8.28125l0 0l-1.75 5.03125l3.515625 0l-1.765625 -5.03125zm11.9140625 8.5625q0 0.0625 -0.03125 0.109375q-0.015625 0.046875 -0.09375 0.078125q-0.0625 0.03125 -0.171875 0.046875q-0.109375 0.015625 -0.265625 0.015625q-0.15625 0 -0.265625 -0.015625q-0.109375 -0.015625 -0.1875 -0.046875q-0.0625 -0.03125 -0.09375 -0.078125q-0.03125 -0.046875 -0.03125 -0.109375l0 -0.921875q-0.5625 0.59375 -1.15625 0.9375q-0.59375 0.34375 -1.3125 0.34375q-0.765625 0 -1.3125 -0.296875q-0.546875 -0.3125 -0.890625 -0.828125q-0.34375 -0.515625 -0.5 -1.203125q-0.15625 -0.6875 -0.15625 -1.453125q0 -0.90625 0.1875 -1.640625q0.203125 -0.734375 0.578125 -1.25q0.390625 -0.515625 0.953125 -0.78125q0.578125 -0.28125 1.3125 -0.28125q0.625 0 1.125 0.265625q0.515625 0.265625 1.015625 0.796875l0 -4.09375q0 -0.046875 0.03125 -0.09375q0.03125 -0.0625 0.109375 -0.078125q0.078125 -0.03125 0.1875 -0.046875q0.125 -0.03125 0.3125 -0.03125q0.203125 0 0.328125 0.03125q0.125 0.015625 0.1875 0.046875q0.078125 0.015625 0.109375 0.078125q0.03125 0.046875 0.03125 0.09375l0 10.40625zm-1.296875 -4.9375q-0.515625 -0.65625 -1.015625 -0.984375q-0.484375 -0.34375 -1.015625 -0.34375q-0.484375 0 -0.828125 0.234375q-0.34375 0.234375 -0.5625 0.625q-0.21875 0.375 -0.3125 0.859375q-0.09375 0.484375 -0.09375 0.984375q0 0.53125 0.078125 1.046875q0.078125 0.5 0.28125 0.890625q0.203125 0.390625 0.53125 0.640625q0.34375 0.234375 0.859375 0.234375q0.25 0 0.484375 -0.0625q0.25 -0.078125 0.5 -0.234375q0.25 -0.171875 0.515625 -0.4375q0.28125 -0.265625 0.578125 -0.640625l0 -2.8125zm8.984367 4.953125q0 0.09375 -0.0625 0.140625q-0.0625 0.046875 -0.171875 0.0625q-0.109375 0.03125 -0.328125 0.03125q-0.203125 0 -0.328125 -0.03125q-0.109375 -0.015625 -0.171875 -0.0625q-0.046875 -0.046875 -0.046875 -0.140625l0 -0.703125q-0.46875 0.484375 -1.03125 0.765625q-0.5625 0.28125 -1.203125 0.28125q-0.546875 0 -1.0 -0.15625q-0.453125 -0.140625 -0.765625 -0.40625q-0.3125 -0.28125 -0.5 -0.671875q-0.17186737 -0.40625 -0.17186737 -0.921875q0 -0.59375 0.23436737 -1.03125q0.25 -0.4375 0.703125 -0.71875q0.453125 -0.296875 1.109375 -0.4375q0.65625 -0.140625 1.484375 -0.140625l0.96875 0l0 -0.546875q0 -0.40625 -0.09375 -0.71875q-0.078125 -0.3125 -0.28125 -0.515625q-0.1875 -0.21875 -0.5 -0.3125q-0.296875 -0.109375 -0.734375 -0.109375q-0.484375 0 -0.859375 0.109375q-0.375 0.109375 -0.671875 0.25q-0.28125 0.140625 -0.46875 0.25q-0.1875 0.109375 -0.28125 0.109375q-0.0625 0 -0.109375 -0.03125q-0.046875 -0.03125 -0.09375 -0.09375q-0.03125 -0.0625 -0.046875 -0.15625q-0.015625 -0.09375 -0.015625 -0.21875q0 -0.1875 0.03125 -0.296875q0.03125 -0.125 0.125 -0.21875q0.109375 -0.109375 0.359375 -0.234375q0.265625 -0.140625 0.59375 -0.25q0.34375 -0.125 0.734375 -0.1875q0.40625 -0.078125 0.8125 -0.078125q0.765625 0 1.296875 0.171875q0.53125 0.171875 0.859375 0.5q0.328125 0.328125 0.46875 0.828125q0.15625 0.484375 0.15625 1.140625l0 4.75zm-1.28125 -3.21875l-1.109375 0q-0.53125 0 -0.921875 0.09375q-0.390625 0.09375 -0.65625 0.265625q-0.25 0.171875 -0.375 0.421875q-0.109375 0.25 -0.109375 0.5625q0 0.546875 0.34375 0.875q0.34375 0.328125 0.96875 0.328125q0.515625 0 0.9375 -0.25q0.4375 -0.265625 0.921875 -0.796875l0 -1.5zm10.1171875 -0.421875q0 0.921875 -0.203125 1.65625q-0.203125 0.734375 -0.59375 1.25q-0.375 0.515625 -0.953125 0.796875q-0.5625 0.28125 -1.296875 0.28125q-0.3125 0 -0.578125 -0.0625q-0.265625 -0.0625 -0.53125 -0.203125q-0.25 -0.140625 -0.5 -0.34375q-0.25 -0.203125 -0.53125 -0.46875l0 3.515625q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.0625 0.03125 -0.1875 0.046875q-0.125 0.015625 -0.3125 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.078125 -0.03125 -0.109375 -0.078125q-0.015625 -0.046875 -0.015625 -0.109375l0 -9.828125q0 -0.0625 0.015625 -0.109375q0.03125 -0.046875 0.09375 -0.078125q0.078125 -0.03125 0.1875 -0.03125q0.109375 -0.015625 0.265625 -0.015625q0.15625 0 0.265625 0.015625q0.109375 0 0.171875 0.03125q0.078125 0.03125 0.09375 0.078125q0.03125 0.046875 0.03125 0.109375l0 0.953125q0.328125 -0.328125 0.625 -0.5625q0.296875 -0.25 0.59375 -0.40625q0.296875 -0.171875 0.609375 -0.25q0.328125 -0.078125 0.671875 -0.078125q0.765625 0 1.296875 0.296875q0.546875 0.296875 0.890625 0.8125q0.34375 0.515625 0.5 1.203125q0.15625 0.671875 0.15625 1.4375zm-1.359375 0.15625q0 -0.546875 -0.09375 -1.046875q-0.078125 -0.5 -0.28125 -0.890625q-0.1875 -0.390625 -0.53125 -0.625q-0.328125 -0.234375 -0.828125 -0.234375q-0.25 0 -0.5 0.078125q-0.234375 0.0625 -0.484375 0.234375q-0.25 0.15625 -0.53125 0.421875q-0.265625 0.25 -0.578125 0.640625l0 2.796875q0.53125 0.640625 1.0 0.984375q0.484375 0.34375 1.015625 0.34375q0.484375 0 0.828125 -0.234375q0.34375 -0.234375 0.5625 -0.625q0.21875 -0.390625 0.3125 -0.875q0.109375 -0.484375 0.109375 -0.96875zm6.9531403 2.953125q0 0.234375 -0.03125 0.375q-0.03125 0.125 -0.09375 0.1875q-0.0625 0.0625 -0.1875 0.125q-0.125 0.046875 -0.296875 0.078125q-0.15625 0.046875 -0.34375 0.0625q-0.171875 0.03125 -0.34375 0.03125q-0.546875 0 -0.9375 -0.140625q-0.390625 -0.15625 -0.640625 -0.453125q-0.25 -0.296875 -0.375 -0.734375q-0.109375 -0.453125 -0.109375 -1.0625l0 -4.109375l-0.98439026 0q-0.109375 0 -0.1875 -0.125q-0.0625 -0.125 -0.0625 -0.40625q0 -0.15625 0.015625 -0.25q0.015625 -0.109375 0.046875 -0.171875q0.03125 -0.0625 0.078125 -0.09375q0.0625 -0.03125 0.125 -0.03125l0.96876526 0l0 -1.671875q0 -0.046875 0.03125 -0.09375q0.03125 -0.046875 0.09375 -0.078125q0.078125 -0.046875 0.203125 -0.0625q0.125 -0.015625 0.3125 -0.015625q0.203125 0 0.328125 0.015625q0.125 0.015625 0.1875 0.0625q0.078125 0.03125 0.109375 0.078125q0.03125 0.046875 0.03125 0.09375l0 1.671875l1.796875 0q0.0625 0 0.109375 0.03125q0.046875 0.03125 0.078125 0.09375q0.046875 0.0625 0.0625 0.171875q0.015625 0.09375 0.015625 0.25q0 0.28125 -0.078125 0.40625q-0.0625 0.125 -0.1875 0.125l-1.796875 0l0 3.921875q0 0.71875 0.203125 1.09375q0.21875 0.375 0.78125 0.375q0.171875 0 0.3125 -0.03125q0.140625 -0.046875 0.25 -0.078125q0.109375 -0.046875 0.1875 -0.078125q0.078125 -0.03125 0.140625 -0.03125q0.046875 0 0.078125 0.015625q0.03125 0.015625 0.046875 0.078125q0.03125 0.046875 0.046875 0.140625q0.015625 0.09375 0.015625 0.234375zm8.234375 -3.078125q0 0.859375 -0.234375 1.59375q-0.21875 0.71875 -0.671875 1.25q-0.4375 0.515625 -1.125 0.8125q-0.671875 0.296875 -1.5625 0.296875q-0.859375 0 -1.515625 -0.265625q-0.640625 -0.265625 -1.078125 -0.75q-0.421875 -0.5 -0.640625 -1.203125q-0.203125 -0.703125 -0.203125 -1.59375q0 -0.859375 0.21875 -1.578125q0.234375 -0.71875 0.671875 -1.234375q0.453125 -0.53125 1.125 -0.8125q0.671875 -0.296875 1.578125 -0.296875q0.859375 0 1.5 0.265625q0.65625 0.25 1.078125 0.75q0.4375 0.484375 0.640625 1.1875q0.21875 0.703125 0.21875 1.578125zm-1.359375 0.09375q0 -0.578125 -0.109375 -1.078125q-0.09375 -0.515625 -0.34375 -0.890625q-0.234375 -0.390625 -0.65625 -0.609375q-0.40625 -0.21875 -1.03125 -0.21875q-0.5625 0 -0.984375 0.203125q-0.40625 0.203125 -0.671875 0.578125q-0.265625 0.359375 -0.390625 0.875q-0.125 0.5 -0.125 1.109375q0 0.578125 0.09375 1.09375q0.109375 0.5 0.359375 0.875q0.25 0.375 0.65625 0.609375q0.421875 0.21875 1.03125 0.21875q0.5625 0 0.96875 -0.203125q0.421875 -0.203125 0.6875 -0.5625q0.265625 -0.375 0.390625 -0.875q0.125 -0.515625 0.125 -1.125zm7.375 -3.0625q0 0.171875 -0.015625 0.296875q0 0.109375 -0.03125 0.171875q-0.015625 0.0625 -0.0625 0.109375q-0.03125 0.03125 -0.09375 0.03125q-0.0625 0 -0.15625 -0.03125q-0.078125 -0.046875 -0.203125 -0.078125q-0.109375 -0.03125 -0.25 -0.0625q-0.140625 -0.03125 -0.296875 -0.03125q-0.203125 0 -0.390625 0.078125q-0.1875 0.078125 -0.390625 0.265625q-0.203125 0.171875 -0.4375 0.46875q-0.21875 0.296875 -0.5 0.71875l0 4.625q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.0625 0.03125 -0.1875 0.046875q-0.125 0.015625 -0.3125 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.078125 -0.03125 -0.109375 -0.078125q-0.015625 -0.046875 -0.015625 -0.109375l0 -7.03125q0 -0.0625 0.015625 -0.09375q0.03125 -0.046875 0.09375 -0.078125q0.078125 -0.046875 0.1875 -0.046875q0.109375 -0.015625 0.28125 -0.015625q0.171875 0 0.28125 0.015625q0.125 0 0.1875 0.046875q0.0625 0.03125 0.078125 0.078125q0.03125 0.03125 0.03125 0.09375l0 1.03125q0.296875 -0.421875 0.546875 -0.6875q0.25 -0.265625 0.46875 -0.421875q0.234375 -0.15625 0.453125 -0.203125q0.234375 -0.0625 0.453125 -0.0625q0.109375 0 0.234375 0.015625q0.125 0 0.265625 0.03125q0.140625 0.03125 0.25 0.078125q0.125 0.03125 0.171875 0.078125q0.046875 0.03125 0.0625 0.078125q0.015625 0.03125 0.015625 0.09375q0.015625 0.046875 0.015625 0.15625q0.015625 0.09375 0.015625 0.28125z" fill-rule="nonzero"/></g><path fill="#a5a5a5" d="m113.596695 317.48923l0 0c0 -1.8207092 1.4759598 -3.2966614 3.2966537 -3.2966614l85.50118 0c0.8743286 0 1.7128448 0.34732056 2.3310852 0.9655762c0.61824036 0.6182251 0.9655609 1.4567566 0.9655609 2.3310852l0 13.186218c0 1.8206787 -1.4759521 3.2966614 -3.296646 3.2966614l-85.50118 0c-1.820694 0 -3.2966537 -1.4759827 -3.2966537 -3.2966614z" fill-rule="evenodd"/><path stroke="#787878" stroke-width="2.6666666666666665" stroke-linejoin="round" stroke-linecap="butt" d="m113.596695 317.48923l0 0c0 -1.8207092 1.4759598 -3.2966614 3.2966537 -3.2966614l85.50118 0c0.8743286 0 1.7128448 0.34732056 2.3310852 0.9655762c0.61824036 0.6182251 0.9655609 1.4567566 0.9655609 2.3310852l0 13.186218c0 1.8206787 -1.4759521 3.2966614 -3.296646 3.2966614l-85.50118 0c-1.820694 0 -3.2966537 -1.4759827 -3.2966537 -3.2966614z" fill-rule="evenodd"/><path fill="#ffffff" d="m155.665 326.50607q0 0.4375 -0.109375 0.8125q-0.109375 0.359375 -0.3125 0.65625q-0.1875 0.296875 -0.484375 0.515625q-0.28125 0.21875 -0.640625 0.375q-0.34375 0.140625 -0.75 0.21875q-0.40625 0.078125 -0.921875 0.078125l-2.421875 0q-0.15625 0 -0.3125 -0.109375q-0.140625 -0.109375 -0.140625 -0.390625l0 -8.265625q0 -0.265625 0.140625 -0.375q0.15625 -0.125 0.3125 -0.125l2.109375 0q0.828125 0 1.359375 0.15625q0.53125 0.15625 0.875 0.46875q0.359375 0.296875 0.53125 0.734375q0.1875 0.4375 0.1875 0.984375q0 0.328125 -0.078125 0.640625q-0.078125 0.296875 -0.234375 0.546875q-0.15625 0.25 -0.390625 0.453125q-0.234375 0.203125 -0.53125 0.328125q0.375 0.078125 0.703125 0.265625q0.34375 0.1875 0.578125 0.484375q0.25 0.28125 0.390625 0.6875q0.140625 0.390625 0.140625 0.859375zm-1.84375 -4.140625q0 -0.34375 -0.09375 -0.609375q-0.09375 -0.265625 -0.296875 -0.453125q-0.203125 -0.203125 -0.53125 -0.296875q-0.3125 -0.109375 -0.84375 -0.109375l-1.265625 0l0 3.0l1.390625 0q0.484375 0 0.78125 -0.125q0.296875 -0.125 0.484375 -0.328125q0.1875 -0.21875 0.28125 -0.5q0.09375 -0.28125 0.09375 -0.578125zm0.5625 4.21875q0 -0.421875 -0.140625 -0.734375q-0.125 -0.3125 -0.390625 -0.53125q-0.25 -0.21875 -0.640625 -0.328125q-0.375 -0.109375 -0.953125 -0.109375l-1.46875 0l0 3.265625l1.78125 0q0.421875 0 0.734375 -0.09375q0.3125 -0.109375 0.546875 -0.296875q0.25 -0.203125 0.390625 -0.5q0.140625 -0.296875 0.140625 -0.671875zm10.0971985 2.140625q0.046875 0.15625 0.046875 0.265625q0.015625 0.09375 -0.046875 0.140625q-0.0625 0.046875 -0.203125 0.0625q-0.125 0.015625 -0.34375 0.015625q-0.21875 0 -0.359375 -0.015625q-0.125 -0.015625 -0.203125 -0.03125q-0.0625 -0.03125 -0.09375 -0.0625q-0.03125 -0.046875 -0.0625 -0.109375l-0.78125 -2.265625l-3.859375 0l-0.75 2.234375q-0.03125 0.0625 -0.0625 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.0625 0.03125 -0.1875 0.046875q-0.125 0.015625 -0.328125 0.015625q-0.203125 0 -0.34375 -0.03125q-0.125 -0.015625 -0.1875 -0.0625q-0.046875 -0.046875 -0.046875 -0.140625q0 -0.09375 0.0625 -0.25l3.109375 -8.609375q0.03125 -0.078125 0.078125 -0.125q0.046875 -0.046875 0.125 -0.078125q0.09375 -0.03125 0.234375 -0.03125q0.140625 -0.015625 0.359375 -0.015625q0.21875 0 0.375 0.015625q0.15625 0 0.25 0.03125q0.09375 0.03125 0.140625 0.078125q0.046875 0.046875 0.078125 0.140625l3.109375 8.59375zm-4.0 -7.59375l0 0l-1.59375 4.625l3.21875 0l-1.625 -4.625zm10.339676 7.5q0 0.140625 -0.015625 0.234375q-0.015625 0.09375 -0.046875 0.171875q-0.03125 0.0625 -0.078125 0.09375q-0.046875 0.03125 -0.109375 0.03125l-4.09375 0q-0.15625 0 -0.3125 -0.109375q-0.140625 -0.109375 -0.140625 -0.390625l0 -8.578125q0 -0.046875 0.015625 -0.09375q0.03125 -0.046875 0.109375 -0.0625q0.078125 -0.03125 0.1875 -0.046875q0.125 -0.015625 0.296875 -0.015625q0.1875 0 0.296875 0.015625q0.125 0.015625 0.1875 0.046875q0.078125 0.015625 0.109375 0.0625q0.03125 0.046875 0.03125 0.09375l0 8.015625l3.3125 0q0.0625 0 0.109375 0.03125q0.046875 0.03125 0.078125 0.09375q0.03125 0.0625 0.046875 0.15625q0.015625 0.09375 0.015625 0.25z" fill-rule="nonzero"/><path fill="#a5a5a5" d="m114.18294 340.3144l0 0c0 -1.8206787 1.4759598 -3.2966614 3.2966537 -3.2966614l85.50118 0c0.8743286 0 1.7128448 0.34732056 2.3310852 0.9655762c0.61824036 0.6182251 0.9655609 1.4567566 0.9655609 2.3310852l0 13.186218c0 1.8206787 -1.4759521 3.2966614 -3.296646 3.2966614l-85.50118 0c-1.820694 0 -3.2966537 -1.4759827 -3.2966537 -3.2966614z" fill-rule="evenodd"/><path stroke="#787878" stroke-width="2.6666666666666665" stroke-linejoin="round" stroke-linecap="butt" d="m114.18294 340.3144l0 0c0 -1.8206787 1.4759598 -3.2966614 3.2966537 -3.2966614l85.50118 0c0.8743286 0 1.7128448 0.34732056 2.3310852 0.9655762c0.61824036 0.6182251 0.9655609 1.4567566 0.9655609 2.3310852l0 13.186218c0 1.8206787 -1.4759521 3.2966614 -3.296646 3.2966614l-85.50118 0c-1.820694 0 -3.2966537 -1.4759827 -3.2966537 -3.2966614z" fill-rule="evenodd"/><path fill="#ffffff" d="m147.44029 349.39374q0 0.640625 -0.25 1.15625q-0.234375 0.5 -0.65625 0.859375q-0.421875 0.359375 -1.0 0.546875q-0.578125 0.171875 -1.234375 0.171875q-0.46875 0 -0.875 -0.078125q-0.390625 -0.078125 -0.703125 -0.1875q-0.3125 -0.125 -0.53125 -0.25q-0.203125 -0.125 -0.28125 -0.203125q-0.078125 -0.09375 -0.125 -0.21875q-0.03125 -0.140625 -0.03125 -0.359375q0 -0.15625 0 -0.25q0.015625 -0.109375 0.046875 -0.171875q0.03125 -0.0625 0.078125 -0.09375q0.046875 -0.03125 0.09375 -0.03125q0.109375 0 0.28125 0.125q0.1875 0.125 0.46875 0.265625q0.296875 0.140625 0.6875 0.265625q0.40625 0.125 0.9375 0.125q0.40625 0 0.734375 -0.09375q0.328125 -0.109375 0.5625 -0.3125q0.25 -0.203125 0.375 -0.484375q0.140625 -0.28125 0.140625 -0.65625q0 -0.390625 -0.1875 -0.65625q-0.171875 -0.28125 -0.46875 -0.484375q-0.296875 -0.21875 -0.671875 -0.390625q-0.375 -0.1875 -0.765625 -0.359375q-0.390625 -0.1875 -0.765625 -0.40625q-0.375 -0.234375 -0.671875 -0.53125q-0.28125 -0.296875 -0.46875 -0.703125q-0.1875 -0.40625 -0.1875 -0.96875q0 -0.578125 0.203125 -1.03125q0.21875 -0.453125 0.59375 -0.765625q0.375 -0.3125 0.890625 -0.46875q0.53125 -0.15625 1.125 -0.15625q0.3125 0 0.625 0.0625q0.3125 0.046875 0.578125 0.140625q0.28125 0.078125 0.484375 0.1875q0.21875 0.109375 0.28125 0.1875q0.078125 0.0625 0.09375 0.109375q0.03125 0.03125 0.046875 0.09375q0.015625 0.0625 0.015625 0.15625q0.015625 0.078125 0.015625 0.203125q0 0.140625 -0.015625 0.234375q-0.015625 0.09375 -0.03125 0.171875q-0.015625 0.0625 -0.0625 0.09375q-0.046875 0.03125 -0.09375 0.03125q-0.078125 0 -0.25 -0.09375q-0.15625 -0.109375 -0.40625 -0.234375q-0.234375 -0.125 -0.578125 -0.21875q-0.328125 -0.109375 -0.75 -0.109375q-0.375 0 -0.671875 0.109375q-0.28125 0.09375 -0.46875 0.265625q-0.1875 0.171875 -0.28125 0.421875q-0.09375 0.234375 -0.09375 0.5q0 0.375 0.171875 0.65625q0.1875 0.28125 0.484375 0.5q0.296875 0.21875 0.671875 0.390625q0.390625 0.171875 0.78125 0.359375q0.390625 0.1875 0.765625 0.40625q0.390625 0.21875 0.6875 0.515625q0.296875 0.296875 0.46875 0.703125q0.1875 0.390625 0.1875 0.953125zm8.874771 -2.171875q0 1.203125 -0.3125 2.109375q-0.296875 0.890625 -0.890625 1.484375q-0.578125 0.578125 -1.4375 0.875q-0.859375 0.296875 -2.046875 0.296875l-1.96875 0q-0.15625 0 -0.3125 -0.109375q-0.140625 -0.109375 -0.140625 -0.390625l0 -8.265625q0 -0.265625 0.140625 -0.375q0.15625 -0.125 0.3125 -0.125l2.09375 0q1.203125 0 2.03125 0.3125q0.828125 0.3125 1.390625 0.90625q0.5625 0.578125 0.84375 1.40625q0.296875 0.828125 0.296875 1.875zm-1.28125 0.046875q0 -0.75 -0.1875 -1.390625q-0.1875 -0.65625 -0.59375 -1.125q-0.390625 -0.46875 -1.0 -0.734375q-0.609375 -0.265625 -1.5625 -0.265625l-1.25 0l0 7.203125l1.265625 0q0.875 0 1.484375 -0.21875q0.609375 -0.21875 1.015625 -0.671875q0.40625 -0.46875 0.609375 -1.15625q0.21875 -0.6875 0.21875 -1.640625zm9.220154 4.515625q0 0.0625 -0.03125 0.109375q-0.015625 0.046875 -0.09375 0.078125q-0.0625 0.015625 -0.1875 0.03125q-0.125 0.03125 -0.3125 0.03125q-0.25 0 -0.40625 -0.03125q-0.15625 -0.015625 -0.234375 -0.0625q-0.078125 -0.0625 -0.125 -0.140625l-3.40625 -4.625l0 4.625q0 0.046875 -0.03125 0.09375q-0.03125 0.046875 -0.109375 0.078125q-0.0625 0.015625 -0.1875 0.03125q-0.109375 0.03125 -0.296875 0.03125q-0.171875 0 -0.296875 -0.03125q-0.109375 -0.015625 -0.1875 -0.03125q-0.078125 -0.03125 -0.109375 -0.078125q-0.015625 -0.046875 -0.015625 -0.09375l0 -8.890625q0 -0.046875 0.015625 -0.09375q0.03125 -0.046875 0.109375 -0.0625q0.078125 -0.03125 0.1875 -0.046875q0.125 -0.015625 0.296875 -0.015625q0.1875 0 0.296875 0.015625q0.125 0.015625 0.1875 0.046875q0.078125 0.015625 0.109375 0.0625q0.03125 0.046875 0.03125 0.09375l0 4.125l3.265625 -4.125q0.046875 -0.0625 0.09375 -0.09375q0.0625 -0.046875 0.140625 -0.078125q0.09375 -0.03125 0.203125 -0.03125q0.125 -0.015625 0.3125 -0.015625q0.1875 0 0.296875 0.015625q0.125 0.015625 0.1875 0.046875q0.0625 0.03125 0.078125 0.078125q0.03125 0.03125 0.03125 0.078125q0 0.09375 -0.046875 0.1875q-0.046875 0.09375 -0.171875 0.265625l-3.0625 3.671875l3.296875 4.390625q0.125 0.1875 0.140625 0.25q0.03125 0.0625 0.03125 0.109375zm3.89563 -9.65625q-0.6875 1.4375 -1.015625 2.953125q-0.328125 1.515625 -0.328125 3.046875q0 1.53125 0.328125 3.046875q0.34375 1.5 1.0 2.953125q0.03125 0.09375 0.03125 0.15625q0.015625 0.0625 -0.046875 0.09375q-0.046875 0.046875 -0.15625 0.0625q-0.09375 0.015625 -0.28125 0.015625q-0.125 0 -0.21875 -0.015625q-0.09375 0 -0.15625 -0.03125q-0.0625 -0.015625 -0.109375 -0.046875q-0.046875 -0.015625 -0.0625 -0.0625q-0.390625 -0.71875 -0.6875 -1.46875q-0.296875 -0.75 -0.5 -1.515625q-0.1875 -0.78125 -0.296875 -1.5625q-0.09375 -0.796875 -0.09375 -1.609375q0 -0.8125 0.109375 -1.59375q0.109375 -0.78125 0.3125 -1.5625q0.203125 -0.78125 0.5 -1.53125q0.296875 -0.75 0.65625 -1.484375q0.015625 -0.03125 0.046875 -0.046875q0.03125 -0.03125 0.078125 -0.046875q0.0625 -0.03125 0.15625 -0.03125q0.109375 -0.015625 0.265625 -0.015625q0.15625 0 0.25 0.03125q0.109375 0.015625 0.171875 0.046875q0.0625 0.03125 0.0625 0.09375q0.015625 0.0625 -0.015625 0.125zm6.037857 7.921875q0 0.5 -0.1875 0.890625q-0.1875 0.375 -0.53125 0.640625q-0.328125 0.265625 -0.796875 0.40625q-0.453125 0.140625 -1.015625 0.140625q-0.34375 0 -0.65625 -0.0625q-0.3125 -0.046875 -0.5625 -0.125q-0.234375 -0.09375 -0.40625 -0.171875q-0.171875 -0.09375 -0.25 -0.15625q-0.078125 -0.078125 -0.125 -0.203125q-0.03125 -0.140625 -0.03125 -0.359375q0 -0.140625 0.015625 -0.234375q0.015625 -0.09375 0.03125 -0.140625q0.03125 -0.0625 0.0625 -0.078125q0.046875 -0.03125 0.09375 -0.03125q0.078125 0 0.234375 0.09375q0.15625 0.09375 0.375 0.21875q0.234375 0.109375 0.53125 0.203125q0.3125 0.09375 0.71875 0.09375q0.296875 0 0.53125 -0.0625q0.25 -0.0625 0.421875 -0.1875q0.1875 -0.125 0.28125 -0.3125q0.09375 -0.203125 0.09375 -0.46875q0 -0.265625 -0.140625 -0.453125q-0.140625 -0.1875 -0.375 -0.328125q-0.21875 -0.140625 -0.515625 -0.25q-0.28125 -0.109375 -0.59375 -0.234375q-0.296875 -0.125 -0.59375 -0.28125q-0.28125 -0.15625 -0.515625 -0.375q-0.21875 -0.21875 -0.359375 -0.515625q-0.140625 -0.3125 -0.140625 -0.75q0 -0.375 0.140625 -0.71875q0.15625 -0.359375 0.453125 -0.609375q0.296875 -0.265625 0.734375 -0.421875q0.4375 -0.15625 1.015625 -0.15625q0.265625 0 0.515625 0.046875q0.265625 0.03125 0.46875 0.09375q0.203125 0.0625 0.34375 0.140625q0.15625 0.078125 0.234375 0.140625q0.078125 0.046875 0.09375 0.09375q0.03125 0.046875 0.03125 0.109375q0.015625 0.046875 0.03125 0.125q0.015625 0.078125 0.015625 0.1875q0 0.125 -0.015625 0.21875q-0.015625 0.078125 -0.046875 0.140625q-0.015625 0.0625 -0.046875 0.09375q-0.03125 0.015625 -0.078125 0.015625q-0.0625 0 -0.1875 -0.078125q-0.125 -0.078125 -0.328125 -0.171875q-0.1875 -0.09375 -0.453125 -0.171875q-0.25 -0.078125 -0.59375 -0.078125q-0.296875 0 -0.53125 0.078125q-0.21875 0.0625 -0.375 0.1875q-0.140625 0.125 -0.21875 0.296875q-0.0625 0.171875 -0.0625 0.375q0 0.28125 0.140625 0.46875q0.140625 0.1875 0.359375 0.328125q0.234375 0.140625 0.53125 0.265625q0.296875 0.109375 0.59375 0.234375q0.3125 0.125 0.609375 0.28125q0.296875 0.140625 0.515625 0.359375q0.234375 0.203125 0.375 0.515625q0.140625 0.296875 0.140625 0.703125zm4.076004 -1.90625q0 0.8125 -0.109375 1.609375q-0.09375 0.78125 -0.296875 1.5625q-0.1875 0.765625 -0.484375 1.515625q-0.296875 0.75 -0.671875 1.46875q-0.03125 0.046875 -0.078125 0.0625q-0.03125 0.03125 -0.109375 0.046875q-0.0625 0.03125 -0.15625 0.03125q-0.09375 0.015625 -0.21875 0.015625q-0.1875 0 -0.296875 -0.015625q-0.09375 -0.015625 -0.140625 -0.0625q-0.046875 -0.03125 -0.046875 -0.09375q0 -0.0625 0.046875 -0.15625q0.65625 -1.4375 0.984375 -2.953125q0.34375 -1.515625 0.34375 -3.046875q0 -1.53125 -0.34375 -3.046875q-0.328125 -1.515625 -1.0 -2.953125q-0.03125 -0.0625 -0.03125 -0.125q0.015625 -0.0625 0.0625 -0.09375q0.0625 -0.03125 0.15625 -0.046875q0.109375 -0.03125 0.265625 -0.03125q0.15625 0 0.25 0.015625q0.109375 0 0.171875 0.03125q0.0625 0.015625 0.078125 0.046875q0.03125 0.015625 0.046875 0.046875q0.734375 1.46875 1.15625 3.015625q0.421875 1.546875 0.421875 3.15625z" fill-rule="nonzero"/><g filter="url(#shadowFilter-p.6)"><use xlink:href="#p.6" transform="matrix(1.0 0.0 0.0 1.0 0.0 2.099737532808399)"/></g><defs><filter id="shadowFilter-p.6" filterUnits="userSpaceOnUse"><feGaussianBlur in="SourceAlpha" stdDeviation="1.399825" result="blur"/><feComponentTransfer in="blur" color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0" intercept="0.0"/><feFuncG type="linear" slope="0" intercept="0.0"/><feFuncB type="linear" slope="0" intercept="0.0"/><feFuncA type="linear" slope="0.3765" intercept="0"/></feComponentTransfer></filter></defs><g id="p.6"><defs><linearGradient id="p.7" gradientUnits="userSpaceOnUse" gradientTransform="matrix(5.94210779229667 0.0 0.0 5.94210779229667 0.0 0.0)" spreadMethod="pad" x1="36.07709978367362" y1="52.87340678249019" x2="36.07716534958914" y2="46.931298990555256"><stop offset="0.0" stop-color="#d8d8d8"/><stop offset="0.35" stop-color="#e3e3e3"/><stop offset="1.0" stop-color="#f4f4f4"/></linearGradient></defs><path fill="url(#p.7)" d="m72.51575 284.75546l0 0c0 -3.25 2.6346436 -5.884613 5.884636 -5.884613l130.08899 0c1.5606995 0 3.0574799 0.6199646 4.161072 1.7235718c1.1035767 1.1035767 1.7235565 2.6003418 1.7235565 4.1610413l0 23.537842c0 3.2499695 -2.6346283 5.884613 -5.8846283 5.884613l-130.08899 0l0 0c-3.2499924 0 -5.884636 -2.6346436 -5.884636 -5.884613z" fill-rule="evenodd"/><path stroke="#a1a1a1" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m72.51575 284.75546l0 0c0 -3.25 2.6346436 -5.884613 5.884636 -5.884613l130.08899 0c1.5606995 0 3.0574799 0.6199646 4.161072 1.7235718c1.1035767 1.1035767 1.7235565 2.6003418 1.7235565 4.1610413l0 23.537842c0 3.2499695 -2.6346283 5.884613 -5.8846283 5.884613l-130.08899 0l0 0c-3.2499924 0 -5.884636 -2.6346436 -5.884636 -5.884613z" fill-rule="evenodd"/><path fill="#000000" d="m102.74567 297.2125q0 1.21875 -0.296875 2.203125q-0.28125 0.984375 -0.859375 1.6875q-0.5625 0.6875 -1.4375 1.0625q-0.859375 0.375 -2.015625 0.375q-1.140625 0 -1.984375 -0.34375q-0.828125 -0.34375 -1.375 -0.984375q-0.53125 -0.65625 -0.796875 -1.609375q-0.265625 -0.96875 -0.265625 -2.21875q0 -1.203125 0.28125 -2.171875q0.296875 -0.984375 0.875 -1.65625q0.578125 -0.6875 1.4375 -1.0625q0.875 -0.375 2.03125 -0.375q1.109375 0 1.9375 0.34375q0.828125 0.328125 1.375 0.984375q0.5625 0.640625 0.828125 1.59375q0.265625 0.9375 0.265625 2.171875zm-1.40625 0.09375q0 -0.859375 -0.15625 -1.59375q-0.15625 -0.75 -0.515625 -1.28125q-0.34375 -0.546875 -0.9375 -0.84375q-0.59375 -0.3125 -1.46875 -0.3125q-0.875 0 -1.46875 0.328125q-0.59375 0.328125 -0.96875 0.875q-0.375 0.546875 -0.53125 1.28125q-0.15625 0.71875 -0.15625 1.53125q0 0.890625 0.140625 1.640625q0.15625 0.75 0.5 1.296875q0.359375 0.53125 0.9375 0.84375q0.59375 0.296875 1.484375 0.296875q0.890625 0 1.484375 -0.328125q0.609375 -0.328125 0.96875 -0.890625q0.375 -0.5625 0.53125 -1.296875q0.15625 -0.734375 0.15625 -1.546875zm9.859375 1.25q0 0.921875 -0.203125 1.65625q-0.203125 0.734375 -0.59375 1.25q-0.375 0.515625 -0.953125 0.796875q-0.5625 0.28125 -1.296875 0.28125q-0.3125 0 -0.578125 -0.0625q-0.265625 -0.0625 -0.53125 -0.203125q-0.25 -0.140625 -0.5 -0.34375q-0.25 -0.203125 -0.53125 -0.46875l0 3.515625q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.0625 0.03125 -0.1875 0.046875q-0.125 0.015625 -0.3125 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.078125 -0.03125 -0.109375 -0.078125q-0.015625 -0.046875 -0.015625 -0.109375l0 -9.828125q0 -0.0625 0.015625 -0.109375q0.03125 -0.046875 0.09375 -0.078125q0.078125 -0.03125 0.1875 -0.03125q0.109375 -0.015625 0.265625 -0.015625q0.15625 0 0.265625 0.015625q0.109375 0 0.171875 0.03125q0.078125 0.03125 0.09375 0.078125q0.03125 0.046875 0.03125 0.109375l0 0.953125q0.328125 -0.328125 0.625 -0.5625q0.296875 -0.25 0.59375 -0.40625q0.296875 -0.171875 0.609375 -0.25q0.328125 -0.078125 0.671875 -0.078125q0.765625 0 1.296875 0.296875q0.546875 0.296875 0.890625 0.8125q0.34375 0.515625 0.5 1.203125q0.15625 0.671875 0.15625 1.4375zm-1.359375 0.15625q0 -0.546875 -0.09375 -1.046875q-0.078125 -0.5 -0.28125 -0.890625q-0.1875 -0.390625 -0.53125 -0.625q-0.328125 -0.234375 -0.828125 -0.234375q-0.25 0 -0.5 0.078125q-0.234375 0.0625 -0.484375 0.234375q-0.25 0.15625 -0.53125 0.421875q-0.265625 0.25 -0.578125 0.640625l0 2.796875q0.53125 0.640625 1.0 0.984375q0.484375 0.34375 1.015625 0.34375q0.484375 0 0.828125 -0.234375q0.34375 -0.234375 0.5625 -0.625q0.21875 -0.390625 0.3125 -0.875q0.109375 -0.484375 0.109375 -0.96875zm9.296875 -0.34375q0 0.296875 -0.15625 0.4375q-0.15625 0.125 -0.34375 0.125l-4.609375 0q0 0.578125 0.109375 1.046875q0.125 0.46875 0.390625 0.8125q0.28125 0.328125 0.71875 0.515625q0.4375 0.171875 1.0625 0.171875q0.5 0 0.890625 -0.078125q0.390625 -0.078125 0.671875 -0.171875q0.296875 -0.109375 0.46875 -0.1875q0.1875 -0.09375 0.28125 -0.09375q0.0625 0 0.09375 0.03125q0.046875 0.03125 0.0625 0.09375q0.03125 0.046875 0.046875 0.140625q0.015625 0.09375 0.015625 0.234375q0 0.109375 -0.015625 0.1875q0 0.0625 -0.015625 0.125q-0.015625 0.0625 -0.046875 0.109375q-0.015625 0.046875 -0.0625 0.09375q-0.046875 0.03125 -0.265625 0.140625q-0.203125 0.09375 -0.546875 0.1875q-0.328125 0.09375 -0.765625 0.171875q-0.4375 0.078125 -0.9375 0.078125q-0.875 0 -1.53125 -0.25q-0.640625 -0.25 -1.09375 -0.71875q-0.4375 -0.484375 -0.671875 -1.203125q-0.21875 -0.71875 -0.21875 -1.671875q0 -0.90625 0.234375 -1.625q0.234375 -0.71875 0.671875 -1.21875q0.4375 -0.515625 1.0625 -0.78125q0.625 -0.265625 1.40625 -0.265625q0.828125 0 1.40625 0.265625q0.578125 0.265625 0.953125 0.71875q0.375 0.4375 0.546875 1.046875q0.1875 0.609375 0.1875 1.296875l0 0.234375zm-1.296875 -0.390625q0.015625 -1.015625 -0.453125 -1.59375q-0.46875 -0.578125 -1.40625 -0.578125q-0.46875 0 -0.828125 0.1875q-0.359375 0.171875 -0.609375 0.46875q-0.234375 0.296875 -0.375 0.703125q-0.125 0.390625 -0.140625 0.8125l3.8125 0zm9.3046875 4.203125q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.0625 0.03125 -0.1875 0.046875q-0.125 0.015625 -0.3125 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.0625 -0.03125 -0.09375 -0.078125q-0.03125 -0.046875 -0.03125 -0.109375l0 -4.109375q0 -0.609375 -0.09375 -0.96875q-0.09375 -0.375 -0.28125 -0.640625q-0.171875 -0.265625 -0.46875 -0.40625q-0.28125 -0.140625 -0.65625 -0.140625q-0.484375 0 -0.96875 0.34375q-0.484375 0.34375 -1.015625 1.015625l0 4.90625q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.0625 0.03125 -0.1875 0.046875q-0.125 0.015625 -0.3125 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.078125 -0.03125 -0.109375 -0.078125q-0.015625 -0.046875 -0.015625 -0.109375l0 -7.03125q0 -0.0625 0.015625 -0.09375q0.03125 -0.046875 0.09375 -0.078125q0.078125 -0.046875 0.1875 -0.046875q0.109375 -0.015625 0.28125 -0.015625q0.171875 0 0.28125 0.015625q0.125 0 0.1875 0.046875q0.0625 0.03125 0.078125 0.078125q0.03125 0.03125 0.03125 0.09375l0 0.9375q0.59375 -0.671875 1.1875 -0.96875q0.59375 -0.3125 1.1875 -0.3125q0.703125 0 1.1875 0.234375q0.484375 0.234375 0.78125 0.640625q0.296875 0.390625 0.421875 0.9375q0.125 0.53125 0.125 1.28125l0 4.28125zm10.96875 -4.96875q0 1.21875 -0.296875 2.203125q-0.28125 0.984375 -0.859375 1.6875q-0.5625 0.6875 -1.4375 1.0625q-0.859375 0.375 -2.015625 0.375q-1.140625 0 -1.984375 -0.34375q-0.828125 -0.34375 -1.375 -0.984375q-0.53125 -0.65625 -0.796875 -1.609375q-0.265625 -0.96875 -0.265625 -2.21875q0 -1.203125 0.28125 -2.171875q0.296875 -0.984375 0.875 -1.65625q0.578125 -0.6875 1.4375 -1.0625q0.875 -0.375 2.03125 -0.375q1.109375 0 1.9375 0.34375q0.828125 0.328125 1.375 0.984375q0.5625 0.640625 0.828125 1.59375q0.265625 0.9375 0.265625 2.171875zm-1.40625 0.09375q0 -0.859375 -0.15625 -1.59375q-0.15625 -0.75 -0.515625 -1.28125q-0.34375 -0.546875 -0.9375 -0.84375q-0.59375 -0.3125 -1.46875 -0.3125q-0.875 0 -1.46875 0.328125q-0.59375 0.328125 -0.96875 0.875q-0.375 0.546875 -0.53125 1.28125q-0.15625 0.71875 -0.15625 1.53125q0 0.890625 0.140625 1.640625q0.15625 0.75 0.5 1.296875q0.359375 0.53125 0.9375 0.84375q0.59375 0.296875 1.484375 0.296875q0.890625 0 1.484375 -0.328125q0.609375 -0.328125 0.96875 -0.890625q0.375 -0.5625 0.53125 -1.296875q0.15625 -0.734375 0.15625 -1.546875zm8.78125 4.484375q0 0.15625 -0.015625 0.265625q-0.015625 0.109375 -0.0625 0.1875q-0.03125 0.0625 -0.078125 0.109375q-0.046875 0.03125 -0.125 0.03125l-4.46875 0q-0.171875 0 -0.34375 -0.125q-0.15625 -0.125 -0.15625 -0.421875l0 -9.359375q0 -0.0625 0.03125 -0.109375q0.03125 -0.046875 0.109375 -0.078125q0.078125 -0.03125 0.203125 -0.046875q0.140625 -0.015625 0.328125 -0.015625q0.203125 0 0.328125 0.015625q0.125 0.015625 0.203125 0.046875q0.078125 0.03125 0.109375 0.078125q0.03125 0.046875 0.03125 0.109375l0 8.734375l3.625 0q0.078125 0 0.125 0.046875q0.046875 0.03125 0.078125 0.09375q0.046875 0.0625 0.0625 0.171875q0.015625 0.109375 0.015625 0.265625zm7.8203125 -8.9375q0 0.140625 -0.015625 0.25q-0.015625 0.109375 -0.0625 0.1875q-0.03125 0.0625 -0.078125 0.09375q-0.046875 0.03125 -0.109375 0.03125l-2.84375 0l0 8.765625q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.078125 0.03125 -0.21875 0.046875q-0.125 0.015625 -0.3125 0.015625q-0.1875 0 -0.328125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.078125 -0.03125 -0.109375 -0.078125q-0.03125 -0.046875 -0.03125 -0.109375l0 -8.765625l-2.84375 0q-0.0625 0 -0.125 -0.03125q-0.046875 -0.03125 -0.078125 -0.09375q-0.03125 -0.078125 -0.046875 -0.1875q-0.015625 -0.109375 -0.015625 -0.25q0 -0.15625 0.015625 -0.265625q0.015625 -0.109375 0.046875 -0.171875q0.03125 -0.078125 0.078125 -0.109375q0.0625 -0.03125 0.125 -0.03125l7.03125 0q0.0625 0 0.109375 0.03125q0.046875 0.03125 0.078125 0.109375q0.046875 0.0625 0.0625 0.171875q0.015625 0.109375 0.015625 0.265625zm10.2265625 9.34375q0 0.09375 -0.0625 0.140625q-0.0625 0.046875 -0.171875 0.0625q-0.109375 0.03125 -0.328125 0.03125q-0.203125 0 -0.328125 -0.03125q-0.109375 -0.015625 -0.171875 -0.0625q-0.046875 -0.046875 -0.046875 -0.140625l0 -0.703125q-0.46875 0.484375 -1.03125 0.765625q-0.5625 0.28125 -1.203125 0.28125q-0.546875 0 -1.0 -0.15625q-0.453125 -0.140625 -0.765625 -0.40625q-0.3125 -0.28125 -0.5 -0.671875q-0.171875 -0.40625 -0.171875 -0.921875q0 -0.59375 0.234375 -1.03125q0.25 -0.4375 0.703125 -0.71875q0.453125 -0.296875 1.109375 -0.4375q0.65625 -0.140625 1.484375 -0.140625l0.96875 0l0 -0.546875q0 -0.40625 -0.09375 -0.71875q-0.078125 -0.3125 -0.28125 -0.515625q-0.1875 -0.21875 -0.5 -0.3125q-0.296875 -0.109375 -0.734375 -0.109375q-0.484375 0 -0.859375 0.109375q-0.375 0.109375 -0.671875 0.25q-0.28125 0.140625 -0.46875 0.25q-0.1875 0.109375 -0.28125 0.109375q-0.0625 0 -0.109375 -0.03125q-0.046875 -0.03125 -0.09375 -0.09375q-0.03125 -0.0625 -0.046875 -0.15625q-0.015625 -0.09375 -0.015625 -0.21875q0 -0.1875 0.03125 -0.296875q0.03125 -0.125 0.125 -0.21875q0.109375 -0.109375 0.359375 -0.234375q0.265625 -0.140625 0.59375 -0.25q0.34375 -0.125 0.734375 -0.1875q0.40625 -0.078125 0.8125 -0.078125q0.765625 0 1.296875 0.171875q0.53125 0.171875 0.859375 0.5q0.328125 0.328125 0.46875 0.828125q0.15625 0.484375 0.15625 1.140625l0 4.75zm-1.28125 -3.21875l-1.109375 0q-0.53125 0 -0.921875 0.09375q-0.390625 0.09375 -0.65625 0.265625q-0.25 0.171875 -0.375 0.421875q-0.109375 0.25 -0.109375 0.5625q0 0.546875 0.34375 0.875q0.34375 0.328125 0.96875 0.328125q0.515625 0 0.9375 -0.25q0.4375 -0.265625 0.921875 -0.796875l0 -1.5zm9.5234375 -3.5q0 0.265625 -0.078125 0.390625q-0.078125 0.125 -0.1875 0.125l-1.015625 0q0.28125 0.28125 0.390625 0.625q0.109375 0.328125 0.109375 0.703125q0 0.609375 -0.203125 1.078125q-0.1875 0.46875 -0.5625 0.796875q-0.359375 0.3125 -0.859375 0.484375q-0.5 0.171875 -1.109375 0.171875q-0.421875 0 -0.8125 -0.109375q-0.390625 -0.109375 -0.59375 -0.28125q-0.140625 0.140625 -0.234375 0.328125q-0.09375 0.171875 -0.09375 0.40625q0 0.265625 0.25 0.453125q0.265625 0.171875 0.6875 0.1875l1.828125 0.078125q0.53125 0.015625 0.96875 0.15625q0.4375 0.125 0.75 0.359375q0.328125 0.234375 0.5 0.59375q0.1875 0.34375 0.1875 0.8125q0 0.484375 -0.203125 0.921875q-0.203125 0.4375 -0.625 0.765625q-0.421875 0.328125 -1.078125 0.515625q-0.640625 0.203125 -1.515625 0.203125q-0.859375 0 -1.453125 -0.15625q-0.59375 -0.140625 -0.984375 -0.390625q-0.375 -0.25 -0.546875 -0.59375q-0.171875 -0.34375 -0.171875 -0.75q0 -0.265625 0.0625 -0.515625q0.0625 -0.234375 0.1875 -0.453125q0.125 -0.21875 0.3125 -0.421875q0.203125 -0.203125 0.453125 -0.390625q-0.390625 -0.203125 -0.578125 -0.5q-0.171875 -0.296875 -0.171875 -0.640625q0 -0.46875 0.1875 -0.84375q0.203125 -0.375 0.484375 -0.671875q-0.234375 -0.296875 -0.375 -0.65625q-0.140625 -0.359375 -0.140625 -0.875q0 -0.609375 0.203125 -1.078125q0.203125 -0.484375 0.5625 -0.8125q0.359375 -0.328125 0.859375 -0.5q0.5 -0.171875 1.09375 -0.171875q0.328125 0 0.59375 0.03125q0.28125 0.03125 0.53125 0.09375l2.125 0q0.125 0 0.1875 0.140625q0.078125 0.125 0.078125 0.390625zm-2.015625 1.84375q0 -0.71875 -0.40625 -1.109375q-0.390625 -0.40625 -1.109375 -0.40625q-0.375 0 -0.65625 0.125q-0.28125 0.125 -0.46875 0.34375q-0.171875 0.21875 -0.265625 0.5q-0.09375 0.28125 -0.09375 0.59375q0 0.703125 0.390625 1.109375q0.40625 0.390625 1.109375 0.390625q0.390625 0 0.671875 -0.125q0.28125 -0.125 0.453125 -0.328125q0.1875 -0.21875 0.28125 -0.5q0.09375 -0.28125 0.09375 -0.59375zm0.640625 5.578125q0 -0.453125 -0.375 -0.703125q-0.359375 -0.25 -1.0 -0.265625l-1.8125 -0.0625q-0.25 0.203125 -0.421875 0.390625q-0.15625 0.171875 -0.25 0.328125q-0.09375 0.15625 -0.125 0.3125q-0.03125 0.15625 -0.03125 0.328125q0 0.5 0.515625 0.765625q0.515625 0.265625 1.4375 0.265625q0.578125 0 0.96875 -0.125q0.40625 -0.109375 0.640625 -0.296875q0.25 -0.1875 0.34375 -0.4375q0.109375 -0.234375 0.109375 -0.5zm9.03125 -4.53125q0 0.296875 -0.15625 0.4375q-0.15625 0.125 -0.34375 0.125l-4.609375 0q0 0.578125 0.109375 1.046875q0.125 0.46875 0.390625 0.8125q0.28125 0.328125 0.71875 0.515625q0.4375 0.171875 1.0625 0.171875q0.5 0 0.890625 -0.078125q0.390625 -0.078125 0.671875 -0.171875q0.296875 -0.109375 0.46875 -0.1875q0.1875 -0.09375 0.28125 -0.09375q0.0625 0 0.09375 0.03125q0.046875 0.03125 0.0625 0.09375q0.03125 0.046875 0.046875 0.140625q0.015625 0.09375 0.015625 0.234375q0 0.109375 -0.015625 0.1875q0 0.0625 -0.015625 0.125q-0.015625 0.0625 -0.046875 0.109375q-0.015625 0.046875 -0.0625 0.09375q-0.046875 0.03125 -0.265625 0.140625q-0.203125 0.09375 -0.546875 0.1875q-0.328125 0.09375 -0.765625 0.171875q-0.4375 0.078125 -0.9375 0.078125q-0.875 0 -1.53125 -0.25q-0.640625 -0.25 -1.09375 -0.71875q-0.4375 -0.484375 -0.671875 -1.203125q-0.21875 -0.71875 -0.21875 -1.671875q0 -0.90625 0.234375 -1.625q0.234375 -0.71875 0.671875 -1.21875q0.4375 -0.515625 1.0625 -0.78125q0.625 -0.265625 1.40625 -0.265625q0.828125 0 1.40625 0.265625q0.578125 0.265625 0.953125 0.71875q0.375 0.4375 0.546875 1.046875q0.1875 0.609375 0.1875 1.296875l0 0.234375zm-1.296875 -0.390625q0.015625 -1.015625 -0.453125 -1.59375q-0.46875 -0.578125 -1.40625 -0.578125q-0.46875 0 -0.828125 0.1875q-0.359375 0.171875 -0.609375 0.46875q-0.234375 0.296875 -0.375 0.703125q-0.125 0.390625 -0.140625 0.8125l3.8125 0zm9.3046875 4.203125q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.0625 0.03125 -0.1875 0.046875q-0.125 0.015625 -0.3125 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.0625 -0.03125 -0.09375 -0.078125q-0.03125 -0.046875 -0.03125 -0.109375l0 -4.109375q0 -0.609375 -0.09375 -0.96875q-0.09375 -0.375 -0.28125 -0.640625q-0.171875 -0.265625 -0.46875 -0.40625q-0.28125 -0.140625 -0.65625 -0.140625q-0.484375 0 -0.96875 0.34375q-0.484375 0.34375 -1.015625 1.015625l0 4.90625q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.0625 0.03125 -0.1875 0.046875q-0.125 0.015625 -0.3125 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.078125 -0.03125 -0.109375 -0.078125q-0.015625 -0.046875 -0.015625 -0.109375l0 -7.03125q0 -0.0625 0.015625 -0.09375q0.03125 -0.046875 0.09375 -0.078125q0.078125 -0.046875 0.1875 -0.046875q0.109375 -0.015625 0.28125 -0.015625q0.171875 0 0.28125 0.015625q0.125 0 0.1875 0.046875q0.0625 0.03125 0.078125 0.078125q0.03125 0.03125 0.03125 0.09375l0 0.9375q0.59375 -0.671875 1.1875 -0.96875q0.59375 -0.3125 1.1875 -0.3125q0.703125 0 1.1875 0.234375q0.484375 0.234375 0.78125 0.640625q0.296875 0.390625 0.421875 0.9375q0.125 0.53125 0.125 1.28125l0 4.28125zm6.015625 -0.515625q0 0.234375 -0.03125 0.375q-0.03125 0.125 -0.09375 0.1875q-0.0625 0.0625 -0.1875 0.125q-0.125 0.046875 -0.296875 0.078125q-0.15625 0.046875 -0.34375 0.0625q-0.171875 0.03125 -0.34375 0.03125q-0.546875 0 -0.9375 -0.140625q-0.390625 -0.15625 -0.640625 -0.453125q-0.25 -0.296875 -0.375 -0.734375q-0.109375 -0.453125 -0.109375 -1.0625l0 -4.109375l-0.984375 0q-0.109375 0 -0.1875 -0.125q-0.0625 -0.125 -0.0625 -0.40625q0 -0.15625 0.015625 -0.25q0.015625 -0.109375 0.046875 -0.171875q0.03125 -0.0625 0.078125 -0.09375q0.0625 -0.03125 0.125 -0.03125l0.96875 0l0 -1.671875q0 -0.046875 0.03125 -0.09375q0.03125 -0.046875 0.09375 -0.078125q0.078125 -0.046875 0.203125 -0.0625q0.125 -0.015625 0.3125 -0.015625q0.203125 0 0.328125 0.015625q0.125 0.015625 0.1875 0.0625q0.078125 0.03125 0.109375 0.078125q0.03125 0.046875 0.03125 0.09375l0 1.671875l1.796875 0q0.0625 0 0.109375 0.03125q0.046875 0.03125 0.078125 0.09375q0.046875 0.0625 0.0625 0.171875q0.015625 0.09375 0.015625 0.25q0 0.28125 -0.078125 0.40625q-0.0625 0.125 -0.1875 0.125l-1.796875 0l0 3.921875q0 0.71875 0.203125 1.09375q0.21875 0.375 0.78125 0.375q0.171875 0 0.3125 -0.03125q0.140625 -0.046875 0.25 -0.078125q0.109375 -0.046875 0.1875 -0.078125q0.078125 -0.03125 0.140625 -0.03125q0.046875 0 0.078125 0.015625q0.03125 0.015625 0.046875 0.078125q0.03125 0.046875 0.046875 0.140625q0.015625 0.09375 0.015625 0.234375z" fill-rule="nonzero"/></g><g filter="url(#shadowFilter-p.8)"><use xlink:href="#p.8" transform="matrix(1.0 0.0 0.0 1.0 0.0 2.099737532808399)"/></g><defs><filter id="shadowFilter-p.8" filterUnits="userSpaceOnUse"><feGaussianBlur in="SourceAlpha" stdDeviation="1.399825" result="blur"/><feComponentTransfer in="blur" color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0" intercept="0.0"/><feFuncG type="linear" slope="0" intercept="0.0"/><feFuncB type="linear" slope="0" intercept="0.0"/><feFuncA type="linear" slope="0.3765" intercept="0"/></feComponentTransfer></filter></defs><g id="p.8"><path fill="#000000" fill-opacity="0.0" d="m136.11418 237.47423l0 38.708664" fill-rule="evenodd"/><path stroke="#7f7f7f" stroke-width="1.3333333333333333" stroke-linejoin="round" stroke-linecap="butt" stroke-dasharray="5.333333333333333,4.0" d="m136.11417 242.04367l0 29.569763" fill-rule="evenodd"/><path fill="#7f7f7f" stroke="#7f7f7f" stroke-width="1.3333333333333333" stroke-linecap="butt" d="m136.11417 242.04367l1.4994507 1.4994507l-1.4994507 -4.11969l-1.4994354 4.11969z" fill-rule="evenodd"/><path fill="#7f7f7f" stroke="#7f7f7f" stroke-width="1.3333333333333333" stroke-linecap="butt" d="m136.11417 271.61343l-1.4994354 -1.4994507l1.4994354 4.11969l1.4994507 -4.11969z" fill-rule="evenodd"/></g><g filter="url(#shadowFilter-p.9)"><use xlink:href="#p.9" transform="matrix(1.0 0.0 0.0 1.0 0.0 2.099737532808399)"/></g><defs><filter id="shadowFilter-p.9" filterUnits="userSpaceOnUse"><feGaussianBlur in="SourceAlpha" stdDeviation="1.399825" result="blur"/><feComponentTransfer in="blur" color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0" intercept="0.0"/><feFuncG type="linear" slope="0" intercept="0.0"/><feFuncB type="linear" slope="0" intercept="0.0"/><feFuncA type="linear" slope="0.3765" intercept="0"/></feComponentTransfer></filter></defs><g id="p.9"><defs><linearGradient id="p.10" gradientUnits="userSpaceOnUse" gradientTransform="matrix(4.415501969826962 0.0 0.0 4.415501969826962 0.0 0.0)" spreadMethod="pad" x1="25.50052893514239" y1="75.72489771813495" x2="25.500577696329586" y2="71.30939574857723"><stop offset="0.0" stop-color="#d8d8d8"/><stop offset="0.35" stop-color="#e3e3e3"/><stop offset="1.0" stop-color="#f4f4f4"/></linearGradient></defs><path fill="url(#p.10)" d="m58.014957 318.11618l0 0c0 -1.7945862 1.4548111 -3.2493896 3.2494087 -3.2493896l48.083862 0c0.8617935 0 1.6882935 0.3423462 2.297676 0.9517212c0.6093826 0.609375 0.9517288 1.4358826 0.9517288 2.2976685l0 12.997253c0 1.7945862 -1.4548111 3.2494202 -3.249405 3.2494202l-48.083862 0c-1.7945976 0 -3.2494087 -1.454834 -3.2494087 -3.2494202z" fill-rule="evenodd"/><path stroke="#a1a1a1" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m58.014957 318.11618l0 0c0 -1.7945862 1.4548111 -3.2493896 3.2494087 -3.2493896l48.083862 0c0.8617935 0 1.6882935 0.3423462 2.297676 0.9517212c0.6093826 0.609375 0.9517288 1.4358826 0.9517288 2.2976685l0 12.997253c0 1.7945862 -1.4548111 3.2494202 -3.249405 3.2494202l-48.083862 0c-1.7945976 0 -3.2494087 -1.454834 -3.2494087 -3.2494202z" fill-rule="evenodd"/><path fill="#000000" d="m81.29458 325.30295q0 1.21875 -0.296875 2.203125q-0.28125 0.984375 -0.859375 1.6875q-0.5625 0.6875 -1.4375 1.0625q-0.859375 0.375 -2.015625 0.375q-1.140625 0 -1.984375 -0.34375q-0.828125 -0.34375 -1.375 -0.984375q-0.53125 -0.65625 -0.796875 -1.609375q-0.265625 -0.96875 -0.265625 -2.21875q0 -1.203125 0.28125 -2.171875q0.296875 -0.984375 0.875 -1.65625q0.578125 -0.6875 1.4375 -1.0625q0.875 -0.375 2.03125 -0.375q1.109375 0 1.9375 0.34375q0.828125 0.328125 1.375 0.984375q0.5625 0.640625 0.828125 1.59375q0.265625 0.9375 0.265625 2.171875zm-1.40625 0.09375q0 -0.859375 -0.15625 -1.59375q-0.15625 -0.75 -0.515625 -1.28125q-0.34375 -0.546875 -0.9375 -0.84375q-0.59375 -0.3125 -1.46875 -0.3125q-0.875 0 -1.46875 0.328125q-0.59375 0.328125 -0.96875 0.875q-0.375 0.546875 -0.53125 1.28125q-0.15625 0.71875 -0.15625 1.53125q0 0.890625 0.140625 1.640625q0.15625 0.75 0.5 1.296875q0.359375 0.53125 0.9375 0.84375q0.59375 0.296875 1.484375 0.296875q0.890625 0 1.484375 -0.328125q0.609375 -0.328125 0.96875 -0.890625q0.375 -0.5625 0.53125 -1.296875q0.15625 -0.734375 0.15625 -1.546875zm11.171875 4.515625q0 0.15625 -0.046875 0.265625q-0.046875 0.109375 -0.140625 0.1875q-0.078125 0.0625 -0.1875 0.109375q-0.09375 0.03125 -0.1875 0.03125l-0.4375 0q-0.203125 0 -0.359375 -0.046875q-0.140625 -0.046875 -0.28125 -0.15625q-0.140625 -0.125 -0.28125 -0.3125q-0.125 -0.203125 -0.296875 -0.5l-3.1875 -5.75q-0.25 -0.453125 -0.5 -0.9375q-0.25 -0.484375 -0.46875 -0.953125l-0.015625 0q0.015625 0.5625 0.015625 1.15625q0.015625 0.578125 0.015625 1.15625l0 6.109375q0 0.046875 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.078125 0.03125 -0.203125 0.046875q-0.109375 0.015625 -0.296875 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.0625 -0.03125 -0.09375 -0.078125q-0.03125 -0.0625 -0.03125 -0.109375l0 -9.328125q0 -0.3125 0.171875 -0.4375q0.171875 -0.140625 0.375 -0.140625l0.640625 0q0.234375 0 0.375 0.046875q0.15625 0.03125 0.28125 0.125q0.125 0.078125 0.234375 0.25q0.109375 0.15625 0.25 0.390625l2.453125 4.4375q0.21875 0.40625 0.421875 0.796875q0.21875 0.390625 0.40625 0.765625q0.203125 0.375 0.390625 0.734375q0.203125 0.359375 0.390625 0.734375l0 0q-0.015625 -0.625 -0.015625 -1.28125q0 -0.671875 0 -1.296875l0 -5.484375q0 -0.046875 0.03125 -0.09375q0.03125 -0.046875 0.09375 -0.078125q0.078125 -0.046875 0.203125 -0.0625q0.125 -0.015625 0.3125 -0.015625q0.171875 0 0.296875 0.015625q0.125 0.015625 0.1875 0.0625q0.078125 0.03125 0.109375 0.078125q0.03125 0.046875 0.03125 0.09375l0 9.328125zm7.9375 -0.03125q0 0.15625 -0.015625 0.265625q-0.015625 0.109375 -0.0625 0.1875q-0.03125 0.0625 -0.078125 0.109375q-0.046875 0.03125 -0.125 0.03125l-4.46875 0q-0.171875 0 -0.34375 -0.125q-0.15625 -0.125 -0.15625 -0.421875l0 -9.359375q0 -0.0625 0.03125 -0.109375q0.03125 -0.046875 0.109375 -0.078125q0.078125 -0.03125 0.203125 -0.046875q0.140625 -0.015625 0.328125 -0.015625q0.203125 0 0.328125 0.015625q0.125 0.015625 0.203125 0.046875q0.078125 0.03125 0.109375 0.078125q0.03125 0.046875 0.03125 0.109375l0 8.734375l3.625 0q0.078125 0 0.125 0.046875q0.046875 0.03125 0.078125 0.09375q0.046875 0.0625 0.0625 0.171875q0.015625 0.109375 0.015625 0.265625z" fill-rule="nonzero"/></g><g filter="url(#shadowFilter-p.11)"><use xlink:href="#p.11" transform="matrix(1.0 0.0 0.0 1.0 0.0 2.099737532808399)"/></g><defs><filter id="shadowFilter-p.11" filterUnits="userSpaceOnUse"><feGaussianBlur in="SourceAlpha" stdDeviation="1.399825" result="blur"/><feComponentTransfer in="blur" color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0" intercept="0.0"/><feFuncG type="linear" slope="0" intercept="0.0"/><feFuncB type="linear" slope="0" intercept="0.0"/><feFuncA type="linear" slope="0.3765" intercept="0"/></feComponentTransfer></filter></defs><g id="p.11"><defs><linearGradient id="p.12" gradientUnits="userSpaceOnUse" gradientTransform="matrix(4.451024407419952 0.0 0.0 4.451024407419952 0.0 0.0)" spreadMethod="pad" x1="25.49498203837801" y1="80.0862373726503" x2="25.495030410415183" y2="75.6352129654932"><stop offset="0.0" stop-color="#d8d8d8"/><stop offset="0.35" stop-color="#e3e3e3"/><stop offset="1.0" stop-color="#f4f4f4"/></linearGradient></defs><path fill="url(#p.12)" d="m58.329185 339.9561l0 0c0 -1.8236084 1.4783134 -3.3019104 3.3019028 -3.3019104l48.5458 0c0.87571716 0 1.7155762 0.34786987 2.3348007 0.96710205c0.61922455 0.6192322 0.96710205 1.4590759 0.96710205 2.3348083l0 13.207214c0 1.8235779 -1.4783096 3.3019104 -3.3019028 3.3019104l-48.5458 0c-1.8235893 0 -3.3019028 -1.4783325 -3.3019028 -3.3019104z" fill-rule="evenodd"/><path stroke="#a1a1a1" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m58.329185 339.9561l0 0c0 -1.8236084 1.4783134 -3.3019104 3.3019028 -3.3019104l48.5458 0c0.87571716 0 1.7155762 0.34786987 2.3348007 0.96710205c0.61922455 0.6192322 0.96710205 1.4590759 0.96710205 2.3348083l0 13.207214c0 1.8235779 -1.4783096 3.3019104 -3.3019028 3.3019104l-48.5458 0c-1.8235893 0 -3.3019028 -1.4783325 -3.3019028 -3.3019104z" fill-rule="evenodd"/><path fill="#000000" d="m79.33368 347.2478q0 1.21875 -0.296875 2.203125q-0.28125 0.984375 -0.859375 1.6875q-0.5625 0.6875 -1.4375 1.0625q-0.859375 0.375 -2.015625 0.375q-1.140625 0 -1.984375 -0.34375q-0.828125 -0.34375 -1.375 -0.984375q-0.53125 -0.65625 -0.796875 -1.609375q-0.265625 -0.96875 -0.265625 -2.21875q0 -1.203125 0.28125 -2.171875q0.296875 -0.984375 0.875 -1.65625q0.578125 -0.6875 1.4375 -1.0625q0.875 -0.375 2.03125 -0.375q1.109375 0 1.9375 0.34375q0.828125 0.328125 1.375 0.984375q0.5625 0.640625 0.828125 1.59375q0.265625 0.9375 0.265625 2.171875zm-1.40625 0.09375q0 -0.859375 -0.15625 -1.59375q-0.15625 -0.75 -0.515625 -1.28125q-0.34375 -0.546875 -0.9375 -0.84375q-0.59375 -0.3125 -1.46875 -0.3125q-0.875 0 -1.46875 0.328125q-0.59375 0.328125 -0.96875 0.875q-0.375 0.546875 -0.53125 1.28125q-0.15625 0.71875 -0.15625 1.53125q0 0.890625 0.140625 1.640625q0.15625 0.75 0.5 1.296875q0.359375 0.53125 0.9375 0.84375q0.59375 0.296875 1.484375 0.296875q0.890625 0 1.484375 -0.328125q0.609375 -0.328125 0.96875 -0.890625q0.375 -0.5625 0.53125 -1.296875q0.15625 -0.734375 0.15625 -1.546875zm11.171875 4.515625q0 0.15625 -0.046875 0.265625q-0.046875 0.109375 -0.140625 0.1875q-0.078125 0.0625 -0.1875 0.109375q-0.09375 0.03125 -0.1875 0.03125l-0.4375 0q-0.203125 0 -0.359375 -0.046875q-0.140625 -0.046875 -0.28125 -0.15625q-0.140625 -0.125 -0.28125 -0.3125q-0.125 -0.203125 -0.296875 -0.5l-3.1875 -5.75q-0.25 -0.453125 -0.5 -0.9375q-0.25 -0.484375 -0.46875 -0.953125l-0.015625 0q0.015625 0.5625 0.015625 1.15625q0.015625 0.578125 0.015625 1.15625l0 6.109375q0 0.046875 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.078125 0.03125 -0.203125 0.046875q-0.109375 0.015625 -0.296875 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.0625 -0.03125 -0.09375 -0.078125q-0.03125 -0.0625 -0.03125 -0.109375l0 -9.328125q0 -0.3125 0.171875 -0.4375q0.171875 -0.140625 0.375 -0.140625l0.640625 0q0.234375 0 0.375 0.046875q0.15625 0.03125 0.28125 0.125q0.125 0.078125 0.234375 0.25q0.109375 0.15625 0.25 0.390625l2.453125 4.4375q0.21875 0.40625 0.421875 0.796875q0.21875 0.390625 0.40625 0.765625q0.203125 0.375 0.390625 0.734375q0.203125 0.359375 0.390625 0.734375l0 0q-0.015625 -0.625 -0.015625 -1.28125q0 -0.671875 0 -1.296875l0 -5.484375q0 -0.046875 0.03125 -0.09375q0.03125 -0.046875 0.09375 -0.078125q0.078125 -0.046875 0.203125 -0.0625q0.125 -0.015625 0.3125 -0.015625q0.171875 0 0.296875 0.015625q0.125 0.015625 0.1875 0.0625q0.078125 0.03125 0.109375 0.078125q0.03125 0.046875 0.03125 0.09375l0 9.328125zm4.03125 0.359375q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.078125 0.03125 -0.203125 0.046875q-0.125 0.015625 -0.328125 0.015625q-0.1875 0 -0.328125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.078125 -0.03125 -0.109375 -0.078125q-0.03125 -0.046875 -0.03125 -0.109375l0 -9.703125q0 -0.0625 0.03125 -0.109375q0.046875 -0.046875 0.125 -0.078125q0.078125 -0.03125 0.203125 -0.046875q0.140625 -0.015625 0.3125 -0.015625q0.203125 0 0.328125 0.015625q0.125 0.015625 0.203125 0.046875q0.078125 0.03125 0.109375 0.078125q0.03125 0.046875 0.03125 0.109375l0 9.703125zm8.3125 -0.359375q0 0.140625 -0.015625 0.25q-0.015625 0.109375 -0.0625 0.1875q-0.03125 0.0625 -0.078125 0.09375q-0.046875 0.03125 -0.109375 0.03125l-4.859375 0q-0.171875 0 -0.34375 -0.125q-0.15625 -0.125 -0.15625 -0.421875l0 -9.015625q0 -0.3125 0.15625 -0.421875q0.171875 -0.125 0.34375 -0.125l4.796875 0q0.0625 0 0.109375 0.03125q0.0625 0.03125 0.09375 0.109375q0.03125 0.0625 0.046875 0.171875q0.015625 0.09375 0.015625 0.25q0 0.140625 -0.015625 0.25q-0.015625 0.109375 -0.046875 0.171875q-0.03125 0.0625 -0.09375 0.09375q-0.046875 0.03125 -0.109375 0.03125l-3.953125 0l0 3.171875l3.390625 0q0.0625 0 0.109375 0.046875q0.0625 0.03125 0.09375 0.09375q0.03125 0.0625 0.046875 0.171875q0.015625 0.109375 0.015625 0.25q0 0.140625 -0.015625 0.25q-0.015625 0.09375 -0.046875 0.15625q-0.03125 0.0625 -0.09375 0.09375q-0.046875 0.03125 -0.109375 0.03125l-3.390625 0l0 3.609375l4.015625 0q0.0625 0 0.109375 0.03125q0.046875 0.03125 0.078125 0.109375q0.046875 0.0625 0.0625 0.171875q0.015625 0.09375 0.015625 0.25z" fill-rule="nonzero"/></g><path fill="#a4c2f4" d="m129.74672 35.06752l0 0c0 -3.2499943 2.6346436 -5.884634 5.8846283 -5.884634l133.20712 0c1.5606995 0 3.0574646 0.6199856 4.161072 1.7235699c1.1035767 1.1035805 1.7235413 2.6003609 1.7235413 4.161064l0 23.537819c0 3.2499962 -2.634613 5.884636 -5.884613 5.884636l-133.20712 0c-3.2499847 0 -5.8846283 -2.6346397 -5.8846283 -5.884636z" fill-rule="evenodd"/><path stroke="#004b7d" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m129.74672 35.06752l0 0c0 -3.2499943 2.6346436 -5.884634 5.8846283 -5.884634l133.20712 0c1.5606995 0 3.0574646 0.6199856 4.161072 1.7235699c1.1035767 1.1035805 1.7235413 2.6003609 1.7235413 4.161064l0 23.537819c0 3.2499962 -2.634613 5.884636 -5.884613 5.884636l-133.20712 0c-3.2499847 0 -5.8846283 -2.6346397 -5.8846283 -5.884636z" fill-rule="evenodd"/><path fill="#000000" d="m172.78569 47.118305q0 -2.859375 1.53125 -4.46875q1.53125 -1.609375 3.953125 -1.609375q1.578125 0 2.84375 0.765625q1.28125 0.75 1.953125 2.109375q0.671875 1.34375 0.671875 3.0625q0 1.75 -0.703125 3.125q-0.703125 1.375 -2.0 2.09375q-1.28125 0.703125 -2.78125 0.703125q-1.609375 0 -2.890625 -0.78125q-1.265625 -0.796875 -1.921875 -2.140625q-0.65625 -1.359375 -0.65625 -2.859375zm1.5625 0.015625q0 2.078125 1.109375 3.265625q1.109375 1.1875 2.796875 1.1875q1.703125 0 2.8125 -1.203125q1.109375 -1.203125 1.109375 -3.40625q0 -1.40625 -0.484375 -2.4375q-0.46875 -1.046875 -1.375 -1.625q-0.90625 -0.578125 -2.046875 -0.578125q-1.609375 0 -2.765625 1.109375q-1.15625 1.109375 -1.15625 3.6875zm11.3203125 5.5625l0 -11.453125l1.5625 0l6.015625 8.984375l0 -8.984375l1.453125 0l0 11.453125l-1.5625 0l-6.015625 -9.0l0 9.0l-1.453125 0zm11.1171875 -5.578125q0 -2.859375 1.53125 -4.46875q1.53125 -1.609375 3.953125 -1.609375q1.578125 0 2.84375 0.765625q1.28125 0.75 1.953125 2.109375q0.671875 1.34375 0.671875 3.0625q0 1.75 -0.703125 3.125q-0.703125 1.375 -2.0 2.09375q-1.28125 0.703125 -2.78125 0.703125q-1.609375 0 -2.890625 -0.78125q-1.265625 -0.796875 -1.921875 -2.140625q-0.65625 -1.359375 -0.65625 -2.859375zm1.5625 0.015625q0 2.078125 1.109375 3.265625q1.109375 1.1875 2.796875 1.1875q1.703125 0 2.8125 -1.203125q1.109375 -1.203125 1.109375 -3.40625q0 -1.40625 -0.484375 -2.4375q-0.46875 -1.046875 -1.375 -1.625q-0.90625 -0.578125 -2.046875 -0.578125q-1.609375 0 -2.765625 1.109375q-1.15625 1.109375 -1.15625 3.6875zm10.8203125 1.875l1.4375 -0.125q0.09375 0.859375 0.46875 1.421875q0.375 0.546875 1.15625 0.890625q0.78125 0.328125 1.75 0.328125q0.875 0 1.53125 -0.25q0.671875 -0.265625 0.984375 -0.703125q0.328125 -0.453125 0.328125 -0.984375q0 -0.546875 -0.3125 -0.9375q-0.3125 -0.40625 -1.03125 -0.6875q-0.453125 -0.171875 -2.03125 -0.546875q-1.578125 -0.390625 -2.21875 -0.71875q-0.8125 -0.4375 -1.21875 -1.0625q-0.40625 -0.640625 -0.40625 -1.4375q0 -0.859375 0.484375 -1.609375q0.5 -0.765625 1.4375 -1.15625q0.953125 -0.390625 2.109375 -0.390625q1.28125 0 2.25 0.421875q0.96875 0.40625 1.484375 1.203125q0.53125 0.796875 0.578125 1.796875l-1.453125 0.109375q-0.125 -1.078125 -0.796875 -1.625q-0.671875 -0.5625 -2.0 -0.5625q-1.375 0 -2.0 0.5q-0.625 0.5 -0.625 1.21875q0 0.609375 0.4375 1.015625q0.4375 0.390625 2.28125 0.8125q1.859375 0.421875 2.546875 0.734375q1.0 0.453125 1.46875 1.171875q0.484375 0.703125 0.484375 1.625q0 0.90625 -0.53125 1.71875q-0.515625 0.8125 -1.5 1.265625q-0.984375 0.453125 -2.203125 0.453125q-1.5625 0 -2.609375 -0.453125q-1.046875 -0.46875 -1.65625 -1.375q-0.59375 -0.90625 -0.625 -2.0625zm20.367188 3.6875l-1.40625 0l0 -8.96875q-0.515625 0.484375 -1.34375 0.96875q-0.8125 0.484375 -1.46875 0.734375l0 -1.359375q1.171875 -0.5625 2.046875 -1.34375q0.890625 -0.796875 1.265625 -1.53125l0.90625 0l0 11.5z" fill-rule="nonzero"/><path fill="#00ffff" d="m153.0538 98.25126l0 0c0 -3.6819687 2.9848328 -6.6668015 6.666809 -6.6668015l85.028595 0c1.7681427 0 3.4638824 0.7024002 4.714142 1.9526672c1.2502747 1.250267 1.9526672 2.9459915 1.9526672 4.714134l0 26.666405c0 3.6819763 -2.9848328 6.666794 -6.666809 6.666794l-85.028595 0l0 0c-3.6819763 0 -6.666809 -2.9848175 -6.666809 -6.666794z" fill-rule="evenodd"/><path stroke="#004b7d" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m153.0538 98.25126l0 0c0 -3.6819687 2.9848328 -6.6668015 6.666809 -6.6668015l85.028595 0c1.7681427 0 3.4638824 0.7024002 4.714142 1.9526672c1.2502747 1.250267 1.9526672 2.9459915 1.9526672 4.714134l0 26.666405c0 3.6819763 -2.9848328 6.666794 -6.666809 6.666794l-85.028595 0l0 0c-3.6819763 0 -6.666809 -2.9848175 -6.666809 -6.666794z" fill-rule="evenodd"/><path fill="#000000" d="m191.18803 106.92883l1.515625 0.375q-0.46875 1.875 -1.71875 2.859375q-1.234375 0.984375 -3.015625 0.984375q-1.859375 0 -3.015625 -0.75q-1.15625 -0.765625 -1.765625 -2.1875q-0.609375 -1.4375 -0.609375 -3.078125q0 -1.796875 0.6875 -3.125q0.6875 -1.328125 1.9375 -2.015625q1.265625 -0.703125 2.78125 -0.703125q1.71875 0 2.890625 0.875q1.171875 0.875 1.640625 2.46875l-1.5 0.34375q-0.390625 -1.25 -1.15625 -1.8125q-0.75 -0.578125 -1.90625 -0.578125q-1.3125 0 -2.203125 0.640625q-0.890625 0.625 -1.25 1.703125q-0.359375 1.0625 -0.359375 2.1875q0 1.46875 0.421875 2.5625q0.4375 1.078125 1.328125 1.625q0.90625 0.53125 1.953125 0.53125q1.265625 0 2.140625 -0.734375q0.890625 -0.734375 1.203125 -2.171875zm3.1796875 4.015625l0 -11.453125l1.40625 0l0 11.453125l-1.40625 0zm3.5859375 -9.84375l0 -1.609375l1.40625 0l0 1.609375l-1.40625 0zm0 9.84375l0 -8.296875l1.40625 0l0 8.296875l-1.40625 0zm9.2265625 -2.671875l1.453125 0.171875q-0.34375 1.28125 -1.28125 1.984375q-0.921875 0.703125 -2.359375 0.703125q-1.828125 0 -2.890625 -1.125q-1.0625 -1.125 -1.0625 -3.140625q0 -2.09375 1.078125 -3.25q1.078125 -1.15625 2.796875 -1.15625q1.65625 0 2.703125 1.140625q1.0625 1.125 1.0625 3.171875q0 0.125 0 0.375l-6.1875 0q0.078125 1.375 0.765625 2.109375q0.703125 0.71875 1.734375 0.71875q0.78125 0 1.328125 -0.40625q0.546875 -0.40625 0.859375 -1.296875zm-4.609375 -2.28125l4.625 0q-0.09375 -1.046875 -0.53125 -1.5625q-0.671875 -0.8125 -1.734375 -0.8125q-0.96875 0 -1.640625 0.65625q-0.65625 0.640625 -0.71875 1.71875zm7.8359375 4.953125l0 -8.296875l1.265625 0l0 1.171875q0.90625 -1.359375 2.640625 -1.359375q0.75 0 1.375 0.265625q0.625 0.265625 0.9375 0.703125q0.3125 0.4375 0.4375 1.046875q0.078125 0.390625 0.078125 1.359375l0 5.109375l-1.40625 0l0 -5.046875q0 -0.859375 -0.171875 -1.28125q-0.15625 -0.4375 -0.578125 -0.6875q-0.40625 -0.25 -0.96875 -0.25q-0.90625 0 -1.5625 0.578125q-0.640625 0.5625 -0.640625 2.15625l0 4.53125l-1.40625 0zm11.9609375 -1.265625l0.203125 1.25q-0.59375 0.125 -1.0625 0.125q-0.765625 0 -1.1875 -0.234375q-0.421875 -0.25 -0.59375 -0.640625q-0.171875 -0.40625 -0.171875 -1.671875l0 -4.765625l-1.03125 0l0 -1.09375l1.03125 0l0 -2.0625l1.40625 -0.84375l0 2.90625l1.40625 0l0 1.09375l-1.40625 0l0 4.84375q0 0.609375 0.0625 0.78125q0.078125 0.171875 0.25 0.28125q0.171875 0.09375 0.484375 0.09375q0.234375 0 0.609375 -0.0625z" fill-rule="nonzero"/><path fill="#000000" d="m171.27051 127.07446q-0.78125 -0.984375 -1.328125 -2.296875q-0.53125 -1.3125 -0.53125 -2.71875q0 -1.234375 0.40625 -2.375q0.46875 -1.3125 1.453125 -2.625l0.65625 0q-0.625 1.09375 -0.828125 1.546875q-0.3125 0.71875 -0.5 1.5q-0.21875 0.984375 -0.21875 1.96875q0 2.5 1.546875 5.0l-0.65625 0zm5.5329895 -4.03125l0.96875 0.125q-0.234375 0.84375 -0.859375 1.3125q-0.609375 0.46875 -1.578125 0.46875q-1.203125 0 -1.921875 -0.75q-0.703125 -0.75 -0.703125 -2.09375q0 -1.390625 0.71875 -2.15625q0.71875 -0.78125 1.859375 -0.78125q1.109375 0 1.8125 0.765625q0.703125 0.75 0.703125 2.125q0 0.078125 0 0.234375l-4.125 0q0.046875 0.921875 0.515625 1.40625q0.46875 0.484375 1.15625 0.484375q0.515625 0 0.875 -0.265625q0.359375 -0.28125 0.578125 -0.875zm-3.078125 -1.515625l3.09375 0q-0.0625 -0.6875 -0.359375 -1.046875q-0.453125 -0.53125 -1.15625 -0.53125q-0.640625 0 -1.09375 0.4375q-0.4375 0.421875 -0.484375 1.140625zm5.0514984 3.75l0.90625 0.140625q0.0625 0.421875 0.328125 0.609375q0.34375 0.265625 0.9375 0.265625q0.65625 0 1.0 -0.265625q0.359375 -0.25 0.484375 -0.71875q0.078125 -0.296875 0.078125 -1.203125q-0.625 0.71875 -1.53125 0.71875q-1.140625 0 -1.765625 -0.8125q-0.625 -0.828125 -0.625 -1.984375q0 -0.78125 0.28125 -1.453125q0.296875 -0.671875 0.828125 -1.03125q0.546875 -0.375 1.28125 -0.375q0.984375 0 1.609375 0.796875l0 -0.671875l0.875 0l0 4.78125q0 1.296875 -0.265625 1.828125q-0.265625 0.546875 -0.84375 0.859375q-0.5625 0.3125 -1.390625 0.3125q-0.984375 0 -1.59375 -0.453125q-0.609375 -0.4375 -0.59375 -1.34375zm0.78125 -3.3125q0 1.078125 0.421875 1.578125q0.4375 0.5 1.078125 0.5q0.65625 0 1.09375 -0.484375q0.4375 -0.5 0.4375 -1.5625q0 -1.015625 -0.453125 -1.53125q-0.453125 -0.515625 -1.09375 -0.515625q-0.609375 0 -1.046875 0.515625q-0.4375 0.5 -0.4375 1.5zm5.5827484 2.859375l0 -1.0625l1.0625 0l0 1.0625l-1.0625 0zm5.46817 -3.71875q0 -1.890625 1.015625 -2.96875q1.03125 -1.078125 2.640625 -1.078125q1.046875 0 1.890625 0.515625q0.859375 0.5 1.296875 1.40625q0.453125 0.890625 0.453125 2.046875q0 1.15625 -0.46875 2.078125q-0.46875 0.90625 -1.328125 1.375q-0.859375 0.46875 -1.859375 0.46875q-1.078125 0 -1.921875 -0.515625q-0.84375 -0.515625 -1.28125 -1.40625q-0.4375 -0.90625 -0.4375 -1.921875zm1.046875 0.015625q0 1.375 0.734375 2.171875q0.734375 0.796875 1.859375 0.796875q1.140625 0 1.875 -0.796875q0.734375 -0.8125 0.734375 -2.28125q0 -0.921875 -0.3125 -1.609375q-0.3125 -0.703125 -0.921875 -1.078125q-0.609375 -0.390625 -1.359375 -0.390625q-1.078125 0 -1.84375 0.734375q-0.765625 0.734375 -0.765625 2.453125zm7.6012726 3.703125l0 -7.625l5.140625 0l0 0.890625l-4.125 0l0 2.375l3.578125 0l0 0.890625l-3.578125 0l0 3.46875l-1.015625 0zm5.0300903 0l2.921875 -7.625l1.09375 0l3.125 7.625l-1.15625 0l-0.890625 -2.3125l-3.1875 0l-0.828125 2.3125l-1.078125 0zm2.203125 -3.125l2.578125 0l-0.796875 -2.125q-0.359375 -0.953125 -0.53125 -1.578125q-0.15625 0.734375 -0.421875 1.453125l-0.828125 2.25zm5.4513855 3.578125l0.90625 0.140625q0.0625 0.421875 0.328125 0.609375q0.34375 0.265625 0.9375 0.265625q0.65625 0 1.0 -0.265625q0.359375 -0.25 0.484375 -0.71875q0.078125 -0.296875 0.078125 -1.203125q-0.625 0.71875 -1.53125 0.71875q-1.140625 0 -1.765625 -0.8125q-0.625 -0.828125 -0.625 -1.984375q0 -0.78125 0.28125 -1.453125q0.296875 -0.671875 0.828125 -1.03125q0.546875 -0.375 1.28125 -0.375q0.984375 0 1.609375 0.796875l0 -0.671875l0.875 0l0 4.78125q0 1.296875 -0.265625 1.828125q-0.265625 0.546875 -0.84375 0.859375q-0.5625 0.3125 -1.390625 0.3125q-0.984375 0 -1.59375 -0.453125q-0.609375 -0.4375 -0.59375 -1.34375zm0.78125 -3.3125q0 1.078125 0.421875 1.578125q0.4375 0.5 1.078125 0.5q0.65625 0 1.09375 -0.484375q0.4375 -0.5 0.4375 -1.5625q0 -1.015625 -0.453125 -1.53125q-0.453125 -0.515625 -1.09375 -0.515625q-0.609375 0 -1.046875 0.515625q-0.4375 0.5 -0.4375 1.5zm9.098373 1.078125l0.96875 0.125q-0.234375 0.84375 -0.859375 1.3125q-0.609375 0.46875 -1.578125 0.46875q-1.203125 0 -1.921875 -0.75q-0.703125 -0.75 -0.703125 -2.09375q0 -1.390625 0.71875 -2.15625q0.71875 -0.78125 1.859375 -0.78125q1.109375 0 1.8125 0.765625q0.703125 0.75 0.703125 2.125q0 0.078125 0 0.234375l-4.125 0q0.046875 0.921875 0.515625 1.40625q0.46875 0.484375 1.15625 0.484375q0.515625 0 0.875 -0.265625q0.359375 -0.28125 0.578125 -0.875zm-3.078125 -1.515625l3.09375 0q-0.0625 -0.6875 -0.359375 -1.046875q-0.453125 -0.53125 -1.15625 -0.53125q-0.640625 0 -1.09375 0.4375q-0.4375 0.421875 -0.484375 1.140625zm5.2233734 3.296875l0 -5.53125l0.84375 0l0 0.796875q0.609375 -0.921875 1.75 -0.921875q0.5 0 0.921875 0.1875q0.421875 0.171875 0.625 0.46875q0.21875 0.296875 0.296875 0.6875q0.046875 0.265625 0.046875 0.921875l0 3.390625l-0.9375 0l0 -3.359375q0 -0.578125 -0.109375 -0.859375q-0.109375 -0.28125 -0.390625 -0.453125q-0.265625 -0.171875 -0.640625 -0.171875q-0.59375 0 -1.03125 0.390625q-0.4375 0.375 -0.4375 1.4375l0 3.015625l-0.9375 0zm7.9733734 -0.84375l0.125 0.828125q-0.390625 0.09375 -0.703125 0.09375q-0.5 0 -0.78125 -0.15625q-0.28125 -0.171875 -0.40625 -0.4375q-0.109375 -0.265625 -0.109375 -1.109375l0 -3.171875l-0.6875 0l0 -0.734375l0.6875 0l0 -1.359375l0.9375 -0.5625l0 1.921875l0.9375 0l0 0.734375l-0.9375 0l0 3.234375q0 0.390625 0.046875 0.515625q0.046875 0.109375 0.15625 0.1875q0.109375 0.0625 0.328125 0.0625q0.15625 0 0.40625 -0.046875zm1.5231476 3.09375l-0.671875 0q1.5625 -2.5 1.5625 -5.0q0 -0.984375 -0.21875 -1.953125q-0.1875 -0.78125 -0.5 -1.5q-0.203125 -0.46875 -0.84375 -1.5625l0.671875 0q0.984375 1.3125 1.453125 2.625q0.390625 1.140625 0.390625 2.375q0 1.40625 -0.53125 2.71875q-0.53125 1.3125 -1.3125 2.296875z" fill-rule="nonzero"/><g filter="url(#shadowFilter-p.13)"><use xlink:href="#p.13" transform="matrix(1.0 0.0 0.0 1.0 0.0 2.099737532808399)"/></g><defs><filter id="shadowFilter-p.13" filterUnits="userSpaceOnUse"><feGaussianBlur in="SourceAlpha" stdDeviation="1.399825" result="blur"/><feComponentTransfer in="blur" color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0" intercept="0.0"/><feFuncG type="linear" slope="0" intercept="0.0"/><feFuncB type="linear" slope="0" intercept="0.0"/><feFuncA type="linear" slope="0.3765" intercept="0"/></feComponentTransfer></filter></defs><g id="p.13"><path fill="#000000" fill-opacity="0.0" d="m202.23491 64.489975l0 27.086609" fill-rule="evenodd"/><path stroke="#7f7f7f" stroke-width="1.3333333333333333" stroke-linejoin="round" stroke-linecap="butt" stroke-dasharray="5.333333333333333,4.0" d="m202.23491 69.059425l0 17.947708" fill-rule="evenodd"/><path fill="#7f7f7f" stroke="#7f7f7f" stroke-width="1.3333333333333333" stroke-linecap="butt" d="m202.23491 69.059425l1.4994507 1.499443l-1.4994507 -4.11969l-1.4994507 4.11969z" fill-rule="evenodd"/><path fill="#7f7f7f" stroke="#7f7f7f" stroke-width="1.3333333333333333" stroke-linecap="butt" d="m202.23491 87.00714l-1.4994507 -1.4994507l1.4994507 4.1196976l1.4994507 -4.1196976z" fill-rule="evenodd"/></g><path fill="#00ccff" d="m17.81496 145.16014l0 0c0 -2.7662506 10.337404 -5.0087433 23.089237 -5.0087433c12.751835 0 23.089241 2.2424927 23.089241 5.0087433l0 20.034988c0 2.7662659 -10.337406 5.0087585 -23.089241 5.0087585c-12.751833 0 -23.089237 -2.2424927 -23.089237 -5.0087585z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m63.99344 145.16014l0 0c0 2.7662506 -10.337406 5.0087433 -23.089241 5.0087433c-12.751833 0 -23.089237 -2.2424927 -23.089237 -5.0087433" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m17.81496 145.16014l0 0c0 -2.7662506 10.337404 -5.0087433 23.089237 -5.0087433c12.751835 0 23.089241 2.2424927 23.089241 5.0087433l0 20.034988c0 2.7662659 -10.337406 5.0087585 -23.089241 5.0087585c-12.751833 0 -23.089237 -2.2424927 -23.089237 -5.0087585z" fill-rule="evenodd"/><path stroke="#004b7d" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m63.99344 145.16014l0 0c0 2.7662506 -10.337406 5.0087433 -23.089241 5.0087433c-12.751833 0 -23.089237 -2.2424927 -23.089237 -5.0087433" fill-rule="evenodd"/><path stroke="#004b7d" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m17.81496 145.16014l0 0c0 -2.7662506 10.337404 -5.0087433 23.089237 -5.0087433c12.751835 0 23.089241 2.2424927 23.089241 5.0087433l0 20.034988c0 2.7662659 -10.337406 5.0087585 -23.089241 5.0087585c-12.751833 0 -23.089237 -2.2424927 -23.089237 -5.0087585z" fill-rule="evenodd"/><path fill="#000000" d="m31.086496 161.42201l0 -7.625l5.515623 0l0 0.890625l-4.5 0l0 2.34375l4.21875 0l0 0.890625l-4.21875 0l0 2.59375l4.671875 0l0 0.90625l-5.687498 0zm9.013884 -0.84375l0.125 0.828125q-0.390625 0.09375 -0.703125 0.09375q-0.5 0 -0.78125 -0.15625q-0.28125 -0.171875 -0.40625 -0.4375q-0.109375 -0.265625 -0.109375 -1.109375l0 -3.171875l-0.6875 0l0 -0.734375l0.6875 0l0 -1.359375l0.9375 -0.5625l0 1.921875l0.9375 0l0 0.734375l-0.9375 0l0 3.234375q0 0.390625 0.046875 0.515625q0.046875 0.109375 0.15625 0.1875q0.109375 0.0625 0.328125 0.0625q0.15625 0 0.40625 -0.046875zm4.5231476 -1.1875l0.921875 0.125q-0.15625 0.953125 -0.78125 1.5q-0.625 0.53125 -1.53125 0.53125q-1.125 0 -1.8125 -0.734375q-0.6875 -0.75 -0.6875 -2.125q0 -0.90625 0.296875 -1.578125q0.296875 -0.671875 0.890625 -1.0q0.609375 -0.34375 1.328125 -0.34375q0.890625 0 1.46875 0.46875q0.578125 0.453125 0.734375 1.28125l-0.90625 0.140625q-0.140625 -0.546875 -0.46875 -0.828125q-0.328125 -0.28125 -0.796875 -0.28125q-0.703125 0 -1.15625 0.515625q-0.4375 0.5 -0.4375 1.59375q0 1.109375 0.421875 1.625q0.4375 0.5 1.125 0.5q0.546875 0 0.90625 -0.34375q0.375 -0.34375 0.484375 -1.046875zm5.296875 2.03125l0 -0.703125q-0.515625 0.828125 -1.546875 0.828125q-0.65625 0 -1.21875 -0.359375q-0.546875 -0.375 -0.859375 -1.015625q-0.296875 -0.65625 -0.296875 -1.5q0 -0.828125 0.28125 -1.5q0.28125 -0.6875 0.828125 -1.046875q0.546875 -0.359375 1.234375 -0.359375q0.5 0 0.890625 0.21875q0.390625 0.203125 0.625 0.546875l0 -2.734375l0.9375 0l0 7.625l-0.875 0zm-2.953125 -2.75q0 1.046875 0.4375 1.578125q0.453125 0.53125 1.0625 0.53125q0.609375 0 1.03125 -0.5q0.4375 -0.515625 0.4375 -1.53125q0 -1.140625 -0.4375 -1.671875q-0.4375 -0.53125 -1.078125 -0.53125q-0.609375 0 -1.03125 0.515625q-0.421875 0.5 -0.421875 1.609375z" fill-rule="nonzero"/><path fill="#b6d7a8" d="m85.20079 175.88373l0 0c0 -1.4524994 1.177475 -2.6299744 2.6299744 -2.6299744l229.19673 0c0.69750977 0 1.3664551 0.27708435 1.8596802 0.7702942c0.4932251 0.4932251 0.7702942 1.1621704 0.7702942 1.8596802l0 10.519577c0 1.4524994 -1.1774597 2.6299744 -2.6299744 2.6299744l-229.19673 0c-1.4524994 0 -2.6299744 -1.177475 -2.6299744 -2.6299744z" fill-rule="evenodd"/><path stroke="#004b7d" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m85.20079 175.88373l0 0c0 -1.4524994 1.177475 -2.6299744 2.6299744 -2.6299744l229.19673 0c0.69750977 0 1.3664551 0.27708435 1.8596802 0.7702942c0.4932251 0.4932251 0.7702942 1.1621704 0.7702942 1.8596802l0 10.519577c0 1.4524994 -1.1774597 2.6299744 -2.6299744 2.6299744l-229.19673 0c-1.4524994 0 -2.6299744 -1.177475 -2.6299744 -2.6299744z" fill-rule="evenodd"/><path fill="#000000" d="m184.37054 187.00351l0 -11.453125l1.40625 0l0 6.53125l3.328125 -3.375l1.828125 0l-3.171875 3.078125l3.484375 5.21875l-1.734375 0l-2.734375 -4.25l-1.0 0.953125l0 3.296875l-1.40625 0zm13.40625 -1.03125q-0.78125 0.671875 -1.5 0.953125q-0.71875 0.265625 -1.546875 0.265625q-1.375 0 -2.109375 -0.671875q-0.734375 -0.671875 -0.734375 -1.703125q0 -0.609375 0.28125 -1.109375q0.28125 -0.515625 0.71875 -0.8125q0.453125 -0.3125 1.015625 -0.46875q0.421875 -0.109375 1.25 -0.203125q1.703125 -0.203125 2.515625 -0.484375q0 -0.296875 0 -0.375q0 -0.859375 -0.390625 -1.203125q-0.546875 -0.484375 -1.609375 -0.484375q-0.984375 0 -1.46875 0.359375q-0.46875 0.34375 -0.6875 1.21875l-1.375 -0.1875q0.1875 -0.875 0.609375 -1.421875q0.4375 -0.546875 1.25 -0.828125q0.8125 -0.296875 1.875 -0.296875q1.0625 0 1.71875 0.25q0.671875 0.25 0.984375 0.625q0.3125 0.375 0.4375 0.953125q0.078125 0.359375 0.078125 1.296875l0 1.875q0 1.96875 0.078125 2.484375q0.09375 0.515625 0.359375 1.0l-1.46875 0q-0.21875 -0.4375 -0.28125 -1.03125zm-0.109375 -3.140625q-0.765625 0.3125 -2.296875 0.53125q-0.875 0.125 -1.234375 0.28125q-0.359375 0.15625 -0.5625 0.46875q-0.1875 0.296875 -0.1875 0.65625q0 0.5625 0.421875 0.9375q0.4375 0.375 1.25 0.375q0.8125 0 1.4375 -0.34375q0.640625 -0.359375 0.9375 -0.984375q0.234375 -0.46875 0.234375 -1.40625l0 -0.515625zm3.9296875 4.171875l0 -7.203125l-1.234375 0l0 -1.09375l1.234375 0l0 -0.890625q0 -0.828125 0.15625 -1.234375q0.203125 -0.546875 0.703125 -0.890625q0.515625 -0.34375 1.4375 -0.34375q0.59375 0 1.3125 0.140625l-0.203125 1.234375q-0.4375 -0.078125 -0.828125 -0.078125q-0.640625 0 -0.90625 0.28125q-0.265625 0.265625 -0.265625 1.015625l0 0.765625l1.609375 0l0 1.09375l-1.609375 0l0 7.203125l-1.40625 0zm4.1171875 0l0 -11.453125l1.40625 0l0 6.53125l3.328125 -3.375l1.828125 0l-3.171875 3.078125l3.484375 5.21875l-1.734375 0l-2.734375 -4.25l-1.0 0.953125l0 3.296875l-1.40625 0zm13.40625 -1.03125q-0.78125 0.671875 -1.5 0.953125q-0.71875 0.265625 -1.546875 0.265625q-1.375 0 -2.109375 -0.671875q-0.734375 -0.671875 -0.734375 -1.703125q0 -0.609375 0.28125 -1.109375q0.28125 -0.515625 0.71875 -0.8125q0.453125 -0.3125 1.015625 -0.46875q0.421875 -0.109375 1.25 -0.203125q1.703125 -0.203125 2.515625 -0.484375q0 -0.296875 0 -0.375q0 -0.859375 -0.390625 -1.203125q-0.546875 -0.484375 -1.609375 -0.484375q-0.984375 0 -1.46875 0.359375q-0.46875 0.34375 -0.6875 1.21875l-1.375 -0.1875q0.1875 -0.875 0.609375 -1.421875q0.4375 -0.546875 1.25 -0.828125q0.8125 -0.296875 1.875 -0.296875q1.0625 0 1.71875 0.25q0.671875 0.25 0.984375 0.625q0.3125 0.375 0.4375 0.953125q0.078125 0.359375 0.078125 1.296875l0 1.875q0 1.96875 0.078125 2.484375q0.09375 0.515625 0.359375 1.0l-1.46875 0q-0.21875 -0.4375 -0.28125 -1.03125zm-0.109375 -3.140625q-0.765625 0.3125 -2.296875 0.53125q-0.875 0.125 -1.234375 0.28125q-0.359375 0.15625 -0.5625 0.46875q-0.1875 0.296875 -0.1875 0.65625q0 0.5625 0.421875 0.9375q0.4375 0.375 1.25 0.375q0.8125 0 1.4375 -0.34375q0.640625 -0.359375 0.9375 -0.984375q0.234375 -0.46875 0.234375 -1.40625l0 -0.515625z" fill-rule="nonzero"/><g filter="url(#shadowFilter-p.14)"><use xlink:href="#p.14" transform="matrix(1.0 0.0 0.0 1.0 0.0 2.099737532808399)"/></g><defs><filter id="shadowFilter-p.14" filterUnits="userSpaceOnUse"><feGaussianBlur in="SourceAlpha" stdDeviation="1.399825" result="blur"/><feComponentTransfer in="blur" color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0" intercept="0.0"/><feFuncG type="linear" slope="0" intercept="0.0"/><feFuncB type="linear" slope="0" intercept="0.0"/><feFuncA type="linear" slope="0.3765" intercept="0"/></feComponentTransfer></filter></defs><g id="p.14"><defs><linearGradient id="p.15" gradientUnits="userSpaceOnUse" gradientTransform="matrix(6.324589362993755 0.0 0.0 6.324589362993755 0.0 0.0)" spreadMethod="pad" x1="31.975974490896387" y1="31.223180345397797" x2="31.975951795866376" y2="37.547769708350835"><stop offset="0.0" stop-color="#fff6db"/><stop offset="1.0" stop-color="#fad25c"/></linearGradient></defs><path fill="url(#p.15)" d="m202.23491 204.14102l0 0c0 -3.6819763 2.9848328 -6.666794 6.666794 -6.666794l106.82388 0c1.768158 0 3.4638672 0.7023926 4.714142 1.952652c1.2502747 1.2502747 1.9526672 2.9459991 1.9526672 4.714142l0 26.666397c0 3.6819763 -2.9848328 6.666809 -6.666809 6.666809l-106.82388 0c-3.681961 0 -6.666794 -2.9848328 -6.666794 -6.666809z" fill-rule="evenodd"/><path stroke="#a1a1a1" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m202.23491 204.14102l0 0c0 -3.6819763 2.9848328 -6.666794 6.666794 -6.666794l106.82388 0c1.768158 0 3.4638672 0.7023926 4.714142 1.952652c1.2502747 1.2502747 1.9526672 2.9459991 1.9526672 4.714142l0 26.666397c0 3.6819763 -2.9848328 6.666809 -6.666809 6.666809l-106.82388 0c-3.681961 0 -6.666794 -2.9848328 -6.666794 -6.666809z" fill-rule="evenodd"/><path fill="#000000" d="m238.8488 208.66235q0 1.21875 -0.296875 2.203125q-0.28125 0.984375 -0.859375 1.6875q-0.5625 0.6875 -1.4375 1.0625q-0.859375 0.375 -2.015625 0.375q-1.140625 0 -1.984375 -0.34375q-0.828125 -0.34375 -1.375 -0.984375q-0.53125 -0.65625 -0.796875 -1.609375q-0.265625 -0.96875 -0.265625 -2.21875q0 -1.203125 0.28125 -2.171875q0.296875 -0.984375 0.875 -1.65625q0.578125 -0.6875 1.4375 -1.0625q0.875 -0.375 2.03125 -0.375q1.109375 0 1.9375 0.34375q0.828125 0.328125 1.375 0.984375q0.5625 0.640625 0.828125 1.59375q0.265625 0.9375 0.265625 2.171875zm-1.40625 0.09375q0 -0.859375 -0.15625 -1.59375q-0.15625 -0.75 -0.515625 -1.28125q-0.34375 -0.546875 -0.9375 -0.84375q-0.59375 -0.3125 -1.46875 -0.3125q-0.875 0 -1.46875 0.328125q-0.59375 0.328125 -0.96875 0.875q-0.375 0.546875 -0.53125 1.28125q-0.15625 0.71875 -0.15625 1.53125q0 0.890625 0.140625 1.640625q0.15625 0.75 0.5 1.296875q0.359375 0.53125 0.9375 0.84375q0.59375 0.296875 1.484375 0.296875q0.890625 0 1.484375 -0.328125q0.609375 -0.328125 0.96875 -0.890625q0.375 -0.5625 0.53125 -1.296875q0.15625 -0.734375 0.15625 -1.546875zm9.859375 1.25q0 0.921875 -0.203125 1.65625q-0.203125 0.734375 -0.59375 1.25q-0.375 0.515625 -0.953125 0.796875q-0.5625 0.28125 -1.296875 0.28125q-0.3125 0 -0.578125 -0.0625q-0.265625 -0.0625 -0.53125 -0.203125q-0.25 -0.140625 -0.5 -0.34375q-0.25 -0.203125 -0.53125 -0.46875l0 3.515625q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.0625 0.03125 -0.1875 0.046875q-0.125 0.015625 -0.3125 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.078125 -0.03125 -0.109375 -0.078125q-0.015625 -0.046875 -0.015625 -0.109375l0 -9.828125q0 -0.0625 0.015625 -0.109375q0.03125 -0.046875 0.09375 -0.078125q0.078125 -0.03125 0.1875 -0.03125q0.109375 -0.015625 0.265625 -0.015625q0.15625 0 0.265625 0.015625q0.109375 0 0.171875 0.03125q0.078125 0.03125 0.09375 0.078125q0.03125 0.046875 0.03125 0.109375l0 0.953125q0.328125 -0.328125 0.625 -0.5625q0.296875 -0.25 0.59375 -0.40625q0.296875 -0.171875 0.609375 -0.25q0.328125 -0.078125 0.671875 -0.078125q0.765625 0 1.296875 0.296875q0.546875 0.296875 0.890625 0.8125q0.34375 0.515625 0.5 1.203125q0.15625 0.671875 0.15625 1.4375zm-1.359375 0.15625q0 -0.546875 -0.09375 -1.046875q-0.078125 -0.5 -0.28125 -0.890625q-0.1875 -0.390625 -0.53125 -0.625q-0.328125 -0.234375 -0.828125 -0.234375q-0.25 0 -0.5 0.078125q-0.234375 0.0625 -0.484375 0.234375q-0.25 0.15625 -0.53125 0.421875q-0.265625 0.25 -0.578125 0.640625l0 2.796875q0.53125 0.640625 1.0 0.984375q0.484375 0.34375 1.015625 0.34375q0.484375 0 0.828125 -0.234375q0.34375 -0.234375 0.5625 -0.625q0.21875 -0.390625 0.3125 -0.875q0.109375 -0.484375 0.109375 -0.96875zm9.296875 -0.34375q0 0.296875 -0.15625 0.4375q-0.15625 0.125 -0.34375 0.125l-4.609375 0q0 0.578125 0.109375 1.046875q0.125 0.46875 0.390625 0.8125q0.28125 0.328125 0.71875 0.515625q0.4375 0.171875 1.0625 0.171875q0.5 0 0.890625 -0.078125q0.390625 -0.078125 0.671875 -0.171875q0.296875 -0.109375 0.46875 -0.1875q0.1875 -0.09375 0.28125 -0.09375q0.0625 0 0.09375 0.03125q0.046875 0.03125 0.0625 0.09375q0.03125 0.046875 0.046875 0.140625q0.015625 0.09375 0.015625 0.234375q0 0.109375 -0.015625 0.1875q0 0.0625 -0.015625 0.125q-0.015625 0.0625 -0.046875 0.109375q-0.015625 0.046875 -0.0625 0.09375q-0.046875 0.03125 -0.265625 0.140625q-0.203125 0.09375 -0.546875 0.1875q-0.328125 0.09375 -0.765625 0.171875q-0.4375 0.078125 -0.9375 0.078125q-0.875 0 -1.53125 -0.25q-0.640625 -0.25 -1.09375 -0.71875q-0.4375 -0.484375 -0.671875 -1.203125q-0.21875 -0.71875 -0.21875 -1.671875q0 -0.90625 0.234375 -1.625q0.234375 -0.71875 0.671875 -1.21875q0.4375 -0.515625 1.0625 -0.78125q0.625 -0.265625 1.40625 -0.265625q0.828125 0 1.40625 0.265625q0.578125 0.265625 0.953125 0.71875q0.375 0.4375 0.546875 1.046875q0.1875 0.609375 0.1875 1.296875l0 0.234375zm-1.296875 -0.390625q0.015625 -1.015625 -0.453125 -1.59375q-0.46875 -0.578125 -1.40625 -0.578125q-0.46875 0 -0.828125 0.1875q-0.359375 0.171875 -0.609375 0.46875q-0.234375 0.296875 -0.375 0.703125q-0.125 0.390625 -0.140625 0.8125l3.8125 0zm9.304703 4.203125q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.0625 0.03125 -0.1875 0.046875q-0.125 0.015625 -0.3125 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.0625 -0.03125 -0.09375 -0.078125q-0.03125 -0.046875 -0.03125 -0.109375l0 -4.109375q0 -0.609375 -0.09375 -0.96875q-0.09375 -0.375 -0.28125 -0.640625q-0.171875 -0.265625 -0.46875 -0.40625q-0.28125 -0.140625 -0.65625 -0.140625q-0.484375 0 -0.96875 0.34375q-0.484375 0.34375 -1.015625 1.015625l0 4.90625q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.0625 0.03125 -0.1875 0.046875q-0.125 0.015625 -0.3125 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.078125 -0.03125 -0.109375 -0.078125q-0.015625 -0.046875 -0.015625 -0.109375l0 -7.03125q0 -0.0625 0.015625 -0.09375q0.03125 -0.046875 0.09375 -0.078125q0.078125 -0.046875 0.1875 -0.046875q0.109375 -0.015625 0.28125 -0.015625q0.171875 0 0.28125 0.015625q0.125 0 0.1875 0.046875q0.0625 0.03125 0.078125 0.078125q0.03125 0.03125 0.03125 0.09375l0 0.9375q0.59375 -0.671875 1.1875 -0.96875q0.59375 -0.3125 1.1875 -0.3125q0.703125 0 1.1875 0.234375q0.484375 0.234375 0.78125 0.640625q0.296875 0.390625 0.421875 0.9375q0.125 0.53125 0.125 1.28125l0 4.28125zm10.96875 -4.96875q0 1.21875 -0.296875 2.203125q-0.28125 0.984375 -0.859375 1.6875q-0.5625 0.6875 -1.4375 1.0625q-0.859375 0.375 -2.015625 0.375q-1.140625 0 -1.984375 -0.34375q-0.828125 -0.34375 -1.375 -0.984375q-0.53125 -0.65625 -0.796875 -1.609375q-0.265625 -0.96875 -0.265625 -2.21875q0 -1.203125 0.28125 -2.171875q0.296875 -0.984375 0.875 -1.65625q0.578125 -0.6875 1.4375 -1.0625q0.875 -0.375 2.03125 -0.375q1.109375 0 1.9375 0.34375q0.828125 0.328125 1.375 0.984375q0.5625 0.640625 0.828125 1.59375q0.265625 0.9375 0.265625 2.171875zm-1.40625 0.09375q0 -0.859375 -0.15625 -1.59375q-0.15625 -0.75 -0.515625 -1.28125q-0.34375 -0.546875 -0.9375 -0.84375q-0.59375 -0.3125 -1.46875 -0.3125q-0.875 0 -1.46875 0.328125q-0.59375 0.328125 -0.96875 0.875q-0.375 0.546875 -0.53125 1.28125q-0.15625 0.71875 -0.15625 1.53125q0 0.890625 0.140625 1.640625q0.15625 0.75 0.5 1.296875q0.359375 0.53125 0.9375 0.84375q0.59375 0.296875 1.484375 0.296875q0.890625 0 1.484375 -0.328125q0.609375 -0.328125 0.96875 -0.890625q0.375 -0.5625 0.53125 -1.296875q0.15625 -0.734375 0.15625 -1.546875zm11.171875 4.515625q0 0.15625 -0.046875 0.265625q-0.046875 0.109375 -0.140625 0.1875q-0.078125 0.0625 -0.1875 0.109375q-0.09375 0.03125 -0.1875 0.03125l-0.4375 0q-0.203125 0 -0.359375 -0.046875q-0.140625 -0.046875 -0.28125 -0.15625q-0.140625 -0.125 -0.28125 -0.3125q-0.125 -0.203125 -0.296875 -0.5l-3.1875 -5.75q-0.25 -0.453125 -0.5 -0.9375q-0.25 -0.484375 -0.46875 -0.953125l-0.015625 0q0.015625 0.5625 0.015625 1.15625q0.015625 0.578125 0.015625 1.15625l0 6.109375q0 0.046875 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.078125 0.03125 -0.203125 0.046875q-0.109375 0.015625 -0.296875 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.0625 -0.03125 -0.09375 -0.078125q-0.03125 -0.0625 -0.03125 -0.109375l0 -9.328125q0 -0.3125 0.171875 -0.4375q0.171875 -0.140625 0.375 -0.140625l0.640625 0q0.234375 0 0.375 0.046875q0.15625 0.03125 0.28125 0.125q0.125 0.078125 0.234375 0.25q0.109375 0.15625 0.25 0.390625l2.453125 4.4375q0.21875 0.40625 0.421875 0.796875q0.21875 0.390625 0.40625 0.765625q0.203125 0.375 0.390625 0.734375q0.203125 0.359375 0.390625 0.734375l0 0q-0.015625 -0.625 -0.015625 -1.28125q0 -0.671875 0 -1.296875l0 -5.484375q0 -0.046875 0.03125 -0.09375q0.03125 -0.046875 0.09375 -0.078125q0.078125 -0.046875 0.203125 -0.0625q0.125 -0.015625 0.3125 -0.015625q0.171875 0 0.296875 0.015625q0.125 0.015625 0.1875 0.0625q0.078125 0.03125 0.109375 0.078125q0.03125 0.046875 0.03125 0.09375l0 9.328125zm10.296875 -3.171875q0 0.921875 -0.28125 1.640625q-0.265625 0.71875 -0.765625 1.21875q-0.5 0.5 -1.21875 0.765625q-0.71875 0.265625 -1.625 0.265625q-0.84375 0 -1.53125 -0.25q-0.6875 -0.25 -1.1875 -0.71875q-0.484375 -0.46875 -0.75 -1.171875q-0.265625 -0.71875 -0.265625 -1.65625l0 -6.265625q0 -0.0625 0.03125 -0.109375q0.03125 -0.046875 0.109375 -0.078125q0.078125 -0.03125 0.203125 -0.046875q0.125 -0.015625 0.328125 -0.015625q0.1875 0 0.3125 0.015625q0.140625 0.015625 0.21875 0.046875q0.078125 0.03125 0.109375 0.078125q0.03125 0.046875 0.03125 0.109375l0 6.109375q0 0.703125 0.171875 1.234375q0.171875 0.515625 0.484375 0.859375q0.328125 0.34375 0.78125 0.53125q0.46875 0.171875 1.03125 0.171875q0.59375 0 1.046875 -0.171875q0.453125 -0.171875 0.765625 -0.515625q0.328125 -0.34375 0.484375 -0.84375q0.171875 -0.515625 0.171875 -1.203125l0 -6.171875q0 -0.0625 0.03125 -0.109375q0.03125 -0.046875 0.109375 -0.078125q0.078125 -0.03125 0.203125 -0.046875q0.140625 -0.015625 0.328125 -0.015625q0.1875 0 0.3125 0.015625q0.140625 0.015625 0.203125 0.046875q0.078125 0.03125 0.109375 0.078125q0.046875 0.046875 0.046875 0.109375l0 6.171875z" fill-rule="nonzero"/><path fill="#000000" d="m244.68083 232.34985q0.0625 0.171875 0.0625 0.28125q0 0.109375 -0.0625 0.171875q-0.0625 0.046875 -0.203125 0.0625q-0.140625 0.015625 -0.390625 0.015625q-0.234375 0 -0.390625 -0.015625q-0.140625 0 -0.21875 -0.03125q-0.0625 -0.03125 -0.109375 -0.078125q-0.03125 -0.046875 -0.0625 -0.125l-0.859375 -2.453125l-4.203125 0l-0.828125 2.421875q-0.03125 0.078125 -0.078125 0.125q-0.03125 0.046875 -0.109375 0.09375q-0.0625 0.03125 -0.203125 0.046875q-0.140625 0.015625 -0.359375 0.015625q-0.21875 0 -0.375 -0.015625q-0.140625 -0.015625 -0.203125 -0.078125q-0.046875 -0.0625 -0.046875 -0.15625q0 -0.109375 0.0625 -0.28125l3.390625 -9.390625q0.03125 -0.09375 0.078125 -0.140625q0.0625 -0.0625 0.15625 -0.09375q0.09375 -0.03125 0.25 -0.03125q0.15625 -0.015625 0.390625 -0.015625q0.25 0 0.40625 0.015625q0.171875 0 0.265625 0.03125q0.109375 0.03125 0.15625 0.09375q0.0625 0.0625 0.09375 0.140625l3.390625 9.390625zm-4.359375 -8.28125l0 0l-1.75 5.03125l3.515625 0l-1.765625 -5.03125zm11.9140625 8.5625q0 0.0625 -0.03125 0.109375q-0.015625 0.046875 -0.09375 0.078125q-0.0625 0.03125 -0.171875 0.046875q-0.109375 0.015625 -0.265625 0.015625q-0.15625 0 -0.265625 -0.015625q-0.109375 -0.015625 -0.1875 -0.046875q-0.0625 -0.03125 -0.09375 -0.078125q-0.03125 -0.046875 -0.03125 -0.109375l0 -0.921875q-0.5625 0.59375 -1.15625 0.9375q-0.59375 0.34375 -1.3125 0.34375q-0.765625 0 -1.3125 -0.296875q-0.546875 -0.3125 -0.890625 -0.828125q-0.34375 -0.515625 -0.5 -1.203125q-0.15625 -0.6875 -0.15625 -1.453125q0 -0.90625 0.1875 -1.640625q0.203125 -0.734375 0.578125 -1.25q0.390625 -0.515625 0.953125 -0.78125q0.578125 -0.28125 1.3125 -0.28125q0.625 0 1.125 0.265625q0.515625 0.265625 1.015625 0.796875l0 -4.09375q0 -0.046875 0.03125 -0.09375q0.03125 -0.0625 0.109375 -0.078125q0.078125 -0.03125 0.1875 -0.046875q0.125 -0.03125 0.3125 -0.03125q0.203125 0 0.328125 0.03125q0.125 0.015625 0.1875 0.046875q0.078125 0.015625 0.109375 0.078125q0.03125 0.046875 0.03125 0.09375l0 10.40625zm-1.296875 -4.9375q-0.515625 -0.65625 -1.015625 -0.984375q-0.484375 -0.34375 -1.015625 -0.34375q-0.484375 0 -0.828125 0.234375q-0.34375 0.234375 -0.5625 0.625q-0.21875 0.375 -0.3125 0.859375q-0.09375 0.484375 -0.09375 0.984375q0 0.53125 0.078125 1.046875q0.078125 0.5 0.28125 0.890625q0.203125 0.390625 0.53125 0.640625q0.34375 0.234375 0.859375 0.234375q0.25 0 0.484375 -0.0625q0.25 -0.078125 0.5 -0.234375q0.25 -0.171875 0.515625 -0.4375q0.28125 -0.265625 0.578125 -0.640625l0 -2.8125zm8.98439 4.953125q0 0.09375 -0.0625 0.140625q-0.0625 0.046875 -0.171875 0.0625q-0.109375 0.03125 -0.328125 0.03125q-0.203125 0 -0.328125 -0.03125q-0.109375 -0.015625 -0.171875 -0.0625q-0.046875 -0.046875 -0.046875 -0.140625l0 -0.703125q-0.46875 0.484375 -1.03125 0.765625q-0.5625 0.28125 -1.203125 0.28125q-0.546875 0 -1.0000153 -0.15625q-0.453125 -0.140625 -0.765625 -0.40625q-0.3125 -0.28125 -0.5 -0.671875q-0.171875 -0.40625 -0.171875 -0.921875q0 -0.59375 0.234375 -1.03125q0.25 -0.4375 0.703125 -0.71875q0.453125 -0.296875 1.1093903 -0.4375q0.65625 -0.140625 1.484375 -0.140625l0.96875 0l0 -0.546875q0 -0.40625 -0.09375 -0.71875q-0.078125 -0.3125 -0.28125 -0.515625q-0.1875 -0.21875 -0.5 -0.3125q-0.296875 -0.109375 -0.734375 -0.109375q-0.484375 0 -0.859375 0.109375q-0.37501526 0.109375 -0.67189026 0.25q-0.28125 0.140625 -0.46875 0.25q-0.1875 0.109375 -0.28125 0.109375q-0.0625 0 -0.109375 -0.03125q-0.046875 -0.03125 -0.09375 -0.09375q-0.03125 -0.0625 -0.046875 -0.15625q-0.015625 -0.09375 -0.015625 -0.21875q0 -0.1875 0.03125 -0.296875q0.03125 -0.125 0.125 -0.21875q0.109375 -0.109375 0.359375 -0.234375q0.265625 -0.140625 0.59375 -0.25q0.34375 -0.125 0.73439026 -0.1875q0.40625 -0.078125 0.8125 -0.078125q0.765625 0 1.296875 0.171875q0.53125 0.171875 0.859375 0.5q0.328125 0.328125 0.46875 0.828125q0.15625 0.484375 0.15625 1.140625l0 4.75zm-1.28125 -3.21875l-1.109375 0q-0.53125 0 -0.921875 0.09375q-0.390625 0.09375 -0.65626526 0.265625q-0.25 0.171875 -0.375 0.421875q-0.109375 0.25 -0.109375 0.5625q0 0.546875 0.34375 0.875q0.34376526 0.328125 0.96876526 0.328125q0.515625 0 0.9375 -0.25q0.4375 -0.265625 0.921875 -0.796875l0 -1.5zm10.1171875 -0.421875q0 0.921875 -0.203125 1.65625q-0.203125 0.734375 -0.59375 1.25q-0.375 0.515625 -0.953125 0.796875q-0.5625 0.28125 -1.296875 0.28125q-0.3125 0 -0.578125 -0.0625q-0.265625 -0.0625 -0.53125 -0.203125q-0.25 -0.140625 -0.5 -0.34375q-0.25 -0.203125 -0.53125 -0.46875l0 3.515625q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.0625 0.03125 -0.1875 0.046875q-0.125 0.015625 -0.3125 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.078125 -0.03125 -0.109375 -0.078125q-0.015625 -0.046875 -0.015625 -0.109375l0 -9.828125q0 -0.0625 0.015625 -0.109375q0.03125 -0.046875 0.09375 -0.078125q0.078125 -0.03125 0.1875 -0.03125q0.109375 -0.015625 0.265625 -0.015625q0.15625 0 0.265625 0.015625q0.109375 0 0.171875 0.03125q0.078125 0.03125 0.09375 0.078125q0.03125 0.046875 0.03125 0.109375l0 0.953125q0.328125 -0.328125 0.625 -0.5625q0.296875 -0.25 0.59375 -0.40625q0.296875 -0.171875 0.609375 -0.25q0.328125 -0.078125 0.671875 -0.078125q0.765625 0 1.296875 0.296875q0.546875 0.296875 0.890625 0.8125q0.34375 0.515625 0.5 1.203125q0.15625 0.671875 0.15625 1.4375zm-1.359375 0.15625q0 -0.546875 -0.09375 -1.046875q-0.078125 -0.5 -0.28125 -0.890625q-0.1875 -0.390625 -0.53125 -0.625q-0.328125 -0.234375 -0.828125 -0.234375q-0.25 0 -0.5 0.078125q-0.234375 0.0625 -0.484375 0.234375q-0.25 0.15625 -0.53125 0.421875q-0.265625 0.25 -0.578125 0.640625l0 2.796875q0.53125 0.640625 1.0 0.984375q0.484375 0.34375 1.015625 0.34375q0.484375 0 0.828125 -0.234375q0.34375 -0.234375 0.5625 -0.625q0.21875 -0.390625 0.3125 -0.875q0.109375 -0.484375 0.109375 -0.96875zm6.953125 2.953125q0 0.234375 -0.03125 0.375q-0.03125 0.125 -0.09375 0.1875q-0.0625 0.0625 -0.1875 0.125q-0.125 0.046875 -0.296875 0.078125q-0.15625 0.046875 -0.34375 0.0625q-0.171875 0.03125 -0.34375 0.03125q-0.546875 0 -0.9375 -0.140625q-0.390625 -0.15625 -0.640625 -0.453125q-0.25 -0.296875 -0.375 -0.734375q-0.109375 -0.453125 -0.109375 -1.0625l0 -4.109375l-0.984375 0q-0.109375 0 -0.1875 -0.125q-0.0625 -0.125 -0.0625 -0.40625q0 -0.15625 0.015625 -0.25q0.015625 -0.109375 0.046875 -0.171875q0.03125 -0.0625 0.078125 -0.09375q0.0625 -0.03125 0.125 -0.03125l0.96875 0l0 -1.671875q0 -0.046875 0.03125 -0.09375q0.03125 -0.046875 0.09375 -0.078125q0.078125 -0.046875 0.203125 -0.0625q0.125 -0.015625 0.3125 -0.015625q0.203125 0 0.328125 0.015625q0.125 0.015625 0.1875 0.0625q0.078125 0.03125 0.109375 0.078125q0.03125 0.046875 0.03125 0.09375l0 1.671875l1.796875 0q0.0625 0 0.109375 0.03125q0.046875 0.03125 0.078125 0.09375q0.046875 0.0625 0.0625 0.171875q0.015625 0.09375 0.015625 0.25q0 0.28125 -0.078125 0.40625q-0.0625 0.125 -0.1875 0.125l-1.796875 0l0 3.921875q0 0.71875 0.203125 1.09375q0.21875 0.375 0.78125 0.375q0.171875 0 0.3125 -0.03125q0.140625 -0.046875 0.25 -0.078125q0.109375 -0.046875 0.1875 -0.078125q0.078125 -0.03125 0.140625 -0.03125q0.046875 0 0.078125 0.015625q0.03125 0.015625 0.046875 0.078125q0.03125 0.046875 0.046875 0.140625q0.015625 0.09375 0.015625 0.234375zm8.234375 -3.078125q0 0.859375 -0.234375 1.59375q-0.21875 0.71875 -0.671875 1.25q-0.4375 0.515625 -1.125 0.8125q-0.671875 0.296875 -1.5625 0.296875q-0.859375 0 -1.515625 -0.265625q-0.640625 -0.265625 -1.078125 -0.75q-0.421875 -0.5 -0.640625 -1.203125q-0.203125 -0.703125 -0.203125 -1.59375q0 -0.859375 0.21875 -1.578125q0.234375 -0.71875 0.671875 -1.234375q0.453125 -0.53125 1.125 -0.8125q0.671875 -0.296875 1.578125 -0.296875q0.859375 0 1.5 0.265625q0.65625 0.25 1.078125 0.75q0.4375 0.484375 0.640625 1.1875q0.21875 0.703125 0.21875 1.578125zm-1.359375 0.09375q0 -0.578125 -0.109375 -1.078125q-0.09375 -0.515625 -0.34375 -0.890625q-0.234375 -0.390625 -0.65625 -0.609375q-0.40625 -0.21875 -1.03125 -0.21875q-0.5625 0 -0.984375 0.203125q-0.40625 0.203125 -0.671875 0.578125q-0.265625 0.359375 -0.390625 0.875q-0.125 0.5 -0.125 1.109375q0 0.578125 0.09375 1.09375q0.109375 0.5 0.359375 0.875q0.25 0.375 0.65625 0.609375q0.421875 0.21875 1.03125 0.21875q0.5625 0 0.96875 -0.203125q0.421875 -0.203125 0.6875 -0.5625q0.265625 -0.375 0.390625 -0.875q0.125 -0.515625 0.125 -1.125zm7.375 -3.0625q0 0.171875 -0.015625 0.296875q0 0.109375 -0.03125 0.171875q-0.015625 0.0625 -0.0625 0.109375q-0.03125 0.03125 -0.09375 0.03125q-0.0625 0 -0.15625 -0.03125q-0.078125 -0.046875 -0.203125 -0.078125q-0.109375 -0.03125 -0.25 -0.0625q-0.140625 -0.03125 -0.296875 -0.03125q-0.203125 0 -0.390625 0.078125q-0.1875 0.078125 -0.390625 0.265625q-0.203125 0.171875 -0.4375 0.46875q-0.21875 0.296875 -0.5 0.71875l0 4.625q0 0.0625 -0.03125 0.109375q-0.03125 0.046875 -0.109375 0.078125q-0.0625 0.03125 -0.1875 0.046875q-0.125 0.015625 -0.3125 0.015625q-0.1875 0 -0.3125 -0.015625q-0.125 -0.015625 -0.203125 -0.046875q-0.078125 -0.03125 -0.109375 -0.078125q-0.015625 -0.046875 -0.015625 -0.109375l0 -7.03125q0 -0.0625 0.015625 -0.09375q0.03125 -0.046875 0.09375 -0.078125q0.078125 -0.046875 0.1875 -0.046875q0.109375 -0.015625 0.28125 -0.015625q0.171875 0 0.28125 0.015625q0.125 0 0.1875 0.046875q0.0625 0.03125 0.078125 0.078125q0.03125 0.03125 0.03125 0.09375l0 1.03125q0.296875 -0.421875 0.546875 -0.6875q0.25 -0.265625 0.46875 -0.421875q0.234375 -0.15625 0.453125 -0.203125q0.234375 -0.0625 0.453125 -0.0625q0.109375 0 0.234375 0.015625q0.125 0 0.265625 0.03125q0.140625 0.03125 0.25 0.078125q0.125 0.03125 0.171875 0.078125q0.046875 0.03125 0.0625 0.078125q0.015625 0.03125 0.015625 0.09375q0.015625 0.046875 0.015625 0.15625q0.015625 0.09375 0.015625 0.28125z" fill-rule="nonzero"/></g><path fill="#ffffff" d="m306.42126 283.8785l0 0c0 -2.765808 2.2421265 -5.007965 5.007965 -5.007965l78.45648 0c1.3282166 0 2.6020203 0.5276184 3.5411987 1.4667969c0.93917847 0.93917847 1.4667969 2.2129822 1.4667969 3.5411682l0 20.031311c0 2.7658386 -2.242157 5.007965 -5.0079956 5.007965l-78.45648 0c-2.7658386 0 -5.007965 -2.2421265 -5.007965 -5.007965z" fill-rule="evenodd"/><path stroke="#a5a5a5" stroke-width="2.6666666666666665" stroke-linejoin="round" stroke-linecap="butt" d="m306.42126 283.8785l0 0c0 -2.765808 2.2421265 -5.007965 5.007965 -5.007965l78.45648 0c1.3282166 0 2.6020203 0.5276184 3.5411987 1.4667969c0.93917847 0.93917847 1.4667969 2.2129822 1.4667969 3.5411682l0 20.031311c0 2.7658386 -2.242157 5.007965 -5.0079956 5.007965l-78.45648 0c-2.7658386 0 -5.007965 -2.2421265 -5.007965 -5.007965z" fill-rule="evenodd"/><path fill="#000000" d="m343.72278 294.62305q0 1.46875 -0.34375 2.65625q-0.34375 1.171875 -1.03125 2.0q-0.6875 0.828125 -1.734375 1.28125q-1.046875 0.4375 -2.421875 0.4375q-1.375 0 -2.375 -0.40625q-1.0 -0.40625 -1.65625 -1.171875q-0.640625 -0.78125 -0.96875 -1.9375q-0.3125 -1.15625 -0.3125 -2.65625q0 -1.421875 0.34375 -2.59375q0.359375 -1.171875 1.046875 -1.984375q0.6875 -0.828125 1.734375 -1.265625q1.046875 -0.453125 2.421875 -0.453125q1.34375 0 2.328125 0.40625q1.0 0.390625 1.65625 1.171875q0.671875 0.765625 0.984375 1.90625q0.328125 1.140625 0.328125 2.609375zm-1.6875 0.109375q0 -1.03125 -0.1875 -1.90625q-0.1875 -0.890625 -0.609375 -1.53125q-0.421875 -0.65625 -1.140625 -1.015625q-0.71875 -0.375 -1.765625 -0.375q-1.046875 0 -1.765625 0.390625q-0.703125 0.390625 -1.15625 1.046875q-0.4375 0.65625 -0.640625 1.53125q-0.1875 0.875 -0.1875 1.84375q0 1.0625 0.171875 1.96875q0.1875 0.90625 0.609375 1.5625q0.421875 0.640625 1.125 1.0q0.71875 0.359375 1.78125 0.359375q1.0625 0 1.78125 -0.390625q0.71875 -0.390625 1.15625 -1.0625q0.453125 -0.671875 0.640625 -1.546875q0.1875 -0.890625 0.1875 -1.875zm13.407349 5.421875q0 0.1875 -0.0625 0.328125q-0.0625 0.125 -0.171875 0.21875q-0.09375 0.078125 -0.21875 0.125q-0.109375 0.03125 -0.234375 0.03125l-0.515625 0q-0.25 0 -0.4375 -0.046875q-0.171875 -0.0625 -0.34375 -0.1875q-0.15625 -0.140625 -0.328125 -0.375q-0.15625 -0.234375 -0.359375 -0.609375l-3.8125 -6.890625q-0.3125 -0.53125 -0.625 -1.109375q-0.296875 -0.59375 -0.546875 -1.140625l-0.03125 0q0.03125 0.671875 0.03125 1.375q0.015625 0.703125 0.015625 1.390625l0 7.3125q0 0.078125 -0.046875 0.140625q-0.03125 0.046875 -0.125 0.09375q-0.078125 0.03125 -0.234375 0.046875q-0.140625 0.03125 -0.359375 0.03125q-0.234375 0 -0.375 -0.03125q-0.140625 -0.015625 -0.234375 -0.046875q-0.078125 -0.046875 -0.125 -0.09375q-0.03125 -0.0625 -0.03125 -0.140625l0 -11.1875q0 -0.375 0.203125 -0.53125q0.21875 -0.15625 0.453125 -0.15625l0.765625 0q0.28125 0 0.453125 0.046875q0.1875 0.046875 0.328125 0.15625q0.15625 0.109375 0.28125 0.296875q0.140625 0.1875 0.296875 0.484375l2.9375 5.328125q0.28125 0.484375 0.53125 0.953125q0.25 0.453125 0.484375 0.90625q0.234375 0.453125 0.46875 0.890625q0.234375 0.4375 0.453125 0.875l0.015625 0q-0.03125 -0.75 -0.03125 -1.546875q0 -0.796875 0 -1.546875l0 -6.578125q0 -0.0625 0.03125 -0.109375q0.046875 -0.0625 0.125 -0.09375q0.09375 -0.046875 0.234375 -0.0625q0.15625 -0.03125 0.390625 -0.03125q0.203125 0 0.34375 0.03125q0.15625 0.015625 0.234375 0.0625q0.09375 0.03125 0.125 0.09375q0.046875 0.046875 0.046875 0.109375l0 11.1875zm12.338806 -3.8125q0 1.109375 -0.328125 1.984375q-0.328125 0.859375 -0.9375 1.46875q-0.59375 0.59375 -1.453125 0.90625q-0.859375 0.296875 -1.953125 0.296875q-1.0 0 -1.828125 -0.28125q-0.828125 -0.296875 -1.421875 -0.859375q-0.578125 -0.5625 -0.90625 -1.40625q-0.3125 -0.859375 -0.3125 -1.984375l0 -7.515625q0 -0.078125 0.03125 -0.125q0.046875 -0.0625 0.140625 -0.09375q0.09375 -0.03125 0.234375 -0.046875q0.15625 -0.03125 0.40625 -0.03125q0.21875 0 0.375 0.03125q0.15625 0.015625 0.25 0.046875q0.09375 0.03125 0.125 0.09375q0.03125 0.046875 0.03125 0.125l0 7.328125q0 0.84375 0.203125 1.46875q0.21875 0.625 0.609375 1.046875q0.390625 0.40625 0.9375 0.625q0.546875 0.203125 1.234375 0.203125q0.703125 0 1.25 -0.203125q0.546875 -0.203125 0.921875 -0.609375q0.375 -0.421875 0.578125 -1.03125q0.203125 -0.609375 0.203125 -1.421875l0 -7.40625q0 -0.078125 0.03125 -0.125q0.046875 -0.0625 0.140625 -0.09375q0.09375 -0.03125 0.25 -0.046875q0.15625 -0.03125 0.390625 -0.03125q0.21875 0 0.375 0.03125q0.15625 0.015625 0.234375 0.046875q0.09375 0.03125 0.140625 0.09375q0.046875 0.046875 0.046875 0.125l0 7.390625z" fill-rule="nonzero"/><path fill="#ffffff" d="m304.93832 362.81027l0 0c0 -2.765808 2.242157 -5.007965 5.007965 -5.007965l78.45651 0c1.328186 0 2.6019897 0.5276184 3.5411682 1.4667969c0.93917847 0.93917847 1.4667969 2.2129822 1.4667969 3.5411682l0 20.031311c0 2.765808 -2.242157 5.007965 -5.007965 5.007965l-78.45651 0c-2.765808 0 -5.007965 -2.242157 -5.007965 -5.007965z" fill-rule="evenodd"/><path stroke="#a5a5a5" stroke-width="2.6666666666666665" stroke-linejoin="round" stroke-linecap="butt" d="m304.93832 362.81027l0 0c0 -2.765808 2.242157 -5.007965 5.007965 -5.007965l78.45651 0c1.328186 0 2.6019897 0.5276184 3.5411682 1.4667969c0.93917847 0.93917847 1.4667969 2.2129822 1.4667969 3.5411682l0 20.031311c0 2.765808 -2.242157 5.007965 -5.007965 5.007965l-78.45651 0c-2.765808 0 -5.007965 -2.242157 -5.007965 -5.007965z" fill-rule="evenodd"/><path fill="#000000" d="m342.23984 373.5548q0 1.46875 -0.34375 2.65625q-0.34375 1.171875 -1.03125 2.0q-0.6875 0.828125 -1.734375 1.28125q-1.046875 0.4375 -2.421875 0.4375q-1.375 0 -2.375 -0.40625q-1.0 -0.40625 -1.65625 -1.171875q-0.640625 -0.78125 -0.96875 -1.9375q-0.3125 -1.15625 -0.3125 -2.65625q0 -1.421875 0.34375 -2.59375q0.359375 -1.171875 1.046875 -1.984375q0.6875 -0.828125 1.734375 -1.265625q1.046875 -0.453125 2.421875 -0.453125q1.34375 0 2.328125 0.40625q1.0 0.390625 1.65625 1.171875q0.671875 0.765625 0.984375 1.90625q0.328125 1.140625 0.328125 2.609375zm-1.6875 0.109375q0 -1.03125 -0.1875 -1.90625q-0.1875 -0.890625 -0.609375 -1.53125q-0.421875 -0.65625 -1.140625 -1.015625q-0.71875 -0.375 -1.765625 -0.375q-1.046875 0 -1.765625 0.390625q-0.703125 0.390625 -1.15625 1.046875q-0.4375 0.65625 -0.640625 1.53125q-0.1875 0.875 -0.1875 1.84375q0 1.0625 0.171875 1.96875q0.1875 0.90625 0.609375 1.5625q0.421875 0.640625 1.125 1.0q0.71875 0.359375 1.78125 0.359375q1.0625 0 1.78125 -0.390625q0.71875 -0.390625 1.15625 -1.0625q0.453125 -0.671875 0.640625 -1.546875q0.1875 -0.890625 0.1875 -1.875zm13.407349 5.421875q0 0.1875 -0.0625 0.328125q-0.0625 0.125 -0.171875 0.21875q-0.09375 0.078125 -0.21875 0.125q-0.109375 0.03125 -0.234375 0.03125l-0.515625 0q-0.25 0 -0.4375 -0.046875q-0.171875 -0.0625 -0.34375 -0.1875q-0.15625 -0.140625 -0.328125 -0.375q-0.15625 -0.234375 -0.359375 -0.609375l-3.8125 -6.890625q-0.3125 -0.53125 -0.625 -1.109375q-0.296875 -0.59375 -0.546875 -1.140625l-0.03125 0q0.03125 0.671875 0.03125 1.375q0.015625 0.703125 0.015625 1.390625l0 7.3125q0 0.078125 -0.046875 0.140625q-0.03125 0.046875 -0.125 0.09375q-0.078125 0.03125 -0.234375 0.046875q-0.140625 0.03125 -0.359375 0.03125q-0.234375 0 -0.375 -0.03125q-0.140625 -0.015625 -0.234375 -0.046875q-0.078125 -0.046875 -0.125 -0.09375q-0.03125 -0.0625 -0.03125 -0.140625l0 -11.1875q0 -0.375 0.203125 -0.53125q0.21875 -0.15625 0.453125 -0.15625l0.765625 0q0.28125 0 0.453125 0.046875q0.1875 0.046875 0.328125 0.15625q0.15625 0.109375 0.28125 0.296875q0.140625 0.1875 0.296875 0.484375l2.9375 5.328125q0.28125 0.484375 0.53125 0.953125q0.25 0.453125 0.484375 0.90625q0.234375 0.453125 0.46875 0.890625q0.234375 0.4375 0.453125 0.875l0.015625 0q-0.03125 -0.75 -0.03125 -1.546875q0 -0.796875 0 -1.546875l0 -6.578125q0 -0.0625 0.03125 -0.109375q0.046875 -0.0625 0.125 -0.09375q0.09375 -0.046875 0.234375 -0.0625q0.15625 -0.03125 0.390625 -0.03125q0.203125 0 0.34375 0.03125q0.15625 0.015625 0.234375 0.0625q0.09375 0.03125 0.125 0.09375q0.046875 0.046875 0.046875 0.109375l0 11.1875zm12.338806 -3.8125q0 1.109375 -0.328125 1.984375q-0.328125 0.859375 -0.9375 1.46875q-0.59375 0.59375 -1.453125 0.90625q-0.859375 0.296875 -1.953125 0.296875q-1.0 0 -1.828125 -0.28125q-0.828125 -0.296875 -1.421875 -0.859375q-0.578125 -0.5625 -0.90625 -1.40625q-0.3125 -0.859375 -0.3125 -1.984375l0 -7.515625q0 -0.078125 0.03125 -0.125q0.046875 -0.0625 0.140625 -0.09375q0.09375 -0.03125 0.234375 -0.046875q0.15625 -0.03125 0.40625 -0.03125q0.21875 0 0.375 0.03125q0.15625 0.015625 0.25 0.046875q0.09375 0.03125 0.125 0.09375q0.03125 0.046875 0.03125 0.125l0 7.328125q0 0.84375 0.203125 1.46875q0.21875 0.625 0.609375 1.046875q0.390625 0.40625 0.9375 0.625q0.546875 0.203125 1.234375 0.203125q0.703125 0 1.25 -0.203125q0.546875 -0.203125 0.921875 -0.609375q0.375 -0.421875 0.578125 -1.03125q0.203125 -0.609375 0.203125 -1.421875l0 -7.40625q0 -0.078125 0.03125 -0.125q0.046875 -0.0625 0.140625 -0.09375q0.09375 -0.03125 0.25 -0.046875q0.15625 -0.03125 0.390625 -0.03125q0.21875 0 0.375 0.03125q0.15625 0.015625 0.234375 0.046875q0.09375 0.03125 0.140625 0.09375q0.046875 0.046875 0.046875 0.125l0 7.390625z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m222.38084 334.00873l32.472443 0.18896484" fill-rule="evenodd"/><path stroke="#004b7d" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m222.38084 334.00873l32.472443 0.18896484" fill-rule="evenodd"/><path fill="#00ccff" d="m252.87007 334.67633l0 0c0 -2.72229 1.5511475 -4.929138 3.4645844 -4.929138l0 0c0.91885376 0 1.8000793 0.5193176 2.4497986 1.4436951c0.64974976 0.92440796 1.0147705 2.1781616 1.0147705 3.485443l0 0c0 2.72229 -1.5511475 4.929138 -3.464569 4.929138l0 0c-1.9134369 0 -3.4645844 -2.2068481 -3.4645844 -4.929138z" fill-rule="evenodd"/><path stroke="#004b7d" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m252.87007 334.67633l0 0c0 -2.72229 1.5511475 -4.929138 3.4645844 -4.929138l0 0c0.91885376 0 1.8000793 0.5193176 2.4497986 1.4436951c0.64974976 0.92440796 1.0147705 2.1781616 1.0147705 3.485443l0 0c0 2.72229 -1.5511475 4.929138 -3.464569 4.929138l0 0c-1.9134369 0 -3.4645844 -2.2068481 -3.4645844 -4.929138z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m258.78445 331.1909l47.62207 -37.29132" fill-rule="evenodd"/><path stroke="#004b7d" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m258.78445 331.1909l47.62207 -37.29132" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m258.78445 338.16174l46.141754 34.677185" fill-rule="evenodd"/><path stroke="#004b7d" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m258.78445 338.16174l46.141754 34.677185" fill-rule="evenodd"/><path fill="#a4c2f4" d="m141.52887 29.23156l0 0c0 -3.2499924 2.6346436 -5.884632 5.8846283 -5.884632l133.2071 0c1.5606995 0 3.057495 0.6199875 4.161072 1.7235699c1.1035767 1.1035824 1.7235718 2.6003609 1.7235718 4.1610622l0 23.537823c0 3.2499924 -2.6346436 5.884632 -5.8846436 5.884632l-133.2071 0c-3.2499847 0 -5.8846283 -2.6346397 -5.8846283 -5.884632z" fill-rule="evenodd"/><path stroke="#004b7d" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m141.52887 29.23156l0 0c0 -3.2499924 2.6346436 -5.884632 5.8846283 -5.884632l133.2071 0c1.5606995 0 3.057495 0.6199875 4.161072 1.7235699c1.1035767 1.1035824 1.7235718 2.6003609 1.7235718 4.1610622l0 23.537823c0 3.2499924 -2.6346436 5.884632 -5.8846436 5.884632l-133.2071 0c-3.2499847 0 -5.8846283 -2.6346397 -5.8846283 -5.884632z" fill-rule="evenodd"/><path fill="#000000" d="m184.56784 41.282345q0 -2.859375 1.53125 -4.46875q1.53125 -1.609375 3.953125 -1.609375q1.578125 0 2.84375 0.765625q1.28125 0.75 1.953125 2.109375q0.671875 1.34375 0.671875 3.0625q0 1.75 -0.703125 3.125q-0.703125 1.375 -2.0 2.09375q-1.28125 0.703125 -2.78125 0.703125q-1.609375 0 -2.890625 -0.78125q-1.265625 -0.796875 -1.921875 -2.140625q-0.65625 -1.359375 -0.65625 -2.859375zm1.5625 0.015625q0 2.078125 1.109375 3.265625q1.109375 1.1875 2.796875 1.1875q1.703125 0 2.8125 -1.203125q1.109375 -1.203125 1.109375 -3.40625q0 -1.40625 -0.484375 -2.4375q-0.46875 -1.046875 -1.375 -1.625q-0.90625 -0.578125 -2.046875 -0.578125q-1.609375 0 -2.765625 1.109375q-1.15625 1.109375 -1.15625 3.6875zm11.3203125 5.5625l0 -11.453125l1.5625 0l6.015625 8.984375l0 -8.984375l1.453125 0l0 11.453125l-1.5625 0l-6.015625 -9.0l0 9.0l-1.453125 0zm11.1171875 -5.578125q0 -2.859375 1.53125 -4.46875q1.53125 -1.609375 3.953125 -1.609375q1.578125 0 2.84375 0.765625q1.28125 0.75 1.953125 2.109375q0.671875 1.34375 0.671875 3.0625q0 1.75 -0.703125 3.125q-0.703125 1.375 -2.0 2.09375q-1.28125 0.703125 -2.78125 0.703125q-1.609375 0 -2.890625 -0.78125q-1.265625 -0.796875 -1.921875 -2.140625q-0.65625 -1.359375 -0.65625 -2.859375zm1.5625 0.015625q0 2.078125 1.109375 3.265625q1.109375 1.1875 2.796875 1.1875q1.703125 0 2.8125 -1.203125q1.109375 -1.203125 1.109375 -3.40625q0 -1.40625 -0.484375 -2.4375q-0.46875 -1.046875 -1.375 -1.625q-0.90625 -0.578125 -2.046875 -0.578125q-1.609375 0 -2.765625 1.109375q-1.15625 1.109375 -1.15625 3.6875zm10.8203125 1.875l1.4375 -0.125q0.09375 0.859375 0.46875 1.421875q0.375 0.546875 1.15625 0.890625q0.78125 0.328125 1.75 0.328125q0.875 0 1.53125 -0.25q0.671875 -0.265625 0.984375 -0.703125q0.328125 -0.453125 0.328125 -0.984375q0 -0.546875 -0.3125 -0.9375q-0.3125 -0.40625 -1.03125 -0.6875q-0.453125 -0.171875 -2.03125 -0.546875q-1.578125 -0.390625 -2.21875 -0.71875q-0.8125 -0.4375 -1.21875 -1.0625q-0.40625 -0.640625 -0.40625 -1.4375q0 -0.859375 0.484375 -1.609375q0.5 -0.765625 1.4375 -1.15625q0.953125 -0.390625 2.109375 -0.390625q1.28125 0 2.25 0.421875q0.96875 0.40625 1.484375 1.203125q0.53125 0.796875 0.578125 1.796875l-1.453125 0.109375q-0.125 -1.078125 -0.796875 -1.625q-0.671875 -0.5625 -2.0 -0.5625q-1.375 0 -2.0 0.5q-0.625 0.5 -0.625 1.21875q0 0.609375 0.4375 1.015625q0.4375 0.390625 2.28125 0.8125q1.859375 0.421875 2.546875 0.734375q1.0 0.453125 1.46875 1.171875q0.484375 0.703125 0.484375 1.625q0 0.90625 -0.53125 1.71875q-0.515625 0.8125 -1.5 1.265625q-0.984375 0.453125 -2.203125 0.453125q-1.5625 0 -2.609375 -0.453125q-1.046875 -0.46875 -1.65625 -1.375q-0.59375 -0.90625 -0.625 -2.0625zm20.367188 3.6875l-1.40625 0l0 -8.96875q-0.515625 0.484375 -1.34375 0.96875q-0.8125 0.484375 -1.46875 0.734375l0 -1.359375q1.171875 -0.5625 2.046875 -1.34375q0.890625 -0.796875 1.265625 -1.53125l0.90625 0l0 11.5z" fill-rule="nonzero"/><path fill="#a4c2f4" d="m155.45013 23.177755l0 0c0 -3.2499924 2.6346436 -5.884632 5.8846283 -5.884632l133.2071 0c1.5606995 0 3.057495 0.6199856 4.161072 1.723568c1.1035767 1.1035824 1.7235718 2.6003628 1.7235718 4.161064l0 23.53782c0 3.2499924 -2.6346436 5.884632 -5.8846436 5.884632l-133.2071 0c-3.2499847 0 -5.8846283 -2.6346397 -5.8846283 -5.884632z" fill-rule="evenodd"/><path stroke="#004b7d" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m155.45013 23.177755l0 0c0 -3.2499924 2.6346436 -5.884632 5.8846283 -5.884632l133.2071 0c1.5606995 0 3.057495 0.6199856 4.161072 1.723568c1.1035767 1.1035824 1.7235718 2.6003628 1.7235718 4.161064l0 23.53782c0 3.2499924 -2.6346436 5.884632 -5.8846436 5.884632l-133.2071 0c-3.2499847 0 -5.8846283 -2.6346397 -5.8846283 -5.884632z" fill-rule="evenodd"/><path fill="#000000" d="m205.16098 35.228542q0 -2.859375 1.53125 -4.468752q1.53125 -1.609375 3.953125 -1.609375q1.578125 0 2.84375 0.765625q1.28125 0.75 1.953125 2.109377q0.671875 1.34375 0.671875 3.0625q0 1.75 -0.703125 3.125q-0.703125 1.375 -2.0 2.09375q-1.28125 0.703125 -2.78125 0.703125q-1.609375 0 -2.890625 -0.78125q-1.265625 -0.796875 -1.921875 -2.140625q-0.65625 -1.359375 -0.65625 -2.859375zm1.5625 0.015625q0 2.078125 1.109375 3.265625q1.109375 1.1875 2.796875 1.1875q1.703125 0 2.8125 -1.203125q1.109375 -1.203125 1.109375 -3.40625q0 -1.40625 -0.484375 -2.4375q-0.46875 -1.0468769 -1.375 -1.6250019q-0.90625 -0.578125 -2.046875 -0.578125q-1.609375 0 -2.765625 1.109375q-1.15625 1.1093769 -1.15625 3.687502zm11.3203125 5.5625l0 -11.453127l1.5625 0l6.015625 8.984377l0 -8.984377l1.453125 0l0 11.453127l-1.5625 0l-6.015625 -9.000002l0 9.000002l-1.453125 0zm11.1171875 -5.578125q0 -2.859375 1.53125 -4.468752q1.53125 -1.609375 3.953125 -1.609375q1.578125 0 2.84375 0.765625q1.28125 0.75 1.953125 2.109377q0.671875 1.34375 0.671875 3.0625q0 1.75 -0.703125 3.125q-0.703125 1.375 -2.0 2.09375q-1.28125 0.703125 -2.78125 0.703125q-1.609375 0 -2.890625 -0.78125q-1.265625 -0.796875 -1.921875 -2.140625q-0.65625 -1.359375 -0.65625 -2.859375zm1.5625 0.015625q0 2.078125 1.109375 3.265625q1.109375 1.1875 2.796875 1.1875q1.703125 0 2.8125 -1.203125q1.109375 -1.203125 1.109375 -3.40625q0 -1.40625 -0.484375 -2.4375q-0.46875 -1.0468769 -1.375 -1.6250019q-0.90625 -0.578125 -2.046875 -0.578125q-1.609375 0 -2.765625 1.109375q-1.15625 1.1093769 -1.15625 3.687502zm10.8203125 1.875l1.4375 -0.125q0.09375 0.859375 0.46875 1.421875q0.375 0.546875 1.15625 0.890625q0.78125 0.328125 1.75 0.328125q0.875 0 1.53125 -0.25q0.671875 -0.265625 0.984375 -0.703125q0.328125 -0.453125 0.328125 -0.984375q0 -0.546875 -0.3125 -0.9375q-0.3125 -0.40625 -1.03125 -0.6875q-0.453125 -0.171875 -2.03125 -0.546875q-1.578125 -0.390625 -2.21875 -0.71875q-0.8125 -0.4375 -1.21875 -1.0625q-0.40625 -0.640625 -0.40625 -1.4375q0 -0.8593769 0.484375 -1.6093769q0.5 -0.765625 1.4375 -1.15625q0.953125 -0.390625 2.109375 -0.390625q1.28125 0 2.25 0.421875q0.96875 0.40625 1.484375 1.203125q0.53125 0.796875 0.578125 1.7968769l-1.453125 0.109375q-0.125 -1.0781269 -0.796875 -1.6250019q-0.671875 -0.5625 -2.0 -0.5625q-1.375 0 -2.0 0.5q-0.625 0.5 -0.625 1.2187519q0 0.609375 0.4375 1.015625q0.4375 0.390625 2.28125 0.8125q1.859375 0.421875 2.546875 0.734375q1.0 0.453125 1.46875 1.171875q0.484375 0.703125 0.484375 1.625q0 0.90625 -0.53125 1.71875q-0.515625 0.8125 -1.5 1.265625q-0.984375 0.453125 -2.203125 0.453125q-1.5625 0 -2.609375 -0.453125q-1.046875 -0.46875 -1.65625 -1.375q-0.59375 -0.90625 -0.625 -2.0625z" fill-rule="nonzero"/><g filter="url(#shadowFilter-p.16)"><use xlink:href="#p.16" transform="matrix(1.0 0.0 0.0 1.0 0.0 2.099737532808399)"/></g><defs><filter id="shadowFilter-p.16" filterUnits="userSpaceOnUse"><feGaussianBlur in="SourceAlpha" stdDeviation="1.399825" result="blur"/><feComponentTransfer in="blur" color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0" intercept="0.0"/><feFuncG type="linear" slope="0" intercept="0.0"/><feFuncB type="linear" slope="0" intercept="0.0"/><feFuncA type="linear" slope="0.3765" intercept="0"/></feComponentTransfer></filter></defs><g id="p.16"><path fill="#000000" fill-opacity="0.0" d="m214.01706 64.489975l0 27.086609" fill-rule="evenodd"/><path stroke="#7f7f7f" stroke-width="1.3333333333333333" stroke-linejoin="round" stroke-linecap="butt" stroke-dasharray="5.333333333333333,4.0" d="m214.01706 69.059425l0 17.947708" fill-rule="evenodd"/><path fill="#7f7f7f" stroke="#7f7f7f" stroke-width="1.3333333333333333" stroke-linecap="butt" d="m214.01706 69.059425l1.4994507 1.499443l-1.4994507 -4.11969l-1.4994507 4.11969z" fill-rule="evenodd"/><path fill="#7f7f7f" stroke="#7f7f7f" stroke-width="1.3333333333333333" stroke-linecap="butt" d="m214.01706 87.00714l-1.4994507 -1.4994507l1.4994507 4.1196976l1.4994507 -4.1196976z" fill-rule="evenodd"/></g><g filter="url(#shadowFilter-p.17)"><use xlink:href="#p.17" transform="matrix(1.0 0.0 0.0 1.0 0.0 2.099737532808399)"/></g><defs><filter id="shadowFilter-p.17" filterUnits="userSpaceOnUse"><feGaussianBlur in="SourceAlpha" stdDeviation="1.399825" result="blur"/><feComponentTransfer in="blur" color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0" intercept="0.0"/><feFuncG type="linear" slope="0" intercept="0.0"/><feFuncB type="linear" slope="0" intercept="0.0"/><feFuncA type="linear" slope="0.3765" intercept="0"/></feComponentTransfer></filter></defs><g id="p.17"><path fill="#000000" fill-opacity="0.0" d="m190.45276 64.489975l0 27.086609" fill-rule="evenodd"/><path stroke="#7f7f7f" stroke-width="1.3333333333333333" stroke-linejoin="round" stroke-linecap="butt" stroke-dasharray="5.333333333333333,4.0" d="m190.45276 69.059425l0 17.947708" fill-rule="evenodd"/><path fill="#7f7f7f" stroke="#7f7f7f" stroke-width="1.3333333333333333" stroke-linecap="butt" d="m190.45276 69.059425l1.4994354 1.499443l-1.4994354 -4.11969l-1.4994507 4.11969z" fill-rule="evenodd"/><path fill="#7f7f7f" stroke="#7f7f7f" stroke-width="1.3333333333333333" stroke-linecap="butt" d="m190.45276 87.00714l-1.4994507 -1.4994507l1.4994507 4.1196976l1.4994354 -4.1196976z" fill-rule="evenodd"/></g></g></svg>
\ No newline at end of file
diff --git a/_static/voltha_lab_setup.png b/_static/voltha_lab_setup.png
new file mode 100644
index 0000000..4ba9910
--- /dev/null
+++ b/_static/voltha_lab_setup.png
Binary files differ
diff --git a/_templates/meta_refresh.html b/_templates/meta_refresh.html
new file mode 100644
index 0000000..b940c76
--- /dev/null
+++ b/_templates/meta_refresh.html
@@ -0,0 +1,8 @@
+<!--
+SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
+SPDX-License-Identifier: Apache-2.0
+--!>
+<html><head>
+    <meta charset="UTF-8">
+    <meta http-equiv="refresh" content="0;url=master/index.html" />
+</head></html>
diff --git a/_templates/versions.html b/_templates/versions.html
new file mode 100644
index 0000000..8ed5e31
--- /dev/null
+++ b/_templates/versions.html
@@ -0,0 +1,31 @@
+<!--
+SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
+SPDX-License-Identifier: Apache-2.0
+--!>
+{%- if current_version %}
+<div class="rst-versions" data-toggle="rst-versions" role="note" aria-label="versions">
+  <span class="rst-current-version" data-toggle="rst-current-version">
+    <span class="fa fa-book"> Other Versions</span>
+    v: {{ current_version.name }}
+    <span class="fa fa-caret-down"></span>
+  </span>
+  <div class="rst-other-versions">
+    {%- if versions.tags %}
+    <dl>
+      <dt>Tags</dt>
+      {%- for item in versions.tags %}
+      <dd><a href="{{ item.url }}">{{ item.name }}</a></dd>
+      {%- endfor %}
+    </dl>
+    {%- endif %}
+    {%- if versions.branches %}
+    <dl>
+      <dt>Branches</dt>
+      {%- for item in versions.branches %}
+      <dd><a href="{{ item.url }}">{{ item.name }}</a></dd>
+      {%- endfor %}
+    </dl>
+    {%- endif %}
+  </div>
+</div>
+{%- endif %}
diff --git a/conf.py b/conf.py
index 04cb4b4..11d2c9f 100644
--- a/conf.py
+++ b/conf.py
@@ -16,14 +16,20 @@
 # import sys
 # sys.path.insert(0, os.path.abspath('.'))
 
+import os
+
+def get_version():
+    with open("VERSION") as f:
+        return f.read().strip()
+
 # -- Project information -----------------------------------------------------
 
 project = u'VOLTHA Docs'
-copyright = u'2019, VOLTHA Contributors'
+copyright = u'2019-2020, VOLTHA Contributors & Open Networking Foundation'
 author = u'VOLTHA Contributors'
 
 # The short X.Y version
-version = "2.2.0"
+version = get_version()
 
 # The full version, including alpha/beta/rc tags
 release = version
@@ -55,6 +61,7 @@
     'sphinxcontrib.rackdiag',
     'sphinxcontrib.seqdiag',
     'sphinxcontrib.spelling',
+    "sphinx_multiversion",
 #    'sphinxcontrib.golangdomain',
 #    'autoapi.extension',
 ]
@@ -74,8 +81,8 @@
 # Text files with lists of words that shouldn't fail the spellchecker:
 spelling_word_list_filename=['dict.txt', ]
 
-# SCVersioning prep target commands, run in each target directory
-scv_prep_commands = [
+# sphinx-multiversion prep, run in each versioned source directory
+prep_commands = [
     'ln -sf _root_/repos _target_/repos',
     'make prep',
 ]
@@ -108,13 +115,15 @@
         '.DS_Store',
         'Thumbs.db',
         '_build',
-        'doc_venv',
+        'venv_docs',
         'voltha-system-tests/vst_venv',
+        'voltha-go/BUILD.md',
         'cord-tester/venv_cord',
         'cord-tester/docs',
         'cord-tester/src',
         'cord-tester/README.md',
         'cord-tester/cord-robot/README.rst',
+        'openolt/agent/*',
         'repos',
         'requirements.txt',
         'bbsim/README.md',
@@ -132,11 +141,17 @@
 #
 html_theme = 'sphinx_rtd_theme'
 
+html_logo = '_static/voltha.svg'
+
+html_favicon = '_static/voltha-favicon-128.png'
+
 # Theme options are theme-specific and customize the look and feel of a theme
 # further.  For a list of options available for each theme, see the
 # documentation.
 #
-# html_theme_options = {}
+html_theme_options = {
+    'logo_only': True
+}
 
 # Add any paths that contain custom static files (such as style sheets) here,
 # relative to this directory. They are copied after the builtin static files,
@@ -154,6 +169,7 @@
 # html_sidebars = {}
 
 
+
 # -- Options for HTMLHelp output ---------------------------------------------
 
 # Output file base name for HTML help builder.
@@ -255,7 +271,9 @@
 # The link checker strips off .md from links and then complains
 linkcheck_ignore = [r'https://github.com/ciena/kind-voltha/blob/master/README',
                     r'https://github.com/opencord/voltctl/blob/master/LICENSE',
-                    r'https://github.com/ciena/kind-voltha#voltha-up-configuration-options']
+                    r'https://github.com/ciena/kind-voltha#voltha-up-configuration-options',
+                    r'https://www.sphinx-doc.org',
+                    ]
 
 # -- Configure recommonmark to use AutoStructify -----------------------------
 # Docs: https://recommonmark.readthedocs.io/en/latest/auto_structify.html
diff --git a/dict.txt b/dict.txt
index c4e3a6d..09e8bed 100644
--- a/dict.txt
+++ b/dict.txt
@@ -1,3 +1,4 @@
+Accton
 Apps
 Autocomplete
 Broadcom
@@ -18,6 +19,7 @@
 Quickstart
 README
 Sadis
+SemVer
 Ubuntu
 Username
 Voltha
@@ -35,6 +37,8 @@
 bbsim
 bbsimctl
 config
+crc
+cmake
 dep
 dhcp
 dhcpl
@@ -42,6 +46,7 @@
 eap
 eapol
 etcd
+etcdctl
 filesystem
 gRPC
 gerrit
@@ -49,17 +54,28 @@
 golang
 gz
 https
+igmp
+igmpproxy
 internet
+intf
 io
+jq
 kafka
+kafkaAddress
+kafkacat
+onuAlarms
 kubernetes
+kubectl
+libpcap
 lifecycle
 localhost
 lossofomcichannel
 lossofploam
 macports
+mcast
 md
 microservices
+netcfg
 ofagent
 olt
 online
@@ -79,17 +95,20 @@
 protobufs
 protoc
 protos
+pyvoltha
 quickstart
 reStructuredText
 repo
 repos
 rst
 rw
+rx
 sadis
 signaldegrade
 src
 symlink
 toolset
+tx
 vendored
 virtualenv
 virtualized
diff --git a/git_refs b/git_refs
index b315a0e..799887c 100644
--- a/git_refs
+++ b/git_refs
@@ -11,12 +11,14 @@
 
 _REPO NAME_             _DIR_    _REF_
 
-pyvoltha                /        master
 bbsim                   /        master
 cord-tester             /        master
+ofagent-go              /        master
+openolt                 /        master
+pyvoltha                /        master
+voltctl                 /        master
 voltha-go               /        master
 voltha-openolt-adapter  /        master
 voltha-openonu-adapter  /        master
 voltha-protos           /        master
 voltha-system-tests     /        master
-voltctl                 /        master
diff --git a/images/VOLTHA_LOGO.png b/images/VOLTHA_LOGO.png
deleted file mode 100644
index 50c7880..0000000
--- a/images/VOLTHA_LOGO.png
+++ /dev/null
Binary files differ
diff --git a/index.rst b/index.rst
index 83d408d..b1039c2 100644
--- a/index.rst
+++ b/index.rst
@@ -1,74 +1,80 @@
 VOLTHA Documentation
 ====================
 
-.. image:: images/VOLTHA_LOGO.png
+`VOLTHA (Virtual OLT Hardware Abstraction
+<https://www.opennetworking.org/voltha/>`_ is an open source project to create a
+hardware abstraction for broadband access equipment. It supports the principle
+of multi-vendor, disaggregated, "any broadband access as a service" for the
+Telco Central Office.
 
-Welcome to the VOLTHA project documentation.
+Key concepts in VOLTHA:
+
+- **Network as a Switch**: It makes a set of connected access network devices
+  to look like a SDN programmable switch.
+
+- **Evolution to virtualization**: it can work with a variety of access network
+  technologies and devices
+
+- **Unified OAM abstraction**: it provides unified, vendor- and technology
+  agnostic handling of device management tasks, such as service lifecycle,
+  device lifecycle (including discovery, upgrade), system monitoring, alarms,
+  troubleshooting, security, etc.
+
+- **Cloud/DevOps bridge to modernization**: it does all above while using a
+  microservices architecture running on top of Docker and/or Kubernetes.
+
+VOLTHA is a sub-project of the `Open Networking Foundation's
+<https://www.opennetworking.org>`_ `CORD project
+<https://www.opennetworking.org/cord/>`_.
+
+.. figure:: ./_static/voltha_components.svg
+   :alt: VOLTHA Component Diagram
+   :width: 70%
+
+   VOLTHA Component Diagram
+
+
+Community
+---------
+
+Information about participating in the VOLTHA community and development process
+can be found on the `VOLTHA section of the CORD Wiki
+<https://wiki.opencord.org/display/CORD/VOLTHA>`_.
+
 
 .. toctree::
    :maxdepth: 1
    :caption: Overview
+   :hidden:
    :glob:
 
    overview/*
+   readme
 
 .. toctree::
    :maxdepth: 1
-   :caption: Voltctl
-
-   voltctl/README.md
-
-.. toctree::
-   :maxdepth: 2
-   :caption: BBSim
+   :hidden:
+   :caption: Components
 
    bbsim/docs/source/index.rst
-
-.. toctree::
-   :maxdepth: 1
-   :caption: Release Notes
-   :glob:
-
-   release_notes/*
-
-.. toctree::
-   :maxdepth: 1
-   :caption: Testing
-
-   testing/index.rst
-   voltha-system-tests/README.md
-
-.. toctree::
-   :maxdepth: 1
-   :caption: VOLTHA Core (outdated)
-
-   voltha-go/README.md
-   voltha-go/quickstart.md
-   voltha-go/BUILD.md
-
-.. toctree::
-   :maxdepth: 1
-   :caption: Adapters (outdated)
-
+   ofagent-go/README.md
+   openolt/README.md
    voltha-openolt-adapter/README.md
-
-.. toctree::
-   :maxdepth: 1
-   :caption: VOLTHA-protos (outdated)
-
+   voltctl/README.md
    voltha-protos/README.md
 
 .. toctree::
    :maxdepth: 1
-   :caption: Documentation Notes
+   :hidden:
+   :caption: Testing
 
-   readme
+   voltha-system-tests/README.md
+   testing/index.rst
 
+.. toctree::
+   :maxdepth: 1
+   :hidden:
+   :caption: Releases
+   :glob:
 
-
-Indices and tables
-==================
-
-* :ref:`genindex`
-* :ref:`modindex`
-* :ref:`search`
+   release-notes/*
diff --git a/overview/contribute.rst b/overview/contribute.rst
deleted file mode 100644
index 0d4c382..0000000
--- a/overview/contribute.rst
+++ /dev/null
@@ -1,21 +0,0 @@
-How to contribute
-=================
-
-Hello and welcome!
-
-If you want to contribute to VOLTHA, please don't hesitate to contact us!
-The best ways to do so are:
-
-- `Slack <https://slackin.opencord.org>`_
-- `Mailing List <https://groups.google.com/a/opencord.org/forum/#!forum/voltha-discuss>`_
-
-Ongoing Brigades
-----------------
-
-- `BBSim and Scale <https://jira.opencord.org/secure/Dashboard.jspa?selectPageId=10902>`_
-- `Stabilization <https://jira.opencord.org/secure/Dashboard.jspa?selectPageId=10801>`_
-- `BAL 3.x <https://jira.opencord.org/secure/Dashboard.jspa?selectPageId=10700>`_
-- `Multicast and Multi-TCONT <https://jira.opencord.org/secure/Dashboard.jspa?selectPageId=10800>`_
-- `POD Management <https://jira.opencord.org/secure/Dashboard.jspa?selectPageId=10901>`_
-- `ONOS FCAPS <https://jira.opencord.org/secure/Dashboard.jspa?selectPageId=10903>`_
-- `Test Automation <https://jira.opencord.org/secure/Dashboard.jspa?selectPageId=11400>`_
diff --git a/overview/deploy_virtual.rst b/overview/dev_virtual.rst
similarity index 61%
rename from overview/deploy_virtual.rst
rename to overview/dev_virtual.rst
index 6e4445f..41fd0a3 100644
--- a/overview/deploy_virtual.rst
+++ b/overview/dev_virtual.rst
@@ -1,8 +1,13 @@
-Deploy a virtual VOLTHA POD
-===========================
+.. _dev_virtual:
+
+Developing code with a virtual VOLTHA POD
+=========================================
 
 A guide to install a virtual POD. This is generally used to gain familiarity with the
-environment or to do development.
+environment or for development purposes.
+
+Most of the `helm` and `voltctl` commands found in the :ref:`pod_physical` also
+apply in the virtual environment.
 
 Quickstart
 ----------
@@ -16,12 +21,6 @@
 
     TYPE=minimal WITH_RADIUS=y CONFIG_SADIS=y ONLY_ONE=y WITH_BBSIM=y ./voltha up
 
-TLDR;
------
-
-Below are the complete steps to install a physical cluster.
-Most of the steps are the same as :ref:`deploy_physical`.
-
 Create Kubernetes Cluster
 -------------------------
 
@@ -84,3 +83,54 @@
 .. code:: bash
 
    voltctl device enable $(voltctl device list --filter Type~openolt -q)
+
+
+Developing changes on a virtual pod
+-----------------------------------
+
+We assume you already have downloaded the git repository you want to modify and
+your IDE is correctly set up.
+
+In this tutorial we are going to use ``voltha-go`` as an example.
+
+Make the required changes in the ``voltha-go`` repository (the process
+is the same for all the VOLTHA repositories) to the code and build the
+docker images and push them on your private dockerhub account:
+
+.. code:: bash
+
+   $ DOCKER_REGISTRY="matteoscandolo/" DOCKER_TAG="dev" make docker-build
+
+Then push them to your docker hub account:
+
+.. code:: bash
+
+   $ DOCKER_REGISTRY="matteoscandolo/" DOCKER_TAG="dev" make docker-push
+
+Deploy your changes on kind-voltha
+----------------------------------
+
+Create a copy of the `minimal-values.yaml` file:
+
+.. code:: bash
+
+    $ cp minimal-values.yaml dev-values.yaml
+
+And edit that file so that it contains the appropriate values for the images you want to try,
+for example uncomment and change these two lines (mind the indentation):
+
+.. code:: yaml
+
+    images:
+      ro_core:
+        repository: matteoscandolo/voltha-ro-core
+        tag: dev
+      rw_core:
+        repository: matteoscandolo/voltha-rw-core
+        tag: dev
+
+Then redeploy `kind-voltha` using that the edited value file:
+
+.. code:: bash
+
+    $ DEPLOY_K8S=no ./voltha down && DEPLOY_K8S=no EXTRA_HELM_FLAGS="-f dev-values.yaml" ./voltha up
diff --git a/overview/development_loop.rst b/overview/development_loop.rst
deleted file mode 100644
index 34ab2d7..0000000
--- a/overview/development_loop.rst
+++ /dev/null
@@ -1,54 +0,0 @@
-Development Loop
-================
-
-Start with `kind-voltha <https://github.com/ciena/kind-voltha>`_. installed.
-
-Make changes
-------------
-
-We assume you already have downloaded the repository you want to modify and your IDE is correctly set up.
-
-In this tutorial we are going to use ``voltha-go`` as an example.
-
-Make the required changes in the ``voltha-go`` repository (the process
-is the same for all the VOLTHA repositories) to the code and build the
-docker images and push them on your private dockerhub account:
-
-.. code:: bash
-
-   $ DOCKER_REGISTRY="matteoscandolo/" DOCKER_TAG="dev" make docker-build
-
-Then push them to your docker hub account:
-
-.. code:: bash
-
-   $ DOCKER_REGISTRY="matteoscandolo/" DOCKER_TAG="dev" make docker-push
-
-Deploy your changes on kind-voltha
-----------------------------------
-
-Create a copy of the `minimal-values.yaml` file:
-
-.. code:: bash
-
-    $ cp minimal-values.yaml dev-values.yaml
-
-And edit that file so that it contains the appropriate values for the images you want to try,
-for example uncomment and change these two lines (mind the indentation):
-
-.. code:: yaml
-
-    images:
-      ro_core:
-        repository: matteoscandolo/voltha-ro-core
-        tag: dev
-      rw_core:
-        repository: matteoscandolo/voltha-rw-core
-        tag: dev
-
-Then redeploy `kind-voltha` using that value file:
-
-.. code:: bash
-
-    $ DEPLOY_K8S=no ./voltha down && DEPLOY_K8S=no EXTRA_HELM_FLAGS="-f dev-values.yaml" ./voltha up
-
diff --git a/overview/lab_setup.rst b/overview/lab_setup.rst
new file mode 100644
index 0000000..5ec8054
--- /dev/null
+++ b/overview/lab_setup.rst
@@ -0,0 +1,195 @@
+.. _lab_setup:
+
+Hardware Setup of a VOLTHA Test Pod
+===================================
+
+Overview
+--------
+
+In a testing setup rather than using a real RG or BNG emulated ones are
+deployed on a Linux development server:
+
+- The ``RG`` can be emulated by an ``lxc`` container (from now on ``client``)
+- The ``BNG`` can be emulated by a Linux server
+- The ``AggSwitch`` is optional in a VOLTHA deployment.
+
+.. figure:: ../_static/voltha_lab_setup.png
+   :alt: VOLTHA Lab Setup
+
+   VOLTHA Lab Setup
+
+*The image above represents the data plane connections in a LAB setup.
+It does not include the kubernetes cluster for simplicity.*
+
+What you’ll need to emulate E2E traffic is:
+
+- 1 x86 server with Ubuntu 16.04 and at least the following interfaces:
+
+  - 1 1G Ethernet port
+  - 1 10G Ethernet port (this can be a second 1G interface as long as you have a media converter)
+
+Setting up a client
+-------------------
+
+The first thing you need to do is to install ``lxd`` on your server. To do that
+you can follow `this guide
+<http://tutorials.ubuntu.com/tutorial/tutorial-setting-up-lxd-1604>`_
+
+Once ``lxd`` is successfully installed you need to initialize it with:
+
+.. code:: bash
+
+   lxd init
+
+we recommend to use all the provided default values.
+
+Once ``lxd`` is initialized you can create a container and assign a physical
+Ethernet interface to the container:
+
+.. code:: bash
+
+   lxc launch ubuntu:16.04 <name>
+   lxc config device add <name> eth1 nic name=eth1 parent=<physical-intf> nictype=physical
+
+Where:
+
+- ``name`` is the desired container name. The convention used to identify which
+  RG container is connected to an ONU is to use the ONU serial number as the
+  lxc container name.
+
+- ``physical-intf`` is the name of the interface on the server where the ONU
+  is physically connected
+
+Once the container is created you can check it's state with with ``lxc list``:
+
+.. code:: bash
+
+   +---------------+---------+--------------------+------+------------+-----------+
+   |     NAME      |  STATE  |        IPV4        | IPV6 |    TYPE    | SNAPSHOTS |
+   +---------------+---------+--------------------+------+------------+-----------+
+   | voltha-client | RUNNING | 10.63.3.144 (eth0) |      | PERSISTENT | 0         |
+   +---------------+---------+--------------------+------+------------+-----------+
+
+Please make sure the container has an assigned IP or we it won’t be able
+to login and install the ``wpasupplicant`` tool inside the RG.
+
+Once the container is running you need to enter it for configuration. To access
+the container run: ``lxc exec <name> /bin/bash``
+
+Once inside:
+
+.. code:: bash
+
+   # activate the interface
+   ip link set eth1 up
+   # install the wpasupplicant tool
+   apt update
+   apt install wpasupplicant
+
+..
+
+   NOTE: ``wpasupplicant`` is a Linux tool to perform 802.1X authentication.
+   `wpasupplicant documentation can be found here
+   <https://help.ubuntu.com/community/WifiDocs/WPAHowTo>`_.
+
+Create a configuration file for ``wpasupplicant`` in
+``/etc/wpa_supplicant/wpa_supplicant.conf`` with the content:
+
+.. code:: text
+
+   ctrl_interface=/var/run/wpa_supplicant
+   eapol_version=1
+   ap_scan=0
+   fast_reauth=1
+   network={
+           key_mgmt=WPA-EAP
+           eap=MD5
+           identity="user"
+           password="password"
+           ca_cert="/etc/cert/cacert.pem"
+           client_cert="/etc/cert/client.pem"
+           private_key="/etc/cert/client.key"
+           private_key_passwd="whatever"
+           eapol_flags=3
+   }
+
+..
+
+   NOTE: The configuration in this file is not really important if you are
+   using the ``freeradius`` server provided as part of the VOLTHA helm charts.
+   Do not worry if the certificates do not exist, they won’t affect
+   authentication as that is password based.
+
+At this point you’ll be able kickoff the authentication process (by
+sending ``EAPOL`` packets into the system) with the command:
+
+.. code:: bash
+
+   wpa_supplicant -i eth1 -Dwired -c /etc/wpa_supplicant/wpa_supplicant.conf
+
+If everything has been set up correctly, you should see output similar to this
+in the VOLTHA logs:
+
+.. code:: bash
+
+   cord@node1:~$ kubectl logs -f -n voltha vcore-0 | grep -E "packet_indication|packet-in" | grep 888e
+   20180912T003237.453 DEBUG    MainThread adapter_agent.send_packet_in {adapter_name: openolt, logical_port_no: 16, logical_device_id: 000100000a5a0097, packet: 0180c200000390e2ba82fa8281000ffb888e01000009020100090175736572000000000000000000000000000000000000000000000000000000000000000000, event: send-packet-in, instance_id: compose_voltha_1_1536712228, vcore_id: 0001}
+
+Setting up an emulated BNG on Linux
+-----------------------------------
+
+The emulated BNG needs to perform only two operations: ``DHCP`` and
+``NAT``.
+
+To setup a NAT router on an Ubuntu 16.04 server you can look at this
+tutorial:
+https://www.nairabytes.net/81-linux/418-how-to-set-up-a-nat-router-on-ubuntu-server-16-04
+
+To install a DHCP server you can follow this tutorial:
+http://nairabytes.net/81-linux/415-how-to-install-a-dhcp-server-in-ubuntu-server-16-04
+
+Once the ``DHCP`` server is installed, you need to configure it.
+
+Create Q-in-Q interfaces
+~~~~~~~~~~~~~~~~~~~~~~~~
+
+On the interface that connects to the Agg Switch (upstream) you are
+going to receive double tagged traffic, so you’ll need to create
+interfaces to received it.
+
+Supposing that your subscriber is using ``s_tag=111``, ``c_tag=222`` and
+the upstream interface name is ``eth2`` you can use this commands to
+create it:
+
+.. code:: bash
+
+   ip link set eth2 up
+   ip link add link eth2 name eth2.111 type vlan id 111
+   ip link set eth2.111 up
+   ip link add link eth2.111 name eth2.111.222 type vlan id 222
+   ip link set eth2.111.222 up
+   ip addr add 10.11.2.254/24 dev eth2.111.222
+
+Then you’ll need to tell the ``dhcp`` server to listen on that
+interface, you can do that by editing the file
+``/etc/default/isc-dhcp-server`` so that it looks like:
+
+.. code:: bash
+
+   INTERFACES="eth2.111.222"
+
+..
+
+   NOTE that you can list multiple interfaces, separated by spaces, in
+   case you have multiple subscribers in your setup
+
+In the ``/etc/dhcp/dhcpd.conf`` config file, configure the IP address
+range to assign to the double tagged interface:
+
+.. code:: text
+
+   subnet 10.11.2.0 netmask 255.255.255.0 {
+     range 10.11.2.1 10.11.2.100;
+     option routers 10.11.2.254;
+     option domain-name-servers 8.8.8.8;
+   }
diff --git a/overview/physical_layout.rst b/overview/physical_layout.rst
deleted file mode 100644
index 850a64a..0000000
--- a/overview/physical_layout.rst
+++ /dev/null
@@ -1,11 +0,0 @@
-.. _Physical_Layout:
-
-Build a physical POD
-====================
-
-Coming Soon.
-
-For the time being you can refer to the `SEBA LAB Setup guide
-<https://guide.opencord.org/profiles/seba/lab-setup.html#configuring-a-lab-setup>`_,
-just remember that the ``AggSwitch`` is optional in a VOLTHA deployment.
-
diff --git a/overview/deploy_physical.rst b/overview/pod_physical.rst
similarity index 99%
rename from overview/deploy_physical.rst
rename to overview/pod_physical.rst
index 1758f03..b05b4c3 100644
--- a/overview/deploy_physical.rst
+++ b/overview/pod_physical.rst
@@ -1,4 +1,4 @@
-.. _deploy_physical:
+.. _pod_physical:
 
 Deploy a physical VOLTHA POD
 ============================
@@ -7,7 +7,7 @@
 ----------
 
 The quickstart assumes you POD is already correctly cabled, if not you can
-refer to :ref:`Physical_Layout`
+refer to :ref:`lab_setup`
 
 Requires:
 
diff --git a/overview/ubuntu_dev_env.rst b/overview/ubuntu_dev_env.rst
new file mode 100644
index 0000000..36b9901
--- /dev/null
+++ b/overview/ubuntu_dev_env.rst
@@ -0,0 +1,510 @@
+Setting up an Ubuntu Development Environment
+============================================
+
+These notes describe the checking out and building from the multiple
+gerrit repositories needed to run a VOLTHA 2.x environment with
+docker-compose. Starting point is a basic Ubuntu 16.04 or 18.04
+installation with internet access.
+
+These notes are intended for iterative development only. The testing
+environments and production environments will run a Kubernetes and Helm
+based deployment.
+
+Install prerequisites
+---------------------
+
+Patch and updated
+
+.. code:: sh
+
+   sudo apt update
+   sudo apt dist-upgrade
+
+Add ``docker-ce`` apt repo and install docker and build tools
+
+.. code:: sh
+
+   curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
+   sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
+   sudo apt update
+   sudo apt install build-essential docker-ce git
+
+Install current ``docker-compose``. Older versions may cause docker
+build problems:
+https://github.com/docker/docker-credential-helpers/issues/103
+
+.. code:: sh
+
+   sudo curl -L "https://github.com/docker/compose/releases/download/1.25.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
+   sudo chmod 755 /usr/local/bin/docker-compose
+
+Install the Golang ppa apt repository and install **golang 1.13**.
+
+.. code:: sh
+
+   sudo add-apt-repository ppa:longsleep/golang-backports
+   sudo apt update
+   sudo apt install golang-1.13
+
+Setup environment
+~~~~~~~~~~~~~~~~~
+
+Setup a local Golang and docker-compose environment, verifying the
+golang-1.13 binaries are in your path. Also add your local ``GOPATH``
+bin folder to ``PATH`` Add export statements to your ``~/.profile`` to
+persist.
+
+.. code:: sh
+
+   mkdir $HOME/source
+   mkdir $HOME/go
+   export GO111MODULE=on
+   export GOPATH=$HOME/go
+   export DOCKER_TAG=latest
+   export PATH=$PATH:/usr/lib/go-1.13/bin:$GOPATH/bin
+   go version
+
+Allow your current non-root user ``$USER`` docker system access
+
+.. code:: sh
+
+   sudo usermod -a -G docker $USER
+
+Logout/Login to assume new group membership needed for running docker as
+non-root user and verify any environment variables set in
+``~/.profile``.
+
+Checkout source and build images
+--------------------------------
+
+VOLTHA 2.x Core Containers
+~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Checkout needed source from gerrit. Build the ``voltha-rw-core`` docker
+image.
+
+.. code:: sh
+
+   cd ~/source/
+   git clone https://gerrit.opencord.org/voltha-go.git
+   cd ~/source/voltha-go
+   make build
+
+For more details regarding building and debugging the 2.x core outside
+of Docker refer to voltha-go BUILD.md.
+
+https://github.com/opencord/voltha-go/blob/master/BUILD.md
+
+VOLTHA 2.x OpenOLT Container
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Checkout needed source from gerrit. Build the ``voltha-openolt-adapter``
+docker image.
+
+.. code:: sh
+
+   cd ~/source/
+   git clone https://gerrit.opencord.org/voltha-openolt-adapter.git
+   cd ~/source/voltha-openolt-adapter/
+   make build
+
+VOLTHA 2.x OpenONU Container
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Checkout needed source from gerrit. Build the ``voltha-openonu-adapter``
+docker image.
+
+.. code:: sh
+
+   cd ~/source/
+   git clone https://gerrit.opencord.org/voltha-openonu-adapter.git
+   cd ~/source/voltha-openonu-adapter/
+   make build
+
+VOLTHA 2.x OFAgent
+~~~~~~~~~~~~~~~~~~
+
+Checkout needed source from gerrit. Build the ``voltha-ofagent`` docker
+image.
+
+.. code:: sh
+
+   cd ~/source/
+   git clone https://gerrit.opencord.org/ofagent-go.git
+   cd ~/source/ofagent-go/
+   make docker-build
+
+ONOS Container with VOLTHA Compatible Apps
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+By default the standard ONOS docker image does not contain nor start any
+apps needed by VOLTHA. If you use the standard image then you need to
+use the ONOS restful API to load needed apps separately.
+
+For development convenience there is an ONOS docker image build that
+adds in the current compatible VOLTHA apps. Checkout and build the ONOS
+image with added ONOS apps (olt, aaa, sadis, dhcpl2relay, and kafka).
+
+.. code:: sh
+
+   cd ~/source/
+   git clone https://gerrit.opencord.org/voltha-onos.git
+   cd ~/source/voltha-onos
+   make build
+
+Install voltctl VOLTHA Command Line Management Tool
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+A working Golang build environment is required as ``voltctl`` is build
+and run directly from the host. Build the ``voltctl`` executable and
+install in ~/go/bin which should already be in your $PATH
+
+.. code:: sh
+
+   cd ~/source/
+   git clone https://gerrit.opencord.org/voltctl.git
+   cd ~/source/voltctl
+   make build
+   make install
+
+Configure the ``voltctl`` environment configuration files
+``~/.volt/config`` and ``~/.volt/command_options`` to point at the local
+``voltha-rw-core`` instance that will be running.
+
+.. code:: sh
+
+   mkdir ~/.volt/
+
+   cat << EOF > ~/.volt/config
+   apiVersion: v2
+   server: localhost:50057
+   tls:
+     useTls: false
+     caCert: ""
+     cert: ""
+     key: ""
+     verify: ""
+   grpc:
+     timeout: 10s
+   EOF
+
+   cat << EOF > ~/.volt/command_options
+   device-list:
+     format: table{{.Id}}\t{{.Type}}\t{{.Root}}\t{{.ParentId}}\t{{.SerialNumber}}\t{{.Address}}\t{{.AdminState}}\t{{.OperStatus}}\t{{.ConnectStatus}}\t{{.Reason}}
+     order: -Root,SerialNumber
+
+   device-ports:
+     order: PortNo
+
+   device-flows:
+     order: Priority,EthType
+
+   logical-device-list:
+     order: RootDeviceId,DataPathId
+
+   logical-device-ports:
+     order: Id
+
+   logical-device-flows:
+     order: Priority,EthType
+
+   adapter-list:
+     order: Id
+
+   component-list:
+     order: Component,Name,Id
+
+   loglevel-get:
+     order: ComponentName,PackageName,Level
+
+   loglevel-list:
+     order: ComponentName,PackageName,Level
+   EOF
+
+
+Install VOLTHA bbsim olt/onu Simulator (Optional)
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+If you do not have physical OLT/ONU hardware you can build a simulator.
+
+.. code:: sh
+
+   cd ~/source/
+   git clone https://gerrit.opencord.org/bbsim.git
+   cd ~/source/bbsim
+   make docker-build
+
+Test
+----
+
+Startup
+~~~~~~~
+
+Run the combined docker-compose yaml configuration file that starts the
+core, its dependent systems (etcd, zookeeper, and kafka) and the openonu
+and openolt adapters. Export the ``DOCKER_HOST_IP`` environment variable
+to your non-localhost IP address needed for inter-container
+communication. This can be the IP assigned to ``eth0`` or the
+``docker0`` bridge (typically 172.17.0.1)
+
+For convenience you can also export ``DOCKER_TAG`` to signify the docker
+images tag you would like to use. Though for typical development you may
+have to edit ``compose/system-test.yml`` to override the specific docker
+image ``DOCKER_TAG`` needed. The ``DOCKER_REGISTRY`` and
+``DOCKER_REPOSITORY`` variables are not needed unless you wish to
+override the docker image path. See the ``system-test.yml`` file for
+details on the docker image path creation string.
+
+.. code:: sh
+
+   export DOCKER_HOST_IP=172.17.0.1
+   export DOCKER_TAG=latest
+
+   cd ~/source/voltha-go
+   docker-compose -f compose/system-test.yml up -d
+
+
+   WARNING: The DOCKER_REGISTRY variable is not set. Defaulting to a blank string.
+   WARNING: The DOCKER_REPOSITORY variable is not set. Defaulting to a blank string.
+   Creating network "compose_default" with driver "bridge"
+   Pulling zookeeper (wurstmeister/zookeeper:latest)...
+   latest: Pulling from wurstmeister/zookeeper
+   a3ed95caeb02: Pull complete
+   ef38b711a50f: Pull complete
+   e057c74597c7: Pull complete
+   666c214f6385: Pull complete
+   c3d6a96f1ffc: Pull complete
+   3fe26a83e0ca: Pull complete
+   3d3a7dd3a3b1: Pull complete
+   f8cc938abe5f: Pull complete
+   9978b75f7a58: Pull complete
+   4d4dbcc8f8cc: Pull complete
+   8b130a9baa49: Pull complete
+   6b9611650a73: Pull complete
+   5df5aac51927: Pull complete
+   76eea4448d9b: Pull complete
+   8b66990876c6: Pull complete
+   f0dd38204b6f: Pull complete
+   Digest: sha256:7a7fd44a72104bfbd24a77844bad5fabc86485b036f988ea927d1780782a6680
+   Status: Downloaded newer image for wurstmeister/zookeeper:latest
+   Pulling kafka (wurstmeister/kafka:2.11-2.0.1)...
+   2.11-2.0.1: Pulling from wurstmeister/kafka
+   4fe2ade4980c: Pull complete
+   6fc58a8d4ae4: Pull complete
+   819f4a45746c: Pull complete
+   a3133bc2e3e5: Pull complete
+   72f0dc369677: Pull complete
+   1e1130fc942d: Pull complete
+   Digest: sha256:20d08a6849383b124bccbe58bc9c48ec202eefb373d05e0a11e186459b84f2a0
+   Status: Downloaded newer image for wurstmeister/kafka:2.11-2.0.1
+   Pulling etcd (quay.io/coreos/etcd:v3.2.9)...
+   v3.2.9: Pulling from coreos/etcd
+   88286f41530e: Pull complete
+   2fa4a2c3ffb5: Pull complete
+   539b8e6ccce1: Pull complete
+   79e70e608afa: Pull complete
+   f1bf8f503bff: Pull complete
+   c4abfc27d146: Pull complete
+   Digest: sha256:1913dd980d55490fa50640bbef0f4540d124e5c66d6db271b0b4456e9370a272
+   Status: Downloaded newer image for quay.io/coreos/etcd:v3.2.9
+   Creating compose_kafka_1           ... done
+   Creating compose_cli_1             ... done
+   Creating compose_adapter_openolt_1 ... done
+   Creating compose_rw_core_1         ... done
+   Creating compose_adapter_openonu_1 ... done
+   Creating compose_etcd_1            ... done
+   Creating compose_onos_1            ... done
+   Creating compose_ofagent_1         ... done
+   Creating compose_zookeeper_1       ... done
+
+Verify containers have continuous uptime and no restarts
+
+.. code:: sh
+
+   $ docker-compose -f compose/system-test.yml ps
+   WARNING: The DOCKER_REGISTRY variable is not set. Defaulting to a blank string.
+   WARNING: The DOCKER_REPOSITORY variable is not set. Defaulting to a blank string.
+             Name                         Command               State                                             Ports
+   ---------------------------------------------------------------------------------------------------------------------------------------------------------------
+   compose_adapter_openolt_1   /app/openolt --kafka_adapt ...   Up      0.0.0.0:50062->50062/tcp
+   compose_adapter_openonu_1   /voltha/adapters/brcm_open ...   Up
+   compose_etcd_1              etcd --name=etcd0 --advert ...   Up      0.0.0.0:2379->2379/tcp, 0.0.0.0:32929->2380/tcp, 0.0.0.0:32928->4001/tcp
+   compose_kafka_1             start-kafka.sh                   Up      0.0.0.0:9092->9092/tcp
+   compose_ofagent_1           /app/ofagent --controller= ...   Up
+   compose_onos_1              ./bin/onos-service server        Up      6640/tcp, 0.0.0.0:6653->6653/tcp, 0.0.0.0:8101->8101/tcp, 0.0.0.0:8181->8181/tcp, 9876/tcp
+   compose_rw_core_1           /app/rw_core -kv_store_typ ...   Up      0.0.0.0:50057->50057/tcp
+   compose_zookeeper_1         /bin/sh -c /usr/sbin/sshd  ...   Up      0.0.0.0:2181->2181/tcp, 22/tcp, 2888/tcp, 3888/tcp
+
+.. code:: sh
+
+   $ docker ps
+   CONTAINER ID        IMAGE                           COMMAND                  CREATED             STATUS              PORTS                                                                                        NAMES
+   08a0e7a1ee5c        voltha-openolt-adapter:latest   "/app/openolt --kafk…"   31 seconds ago      Up 27 seconds       0.0.0.0:50062->50062/tcp                                                                     compose_adapter_openolt_1
+   1f364cf7912d        wurstmeister/zookeeper:latest   "/bin/sh -c '/usr/sb…"   31 seconds ago      Up 27 seconds       22/tcp, 2888/tcp, 3888/tcp, 0.0.0.0:2181->2181/tcp                                           compose_zookeeper_1
+   ab1822baed41        wurstmeister/kafka:2.11-2.0.1   "start-kafka.sh"         31 seconds ago      Up 24 seconds       0.0.0.0:9092->9092/tcp                                                                       compose_kafka_1
+   22a4fe4b2eb4        voltha-ofagent-go:latest        "/app/ofagent --cont…"   31 seconds ago      Up 23 seconds                                                                                                    compose_ofagent_1
+   d34e1c976db5        voltha-rw-core:latest           "/app/rw_core -kv_st…"   31 seconds ago      Up 26 seconds       0.0.0.0:50057->50057/tcp                                                                     compose_rw_core_1
+   f6ef52975dc0        voltha-openonu-adapter:latest   "/voltha/adapters/br…"   31 seconds ago      Up 29 seconds                                                                                                    compose_adapter_openonu_1
+   7ce8bcf7436c        voltha-onos:latest              "./bin/onos-service …"   31 seconds ago      Up 25 seconds       0.0.0.0:6653->6653/tcp, 0.0.0.0:8101->8101/tcp, 6640/tcp, 9876/tcp, 0.0.0.0:8181->8181/tcp   compose_onos_1
+   60ac172726f5        quay.io/coreos/etcd:v3.4.1      "etcd --name=etcd0 -…"   31 seconds ago      Up 28 seconds       0.0.0.0:2379->2379/tcp, 0.0.0.0:32931->2380/tcp, 0.0.0.0:32930->4001/tcp                     compose_etcd_1
+
+Verify Cluster Communication
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Use ``voltctl`` commands to verify core and adapters are running.
+
+.. code:: sh
+
+   voltctl adapter list
+   ID                   VENDOR            VERSION      SINCELASTCOMMUNICATION
+   brcm_openomci_onu    VOLTHA OpenONU    2.3.2-dev    UNKNOWN
+   openolt              VOLTHA OpenOLT    2.3.5-dev    UNKNOWN
+
+List “devices” to verify no devices exist.
+
+.. code:: sh
+
+   voltctl device list
+   ID    TYPE    ROOT    PARENTID    SERIALNUMBER    ADDRESS    ADMINSTATE    OPERSTATUS    CONNECTSTATUS    REASON
+
+At this point create/preprovision and enable an olt device and add flows
+via onos and ofagent.
+
+Physical OLT/ONU Testing with Passing Traffic
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Start a physical OLT and ONU. Tested with Edgecore OLT, Broadcom based
+ONU, and RG capable of EAPoL. Create/Preprovision the OLT and enable.
+The create command returns the device ID needed for enable and
+subsequent commands.
+
+**Add device to VOLTHA**
+
+.. code:: sh
+
+   $ voltctl device create -t openolt -H 10.64.1.206:9191
+   db87c4b48843bb99567d3d94
+
+   $ voltctl device enable db87c4b48843bb99567d3d94
+   db87c4b48843bb99567d3d94
+
+**Verify device state**
+
+.. code:: sh
+
+   $ voltctl device list
+   ID                          TYPE                 ROOT     PARENTID                    SERIALNUMBER    ADDRESS             ADMINSTATE    OPERSTATUS    CONNECTSTATUS    REASON
+   db87c4b48843bb99567d3d94    openolt              true     a82bb53678ae                EC1721000221    10.64.1.206:9191    ENABLED       ACTIVE        REACHABLE
+   082d7c2e628325ccc3336275    brcm_openomci_onu    false    db87c4b48843bb99567d3d94    ALPHe3d1cf57    unknown             ENABLED       ACTIVE        REACHABLE        omci-flows-pushed
+
+.. code:: sh
+
+   $ voltctl device port list db87c4b48843bb99567d3d94
+   PORTNO       LABEL            TYPE            ADMINSTATE    OPERSTATUS    DEVICEID    PEERS
+   1048576      nni-1048576      ETHERNET_NNI    ENABLED       ACTIVE                    []
+   536870912    pon-536870912    PON_OLT         ENABLED       ACTIVE                    [{082d7c2e628325ccc3336275 536870912}]
+   536870913    pon-536870913    PON_OLT         ENABLED       ACTIVE                    []
+   536870914    pon-536870914    PON_OLT         ENABLED       ACTIVE                    []
+   536870915    pon-536870915    PON_OLT         ENABLED       ACTIVE                    []
+   536870916    pon-536870916    PON_OLT         ENABLED       ACTIVE                    []
+   536870917    pon-536870917    PON_OLT         ENABLED       ACTIVE                    []
+   536870918    pon-536870918    PON_OLT         ENABLED       ACTIVE                    []
+   536870919    pon-536870919    PON_OLT         ENABLED       ACTIVE                    []
+   536870920    pon-536870920    PON_OLT         ENABLED       ACTIVE                    []
+   536870921    pon-536870921    PON_OLT         ENABLED       ACTIVE                    []
+   536870922    pon-536870922    PON_OLT         ENABLED       ACTIVE                    []
+   536870923    pon-536870923    PON_OLT         ENABLED       ACTIVE                    []
+   536870924    pon-536870924    PON_OLT         ENABLED       ACTIVE                    []
+   536870925    pon-536870925    PON_OLT         ENABLED       ACTIVE                    []
+   536870926    pon-536870926    PON_OLT         ENABLED       ACTIVE                    []
+   536870927    pon-536870927    PON_OLT         ENABLED       ACTIVE                    []
+
+.. code:: sh
+
+   $ voltctl device port list 082d7c2e628325ccc3336275
+   PORTNO       LABEL       TYPE            ADMINSTATE    OPERSTATUS    DEVICEID    PEERS
+   16           uni-16      ETHERNET_UNI    ENABLED       ACTIVE                    []
+   17           uni-17      ETHERNET_UNI    ENABLED       DISCOVERED                []
+   18           uni-18      ETHERNET_UNI    ENABLED       DISCOVERED                []
+   19           uni-19      ETHERNET_UNI    ENABLED       DISCOVERED                []
+   20           uni-20      ETHERNET_UNI    ENABLED       DISCOVERED                []
+   536870912    PON port    PON_ONU         ENABLED       ACTIVE                    [{db87c4b48843bb99567d3d94 536870912}]
+
+Verify ONOS device state and eventual EAPoL authentication. ONOS default
+Username is ``karaf``, Password is ``karaf``
+
+.. code:: sh
+
+   ssh -p 8101 karaf@localhost
+
+Display the device and ports discovered
+
+.. code:: sh
+
+   karaf@root > ports
+
+   id=of:0000a82bb53678ae, available=true, local-status=connected 4m27s ago, role=MASTER, type=SWITCH, mfr=VOLTHA Project, hw=open_pon, sw=open_pon, serial=EC1721000221, chassis=a82bb53678ae, driver=voltha, channelId=172.27.0.1:59124, managementAddress=172.27.0.1, protocol=OF_13
+     port=16, state=enabled, type=fiber, speed=0 , adminState=enabled, portMac=08:00:00:00:00:10, portName=ALPHe3d1cf57-1
+     port=17, state=disabled, type=fiber, speed=0 , adminState=enabled, portMac=08:00:00:00:00:11, portName=ALPHe3d1cf57-2
+     port=18, state=disabled, type=fiber, speed=0 , adminState=enabled, portMac=08:00:00:00:00:12, portName=ALPHe3d1cf57-3
+     port=19, state=disabled, type=fiber, speed=0 , adminState=enabled, portMac=08:00:00:00:00:13, portName=ALPHe3d1cf57-4
+     port=20, state=disabled, type=fiber, speed=0 , adminState=enabled, portMac=08:00:00:00:00:14, portName=ALPHe3d1cf57-5
+     port=1048576, state=enabled, type=fiber, speed=0 , adminState=enabled, portMac=a8:2b:b5:36:78:ae, portName=nni-1048576
+
+EAPoL may take up to 30 seconds to complete.
+
+.. code:: sh
+
+   karaf@root > aaa-users
+
+   of:0000a82bb53678ae/16: AUTHORIZED_STATE, last-changed=4m22s ago, mac=94:CC:B9:DA:AB:D1, subid=PON 1/1/3/1:2.1.1, username=94:CC:B9:DA:AB:D1
+
+**Provision subscriber flows**
+
+.. code:: sh
+
+   karaf@root > volt-add-subscriber-access of:0000a82bb53678ae 16
+
+   karaf@root > volt-programmed-subscribers
+
+   location=of:0000a82bb53678ae/16 tagInformation=UniTagInformation{uniTagMatch=0, ponCTag=20, ponSTag=11, usPonCTagPriority=-1, usPonSTagPriority=-1, dsPonCTagPriority=-1, dsPonSTagPriority=-1, technologyProfileId=64, enableMacLearning=false, upstreamBandwidthProfile='Default', downstreamBandwidthProfile='Default', serviceName='', configuredMacAddress='A4:23:05:00:00:00', isDhcpRequired=true, isIgmpRequired=false}
+
+After about 30 seconds the RG should attempt DHCP which should be
+visible in onos. At this point the RG should be able to pass database
+traffic via the ONU/OLT.
+
+.. code:: sh
+
+   karaf@root > dhcpl2relay-allocations
+
+   SubscriberId=ALPHe3d1cf57-1,ConnectPoint=of:0000a82bb53678ae/16,State=DHCPREQUEST,MAC=94:CC:B9:DA:AB:D1,CircuitId=PON 1/1/3/1:2.1.1,IP Allocated=29.29.206.20,Allocation Timestamp=2020-02-17T15:34:31.572746Z
+
+BBSIM Simulated OLT/ONU Testing Control Plane Traffic
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+If you do not have physical OLT/ONU hardware you can start VOLTHA
+containers and the bbsim olt/onu hardware simulator using a different
+docker-compose yaml file. Verify containers are running as above with
+the addition of the bbsim and radius server containers.
+
+.. code:: sh
+
+   export DOCKER_HOST_IP=172.17.0.1
+   export DOCKER_TAG=latest
+
+   cd ~/source/voltha-go
+   docker-compose -f compose/system-test-bbsim.yml up -d
+
+Create/Preprovision and enable similarly to the physical OLT above,
+providing the local bbsim IP and listening port
+
+.. code:: sh
+
+   voltctl device create -t openolt -H 172.17.0.1:50060
+   ece94c86e93c6e06dd0a544b
+
+   voltctl device enable ece94c86e93c6e06dd0a544b
+   ece94c86e93c6e06dd0a544b
+
+Proceed with the verification and ONOS provisioning commands similar to
+the physical OLT described above.
diff --git a/readme.rst b/readme.rst
index cc79757..6beac1d 100644
--- a/readme.rst
+++ b/readme.rst
@@ -1,18 +1,32 @@
 Documentation Guide
 ===================
 
+Writing Documentation
+---------------------
+
+Docs are generated using `Sphinx <https://www.sphinx-doc.org/en/master/>`_.
+
+Documentation can be written in `reStructuredText
+<https://www.sphinx-doc.org/en/master/usage/restructuredtext/>`_ (``.rst``)  or
+`Markdown <https://daringfireball.net/projects/markdown/>`_ (``.md``), but
+reStructuredText is preferred as that filetype supports features like embedded
+diagrams and tables.
+
+In reStructuredText documents, to create the section hierarchy (mapped in HTML
+to ``<h1>`` through ``<h5>``) use these characters to underline headings in the
+order given: ``=``, ``-`` ``"``, ``'``, ``^``.
+
 Building the Docs
 ------------------
 
-The documentation build process is stored in the Makefile. Building docs
+The documentation build process is stored in the ``Makefile``. Building docs
 requires Python to be installed, and most steps will create a virtualenv
-(``doc_venv``) which install the documentation generation toolset.
+(``venv_docs``) which contains the required tools.  You may also need to
+install the ``enchant`` C library using your system's package manager for the
+spelling checker to function properly.
 
 Run ``make html`` to generate html documentation in ``_build/html``.
 
-Run ``make reload`` to get a live reload in your browser (refreshes on document
-save).
-
 To check the formatting of documentation, run ``make lint``. This will be done
 in Jenkins to validate the documentation, so please do this before you create a
 patchset.
@@ -21,44 +35,38 @@
 are correctly spelled but not in the dictionary (acronyms, trademarks, etc.)
 please add them to the ``dict.txt`` file.
 
-Writing Docs
-------------
-
-Docs written using sphinx: http://www.sphinx-doc.org
-
-Documentation is done in reStructuredText (``.rst``)  or Markdown (``.md``),
-but only .rst files can use certain features like embedded diagrams.
-
-reStructuredText Primer:
-http://www.sphinx-doc.org/en/master/usage/restructuredtext/index.html
-
 Creating new Versions of Docs
 -----------------------------
 
-To change the version shown on the built site, change the ``versions`` variable in ``conf.py``.
+To change the version shown on the built site, change the contents of the
+``VERSION`` file.
 
-There is a ``make versioned`` target which will build all versions published on
-the remote to ``_build``.  Note that we're using a fork of the upstream version
-of the ``sphinxcontrib-versioning`` module, as the original isn't actively
-maintained, and we needed it to be able to handle the symlink checkouts of
-other repos that are incorporated.
+There is a ``make multiversion`` target which will build all versions published
+on the remote to ``_build``. This will use a fork of `sphinx-multiversion
+<https://github.com/Holzhaus/sphinx-multiversion>`_ to build multiple versions
+for the site.
 
-Creating Diagrams
------------------
+Creating Graphs and Diagrams
+----------------------------
 
-Inline Graphviz is supported:
-https://www.sphinx-doc.org/en/master/usage/extensions/graphviz.html
+Multiple tools are available to render inline text-based graphs definitions and
+diagrams within the documentation. This is preferred over images as it's easier
+to change and see changes over time as a diff.
 
-The blockdiag suite of tools can be used for other specific graph types:
+`Graphviz
+<https://www.sphinx-doc.org/en/master/usage/extensions/graphviz.html>`_
+supports many standard graph types.
 
-- Block diagrams: http://blockdiag.com/en/blockdiag/sphinxcontrib.html
-- Network diagrams (& racks): http://blockdiag.com/en/nwdiag/sphinxcontrib.html
+The `blockdiag <http://blockdiag.com/en/blockdiag/sphinxcontrib.html>`_,
+`nwdiag, and rackdiag <http://blockdiag.com/en/nwdiag/sphinxcontrib.html>`_,
+and `seqdiag <http://blockdiag.com/en/seqdiag/sphinxcontrib.html>`_ suites of
+tools can be used to create specific types of diagrams:
 
-Attributes that can be applied to nodes:
-http://blockdiag.com/en/blockdiag/attributes/node.attributes.html
+- `blockdiag examples <http://blockdiag.com/en/blockdiag/examples.html>`_
+- `nwdiag examples <http://blockdiag.com/en/nwdiag/nwdiag-examples.html>`_
+- `rackdiag examples <http://blockdiag.com/en/nwdiag/rackdiag-examples.html>`_
+- `seqdiag examples <http://blockdiag.com/en/seqdiag/examples.html>`_
 
-Examples:
-
-- blockdiag: http://blockdiag.com/en/blockdiag/examples.html
-- nwdiag: http://blockdiag.com/en/nwdiag/nwdiag-examples.html
-- rackdiag: http://blockdiag.com/en/nwdiag/rackdiag-examples.html
+The styles applied to nodes and connections in these diagrams can be customized
+using `attributes
+<http://blockdiag.com/en/blockdiag/attributes/node.attributes.html>`_.
diff --git a/release-notes/release_process.rst b/release-notes/release_process.rst
new file mode 100644
index 0000000..632dd7e
--- /dev/null
+++ b/release-notes/release_process.rst
@@ -0,0 +1,158 @@
+Release Process
+===============
+
+This document describes the technical steps to create a new release of VOLTHA.
+
+Creating the initial release
+----------------------------
+
+A release branch name is decided on, where all tagged releases will be created
+in each repo. Historically this has been ``voltha`` followed by the Major and
+Minor `Semver <https://semver.org/>`_ version, such as ``voltha-2.2``,
+``voltha-2.3``, etc.  The rest of this section will use the ``voltha-2.3``
+release as an example:
+
+A branch named ``voltha-2.3`` is created on the voltha-helm-charts repo.  Release
+candidates will be created of each chart for the ``2.3`` release. The action that
+indicates the creation of the ``2.3`` release is to changing the `voltha
+<https://gerrit.opencord.org/gitweb?p=voltha-helm-charts.git;a=tree;f=voltha>`_
+helm chart, and adapter charts with version: ``2.3.0`` specified in ``Chart.yaml``
+within the `voltha-helm-charts
+<https://gerrit.opencord.org/gitweb?p=voltha-helm-charts.git;a=summary>`_ repo.
+
+Accompanying tests for 2.3 are created by creating a branch created named
+``voltha-2.3`` on the `voltha-system-tests
+<https://gerrit.opencord.org/gitweb?p=voltha-system-tests.git;a=summary>`_
+repo. At release we create a tag ``2.3.0`` on that branch.
+
+These two repos are the only ones that receive a ``2.3.0`` tag. Other repos that
+contain individual components have their own versioning/release cadence, driven
+by SemVer.
+
+For all other repos that create components that go into the release, tags will
+be created and ``voltha-2.3`` branches are created starting from the tag.
+
+To allow for future patches to go into the repo in a way that does not conflict
+with the patch version, each component repo's ``VERSION`` file should have it's
+Minor version increased. (ex: ``1.1.x`` to ``1.2.0-dev``, so future ``1.1.x+1``
+component release can easily be created).
+
+Testing CI jobs will be created that check out the voltha-2.3 branch of the
+`voltha-system-tests
+<https://gerrit.opencord.org/gitweb?p=voltha-system-tests.git;a=summary>`_
+repo, testing the charts as checked out with the ``voltha-2.3`` branch of
+``voltha-helm-charts``.  Patches on the ``voltha-2.3`` branch of components
+that build containers will need to be changed to rebuild those containers and
+test with the ``voltha-2.3`` branch of helm charts.
+
+Creating point releases on a stable branch
+------------------------------------------
+
+If a fix is only needed to the helm charts:
+
+- Make the fix on the master branch of voltha-helm-charts (assuming that it is
+  required in both places).
+
+- After the master tests pass, manually cherry-pick the fix to the voltha-2.3
+  branch (the Chart.yaml version would be different, requiring the manual
+  step).
+
+- Cherry-picked patchsets on that branch will be checked by the voltha-2.3
+  branch of tests.
+
+- When it passes, submitting the change will make a new 2.3.x release
+
+If a fix is needed to the components/containers that are included by the helm
+charts:
+
+- Develop a fix to the issue on the master branch, get it approved after
+  passing master tests.
+
+- Manually cherry-pick to the voltha-2.3 branch of the component, incrementing
+  the patch version, and test with the voltha-2.3 version of
+  voltha-system-tests and helm charts.
+
+- Update helm charts and go through the helm chart update process above.
+
+
+What changes can be brought into a stable branch?
+-------------------------------------------------
+
+For a change to be suitable for a stable branch, it has to be either a:
+
+- Bug
+- Non-code fix (documentation, build process)
+- Security or compatibility updates (problem found in a dependency, upstream
+  software EOL, etc.)
+
+Process to create a change on a stable branch
+
+- Add a Jira item, with the ``Affects Version: ``VOLTHA vX.X`` set
+- Discuss and get consensus on the issue via the Voltha mailing list, in the
+  all-Voltha meeting, or on Slack about whether this fix should be brought to a
+  stable branch
+- Create a fix, and go through the integration process to create a new point
+  release.
+
+What is a bug?
+""""""""""""""
+
+- Anything that causes a functional regression test (Robot tests) to fail
+- Not a new feature!
+- Severe issue (causes data loss or crash), or frequently occurring are
+  generally more likely to be accepted.
+- Issues that are merely annoying and don't cause data loss or a crash, or
+  happen very infrequently or can't be reproduced may not be.
+
+As a best practice, please add tests when bugs are found, if tests don't
+currently cover the particular bug. Examples:
+
+- Robot tests for integration-related issues
+- Unit tests for code-level issues
+
+
+Repos branched for each release
+-------------------------------
+
+Charts
+""""""
+
+- voltha-helm-charts
+
+Testing
+"""""""
+
+- voltha-system-tests
+
+Tools
+"""""
+
+- bbsim (also creates containers)
+- voltctl
+
+ONOS Apps
+"""""""""
+
+- aaa
+- dhcpl2relay
+- igmp
+- kafka
+- mcast
+- olt
+- sadis
+
+Libraries
+"""""""""
+
+- pyvoltha
+- voltha-lib-go
+- voltha-protos
+
+Components (which build containers)
+"""""""""""""""""""""""""""""""""""
+- ofagent-go
+- voltha-go (rw_core)
+- voltha-openolt-adapter
+- voltha-openonu-adapter
+- voltha-onos (includes ONOS Apps)
+
diff --git a/release_notes/voltha_2.2.rst b/release-notes/voltha-2.2.rst
similarity index 100%
rename from release_notes/voltha_2.2.rst
rename to release-notes/voltha-2.2.rst
diff --git a/release-notes/voltha-2.3.rst b/release-notes/voltha-2.3.rst
new file mode 100644
index 0000000..131cb05
--- /dev/null
+++ b/release-notes/voltha-2.3.rst
@@ -0,0 +1,71 @@
+VOLTHA 2.3 Release Notes
+========================
+
+Highlights
+----------
+
+
+Core
+----
+
+
+Development process
+-------------------
+
+
+Testing
+-------
+
+
+Documentation
+-------------
+
+
+Known Issues
+------------
+
+
+Component Versions
+------------------
+
+**Helm Charts**
+
+Git repo: `voltha-helm-charts <https://gerrit.opencord.org/gitweb?p=voltha-helm-charts.git;a=tree;h=refs/heads/voltha-2.3>`_
+
+voltha ``2.3.1`` with container images:
+
+- voltha-rw-core: ``2.3.6``
+- voltha-ofagent-go: ``1.1.6``
+
+voltha-adapter-openolt: ``2.3.0`` with container image voltha-openolt-adapter: ``2.3.21``
+
+voltha-adapter-openonu ``2.3.0`` with container image voltha-openonu-adapter: ``2.3.6``
+
+voltha-onos: ``3.0.1`` using container image ``4.0.2``
+
+bbsim: ``3.0.18`` using container image: ``0.1.0``
+
+**ONOS**
+
+Version: ``2.2.2``
+
+App versions:
+
+- aaa: ``2.0.2``
+- dhcpl2relay: ``2.0.2``
+- igmpproxy: ``2.0.0``
+- kafka: ``2.2.0``
+- mcast: ``2.0.0``
+- olt: ``4.0.2``
+- sadis: ``5.0.1``
+
+**BBSim**
+
+- container: ``0.1.0``
+
+**OpenOLT Agent** ``2.3.0`` using ``BAL 3.2.3.2`` SDK
+
+- ``openolt_2_3_0_asfvolt16.deb`` (available from EdgeCore site)
+- Get access credentials for https://edgecore.quickconnect.to and then login
+  and navigate to File_Station -> EdgecoreNAS, and then the folder
+  /ASXvOLT16/OpenOLT_Agent/From_ONF_Distribution/ and pick the version above
diff --git a/requirements.txt b/requirements.txt
index 6f4c716..3a3044c 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,12 +1,10 @@
-Sphinx~=2.4.3
+Sphinx~=2.4.4
 actdiag~=2.0.0
 blockdiag~=1.5.4
 doc8~=0.8.0
-livereload~=2.6.1
 nwdiag~=2.0.0
 recommonmark~=0.6.0
 seqdiag~=2.0.0
-sphinx-reload~=0.2.0
 sphinx-rtd-theme~=0.4.3
 sphinxcontrib-actdiag~=2.0.0
 sphinxcontrib-blockdiag~=2.0.0
@@ -14,9 +12,6 @@
 sphinxcontrib-openapi~=0.6.0
 sphinxcontrib-seqdiag~=2.0.0
 sphinxcontrib-spelling~=4.3.0
-# using a fork as the main branch is broken in newer sphinx, per:
-# https://github.com/sphinx-contrib/sphinxcontrib-versioning/issues/58
-# also added functionality to support working with other repos
-git+https://github.com/zdw/sphinxcontrib-versioning@0998d870b2791eb6343c98e98d6680c1e727daee
+git+https://github.com/zdw/sphinx-multiversion@ec7c01cdaf2f9241245e84483dfb9bc0d0dffc62
 # sphinx-autoapi~=1.2.1
 # sphinxcontrib-golangdomain==0.2.0.dev0
diff --git a/testing/index.rst b/testing/index.rst
index 764a271..0d10dc9 100644
--- a/testing/index.rst
+++ b/testing/index.rst
@@ -1,9 +1,11 @@
-VOLTHA System Tests Documentation
-=================================
+VOLTHA Robot Test Libraries
+===========================
 
-Below are links to the documentation generated by robot.libdoc from the Robot resources
-in the `voltha-system-tests <https://github.com/opencord/voltha-system-tests>`_ repository.
-These files can also be generated locally by checking out the repo and running **make gendocs**.
+Below are links to the documentation generated by ``robot.libdoc`` from the
+Robot resources in the `voltha-system-tests
+<https://github.com/opencord/voltha-system-tests>`_ repository.  These files
+can also be generated locally by checking out the repo and running **make
+gendocs**.
 
 Libraries
 ---------
@@ -25,12 +27,13 @@
 
 
 Package "cord-robot" Documentation
-==================================
+----------------------------------
 
-Below are links to the documentation generated by robot.libdoc for the Robot resources
-in the `cord-robot <https://pypi.org/project/cord-robot/>`_ Python pacakge.
-These files can also be generated locally by checking out the `cord-tester <https://github.com/opencord/cord-tester>`_
-repo and running **make gendocs**.
+Below are links to the documentation generated by ``robot.libdoc`` for the
+Robot resources in the `cord-robot <https://pypi.org/project/cord-robot/>`_
+Python package These files can also be generated locally by checking out the
+`cord-tester <https://github.com/opencord/cord-tester>`_ repo and running
+**make gendocs**.
 
 Libraries
 ---------