Merge 637621a470c85c2ec547c60997382523e208b03a on remote branch

Change-Id: Icfcf6dc7f4f5d8f406c3f126f440ec2543138ecc
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..eaf0973
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+__pycache__
+python/pandora/*
+!python/pandora/__init__.py
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..c15b5c7
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,64 @@
+package {
+    default_applicable_licenses: [
+        "external_pandora_bt-test-interfaces_license",
+    ],
+}
+
+// Added automatically by a large-scale-change
+// See: http://go/android-license-faq
+license {
+    name: "external_pandora_bt-test-interfaces_license",
+    visibility: [":__subpackages__"],
+    license_kinds: [
+        "SPDX-license-identifier-Apache-2.0",
+    ],
+    license_text: [
+        "LICENSE",
+    ],
+}
+
+genrule {
+    name: "protoc-gen-mmi2grpc-python-src-interfaces",
+    srcs: ["python/_build/protoc-gen-custom_grpc"],
+    cmd: "cp $(in) $(out)",
+    out: ["protoc-gen-custom_grpc.py"],
+}
+
+python_binary_host {
+    name: "protoc-gen-custom_grpc",
+    main: "protoc-gen-custom_grpc.py",
+    srcs: [":protoc-gen-mmi2grpc-python-src-interfaces"],
+    libs: ["libprotobuf-python"],
+}
+
+genrule {
+    name: "pandora-python-src",
+    tools: [
+        "aprotoc",
+        "protoc-gen-custom_grpc"
+    ],
+    cmd: "$(location aprotoc)" +
+         "    -Iexternal/pandora/bt-test-interfaces" +
+         "    -Iexternal/protobuf/src" +
+         "    --plugin=protoc-gen-grpc=$(location protoc-gen-custom_grpc)" +
+         "    --grpc_out=$(genDir)" +
+         "    --python_out=$(genDir)" +
+         "    $(in)",
+    srcs: [
+        "pandora/a2dp.proto",
+        "pandora/host.proto",
+    ],
+    out: [
+        "pandora/a2dp_grpc.py",
+        "pandora/a2dp_pb2.py",
+        "pandora/host_grpc.py",
+        "pandora/host_pb2.py",
+    ]
+}
+
+python_library_host {
+    name: "pandora-python",
+    srcs: [
+        ":pandora-python-src",
+    ],
+}
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..780d441
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,29 @@
+# How to Contribute
+
+We'd love to accept your patches and contributions to this project. There are
+just a few small guidelines you need to follow.
+
+## Contributor License Agreement
+
+Contributions to this project must be accompanied by a Contributor License
+Agreement. You (or your employer) retain the copyright to your contribution;
+this simply gives us permission to use and redistribute your contributions as
+part of the project. Head over to <https://cla.developers.google.com/> to see
+your current agreements on file or to sign a new one.
+
+You generally only need to submit a CLA once, so if you've already submitted one
+(even if it was for a different project), you probably don't need to do it
+again.
+
+## Style Guide
+
+Every contributions must follow the [project style guide](doc/style-guide.md).
+
+## Code Reviews
+
+All submissions, including submissions by project members, require review.
+
+## Community Guidelines
+
+This project follows [Google's Open Source Community
+Guidelines](https://opensource.google/conduct/).
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..d645695
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,202 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
diff --git a/METADATA b/METADATA
new file mode 100644
index 0000000..9dfe4d5
--- /dev/null
+++ b/METADATA
@@ -0,0 +1,10 @@
+name: "pandora/bt-test-interfaces"
+description:
+    "The Pandora Bluetooth test interfaces are Remote Procedure Call (RPC) "
+    "interfaces exposed to testing tools to trigger behaviors within a "
+    "Bluetooth stack under test."
+
+third_party: {
+  type: GOOGLE_INTERNAL
+  license_type: NOTICE
+}
diff --git a/MODULE_LICENSE_APACHE2 b/MODULE_LICENSE_APACHE2
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/MODULE_LICENSE_APACHE2
diff --git a/OWNERS b/OWNERS
new file mode 100644
index 0000000..d4db030
--- /dev/null
+++ b/OWNERS
@@ -0,0 +1,3 @@
+girardier@google.com
+licorne@google.com
+charliebout@google.com
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..6d37cb8
--- /dev/null
+++ b/README.md
@@ -0,0 +1,13 @@
+# Pandora Bluetooth test interfaces
+
+Pandora Bluetooth test interfaces are Remote Procedure Call (RPC) interfaces
+exposed to testing tools to trigger behaviors within a Bluetooth stack under
+test. They are built using the following [requirements](doc/overview.md) and
+[style guide](doc/style-guide.md).
+
+A test interface is defined for each Bluetooth profile.
+
+## Supported profiles
+
+* **Host**: interfaces for general methods (pairing, connection...).
+* **A2DP**: Advanced Audio Distribution Profile.
diff --git a/doc/grpc-md.tmpl b/doc/grpc-md.tmpl
new file mode 100644
index 0000000..e691639
--- /dev/null
+++ b/doc/grpc-md.tmpl
@@ -0,0 +1,85 @@
+{{range .Files}}
+# {{.Name | base | replace ".proto" "" | upper}} API
+
+## Index
+
+{{range .Services -}}
+* <code><a href=#{{.FullName}}>{{.Name}}</a></code> (interface)
+{{end}}
+{{range .Messages -}}
+* <code><a href=#{{.FullName}}>{{.Name}}</a></code> (message)
+{{end}}
+{{range .Enums -}}
+* <code><a href=#{{.FullName}}>{{.Name}}</a></code> (enum)
+{{end}}
+
+{{range .Services -}}
+<a name="{{.FullName}}"></a>
+## {{.Name}}
+
+{{.Description}}
+
+{{range .Methods -}}
+### {{.Name}}
+<code> rpc {{.Name}}({{if .RequestStreaming}}stream {{end}}<a href=#{{.RequestFullType}}>{{.RequestLongType}}</a>) returns ({{if .ResponseStreaming}}stream {{end}}<a href=#{{.ResponseFullType}}>{{.ResponseLongType}}</a>)</code>
+
+{{.Description}}
+
+{{end}} <!-- end Methods -->
+
+{{end}} <!-- end Services -->
+
+{{range .Messages -}}
+<a name="{{.FullName}}"></a>
+## {{.Name}}
+
+{{.Description}}
+
+{{if .HasFields}}
+<table class="properties responsive">
+    <thead>
+        <tr><th colspan="2">Fields</th></tr>
+    </thead>
+    <tbody>
+    {{range .Fields -}}
+        <tr>
+            <td><code>{{if .IsOneof}}<a href=https://developers.google.com/protocol-buffers/docs/proto3#oneof>oneof</a> {{.OneofDecl}}.{{end}}{{.Name}}</code></td>
+            <td>
+                <code><a href=#{{.FullType}}>{{.LongType}}</a></code>
+                <br><br>
+                {{.Description}}
+                {{if .DefaultValue}}<br><br>Default: <code>{{.DefaultValue}}</code>{{end}}
+            </td>
+        </tr>
+    {{end}}
+    </tbody>
+</table>
+{{end}}
+
+{{end}} <!-- end Messages-->
+
+{{range .Enums -}}
+<a name="{{.FullName}}"></a>
+## {{.LongName}}
+
+<table class="constants responsive">
+    <thead>
+        <tr><th colspan="2">Enums</th></tr>
+    </thead>
+    <tbody>
+    {{range .Values -}}
+        <tr>
+            <td><code>{{.Name}}</code></td>
+            <td>
+                <code>{{.Number}}</code>
+                <br><br>
+                {{.Description}}
+            </td>
+        </tr>
+    {{end}}
+    </tbody>
+</table>
+
+{{end}} <!-- end Enums -->
+
+{{end}} <!-- end Files -->
diff --git a/doc/images/pts-bot-aosp.svg b/doc/images/pts-bot-aosp.svg
new file mode 100644
index 0000000..5e831ae
--- /dev/null
+++ b/doc/images/pts-bot-aosp.svg
@@ -0,0 +1 @@
+<svg version="1.1" viewBox="0.0 0.0 723.3569553805775 539.7349081364829" 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 0l723.35693 0l0 539.7349l-723.35693 0l0 -539.7349z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000" fill-opacity="0.0" d="m0 0l723.35693 0l0 539.7349l-723.35693 0z" fill-rule="evenodd"/><path fill="#ffffff" d="m11.530184 21.45605l0 0c0 -5.1615505 4.184263 -9.345815 9.345814 -9.345815l318.94617 0c2.4786682 0 4.8558044 0.98464584 6.60849 2.7373257c1.752655 1.7526808 2.7373047 4.1298246 2.7373047 6.608489l0 371.95404c0 5.16156 -4.184265 9.345825 -9.345795 9.345825l-318.94617 0c-5.1615505 0 -9.345814 -4.184265 -9.345814 -9.345825z" fill-rule="evenodd"/><path stroke="#e8ecef" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m11.530184 21.45605l0 0c0 -5.1615505 4.184263 -9.345815 9.345814 -9.345815l318.94617 0c2.4786682 0 4.8558044 0.98464584 6.60849 2.7373257c1.752655 1.7526808 2.7373047 4.1298246 2.7373047 6.608489l0 371.95404c0 5.16156 -4.184265 9.345825 -9.345795 9.345825l-318.94617 0c-5.1615505 0 -9.345814 -4.184265 -9.345814 -9.345825z" fill-rule="evenodd"/><path fill="#f3f5f6" d="m20.351912 12.110236l320.703 0c2.245697 0 4.399414 0.8920984 5.9873657 2.4800434c1.5879517 1.587945 2.4800415 3.74166 2.4800415 5.987355l0 19.627089c0 0.0015563965 -0.0012512207 0.0028152466 -0.0028076172 0.0028152466l-337.63498 -0.0028152466l0 0c-0.0015544891 0 -0.002814293 -0.0012588501 -0.002814293 -0.002811432l0.002814293 -19.624277l0 0c0 -4.6764154 3.7909832 -8.467399 8.467397 -8.467399z" fill-rule="evenodd"/><path stroke="#e8ecef" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m20.351912 12.110236l320.703 0c2.245697 0 4.399414 0.8920984 5.9873657 2.4800434c1.5879517 1.587945 2.4800415 3.74166 2.4800415 5.987355l0 19.627089c0 0.0015563965 -0.0012512207 0.0028152466 -0.0028076172 0.0028152466l-337.63498 -0.0028152466l0 0c-0.0015544891 0 -0.002814293 -0.0012588501 -0.002814293 -0.002811432l0.002814293 -19.624277l0 0c0 -4.6764154 3.7909832 -8.467399 8.467397 -8.467399z" fill-rule="evenodd"/><path fill="#3b454e" d="m86.24174 30.213112l0.546875 1.984375l1.921875 0l-3.03125 -9.46875l-1.671875 0l-3.09375 9.46875l1.921875 0l0.5625 -1.984375l2.84375 0zm-2.390625 -1.546875l0.984375 -3.484375l0.96875 3.484375l-1.953125 0zm5.795059 3.53125l1.8125 0l0 -5.0q0.09375 -0.140625 0.203125 -0.25q0.109375 -0.125 0.25 -0.21875q0.15625 -0.109375 0.375 -0.171875q0.21875 -0.0625 0.484375 -0.0625q0.3125 0 0.5625 0.0625q0.25 0.0625 0.421875 0.21875q0.171875 0.15625 0.265625 0.4375q0.09375 0.265625 0.09375 0.671875l0 4.3125l1.8125 0l0 -4.328125q0 -0.78125 -0.1875 -1.3125q-0.171875 -0.53125 -0.484375 -0.875q-0.328125 -0.34375 -0.78125 -0.5q-0.4375 -0.15625 -0.96875 -0.15625q-0.421875 0 -0.796875 0.125q-0.359375 0.109375 -0.671875 0.328125q-0.1875 0.125 -0.34375 0.296875q-0.15625 0.15625 -0.296875 0.359375l-0.109375 -0.984375l-1.640625 0l0 7.046875zm7.810684 -3.578125l0 0.140625q0 0.765625 0.1875 1.421875q0.1875 0.65625 0.546875 1.125q0.34375 0.484375 0.859375 0.75q0.515625 0.265625 1.15625 0.265625q0.59375 0 1.03125 -0.21875q0.453125 -0.234375 0.78125 -0.640625l0.09375 0.734375l1.640625 0l0 -10.0l-1.8125 0l0 3.59375q-0.328125 -0.375 -0.75 -0.5625q-0.421875 -0.203125 -0.96875 -0.203125q-0.65625 0 -1.171875 0.265625q-0.515625 0.25 -0.875 0.734375q-0.359375 0.46875 -0.546875 1.140625q-0.171875 0.65625 -0.171875 1.453125zm1.796875 0.140625l0 -0.140625q0 -0.4375 0.078125 -0.828125q0.078125 -0.390625 0.25 -0.671875q0.171875 -0.296875 0.4375 -0.453125q0.28125 -0.171875 0.65625 -0.171875q0.46875 0 0.765625 0.203125q0.3125 0.203125 0.5 0.546875l0 2.859375q-0.1875 0.34375 -0.5 0.546875q-0.3125 0.203125 -0.78125 0.203125q-0.375 0 -0.640625 -0.15625q-0.265625 -0.171875 -0.4375 -0.453125q-0.171875 -0.28125 -0.25 -0.65625q-0.078125 -0.390625 -0.078125 -0.828125zm11.435684 -3.734375q-0.703125 0 -1.3125 0.34375q-0.59375 0.34375 -1.015625 0.9375l-0.015625 -0.15625l-0.078125 -1.0l-1.671875 0l0 7.046875l1.796875 0l0 -4.234375q0.125 -0.296875 0.3125 -0.515625q0.1875 -0.21875 0.453125 -0.359375q0.234375 -0.125 0.515625 -0.1875q0.28125 -0.0625 0.625 -0.0625q0.34375 0 0.71875 0.046875q0.375 0.03125 0.734375 0.125l0.265625 -1.8125q-0.21875 -0.0625 -0.5625 -0.109375q-0.34375 -0.0625 -0.765625 -0.0625zm2.7013092 3.59375l0 0.125q0 0.78125 0.21875 1.4375q0.21875 0.65625 0.65625 1.125q0.421875 0.484375 1.03125 0.765625q0.625 0.265625 1.421875 0.265625q0.796875 0 1.40625 -0.265625q0.625 -0.28125 1.046875 -0.765625q0.421875 -0.46875 0.640625 -1.125q0.21875 -0.65625 0.21875 -1.4375l0 -0.125q0 -0.78125 -0.21875 -1.421875q-0.21875 -0.65625 -0.640625 -1.140625q-0.4375 -0.484375 -1.0625 -0.75q-0.609375 -0.28125 -1.40625 -0.28125q-0.78125 0 -1.40625 0.28125q-0.609375 0.265625 -1.03125 0.75q-0.4375 0.484375 -0.65625 1.140625q-0.21875 0.640625 -0.21875 1.421875zm1.8125 0.125l0 -0.125q0 -0.4375 0.078125 -0.8125q0.09375 -0.390625 0.265625 -0.6875q0.1875 -0.296875 0.46875 -0.453125q0.28125 -0.171875 0.6875 -0.171875q0.421875 0 0.703125 0.171875q0.28125 0.15625 0.46875 0.453125q0.171875 0.296875 0.25 0.6875q0.09375 0.375 0.09375 0.8125l0 0.125q0 0.453125 -0.09375 0.84375q-0.078125 0.375 -0.25 0.65625q-0.1875 0.296875 -0.46875 0.46875q-0.28125 0.171875 -0.6875 0.171875q-0.40625 0 -0.703125 -0.171875q-0.28125 -0.171875 -0.46875 -0.46875q-0.171875 -0.28125 -0.265625 -0.65625q-0.078125 -0.390625 -0.078125 -0.84375zm6.920059 -3.59375l0 1.484375l2.0 0l0 4.09375l-2.0 0l0 1.46875l5.734375 0l0 -1.46875l-1.90625 0l0 -5.578125l-3.828125 0zm1.875 -1.796875q0 0.203125 0.0625 0.390625q0.078125 0.171875 0.21875 0.296875q0.140625 0.125 0.328125 0.203125q0.1875 0.078125 0.421875 0.078125q0.484375 0 0.765625 -0.265625q0.28125 -0.28125 0.28125 -0.703125q0 -0.421875 -0.28125 -0.6875q-0.28125 -0.28125 -0.765625 -0.28125q-0.234375 0 -0.421875 0.078125q-0.1875 0.0625 -0.328125 0.1875q-0.140625 0.140625 -0.21875 0.328125q-0.0625 0.171875 -0.0625 0.375zm5.4513016 5.265625l0 0.140625q0 0.765625 0.1875 1.421875q0.1875 0.65625 0.546875 1.125q0.34375 0.484375 0.859375 0.75q0.515625 0.265625 1.15625 0.265625q0.59375 0 1.03125 -0.21875q0.453125 -0.234375 0.78125 -0.640625l0.09375 0.734375l1.640625 0l0 -10.0l-1.8125 0l0 3.59375q-0.328125 -0.375 -0.75 -0.5625q-0.421875 -0.203125 -0.96875 -0.203125q-0.65625 0 -1.171875 0.265625q-0.515625 0.25 -0.875 0.734375q-0.359375 0.46875 -0.546875 1.140625q-0.171875 0.65625 -0.171875 1.453125zm1.796875 0.140625l0 -0.140625q0 -0.4375 0.078125 -0.828125q0.078125 -0.390625 0.25 -0.671875q0.171875 -0.296875 0.4375 -0.453125q0.28125 -0.171875 0.65625 -0.171875q0.46875 0 0.765625 0.203125q0.3125 0.203125 0.5 0.546875l0 2.859375q-0.1875 0.34375 -0.5 0.546875q-0.3125 0.203125 -0.78125 0.203125q-0.375 0 -0.640625 -0.15625q-0.265625 -0.171875 -0.4375 -0.453125q-0.171875 -0.28125 -0.25 -0.65625q-0.078125 -0.390625 -0.078125 -0.828125zm14.277618 3.4375l2.546875 0q0.625 0 1.1875 -0.15625q0.5625 -0.15625 1.015625 -0.453125q0.40625 -0.25 0.734375 -0.609375q0.328125 -0.375 0.578125 -0.8125q0.25 -0.484375 0.390625 -1.0625q0.15625 -0.59375 0.15625 -1.25l0 -0.78125q0 -0.6875 -0.15625 -1.28125q-0.15625 -0.609375 -0.4375 -1.109375q-0.234375 -0.40625 -0.5625 -0.75q-0.3125 -0.359375 -0.734375 -0.59375q-0.46875 -0.296875 -1.046875 -0.453125q-0.5625 -0.15625 -1.21875 -0.15625l-2.453125 0l0 9.46875zm1.84375 -7.984375l0.609375 0q0.328125 0 0.609375 0.078125q0.296875 0.0625 0.53125 0.203125q0.296875 0.1875 0.53125 0.46875q0.234375 0.28125 0.375 0.640625q0.109375 0.3125 0.171875 0.6875q0.0625 0.359375 0.0625 0.765625l0 0.796875q0 0.4375 -0.0625 0.8125q-0.0625 0.375 -0.171875 0.6875q-0.140625 0.34375 -0.34375 0.609375q-0.203125 0.265625 -0.453125 0.4375q-0.234375 0.15625 -0.53125 0.25q-0.28125 0.078125 -0.625 0.078125l-0.703125 0l0 -6.515625zm9.670074 8.109375q1.03125 0 1.78125 -0.390625q0.75 -0.390625 1.09375 -0.890625l-0.90625 -0.96875q-0.3125 0.40625 -0.8125 0.609375q-0.5 0.1875 -1.046875 0.1875q-0.375 0 -0.703125 -0.109375q-0.3125 -0.125 -0.546875 -0.328125q-0.25 -0.21875 -0.390625 -0.46875q-0.140625 -0.265625 -0.234375 -0.6875l0 -0.015625l4.78125 0l0 -0.765625q0 -0.78125 -0.21875 -1.421875q-0.21875 -0.640625 -0.625 -1.09375q-0.421875 -0.453125 -1.015625 -0.703125q-0.59375 -0.25 -1.359375 -0.25q-0.734375 0 -1.359375 0.265625q-0.625 0.265625 -1.078125 0.75q-0.453125 0.484375 -0.703125 1.15625q-0.25 0.65625 -0.25 1.46875l0 0.25q0 0.71875 0.25 1.34375q0.265625 0.609375 0.734375 1.078125q0.46875 0.453125 1.125 0.71875q0.671875 0.265625 1.484375 0.265625zm-0.203125 -5.828125q0.34375 0 0.59375 0.109375q0.265625 0.09375 0.453125 0.28125q0.1875 0.1875 0.28125 0.453125q0.109375 0.25 0.109375 0.53125l0 0.140625l-2.96875 0q0.0625 -0.34375 0.1875 -0.625q0.140625 -0.28125 0.34375 -0.484375q0.1875 -0.203125 0.4375 -0.296875q0.25 -0.109375 0.5625 -0.109375zm7.029419 5.703125l1.703125 0l2.671875 -7.046875l-1.890625 0l-1.546875 4.96875l-0.09375 0.5l-0.09375 -0.5l-1.546875 -4.96875l-1.890625 0l2.6875 7.046875zm6.2481995 -7.046875l0 1.484375l2.0 0l0 4.09375l-2.0 0l0 1.46875l5.734375 0l0 -1.46875l-1.90625 0l0 -5.578125l-3.828125 0zm1.875 -1.796875q0 0.203125 0.0625 0.390625q0.078125 0.171875 0.21875 0.296875q0.140625 0.125 0.328125 0.203125q0.1875 0.078125 0.421875 0.078125q0.484375 0 0.765625 -0.265625q0.28125 -0.28125 0.28125 -0.703125q0 -0.421875 -0.28125 -0.6875q-0.28125 -0.28125 -0.765625 -0.28125q-0.234375 0 -0.421875 0.078125q-0.1875 0.0625 -0.328125 0.1875q-0.140625 0.140625 -0.21875 0.328125q-0.0625 0.171875 -0.0625 0.375zm8.748169 7.53125q-0.4375 0 -0.71875 -0.171875q-0.28125 -0.1875 -0.4375 -0.46875q-0.171875 -0.296875 -0.234375 -0.671875q-0.0625 -0.375 -0.0625 -0.796875l0 -0.1875q0 -0.40625 0.0625 -0.78125q0.0625 -0.375 0.234375 -0.671875q0.171875 -0.296875 0.4375 -0.46875q0.28125 -0.171875 0.71875 -0.171875q0.296875 0 0.53125 0.109375q0.25 0.09375 0.421875 0.25q0.1875 0.171875 0.265625 0.40625q0.09375 0.234375 0.09375 0.5l1.703125 0q0 -0.625 -0.21875 -1.125q-0.21875 -0.515625 -0.609375 -0.875q-0.40625 -0.34375 -0.96875 -0.53125q-0.546875 -0.203125 -1.203125 -0.203125q-0.8125 0 -1.421875 0.28125q-0.609375 0.28125 -1.03125 0.765625q-0.421875 0.46875 -0.625 1.125q-0.203125 0.640625 -0.203125 1.390625l0 0.1875q0 0.75 0.203125 1.40625q0.21875 0.640625 0.625 1.125q0.421875 0.46875 1.03125 0.75q0.625 0.28125 1.4375 0.28125q0.609375 0 1.15625 -0.1875q0.546875 -0.203125 0.953125 -0.53125q0.40625 -0.34375 0.640625 -0.8125q0.234375 -0.46875 0.234375 -1.015625l-1.703125 0q0 0.25 -0.109375 0.453125q-0.09375 0.203125 -0.265625 0.34375q-0.1875 0.140625 -0.4375 0.21875q-0.234375 0.078125 -0.5 0.078125zm8.295074 1.4375q1.03125 0 1.78125 -0.390625q0.75 -0.390625 1.09375 -0.890625l-0.90625 -0.96875q-0.3125 0.40625 -0.8125 0.609375q-0.5 0.1875 -1.046875 0.1875q-0.375 0 -0.703125 -0.109375q-0.3125 -0.125 -0.546875 -0.328125q-0.25 -0.21875 -0.390625 -0.46875q-0.140625 -0.265625 -0.234375 -0.6875l0 -0.015625l4.78125 0l0 -0.765625q0 -0.78125 -0.21875 -1.421875q-0.21875 -0.640625 -0.625 -1.09375q-0.421875 -0.453125 -1.015625 -0.703125q-0.59375 -0.25 -1.359375 -0.25q-0.734375 0 -1.359375 0.265625q-0.625 0.265625 -1.078125 0.75q-0.453125 0.484375 -0.703125 1.15625q-0.25 0.65625 -0.25 1.46875l0 0.25q0 0.71875 0.25 1.34375q0.265625 0.609375 0.734375 1.078125q0.46875 0.453125 1.125 0.71875q0.671875 0.265625 1.484375 0.265625zm-0.203125 -5.828125q0.34375 0 0.59375 0.109375q0.265625 0.09375 0.453125 0.28125q0.1875 0.1875 0.28125 0.453125q0.109375 0.25 0.109375 0.53125l0 0.140625l-2.96875 0q0.0625 -0.34375 0.1875 -0.625q0.140625 -0.28125 0.34375 -0.484375q0.1875 -0.203125 0.4375 -0.296875q0.25 -0.109375 0.5625 -0.109375zm19.043243 -3.765625l-1.828125 0l0 6.265625q0 0.46875 -0.09375 0.828125q-0.09375 0.34375 -0.28125 0.578125q-0.171875 0.234375 -0.4375 0.34375q-0.25 0.109375 -0.578125 0.109375q-0.296875 0 -0.53125 -0.109375q-0.234375 -0.109375 -0.40625 -0.3125q-0.171875 -0.234375 -0.265625 -0.59375q-0.078125 -0.359375 -0.09375 -0.84375l0 -6.265625l-1.828125 0l-0.015625 6.265625q0 0.796875 0.21875 1.421875q0.234375 0.625 0.640625 1.046875q0.421875 0.421875 0.984375 0.640625q0.578125 0.21875 1.296875 0.21875q0.765625 0 1.359375 -0.21875q0.59375 -0.21875 1.015625 -0.640625q0.40625 -0.4375 0.625 -1.046875q0.21875 -0.625 0.21875 -1.421875l0 -6.265625zm1.748169 9.46875l1.8125 0l0 -5.0q0.09375 -0.140625 0.203125 -0.25q0.109375 -0.125 0.25 -0.21875q0.15625 -0.109375 0.375 -0.171875q0.21875 -0.0625 0.484375 -0.0625q0.3125 0 0.5625 0.0625q0.25 0.0625 0.421875 0.21875q0.171875 0.15625 0.265625 0.4375q0.09375 0.265625 0.09375 0.671875l0 4.3125l1.8125 0l0 -4.328125q0 -0.78125 -0.1875 -1.3125q-0.171875 -0.53125 -0.484375 -0.875q-0.328125 -0.34375 -0.78125 -0.5q-0.4375 -0.15625 -0.96875 -0.15625q-0.421875 0 -0.796875 0.125q-0.359375 0.109375 -0.671875 0.328125q-0.1875 0.125 -0.34375 0.296875q-0.15625 0.15625 -0.296875 0.359375l-0.109375 -0.984375l-1.640625 0l0 7.046875zm7.8106995 -3.578125l0 0.140625q0 0.765625 0.1875 1.421875q0.1875 0.65625 0.546875 1.125q0.34375 0.484375 0.859375 0.75q0.515625 0.265625 1.15625 0.265625q0.59375 0 1.03125 -0.21875q0.453125 -0.234375 0.78125 -0.640625l0.09375 0.734375l1.640625 0l0 -10.0l-1.8125 0l0 3.59375q-0.328125 -0.375 -0.75 -0.5625q-0.421875 -0.203125 -0.96875 -0.203125q-0.65625 0 -1.171875 0.265625q-0.515625 0.25 -0.875 0.734375q-0.359375 0.46875 -0.546875 1.140625q-0.171875 0.65625 -0.171875 1.453125zm1.796875 0.140625l0 -0.140625q0 -0.4375 0.078125 -0.828125q0.078125 -0.390625 0.25 -0.671875q0.171875 -0.296875 0.4375 -0.453125q0.28125 -0.171875 0.65625 -0.171875q0.46875 0 0.765625 0.203125q0.3125 0.203125 0.5 0.546875l0 2.859375q-0.1875 0.34375 -0.5 0.546875q-0.3125 0.203125 -0.78125 0.203125q-0.375 0 -0.640625 -0.15625q-0.265625 -0.171875 -0.4375 -0.453125q-0.171875 -0.28125 -0.25 -0.65625q-0.078125 -0.390625 -0.078125 -0.828125zm9.795044 3.5625q1.03125 0 1.78125 -0.390625q0.75 -0.390625 1.09375 -0.890625l-0.90625 -0.96875q-0.3125 0.40625 -0.8125 0.609375q-0.5 0.1875 -1.046875 0.1875q-0.375 0 -0.703125 -0.109375q-0.3125 -0.125 -0.546875 -0.328125q-0.25 -0.21875 -0.390625 -0.46875q-0.140625 -0.265625 -0.234375 -0.6875l0 -0.015625l4.78125 0l0 -0.765625q0 -0.78125 -0.21875 -1.421875q-0.21875 -0.640625 -0.625 -1.09375q-0.421875 -0.453125 -1.015625 -0.703125q-0.59375 -0.25 -1.359375 -0.25q-0.734375 0 -1.359375 0.265625q-0.625 0.265625 -1.078125 0.75q-0.453125 0.484375 -0.703125 1.15625q-0.25 0.65625 -0.25 1.46875l0 0.25q0 0.71875 0.25 1.34375q0.265625 0.609375 0.734375 1.078125q0.46875 0.453125 1.125 0.71875q0.671875 0.265625 1.484375 0.265625zm-0.203125 -5.828125q0.34375 0 0.59375 0.109375q0.265625 0.09375 0.453125 0.28125q0.1875 0.1875 0.28125 0.453125q0.109375 0.25 0.109375 0.53125l0 0.140625l-2.96875 0q0.0625 -0.34375 0.1875 -0.625q0.140625 -0.28125 0.34375 -0.484375q0.1875 -0.203125 0.4375 -0.296875q0.25 -0.109375 0.5625 -0.109375zm9.841949 -1.46875q-0.703125 0 -1.3125 0.34375q-0.59375 0.34375 -1.015625 0.9375l-0.015625 -0.15625l-0.078125 -1.0l-1.671875 0l0 7.046875l1.796875 0l0 -4.234375q0.125 -0.296875 0.3125 -0.515625q0.1875 -0.21875 0.453125 -0.359375q0.234375 -0.125 0.515625 -0.1875q0.28125 -0.0625 0.625 -0.0625q0.34375 0 0.71875 0.046875q0.375 0.03125 0.734375 0.125l0.265625 -1.8125q-0.21875 -0.0625 -0.5625 -0.109375q-0.34375 -0.0625 -0.765625 -0.0625zm17.840118 -0.8125l0 -1.484375l-7.640625 0l0 1.484375l2.890625 0l0 7.984375l1.828125 0l0 -7.984375l2.921875 0zm4.513794 8.109375q1.03125 0 1.78125 -0.390625q0.75 -0.390625 1.09375 -0.890625l-0.90625 -0.96875q-0.3125 0.40625 -0.8125 0.609375q-0.5 0.1875 -1.046875 0.1875q-0.375 0 -0.703125 -0.109375q-0.3125 -0.125 -0.546875 -0.328125q-0.25 -0.21875 -0.390625 -0.46875q-0.140625 -0.265625 -0.234375 -0.6875l0 -0.015625l4.78125 0l0 -0.765625q0 -0.78125 -0.21875 -1.421875q-0.21875 -0.640625 -0.625 -1.09375q-0.421875 -0.453125 -1.015625 -0.703125q-0.59375 -0.25 -1.359375 -0.25q-0.734375 0 -1.359375 0.265625q-0.625 0.265625 -1.078125 0.75q-0.453125 0.484375 -0.703125 1.15625q-0.25 0.65625 -0.25 1.46875l0 0.25q0 0.71875 0.25 1.34375q0.265625 0.609375 0.734375 1.078125q0.46875 0.453125 1.125 0.71875q0.671875 0.265625 1.484375 0.265625zm-0.203125 -5.828125q0.34375 0 0.59375 0.109375q0.265625 0.09375 0.453125 0.28125q0.1875 0.1875 0.28125 0.453125q0.109375 0.25 0.109375 0.53125l0 0.140625l-2.96875 0q0.0625 -0.34375 0.1875 -0.625q0.140625 -0.28125 0.34375 -0.484375q0.1875 -0.203125 0.4375 -0.296875q0.25 -0.109375 0.5625 -0.109375zm9.326324 3.765625q0 0.171875 -0.078125 0.3125q-0.078125 0.125 -0.234375 0.234375q-0.171875 0.109375 -0.4375 0.171875q-0.265625 0.046875 -0.609375 0.046875q-0.296875 0 -0.578125 -0.046875q-0.28125 -0.0625 -0.484375 -0.1875q-0.21875 -0.125 -0.359375 -0.328125q-0.140625 -0.21875 -0.15625 -0.5l-1.71875 0q0 0.4375 0.203125 0.859375q0.21875 0.421875 0.625 0.75q0.40625 0.34375 1.015625 0.5625q0.609375 0.203125 1.40625 0.203125q0.71875 0 1.296875 -0.15625q0.59375 -0.171875 1.015625 -0.453125q0.40625 -0.28125 0.625 -0.671875q0.234375 -0.40625 0.234375 -0.875q0 -0.5 -0.234375 -0.859375q-0.21875 -0.375 -0.609375 -0.640625q-0.40625 -0.25 -0.953125 -0.40625q-0.546875 -0.171875 -1.171875 -0.28125q-0.453125 -0.0625 -0.734375 -0.140625q-0.28125 -0.09375 -0.453125 -0.203125q-0.171875 -0.109375 -0.234375 -0.234375q-0.0625 -0.140625 -0.0625 -0.296875q0 -0.15625 0.078125 -0.296875q0.078125 -0.140625 0.21875 -0.234375q0.15625 -0.125 0.390625 -0.1875q0.25 -0.0625 0.59375 -0.0625q0.390625 0 0.65625 0.09375q0.28125 0.09375 0.4375 0.265625q0.125 0.125 0.171875 0.28125q0.0625 0.140625 0.0625 0.3125l1.8125 0q0 -0.484375 -0.21875 -0.890625q-0.203125 -0.421875 -0.609375 -0.734375q-0.40625 -0.296875 -1.0 -0.46875q-0.578125 -0.171875 -1.3125 -0.171875q-0.703125 0 -1.265625 0.1875q-0.5625 0.171875 -0.953125 0.46875q-0.390625 0.296875 -0.609375 0.703125q-0.203125 0.390625 -0.203125 0.828125q0 0.4375 0.203125 0.78125q0.21875 0.34375 0.578125 0.609375q0.359375 0.265625 0.875 0.453125q0.515625 0.1875 1.125 0.3125q0.484375 0.09375 0.796875 0.1875q0.328125 0.078125 0.53125 0.1875q0.1875 0.109375 0.25 0.234375q0.078125 0.125 0.078125 0.28125zm6.779419 -6.828125l-1.8125 0l0 1.71875l-1.609375 0l0 1.34375l1.609375 0l0 3.203125q0 0.6875 0.1875 1.1875q0.1875 0.5 0.515625 0.8125q0.34375 0.328125 0.8125 0.484375q0.46875 0.15625 1.046875 0.15625q0.296875 0 0.609375 -0.03125q0.3125 -0.03125 0.59375 -0.078125q0.28125 -0.0625 0.53125 -0.140625q0.265625 -0.078125 0.453125 -0.1875l-0.171875 -1.25q-0.125 0.03125 -0.296875 0.078125q-0.171875 0.03125 -0.375 0.046875q-0.203125 0.03125 -0.421875 0.0625q-0.21875 0.015625 -0.421875 0.015625q-0.28125 0 -0.515625 -0.0625q-0.234375 -0.078125 -0.390625 -0.234375q-0.171875 -0.140625 -0.265625 -0.390625q-0.078125 -0.265625 -0.078125 -0.65625l0 -3.015625l2.625 0l0 -1.34375l-2.625 0l0 -1.71875z" fill-rule="nonzero"/><path fill="#4285f4" d="m31.188976 67.9468l0 0c0 -4.109131 3.331108 -7.440239 7.440239 -7.440239l196.64708 0c1.9732819 0 3.865738 0.78388214 5.2610474 2.1791954c1.3953094 1.3953133 2.1791992 3.2877693 2.1791992 5.2610435l0 50.25338c0 4.109131 -3.3311157 7.440239 -7.4402466 7.440239l-196.64708 0c-4.109131 0 -7.440239 -3.331108 -7.440239 -7.440239z" fill-rule="evenodd"/><path fill="#ffffff" d="m74.62444 80.920364l0.75 2.453125l1.1875 0l-3.0 -9.46875l-1.015625 0l-3.046875 9.46875l1.203125 0l0.765625 -2.453125l3.15625 0zm-2.84375 -1.046875l1.28125 -4.109375l1.25 4.109375l-2.53125 0zm6.310684 3.5l1.21875 0l0 -5.046875q0.109375 -0.234375 0.28125 -0.421875q0.171875 -0.1875 0.359375 -0.328125q0.25 -0.171875 0.53125 -0.265625q0.28125 -0.09375 0.609375 -0.09375q0.390625 0 0.6875 0.09375q0.296875 0.09375 0.5 0.296875q0.203125 0.203125 0.3125 0.53125q0.109375 0.328125 0.109375 0.796875l0 4.4375l1.203125 0l0 -4.46875q0 -0.703125 -0.171875 -1.21875q-0.171875 -0.515625 -0.5 -0.84375q-0.3125 -0.328125 -0.765625 -0.484375q-0.453125 -0.15625 -1.015625 -0.15625q-0.40625 0 -0.78125 0.125q-0.359375 0.109375 -0.671875 0.3125q-0.203125 0.140625 -0.390625 0.328125q-0.1875 0.1875 -0.34375 0.40625l-0.078125 -1.046875l-1.09375 0l0 7.046875zm7.779434 -3.578125l0 0.140625q0 0.75 0.203125 1.40625q0.203125 0.65625 0.5625 1.140625q0.359375 0.46875 0.875 0.75q0.53125 0.265625 1.15625 0.265625q0.65625 0 1.140625 -0.21875q0.5 -0.21875 0.84375 -0.640625l0.046875 0.734375l1.109375 0l0 -10.0l-1.203125 0l0 3.65625q-0.34375 -0.40625 -0.8125 -0.609375q-0.46875 -0.21875 -1.109375 -0.21875q-0.640625 0 -1.171875 0.265625q-0.515625 0.265625 -0.875 0.75q-0.375 0.46875 -0.578125 1.140625q-0.1875 0.65625 -0.1875 1.4375zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.109375 -0.984375q0.109375 -0.46875 0.34375 -0.8125q0.234375 -0.359375 0.59375 -0.5625q0.359375 -0.21875 0.859375 -0.21875q0.59375 0 0.984375 0.28125q0.40625 0.28125 0.640625 0.703125l0 3.265625q-0.234375 0.46875 -0.640625 0.75q-0.390625 0.265625 -0.984375 0.265625q-0.515625 0 -0.875 -0.203125q-0.34375 -0.203125 -0.578125 -0.5625q-0.234375 -0.34375 -0.34375 -0.796875q-0.109375 -0.46875 -0.109375 -0.984375zm11.638809 -3.734375q-0.765625 0 -1.375 0.34375q-0.59375 0.328125 -1.03125 0.90625l0 -0.171875l-0.0625 -0.953125l-1.140625 0l0 7.046875l1.203125 0l0 -4.515625q0.125 -0.328125 0.296875 -0.59375q0.1875 -0.265625 0.421875 -0.4375q0.265625 -0.21875 0.625 -0.3125q0.359375 -0.109375 0.8125 -0.109375q0.34375 0 0.65625 0.03125q0.3125 0.03125 0.65625 0.109375l0.171875 -1.171875q-0.1875 -0.078125 -0.546875 -0.125q-0.359375 -0.046875 -0.6875 -0.046875zm3.0450592 3.59375l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.59375 0.265625 1.34375 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.328125 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.375 -0.21875 0.875 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.875 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm7.326309 -3.609375l0 1.046875l2.390625 0l0 4.953125l-2.390625 0l0 1.046875l5.890625 0l0 -1.046875l-2.296875 0l0 -6.0l-3.59375 0zm2.234375 -1.84375q0 0.296875 0.171875 0.5q0.1875 0.1875 0.546875 0.1875q0.359375 0 0.53125 -0.1875q0.1875 -0.203125 0.1875 -0.5q0 -0.15625 -0.046875 -0.296875q-0.046875 -0.140625 -0.15625 -0.234375q-0.078125 -0.078125 -0.21875 -0.125q-0.125 -0.046875 -0.296875 -0.046875q-0.171875 0 -0.3125 0.046875q-0.125 0.046875 -0.203125 0.125q-0.109375 0.109375 -0.15625 0.25q-0.046875 0.125 -0.046875 0.28125zm5.341934 5.3125l0 0.140625q0 0.75 0.203125 1.40625q0.203125 0.65625 0.5625 1.140625q0.359375 0.46875 0.875 0.75q0.53125 0.265625 1.15625 0.265625q0.65625 0 1.140625 -0.21875q0.5 -0.21875 0.84375 -0.640625l0.046875 0.734375l1.109375 0l0 -10.0l-1.203125 0l0 3.65625q-0.34375 -0.40625 -0.8125 -0.609375q-0.46875 -0.21875 -1.109375 -0.21875q-0.640625 0 -1.171875 0.265625q-0.515625 0.265625 -0.875 0.75q-0.375 0.46875 -0.578125 1.140625q-0.1875 0.65625 -0.1875 1.4375zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.109375 -0.984375q0.109375 -0.46875 0.34375 -0.8125q0.234375 -0.359375 0.59375 -0.5625q0.359375 -0.21875 0.859375 -0.21875q0.59375 0 0.984375 0.28125q0.40625 0.28125 0.640625 0.703125l0 3.265625q-0.234375 0.46875 -0.640625 0.75q-0.390625 0.265625 -0.984375 0.265625q-0.515625 0 -0.875 -0.203125q-0.34375 -0.203125 -0.578125 -0.5625q-0.234375 -0.34375 -0.34375 -0.796875q-0.109375 -0.46875 -0.109375 -0.984375zm15.011986 3.4375l3.03125 0q0.59375 0 1.15625 -0.1875q0.578125 -0.1875 1.015625 -0.53125q0.4375 -0.328125 0.6875 -0.828125q0.265625 -0.515625 0.265625 -1.1875q0 -0.421875 -0.125 -0.78125q-0.125 -0.375 -0.359375 -0.65625q-0.203125 -0.265625 -0.546875 -0.484375q-0.328125 -0.234375 -0.6875 -0.3125l0 -0.015625q0.34375 -0.15625 0.578125 -0.328125q0.25 -0.171875 0.453125 -0.421875q0.203125 -0.234375 0.3125 -0.53125q0.109375 -0.3125 0.125 -0.6875q0 -0.65625 -0.265625 -1.125q-0.25 -0.484375 -0.6875 -0.796875q-0.4375 -0.296875 -1.0 -0.4375q-0.5625 -0.15625 -1.140625 -0.15625l-2.8125 0l0 9.46875zm1.203125 -4.4375l1.921875 0q0.390625 0.015625 0.71875 0.140625q0.328125 0.109375 0.578125 0.328125q0.25 0.21875 0.390625 0.53125q0.140625 0.3125 0.125 0.71875q0 0.390625 -0.15625 0.703125q-0.140625 0.3125 -0.40625 0.53125q-0.265625 0.21875 -0.609375 0.34375q-0.328125 0.109375 -0.703125 0.125l-1.859375 0l0 -3.421875zm0 -1.0l0 -3.015625l1.640625 0q0.359375 0.015625 0.6875 0.109375q0.34375 0.078125 0.609375 0.25q0.25 0.1875 0.390625 0.46875q0.15625 0.265625 0.15625 0.671875q0 0.359375 -0.15625 0.640625q-0.15625 0.28125 -0.40625 0.46875q-0.25 0.203125 -0.578125 0.3125q-0.328125 0.09375 -0.65625 0.09375l-1.6875 0zm6.998184 -4.5625l0 1.046875l2.390625 0l0 7.90625l-2.390625 0l0 1.046875l5.890625 0l0 -1.046875l-2.296875 0l0 -8.953125l-3.59375 0zm12.435684 10.0l1.09375 0l0 -7.046875l-1.203125 0l0 5.0625q-0.09375 0.21875 -0.25 0.421875q-0.140625 0.1875 -0.34375 0.3125q-0.234375 0.171875 -0.546875 0.265625q-0.3125 0.09375 -0.71875 0.09375q-0.34375 0 -0.609375 -0.078125q-0.265625 -0.09375 -0.453125 -0.328125q-0.171875 -0.21875 -0.265625 -0.59375q-0.09375 -0.375 -0.09375 -0.953125l0 -4.203125l-1.203125 0l0 4.1875q0 0.796875 0.171875 1.359375q0.171875 0.5625 0.484375 0.921875q0.328125 0.359375 0.765625 0.53125q0.453125 0.171875 1.015625 0.171875q0.6875 0 1.203125 -0.28125q0.53125 -0.296875 0.890625 -0.8125l0.0625 0.96875zm6.482559 0.125q1.0156403 0 1.7187653 -0.40625q0.703125 -0.421875 1.046875 -0.953125l-0.734375 -0.5625q-0.328125 0.421875 -0.828125 0.6875q-0.5 0.25 -1.1406403 0.25q-0.5 0 -0.90625 -0.171875q-0.390625 -0.1875 -0.671875 -0.5q-0.28125 -0.296875 -0.453125 -0.6875q-0.15625 -0.390625 -0.203125 -0.90625l0 -0.046875l5.0312653 0l0 -0.546875q0 -0.734375 -0.1875 -1.359375q-0.1875 -0.640625 -0.5625 -1.109375q-0.375 -0.453125 -0.953125 -0.71875q-0.5625 -0.265625 -1.3125153 -0.265625q-0.609375 0 -1.1875 0.25q-0.578125 0.25 -1.03125 0.703125q-0.453125 0.46875 -0.734375 1.140625q-0.265625 0.671875 -0.265625 1.53125l0 0.265625q0 0.75 0.25 1.375q0.25 0.625 0.6875 1.078125q0.453125 0.453125 1.0625 0.703125q0.625 0.25 1.375 0.25zm-0.15625 -6.3125q0.45314026 0 0.78126526 0.171875q0.34375 0.171875 0.5625 0.4375q0.21875 0.28125 0.34375 0.65625q0.125 0.375 0.125 0.703125l0 0.046875l-3.7812653 0q0.0625 -0.484375 0.234375 -0.859375q0.1875 -0.375 0.453125 -0.625q0.265625 -0.265625 0.578125 -0.390625q0.328125 -0.140625 0.703125 -0.140625zm7.888809 -2.5625l-1.21875 0l0 1.703125l-1.84375 0l0 0.9375l1.84375 0l0 3.828125q0 0.640625 0.171875 1.109375q0.1875 0.453125 0.484375 0.75q0.296875 0.28125 0.703125 0.421875q0.40625 0.125 0.875 0.125q0.28125 0 0.5625 -0.03125q0.28125 -0.015625 0.53125 -0.0625q0.265625 -0.046875 0.46875 -0.109375q0.21875 -0.078125 0.375 -0.171875l-0.171875 -0.84375q-0.109375 0.015625 -0.28125 0.0625q-0.171875 0.03125 -0.375 0.0625q-0.203125 0.03125 -0.40625 0.0625q-0.203125 0.015625 -0.40625 0.015625q-0.265625 0 -0.5 -0.0625q-0.234375 -0.0625 -0.421875 -0.234375q-0.1875 -0.15625 -0.296875 -0.421875q-0.09375 -0.265625 -0.09375 -0.671875l0 -3.828125l2.6875 0l0 -0.9375l-2.6875 0l0 -1.703125zm4.8106995 5.171875l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.59375 0.265625 1.34375 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.328125 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.375 -0.21875 0.875 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.875 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm6.795044 -0.140625l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.59375 0.265625 1.34375 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.328125 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.375 -0.21875 0.875 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.875 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm9.982574 -5.3125l-1.21875 0l0 1.703125l-1.84375 0l0 0.9375l1.84375 0l0 3.828125q0 0.640625 0.171875 1.109375q0.1875 0.453125 0.484375 0.75q0.296875 0.28125 0.703125 0.421875q0.40625 0.125 0.875 0.125q0.28125 0 0.5625 -0.03125q0.28125 -0.015625 0.53125 -0.0625q0.265625 -0.046875 0.46875 -0.109375q0.21875 -0.078125 0.375 -0.171875l-0.171875 -0.84375q-0.109375 0.015625 -0.28125 0.0625q-0.171875 0.03125 -0.375 0.0625q-0.203125 0.03125 -0.40625 0.0625q-0.203125 0.015625 -0.40625 0.015625q-0.265625 0 -0.5 -0.0625q-0.234375 -0.0625 -0.421875 -0.234375q-0.1875 -0.15625 -0.296875 -0.421875q-0.09375 -0.265625 -0.09375 -0.671875l0 -3.828125l2.6875 0l0 -0.9375l-2.6875 0l0 -1.703125zm6.357544 2.75l0 -4.0l-1.21875 0l0 10.0l1.21875 0l0 -5.109375q0.125 -0.21875 0.28125 -0.390625q0.171875 -0.171875 0.375 -0.296875q0.234375 -0.171875 0.53125 -0.265625q0.296875 -0.09375 0.625 -0.09375q0.390625 0 0.6875 0.125q0.3125 0.109375 0.515625 0.328125q0.1875 0.203125 0.28125 0.53125q0.109375 0.3125 0.109375 0.734375l0 4.4375l1.203125 0l0 -4.4375q0 -0.703125 -0.171875 -1.21875q-0.171875 -0.515625 -0.5 -0.859375q-0.3125 -0.34375 -0.765625 -0.5q-0.453125 -0.15625 -1.0 -0.15625q-0.421875 0 -0.796875 0.125q-0.375 0.109375 -0.6875 0.34375q-0.203125 0.140625 -0.375 0.328125q-0.171875 0.171875 -0.3125 0.375z" fill-rule="nonzero"/><path fill="#ffffff" d="m100.47837 90.920364l0 -1.015625l-7.015625 0l0 1.015625l2.921875 0l0 8.453125l1.171875 0l0 -8.453125l2.921875 0zm4.732559 8.578125q1.015625 0 1.71875 -0.40625q0.703125 -0.421875 1.046875 -0.953125l-0.734375 -0.5625q-0.328125 0.421875 -0.828125 0.6875q-0.5 0.25 -1.140625 0.25q-0.5 0 -0.90625 -0.171875q-0.390625 -0.1875 -0.671875 -0.5q-0.28125 -0.296875 -0.453125 -0.6875q-0.15625 -0.390625 -0.203125 -0.90625l0 -0.046875l5.03125 0l0 -0.546875q0 -0.734375 -0.1875 -1.359375q-0.1875 -0.640625 -0.5625 -1.109375q-0.375 -0.453125 -0.953125 -0.71875q-0.5625 -0.265625 -1.3125 -0.265625q-0.609375 0 -1.1875 0.25q-0.578125 0.25 -1.03125 0.703125q-0.453125 0.46875 -0.734375 1.140625q-0.265625 0.671875 -0.265625 1.53125l0 0.265625q0 0.75 0.25 1.375q0.25 0.625 0.6875 1.078125q0.453125 0.453125 1.0625 0.703125q0.625 0.25 1.375 0.25zm-0.15625 -6.3125q0.453125 0 0.78125 0.171875q0.34375 0.171875 0.5625 0.4375q0.21875 0.28125 0.34375 0.65625q0.125 0.375 0.125 0.703125l0 0.046875l-3.78125 0q0.0625 -0.484375 0.234375 -0.859375q0.1875 -0.375 0.453125 -0.625q0.265625 -0.265625 0.578125 -0.390625q0.328125 -0.140625 0.703125 -0.140625zm9.716934 4.3125q0 0.171875 -0.0625 0.328125q-0.0625 0.140625 -0.1875 0.265625q-0.203125 0.203125 -0.5625 0.328125q-0.359375 0.109375 -0.84375 0.109375q-0.296875 0 -0.609375 -0.0625q-0.3125 -0.0625 -0.578125 -0.21875q-0.25 -0.15625 -0.421875 -0.40625q-0.171875 -0.265625 -0.203125 -0.640625l-1.203125 0q0 0.453125 0.203125 0.875q0.203125 0.40625 0.59375 0.71875q0.390625 0.328125 0.9375 0.515625q0.5625 0.1875 1.28125 0.1875q0.625 0 1.15625 -0.140625q0.53125 -0.15625 0.90625 -0.421875q0.375 -0.28125 0.578125 -0.65625q0.21875 -0.390625 0.21875 -0.859375q0 -0.4375 -0.1875 -0.765625q-0.1875 -0.328125 -0.53125 -0.59375q-0.359375 -0.234375 -0.875 -0.40625q-0.515625 -0.1875 -1.15625 -0.328125q-0.5 -0.09375 -0.828125 -0.203125q-0.3125 -0.109375 -0.5 -0.234375q-0.203125 -0.125 -0.28125 -0.28125q-0.078125 -0.171875 -0.078125 -0.375q0 -0.203125 0.09375 -0.390625q0.109375 -0.203125 0.296875 -0.34375q0.1875 -0.140625 0.46875 -0.21875q0.296875 -0.09375 0.6875 -0.09375q0.375 0 0.671875 0.109375q0.296875 0.109375 0.5 0.265625q0.203125 0.171875 0.3125 0.390625q0.125 0.21875 0.125 0.453125l1.203125 0q0 -0.46875 -0.203125 -0.859375q-0.1875 -0.40625 -0.546875 -0.703125q-0.375 -0.296875 -0.890625 -0.46875q-0.515625 -0.171875 -1.171875 -0.171875q-0.609375 0 -1.109375 0.171875q-0.5 0.15625 -0.875 0.4375q-0.359375 0.28125 -0.5625 0.65625q-0.203125 0.375 -0.203125 0.796875q0 0.4375 0.1875 0.765625q0.203125 0.328125 0.5625 0.5625q0.359375 0.25 0.84375 0.4375q0.5 0.171875 1.109375 0.296875q0.5 0.09375 0.828125 0.21875q0.328125 0.109375 0.53125 0.25q0.203125 0.15625 0.28125 0.328125q0.09375 0.171875 0.09375 0.375zm6.170059 -6.875l-1.21875 0l0 1.703125l-1.84375 0l0 0.9375l1.84375 0l0 3.828125q0 0.640625 0.171875 1.109375q0.1875 0.453125 0.484375 0.75q0.296875 0.28125 0.703125 0.421875q0.40625 0.125 0.875 0.125q0.28125 0 0.5625 -0.03125q0.28125 -0.015625 0.53125 -0.0625q0.265625 -0.046875 0.46875 -0.109375q0.21875 -0.078125 0.375 -0.171875l-0.171875 -0.84375q-0.109375 0.015625 -0.28125 0.0625q-0.171875 0.03125 -0.375 0.0625q-0.203125 0.03125 -0.40625 0.0625q-0.203125 0.015625 -0.40625 0.015625q-0.265625 0 -0.5 -0.0625q-0.234375 -0.0625 -0.421875 -0.234375q-0.1875 -0.15625 -0.296875 -0.421875q-0.09375 -0.265625 -0.09375 -0.671875l0 -3.828125l2.6875 0l0 -0.9375l-2.6875 0l0 -1.703125zm18.105736 6.359375q0 0.390625 -0.171875 0.671875q-0.171875 0.28125 -0.4375 0.46875q-0.265625 0.1875 -0.609375 0.28125q-0.34375 0.078125 -0.6875 0.078125q-0.453125 0 -0.828125 -0.109375q-0.359375 -0.125 -0.65625 -0.375q-0.28125 -0.234375 -0.46875 -0.578125q-0.171875 -0.34375 -0.234375 -0.78125l-1.234375 0q0.015625 0.609375 0.265625 1.109375q0.25 0.5 0.6875 0.875q0.484375 0.421875 1.125 0.65625q0.65625 0.21875 1.34375 0.21875q0.5625 0 1.125 -0.15625q0.578125 -0.15625 1.015625 -0.46875q0.453125 -0.3125 0.734375 -0.78125q0.28125 -0.484375 0.28125 -1.125q0 -0.640625 -0.265625 -1.109375q-0.265625 -0.484375 -0.6875 -0.8125q-0.4375 -0.359375 -0.96875 -0.59375q-0.515625 -0.234375 -1.046875 -0.390625q-0.328125 -0.109375 -0.6875 -0.234375q-0.359375 -0.125 -0.65625 -0.328125q-0.3125 -0.1875 -0.515625 -0.46875q-0.203125 -0.28125 -0.21875 -0.703125q0 -0.375 0.15625 -0.65625q0.15625 -0.28125 0.421875 -0.484375q0.25 -0.1875 0.578125 -0.28125q0.328125 -0.109375 0.671875 -0.109375q0.4375 0 0.765625 0.140625q0.34375 0.125 0.59375 0.375q0.25 0.234375 0.390625 0.578125q0.15625 0.328125 0.203125 0.734375l1.25 0q-0.015625 -0.65625 -0.28125 -1.171875q-0.265625 -0.53125 -0.71875 -0.90625q-0.4375 -0.375 -1.015625 -0.578125q-0.5625 -0.203125 -1.1875 -0.203125q-0.5625 0 -1.125 0.171875q-0.546875 0.171875 -0.96875 0.515625q-0.4375 0.328125 -0.71875 0.8125q-0.265625 0.46875 -0.265625 1.09375q0 0.609375 0.265625 1.0625q0.28125 0.453125 0.703125 0.78125q0.421875 0.328125 0.9375 0.5625q0.515625 0.21875 1.015625 0.390625q0.359375 0.109375 0.71875 0.25q0.375 0.125 0.6875 0.328125q0.3125 0.21875 0.515625 0.515625q0.203125 0.296875 0.203125 0.734375zm6.154434 2.515625q1.015625 0 1.71875 -0.40625q0.703125 -0.421875 1.046875 -0.953125l-0.734375 -0.5625q-0.328125 0.421875 -0.828125 0.6875q-0.5 0.25 -1.140625 0.25q-0.5 0 -0.90625 -0.171875q-0.390625 -0.1875 -0.671875 -0.5q-0.28125 -0.296875 -0.453125 -0.6875q-0.15625 -0.390625 -0.203125 -0.90625l0 -0.046875l5.03125 0l0 -0.546875q0 -0.734375 -0.1875 -1.359375q-0.1875 -0.640625 -0.5625 -1.109375q-0.375 -0.453125 -0.953125 -0.71875q-0.5625 -0.265625 -1.3125 -0.265625q-0.609375 0 -1.1875 0.25q-0.578125 0.25 -1.03125 0.703125q-0.453125 0.46875 -0.734375 1.140625q-0.265625 0.671875 -0.265625 1.53125l0 0.265625q0 0.75 0.25 1.375q0.25 0.625 0.6875 1.078125q0.453125 0.453125 1.0625 0.703125q0.625 0.25 1.375 0.25zm-0.15625 -6.3125q0.453125 0 0.78125 0.171875q0.34375 0.171875 0.5625 0.4375q0.21875 0.28125 0.34375 0.65625q0.125 0.375 0.125 0.703125l0 0.046875l-3.78125 0q0.0625 -0.484375 0.234375 -0.859375q0.1875 -0.375 0.453125 -0.625q0.265625 -0.265625 0.578125 -0.390625q0.328125 -0.140625 0.703125 -0.140625zm9.654434 -0.984375q-0.765625 0 -1.375 0.34375q-0.59375 0.328125 -1.03125 0.90625l0 -0.171875l-0.0625 -0.953125l-1.140625 0l0 7.046875l1.203125 0l0 -4.515625q0.125 -0.328125 0.296875 -0.59375q0.1875 -0.265625 0.421875 -0.4375q0.265625 -0.21875 0.625 -0.3125q0.359375 -0.109375 0.8125 -0.109375q0.34375 0 0.65625 0.03125q0.3125 0.03125 0.65625 0.109375l0.171875 -1.171875q-0.1875 -0.078125 -0.546875 -0.125q-0.359375 -0.046875 -0.6875 -0.046875zm5.779434 7.171875l0.92189026 0l2.875 -7.046875l-1.234375 0l-1.9687653 5.3125l-0.125 0.4375l-0.109375 -0.4375l-2.015625 -5.3125l-1.234375 0l2.890625 7.046875zm8.716934 0.125q1.015625 0 1.71875 -0.40625q0.703125 -0.421875 1.046875 -0.953125l-0.734375 -0.5625q-0.328125 0.421875 -0.828125 0.6875q-0.5 0.25 -1.140625 0.25q-0.5 0 -0.90625 -0.171875q-0.390625 -0.1875 -0.671875 -0.5q-0.28125 -0.296875 -0.453125 -0.6875q-0.15625 -0.390625 -0.203125 -0.90625l0 -0.046875l5.03125 0l0 -0.546875q0 -0.734375 -0.1875 -1.359375q-0.1875 -0.640625 -0.5625 -1.109375q-0.375 -0.453125 -0.953125 -0.71875q-0.5625 -0.265625 -1.3125 -0.265625q-0.609375 0 -1.1875 0.25q-0.578125 0.25 -1.03125 0.703125q-0.453125 0.46875 -0.734375 1.140625q-0.265625 0.671875 -0.265625 1.53125l0 0.265625q0 0.75 0.25 1.375q0.25 0.625 0.6875 1.078125q0.453125 0.453125 1.0625 0.703125q0.625 0.25 1.375 0.25zm-0.15625 -6.3125q0.453125 0 0.78125 0.171875q0.34375 0.171875 0.5625 0.4375q0.21875 0.28125 0.34375 0.65625q0.125 0.375 0.125 0.703125l0 0.046875l-3.78125 0q0.0625 -0.484375 0.234375 -0.859375q0.1875 -0.375 0.453125 -0.625q0.265625 -0.265625 0.578125 -0.390625q0.328125 -0.140625 0.703125 -0.140625zm9.654449 -0.984375q-0.765625 0 -1.375 0.34375q-0.59375 0.328125 -1.03125 0.90625l0 -0.171875l-0.0625 -0.953125l-1.140625 0l0 7.046875l1.203125 0l0 -4.515625q0.125 -0.328125 0.296875 -0.59375q0.1875 -0.265625 0.421875 -0.4375q0.265625 -0.21875 0.625 -0.3125q0.359375 -0.109375 0.8125 -0.109375q0.34375 0 0.65625 0.03125q0.3125 0.03125 0.65625 0.109375l0.171875 -1.171875q-0.1875 -0.078125 -0.546875 -0.125q-0.359375 -0.046875 -0.6875 -0.046875z" fill-rule="nonzero"/><path fill="#ffffff" d="m45.134544 114.98536l0.953125 0l0 -2.71875q0.109375 0.125 0.21875 0.21875q0.125 0.09375 0.265625 0.171875q0.21875 0.125 0.5 0.1875q0.28125 0.078125 0.59375 0.078125q0.53125 0 0.9375 -0.21875q0.421875 -0.21875 0.703125 -0.609375q0.28125 -0.390625 0.421875 -0.90625q0.15625 -0.53125 0.15625 -1.125l0 -0.109375q0 -0.625 -0.15625 -1.15625q-0.140625 -0.53125 -0.421875 -0.90625q-0.28125 -0.390625 -0.703125 -0.59375q-0.40625 -0.21875 -0.953125 -0.21875q-0.296875 0 -0.5625 0.0625q-0.265625 0.0625 -0.484375 0.1875q-0.15625 0.09375 -0.296875 0.21875q-0.140625 0.109375 -0.25 0.25l-0.046875 -0.609375l-0.875 0l0 7.796875zm3.78125 -5.03125l0 0.109375q0 0.40625 -0.09375 0.78125q-0.078125 0.375 -0.265625 0.65625q-0.1875 0.296875 -0.484375 0.46875q-0.296875 0.15625 -0.6875 0.15625q-0.25 0 -0.453125 -0.0625q-0.203125 -0.0625 -0.375 -0.171875q-0.140625 -0.09375 -0.265625 -0.21875q-0.109375 -0.140625 -0.203125 -0.296875l0 -2.703125q0.109375 -0.1875 0.234375 -0.328125q0.125 -0.140625 0.296875 -0.25q0.15625 -0.09375 0.34375 -0.140625q0.1875 -0.0625 0.40625 -0.0625q0.40625 0 0.6875 0.171875q0.296875 0.171875 0.5 0.453125q0.1875 0.28125 0.265625 0.65625q0.09375 0.375 0.09375 0.78125zm3.8791656 3.515625l3.15625 -8.234375l-0.859375 0l-3.15625 8.234375l0.859375 0zm5.5666656 -6.28125l-0.859375 0l0 5.625l0.921875 0l0 -4.484375q0.03125 -0.078125 0.078125 -0.140625q0.046875 -0.078125 0.109375 -0.140625q0.09375 -0.078125 0.21875 -0.109375q0.125 -0.046875 0.296875 -0.046875q0.15625 0 0.265625 0.046875q0.125 0.03125 0.203125 0.125q0.09375 0.078125 0.125 0.21875q0.03125 0.140625 0.03125 0.3125l0 4.21875l0.921875 0l0 -4.21875q0 -0.03125 0 -0.046875q0 -0.03125 0 -0.046875q0.015625 -0.140625 0.0625 -0.234375q0.046875 -0.109375 0.125 -0.203125q0.09375 -0.078125 0.21875 -0.125q0.125 -0.046875 0.296875 -0.046875q0.15625 0 0.28125 0.046875q0.125 0.046875 0.203125 0.125q0.078125 0.09375 0.109375 0.234375q0.046875 0.125 0.046875 0.296875l0 4.21875l0.921875 0l0 -4.203125q0 -0.40625 -0.09375 -0.703125q-0.09375 -0.296875 -0.265625 -0.484375q-0.171875 -0.171875 -0.40625 -0.25q-0.234375 -0.09375 -0.515625 -0.09375q-0.21875 0 -0.40625 0.0625q-0.171875 0.046875 -0.3125 0.140625q-0.125 0.078125 -0.21875 0.1875q-0.09375 0.09375 -0.171875 0.21875q-0.0625 -0.140625 -0.140625 -0.234375q-0.078125 -0.109375 -0.171875 -0.1875q-0.140625 -0.09375 -0.328125 -0.140625q-0.171875 -0.046875 -0.390625 -0.046875q-0.390625 0 -0.671875 0.171875q-0.28125 0.171875 -0.453125 0.46875l-0.03125 -0.53125zm7.2229156 6.28125l3.15625 -8.234375l-0.859375 0l-3.15625 8.234375l0.859375 0zm9.894791 -3.40625l0 -0.109375q0 -0.4375 -0.078125 -0.828125q-0.0625 -0.40625 -0.203125 -0.734375q-0.140625 -0.296875 -0.3125 -0.53125q-0.171875 -0.234375 -0.40625 -0.40625q-0.25 -0.171875 -0.5625 -0.265625q-0.296875 -0.109375 -0.65625 -0.109375q-0.296875 0 -0.546875 0.0625q-0.25 0.046875 -0.453125 0.15625q-0.171875 0.09375 -0.3125 0.21875q-0.140625 0.125 -0.265625 0.265625l0 -2.96875l-0.96875 0l0 8.0l0.890625 0l0.046875 -0.640625q0.09375 0.125 0.1875 0.21875q0.109375 0.09375 0.234375 0.1875q0.234375 0.15625 0.53125 0.25q0.296875 0.09375 0.65625 0.09375q0.328125 0 0.59375 -0.078125q0.28125 -0.078125 0.5 -0.21875q0.328125 -0.203125 0.546875 -0.515625q0.234375 -0.3125 0.375 -0.703125q0.09375 -0.296875 0.140625 -0.640625q0.0625 -0.34375 0.0625 -0.703125zm-0.953125 -0.109375l0 0.109375q0 0.25 -0.03125 0.484375q-0.03125 0.234375 -0.109375 0.453125q-0.078125 0.265625 -0.21875 0.5q-0.140625 0.21875 -0.34375 0.359375q-0.15625 0.125 -0.359375 0.1875q-0.203125 0.046875 -0.4375 0.046875q-0.25 0 -0.453125 -0.0625q-0.203125 -0.0625 -0.375 -0.1875q-0.171875 -0.109375 -0.296875 -0.265625q-0.125 -0.171875 -0.21875 -0.359375l0 -2.453125q0.09375 -0.1875 0.21875 -0.34375q0.125 -0.15625 0.296875 -0.28125q0.15625 -0.109375 0.359375 -0.171875q0.203125 -0.078125 0.453125 -0.078125q0.234375 0 0.421875 0.0625q0.1875 0.046875 0.34375 0.140625q0.21875 0.125 0.359375 0.359375q0.15625 0.234375 0.25 0.5q0.0625 0.234375 0.09375 0.484375q0.046875 0.25 0.046875 0.515625zm4.8635406 -4.140625l-0.96875 0l0 1.375l-1.484375 0l0 0.734375l1.484375 0l0 3.0625q0 0.515625 0.140625 0.890625q0.140625 0.359375 0.375 0.59375q0.234375 0.234375 0.5625 0.34375q0.328125 0.109375 0.703125 0.109375q0.21875 0 0.4375 -0.03125q0.234375 -0.015625 0.4375 -0.0625q0.203125 -0.03125 0.375 -0.078125q0.171875 -0.0625 0.296875 -0.140625l-0.140625 -0.671875q-0.09375 0.015625 -0.234375 0.046875q-0.125 0.03125 -0.28125 0.046875q-0.171875 0.03125 -0.34375 0.046875q-0.15625 0.015625 -0.3125 0.015625q-0.21875 0 -0.40625 -0.046875q-0.1875 -0.046875 -0.328125 -0.1875q-0.15625 -0.125 -0.234375 -0.328125q-0.078125 -0.21875 -0.078125 -0.546875l0 -3.0625l2.140625 0l0 -0.734375l-2.140625 0l0 -1.375zm5.3791656 7.65625l3.15625 -8.234375l-0.859375 0l-3.15625 8.234375l0.859375 0zm8.832291 -0.65625l1.0 0l0 -0.078125q-0.09375 -0.234375 -0.15625 -0.546875q-0.046875 -0.328125 -0.046875 -0.609375l0 -2.609375q0 -0.46875 -0.171875 -0.828125q-0.171875 -0.359375 -0.46875 -0.59375q-0.296875 -0.234375 -0.71875 -0.34375q-0.40625 -0.125 -0.875 -0.125q-0.53125 0 -0.953125 0.15625q-0.40625 0.140625 -0.6875 0.375q-0.296875 0.234375 -0.453125 0.53125q-0.140625 0.296875 -0.15625 0.609375l0.96875 0q0 -0.1875 0.078125 -0.34375q0.09375 -0.171875 0.25 -0.28125q0.15625 -0.125 0.375 -0.1875q0.234375 -0.078125 0.515625 -0.078125q0.3125 0 0.5625 0.078125q0.25 0.078125 0.421875 0.21875q0.171875 0.140625 0.265625 0.34375q0.09375 0.203125 0.09375 0.453125l0 0.453125l-1.0625 0q-0.578125 0 -1.0625 0.109375q-0.46875 0.109375 -0.8125 0.34375q-0.328125 0.234375 -0.515625 0.578125q-0.1875 0.34375 -0.1875 0.8125q0 0.359375 0.140625 0.671875q0.140625 0.296875 0.390625 0.515625q0.25 0.21875 0.609375 0.359375q0.359375 0.125 0.8125 0.125q0.265625 0 0.515625 -0.0625q0.25 -0.0625 0.46875 -0.15625q0.203125 -0.09375 0.375 -0.21875q0.1875 -0.140625 0.34375 -0.28125q0.015625 0.171875 0.046875 0.34375q0.03125 0.15625 0.09375 0.265625zm-1.703125 -0.734375q-0.28125 0 -0.5 -0.0625q-0.203125 -0.078125 -0.34375 -0.21875q-0.140625 -0.125 -0.21875 -0.296875q-0.0625 -0.171875 -0.0625 -0.390625q0 -0.21875 0.078125 -0.390625q0.078125 -0.171875 0.234375 -0.296875q0.21875 -0.171875 0.578125 -0.25q0.375 -0.09375 0.875 -0.09375l0.90625 0l0 1.140625q-0.09375 0.171875 -0.234375 0.328125q-0.140625 0.140625 -0.34375 0.265625q-0.203125 0.125 -0.453125 0.203125q-0.234375 0.0625 -0.515625 0.0625zm4.3947906 0.734375l0.96875 0l0 -4.03125q0.09375 -0.1875 0.21875 -0.328125q0.140625 -0.15625 0.296875 -0.28125q0.1875 -0.125 0.40625 -0.203125q0.234375 -0.078125 0.5 -0.078125q0.3125 0 0.546875 0.078125q0.234375 0.078125 0.40625 0.234375q0.15625 0.15625 0.234375 0.421875q0.09375 0.265625 0.09375 0.640625l0 3.546875l0.96875 0l0 -3.578125q0 -0.5625 -0.140625 -0.96875q-0.140625 -0.40625 -0.390625 -0.671875q-0.265625 -0.265625 -0.625 -0.390625q-0.359375 -0.125 -0.796875 -0.125q-0.328125 0 -0.625 0.09375q-0.296875 0.09375 -0.546875 0.265625q-0.15625 0.109375 -0.3125 0.265625q-0.140625 0.140625 -0.265625 0.3125l-0.078125 -0.828125l-0.859375 0l0 5.625zm6.2072906 -2.859375l0 0.109375q0 0.59375 0.15625 1.125q0.171875 0.515625 0.46875 0.90625q0.28125 0.390625 0.6875 0.609375q0.421875 0.21875 0.9375 0.21875q0.515625 0 0.90625 -0.171875q0.390625 -0.1875 0.671875 -0.53125l0.046875 0.59375l0.875 0l0 -8.0l-0.953125 0l0 2.921875q-0.28125 -0.3125 -0.65625 -0.484375q-0.375 -0.171875 -0.890625 -0.171875q-0.5 0 -0.921875 0.21875q-0.421875 0.203125 -0.703125 0.59375q-0.296875 0.375 -0.46875 0.90625q-0.15625 0.53125 -0.15625 1.15625zm0.96875 0.109375l0 -0.109375q0 -0.40625 0.078125 -0.78125q0.09375 -0.375 0.28125 -0.65625q0.1875 -0.28125 0.46875 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.46875 0 0.78125 0.234375q0.328125 0.21875 0.515625 0.5625l0 2.609375q-0.1875 0.359375 -0.515625 0.578125q-0.3125 0.21875 -0.796875 0.21875q-0.40625 0 -0.6875 -0.15625q-0.28125 -0.171875 -0.46875 -0.453125q-0.1875 -0.28125 -0.28125 -0.640625q-0.078125 -0.375 -0.078125 -0.78125zm9.301041 -2.984375q-0.609375 0 -1.09375 0.265625q-0.484375 0.265625 -0.828125 0.734375l0 -0.140625l-0.046875 -0.75l-0.90625 0l0 5.625l0.953125 0l0 -3.609375q0.09375 -0.265625 0.234375 -0.46875q0.15625 -0.21875 0.34375 -0.359375q0.21875 -0.171875 0.5 -0.25q0.28125 -0.09375 0.640625 -0.09375q0.28125 0 0.53125 0.03125q0.25 0.03125 0.53125 0.09375l0.125 -0.9375q-0.140625 -0.0625 -0.4375 -0.09375q-0.28125 -0.046875 -0.546875 -0.046875zm2.4416656 2.875l0 0.109375q0 0.609375 0.171875 1.125q0.171875 0.515625 0.515625 0.90625q0.328125 0.390625 0.796875 0.609375q0.484375 0.21875 1.078125 0.21875q0.59375 0 1.0625 -0.21875q0.46875 -0.21875 0.8125 -0.609375q0.328125 -0.390625 0.5 -0.90625q0.171875 -0.515625 0.171875 -1.125l0 -0.109375q0 -0.609375 -0.171875 -1.125q-0.171875 -0.53125 -0.5 -0.921875q-0.34375 -0.390625 -0.828125 -0.609375q-0.46875 -0.21875 -1.0625 -0.21875q-0.59375 0 -1.0625 0.21875q-0.46875 0.21875 -0.796875 0.609375q-0.34375 0.390625 -0.515625 0.921875q-0.171875 0.515625 -0.171875 1.125zm0.953125 0.109375l0 -0.109375q0 -0.421875 0.09375 -0.796875q0.109375 -0.375 0.3125 -0.65625q0.203125 -0.296875 0.484375 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.40625 0 0.703125 0.171875q0.296875 0.15625 0.5 0.453125q0.203125 0.28125 0.296875 0.65625q0.109375 0.375 0.109375 0.796875l0 0.109375q0 0.40625 -0.109375 0.796875q-0.09375 0.375 -0.296875 0.65625q-0.203125 0.28125 -0.5 0.453125q-0.296875 0.171875 -0.6875 0.171875q-0.40625 0 -0.703125 -0.171875q-0.296875 -0.171875 -0.5 -0.453125q-0.203125 -0.28125 -0.3125 -0.65625q-0.09375 -0.390625 -0.09375 -0.796875zm5.8635406 -2.875l0 0.828125l1.90625 0l0 3.96875l-1.90625 0l0 0.828125l4.703125 0l0 -0.828125l-1.828125 0l0 -4.796875l-2.875 0zm1.78125 -1.484375q0 0.234375 0.140625 0.390625q0.140625 0.15625 0.4375 0.15625q0.28125 0 0.421875 -0.15625q0.15625 -0.15625 0.15625 -0.390625q0 -0.125 -0.046875 -0.234375q-0.03125 -0.109375 -0.125 -0.1875q-0.0625 -0.0625 -0.171875 -0.09375q-0.09375 -0.046875 -0.234375 -0.046875q-0.140625 0 -0.25 0.046875q-0.09375 0.03125 -0.171875 0.09375q-0.078125 0.078125 -0.125 0.1875q-0.03125 0.109375 -0.03125 0.234375zm4.269783 4.25l0 0.109375q0 0.59375 0.15625 1.125q0.171875 0.515625 0.46875 0.90625q0.28125 0.390625 0.6875 0.609375q0.421875 0.21875 0.9375 0.21875q0.515625 0 0.90625 -0.171875q0.390625 -0.1875 0.671875 -0.53125l0.046875 0.59375l0.875 0l0 -8.0l-0.953125 0l0 2.921875q-0.28125 -0.3125 -0.65625 -0.484375q-0.375 -0.171875 -0.890625 -0.171875q-0.5 0 -0.921875 0.21875q-0.421875 0.203125 -0.703125 0.59375q-0.296875 0.375 -0.46875 0.90625q-0.15625 0.53125 -0.15625 1.15625zm0.96875 0.109375l0 -0.109375q0 -0.40625 0.078125 -0.78125q0.09375 -0.375 0.28125 -0.65625q0.1875 -0.28125 0.46875 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.46875 0 0.78125 0.234375q0.328125 0.21875 0.515625 0.5625l0 2.609375q-0.1875 0.359375 -0.515625 0.578125q-0.3125 0.21875 -0.796875 0.21875q-0.40625 0 -0.6875 -0.15625q-0.28125 -0.171875 -0.46875 -0.453125q-0.1875 -0.28125 -0.28125 -0.640625q-0.078125 -0.375 -0.078125 -0.78125zm6.8791656 3.40625l3.15625 -8.234375l-0.859375 0l-3.15625 8.234375l0.859375 0zm5.1291656 1.515625l0.953125 0l0 -2.71875q0.109375 0.125 0.21875 0.21875q0.125 0.09375 0.265625 0.171875q0.21875 0.125 0.5 0.1875q0.28125 0.078125 0.59375 0.078125q0.53125 0 0.9375 -0.21875q0.421875 -0.21875 0.703125 -0.609375q0.28125 -0.390625 0.421875 -0.90625q0.15625 -0.53125 0.15625 -1.125l0 -0.109375q0 -0.625 -0.15625 -1.15625q-0.140625 -0.53125 -0.421875 -0.90625q-0.28125 -0.390625 -0.703125 -0.59375q-0.40625 -0.21875 -0.953125 -0.21875q-0.296875 0 -0.5625 0.0625q-0.265625 0.0625 -0.484375 0.1875q-0.15625 0.09375 -0.296875 0.21875q-0.140625 0.109375 -0.25 0.25l-0.046875 -0.609375l-0.875 0l0 7.796875zm3.78125 -5.03125l0 0.109375q0 0.40625 -0.09375 0.78125q-0.078125 0.375 -0.265625 0.65625q-0.1875 0.296875 -0.484375 0.46875q-0.296875 0.15625 -0.6875 0.15625q-0.25 0 -0.453125 -0.0625q-0.203125 -0.0625 -0.375 -0.171875q-0.140625 -0.09375 -0.265625 -0.21875q-0.109375 -0.140625 -0.203125 -0.296875l0 -2.703125q0.109375 -0.1875 0.234375 -0.328125q0.125 -0.140625 0.296875 -0.25q0.15625 -0.09375 0.34375 -0.140625q0.1875 -0.0625 0.40625 -0.0625q0.40625 0 0.6875 0.171875q0.296875 0.171875 0.5 0.453125q0.1875 0.28125 0.265625 0.65625q0.09375 0.375 0.09375 0.78125zm6.3166656 2.859375l1.0 0l0 -0.078125q-0.09375 -0.234375 -0.15625 -0.546875q-0.046875 -0.328125 -0.046875 -0.609375l0 -2.609375q0 -0.46875 -0.171875 -0.828125q-0.171875 -0.359375 -0.46875 -0.59375q-0.296875 -0.234375 -0.71875 -0.34375q-0.40625 -0.125 -0.875 -0.125q-0.53125 0 -0.953125 0.15625q-0.40625 0.140625 -0.6875 0.375q-0.296875 0.234375 -0.453125 0.53125q-0.140625 0.296875 -0.15625 0.609375l0.96875 0q0 -0.1875 0.078125 -0.34375q0.09375 -0.171875 0.25 -0.28125q0.15625 -0.125 0.375 -0.1875q0.234375 -0.078125 0.515625 -0.078125q0.3125 0 0.5625 0.078125q0.25 0.078125 0.421875 0.21875q0.171875 0.140625 0.265625 0.34375q0.09375 0.203125 0.09375 0.453125l0 0.453125l-1.0625 0q-0.578125 0 -1.0625 0.109375q-0.46875 0.109375 -0.8125 0.34375q-0.328125 0.234375 -0.515625 0.578125q-0.1875 0.34375 -0.1875 0.8125q0 0.359375 0.140625 0.671875q0.140625 0.296875 0.390625 0.515625q0.25 0.21875 0.609375 0.359375q0.359375 0.125 0.8125 0.125q0.265625 0 0.515625 -0.0625q0.25 -0.0625 0.46875 -0.15625q0.203125 -0.09375 0.375 -0.21875q0.1875 -0.140625 0.34375 -0.28125q0.015625 0.171875 0.046875 0.34375q0.03125 0.15625 0.09375 0.265625zm-1.703125 -0.734375q-0.28125 0 -0.5 -0.0625q-0.203125 -0.078125 -0.34375 -0.21875q-0.140625 -0.125 -0.21875 -0.296875q-0.0625 -0.171875 -0.0625 -0.390625q0 -0.21875 0.078125 -0.390625q0.078125 -0.171875 0.234375 -0.296875q0.21875 -0.171875 0.578125 -0.25q0.375 -0.09375 0.875 -0.09375l0.90625 0l0 1.140625q-0.09375 0.171875 -0.234375 0.328125q-0.140625 0.140625 -0.34375 0.265625q-0.203125 0.125 -0.453125 0.203125q-0.234375 0.0625 -0.515625 0.0625zm4.3947906 0.734375l0.96875 0l0 -4.03125q0.09375 -0.1875 0.21875 -0.328125q0.140625 -0.15625 0.296875 -0.28125q0.1875 -0.125 0.40625 -0.203125q0.234375 -0.078125 0.5 -0.078125q0.3125 0 0.546875 0.078125q0.234375 0.078125 0.40625 0.234375q0.15625 0.15625 0.234375 0.421875q0.09375 0.265625 0.09375 0.640625l0 3.546875l0.96875 0l0 -3.578125q0 -0.5625 -0.140625 -0.96875q-0.140625 -0.40625 -0.390625 -0.671875q-0.265625 -0.265625 -0.625 -0.390625q-0.359375 -0.125 -0.796875 -0.125q-0.328125 0 -0.625 0.09375q-0.296875 0.09375 -0.546875 0.265625q-0.15625 0.109375 -0.3125 0.265625q-0.140625 0.140625 -0.265625 0.3125l-0.078125 -0.828125l-0.859375 0l0 5.625zm6.2072906 -2.859375l0 0.109375q0 0.59375 0.15625 1.125q0.171875 0.515625 0.46875 0.90625q0.28125 0.390625 0.6875 0.609375q0.421875 0.21875 0.9375 0.21875q0.515625 0 0.90625 -0.171875q0.390625 -0.1875 0.671875 -0.53125l0.046875 0.59375l0.875 0l0 -8.0l-0.953125 0l0 2.921875q-0.28125 -0.3125 -0.65625 -0.484375q-0.375 -0.171875 -0.890625 -0.171875q-0.5 0 -0.921875 0.21875q-0.421875 0.203125 -0.703125 0.59375q-0.296875 0.375 -0.46875 0.90625q-0.15625 0.53125 -0.15625 1.15625zm0.96875 0.109375l0 -0.109375q0 -0.40625 0.078125 -0.78125q0.09375 -0.375 0.28125 -0.65625q0.1875 -0.28125 0.46875 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.46875 0 0.78125 0.234375q0.328125 0.21875 0.515625 0.5625l0 2.609375q-0.1875 0.359375 -0.515625 0.578125q-0.3125 0.21875 -0.796875 0.21875q-0.40625 0 -0.6875 -0.15625q-0.28125 -0.171875 -0.46875 -0.453125q-0.1875 -0.28125 -0.28125 -0.640625q-0.078125 -0.375 -0.078125 -0.78125zm5.347931 -0.109375l0 0.109375q0 0.609375 0.171875 1.125q0.171875 0.515625 0.515625 0.90625q0.328125 0.390625 0.796875 0.609375q0.484375 0.21875 1.078125 0.21875q0.59375 0 1.0625 -0.21875q0.46875 -0.21875 0.8125 -0.609375q0.328125 -0.390625 0.5 -0.90625q0.171875 -0.515625 0.171875 -1.125l0 -0.109375q0 -0.609375 -0.171875 -1.125q-0.171875 -0.53125 -0.5 -0.921875q-0.34375 -0.390625 -0.828125 -0.609375q-0.46875 -0.21875 -1.0625 -0.21875q-0.59375 0 -1.0625 0.21875q-0.46875 0.21875 -0.796875 0.609375q-0.34375 0.390625 -0.515625 0.921875q-0.171875 0.515625 -0.171875 1.125zm0.953125 0.109375l0 -0.109375q0 -0.421875 0.09375 -0.796875q0.109375 -0.375 0.3125 -0.65625q0.203125 -0.296875 0.484375 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.40625 0 0.703125 0.171875q0.296875 0.15625 0.5 0.453125q0.203125 0.28125 0.296875 0.65625q0.109375 0.375 0.109375 0.796875l0 0.109375q0 0.40625 -0.109375 0.796875q-0.09375 0.375 -0.296875 0.65625q-0.203125 0.28125 -0.5 0.453125q-0.296875 0.171875 -0.6875 0.171875q-0.40625 0 -0.703125 -0.171875q-0.296875 -0.171875 -0.5 -0.453125q-0.203125 -0.28125 -0.3125 -0.65625q-0.09375 -0.390625 -0.09375 -0.796875zm9.394775 -2.984375q-0.609375 0 -1.09375 0.265625q-0.484375 0.265625 -0.828125 0.734375l0 -0.140625l-0.046875 -0.75l-0.90625 0l0 5.625l0.953125 0l0 -3.609375q0.09375 -0.265625 0.234375 -0.46875q0.15625 -0.21875 0.34375 -0.359375q0.21875 -0.171875 0.5 -0.25q0.28125 -0.09375 0.640625 -0.09375q0.28125 0 0.53125 0.03125q0.25 0.03125 0.53125 0.09375l0.125 -0.9375q-0.140625 -0.0625 -0.4375 -0.09375q-0.28125 -0.046875 -0.546875 -0.046875zm6.410431 5.734375l1.0 0l0 -0.078125q-0.09375 -0.234375 -0.15625 -0.546875q-0.046875 -0.328125 -0.046875 -0.609375l0 -2.609375q0 -0.46875 -0.171875 -0.828125q-0.171875 -0.359375 -0.46875 -0.59375q-0.296875 -0.234375 -0.71875 -0.34375q-0.40625 -0.125 -0.875 -0.125q-0.53125 0 -0.953125 0.15625q-0.40625 0.140625 -0.6875 0.375q-0.296875 0.234375 -0.453125 0.53125q-0.140625 0.296875 -0.15625 0.609375l0.96875 0q0 -0.1875 0.078125 -0.34375q0.09375 -0.171875 0.25 -0.28125q0.15625 -0.125 0.375 -0.1875q0.234375 -0.078125 0.515625 -0.078125q0.3125 0 0.5625 0.078125q0.25 0.078125 0.421875 0.21875q0.171875 0.140625 0.265625 0.34375q0.09375 0.203125 0.09375 0.453125l0 0.453125l-1.0625 0q-0.578125 0 -1.0625 0.109375q-0.46875 0.109375 -0.8125 0.34375q-0.328125 0.234375 -0.515625 0.578125q-0.1875 0.34375 -0.1875 0.8125q0 0.359375 0.140625 0.671875q0.140625 0.296875 0.390625 0.515625q0.25 0.21875 0.609375 0.359375q0.359375 0.125 0.8125 0.125q0.265625 0 0.515625 -0.0625q0.25 -0.0625 0.46875 -0.15625q0.203125 -0.09375 0.375 -0.21875q0.1875 -0.140625 0.34375 -0.28125q0.015625 0.171875 0.046875 0.34375q0.03125 0.15625 0.09375 0.265625zm-1.703125 -0.734375q-0.28125 0 -0.5 -0.0625q-0.203125 -0.078125 -0.34375 -0.21875q-0.140625 -0.125 -0.21875 -0.296875q-0.0625 -0.171875 -0.0625 -0.390625q0 -0.21875 0.078125 -0.390625q0.078125 -0.171875 0.234375 -0.296875q0.21875 -0.171875 0.578125 -0.25q0.375 -0.09375 0.875 -0.09375l0.90625 0l0 1.140625q-0.09375 0.171875 -0.234375 0.328125q-0.140625 0.140625 -0.34375 0.265625q-0.203125 0.125 -0.453125 0.203125q-0.234375 0.0625 -0.515625 0.0625zm5.6604004 1.390625l3.15625 -8.234375l-0.859375 0l-3.15625 8.234375l0.859375 0zm8.863556 -2.15625q0 0.140625 -0.046875 0.265625q-0.046875 0.109375 -0.15625 0.21875q-0.15625 0.15625 -0.453125 0.25q-0.28125 0.09375 -0.65625 0.09375q-0.25 0 -0.5 -0.046875q-0.25 -0.0625 -0.453125 -0.1875q-0.203125 -0.125 -0.34375 -0.328125q-0.140625 -0.203125 -0.15625 -0.5l-0.96875 0q0 0.359375 0.15625 0.703125q0.171875 0.328125 0.484375 0.578125q0.3125 0.25 0.75 0.40625q0.453125 0.15625 1.03125 0.15625q0.5 0 0.921875 -0.125q0.421875 -0.125 0.71875 -0.34375q0.296875 -0.21875 0.46875 -0.515625q0.171875 -0.3125 0.171875 -0.6875q0 -0.34375 -0.15625 -0.609375q-0.140625 -0.265625 -0.421875 -0.46875q-0.28125 -0.203125 -0.703125 -0.34375q-0.40625 -0.140625 -0.921875 -0.25q-0.390625 -0.078125 -0.65625 -0.15625q-0.25 -0.09375 -0.40625 -0.1875q-0.15625 -0.109375 -0.21875 -0.234375q-0.0625 -0.140625 -0.0625 -0.296875q0 -0.171875 0.078125 -0.3125q0.078125 -0.15625 0.234375 -0.265625q0.15625 -0.125 0.375 -0.1875q0.234375 -0.0625 0.546875 -0.0625q0.296875 0 0.53125 0.078125q0.234375 0.078125 0.40625 0.21875q0.171875 0.140625 0.265625 0.3125q0.09375 0.171875 0.09375 0.359375l0.953125 0q0 -0.375 -0.15625 -0.6875q-0.15625 -0.328125 -0.453125 -0.5625q-0.28125 -0.25 -0.703125 -0.375q-0.421875 -0.140625 -0.9375 -0.140625q-0.484375 0 -0.890625 0.140625q-0.390625 0.125 -0.6875 0.34375q-0.296875 0.21875 -0.453125 0.53125q-0.15625 0.296875 -0.15625 0.640625q0 0.34375 0.15625 0.609375q0.15625 0.265625 0.4375 0.453125q0.28125 0.203125 0.671875 0.34375q0.40625 0.125 0.890625 0.234375q0.390625 0.078125 0.65625 0.171875q0.265625 0.09375 0.421875 0.203125q0.171875 0.125 0.234375 0.265625q0.0625 0.125 0.0625 0.296875zm5.1447754 1.609375q0.828125 0 1.375 -0.328125q0.5625 -0.34375 0.84375 -0.765625l-0.578125 -0.453125q-0.265625 0.34375 -0.671875 0.546875q-0.40625 0.203125 -0.921875 0.203125q-0.390625 0 -0.71875 -0.140625q-0.3125 -0.140625 -0.53125 -0.40625q-0.234375 -0.234375 -0.359375 -0.546875q-0.125 -0.3125 -0.15625 -0.71875l0 -0.046875l4.015625 0l0 -0.421875q0 -0.59375 -0.15625 -1.09375q-0.140625 -0.5 -0.4375 -0.875q-0.3125 -0.375 -0.765625 -0.578125q-0.453125 -0.21875 -1.0625 -0.21875q-0.484375 0 -0.953125 0.203125q-0.453125 0.1875 -0.8125 0.5625q-0.359375 0.375 -0.578125 0.921875q-0.21875 0.53125 -0.21875 1.21875l0 0.203125q0 0.59375 0.1875 1.09375q0.203125 0.5 0.5625 0.859375q0.359375 0.375 0.84375 0.578125q0.5 0.203125 1.09375 0.203125zm-0.125 -5.046875q0.375 0 0.640625 0.140625q0.265625 0.125 0.4375 0.34375q0.1875 0.21875 0.28125 0.515625q0.09375 0.296875 0.09375 0.5625l0 0.046875l-3.015625 0q0.046875 -0.390625 0.1875 -0.6875q0.15625 -0.296875 0.359375 -0.515625q0.203125 -0.203125 0.453125 -0.296875q0.265625 -0.109375 0.5625 -0.109375zm7.722931 -0.796875q-0.609375 0 -1.09375 0.265625q-0.484375 0.265625 -0.828125 0.734375l0 -0.140625l-0.046875 -0.75l-0.90625 0l0 5.625l0.953125 0l0 -3.609375q0.09375 -0.265625 0.234375 -0.46875q0.15625 -0.21875 0.34375 -0.359375q0.21875 -0.171875 0.5 -0.25q0.28125 -0.09375 0.640625 -0.09375q0.28125 0 0.53125 0.03125q0.25 0.03125 0.53125 0.09375l0.125 -0.9375q-0.140625 -0.0625 -0.4375 -0.09375q-0.28125 -0.046875 -0.546875 -0.046875zm4.6291504 5.734375l0.734375 0l2.296875 -5.625l-0.984375 0l-1.578125 4.234375l-0.09375 0.359375l-0.09375 -0.359375l-1.609375 -4.234375l-0.984375 0l2.3125 5.625zm6.957306 0.109375q0.828125 0 1.375 -0.328125q0.5625 -0.34375 0.84375 -0.765625l-0.578125 -0.453125q-0.265625 0.34375 -0.671875 0.546875q-0.40625 0.203125 -0.921875 0.203125q-0.390625 0 -0.71875 -0.140625q-0.3125 -0.140625 -0.53125 -0.40625q-0.234375 -0.234375 -0.359375 -0.546875q-0.125 -0.3125 -0.15625 -0.71875l0 -0.046875l4.015625 0l0 -0.421875q0 -0.59375 -0.15625 -1.09375q-0.140625 -0.5 -0.4375 -0.875q-0.3125 -0.375 -0.765625 -0.578125q-0.453125 -0.21875 -1.0625 -0.21875q-0.484375 0 -0.953125 0.203125q-0.453125 0.1875 -0.8125 0.5625q-0.359375 0.375 -0.578125 0.921875q-0.21875 0.53125 -0.21875 1.21875l0 0.203125q0 0.59375 0.1875 1.09375q0.203125 0.5 0.5625 0.859375q0.359375 0.375 0.84375 0.578125q0.5 0.203125 1.09375 0.203125zm-0.125 -5.046875q0.375 0 0.640625 0.140625q0.265625 0.125 0.4375 0.34375q0.1875 0.21875 0.28125 0.515625q0.09375 0.296875 0.09375 0.5625l0 0.046875l-3.015625 0q0.046875 -0.390625 0.1875 -0.6875q0.15625 -0.296875 0.359375 -0.515625q0.203125 -0.203125 0.453125 -0.296875q0.265625 -0.109375 0.5625 -0.109375zm7.7229004 -0.796875q-0.609375 0 -1.09375 0.265625q-0.484375 0.265625 -0.828125 0.734375l0 -0.140625l-0.046875 -0.75l-0.90625 0l0 5.625l0.953125 0l0 -3.609375q0.09375 -0.265625 0.234375 -0.46875q0.15625 -0.21875 0.34375 -0.359375q0.21875 -0.171875 0.5 -0.25q0.28125 -0.09375 0.640625 -0.09375q0.28125 0 0.53125 0.03125q0.25 0.03125 0.53125 0.09375l0.125 -0.9375q-0.140625 -0.0625 -0.4375 -0.09375q-0.28125 -0.046875 -0.546875 -0.046875z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m23.874037 446.79492l207.40157 0l0 32.314972l-207.40157 0z" fill-rule="evenodd"/><path fill="#3b454e" d="m34.82716 463.0037l1.5 0q0.5 -0.015625 0.953125 -0.15625q0.46875 -0.15625 0.8125 -0.4375q0.34375 -0.296875 0.53125 -0.703125q0.203125 -0.421875 0.203125 -0.96875q0 -0.546875 -0.203125 -0.96875q-0.1875 -0.421875 -0.53125 -0.71875q-0.34375 -0.28125 -0.8125 -0.421875q-0.453125 -0.15625 -0.953125 -0.171875l-2.453125 0l0 7.578125l0.953125 0l0 -3.03125zm0 -0.796875l0 -2.953125l1.5 0q0.328125 0 0.609375 0.109375q0.28125 0.09375 0.5 0.296875q0.203125 0.1875 0.3125 0.46875q0.125 0.265625 0.125 0.609375q0 0.34375 -0.125 0.625q-0.109375 0.265625 -0.328125 0.453125q-0.203125 0.1875 -0.484375 0.296875q-0.28125 0.09375 -0.609375 0.09375l-1.5 0zm9.051041 3.828125l1.0 0l0 -0.078125q-0.09375 -0.234375 -0.15625 -0.546875q-0.046875 -0.328125 -0.046875 -0.609375l0 -2.609375q0 -0.46875 -0.171875 -0.828125q-0.171875 -0.359375 -0.46875 -0.59375q-0.296875 -0.234375 -0.71875 -0.34375q-0.40625 -0.125 -0.875 -0.125q-0.53125 0 -0.953125 0.15625q-0.40625 0.140625 -0.6875 0.375q-0.296875 0.234375 -0.453125 0.53125q-0.140625 0.296875 -0.15625 0.609375l0.96875 0q0 -0.1875 0.078125 -0.34375q0.09375 -0.171875 0.25 -0.28125q0.15625 -0.125 0.375 -0.1875q0.234375 -0.078125 0.515625 -0.078125q0.3125 0 0.5625 0.078125q0.25 0.078125 0.421875 0.21875q0.171875 0.140625 0.265625 0.34375q0.09375 0.203125 0.09375 0.453125l0 0.453125l-1.0625 0q-0.578125 0 -1.0625 0.109375q-0.46875 0.109375 -0.8125 0.34375q-0.328125 0.234375 -0.515625 0.578125q-0.1875 0.34375 -0.1875 0.8125q0 0.359375 0.140625 0.671875q0.140625 0.296875 0.390625 0.515625q0.25 0.21875 0.609375 0.359375q0.359375 0.125 0.8125 0.125q0.265625 0 0.515625 -0.0625q0.25 -0.0625 0.46875 -0.15625q0.203125 -0.09375 0.375 -0.21875q0.1875 -0.140625 0.34375 -0.28125q0.015625 0.171875 0.046875 0.34375q0.03125 0.15625 0.09375 0.265625zm-1.703125 -0.734375q-0.28125 0 -0.5 -0.0625q-0.203125 -0.078125 -0.34375 -0.21875q-0.140625 -0.125 -0.21875 -0.296875q-0.0625 -0.171875 -0.0625 -0.390625q0 -0.21875 0.078125 -0.390625q0.078125 -0.171875 0.234375 -0.296875q0.21875 -0.171875 0.578125 -0.25q0.375 -0.09375 0.875 -0.09375l0.90625 0l0 1.140625q-0.09375 0.171875 -0.234375 0.328125q-0.140625 0.140625 -0.34375 0.265625q-0.203125 0.125 -0.453125 0.203125q-0.234375 0.0625 -0.515625 0.0625zm4.3947906 0.734375l0.96875 0l0 -4.03125q0.09375 -0.1875 0.21875 -0.328125q0.140625 -0.15625 0.296875 -0.28125q0.1875 -0.125 0.40625 -0.203125q0.234375 -0.078125 0.5 -0.078125q0.3125 0 0.546875 0.078125q0.234375 0.078125 0.40625 0.234375q0.15625 0.15625 0.234375 0.421875q0.09375 0.265625 0.09375 0.640625l0 3.546875l0.96875 0l0 -3.578125q0 -0.5625 -0.140625 -0.96875q-0.140625 -0.40625 -0.390625 -0.671875q-0.265625 -0.265625 -0.625 -0.390625q-0.359375 -0.125 -0.796875 -0.125q-0.328125 0 -0.625 0.09375q-0.296875 0.09375 -0.546875 0.265625q-0.15625 0.109375 -0.3125 0.265625q-0.140625 0.140625 -0.265625 0.3125l-0.078125 -0.828125l-0.859375 0l0 5.625zm6.2072906 -2.859375l0 0.109375q0 0.59375 0.15625 1.125q0.171875 0.515625 0.46875 0.90625q0.28125 0.390625 0.6875 0.609375q0.421875 0.21875 0.9375 0.21875q0.515625 0 0.90625 -0.171875q0.390625 -0.1875 0.671875 -0.53125l0.046875 0.59375l0.875 0l0 -8.0l-0.953125 0l0 2.921875q-0.28125 -0.3125 -0.65625 -0.484375q-0.375 -0.171875 -0.890625 -0.171875q-0.5 0 -0.921875 0.21875q-0.421875 0.203125 -0.703125 0.59375q-0.296875 0.375 -0.46875 0.90625q-0.15625 0.53125 -0.15625 1.15625zm0.96875 0.109375l0 -0.109375q0 -0.40625 0.078125 -0.78125q0.09375 -0.375 0.28125 -0.65625q0.1875 -0.28125 0.46875 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.46875 0 0.78125 0.234375q0.328125 0.21875 0.515625 0.5625l0 2.609375q-0.1875 0.359375 -0.515625 0.578125q-0.3125 0.21875 -0.796875 0.21875q-0.40625 0 -0.6875 -0.15625q-0.28125 -0.171875 -0.46875 -0.453125q-0.1875 -0.28125 -0.28125 -0.640625q-0.078125 -0.375 -0.078125 -0.78125zm5.3479156 -0.109375l0 0.109375q0 0.609375 0.171875 1.125q0.171875 0.515625 0.515625 0.90625q0.328125 0.390625 0.796875 0.609375q0.484375 0.21875 1.078125 0.21875q0.59375 0 1.0625 -0.21875q0.46875 -0.21875 0.8125 -0.609375q0.328125 -0.390625 0.5000038 -0.90625q0.171875 -0.515625 0.171875 -1.125l0 -0.109375q0 -0.609375 -0.171875 -1.125q-0.17187881 -0.53125 -0.5000038 -0.921875q-0.34375 -0.390625 -0.828125 -0.609375q-0.46875 -0.21875 -1.0625 -0.21875q-0.59375 0 -1.0625 0.21875q-0.46875 0.21875 -0.796875 0.609375q-0.34375 0.390625 -0.515625 0.921875q-0.171875 0.515625 -0.171875 1.125zm0.953125 0.109375l0 -0.109375q0 -0.421875 0.09375 -0.796875q0.109375 -0.375 0.3125 -0.65625q0.203125 -0.296875 0.484375 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.40625 0 0.703125 0.171875q0.296875 0.15625 0.5 0.453125q0.203125 0.28125 0.296875 0.65625q0.109375 0.375 0.109375 0.796875l0 0.109375q0 0.40625 -0.109375 0.796875q-0.09375 0.375 -0.296875 0.65625q-0.203125 0.28125 -0.5 0.453125q-0.296875 0.171875 -0.6875 0.171875q-0.40625 0 -0.703125 -0.171875q-0.296875 -0.171875 -0.5 -0.453125q-0.203125 -0.28125 -0.3125 -0.65625q-0.09375 -0.390625 -0.09375 -0.796875zm9.394794 -2.984375q-0.609375 0 -1.09375 0.265625q-0.484375 0.265625 -0.828125 0.734375l0 -0.140625l-0.046875 -0.75l-0.90625 0l0 5.625l0.953125 0l0 -3.609375q0.09375 -0.265625 0.234375 -0.46875q0.15625 -0.21875 0.34375 -0.359375q0.21875 -0.171875 0.5 -0.25q0.28125 -0.09375 0.640625 -0.09375q0.28125 0 0.53125 0.03125q0.25 0.03125 0.53125 0.09375l0.125 -0.9375q-0.140625 -0.0625 -0.4375 -0.09375q-0.28125 -0.046875 -0.546875 -0.046875zm6.4104156 5.734375l1.0 0l0 -0.078125q-0.09375 -0.234375 -0.15625 -0.546875q-0.046875 -0.328125 -0.046875 -0.609375l0 -2.609375q0 -0.46875 -0.171875 -0.828125q-0.171875 -0.359375 -0.46875 -0.59375q-0.296875 -0.234375 -0.71875 -0.34375q-0.40625 -0.125 -0.875 -0.125q-0.53125 0 -0.953125 0.15625q-0.40625 0.140625 -0.6875 0.375q-0.296875 0.234375 -0.453125 0.53125q-0.140625 0.296875 -0.15625 0.609375l0.96875 0q0 -0.1875 0.078125 -0.34375q0.09375 -0.171875 0.25 -0.28125q0.15625 -0.125 0.375 -0.1875q0.234375 -0.078125 0.515625 -0.078125q0.3125 0 0.5625 0.078125q0.25 0.078125 0.421875 0.21875q0.171875 0.140625 0.265625 0.34375q0.09375 0.203125 0.09375 0.453125l0 0.453125l-1.0625 0q-0.578125 0 -1.0625 0.109375q-0.46875 0.109375 -0.8125 0.34375q-0.328125 0.234375 -0.515625 0.578125q-0.1875 0.34375 -0.1875 0.8125q0 0.359375 0.140625 0.671875q0.140625 0.296875 0.390625 0.515625q0.25 0.21875 0.609375 0.359375q0.359375 0.125 0.8125 0.125q0.265625 0 0.515625 -0.0625q0.25 -0.0625 0.46875 -0.15625q0.203125 -0.09375 0.375 -0.21875q0.1875 -0.140625 0.34375 -0.28125q0.015625 0.171875 0.046875 0.34375q0.03125 0.15625 0.09375 0.265625zm-1.703125 -0.734375q-0.28125 0 -0.5 -0.0625q-0.203125 -0.078125 -0.34375 -0.21875q-0.140625 -0.125 -0.21875 -0.296875q-0.0625 -0.171875 -0.0625 -0.390625q0 -0.21875 0.078125 -0.390625q0.078125 -0.171875 0.234375 -0.296875q0.21875 -0.171875 0.578125 -0.25q0.375 -0.09375 0.875 -0.09375l0.90625 0l0 1.140625q-0.09375 0.171875 -0.234375 0.328125q-0.140625 0.140625 -0.34375 0.265625q-0.203125 0.125 -0.453125 0.203125q-0.234375 0.0625 -0.515625 0.0625zm13.070831 -6.265625l-0.96875 0l0 1.375l-1.484375 0l0 0.734375l1.484375 0l0 3.0625q0 0.515625 0.140625 0.890625q0.140625 0.359375 0.375 0.59375q0.234375 0.234375 0.5625 0.34375q0.328125 0.109375 0.703125 0.109375q0.21875 0 0.4375 -0.03125q0.234375 -0.015625 0.4375 -0.0625q0.203125 -0.03125 0.375 -0.078125q0.171875 -0.0625 0.296875 -0.140625l-0.140625 -0.671875q-0.09375 0.015625 -0.234375 0.046875q-0.125 0.03125 -0.28125 0.046875q-0.171875 0.03125 -0.34375 0.046875q-0.15625 0.015625 -0.3125 0.015625q-0.21875 0 -0.40625 -0.046875q-0.1875 -0.046875 -0.328125 -0.1875q-0.15625 -0.125 -0.234375 -0.328125q-0.078125 -0.21875 -0.078125 -0.546875l0 -3.0625l2.140625 0l0 -0.734375l-2.140625 0l0 -1.375zm6.5979156 7.109375q0.828125 0 1.375 -0.328125q0.5625 -0.34375 0.84375 -0.765625l-0.578125 -0.453125q-0.265625 0.34375 -0.671875 0.546875q-0.40625 0.203125 -0.921875 0.203125q-0.390625 0 -0.71875 -0.140625q-0.3125 -0.140625 -0.53125 -0.40625q-0.234375 -0.234375 -0.359375 -0.546875q-0.125 -0.3125 -0.15625 -0.71875l0 -0.046875l4.015625 0l0 -0.421875q0 -0.59375 -0.15625 -1.09375q-0.140625 -0.5 -0.4375 -0.875q-0.3125 -0.375 -0.765625 -0.578125q-0.453125 -0.21875 -1.0625 -0.21875q-0.484375 0 -0.953125 0.203125q-0.453125 0.1875 -0.8125 0.5625q-0.359375 0.375 -0.578125 0.921875q-0.21875 0.53125 -0.21875 1.21875l0 0.203125q0 0.59375 0.1875 1.09375q0.203125 0.5 0.5625 0.859375q0.359375 0.375 0.84375 0.578125q0.5 0.203125 1.09375 0.203125zm-0.125 -5.046875q0.375 0 0.640625 0.140625q0.265625 0.125 0.4375 0.34375q0.1875 0.21875 0.28125 0.515625q0.09375 0.296875 0.09375 0.5625l0 0.046875l-3.015625 0q0.046875 -0.390625 0.1875 -0.6875q0.15625 -0.296875 0.359375 -0.515625q0.203125 -0.203125 0.453125 -0.296875q0.265625 -0.109375 0.5625 -0.109375zm7.7697906 3.4375q0 0.140625 -0.046875 0.265625q-0.046875 0.109375 -0.15625 0.21875q-0.15625 0.15625 -0.453125 0.25q-0.28125 0.09375 -0.65625 0.09375q-0.25 0 -0.5 -0.046875q-0.25 -0.0625 -0.453125 -0.1875q-0.203125 -0.125 -0.34375 -0.328125q-0.140625 -0.203125 -0.15625 -0.5l-0.96875 0q0 0.359375 0.15625 0.703125q0.171875 0.328125 0.484375 0.578125q0.3125 0.25 0.75 0.40625q0.453125 0.15625 1.03125 0.15625q0.5 0 0.921875 -0.125q0.421875 -0.125 0.71875 -0.34375q0.296875 -0.21875 0.46875 -0.515625q0.171875 -0.3125 0.171875 -0.6875q0 -0.34375 -0.15625 -0.609375q-0.140625 -0.265625 -0.421875 -0.46875q-0.28125 -0.203125 -0.703125 -0.34375q-0.40625 -0.140625 -0.921875 -0.25q-0.390625 -0.078125 -0.65625 -0.15625q-0.25 -0.09375 -0.40625 -0.1875q-0.15625 -0.109375 -0.21875 -0.234375q-0.0625 -0.140625 -0.0625 -0.296875q0 -0.171875 0.078125 -0.3125q0.078125 -0.15625 0.234375 -0.265625q0.15625 -0.125 0.375 -0.1875q0.234375 -0.0625 0.546875 -0.0625q0.296875 0 0.53125 0.078125q0.234375 0.078125 0.40625 0.21875q0.171875 0.140625 0.265625 0.3125q0.09375 0.171875 0.09375 0.359375l0.953125 0q0 -0.375 -0.15625 -0.6875q-0.15625 -0.328125 -0.453125 -0.5625q-0.28125 -0.25 -0.703125 -0.375q-0.421875 -0.140625 -0.9375 -0.140625q-0.484375 0 -0.890625 0.140625q-0.390625 0.125 -0.6875 0.34375q-0.296875 0.21875 -0.453125 0.53125q-0.15625 0.296875 -0.15625 0.640625q0 0.34375 0.15625 0.609375q0.15625 0.265625 0.4375 0.453125q0.28125 0.203125 0.671875 0.34375q0.40625 0.125 0.890625 0.234375q0.390625 0.078125 0.65625 0.171875q0.265625 0.09375 0.421875 0.203125q0.171875 0.125 0.234375 0.265625q0.0625 0.125 0.0625 0.296875zm4.9416656 -5.5l-0.96875 0l0 1.375l-1.484375 0l0 0.734375l1.484375 0l0 3.0625q0 0.515625 0.140625 0.890625q0.140625 0.359375 0.375 0.59375q0.234375 0.234375 0.5625 0.34375q0.328125 0.109375 0.703125 0.109375q0.21875 0 0.4375 -0.03125q0.234375 -0.015625 0.4375 -0.0625q0.203125 -0.03125 0.375 -0.078125q0.171875 -0.0625 0.296875 -0.140625l-0.140625 -0.671875q-0.09375 0.015625 -0.234375 0.046875q-0.125 0.03125 -0.28125 0.046875q-0.171875 0.03125 -0.34375 0.046875q-0.15625 0.015625 -0.3125 0.015625q-0.21875 0 -0.40625 -0.046875q-0.1875 -0.046875 -0.328125 -0.1875q-0.15625 -0.125 -0.234375 -0.328125q-0.078125 -0.21875 -0.078125 -0.546875l0 -3.0625l2.140625 0l0 -0.734375l-2.140625 0l0 -1.375zm7.8479156 5.5q0 0.140625 -0.046875 0.265625q-0.046875 0.109375 -0.15625 0.21875q-0.15625 0.15625 -0.453125 0.25q-0.28125 0.09375 -0.65625 0.09375q-0.25 0 -0.5 -0.046875q-0.25 -0.0625 -0.453125 -0.1875q-0.203125 -0.125 -0.34375 -0.328125q-0.140625 -0.203125 -0.15625 -0.5l-0.96875 0q0 0.359375 0.15625 0.703125q0.171875 0.328125 0.484375 0.578125q0.3125 0.25 0.75 0.40625q0.453125 0.15625 1.03125 0.15625q0.5 0 0.921875 -0.125q0.421875 -0.125 0.71875 -0.34375q0.296875 -0.21875 0.46875 -0.515625q0.171875 -0.3125 0.171875 -0.6875q0 -0.34375 -0.15625 -0.609375q-0.140625 -0.265625 -0.421875 -0.46875q-0.28125 -0.203125 -0.703125 -0.34375q-0.40625 -0.140625 -0.921875 -0.25q-0.390625 -0.078125 -0.65625 -0.15625q-0.25 -0.09375 -0.40625 -0.1875q-0.15625 -0.109375 -0.21875 -0.234375q-0.0625 -0.140625 -0.0625 -0.296875q0 -0.171875 0.078125 -0.3125q0.078125 -0.15625 0.234375 -0.265625q0.15625 -0.125 0.375 -0.1875q0.234375 -0.0625 0.546875 -0.0625q0.296875 0 0.53125 0.078125q0.234375 0.078125 0.40625 0.21875q0.171875 0.140625 0.265625 0.3125q0.09375 0.171875 0.09375 0.359375l0.953125 0q0 -0.375 -0.15625 -0.6875q-0.15625 -0.328125 -0.453125 -0.5625q-0.28125 -0.25 -0.703125 -0.375q-0.421875 -0.140625 -0.9375 -0.140625q-0.484375 0 -0.890625 0.140625q-0.390625 0.125 -0.6875 0.34375q-0.296875 0.21875 -0.453125 0.53125q-0.15625 0.296875 -0.15625 0.640625q0 0.34375 0.15625 0.609375q0.15625 0.265625 0.4375 0.453125q0.28125 0.203125 0.671875 0.34375q0.40625 0.125 0.890625 0.234375q0.390625 0.078125 0.65625 0.171875q0.265625 0.09375 0.421875 0.203125q0.171875 0.125 0.234375 0.265625q0.0625 0.125 0.0625 0.296875z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m-16.84849 421.91925l112.0 0l0 35.55905l-112.0 0z" fill-rule="evenodd"/><path fill="#3b454e" d="m17.969458 442.2349l0 -7.984375l-1.84375 0l0 9.46875l6.28125 0l0 -1.484375l-4.4375 0zm9.513809 1.609375q1.03125 0 1.78125 -0.390625q0.75 -0.390625 1.09375 -0.890625l-0.90625 -0.96875q-0.3125 0.40625 -0.8125 0.609375q-0.5 0.1875 -1.046875 0.1875q-0.375 0 -0.703125 -0.109375q-0.3125 -0.125 -0.546875 -0.328125q-0.25 -0.21875 -0.390625 -0.46875q-0.140625 -0.265625 -0.234375 -0.6875l0 -0.015625l4.78125 0l0 -0.765625q0 -0.78125 -0.21875 -1.421875q-0.21875 -0.640625 -0.625 -1.09375q-0.421875 -0.453125 -1.015625 -0.703125q-0.59375 -0.25 -1.359375 -0.25q-0.734375 0 -1.359375 0.265625q-0.625 0.265625 -1.078125 0.75q-0.453125 0.484375 -0.703125 1.15625q-0.25 0.65625 -0.25 1.46875l0 0.25q0 0.71875 0.25 1.34375q0.265625 0.609375 0.734375 1.078125q0.46875 0.453125 1.125 0.71875q0.671875 0.265625 1.484375 0.265625zm-0.203125 -5.828125q0.34375 0 0.59375 0.109375q0.265625 0.09375 0.453125 0.28125q0.1875 0.1875 0.28125 0.453125q0.109375 0.25 0.109375 0.53125l0 0.140625l-2.96875 0q0.0625 -0.34375 0.1875 -0.625q0.140625 -0.28125 0.34375 -0.484375q0.1875 -0.203125 0.4375 -0.296875q0.25 -0.109375 0.5625 -0.109375zm4.607559 2.125l0 0.140625q0 0.765625 0.1874981 1.421875q0.203125 0.65625 0.578125 1.125q0.375 0.484375 0.890625 0.75q0.53125 0.265625 1.1875 0.265625q0.328125 0 0.609375 -0.078125q0.296875 -0.0625 0.546875 -0.1875q0.15625 -0.09375 0.296875 -0.203125q0.15625 -0.125 0.28125 -0.265625l0 0.40625q0 0.359375 -0.109375 0.640625q-0.09375 0.28125 -0.28125 0.484375q-0.203125 0.203125 -0.515625 0.3125q-0.3125 0.125 -0.703125 0.125q-0.25 0 -0.484375 -0.0625q-0.234375 -0.046875 -0.453125 -0.140625q-0.21875 -0.09375 -0.421875 -0.25q-0.203125 -0.15625 -0.375 -0.359375l-0.8125 1.109375q0.234375 0.296875 0.546875 0.5q0.328125 0.21875 0.671875 0.34375q0.359375 0.140625 0.71875 0.203125q0.375 0.0625 0.6875 0.0625q0.75 0 1.359375 -0.203125q0.625 -0.1875 1.0625 -0.578125q0.4375 -0.375 0.671875 -0.9375q0.25 -0.5625 0.25 -1.28125l0 -6.8125l-1.640625 0l-0.078125 0.671875q-0.125 -0.15625 -0.28125 -0.28125q-0.15625 -0.140625 -0.34375 -0.234375q-0.234375 -0.140625 -0.53125 -0.203125q-0.296875 -0.078125 -0.65625 -0.078125q-0.671875 0 -1.203125 0.265625q-0.515625 0.25 -0.890625 0.734375q-0.375 0.46875 -0.578125 1.140625q-0.1874981 0.65625 -0.1874981 1.453125zm1.8124981 0.140625l0 -0.140625q0 -0.4375 0.09375 -0.828125q0.09375 -0.390625 0.28125 -0.671875q0.1875 -0.296875 0.453125 -0.453125q0.28125 -0.171875 0.671875 -0.171875q0.203125 0 0.375 0.046875q0.1875 0.03125 0.34375 0.109375q0.171875 0.078125 0.3125 0.21875q0.140625 0.140625 0.234375 0.3125l0 2.984375q-0.09375 0.15625 -0.21875 0.296875q-0.125 0.125 -0.28125 0.21875q-0.15625 0.078125 -0.359375 0.125q-0.1875 0.046875 -0.421875 0.046875q-0.375 0 -0.65625 -0.15625q-0.28125 -0.171875 -0.46875 -0.453125q-0.171875 -0.28125 -0.265625 -0.65625q-0.09375 -0.390625 -0.09375 -0.828125zm9.779434 3.5625q1.03125 0 1.78125 -0.390625q0.75 -0.390625 1.09375 -0.890625l-0.90625 -0.96875q-0.3125 0.40625 -0.8125 0.609375q-0.5 0.1875 -1.046875 0.1875q-0.375 0 -0.703125 -0.109375q-0.3125 -0.125 -0.546875 -0.328125q-0.25 -0.21875 -0.390625 -0.46875q-0.140625 -0.265625 -0.234375 -0.6875l0 -0.015625l4.78125 0l0 -0.765625q0 -0.78125 -0.21875 -1.421875q-0.21875 -0.640625 -0.625 -1.09375q-0.421875 -0.453125 -1.015625 -0.703125q-0.59375 -0.25 -1.359375 -0.25q-0.734375 0 -1.359375 0.265625q-0.625 0.265625 -1.078125 0.75q-0.453125 0.484375 -0.703125 1.15625q-0.25 0.65625 -0.25 1.46875l0 0.25q0 0.71875 0.25 1.34375q0.265625 0.609375 0.734375 1.078125q0.46875 0.453125 1.125 0.71875q0.671875 0.265625 1.484375 0.265625zm-0.203125 -5.828125q0.34375 0 0.59375 0.109375q0.265625 0.09375 0.453125 0.28125q0.1875 0.1875 0.28125 0.453125q0.109375 0.25 0.109375 0.53125l0 0.140625l-2.96875 0q0.0625 -0.34375 0.1875 -0.625q0.140625 -0.28125 0.34375 -0.484375q0.1875 -0.203125 0.4375 -0.296875q0.25 -0.109375 0.5625 -0.109375zm4.795059 5.703125l1.8125 0l0 -5.0q0.09375 -0.140625 0.203125 -0.25q0.109375 -0.125 0.25 -0.21875q0.15625 -0.109375 0.375 -0.171875q0.21875 -0.0625 0.484375 -0.0625q0.3125 0 0.5625 0.0625q0.25 0.0625 0.421875 0.21875q0.171875 0.15625 0.265625 0.4375q0.09375 0.265625 0.09375 0.671875l0 4.3125l1.8125 0l0 -4.328125q0 -0.78125 -0.1875 -1.3125q-0.171875 -0.53125 -0.484375 -0.875q-0.328125 -0.34375 -0.78125 -0.5q-0.4375 -0.15625 -0.96875 -0.15625q-0.421875 0 -0.796875 0.125q-0.359375 0.109375 -0.671875 0.328125q-0.1875 0.125 -0.34375 0.296875q-0.15625 0.15625 -0.296875 0.359375l-0.109375 -0.984375l-1.640625 0l0 7.046875zm7.810684 -3.578125l0 0.140625q0 0.765625 0.1875 1.421875q0.1875 0.65625 0.546875 1.125q0.34375 0.484375 0.859375 0.75q0.515625 0.265625 1.15625 0.265625q0.59375 0 1.03125 -0.21875q0.453125 -0.234375 0.78125 -0.640625l0.09375 0.734375l1.640625 0l0 -10.0l-1.8125 0l0 3.59375q-0.328125 -0.375 -0.75 -0.5625q-0.421875 -0.203125 -0.96875 -0.203125q-0.65625 0 -1.171875 0.265625q-0.515625 0.25 -0.875 0.734375q-0.359375 0.46875 -0.546875 1.140625q-0.171875 0.65625 -0.171875 1.453125zm1.796875 0.140625l0 -0.140625q0 -0.4375 0.078125 -0.828125q0.078125 -0.390625 0.25 -0.671875q0.171875 -0.296875 0.4375 -0.453125q0.28125 -0.171875 0.65625 -0.171875q0.46875 0 0.765625 0.203125q0.3125 0.203125 0.5 0.546875l0 2.859375q-0.1875 0.34375 -0.5 0.546875q-0.3125 0.203125 -0.78125 0.203125q-0.375 0 -0.640625 -0.15625q-0.265625 -0.171875 -0.4375 -0.453125q-0.171875 -0.28125 -0.25 -0.65625q-0.078125 -0.390625 -0.078125 -0.828125z" fill-rule="nonzero"/><path fill="#2c9693" d="m14.456713 462.95374l0 0c0 -2.600525 2.108139 -4.708679 4.708662 -4.708679l0 0c1.2488136 0 2.4464817 0.49609375 3.329527 1.3791504c0.8830452 0.8830261 1.3791351 2.0806885 1.3791351 3.3295288l0 0c0 2.6004944 -2.108141 4.7086487 -4.708662 4.7086487l0 0c-2.600523 0 -4.708662 -2.1081543 -4.708662 -4.7086487z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m23.874037 467.23804l207.40157 0l0 45.259827l-207.40157 0z" fill-rule="evenodd"/><path fill="#3b454e" d="m34.82716 483.44678l1.5 0q0.5 -0.015625 0.953125 -0.15625q0.46875 -0.15625 0.8125 -0.4375q0.34375 -0.296875 0.53125 -0.703125q0.203125 -0.421875 0.203125 -0.96875q0 -0.546875 -0.203125 -0.96875q-0.1875 -0.421875 -0.53125 -0.71875q-0.34375 -0.28125 -0.8125 -0.421875q-0.453125 -0.15625 -0.953125 -0.171875l-2.453125 0l0 7.578125l0.953125 0l0 -3.03125zm0 -0.796875l0 -2.953125l1.5 0q0.328125 0 0.609375 0.109375q0.28125 0.09375 0.5 0.296875q0.203125 0.1875 0.3125 0.46875q0.125 0.265625 0.125 0.609375q0 0.34375 -0.125 0.625q-0.109375 0.265625 -0.328125 0.453125q-0.203125 0.1875 -0.484375 0.296875q-0.28125 0.09375 -0.609375 0.09375l-1.5 0zm9.051041 3.828125l1.0 0l0 -0.078125q-0.09375 -0.234375 -0.15625 -0.546875q-0.046875 -0.328125 -0.046875 -0.609375l0 -2.609375q0 -0.46875 -0.171875 -0.828125q-0.171875 -0.359375 -0.46875 -0.59375q-0.296875 -0.234375 -0.71875 -0.34375q-0.40625 -0.125 -0.875 -0.125q-0.53125 0 -0.953125 0.15625q-0.40625 0.140625 -0.6875 0.375q-0.296875 0.234375 -0.453125 0.53125q-0.140625 0.296875 -0.15625 0.609375l0.96875 0q0 -0.1875 0.078125 -0.34375q0.09375 -0.171875 0.25 -0.28125q0.15625 -0.125 0.375 -0.1875q0.234375 -0.078125 0.515625 -0.078125q0.3125 0 0.5625 0.078125q0.25 0.078125 0.421875 0.21875q0.171875 0.140625 0.265625 0.34375q0.09375 0.203125 0.09375 0.453125l0 0.453125l-1.0625 0q-0.578125 0 -1.0625 0.109375q-0.46875 0.109375 -0.8125 0.34375q-0.328125 0.234375 -0.515625 0.578125q-0.1875 0.34375 -0.1875 0.8125q0 0.359375 0.140625 0.671875q0.140625 0.296875 0.390625 0.515625q0.25 0.21875 0.609375 0.359375q0.359375 0.125 0.8125 0.125q0.265625 0 0.515625 -0.0625q0.25 -0.0625 0.46875 -0.15625q0.203125 -0.09375 0.375 -0.21875q0.1875 -0.140625 0.34375 -0.28125q0.015625 0.171875 0.046875 0.34375q0.03125 0.15625 0.09375 0.265625zm-1.703125 -0.734375q-0.28125 0 -0.5 -0.0625q-0.203125 -0.078125 -0.34375 -0.21875q-0.140625 -0.125 -0.21875 -0.296875q-0.0625 -0.171875 -0.0625 -0.390625q0 -0.21875 0.078125 -0.390625q0.078125 -0.171875 0.234375 -0.296875q0.21875 -0.171875 0.578125 -0.25q0.375 -0.09375 0.875 -0.09375l0.90625 0l0 1.140625q-0.09375 0.171875 -0.234375 0.328125q-0.140625 0.140625 -0.34375 0.265625q-0.203125 0.125 -0.453125 0.203125q-0.234375 0.0625 -0.515625 0.0625zm4.3947906 0.734375l0.96875 0l0 -4.03125q0.09375 -0.1875 0.21875 -0.328125q0.140625 -0.15625 0.296875 -0.28125q0.1875 -0.125 0.40625 -0.203125q0.234375 -0.078125 0.5 -0.078125q0.3125 0 0.546875 0.078125q0.234375 0.078125 0.40625 0.234375q0.15625 0.15625 0.234375 0.421875q0.09375 0.265625 0.09375 0.640625l0 3.546875l0.96875 0l0 -3.578125q0 -0.5625 -0.140625 -0.96875q-0.140625 -0.40625 -0.390625 -0.671875q-0.265625 -0.265625 -0.625 -0.390625q-0.359375 -0.125 -0.796875 -0.125q-0.328125 0 -0.625 0.09375q-0.296875 0.09375 -0.546875 0.265625q-0.15625 0.109375 -0.3125 0.265625q-0.140625 0.140625 -0.265625 0.3125l-0.078125 -0.828125l-0.859375 0l0 5.625zm6.2072906 -2.859375l0 0.109375q0 0.59375 0.15625 1.125q0.171875 0.515625 0.46875 0.90625q0.28125 0.390625 0.6875 0.609375q0.421875 0.21875 0.9375 0.21875q0.515625 0 0.90625 -0.171875q0.390625 -0.1875 0.671875 -0.53125l0.046875 0.59375l0.875 0l0 -8.0l-0.953125 0l0 2.921875q-0.28125 -0.3125 -0.65625 -0.484375q-0.375 -0.171875 -0.890625 -0.171875q-0.5 0 -0.921875 0.21875q-0.421875 0.203125 -0.703125 0.59375q-0.296875 0.375 -0.46875 0.90625q-0.15625 0.53125 -0.15625 1.15625zm0.96875 0.109375l0 -0.109375q0 -0.40625 0.078125 -0.78125q0.09375 -0.375 0.28125 -0.65625q0.1875 -0.28125 0.46875 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.46875 0 0.78125 0.234375q0.328125 0.21875 0.515625 0.5625l0 2.609375q-0.1875 0.359375 -0.515625 0.578125q-0.3125 0.21875 -0.796875 0.21875q-0.40625 0 -0.6875 -0.15625q-0.28125 -0.171875 -0.46875 -0.453125q-0.1875 -0.28125 -0.28125 -0.640625q-0.078125 -0.375 -0.078125 -0.78125zm5.3479156 -0.109375l0 0.109375q0 0.609375 0.171875 1.125q0.171875 0.515625 0.515625 0.90625q0.328125 0.390625 0.796875 0.609375q0.484375 0.21875 1.078125 0.21875q0.59375 0 1.0625 -0.21875q0.46875 -0.21875 0.8125 -0.609375q0.328125 -0.390625 0.5000038 -0.90625q0.171875 -0.515625 0.171875 -1.125l0 -0.109375q0 -0.609375 -0.171875 -1.125q-0.17187881 -0.53125 -0.5000038 -0.921875q-0.34375 -0.390625 -0.828125 -0.609375q-0.46875 -0.21875 -1.0625 -0.21875q-0.59375 0 -1.0625 0.21875q-0.46875 0.21875 -0.796875 0.609375q-0.34375 0.390625 -0.515625 0.921875q-0.171875 0.515625 -0.171875 1.125zm0.953125 0.109375l0 -0.109375q0 -0.421875 0.09375 -0.796875q0.109375 -0.375 0.3125 -0.65625q0.203125 -0.296875 0.484375 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.40625 0 0.703125 0.171875q0.296875 0.15625 0.5 0.453125q0.203125 0.28125 0.296875 0.65625q0.109375 0.375 0.109375 0.796875l0 0.109375q0 0.40625 -0.109375 0.796875q-0.09375 0.375 -0.296875 0.65625q-0.203125 0.28125 -0.5 0.453125q-0.296875 0.171875 -0.6875 0.171875q-0.40625 0 -0.703125 -0.171875q-0.296875 -0.171875 -0.5 -0.453125q-0.203125 -0.28125 -0.3125 -0.65625q-0.09375 -0.390625 -0.09375 -0.796875zm9.394794 -2.984375q-0.609375 0 -1.09375 0.265625q-0.484375 0.265625 -0.828125 0.734375l0 -0.140625l-0.046875 -0.75l-0.90625 0l0 5.625l0.953125 0l0 -3.609375q0.09375 -0.265625 0.234375 -0.46875q0.15625 -0.21875 0.34375 -0.359375q0.21875 -0.171875 0.5 -0.25q0.28125 -0.09375 0.640625 -0.09375q0.28125 0 0.53125 0.03125q0.25 0.03125 0.53125 0.09375l0.125 -0.9375q-0.140625 -0.0625 -0.4375 -0.09375q-0.28125 -0.046875 -0.546875 -0.046875zm6.4104156 5.734375l1.0 0l0 -0.078125q-0.09375 -0.234375 -0.15625 -0.546875q-0.046875 -0.328125 -0.046875 -0.609375l0 -2.609375q0 -0.46875 -0.171875 -0.828125q-0.171875 -0.359375 -0.46875 -0.59375q-0.296875 -0.234375 -0.71875 -0.34375q-0.40625 -0.125 -0.875 -0.125q-0.53125 0 -0.953125 0.15625q-0.40625 0.140625 -0.6875 0.375q-0.296875 0.234375 -0.453125 0.53125q-0.140625 0.296875 -0.15625 0.609375l0.96875 0q0 -0.1875 0.078125 -0.34375q0.09375 -0.171875 0.25 -0.28125q0.15625 -0.125 0.375 -0.1875q0.234375 -0.078125 0.515625 -0.078125q0.3125 0 0.5625 0.078125q0.25 0.078125 0.421875 0.21875q0.171875 0.140625 0.265625 0.34375q0.09375 0.203125 0.09375 0.453125l0 0.453125l-1.0625 0q-0.578125 0 -1.0625 0.109375q-0.46875 0.109375 -0.8125 0.34375q-0.328125 0.234375 -0.515625 0.578125q-0.1875 0.34375 -0.1875 0.8125q0 0.359375 0.140625 0.671875q0.140625 0.296875 0.390625 0.515625q0.25 0.21875 0.609375 0.359375q0.359375 0.125 0.8125 0.125q0.265625 0 0.515625 -0.0625q0.25 -0.0625 0.46875 -0.15625q0.203125 -0.09375 0.375 -0.21875q0.1875 -0.140625 0.34375 -0.28125q0.015625 0.171875 0.046875 0.34375q0.03125 0.15625 0.09375 0.265625zm-1.703125 -0.734375q-0.28125 0 -0.5 -0.0625q-0.203125 -0.078125 -0.34375 -0.21875q-0.140625 -0.125 -0.21875 -0.296875q-0.0625 -0.171875 -0.0625 -0.390625q0 -0.21875 0.078125 -0.390625q0.078125 -0.171875 0.234375 -0.296875q0.21875 -0.171875 0.578125 -0.25q0.375 -0.09375 0.875 -0.09375l0.90625 0l0 1.140625q-0.09375 0.171875 -0.234375 0.328125q-0.140625 0.140625 -0.34375 0.265625q-0.203125 0.125 -0.453125 0.203125q-0.234375 0.0625 -0.515625 0.0625zm13.180206 0.0625q-0.453125 0 -0.75 -0.171875q-0.296875 -0.1875 -0.484375 -0.484375q-0.1875 -0.28125 -0.265625 -0.640625q-0.078125 -0.375 -0.078125 -0.734375l0 -0.21875q0 -0.359375 0.078125 -0.71875q0.078125 -0.359375 0.265625 -0.65625q0.1875 -0.28125 0.484375 -0.453125q0.3125 -0.1875 0.75 -0.1875q0.296875 0 0.546875 0.09375q0.25 0.09375 0.4375 0.265625q0.1875 0.171875 0.28125 0.40625q0.109375 0.21875 0.125 0.484375l0.90625 0q0 -0.4375 -0.171875 -0.8125q-0.171875 -0.375 -0.46875 -0.640625q-0.3125 -0.28125 -0.734375 -0.4375q-0.421875 -0.15625 -0.921875 -0.15625q-0.625 0 -1.109375 0.234375q-0.484375 0.21875 -0.796875 0.609375q-0.328125 0.390625 -0.484375 0.90625q-0.15625 0.5 -0.15625 1.0625l0 0.21875q0 0.5625 0.15625 1.078125q0.15625 0.5 0.484375 0.875q0.3125 0.390625 0.796875 0.625q0.484375 0.234375 1.109375 0.234375q0.453125 0 0.859375 -0.15625q0.421875 -0.15625 0.734375 -0.421875q0.3125 -0.25 0.5 -0.59375q0.203125 -0.34375 0.203125 -0.71875l-0.90625 0q-0.015625 0.234375 -0.140625 0.4375q-0.109375 0.203125 -0.296875 0.34375q-0.1875 0.15625 -0.4375 0.25q-0.25 0.078125 -0.515625 0.078125zm3.7385406 -2.1875l0 0.109375q0 0.609375 0.171875 1.125q0.171875 0.515625 0.515625 0.90625q0.328125 0.390625 0.796875 0.609375q0.484375 0.21875 1.078125 0.21875q0.59375 0 1.0625 -0.21875q0.46875 -0.21875 0.8125 -0.609375q0.328125 -0.390625 0.5 -0.90625q0.171875 -0.515625 0.171875 -1.125l0 -0.109375q0 -0.609375 -0.171875 -1.125q-0.171875 -0.53125 -0.5 -0.921875q-0.34375 -0.390625 -0.828125 -0.609375q-0.46875 -0.21875 -1.0625 -0.21875q-0.59375 0 -1.0625 0.21875q-0.46875 0.21875 -0.796875 0.609375q-0.34375 0.390625 -0.515625 0.921875q-0.171875 0.515625 -0.171875 1.125zm0.953125 0.109375l0 -0.109375q0 -0.421875 0.09375 -0.796875q0.109375 -0.375 0.3125 -0.65625q0.203125 -0.296875 0.484375 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.40625 0 0.703125 0.171875q0.296875 0.15625 0.5 0.453125q0.203125 0.28125 0.296875 0.65625q0.109375 0.375 0.109375 0.796875l0 0.109375q0 0.40625 -0.109375 0.796875q-0.09375 0.375 -0.296875 0.65625q-0.203125 0.28125 -0.5 0.453125q-0.296875 0.171875 -0.6875 0.171875q-0.40625 0 -0.703125 -0.171875q-0.296875 -0.171875 -0.5 -0.453125q-0.203125 -0.28125 -0.3125 -0.65625q-0.09375 -0.390625 -0.09375 -0.796875zm9.394791 -2.984375q-0.609375 0 -1.09375 0.265625q-0.484375 0.265625 -0.828125 0.734375l0 -0.140625l-0.046875 -0.75l-0.90625 0l0 5.625l0.953125 0l0 -3.609375q0.09375 -0.265625 0.234375 -0.46875q0.15625 -0.21875 0.34375 -0.359375q0.21875 -0.171875 0.5 -0.25q0.28125 -0.09375 0.640625 -0.09375q0.28125 0 0.53125 0.03125q0.25 0.03125 0.53125 0.09375l0.125 -0.9375q-0.140625 -0.0625 -0.4375 -0.09375q-0.28125 -0.046875 -0.546875 -0.046875zm5.1916656 5.84375q0.828125 0 1.375 -0.328125q0.5625 -0.34375 0.84375 -0.765625l-0.578125 -0.453125q-0.265625 0.34375 -0.671875 0.546875q-0.40625 0.203125 -0.921875 0.203125q-0.390625 0 -0.71875 -0.140625q-0.3125 -0.140625 -0.53125 -0.40625q-0.234375 -0.234375 -0.359375 -0.546875q-0.125 -0.3125 -0.15625 -0.71875l0 -0.046875l4.015625 0l0 -0.421875q0 -0.59375 -0.15625 -1.09375q-0.140625 -0.5 -0.4375 -0.875q-0.3125 -0.375 -0.765625 -0.578125q-0.453125 -0.21875 -1.0625 -0.21875q-0.484375 0 -0.953125 0.203125q-0.453125 0.1875 -0.8125 0.5625q-0.359375 0.375 -0.578125 0.921875q-0.21875 0.53125 -0.21875 1.21875l0 0.203125q0 0.59375 0.1875 1.09375q0.203125 0.5 0.5625 0.859375q0.359375 0.375 0.84375 0.578125q0.5 0.203125 1.09375 0.203125zm-0.125 -5.046875q0.375 0 0.640625 0.140625q0.265625 0.125 0.4375 0.34375q0.1875 0.21875 0.28125 0.515625q0.09375 0.296875 0.09375 0.5625l0 0.046875l-3.015625 0q0.046875 -0.390625 0.1875 -0.6875q0.15625 -0.296875 0.359375 -0.515625q0.203125 -0.203125 0.453125 -0.296875q0.265625 -0.109375 0.5625 -0.109375zm10.586456 -3.0625l0 0.84375l1.90625 0l0 6.328125l-1.90625 0l0 0.828125l4.703125 0l0 -0.828125l-1.828125 0l0 -7.171875l-2.875 0zm9.941666 8.0l1.0 0l0 -0.078125q-0.09375 -0.234375 -0.15625 -0.546875q-0.046875 -0.328125 -0.046875 -0.609375l0 -2.609375q0 -0.46875 -0.171875 -0.828125q-0.171875 -0.359375 -0.46875 -0.59375q-0.296875 -0.234375 -0.71875 -0.34375q-0.40625 -0.125 -0.875 -0.125q-0.53125 0 -0.953125 0.15625q-0.40625 0.140625 -0.6875 0.375q-0.296875 0.234375 -0.453125 0.53125q-0.140625 0.296875 -0.15625 0.609375l0.96875 0q0 -0.1875 0.078125 -0.34375q0.09375 -0.171875 0.25 -0.28125q0.15625 -0.125 0.375 -0.1875q0.234375 -0.078125 0.515625 -0.078125q0.3125 0 0.5625 0.078125q0.25 0.078125 0.421875 0.21875q0.171875 0.140625 0.265625 0.34375q0.09375 0.203125 0.09375 0.453125l0 0.453125l-1.0625 0q-0.578125 0 -1.0625 0.109375q-0.46875 0.109375 -0.8125 0.34375q-0.328125 0.234375 -0.515625 0.578125q-0.1875 0.34375 -0.1875 0.8125q0 0.359375 0.140625 0.671875q0.140625 0.296875 0.390625 0.515625q0.25 0.21875 0.609375 0.359375q0.359375 0.125 0.8125 0.125q0.265625 0 0.515625 -0.0625q0.25 -0.0625 0.46875 -0.15625q0.203125 -0.09375 0.375 -0.21875q0.1875 -0.140625 0.34375 -0.28125q0.015625 0.171875 0.046875 0.34375q0.03125 0.15625 0.09375 0.265625zm-1.703125 -0.734375q-0.28125 0 -0.5 -0.0625q-0.203125 -0.078125 -0.34375 -0.21875q-0.140625 -0.125 -0.21875 -0.296875q-0.0625 -0.171875 -0.0625 -0.390625q0 -0.21875 0.078125 -0.390625q0.078125 -0.171875 0.234375 -0.296875q0.21875 -0.171875 0.578125 -0.25q0.375 -0.09375 0.875 -0.09375l0.90625 0l0 1.140625q-0.09375 0.171875 -0.234375 0.328125q-0.140625 0.140625 -0.34375 0.265625q-0.203125 0.125 -0.453125 0.203125q-0.234375 0.0625 -0.515625 0.0625zm4.8479156 3.015625q0.375 0 0.671875 -0.140625q0.296875 -0.140625 0.515625 -0.359375q0.203125 -0.203125 0.359375 -0.453125q0.15625 -0.234375 0.25 -0.453125l2.859375 -6.5l-1.078125 0l-1.453125 3.640625l-0.265625 0.671875l-0.25 -0.6875l-1.53125 -3.625l-1.078125 0l2.421875 5.359375l-0.390625 0.75q-0.046875 0.109375 -0.140625 0.265625q-0.09375 0.15625 -0.21875 0.3125q-0.125 0.15625 -0.296875 0.265625q-0.15625 0.109375 -0.359375 0.109375q-0.0625 0 -0.203125 -0.015625q-0.125 0 -0.25 -0.015625l-0.15625 0.78125q0.09375 0.03125 0.265625 0.0625q0.1875 0.03125 0.328125 0.03125zm8.426041 -2.171875q0.828125 0 1.375 -0.328125q0.5625 -0.34375 0.84375 -0.765625l-0.578125 -0.453125q-0.265625 0.34375 -0.671875 0.546875q-0.40625 0.203125 -0.921875 0.203125q-0.390625 0 -0.71875 -0.140625q-0.3125 -0.140625 -0.53125 -0.40625q-0.234375 -0.234375 -0.359375 -0.546875q-0.125 -0.3125 -0.15625 -0.71875l0 -0.046875l4.015625 0l0 -0.421875q0 -0.59375 -0.15625 -1.09375q-0.140625 -0.5 -0.4375 -0.875q-0.3125 -0.375 -0.765625 -0.578125q-0.453125 -0.21875 -1.0625 -0.21875q-0.484375 0 -0.953125 0.203125q-0.453125 0.1875 -0.8125 0.5625q-0.359375 0.375 -0.578125 0.921875q-0.21875 0.53125 -0.21875 1.21875l0 0.203125q0 0.59375 0.1875 1.09375q0.203125 0.5 0.5625 0.859375q0.359375 0.375 0.84375 0.578125q0.5 0.203125 1.09375 0.203125zm-0.125 -5.046875q0.375 0 0.640625 0.140625q0.265625 0.125 0.4375 0.34375q0.1875 0.21875 0.28125 0.515625q0.09375 0.296875 0.09375 0.5625l0 0.046875l-3.015625 0q0.046875 -0.390625 0.1875 -0.6875q0.15625 -0.296875 0.359375 -0.515625q0.203125 -0.203125 0.453125 -0.296875q0.265625 -0.109375 0.5625 -0.109375zm7.7229156 -0.796875q-0.609375 0 -1.09375 0.265625q-0.484375 0.265625 -0.828125 0.734375l0 -0.140625l-0.046875 -0.75l-0.90625 0l0 5.625l0.953125 0l0 -3.609375q0.09375 -0.265625 0.234375 -0.46875q0.15625 -0.21875 0.34375 -0.359375q0.21875 -0.171875 0.5 -0.25q0.28125 -0.09375 0.640625 -0.09375q0.28125 0 0.53125 0.03125q0.25 0.03125 0.53125 0.09375l0.125 -0.9375q-0.140625 -0.0625 -0.4375 -0.09375q-0.28125 -0.046875 -0.546875 -0.046875zm6.4416656 4.234375q0 0.140625 -0.046875 0.265625q-0.046875 0.109375 -0.15625 0.21875q-0.15625 0.15625 -0.453125 0.25q-0.28125 0.09375 -0.65625 0.09375q-0.25 0 -0.5 -0.046875q-0.25 -0.0625 -0.453125 -0.1875q-0.203125 -0.125 -0.34375 -0.328125q-0.140625 -0.203125 -0.15625 -0.5l-0.96875 0q0 0.359375 0.15625 0.703125q0.171875 0.328125 0.484375 0.578125q0.3125 0.25 0.75 0.40625q0.453125 0.15625 1.03125 0.15625q0.5 0 0.921875 -0.125q0.421875 -0.125 0.71875 -0.34375q0.296875 -0.21875 0.46875 -0.515625q0.171875 -0.3125 0.171875 -0.6875q0 -0.34375 -0.15625 -0.609375q-0.140625 -0.265625 -0.421875 -0.46875q-0.28125 -0.203125 -0.703125 -0.34375q-0.40625 -0.140625 -0.921875 -0.25q-0.390625 -0.078125 -0.65625 -0.15625q-0.25 -0.09375 -0.40625 -0.1875q-0.15625 -0.109375 -0.21875 -0.234375q-0.0625 -0.140625 -0.0625 -0.296875q0 -0.171875 0.078125 -0.3125q0.078125 -0.15625 0.234375 -0.265625q0.15625 -0.125 0.375 -0.1875q0.234375 -0.0625 0.546875 -0.0625q0.296875 0 0.53125 0.078125q0.234375 0.078125 0.40625 0.21875q0.171875 0.140625 0.265625 0.3125q0.09375 0.171875 0.09375 0.359375l0.953125 0q0 -0.375 -0.15625 -0.6875q-0.15625 -0.328125 -0.453125 -0.5625q-0.28125 -0.25 -0.703125 -0.375q-0.421875 -0.140625 -0.9375 -0.140625q-0.484375 0 -0.890625 0.140625q-0.390625 0.125 -0.6875 0.34375q-0.296875 0.21875 -0.453125 0.53125q-0.15625 0.296875 -0.15625 0.640625q0 0.34375 0.15625 0.609375q0.15625 0.265625 0.4375 0.453125q0.28125 0.203125 0.671875 0.34375q0.40625 0.125 0.890625 0.234375q0.390625 0.078125 0.65625 0.171875q0.265625 0.09375 0.421875 0.203125q0.171875 0.125 0.234375 0.265625q0.0625 0.125 0.0625 0.296875z" fill-rule="nonzero"/><path fill="#4285f4" d="m14.456713 483.39682l0 0c0 -2.600525 2.108139 -4.708679 4.708662 -4.708679l0 0c1.2488136 0 2.4464817 0.49609375 3.329527 1.3791504c0.8830452 0.88305664 1.3791351 2.080719 1.3791351 3.3295288l0 0c0 2.600525 -2.108141 4.7086487 -4.708662 4.7086487l0 0c-2.600523 0 -4.708662 -2.1081238 -4.708662 -4.7086487z" fill-rule="evenodd"/><path fill="#ffffff" d="m494.7626 21.64203l0 0c0 -5.2425213 4.249878 -9.492424 9.492401 -9.492424l197.5191 0c2.517517 0 4.932007 1.0000916 6.712158 2.7802668c1.7801514 1.7801752 2.7802734 4.1946096 2.7802734 6.7121572l0 156.6057c0 5.242523 -4.249939 9.492432 -9.492432 9.492432l-197.5191 0c-5.242523 0 -9.492401 -4.2499084 -9.492401 -9.492432z" fill-rule="evenodd"/><path stroke="#e8ecef" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m494.7626 21.64203l0 0c0 -5.2425213 4.249878 -9.492424 9.492401 -9.492424l197.5191 0c2.517517 0 4.932007 1.0000916 6.712158 2.7802668c1.7801514 1.7801752 2.7802734 4.1946096 2.7802734 6.7121572l0 156.6057c0 5.242523 -4.249939 9.492432 -9.492432 9.492432l-197.5191 0c-5.242523 0 -9.492401 -4.2499084 -9.492401 -9.492432z" fill-rule="evenodd"/><path fill="#f3f5f6" d="m503.22998 12.110236l199.56915 0c2.2456665 0 4.399414 0.8920984 5.9873657 2.4800434c1.5879517 1.587945 2.4800415 3.74166 2.4800415 5.987355l0 19.627089c0 9.95636E-4 -7.9345703E-4 0.0018043518 -0.0018310547 0.0018043518l-216.5021 -0.0018043518l0 0c-0.0010070801 0 -0.0018310547 -8.049011E-4 -0.0018310547 -0.0018043518l0.0018310547 -19.625284l0 0c0 -4.6764154 3.790985 -8.467399 8.467377 -8.467399z" fill-rule="evenodd"/><path stroke="#e8ecef" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m503.22998 12.110236l199.56915 0c2.2456665 0 4.399414 0.8920984 5.9873657 2.4800434c1.5879517 1.587945 2.4800415 3.74166 2.4800415 5.987355l0 19.627089c0 9.95636E-4 -7.9345703E-4 0.0018043518 -0.0018310547 0.0018043518l-216.5021 -0.0018043518l0 0c-0.0010070801 0 -0.0018310547 -8.049011E-4 -0.0018310547 -0.0018043518l0.0018310547 -19.625284l0 0c0 -4.6764154 3.790985 -8.467399 8.467377 -8.467399z" fill-rule="evenodd"/><path fill="#3b454e" d="m577.8178 28.728737l1.40625 0q0.78125 0 1.40625 -0.21875q0.625 -0.234375 1.0625 -0.625q0.4375 -0.390625 0.671875 -0.921875q0.25 -0.546875 0.25 -1.1875q0 -0.6875 -0.25 -1.234375q-0.234375 -0.5625 -0.671875 -0.96875q-0.4375 -0.40625 -1.0625 -0.625q-0.625 -0.21875 -1.40625 -0.21875l-3.234375 0l0 9.46875l1.828125 0l0 -3.46875zm0 -1.484375l0 -3.03125l1.40625 0q0.390625 0 0.671875 0.125q0.296875 0.109375 0.5 0.328125q0.1875 0.21875 0.28125 0.515625q0.09375 0.28125 0.09375 0.609375q0 0.28125 -0.09375 0.546875q-0.09375 0.265625 -0.28125 0.46875q-0.203125 0.203125 -0.5 0.328125q-0.28125 0.109375 -0.671875 0.109375l-1.40625 0zm13.013794 -3.03125l0 -1.484375l-7.640625 0l0 1.484375l2.890625 0l0 7.984375l1.828125 0l0 -7.984375l2.921875 0zm5.951294 5.515625q0 0.25 -0.109375 0.46875q-0.09375 0.203125 -0.28125 0.359375q-0.203125 0.140625 -0.484375 0.234375q-0.28125 0.078125 -0.640625 0.078125q-0.421875 0 -0.765625 -0.09375q-0.328125 -0.09375 -0.578125 -0.28125q-0.25 -0.203125 -0.390625 -0.5q-0.125 -0.3125 -0.140625 -0.734375l-1.796875 0q0 0.734375 0.28125 1.28125q0.28125 0.546875 0.78125 0.953125q0.5 0.40625 1.1875 0.625q0.703125 0.203125 1.421875 0.203125q0.71875 0 1.328125 -0.171875q0.609375 -0.171875 1.046875 -0.515625q0.453125 -0.328125 0.703125 -0.8125q0.25 -0.484375 0.25 -1.109375q0 -0.71875 -0.34375 -1.265625q-0.328125 -0.5625 -0.875 -0.984375q-0.375 -0.25 -0.828125 -0.4375q-0.4375 -0.203125 -0.921875 -0.34375q-0.453125 -0.125 -0.828125 -0.265625q-0.359375 -0.140625 -0.609375 -0.3125q-0.25 -0.171875 -0.390625 -0.390625q-0.125 -0.21875 -0.125 -0.484375q0 -0.25 0.09375 -0.46875q0.109375 -0.21875 0.296875 -0.375q0.203125 -0.15625 0.484375 -0.234375q0.28125 -0.09375 0.640625 -0.09375q0.40625 0 0.703125 0.109375q0.296875 0.09375 0.5 0.28125q0.1875 0.203125 0.28125 0.46875q0.109375 0.265625 0.125 0.578125l1.78125 0q0 -0.625 -0.25 -1.15625q-0.25 -0.546875 -0.6875 -0.9375q-0.4375 -0.375 -1.0625 -0.59375q-0.609375 -0.21875 -1.359375 -0.21875q-0.703125 0 -1.328125 0.1875q-0.609375 0.1875 -1.046875 0.53125q-0.453125 0.34375 -0.71875 0.84375q-0.25 0.484375 -0.25 1.078125q0 0.515625 0.1875 0.96875q0.203125 0.4375 0.578125 0.796875q0.375 0.375 0.96875 0.6875q0.609375 0.296875 1.390625 0.5q0.5 0.140625 0.84375 0.3125q0.34375 0.15625 0.5625 0.34375q0.203125 0.1875 0.28125 0.40625q0.09375 0.21875 0.09375 0.484375zm9.482544 -0.984375l0 -1.453125l-5.421875 0l0 1.453125l5.421875 0zm8.013855 0l0 -0.125q0 -0.640625 -0.125 -1.203125q-0.109375 -0.5625 -0.34375 -1.015625q-0.140625 -0.28125 -0.34375 -0.515625q-0.1875 -0.234375 -0.4375 -0.40625q-0.296875 -0.21875 -0.6875 -0.328125q-0.375 -0.125 -0.828125 -0.125q-0.328125 0 -0.609375 0.078125q-0.28125 0.0625 -0.53125 0.203125q-0.15625 0.078125 -0.3125 0.21875q-0.15625 0.125 -0.28125 0.265625l0 -3.59375l-1.8125 0l0 10.0l1.625 0l0.09375 -0.75q0.109375 0.140625 0.234375 0.265625q0.125 0.125 0.265625 0.21875q0.265625 0.1875 0.59375 0.28125q0.34375 0.109375 0.75 0.109375q0.453125 0 0.828125 -0.109375q0.375 -0.109375 0.671875 -0.328125q0.328125 -0.234375 0.5625 -0.578125q0.25 -0.34375 0.40625 -0.765625q0.140625 -0.375 0.203125 -0.828125q0.078125 -0.453125 0.078125 -0.96875zm-1.8125 -0.125l0 0.125q0 0.28125 -0.03125 0.53125q-0.015625 0.25 -0.0625 0.46875q-0.0625 0.296875 -0.203125 0.53125q-0.125 0.21875 -0.328125 0.359375q-0.140625 0.109375 -0.34375 0.171875q-0.1875 0.0625 -0.421875 0.0625q-0.28125 0 -0.5 -0.0625q-0.21875 -0.078125 -0.375 -0.203125q-0.140625 -0.09375 -0.25 -0.21875q-0.09375 -0.140625 -0.171875 -0.296875l0 -2.8125q0.0625 -0.125 0.125 -0.234375q0.078125 -0.109375 0.15625 -0.1875q0.1875 -0.171875 0.421875 -0.265625q0.25 -0.09375 0.578125 -0.09375q0.234375 0 0.421875 0.0625q0.203125 0.046875 0.34375 0.15625q0.234375 0.1875 0.34375 0.40625q0.109375 0.203125 0.1875 0.46875q0.0625 0.21875 0.078125 0.484375q0.03125 0.265625 0.03125 0.546875zm3.216919 0l0 0.125q0 0.78125 0.21875 1.4375q0.21875 0.65625 0.65625 1.125q0.421875 0.484375 1.03125 0.765625q0.625 0.265625 1.421875 0.265625q0.796875 0 1.40625 -0.265625q0.625 -0.28125 1.046875 -0.765625q0.421875 -0.46875 0.640625 -1.125q0.21875 -0.65625 0.21875 -1.4375l0 -0.125q0 -0.78125 -0.21875 -1.421875q-0.21875 -0.65625 -0.640625 -1.140625q-0.4375 -0.484375 -1.0625 -0.75q-0.609375 -0.28125 -1.40625 -0.28125q-0.78125 0 -1.40625 0.28125q-0.609375 0.265625 -1.03125 0.75q-0.4375 0.484375 -0.65625 1.140625q-0.21875 0.640625 -0.21875 1.421875zm1.8125 0.125l0 -0.125q0 -0.4375 0.078125 -0.8125q0.09375 -0.390625 0.265625 -0.6875q0.1875 -0.296875 0.46875 -0.453125q0.28125 -0.171875 0.6875 -0.171875q0.421875 0 0.703125 0.171875q0.28125 0.15625 0.46875 0.453125q0.171875 0.296875 0.25 0.6875q0.09375 0.375 0.09375 0.8125l0 0.125q0 0.453125 -0.09375 0.84375q-0.078125 0.375 -0.25 0.65625q-0.1875 0.296875 -0.46875 0.46875q-0.28125 0.171875 -0.6875 0.171875q-0.40625 0 -0.703125 -0.171875q-0.28125 -0.171875 -0.46875 -0.46875q-0.171875 -0.28125 -0.265625 -0.65625q-0.078125 -0.390625 -0.078125 -0.84375zm9.748169 -5.3125l-1.8125 0l0 1.71875l-1.609375 0l0 1.34375l1.609375 0l0 3.203125q0 0.6875 0.1875 1.1875q0.1875 0.5 0.515625 0.8125q0.34375 0.328125 0.8125 0.484375q0.46875 0.15625 1.046875 0.15625q0.296875 0 0.609375 -0.03125q0.3125 -0.03125 0.59375 -0.078125q0.28125 -0.0625 0.53125 -0.140625q0.265625 -0.078125 0.453125 -0.1875l-0.171875 -1.25q-0.125 0.03125 -0.296875 0.078125q-0.171875 0.03125 -0.375 0.046875q-0.203125 0.03125 -0.421875 0.0625q-0.21875 0.015625 -0.421875 0.015625q-0.28125 0 -0.515625 -0.0625q-0.234375 -0.078125 -0.390625 -0.234375q-0.171875 -0.140625 -0.265625 -0.390625q-0.078125 -0.265625 -0.078125 -0.65625l0 -3.015625l2.625 0l0 -1.34375l-2.625 0l0 -1.71875z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m23.874037 487.8162l207.40157 0l0 45.259857l-207.40157 0z" fill-rule="evenodd"/><path fill="#3b454e" d="m33.76466 507.05618l2.421875 0q0.484375 0 0.9375 -0.140625q0.46875 -0.15625 0.8125 -0.4375q0.34375 -0.265625 0.546875 -0.671875q0.21875 -0.40625 0.21875 -0.9375q0 -0.34375 -0.109375 -0.625q-0.09375 -0.296875 -0.28125 -0.53125q-0.171875 -0.203125 -0.4375 -0.375q-0.265625 -0.1875 -0.546875 -0.25l0 -0.015625q0.265625 -0.125 0.453125 -0.25q0.203125 -0.140625 0.375 -0.34375q0.15625 -0.1875 0.234375 -0.4375q0.09375 -0.25 0.109375 -0.546875q0 -0.53125 -0.21875 -0.90625q-0.203125 -0.375 -0.546875 -0.625q-0.34375 -0.25 -0.796875 -0.359375q-0.453125 -0.125 -0.921875 -0.125l-2.25 0l0 7.578125zm0.96875 -3.546875l1.53125 0q0.3125 0.015625 0.578125 0.109375q0.265625 0.09375 0.46875 0.265625q0.1875 0.171875 0.296875 0.421875q0.125 0.25 0.109375 0.578125q0 0.3125 -0.125 0.5625q-0.109375 0.25 -0.328125 0.421875q-0.203125 0.171875 -0.484375 0.265625q-0.265625 0.09375 -0.5625 0.109375l-1.484375 0l0 -2.734375zm0 -0.796875l0 -2.40625l1.3125 0q0.28125 0 0.546875 0.078125q0.28125 0.0625 0.484375 0.203125q0.203125 0.140625 0.328125 0.375q0.125 0.21875 0.125 0.53125q0 0.296875 -0.125 0.53125q-0.125 0.21875 -0.328125 0.359375q-0.203125 0.15625 -0.46875 0.25q-0.265625 0.078125 -0.53125 0.078125l-1.34375 0zm5.5979156 -3.65625l0 0.84375l1.90625 0l0 6.328125l-1.90625 0l0 0.828125l4.703125 0l0 -0.828125l-1.828125 0l0 -7.171875l-2.875 0zm9.941666 8.0l0.875 0l0 -5.625l-0.96875 0l0 4.03125q-0.078125 0.1875 -0.203125 0.34375q-0.109375 0.140625 -0.265625 0.25q-0.1875 0.140625 -0.4375 0.21875q-0.25 0.078125 -0.578125 0.078125q-0.28125 0 -0.484375 -0.078125q-0.203125 -0.078125 -0.359375 -0.25q-0.140625 -0.1875 -0.21875 -0.484375q-0.0625 -0.296875 -0.0625 -0.765625l0 -3.34375l-0.96875 0l0 3.34375q0 0.625 0.140625 1.078125q0.140625 0.453125 0.390625 0.734375q0.25 0.296875 0.609375 0.4375q0.359375 0.140625 0.796875 0.140625q0.5625 0 0.984375 -0.234375q0.421875 -0.234375 0.703125 -0.65625l0.046875 0.78125zm5.1760406 0.109375q0.828125 0 1.375 -0.328125q0.5625 -0.34375 0.84375 -0.765625l-0.578125 -0.453125q-0.265625 0.34375 -0.671875 0.546875q-0.40625 0.203125 -0.921875 0.203125q-0.390625 0 -0.71875 -0.140625q-0.3125 -0.140625 -0.53125 -0.40625q-0.234375 -0.234375 -0.359375 -0.546875q-0.125 -0.3125 -0.15625 -0.71875l0 -0.046875l4.015625 0l0 -0.421875q0 -0.59375 -0.15625 -1.09375q-0.140625 -0.5 -0.4375 -0.875q-0.3125 -0.375 -0.765625 -0.578125q-0.453125 -0.21875 -1.0625 -0.21875q-0.484375 0 -0.953125 0.203125q-0.453125 0.1875 -0.8125 0.5625q-0.359375 0.375 -0.578125 0.921875q-0.21875 0.53125 -0.21875 1.21875l0 0.203125q0 0.59375 0.1875 1.09375q0.203125 0.5 0.5625 0.859375q0.359375 0.375 0.84375 0.578125q0.5 0.203125 1.09375 0.203125zm-0.125 -5.046875q0.375 0 0.640625 0.140625q0.265625 0.125 0.4375 0.34375q0.1875 0.21875 0.28125 0.515625q0.09375 0.296875 0.09375 0.5625l0 0.046875l-3.015625 0q0.046875 -0.390625 0.1875 -0.6875q0.15625 -0.296875 0.359375 -0.515625q0.203125 -0.203125 0.453125 -0.296875q0.265625 -0.109375 0.5625 -0.109375zm6.3166656 -2.0625l-0.96875 0l0 1.375l-1.484375 0l0 0.734375l1.484375 0l0 3.0625q0 0.515625 0.140625 0.890625q0.140625 0.359375 0.375 0.59375q0.234375 0.234375 0.5625 0.34375q0.328125 0.109375 0.703125 0.109375q0.21875 0 0.4375 -0.03125q0.234375 -0.015625 0.4375 -0.0625q0.203125 -0.03125 0.375 -0.078125q0.171875 -0.0625 0.2968788 -0.140625l-0.14062881 -0.671875q-0.09375 0.015625 -0.234375 0.046875q-0.125 0.03125 -0.28125 0.046875q-0.171875 0.03125 -0.34375 0.046875q-0.15625 0.015625 -0.3125 0.015625q-0.21875 0 -0.40625 -0.046875q-0.1875 -0.046875 -0.328125 -0.1875q-0.15625 -0.125 -0.234375 -0.328125q-0.078125 -0.21875 -0.078125 -0.546875l0 -3.0625l2.140625 0l0 -0.734375l-2.140625 0l0 -1.375zm3.8479195 4.140625l0 0.109375q0 0.609375 0.171875 1.125q0.171875 0.515625 0.515625 0.90625q0.328125 0.390625 0.796875 0.609375q0.484375 0.21875 1.078125 0.21875q0.59375 0 1.0625 -0.21875q0.46875 -0.21875 0.8125 -0.609375q0.328125 -0.390625 0.5 -0.90625q0.171875 -0.515625 0.171875 -1.125l0 -0.109375q0 -0.609375 -0.171875 -1.125q-0.171875 -0.53125 -0.5 -0.921875q-0.34375 -0.390625 -0.828125 -0.609375q-0.46875 -0.21875 -1.0625 -0.21875q-0.59375 0 -1.0625 0.21875q-0.46875 0.21875 -0.796875 0.609375q-0.34375 0.390625 -0.515625 0.921875q-0.171875 0.515625 -0.171875 1.125zm0.953125 0.109375l0 -0.109375q0 -0.421875 0.09375 -0.796875q0.109375 -0.375 0.3125 -0.65625q0.203125 -0.296875 0.484375 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.40625 0 0.703125 0.171875q0.296875 0.15625 0.5 0.453125q0.203125 0.28125 0.296875 0.65625q0.109375 0.375 0.109375 0.796875l0 0.109375q0 0.40625 -0.109375 0.796875q-0.09375 0.375 -0.296875 0.65625q-0.203125 0.28125 -0.5 0.453125q-0.296875 0.171875 -0.6875 0.171875q-0.40625 0 -0.703125 -0.171875q-0.296875 -0.171875 -0.5 -0.453125q-0.203125 -0.28125 -0.3125 -0.65625q-0.09375 -0.390625 -0.09375 -0.796875zm5.4416656 -0.109375l0 0.109375q0 0.609375 0.171875 1.125q0.171875 0.515625 0.515625 0.90625q0.328125 0.390625 0.796875 0.609375q0.484375 0.21875 1.078125 0.21875q0.59375 0 1.0625 -0.21875q0.46875 -0.21875 0.8125 -0.609375q0.328125 -0.390625 0.5 -0.90625q0.171875 -0.515625 0.171875 -1.125l0 -0.109375q0 -0.609375 -0.171875 -1.125q-0.171875 -0.53125 -0.5 -0.921875q-0.34375 -0.390625 -0.828125 -0.609375q-0.46875 -0.21875 -1.0625 -0.21875q-0.59375 0 -1.0625 0.21875q-0.46875 0.21875 -0.796875 0.609375q-0.34375 0.390625 -0.515625 0.921875q-0.171875 0.515625 -0.171875 1.125zm0.953125 0.109375l0 -0.109375q0 -0.421875 0.09375 -0.796875q0.109375 -0.375 0.3125 -0.65625q0.203125 -0.296875 0.484375 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.40625 0 0.703125 0.171875q0.296875 0.15625 0.5 0.453125q0.203125 0.28125 0.296875 0.65625q0.109375 0.375 0.109375 0.796875l0 0.109375q0 0.40625 -0.109375 0.796875q-0.09375 0.375 -0.296875 0.65625q-0.203125 0.28125 -0.5 0.453125q-0.296875 0.171875 -0.6875 0.171875q-0.40625 0 -0.703125 -0.171875q-0.296875 -0.171875 -0.5 -0.453125q-0.203125 -0.28125 -0.3125 -0.65625q-0.09375 -0.390625 -0.09375 -0.796875zm7.9885406 -4.25l-0.96875 0l0 1.375l-1.484375 0l0 0.734375l1.484375 0l0 3.0625q0 0.515625 0.140625 0.890625q0.140625 0.359375 0.375 0.59375q0.234375 0.234375 0.5625 0.34375q0.328125 0.109375 0.703125 0.109375q0.21875 0 0.4375 -0.03125q0.234375 -0.015625 0.4375 -0.0625q0.203125 -0.03125 0.375 -0.078125q0.171875 -0.0625 0.296875 -0.140625l-0.140625 -0.671875q-0.09375 0.015625 -0.234375 0.046875q-0.125 0.03125 -0.28125 0.046875q-0.171875 0.03125 -0.34375 0.046875q-0.15625 0.015625 -0.3125 0.015625q-0.21875 0 -0.40625 -0.046875q-0.1875 -0.046875 -0.328125 -0.1875q-0.15625 -0.125 -0.234375 -0.328125q-0.078125 -0.21875 -0.078125 -0.546875l0 -3.0625l2.140625 0l0 -0.734375l-2.140625 0l0 -1.375zm5.0822906 2.203125l0 -3.203125l-0.96875 0l0 8.0l0.96875 0l0 -4.09375q0.09375 -0.15625 0.21875 -0.296875q0.140625 -0.140625 0.296875 -0.25q0.203125 -0.125 0.4375 -0.203125q0.234375 -0.078125 0.484375 -0.078125q0.328125 0 0.5625 0.09375q0.25 0.09375 0.40625 0.265625q0.15625 0.171875 0.234375 0.421875q0.078125 0.25 0.078125 0.59375l0 3.546875l0.96875 0l0 -3.546875q0 -0.5625 -0.140625 -0.96875q-0.140625 -0.421875 -0.390625 -0.6875q-0.265625 -0.28125 -0.625 -0.40625q-0.359375 -0.125 -0.796875 -0.125q-0.34375 0 -0.640625 0.09375q-0.296875 0.09375 -0.546875 0.28125q-0.15625 0.109375 -0.296875 0.25q-0.140625 0.140625 -0.25 0.3125zm15.555206 3.296875q0 0.140625 -0.046875 0.265625q-0.046875 0.109375 -0.15625 0.21875q-0.15625 0.15625 -0.453125 0.25q-0.28125 0.09375 -0.65625 0.09375q-0.25 0 -0.5 -0.046875q-0.25 -0.0625 -0.453125 -0.1875q-0.203125 -0.125 -0.34375 -0.328125q-0.140625 -0.203125 -0.15625 -0.5l-0.96875 0q0 0.359375 0.15625 0.703125q0.171875 0.328125 0.484375 0.578125q0.3125 0.25 0.75 0.40625q0.453125 0.15625 1.03125 0.15625q0.5 0 0.921875 -0.125q0.421875 -0.125 0.71875 -0.34375q0.296875 -0.21875 0.46875 -0.515625q0.171875 -0.3125 0.171875 -0.6875q0 -0.34375 -0.15625 -0.609375q-0.140625 -0.265625 -0.421875 -0.46875q-0.28125 -0.203125 -0.703125 -0.34375q-0.40625 -0.140625 -0.921875 -0.25q-0.390625 -0.078125 -0.65625 -0.15625q-0.25 -0.09375 -0.40625 -0.1875q-0.15625 -0.109375 -0.21875 -0.234375q-0.0625 -0.140625 -0.0625 -0.296875q0 -0.171875 0.078125 -0.3125q0.078125 -0.15625 0.234375 -0.265625q0.15625 -0.125 0.375 -0.1875q0.234375 -0.0625 0.546875 -0.0625q0.296875 0 0.53125 0.078125q0.234375 0.078125 0.40625 0.21875q0.171875 0.140625 0.265625 0.3125q0.09375 0.171875 0.09375 0.359375l0.953125 0q0 -0.375 -0.15625 -0.6875q-0.15625 -0.328125 -0.453125 -0.5625q-0.28125 -0.25 -0.703125 -0.375q-0.421875 -0.140625 -0.9375 -0.140625q-0.484375 0 -0.890625 0.140625q-0.390625 0.125 -0.6875 0.34375q-0.296875 0.21875 -0.453125 0.53125q-0.15625 0.296875 -0.15625 0.640625q0 0.34375 0.15625 0.609375q0.15625 0.265625 0.4375 0.453125q0.28125 0.203125 0.671875 0.34375q0.40625 0.125 0.890625 0.234375q0.390625 0.078125 0.65625 0.171875q0.265625 0.09375 0.421875 0.203125q0.171875 0.125 0.234375 0.265625q0.0625 0.125 0.0625 0.296875zm4.9416656 -5.5l-0.96875 0l0 1.375l-1.484375 0l0 0.734375l1.484375 0l0 3.0625q0 0.515625 0.140625 0.890625q0.140625 0.359375 0.375 0.59375q0.234375 0.234375 0.5625 0.34375q0.328125 0.109375 0.703125 0.109375q0.21875 0 0.4375 -0.03125q0.234375 -0.015625 0.4375 -0.0625q0.203125 -0.03125 0.375 -0.078125q0.171875 -0.0625 0.296875 -0.140625l-0.140625 -0.671875q-0.09375 0.015625 -0.234375 0.046875q-0.125 0.03125 -0.28125 0.046875q-0.171875 0.03125 -0.34375 0.046875q-0.15625 0.015625 -0.3125 0.015625q-0.21875 0 -0.40625 -0.046875q-0.1875 -0.046875 -0.328125 -0.1875q-0.15625 -0.125 -0.234375 -0.328125q-0.078125 -0.21875 -0.078125 -0.546875l0 -3.0625l2.140625 0l0 -0.734375l-2.140625 0l0 -1.375zm7.8166656 7.0l1.0 0l0 -0.078125q-0.09375 -0.234375 -0.15625 -0.546875q-0.046875 -0.328125 -0.046875 -0.609375l0 -2.609375q0 -0.46875 -0.171875 -0.828125q-0.171875 -0.359375 -0.46875 -0.59375q-0.296875 -0.234375 -0.71875 -0.34375q-0.40625 -0.125 -0.875 -0.125q-0.53125 0 -0.953125 0.15625q-0.40625 0.140625 -0.6875 0.375q-0.296875 0.234375 -0.453125 0.53125q-0.140625 0.296875 -0.15625 0.609375l0.96875 0q0 -0.1875 0.078125 -0.34375q0.09375 -0.171875 0.25 -0.28125q0.15625 -0.125 0.375 -0.1875q0.234375 -0.078125 0.515625 -0.078125q0.3125 0 0.5625 0.078125q0.25 0.078125 0.421875 0.21875q0.171875 0.140625 0.265625 0.34375q0.09375 0.203125 0.09375 0.453125l0 0.453125l-1.0625 0q-0.578125 0 -1.0625 0.109375q-0.46875 0.109375 -0.8125 0.34375q-0.328125 0.234375 -0.515625 0.578125q-0.1875 0.34375 -0.1875 0.8125q0 0.359375 0.140625 0.671875q0.140625 0.296875 0.390625 0.515625q0.25 0.21875 0.609375 0.359375q0.359375 0.125 0.8125 0.125q0.265625 0 0.515625 -0.0625q0.25 -0.0625 0.46875 -0.15625q0.203125 -0.09375 0.375 -0.21875q0.1875 -0.140625 0.34375 -0.28125q0.015625 0.171875 0.046875 0.34375q0.03125 0.15625 0.09375 0.265625zm-1.703125 -0.734375q-0.28125 0 -0.5 -0.0625q-0.203125 -0.078125 -0.34375 -0.21875q-0.140625 -0.125 -0.21875 -0.296875q-0.0625 -0.171875 -0.0625 -0.390625q0 -0.21875 0.078125 -0.390625q0.078125 -0.171875 0.234375 -0.296875q0.21875 -0.171875 0.578125 -0.25q0.375 -0.09375 0.875 -0.09375l0.90625 0l0 1.140625q-0.09375 0.171875 -0.234375 0.328125q-0.140625 0.140625 -0.34375 0.265625q-0.203125 0.125 -0.453125 0.203125q-0.234375 0.0625 -0.515625 0.0625zm6.7854156 0.0625q-0.453125 0 -0.75 -0.171875q-0.296875 -0.1875 -0.484375 -0.484375q-0.1875 -0.28125 -0.265625 -0.640625q-0.078125 -0.375 -0.078125 -0.734375l0 -0.21875q0 -0.359375 0.078125 -0.71875q0.078125 -0.359375 0.265625 -0.65625q0.1875 -0.28125 0.484375 -0.453125q0.3125 -0.1875 0.75 -0.1875q0.296875 0 0.546875 0.09375q0.25 0.09375 0.4375 0.265625q0.1875 0.171875 0.28125 0.40625q0.109375 0.21875 0.125 0.484375l0.90625 0q0 -0.4375 -0.171875 -0.8125q-0.171875 -0.375 -0.46875 -0.640625q-0.3125 -0.28125 -0.734375 -0.4375q-0.421875 -0.15625 -0.921875 -0.15625q-0.625 0 -1.109375 0.234375q-0.484375 0.21875 -0.796875 0.609375q-0.328125 0.390625 -0.484375 0.90625q-0.15625 0.5 -0.15625 1.0625l0 0.21875q0 0.5625 0.15625 1.078125q0.15625 0.5 0.484375 0.875q0.3125 0.390625 0.796875 0.625q0.484375 0.234375 1.109375 0.234375q0.453125 0 0.859375 -0.15625q0.421875 -0.15625 0.734375 -0.421875q0.3125 -0.25 0.5 -0.59375q0.203125 -0.34375 0.203125 -0.71875l-0.90625 0q-0.015625 0.234375 -0.140625 0.4375q-0.109375 0.203125 -0.296875 0.34375q-0.1875 0.15625 -0.4375 0.25q-0.25 0.078125 -0.515625 0.078125zm5.6916656 -1.953125l2.0625 2.625l1.21875 0l-2.625 -3.28125l2.28125 -2.34375l-1.171875 0l-1.84375 1.84375l-0.625 0.6875l0 -4.90625l-0.96875 0l0 8.0l0.96875 0l0 -1.953125l0.703125 -0.671875zm14.805206 2.625l0.875 0l0 -5.625l-0.96875 0l0 4.03125q-0.078125 0.1875 -0.203125 0.34375q-0.109375 0.140625 -0.265625 0.25q-0.1875 0.140625 -0.4375 0.21875q-0.25 0.078125 -0.578125 0.078125q-0.28125 0 -0.484375 -0.078125q-0.203125 -0.078125 -0.359375 -0.25q-0.140625 -0.1875 -0.21875 -0.484375q-0.0625 -0.296875 -0.0625 -0.765625l0 -3.34375l-0.96875 0l0 3.34375q0 0.625 0.140625 1.078125q0.140625 0.453125 0.390625 0.734375q0.25 0.296875 0.609375 0.4375q0.359375 0.140625 0.796875 0.140625q0.5625 0 0.984375 -0.234375q0.421875 -0.234375 0.703125 -0.65625l0.046875 0.78125zm2.6916656 0l0.96875 0l0 -4.03125q0.09375 -0.1875 0.21875 -0.328125q0.140625 -0.15625 0.296875 -0.28125q0.1875 -0.125 0.40625 -0.203125q0.234375 -0.078125 0.5 -0.078125q0.3125 0 0.546875 0.078125q0.234375 0.078125 0.40625 0.234375q0.15625 0.15625 0.234375 0.421875q0.09375 0.265625 0.09375 0.640625l0 3.546875l0.96875 0l0 -3.578125q0 -0.5625 -0.140625 -0.96875q-0.140625 -0.40625 -0.390625 -0.671875q-0.265625 -0.265625 -0.625 -0.390625q-0.359375 -0.125 -0.796875 -0.125q-0.328125 0 -0.625 0.09375q-0.296875 0.09375 -0.546875 0.265625q-0.15625 0.109375 -0.3125 0.265625q-0.140625 0.140625 -0.265625 0.3125l-0.078125 -0.828125l-0.859375 0l0 5.625zm6.2072906 -2.859375l0 0.109375q0 0.59375 0.15625 1.125q0.171875 0.515625 0.46875 0.90625q0.28125 0.390625 0.6875 0.609375q0.421875 0.21875 0.9375 0.21875q0.515625 0 0.90625 -0.171875q0.390625 -0.1875 0.671875 -0.53125l0.046875 0.59375l0.875 0l0 -8.0l-0.953125 0l0 2.921875q-0.28125 -0.3125 -0.65625 -0.484375q-0.375 -0.171875 -0.890625 -0.171875q-0.5 0 -0.921875 0.21875q-0.421875 0.203125 -0.703125 0.59375q-0.296875 0.375 -0.46875 0.90625q-0.15625 0.53125 -0.15625 1.15625zm0.96875 0.109375l0 -0.109375q0 -0.40625 0.078125 -0.78125q0.09375 -0.375 0.28125 -0.65625q0.1875 -0.28125 0.46875 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.46875 0 0.78125 0.234375q0.328125 0.21875 0.515625 0.5625l0 2.609375q-0.1875 0.359375 -0.515625 0.578125q-0.3125 0.21875 -0.796875 0.21875q-0.40625 0 -0.6875 -0.15625q-0.28125 -0.171875 -0.46875 -0.453125q-0.1875 -0.28125 -0.28125 -0.640625q-0.078125 -0.375 -0.078125 -0.78125zm8.097916 2.859375q0.828125 0 1.375 -0.328125q0.5625 -0.34375 0.84375 -0.765625l-0.578125 -0.453125q-0.265625 0.34375 -0.671875 0.546875q-0.40625 0.203125 -0.921875 0.203125q-0.390625 0 -0.71875 -0.140625q-0.3125 -0.140625 -0.53125 -0.40625q-0.234375 -0.234375 -0.359375 -0.546875q-0.125 -0.3125 -0.15625 -0.71875l0 -0.046875l4.015625 0l0 -0.421875q0 -0.59375 -0.15625 -1.09375q-0.140625 -0.5 -0.4375 -0.875q-0.3125 -0.375 -0.765625 -0.578125q-0.453125 -0.21875 -1.0625 -0.21875q-0.484375 0 -0.953125 0.203125q-0.453125 0.1875 -0.8125 0.5625q-0.359375 0.375 -0.578125 0.921875q-0.21875 0.53125 -0.21875 1.21875l0 0.203125q0 0.59375 0.1875 1.09375q0.203125 0.5 0.5625 0.859375q0.359375 0.375 0.84375 0.578125q0.5 0.203125 1.09375 0.203125zm-0.125 -5.046875q0.375 0 0.640625 0.140625q0.265625 0.125 0.4375 0.34375q0.1875 0.21875 0.28125 0.515625q0.09375 0.296875 0.09375 0.5625l0 0.046875l-3.015625 0q0.046875 -0.390625 0.1875 -0.6875q0.15625 -0.296875 0.359375 -0.515625q0.203125 -0.203125 0.453125 -0.296875q0.265625 -0.109375 0.5625 -0.109375zm7.7229156 -0.796875q-0.609375 0 -1.09375 0.265625q-0.484375 0.265625 -0.828125 0.734375l0 -0.140625l-0.046875 -0.75l-0.90625 0l0 5.625l0.953125 0l0 -3.609375q0.09375 -0.265625 0.234375 -0.46875q0.15625 -0.21875 0.34375 -0.359375q0.21875 -0.171875 0.5 -0.25q0.28125 -0.09375 0.640625 -0.09375q0.28125 0 0.53125 0.03125q0.25 0.03125 0.53125 0.09375l0.125 -0.9375q-0.140625 -0.0625 -0.4375 -0.09375q-0.28125 -0.046875 -0.546875 -0.046875zm11.383331 -1.265625l-0.96875 0l0 1.375l-1.484375 0l0 0.734375l1.484375 0l0 3.0625q0 0.515625 0.140625 0.890625q0.140625 0.359375 0.375 0.59375q0.234375 0.234375 0.5625 0.34375q0.328125 0.109375 0.703125 0.109375q0.21875 0 0.4375 -0.03125q0.234375 -0.015625 0.4375 -0.0625q0.203125 -0.03125 0.375 -0.078125q0.171875 -0.0625 0.296875 -0.140625l-0.140625 -0.671875q-0.09375 0.015625 -0.234375 0.046875q-0.125 0.03125 -0.28125 0.046875q-0.171875 0.03125 -0.34375 0.046875q-0.15625 0.015625 -0.3125 0.015625q-0.21875 0 -0.40625 -0.046875q-0.1875 -0.046875 -0.328125 -0.1875q-0.15625 -0.125 -0.234375 -0.328125q-0.078125 -0.21875 -0.078125 -0.546875l0 -3.0625l2.140625 0l0 -0.734375l-2.140625 0l0 -1.375zm6.5979156 7.109375q0.828125 0 1.375 -0.328125q0.5625 -0.34375 0.84375 -0.765625l-0.578125 -0.453125q-0.265625 0.34375 -0.671875 0.546875q-0.40625 0.203125 -0.921875 0.203125q-0.390625 0 -0.71875 -0.140625q-0.3125 -0.140625 -0.53125 -0.40625q-0.234375 -0.234375 -0.359375 -0.546875q-0.125 -0.3125 -0.15625 -0.71875l0 -0.046875l4.015625 0l0 -0.421875q0 -0.59375 -0.15625 -1.09375q-0.140625 -0.5 -0.4375 -0.875q-0.3125 -0.375 -0.765625 -0.578125q-0.453125 -0.21875 -1.0625 -0.21875q-0.484375 0 -0.953125 0.203125q-0.453125 0.1875 -0.8125 0.5625q-0.359375 0.375 -0.578125 0.921875q-0.21875 0.53125 -0.21875 1.21875l0 0.203125q0 0.59375 0.1875 1.09375q0.203125 0.5 0.5625 0.859375q0.359375 0.375 0.84375 0.578125q0.5 0.203125 1.09375 0.203125zm-0.125 -5.046875q0.375 0 0.640625 0.140625q0.265625 0.125 0.4375 0.34375q0.1875 0.21875 0.28125 0.515625q0.09375 0.296875 0.09375 0.5625l0 0.046875l-3.015625 0q0.046875 -0.390625 0.1875 -0.6875q0.15625 -0.296875 0.359375 -0.515625q0.203125 -0.203125 0.453125 -0.296875q0.265625 -0.109375 0.5625 -0.109375zm7.7697906 3.4375q0 0.140625 -0.046875 0.265625q-0.046875 0.109375 -0.15625 0.21875q-0.15625 0.15625 -0.453125 0.25q-0.28125 0.09375 -0.65625 0.09375q-0.25 0 -0.5 -0.046875q-0.25 -0.0625 -0.453125 -0.1875q-0.203125 -0.125 -0.34375 -0.328125q-0.140625 -0.203125 -0.15625 -0.5l-0.96875 0q0 0.359375 0.15625 0.703125q0.171875 0.328125 0.484375 0.578125q0.3125 0.25 0.75 0.40625q0.453125 0.15625 1.03125 0.15625q0.5 0 0.921875 -0.125q0.421875 -0.125 0.71875 -0.34375q0.296875 -0.21875 0.46875 -0.515625q0.171875 -0.3125 0.171875 -0.6875q0 -0.34375 -0.15625 -0.609375q-0.140625 -0.265625 -0.421875 -0.46875q-0.28125 -0.203125 -0.703125 -0.34375q-0.40625 -0.140625 -0.921875 -0.25q-0.390625 -0.078125 -0.65625 -0.15625q-0.25 -0.09375 -0.40625 -0.1875q-0.15625 -0.109375 -0.21875 -0.234375q-0.0625 -0.140625 -0.0625 -0.296875q0 -0.171875 0.078125 -0.3125q0.078125 -0.15625 0.234375 -0.265625q0.15625 -0.125 0.375 -0.1875q0.234375 -0.0625 0.546875 -0.0625q0.296875 0 0.53125 0.078125q0.234375 0.078125 0.40625 0.21875q0.171875 0.140625 0.265625 0.3125q0.09375 0.171875 0.09375 0.359375l0.953125 0q0 -0.375 -0.15625 -0.6875q-0.15625 -0.328125 -0.453125 -0.5625q-0.28125 -0.25 -0.703125 -0.375q-0.421875 -0.140625 -0.9375 -0.140625q-0.484375 0 -0.890625 0.140625q-0.390625 0.125 -0.6875 0.34375q-0.296875 0.21875 -0.453125 0.53125q-0.15625 0.296875 -0.15625 0.640625q0 0.34375 0.15625 0.609375q0.15625 0.265625 0.4375 0.453125q0.28125 0.203125 0.671875 0.34375q0.40625 0.125 0.890625 0.234375q0.390625 0.078125 0.65625 0.171875q0.265625 0.09375 0.421875 0.203125q0.171875 0.125 0.234375 0.265625q0.0625 0.125 0.0625 0.296875zm4.9416656 -5.5l-0.96875 0l0 1.375l-1.484375 0l0 0.734375l1.484375 0l0 3.0625q0 0.515625 0.140625 0.890625q0.140625 0.359375 0.375 0.59375q0.234375 0.234375 0.5625 0.34375q0.328125 0.109375 0.703125 0.109375q0.21875 0 0.4375 -0.03125q0.234375 -0.015625 0.4375 -0.0625q0.203125 -0.03125 0.375 -0.078125q0.171875 -0.0625 0.296875 -0.140625l-0.140625 -0.671875q-0.09375 0.015625 -0.234375 0.046875q-0.125 0.03125 -0.28125 0.046875q-0.171875 0.03125 -0.34375 0.046875q-0.15625 0.015625 -0.3125 0.015625q-0.21875 0 -0.40625 -0.046875q-0.1875 -0.046875 -0.328125 -0.1875q-0.15625 -0.125 -0.234375 -0.328125q-0.078125 -0.21875 -0.078125 -0.546875l0 -3.0625l2.140625 0l0 -0.734375l-2.140625 0l0 -1.375z" fill-rule="nonzero"/><path fill="#9471f5" d="m14.456713 503.97498l0 0c0 -2.600525 2.108139 -4.7086487 4.708662 -4.7086487l0 0c1.2488136 0 2.4464817 0.49609375 3.329527 1.3791199c0.8830452 0.88305664 1.3791351 2.080719 1.3791351 3.3295288l0 0c0 2.600525 -2.108141 4.708679 -4.708662 4.708679l0 0c-2.600523 0 -4.708662 -2.1081543 -4.708662 -4.708679z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m396.8668 83.372604l112.0 0l0 51.716537l-112.0 0z" fill-rule="evenodd"/><path fill="#4285f4" d="m437.77667 101.59448l0 0.140625q0 0.75 0.1875 1.40625q0.203125 0.65625 0.578125 1.140625q0.359375 0.46875 0.875 0.75q0.515625 0.265625 1.15625 0.265625q0.390625 0 0.71875 -0.078125q0.328125 -0.078125 0.609375 -0.234375q0.171875 -0.09375 0.328125 -0.21875q0.15625 -0.140625 0.296875 -0.296875l0 0.609375q0 0.453125 -0.140625 0.796875q-0.125 0.359375 -0.375 0.59375q-0.234375 0.25 -0.59375 0.375q-0.34375 0.125 -0.765625 0.125q-0.234375 0 -0.484375 -0.0625q-0.234375 -0.046875 -0.484375 -0.15625q-0.234375 -0.109375 -0.46875 -0.296875q-0.234375 -0.1875 -0.453125 -0.453125l-0.625 0.734375q0.234375 0.34375 0.5625 0.578125q0.34375 0.234375 0.703125 0.359375q0.359375 0.15625 0.703125 0.203125q0.359375 0.0625 0.640625 0.0625q0.65625 0 1.203125 -0.203125q0.546875 -0.1875 0.953125 -0.5625q0.390625 -0.375 0.609375 -0.921875q0.21875 -0.53125 0.21875 -1.234375l0 -6.890625l-1.09375 0l-0.0625 0.765625q-0.125 -0.15625 -0.265625 -0.28125q-0.140625 -0.125 -0.296875 -0.21875q-0.28125 -0.1875 -0.640625 -0.28125q-0.359375 -0.109375 -0.78125 -0.109375q-0.65625 0 -1.171875 0.265625q-0.515625 0.265625 -0.890625 0.75q-0.359375 0.46875 -0.5625 1.140625q-0.1875 0.65625 -0.1875 1.4375zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.109375 -0.984375q0.109375 -0.46875 0.34375 -0.8125q0.234375 -0.359375 0.59375 -0.5625q0.359375 -0.21875 0.859375 -0.21875q0.3125 0 0.546875 0.078125q0.25 0.078125 0.453125 0.203125q0.203125 0.140625 0.359375 0.328125q0.15625 0.171875 0.28125 0.40625l0 3.21875q-0.125 0.234375 -0.28125 0.421875q-0.15625 0.1875 -0.34375 0.328125q-0.203125 0.125 -0.453125 0.203125q-0.25 0.078125 -0.5625 0.078125q-0.515625 0 -0.875 -0.203125q-0.34375 -0.203125 -0.578125 -0.5625q-0.234375 -0.34375 -0.34375 -0.796875q-0.109375 -0.46875 -0.109375 -0.984375zm10.154419 -0.421875l1.859375 3.859375l1.28125 0l0 -0.078125l-2.015625 -4.046875q0.390625 -0.171875 0.71875 -0.40625q0.328125 -0.25 0.5625 -0.5625q0.234375 -0.3125 0.359375 -0.6875q0.140625 -0.390625 0.140625 -0.84375q0 -0.71875 -0.25 -1.25q-0.25 -0.53125 -0.6875 -0.890625q-0.4375 -0.34375 -1.03125 -0.515625q-0.578125 -0.1875 -1.25 -0.1875l-2.78125 0l0 9.46875l1.203125 0l0 -3.859375l1.890625 0zm-1.890625 -1.0l0 -3.625l1.578125 0q0.4375 0 0.796875 0.125q0.375 0.109375 0.640625 0.34375q0.265625 0.234375 0.421875 0.578125q0.15625 0.34375 0.15625 0.796875q0 0.421875 -0.15625 0.75q-0.15625 0.328125 -0.4375 0.5625q-0.265625 0.21875 -0.625 0.34375q-0.359375 0.125 -0.765625 0.125l-1.609375 0zm8.076324 1.0625l1.859375 0q0.640625 -0.015625 1.203125 -0.203125q0.578125 -0.1875 1.0 -0.546875q0.4375 -0.359375 0.6875 -0.875q0.25 -0.53125 0.25 -1.203125q0 -0.6875 -0.25 -1.21875q-0.25 -0.53125 -0.6875 -0.890625q-0.421875 -0.34375 -1.0 -0.53125q-0.5625 -0.203125 -1.203125 -0.203125l-3.0625 0l0 9.46875l1.203125 0l0 -3.796875zm0 -1.0l0 -3.6875l1.859375 0q0.421875 0 0.765625 0.140625q0.359375 0.125 0.625 0.359375q0.25 0.25 0.390625 0.59375q0.15625 0.34375 0.15625 0.765625q0 0.4375 -0.15625 0.78125q-0.140625 0.328125 -0.40625 0.5625q-0.25 0.234375 -0.609375 0.359375q-0.34375 0.125 -0.765625 0.125l-1.859375 0zm12.810669 1.953125l-1.203125 0q-0.0625 0.421875 -0.203125 0.796875q-0.140625 0.359375 -0.375 0.625q-0.25 0.28125 -0.59375 0.4375q-0.34375 0.140625 -0.828125 0.140625q-0.4375 0 -0.765625 -0.140625q-0.3125 -0.140625 -0.5625 -0.390625q-0.234375 -0.234375 -0.390625 -0.546875q-0.15625 -0.328125 -0.25 -0.6875q-0.109375 -0.359375 -0.15625 -0.734375q-0.03125 -0.375 -0.03125 -0.734375l0 -1.328125q0 -0.359375 0.03125 -0.734375q0.046875 -0.375 0.15625 -0.71875q0.09375 -0.359375 0.25 -0.671875q0.15625 -0.328125 0.40625 -0.578125q0.234375 -0.234375 0.5625 -0.375q0.328125 -0.140625 0.75 -0.140625q0.484375 0 0.828125 0.171875q0.34375 0.15625 0.59375 0.421875q0.234375 0.28125 0.375 0.65625q0.140625 0.375 0.203125 0.796875l1.203125 0q-0.078125 -0.671875 -0.328125 -1.234375q-0.234375 -0.5625 -0.640625 -0.953125q-0.40625 -0.40625 -0.96875 -0.625q-0.546875 -0.21875 -1.265625 -0.21875q-0.59375 0 -1.0625 0.171875q-0.46875 0.15625 -0.84375 0.453125q-0.375 0.296875 -0.65625 0.703125q-0.265625 0.390625 -0.4375 0.859375q-0.1875 0.46875 -0.28125 0.984375q-0.078125 0.515625 -0.078125 1.046875l0 1.3125q0 0.53125 0.078125 1.046875q0.09375 0.515625 0.28125 0.984375q0.171875 0.46875 0.4375 0.875q0.28125 0.390625 0.65625 0.671875q0.375 0.296875 0.84375 0.46875q0.484375 0.15625 1.0625 0.15625q0.6875 0 1.234375 -0.21875q0.5625 -0.21875 0.984375 -0.609375q0.390625 -0.390625 0.640625 -0.9375q0.265625 -0.546875 0.34375 -1.203125z" fill-rule="nonzero"/><path fill="#4285f4" d="m435.19946 117.32886l0 0.0625q0 0.9375 0.140625 1.765625q0.140625 0.8125 0.390625 1.5q0.25 0.703125 0.5625 1.28125q0.328125 0.578125 0.6875 1.03125q0.34375 0.453125 0.703125 0.765625q0.375 0.3125 0.6875 0.5l0.265625 -0.734375q-0.265625 -0.21875 -0.53125 -0.53125q-0.265625 -0.296875 -0.515625 -0.6875q-0.234375 -0.40625 -0.46875 -0.921875q-0.21875 -0.515625 -0.390625 -1.125q-0.15625 -0.59375 -0.25 -1.296875q-0.078125 -0.71875 -0.078125 -1.53125l0 -0.09375q0 -0.84375 0.09375 -1.578125q0.09375 -0.734375 0.265625 -1.34375q0.1875 -0.6875 0.453125 -1.25q0.28125 -0.578125 0.578125 -1.0q0.203125 -0.265625 0.40625 -0.484375q0.21875 -0.234375 0.4375 -0.390625l-0.265625 -0.78125q-0.3125 0.171875 -0.671875 0.5q-0.359375 0.3125 -0.71875 0.765625q-0.359375 0.453125 -0.6875 1.03125q-0.3125 0.578125 -0.5625 1.265625q-0.25 0.703125 -0.390625 1.53125q-0.140625 0.8125 -0.140625 1.75zm13.185669 -4.609375l0 -1.015625l-7.015625 0l0 1.015625l2.921875 0l0 8.453125l1.171875 0l0 -8.453125l2.921875 0zm7.7481995 5.609375l-1.203125 0q-0.0625 0.421875 -0.203125 0.796875q-0.140625 0.359375 -0.375 0.625q-0.25 0.28125 -0.59375 0.4375q-0.34375 0.140625 -0.828125 0.140625q-0.4375 0 -0.765625 -0.140625q-0.3125 -0.140625 -0.5625 -0.390625q-0.234375 -0.234375 -0.390625 -0.546875q-0.15625 -0.328125 -0.25 -0.6875q-0.109375 -0.359375 -0.15625 -0.734375q-0.03125 -0.375 -0.03125 -0.734375l0 -1.328125q0 -0.359375 0.03125 -0.734375q0.046875 -0.375 0.15625 -0.71875q0.09375 -0.359375 0.25 -0.671875q0.15625 -0.328125 0.40625 -0.578125q0.234375 -0.234375 0.5625 -0.375q0.328125 -0.140625 0.75 -0.140625q0.484375 0 0.828125 0.171875q0.34375 0.15625 0.59375 0.421875q0.234375 0.28125 0.375 0.65625q0.140625 0.375 0.203125 0.796875l1.203125 0q-0.078125 -0.671875 -0.328125 -1.234375q-0.234375 -0.5625 -0.640625 -0.953125q-0.40625 -0.40625 -0.96875 -0.625q-0.546875 -0.21875 -1.265625 -0.21875q-0.59375 0 -1.0625 0.171875q-0.46875 0.15625 -0.84375 0.453125q-0.375 0.296875 -0.65625 0.703125q-0.265625 0.390625 -0.4375 0.859375q-0.1875 0.46875 -0.28125 0.984375q-0.078125 0.515625 -0.078125 1.046875l0 1.3125q0 0.53125 0.078125 1.046875q0.09375 0.515625 0.28125 0.984375q0.171875 0.46875 0.4375 0.875q0.28125 0.390625 0.65625 0.671875q0.375 0.296875 0.84375 0.46875q0.484375 0.15625 1.0625 0.15625q0.6875 0 1.234375 -0.21875q0.5625 -0.21875 0.984375 -0.609375q0.390625 -0.390625 0.640625 -0.9375q0.265625 -0.546875 0.34375 -1.203125zm3.185669 -0.953125l1.859375 0q0.640625 -0.015625 1.203125 -0.203125q0.578125 -0.1875 1.0 -0.546875q0.4375 -0.359375 0.6875 -0.875q0.25 -0.53125 0.25 -1.203125q0 -0.6875 -0.25 -1.21875q-0.25 -0.53125 -0.6875 -0.890625q-0.421875 -0.34375 -1.0 -0.53125q-0.5625 -0.203125 -1.203125 -0.203125l-3.0625 0l0 9.46875l1.203125 0l0 -3.796875zm0 -1.0l0 -3.6875l1.859375 0q0.421875 0 0.765625 0.140625q0.359375 0.125 0.625 0.359375q0.25 0.25 0.390625 0.59375q0.15625 0.34375 0.15625 0.765625q0 0.4375 -0.15625 0.78125q-0.140625 0.328125 -0.40625 0.5625q-0.25 0.234375 -0.609375 0.359375q-0.34375 0.125 -0.765625 0.125l-1.859375 0zm11.076324 1.015625l0 -0.0625q0 -1.0 -0.15625 -1.796875q-0.15625 -0.796875 -0.390625 -1.484375q-0.234375 -0.703125 -0.5625 -1.265625q-0.3125 -0.578125 -0.6875 -1.03125q-0.34375 -0.453125 -0.71875 -0.765625q-0.359375 -0.328125 -0.671875 -0.5l-0.265625 0.734375q0.21875 0.171875 0.4375 0.421875q0.234375 0.25 0.453125 0.578125q0.28125 0.421875 0.546875 1.0q0.265625 0.5625 0.453125 1.28125q0.125 0.5 0.234375 1.21875q0.109375 0.71875 0.109375 1.59375l0 0.09375q0 0.765625 -0.078125 1.453125q-0.078125 0.671875 -0.234375 1.265625q-0.140625 0.625 -0.375 1.15625q-0.21875 0.53125 -0.453125 0.953125q-0.25 0.421875 -0.53125 0.734375q-0.28125 0.328125 -0.5625 0.53125l0.265625 0.734375q0.3125 -0.1875 0.671875 -0.5q0.375 -0.3125 0.71875 -0.765625q0.359375 -0.453125 0.671875 -1.03125q0.328125 -0.578125 0.578125 -1.28125q0.25 -0.6875 0.390625 -1.5q0.15625 -0.828125 0.15625 -1.765625z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m23.874037 508.4776l207.40157 0l0 32.31494l-207.40157 0z" fill-rule="evenodd"/><path fill="#3b454e" d="m33.76466 527.7176l2.421875 0q0.484375 0 0.9375 -0.140625q0.46875 -0.15625 0.8125 -0.4375q0.34375 -0.265625 0.546875 -0.671875q0.21875 -0.40625 0.21875 -0.9375q0 -0.34375 -0.109375 -0.625q-0.09375 -0.296875 -0.28125 -0.53125q-0.171875 -0.203125 -0.4375 -0.375q-0.265625 -0.1875 -0.546875 -0.25l0 -0.015625q0.265625 -0.125 0.453125 -0.25q0.203125 -0.140625 0.375 -0.34375q0.15625 -0.1875 0.234375 -0.4375q0.09375 -0.25 0.109375 -0.546875q0 -0.53125 -0.21875 -0.90625q-0.203125 -0.375 -0.546875 -0.625q-0.34375 -0.25 -0.796875 -0.359375q-0.453125 -0.125 -0.921875 -0.125l-2.25 0l0 7.578125zm0.96875 -3.546875l1.53125 0q0.3125 0.015625 0.578125 0.109375q0.265625 0.09375 0.46875 0.265625q0.1875 0.171875 0.296875 0.421875q0.125 0.25 0.109375 0.578125q0 0.3125 -0.125 0.5625q-0.109375 0.25 -0.328125 0.421875q-0.203125 0.171875 -0.484375 0.265625q-0.265625 0.09375 -0.5625 0.109375l-1.484375 0l0 -2.734375zm0 -0.796875l0 -2.40625l1.3125 0q0.28125 0 0.546875 0.078125q0.28125 0.0625 0.484375 0.203125q0.203125 0.140625 0.328125 0.375q0.125 0.21875 0.125 0.53125q0 0.296875 -0.125 0.53125q-0.125 0.21875 -0.328125 0.359375q-0.203125 0.15625 -0.46875 0.25q-0.265625 0.078125 -0.53125 0.078125l-1.34375 0zm5.5979156 -3.65625l0 0.84375l1.90625 0l0 6.328125l-1.90625 0l0 0.828125l4.703125 0l0 -0.828125l-1.828125 0l0 -7.171875l-2.875 0zm9.941666 8.0l0.875 0l0 -5.625l-0.96875 0l0 4.03125q-0.078125 0.1875 -0.203125 0.34375q-0.109375 0.140625 -0.265625 0.25q-0.1875 0.140625 -0.4375 0.21875q-0.25 0.078125 -0.578125 0.078125q-0.28125 0 -0.484375 -0.078125q-0.203125 -0.078125 -0.359375 -0.25q-0.140625 -0.1875 -0.21875 -0.484375q-0.0625 -0.296875 -0.0625 -0.765625l0 -3.34375l-0.96875 0l0 3.34375q0 0.625 0.140625 1.078125q0.140625 0.453125 0.390625 0.734375q0.25 0.296875 0.609375 0.4375q0.359375 0.140625 0.796875 0.140625q0.5625 0 0.984375 -0.234375q0.421875 -0.234375 0.703125 -0.65625l0.046875 0.78125zm5.1760406 0.109375q0.828125 0 1.375 -0.328125q0.5625 -0.34375 0.84375 -0.765625l-0.578125 -0.453125q-0.265625 0.34375 -0.671875 0.546875q-0.40625 0.203125 -0.921875 0.203125q-0.390625 0 -0.71875 -0.140625q-0.3125 -0.140625 -0.53125 -0.40625q-0.234375 -0.234375 -0.359375 -0.546875q-0.125 -0.3125 -0.15625 -0.71875l0 -0.046875l4.015625 0l0 -0.421875q0 -0.59375 -0.15625 -1.09375q-0.140625 -0.5 -0.4375 -0.875q-0.3125 -0.375 -0.765625 -0.578125q-0.453125 -0.21875 -1.0625 -0.21875q-0.484375 0 -0.953125 0.203125q-0.453125 0.1875 -0.8125 0.5625q-0.359375 0.375 -0.578125 0.921875q-0.21875 0.53125 -0.21875 1.21875l0 0.203125q0 0.59375 0.1875 1.09375q0.203125 0.5 0.5625 0.859375q0.359375 0.375 0.84375 0.578125q0.5 0.203125 1.09375 0.203125zm-0.125 -5.046875q0.375 0 0.640625 0.140625q0.265625 0.125 0.4375 0.34375q0.1875 0.21875 0.28125 0.515625q0.09375 0.296875 0.09375 0.5625l0 0.046875l-3.015625 0q0.046875 -0.390625 0.1875 -0.6875q0.15625 -0.296875 0.359375 -0.515625q0.203125 -0.203125 0.453125 -0.296875q0.265625 -0.109375 0.5625 -0.109375zm6.3166656 -2.0625l-0.96875 0l0 1.375l-1.484375 0l0 0.734375l1.484375 0l0 3.0625q0 0.515625 0.140625 0.890625q0.140625 0.359375 0.375 0.59375q0.234375 0.234375 0.5625 0.34375q0.328125 0.109375 0.703125 0.109375q0.21875 0 0.4375 -0.03125q0.234375 -0.015625 0.4375 -0.0625q0.203125 -0.03125 0.375 -0.078125q0.171875 -0.0625 0.2968788 -0.140625l-0.14062881 -0.671875q-0.09375 0.015625 -0.234375 0.046875q-0.125 0.03125 -0.28125 0.046875q-0.171875 0.03125 -0.34375 0.046875q-0.15625 0.015625 -0.3125 0.015625q-0.21875 0 -0.40625 -0.046875q-0.1875 -0.046875 -0.328125 -0.1875q-0.15625 -0.125 -0.234375 -0.328125q-0.078125 -0.21875 -0.078125 -0.546875l0 -3.0625l2.140625 0l0 -0.734375l-2.140625 0l0 -1.375zm3.8479195 4.140625l0 0.109375q0 0.609375 0.171875 1.125q0.171875 0.515625 0.515625 0.90625q0.328125 0.390625 0.796875 0.609375q0.484375 0.21875 1.078125 0.21875q0.59375 0 1.0625 -0.21875q0.46875 -0.21875 0.8125 -0.609375q0.328125 -0.390625 0.5 -0.90625q0.171875 -0.515625 0.171875 -1.125l0 -0.109375q0 -0.609375 -0.171875 -1.125q-0.171875 -0.53125 -0.5 -0.921875q-0.34375 -0.390625 -0.828125 -0.609375q-0.46875 -0.21875 -1.0625 -0.21875q-0.59375 0 -1.0625 0.21875q-0.46875 0.21875 -0.796875 0.609375q-0.34375 0.390625 -0.515625 0.921875q-0.171875 0.515625 -0.171875 1.125zm0.953125 0.109375l0 -0.109375q0 -0.421875 0.09375 -0.796875q0.109375 -0.375 0.3125 -0.65625q0.203125 -0.296875 0.484375 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.40625 0 0.703125 0.171875q0.296875 0.15625 0.5 0.453125q0.203125 0.28125 0.296875 0.65625q0.109375 0.375 0.109375 0.796875l0 0.109375q0 0.40625 -0.109375 0.796875q-0.09375 0.375 -0.296875 0.65625q-0.203125 0.28125 -0.5 0.453125q-0.296875 0.171875 -0.6875 0.171875q-0.40625 0 -0.703125 -0.171875q-0.296875 -0.171875 -0.5 -0.453125q-0.203125 -0.28125 -0.3125 -0.65625q-0.09375 -0.390625 -0.09375 -0.796875zm5.4416656 -0.109375l0 0.109375q0 0.609375 0.171875 1.125q0.171875 0.515625 0.515625 0.90625q0.328125 0.390625 0.796875 0.609375q0.484375 0.21875 1.078125 0.21875q0.59375 0 1.0625 -0.21875q0.46875 -0.21875 0.8125 -0.609375q0.328125 -0.390625 0.5 -0.90625q0.171875 -0.515625 0.171875 -1.125l0 -0.109375q0 -0.609375 -0.171875 -1.125q-0.171875 -0.53125 -0.5 -0.921875q-0.34375 -0.390625 -0.828125 -0.609375q-0.46875 -0.21875 -1.0625 -0.21875q-0.59375 0 -1.0625 0.21875q-0.46875 0.21875 -0.796875 0.609375q-0.34375 0.390625 -0.515625 0.921875q-0.171875 0.515625 -0.171875 1.125zm0.953125 0.109375l0 -0.109375q0 -0.421875 0.09375 -0.796875q0.109375 -0.375 0.3125 -0.65625q0.203125 -0.296875 0.484375 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.40625 0 0.703125 0.171875q0.296875 0.15625 0.5 0.453125q0.203125 0.28125 0.296875 0.65625q0.109375 0.375 0.109375 0.796875l0 0.109375q0 0.40625 -0.109375 0.796875q-0.09375 0.375 -0.296875 0.65625q-0.203125 0.28125 -0.5 0.453125q-0.296875 0.171875 -0.6875 0.171875q-0.40625 0 -0.703125 -0.171875q-0.296875 -0.171875 -0.5 -0.453125q-0.203125 -0.28125 -0.3125 -0.65625q-0.09375 -0.390625 -0.09375 -0.796875zm7.9885406 -4.25l-0.96875 0l0 1.375l-1.484375 0l0 0.734375l1.484375 0l0 3.0625q0 0.515625 0.140625 0.890625q0.140625 0.359375 0.375 0.59375q0.234375 0.234375 0.5625 0.34375q0.328125 0.109375 0.703125 0.109375q0.21875 0 0.4375 -0.03125q0.234375 -0.015625 0.4375 -0.0625q0.203125 -0.03125 0.375 -0.078125q0.171875 -0.0625 0.296875 -0.140625l-0.140625 -0.671875q-0.09375 0.015625 -0.234375 0.046875q-0.125 0.03125 -0.28125 0.046875q-0.171875 0.03125 -0.34375 0.046875q-0.15625 0.015625 -0.3125 0.015625q-0.21875 0 -0.40625 -0.046875q-0.1875 -0.046875 -0.328125 -0.1875q-0.15625 -0.125 -0.234375 -0.328125q-0.078125 -0.21875 -0.078125 -0.546875l0 -3.0625l2.140625 0l0 -0.734375l-2.140625 0l0 -1.375zm5.0822906 2.203125l0 -3.203125l-0.96875 0l0 8.0l0.96875 0l0 -4.09375q0.09375 -0.15625 0.21875 -0.296875q0.140625 -0.140625 0.296875 -0.25q0.203125 -0.125 0.4375 -0.203125q0.234375 -0.078125 0.484375 -0.078125q0.328125 0 0.5625 0.09375q0.25 0.09375 0.40625 0.265625q0.15625 0.171875 0.234375 0.421875q0.078125 0.25 0.078125 0.59375l0 3.546875l0.96875 0l0 -3.546875q0 -0.5625 -0.140625 -0.96875q-0.140625 -0.421875 -0.390625 -0.6875q-0.265625 -0.28125 -0.625 -0.40625q-0.359375 -0.125 -0.796875 -0.125q-0.34375 0 -0.640625 0.09375q-0.296875 0.09375 -0.546875 0.28125q-0.15625 0.109375 -0.296875 0.25q-0.140625 0.140625 -0.25 0.3125zm16.727081 2.515625l-0.96875 0q-0.046875 0.34375 -0.15625 0.640625q-0.109375 0.296875 -0.3125 0.5q-0.1875 0.21875 -0.46875 0.34375q-0.28125 0.125 -0.65625 0.125q-0.34375 0 -0.609375 -0.109375q-0.25 -0.125 -0.453125 -0.3125q-0.1875 -0.203125 -0.3125 -0.453125q-0.125 -0.25 -0.203125 -0.546875q-0.078125 -0.28125 -0.109375 -0.578125q-0.03125 -0.296875 -0.03125 -0.578125l0 -1.078125q0 -0.28125 0.03125 -0.578125q0.03125 -0.296875 0.109375 -0.578125q0.078125 -0.296875 0.203125 -0.546875q0.125 -0.25 0.328125 -0.453125q0.1875 -0.1875 0.4375 -0.296875q0.265625 -0.109375 0.609375 -0.109375q0.375 0 0.65625 0.125q0.28125 0.125 0.46875 0.34375q0.203125 0.234375 0.3125 0.53125q0.109375 0.296875 0.15625 0.640625l0.96875 0q-0.0625 -0.546875 -0.265625 -0.984375q-0.1875 -0.453125 -0.515625 -0.78125q-0.3125 -0.3125 -0.765625 -0.484375q-0.453125 -0.1875 -1.015625 -0.1875q-0.46875 0 -0.859375 0.140625q-0.375 0.125 -0.671875 0.359375q-0.296875 0.234375 -0.515625 0.5625q-0.21875 0.3125 -0.359375 0.6875q-0.140625 0.375 -0.21875 0.796875q-0.0625 0.40625 -0.0625 0.828125l0 1.0625q0 0.421875 0.0625 0.828125q0.078125 0.40625 0.21875 0.78125q0.140625 0.375 0.359375 0.703125q0.21875 0.3125 0.515625 0.546875q0.296875 0.234375 0.671875 0.375q0.390625 0.125 0.859375 0.125q0.546875 0 0.984375 -0.171875q0.453125 -0.1875 0.78125 -0.5q0.328125 -0.3125 0.53125 -0.75q0.203125 -0.4375 0.265625 -0.96875zm1.2229156 -0.578125l0 0.109375q0 0.609375 0.171875 1.125q0.171875 0.515625 0.515625 0.90625q0.328125 0.390625 0.796875 0.609375q0.484375 0.21875 1.078125 0.21875q0.59375 0 1.0625 -0.21875q0.46875 -0.21875 0.8125 -0.609375q0.328125 -0.390625 0.5 -0.90625q0.171875 -0.515625 0.171875 -1.125l0 -0.109375q0 -0.609375 -0.171875 -1.125q-0.171875 -0.53125 -0.5 -0.921875q-0.34375 -0.390625 -0.828125 -0.609375q-0.46875 -0.21875 -1.0625 -0.21875q-0.59375 0 -1.0625 0.21875q-0.46875 0.21875 -0.796875 0.609375q-0.34375 0.390625 -0.515625 0.921875q-0.171875 0.515625 -0.171875 1.125zm0.953125 0.109375l0 -0.109375q0 -0.421875 0.09375 -0.796875q0.109375 -0.375 0.3125 -0.65625q0.203125 -0.296875 0.484375 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.40625 0 0.703125 0.171875q0.296875 0.15625 0.5 0.453125q0.203125 0.28125 0.296875 0.65625q0.109375 0.375 0.109375 0.796875l0 0.109375q0 0.40625 -0.109375 0.796875q-0.09375 0.375 -0.296875 0.65625q-0.203125 0.28125 -0.5 0.453125q-0.296875 0.171875 -0.6875 0.171875q-0.40625 0 -0.703125 -0.171875q-0.296875 -0.171875 -0.5 -0.453125q-0.203125 -0.28125 -0.3125 -0.65625q-0.09375 -0.390625 -0.09375 -0.796875zm5.7072906 2.75l0.96875 0l0 -4.03125q0.09375 -0.1875 0.21875 -0.328125q0.140625 -0.15625 0.296875 -0.28125q0.1875 -0.125 0.40625 -0.203125q0.234375 -0.078125 0.5 -0.078125q0.3125 0 0.546875 0.078125q0.234375 0.078125 0.40625 0.234375q0.15625 0.15625 0.234375 0.421875q0.09375 0.265625 0.09375 0.640625l0 3.546875l0.96875 0l0 -3.578125q0 -0.5625 -0.140625 -0.96875q-0.140625 -0.40625 -0.390625 -0.671875q-0.265625 -0.265625 -0.625 -0.390625q-0.359375 -0.125 -0.796875 -0.125q-0.328125 0 -0.625 0.09375q-0.296875 0.09375 -0.546875 0.265625q-0.15625 0.109375 -0.3125 0.265625q-0.140625 0.140625 -0.265625 0.3125l-0.078125 -0.828125l-0.859375 0l0 5.625zm8.676041 -7.0l-0.96875 0l0 1.375l-1.484375 0l0 0.734375l1.484375 0l0 3.0625q0 0.515625 0.140625 0.890625q0.140625 0.359375 0.375 0.59375q0.234375 0.234375 0.5625 0.34375q0.328125 0.109375 0.703125 0.109375q0.21875 0 0.4375 -0.03125q0.234375 -0.015625 0.4375 -0.0625q0.203125 -0.03125 0.375 -0.078125q0.171875 -0.0625 0.296875 -0.140625l-0.140625 -0.671875q-0.09375 0.015625 -0.234375 0.046875q-0.125 0.03125 -0.28125 0.046875q-0.171875 0.03125 -0.34375 0.046875q-0.15625 0.015625 -0.3125 0.015625q-0.21875 0 -0.40625 -0.046875q-0.1875 -0.046875 -0.328125 -0.1875q-0.15625 -0.125 -0.234375 -0.328125q-0.078125 -0.21875 -0.078125 -0.546875l0 -3.0625l2.140625 0l0 -0.734375l-2.140625 0l0 -1.375zm7.8010406 1.265625q-0.609375 0 -1.09375 0.265625q-0.484375 0.265625 -0.828125 0.734375l0 -0.140625l-0.046875 -0.75l-0.90625 0l0 5.625l0.953125 0l0 -3.609375q0.09375 -0.265625 0.234375 -0.46875q0.15625 -0.21875 0.34375 -0.359375q0.21875 -0.171875 0.5 -0.25q0.28125 -0.09375 0.640625 -0.09375q0.28125 0 0.53125 0.03125q0.25 0.03125 0.53125 0.09375l0.125 -0.9375q-0.140625 -0.0625 -0.4375 -0.09375q-0.28125 -0.046875 -0.546875 -0.046875zm2.4416656 2.875l0 0.109375q0 0.609375 0.171875 1.125q0.171875 0.515625 0.515625 0.90625q0.328125 0.390625 0.796875 0.609375q0.484375 0.21875 1.078125 0.21875q0.59375 0 1.0625 -0.21875q0.46875 -0.21875 0.8125 -0.609375q0.328125 -0.390625 0.5 -0.90625q0.171875 -0.515625 0.171875 -1.125l0 -0.109375q0 -0.609375 -0.171875 -1.125q-0.171875 -0.53125 -0.5 -0.921875q-0.34375 -0.390625 -0.828125 -0.609375q-0.46875 -0.21875 -1.0625 -0.21875q-0.59375 0 -1.0625 0.21875q-0.46875 0.21875 -0.796875 0.609375q-0.34375 0.390625 -0.515625 0.921875q-0.171875 0.515625 -0.171875 1.125zm0.953125 0.109375l0 -0.109375q0 -0.421875 0.09375 -0.796875q0.109375 -0.375 0.3125 -0.65625q0.203125 -0.296875 0.484375 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.40625 0 0.703125 0.171875q0.296875 0.15625 0.5 0.453125q0.203125 0.28125 0.296875 0.65625q0.109375 0.375 0.109375 0.796875l0 0.109375q0 0.40625 -0.109375 0.796875q-0.09375 0.375 -0.296875 0.65625q-0.203125 0.28125 -0.5 0.453125q-0.296875 0.171875 -0.6875 0.171875q-0.40625 0 -0.703125 -0.171875q-0.296875 -0.171875 -0.5 -0.453125q-0.203125 -0.28125 -0.3125 -0.65625q-0.09375 -0.390625 -0.09375 -0.796875zm5.8635406 -5.25l0 0.84375l1.90625 0l0 6.328125l-1.90625 0l0 0.828125l4.703125 0l0 -0.828125l-1.828125 0l0 -7.171875l-2.875 0zm6.3947906 0l0 0.84375l1.90625 0l0 6.328125l-1.90625 0l0 0.828125l4.703125 0l0 -0.828125l-1.828125 0l0 -7.171875l-2.875 0zm8.722916 8.109375q0.828125 0 1.375 -0.328125q0.5625 -0.34375 0.84375 -0.765625l-0.578125 -0.453125q-0.265625 0.34375 -0.671875 0.546875q-0.40625 0.203125 -0.921875 0.203125q-0.390625 0 -0.71875 -0.140625q-0.3125 -0.140625 -0.53125 -0.40625q-0.234375 -0.234375 -0.359375 -0.546875q-0.125 -0.3125 -0.15625 -0.71875l0 -0.046875l4.015625 0l0 -0.421875q0 -0.59375 -0.15625 -1.09375q-0.140625 -0.5 -0.4375 -0.875q-0.3125 -0.375 -0.765625 -0.578125q-0.453125 -0.21875 -1.0625 -0.21875q-0.484375 0 -0.953125 0.203125q-0.453125 0.1875 -0.8125 0.5625q-0.359375 0.375 -0.578125 0.921875q-0.21875 0.53125 -0.21875 1.21875l0 0.203125q0 0.59375 0.1875 1.09375q0.203125 0.5 0.5625 0.859375q0.359375 0.375 0.84375 0.578125q0.5 0.203125 1.09375 0.203125zm-0.125 -5.046875q0.375 0 0.640625 0.140625q0.265625 0.125 0.4375 0.34375q0.1875 0.21875 0.28125 0.515625q0.09375 0.296875 0.09375 0.5625l0 0.046875l-3.015625 0q0.046875 -0.390625 0.1875 -0.6875q0.15625 -0.296875 0.359375 -0.515625q0.203125 -0.203125 0.453125 -0.296875q0.265625 -0.109375 0.5625 -0.109375zm7.7229156 -0.796875q-0.609375 0 -1.09375 0.265625q-0.484375 0.265625 -0.828125 0.734375l0 -0.140625l-0.046875 -0.75l-0.90625 0l0 5.625l0.953125 0l0 -3.609375q0.09375 -0.265625 0.234375 -0.46875q0.15625 -0.21875 0.34375 -0.359375q0.21875 -0.171875 0.5 -0.25q0.28125 -0.09375 0.640625 -0.09375q0.28125 0 0.53125 0.03125q0.25 0.03125 0.53125 0.09375l0.125 -0.9375q-0.140625 -0.0625 -0.4375 -0.09375q-0.28125 -0.046875 -0.546875 -0.046875z" fill-rule="nonzero"/><path fill="#8190a8" d="m14.456713 524.6364l0 0c0 -2.600525 2.108139 -4.708679 4.708662 -4.708679l0 0c1.2488136 0 2.4464817 0.49609375 3.329527 1.3791504c0.8830452 0.88305664 1.3791351 2.0806885 1.3791351 3.3295288l0 0c0 2.600525 -2.108141 4.708679 -4.708662 4.708679l0 0c-2.600523 0 -4.708662 -2.1081543 -4.708662 -4.708679z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m603.0146 104.50656l0 19.370079" fill-rule="evenodd"/><path stroke="#8190a8" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m603.0146 104.50656l0 13.370079" fill-rule="evenodd"/><path fill="#8190a8" stroke="#8190a8" stroke-width="1.0" stroke-linecap="butt" d="m601.36285 117.87664l1.6517334 4.538101l1.6517334 -4.538101z" fill-rule="evenodd"/><path fill="#4285f4" d="m518.68384 66.337l0 0c0 -3.2200584 2.6104126 -5.8304367 5.8304443 -5.8304367l157.00055 0c1.5463257 0 3.0292969 0.6142769 4.1227417 1.707695c1.0934448 1.0934219 1.7077026 2.576416 1.7077026 4.1227417l0 32.339127c0 3.2200623 -2.6104126 5.8304367 -5.8304443 5.8304367l-157.00055 0l0 0c-3.2200317 0 -5.8304443 -2.6103745 -5.8304443 -5.8304367z" fill-rule="evenodd"/><path fill="#ffffff" d="m545.4813 77.00969l1.859375 0q0.640625 -0.015625 1.203125 -0.203125q0.578125 -0.1875 1.0 -0.546875q0.4375 -0.359375 0.6875 -0.875q0.25 -0.53125 0.25 -1.203125q0 -0.6875 -0.25 -1.21875q-0.25 -0.53125 -0.6875 -0.890625q-0.421875 -0.34375 -1.0 -0.53125q-0.5625 -0.203125 -1.203125 -0.203125l-3.0625 0l0 9.46875l1.203125 0l0 -3.796875zm0 -1.0l0 -3.6875l1.859375 0q0.421875 0 0.765625 0.140625q0.359375 0.125 0.625 0.359375q0.25 0.25 0.390625 0.59375q0.15625 0.34375 0.15625 0.765625q0 0.4375 -0.15625 0.78125q-0.140625 0.328125 -0.40625 0.5625q-0.25 0.234375 -0.609375 0.359375q-0.34375 0.125 -0.765625 0.125l-1.859375 0zm13.060669 -3.65625l0 -1.015625l-7.015625 0l0 1.015625l2.921875 0l0 8.453125l1.171875 0l0 -8.453125l2.921875 0zm6.576294 6.0625q0 0.390625 -0.171875 0.671875q-0.171875 0.28125 -0.4375 0.46875q-0.265625 0.1875 -0.609375 0.28125q-0.34375 0.078125 -0.6875 0.078125q-0.453125 0 -0.828125 -0.109375q-0.359375 -0.125 -0.65625 -0.375q-0.28125 -0.234375 -0.46875 -0.578125q-0.171875 -0.34375 -0.234375 -0.78125l-1.234375 0q0.015625 0.609375 0.265625 1.109375q0.25 0.5 0.6875 0.875q0.484375 0.421875 1.125 0.65625q0.65625 0.21875 1.34375 0.21875q0.5625 0 1.125 -0.15625q0.578125 -0.15625 1.015625 -0.46875q0.453125 -0.3125 0.734375 -0.78125q0.28125 -0.484375 0.28125 -1.125q0 -0.640625 -0.265625 -1.109375q-0.265625 -0.484375 -0.6875 -0.8125q-0.4375 -0.359375 -0.96875 -0.59375q-0.515625 -0.234375 -1.046875 -0.390625q-0.328125 -0.109375 -0.6875 -0.234375q-0.359375 -0.125 -0.65625 -0.328125q-0.3125 -0.1875 -0.515625 -0.46875q-0.203125 -0.28125 -0.21875 -0.703125q0 -0.375 0.15625 -0.65625q0.15625 -0.28125 0.421875 -0.484375q0.25 -0.1875 0.578125 -0.28125q0.328125 -0.109375 0.671875 -0.109375q0.4375 0 0.765625 0.140625q0.34375 0.125 0.59375 0.375q0.25 0.234375 0.390625 0.578125q0.15625 0.328125 0.203125 0.734375l1.25 0q-0.015625 -0.65625 -0.28125 -1.171875q-0.265625 -0.53125 -0.71875 -0.90625q-0.4375 -0.375 -1.015625 -0.578125q-0.5625 -0.203125 -1.1875 -0.203125q-0.5625 0 -1.125 0.171875q-0.546875 0.171875 -0.96875 0.515625q-0.4375 0.328125 -0.71875 0.8125q-0.265625 0.46875 -0.265625 1.09375q0 0.609375 0.265625 1.0625q0.28125 0.453125 0.703125 0.78125q0.421875 0.328125 0.9375 0.5625q0.515625 0.21875 1.015625 0.390625q0.359375 0.109375 0.71875 0.25q0.375 0.125 0.6875 0.328125q0.3125 0.21875 0.515625 0.515625q0.203125 0.296875 0.203125 0.734375zm12.355774 -7.078125l-1.484375 0l0 9.46875l1.171875 0l0 -3.78125l-0.109375 -3.8125l1.609375 4.953125l0.6875 0l1.75 -5.09375l-0.09375 3.953125l0 3.78125l1.171875 0l0 -9.46875l-1.5 0l-1.65625 4.734375l-1.546875 -4.734375zm7.998169 0l-1.484375 0l0 9.46875l1.171875 0l0 -3.78125l-0.109375 -3.8125l1.609375 4.953125l0.6875 0l1.75 -5.09375l-0.09375 3.953125l0 3.78125l1.171875 0l0 -9.46875l-1.5 0l-1.65625 4.734375l-1.546875 -4.734375zm6.670044 0l0 1.046875l2.21875 0l0 7.375l-2.21875 0l0 1.046875l5.734375 0l0 -1.046875l-2.265625 0l0 -7.375l2.265625 0l0 -1.046875l-5.734375 0zm18.855774 0.71875l-1.21875 0l0 1.703125l-1.84375 0l0 0.9375l1.84375 0l0 3.828125q0 0.640625 0.171875 1.109375q0.1875 0.453125 0.484375 0.75q0.296875 0.28125 0.703125 0.421875q0.40625 0.125 0.875 0.125q0.28125 0 0.5625 -0.03125q0.28125 -0.015625 0.53125 -0.0625q0.265625 -0.046875 0.46875 -0.109375q0.21875 -0.078125 0.375 -0.171875l-0.171875 -0.84375q-0.109375 0.015625 -0.28125 0.0625q-0.171875 0.03125 -0.375 0.0625q-0.203125 0.03125 -0.40625 0.0625q-0.203125 0.015625 -0.40625 0.015625q-0.265625 0 -0.5 -0.0625q-0.234375 -0.0625 -0.421875 -0.234375q-0.1875 -0.15625 -0.296875 -0.421875q-0.09375 -0.265625 -0.09375 -0.671875l0 -3.828125l2.6875 0l0 -0.9375l-2.6875 0l0 -1.703125zm4.810669 5.171875l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.59375 0.265625 1.34375 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.328125 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.375 -0.21875 0.875 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.875 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm14.902588 -0.140625l0 0.140625q0 0.75 0.1875 1.40625q0.203125 0.65625 0.578125 1.140625q0.359375 0.46875 0.875 0.75q0.515625 0.265625 1.15625 0.265625q0.390625 0 0.71875 -0.078125q0.328125 -0.078125 0.609375 -0.234375q0.171875 -0.09375 0.328125 -0.21875q0.15625 -0.140625 0.296875 -0.296875l0 0.609375q0 0.453125 -0.140625 0.796875q-0.125 0.359375 -0.375 0.59375q-0.234375 0.25 -0.59375 0.375q-0.34375 0.125 -0.765625 0.125q-0.234375 0 -0.484375 -0.0625q-0.234375 -0.046875 -0.484375 -0.15625q-0.234375 -0.109375 -0.46875 -0.296875q-0.234375 -0.1875 -0.453125 -0.453125l-0.625 0.734375q0.234375 0.34375 0.5625 0.578125q0.34375 0.234375 0.703125 0.359375q0.359375 0.15625 0.703125 0.203125q0.359375 0.0625 0.640625 0.0625q0.65625 0 1.203125 -0.203125q0.546875 -0.1875 0.953125 -0.5625q0.390625 -0.375 0.609375 -0.921875q0.21875 -0.53125 0.21875 -1.234375l0 -6.890625l-1.09375 0l-0.0625 0.765625q-0.125 -0.15625 -0.265625 -0.28125q-0.140625 -0.125 -0.296875 -0.21875q-0.28125 -0.1875 -0.640625 -0.28125q-0.359375 -0.109375 -0.78125 -0.109375q-0.65625 0 -1.171875 0.265625q-0.515625 0.265625 -0.890625 0.75q-0.359375 0.46875 -0.5625 1.140625q-0.1875 0.65625 -0.1875 1.4375zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.109375 -0.984375q0.109375 -0.46875 0.34375 -0.8125q0.234375 -0.359375 0.59375 -0.5625q0.359375 -0.21875 0.859375 -0.21875q0.3125 0 0.546875 0.078125q0.25 0.078125 0.453125 0.203125q0.203125 0.140625 0.359375 0.328125q0.15625 0.171875 0.28125 0.40625l0 3.21875q-0.125 0.234375 -0.28125 0.421875q-0.15625 0.1875 -0.34375 0.328125q-0.203125 0.125 -0.453125 0.203125q-0.25 0.078125 -0.5625 0.078125q-0.515625 0 -0.875 -0.203125q-0.34375 -0.203125 -0.578125 -0.5625q-0.234375 -0.34375 -0.34375 -0.796875q-0.109375 -0.46875 -0.109375 -0.984375zm10.15448 -0.421875l1.859375 3.859375l1.28125 0l0 -0.078125l-2.015625 -4.046875q0.390625 -0.171875 0.71875 -0.40625q0.328125 -0.25 0.5625 -0.5625q0.234375 -0.3125 0.359375 -0.6875q0.140625 -0.390625 0.140625 -0.84375q0 -0.71875 -0.25 -1.25q-0.25 -0.53125 -0.6875 -0.890625q-0.4375 -0.34375 -1.03125 -0.515625q-0.578125 -0.1875 -1.25 -0.1875l-2.78125 0l0 9.46875l1.203125 0l0 -3.859375l1.890625 0zm-1.890625 -1.0l0 -3.625l1.578125 0q0.4375 0 0.796875 0.125q0.375 0.109375 0.640625 0.34375q0.265625 0.234375 0.421875 0.578125q0.15625 0.34375 0.15625 0.796875q0 0.421875 -0.15625 0.75q-0.15625 0.328125 -0.4375 0.5625q-0.265625 0.21875 -0.625 0.34375q-0.359375 0.125 -0.765625 0.125l-1.609375 0zm8.076294 1.0625l1.859375 0q0.640625 -0.015625 1.203125 -0.203125q0.578125 -0.1875 1.0 -0.546875q0.4375 -0.359375 0.6875 -0.875q0.25 -0.53125 0.25 -1.203125q0 -0.6875 -0.25 -1.21875q-0.25 -0.53125 -0.6875 -0.890625q-0.421875 -0.34375 -1.0 -0.53125q-0.5625 -0.203125 -1.203125 -0.203125l-3.0625 0l0 9.46875l1.203125 0l0 -3.796875zm0 -1.0l0 -3.6875l1.859375 0q0.421875 0 0.765625 0.140625q0.359375 0.125 0.625 0.359375q0.25 0.25 0.390625 0.59375q0.15625 0.34375 0.15625 0.765625q0 0.4375 -0.15625 0.78125q-0.140625 0.328125 -0.40625 0.5625q-0.25 0.234375 -0.609375 0.359375q-0.34375 0.125 -0.765625 0.125l-1.859375 0zm12.810669 1.953125l-1.203125 0q-0.0625 0.421875 -0.203125 0.796875q-0.140625 0.359375 -0.375 0.625q-0.25 0.28125 -0.59375 0.4375q-0.34375 0.140625 -0.828125 0.140625q-0.4375 0 -0.765625 -0.140625q-0.3125 -0.140625 -0.5625 -0.390625q-0.234375 -0.234375 -0.390625 -0.546875q-0.15625 -0.328125 -0.25 -0.6875q-0.109375 -0.359375 -0.15625 -0.734375q-0.03125 -0.375 -0.03125 -0.734375l0 -1.328125q0 -0.359375 0.03125 -0.734375q0.046875 -0.375 0.15625 -0.71875q0.09375 -0.359375 0.25 -0.671875q0.15625 -0.328125 0.40625 -0.578125q0.234375 -0.234375 0.5625 -0.375q0.328125 -0.140625 0.75 -0.140625q0.484375 0 0.828125 0.171875q0.34375 0.15625 0.59375 0.421875q0.234375 0.28125 0.375 0.65625q0.140625 0.375 0.203125 0.796875l1.203125 0q-0.078125 -0.671875 -0.328125 -1.234375q-0.234375 -0.5625 -0.640625 -0.953125q-0.40625 -0.40625 -0.96875 -0.625q-0.546875 -0.21875 -1.265625 -0.21875q-0.59375 0 -1.0625 0.171875q-0.46875 0.15625 -0.84375 0.453125q-0.375 0.296875 -0.65625 0.703125q-0.265625 0.390625 -0.4375 0.859375q-0.1875 0.46875 -0.28125 0.984375q-0.078125 0.515625 -0.078125 1.046875l0 1.3125q0 0.53125 0.078125 1.046875q0.09375 0.515625 0.28125 0.984375q0.171875 0.46875 0.4375 0.875q0.28125 0.390625 0.65625 0.671875q0.375 0.296875 0.84375 0.46875q0.484375 0.15625 1.0625 0.15625q0.6875 0 1.234375 -0.21875q0.5625 -0.21875 0.984375 -0.609375q0.390625 -0.390625 0.640625 -0.9375q0.265625 -0.546875 0.34375 -1.203125z" fill-rule="nonzero"/><path fill="#ffffff" d="m576.40985 94.90281l3.15625 -8.234375l-0.859375 0l-3.15625 8.234375l0.859375 0zm5.5667114 -6.28125l-0.859375 0l0 5.625l0.921875 0l0 -4.484375q0.03125 -0.078125 0.078125 -0.140625q0.046875 -0.078125 0.109375 -0.140625q0.09375 -0.078125 0.21875 -0.109375q0.125 -0.046875 0.296875 -0.046875q0.15625 0 0.265625 0.046875q0.125 0.03125 0.203125 0.125q0.09375 0.078125 0.125 0.21875q0.03125 0.140625 0.03125 0.3125l0 4.21875l0.921875 0l0 -4.21875q0 -0.03125 0 -0.046875q0 -0.03125 0 -0.046875q0.015625 -0.140625 0.0625 -0.234375q0.046875 -0.109375 0.125 -0.203125q0.09375 -0.078125 0.21875 -0.125q0.125 -0.046875 0.296875 -0.046875q0.15625 0 0.28125 0.046875q0.125 0.046875 0.203125 0.125q0.078125 0.09375 0.109375 0.234375q0.046875 0.125 0.046875 0.296875l0 4.21875l0.921875 0l0 -4.203125q0 -0.40625 -0.09375 -0.703125q-0.09375 -0.296875 -0.265625 -0.484375q-0.171875 -0.171875 -0.40625 -0.25q-0.234375 -0.09375 -0.515625 -0.09375q-0.21875 0 -0.40625 0.0625q-0.171875 0.046875 -0.3125 0.140625q-0.125 0.078125 -0.21875 0.1875q-0.09375 0.09375 -0.171875 0.21875q-0.0625 -0.140625 -0.140625 -0.234375q-0.078125 -0.109375 -0.171875 -0.1875q-0.140625 -0.09375 -0.328125 -0.140625q-0.171875 -0.046875 -0.390625 -0.046875q-0.390625 0 -0.671875 0.171875q-0.28125 0.171875 -0.453125 0.46875l-0.03125 -0.53125zm6.3947754 0l-0.859375 0l0 5.625l0.921875 0l0 -4.484375q0.03125 -0.078125 0.078125 -0.140625q0.046875 -0.078125 0.109375 -0.140625q0.09375 -0.078125 0.21875 -0.109375q0.125 -0.046875 0.296875 -0.046875q0.15625 0 0.265625 0.046875q0.125 0.03125 0.203125 0.125q0.09375 0.078125 0.125 0.21875q0.03125 0.140625 0.03125 0.3125l0 4.21875l0.921875 0l0 -4.21875q0 -0.03125 0 -0.046875q0 -0.03125 0 -0.046875q0.015625 -0.140625 0.0625 -0.234375q0.046875 -0.109375 0.125 -0.203125q0.09375 -0.078125 0.21875 -0.125q0.125 -0.046875 0.296875 -0.046875q0.15625 0 0.28125 0.046875q0.125 0.046875 0.203125 0.125q0.078125 0.09375 0.109375 0.234375q0.046875 0.125 0.046875 0.296875l0 4.21875l0.921875 0l0 -4.203125q0 -0.40625 -0.09375 -0.703125q-0.09375 -0.296875 -0.265625 -0.484375q-0.171875 -0.171875 -0.40625 -0.25q-0.234375 -0.09375 -0.515625 -0.09375q-0.21875 0 -0.40625 0.0625q-0.171875 0.046875 -0.3125 0.140625q-0.125 0.078125 -0.21875 0.1875q-0.09375 0.09375 -0.171875 0.21875q-0.0625 -0.140625 -0.140625 -0.234375q-0.078125 -0.109375 -0.171875 -0.1875q-0.140625 -0.09375 -0.328125 -0.140625q-0.171875 -0.046875 -0.390625 -0.046875q-0.390625 0 -0.671875 0.171875q-0.28125 0.171875 -0.453125 0.46875l-0.03125 -0.53125zm6.1135254 0l0 0.828125l1.90625 0l0 3.96875l-1.90625 0l0 0.828125l4.703125 0l0 -0.828125l-1.828125 0l0 -4.796875l-2.875 0zm1.78125 -1.484375q0 0.234375 0.140625 0.390625q0.140625 0.15625 0.4375 0.15625q0.28125 0 0.421875 -0.15625q0.15625 -0.15625 0.15625 -0.390625q0 -0.125 -0.046875 -0.234375q-0.03125 -0.109375 -0.125 -0.1875q-0.0625 -0.0625 -0.171875 -0.09375q-0.09375 -0.046875 -0.234375 -0.046875q-0.140625 0 -0.25 0.046875q-0.09375 0.03125 -0.171875 0.09375q-0.078125 0.078125 -0.125 0.1875q-0.03125 0.109375 -0.03125 0.234375zm9.0979 7.109375l0 -0.78125l-3.796875 0l2.03125 -2.203125q0.28125 -0.3125 0.53125 -0.625q0.265625 -0.328125 0.46875 -0.640625q0.1875 -0.328125 0.296875 -0.65625q0.125 -0.328125 0.125 -0.671875q0 -0.453125 -0.15625 -0.828125q-0.15625 -0.390625 -0.453125 -0.671875q-0.296875 -0.28125 -0.734375 -0.4375q-0.421875 -0.171875 -0.96875 -0.171875q-0.578125 0 -1.03125 0.1875q-0.453125 0.1875 -0.765625 0.515625q-0.3125 0.3125 -0.484375 0.734375q-0.171875 0.421875 -0.171875 0.90625l0.96875 0q0 -0.359375 0.09375 -0.640625q0.09375 -0.28125 0.28125 -0.484375q0.1875 -0.203125 0.453125 -0.3125q0.28125 -0.109375 0.65625 -0.109375q0.3125 0 0.5625 0.109375q0.25 0.109375 0.421875 0.28125q0.171875 0.1875 0.265625 0.4375q0.09375 0.25 0.09375 0.53125q0 0.21875 -0.0625 0.4375q-0.046875 0.21875 -0.1875 0.453125q-0.140625 0.25 -0.359375 0.546875q-0.21875 0.28125 -0.5625 0.640625l-2.46875 2.765625l0 0.6875l4.953125 0zm1.5823364 -2.859375l0 0.109375q0 0.59375 0.15625 1.125q0.15625 0.515625 0.4375 0.90625q0.296875 0.390625 0.703125 0.609375q0.421875 0.21875 0.9375 0.21875q0.296875 0 0.5625 -0.078125q0.265625 -0.0625 0.484375 -0.171875q0.140625 -0.078125 0.265625 -0.1875q0.125 -0.109375 0.234375 -0.234375l0 0.484375q0 0.375 -0.109375 0.65625q-0.09375 0.28125 -0.296875 0.46875q-0.1875 0.1875 -0.46875 0.28125q-0.28125 0.109375 -0.625 0.109375q-0.1875 0 -0.375 -0.046875q-0.1875 -0.03125 -0.390625 -0.125q-0.1875 -0.09375 -0.375 -0.25q-0.1875 -0.140625 -0.359375 -0.34375l-0.5 0.578125q0.1875 0.265625 0.453125 0.453125q0.265625 0.1875 0.5625 0.296875q0.28125 0.125 0.5625 0.171875q0.28125 0.046875 0.5 0.046875q0.53125 0 0.96875 -0.15625q0.4375 -0.15625 0.75 -0.453125q0.3125 -0.3125 0.484375 -0.75q0.1875 -0.421875 0.1875 -0.984375l0 -5.5l-0.875 0l-0.046875 0.609375q-0.109375 -0.125 -0.21875 -0.21875q-0.109375 -0.109375 -0.234375 -0.1875q-0.234375 -0.15625 -0.515625 -0.234375q-0.28125 -0.078125 -0.625 -0.078125q-0.515625 0 -0.9375 0.21875q-0.40625 0.203125 -0.703125 0.59375q-0.296875 0.375 -0.453125 0.90625q-0.140625 0.53125 -0.140625 1.15625zm0.953125 0.109375l0 -0.109375q0 -0.40625 0.078125 -0.78125q0.09375 -0.375 0.28125 -0.65625q0.1875 -0.28125 0.46875 -0.453125q0.296875 -0.171875 0.703125 -0.171875q0.234375 0 0.421875 0.0625q0.203125 0.0625 0.375 0.171875q0.15625 0.109375 0.28125 0.25q0.125 0.140625 0.21875 0.328125l0 2.578125q-0.09375 0.171875 -0.21875 0.328125q-0.125 0.15625 -0.28125 0.265625q-0.15625 0.109375 -0.359375 0.171875q-0.203125 0.046875 -0.453125 0.046875q-0.40625 0 -0.6875 -0.15625q-0.28125 -0.171875 -0.46875 -0.453125q-0.1875 -0.28125 -0.28125 -0.640625q-0.078125 -0.375 -0.078125 -0.78125zm9.301025 -2.984375q-0.609375 0 -1.09375 0.265625q-0.484375 0.265625 -0.828125 0.734375l0 -0.140625l-0.046875 -0.75l-0.90625 0l0 5.625l0.953125 0l0 -3.609375q0.09375 -0.265625 0.234375 -0.46875q0.15625 -0.21875 0.34375 -0.359375q0.21875 -0.171875 0.5 -0.25q0.28125 -0.09375 0.640625 -0.09375q0.28125 0 0.53125 0.03125q0.25 0.03125 0.53125 0.09375l0.125 -0.9375q-0.140625 -0.0625 -0.4375 -0.09375q-0.28125 -0.046875 -0.546875 -0.046875zm2.7072754 7.90625l0.953125 0l0 -2.71875q0.109375 0.125 0.21875 0.21875q0.125 0.09375 0.265625 0.171875q0.21875 0.125 0.5 0.1875q0.28125 0.078125 0.59375 0.078125q0.53125 0 0.9375 -0.21875q0.421875 -0.21875 0.703125 -0.609375q0.28125 -0.390625 0.421875 -0.90625q0.15625 -0.53125 0.15625 -1.125l0 -0.109375q0 -0.625 -0.15625 -1.15625q-0.140625 -0.53125 -0.421875 -0.90625q-0.28125 -0.390625 -0.703125 -0.59375q-0.40625 -0.21875 -0.953125 -0.21875q-0.296875 0 -0.5625 0.0625q-0.265625 0.0625 -0.484375 0.1875q-0.15625 0.09375 -0.296875 0.21875q-0.140625 0.109375 -0.25 0.25l-0.046875 -0.609375l-0.875 0l0 7.796875zm3.78125 -5.03125l0 0.109375q0 0.40625 -0.09375 0.78125q-0.078125 0.375 -0.265625 0.65625q-0.1875 0.296875 -0.484375 0.46875q-0.296875 0.15625 -0.6875 0.15625q-0.25 0 -0.453125 -0.0625q-0.203125 -0.0625 -0.375 -0.171875q-0.140625 -0.09375 -0.265625 -0.21875q-0.109375 -0.140625 -0.203125 -0.296875l0 -2.703125q0.109375 -0.1875 0.234375 -0.328125q0.125 -0.140625 0.296875 -0.25q0.15625 -0.09375 0.34375 -0.140625q0.1875 -0.0625 0.40625 -0.0625q0.40625 0 0.6875 0.171875q0.296875 0.171875 0.5 0.453125q0.1875 0.28125 0.265625 0.65625q0.09375 0.375 0.09375 0.78125zm5.0041504 2.1875q-0.453125 0 -0.75 -0.171875q-0.296875 -0.1875 -0.484375 -0.484375q-0.1875 -0.28125 -0.265625 -0.640625q-0.078125 -0.375 -0.078125 -0.734375l0 -0.21875q0 -0.359375 0.078125 -0.71875q0.078125 -0.359375 0.265625 -0.65625q0.1875 -0.28125 0.484375 -0.453125q0.3125 -0.1875 0.75 -0.1875q0.296875 0 0.546875 0.09375q0.25 0.09375 0.4375 0.265625q0.1875 0.171875 0.28125 0.40625q0.109375 0.21875 0.125 0.484375l0.90625 0q0 -0.4375 -0.171875 -0.8125q-0.171875 -0.375 -0.46875 -0.640625q-0.3125 -0.28125 -0.734375 -0.4375q-0.421875 -0.15625 -0.921875 -0.15625q-0.625 0 -1.109375 0.234375q-0.484375 0.21875 -0.796875 0.609375q-0.328125 0.390625 -0.484375 0.90625q-0.15625 0.5 -0.15625 1.0625l0 0.21875q0 0.5625 0.15625 1.078125q0.15625 0.5 0.484375 0.875q0.3125 0.390625 0.796875 0.625q0.484375 0.234375 1.109375 0.234375q0.453125 0 0.859375 -0.15625q0.421875 -0.15625 0.734375 -0.421875q0.3125 -0.25 0.5 -0.59375q0.203125 -0.34375 0.203125 -0.71875l-0.90625 0q-0.015625 0.234375 -0.140625 0.4375q-0.109375 0.203125 -0.296875 0.34375q-0.1875 0.15625 -0.4375 0.25q-0.25 0.078125 -0.515625 0.078125z" fill-rule="nonzero"/><path fill="#2c9693" d="m518.68384 128.9705l0 0c0 -2.8118134 2.279419 -5.09124 5.0912476 -5.09124l158.47894 0c1.3502808 0 2.6452637 0.53639984 3.6000366 1.491188c0.954834 0.95479584 1.4912109 2.249771 1.4912109 3.6000519l0 33.81752c0 2.8118134 -2.279419 5.0912476 -5.0912476 5.0912476l-158.47894 0c-2.8118286 0 -5.0912476 -2.2794342 -5.0912476 -5.0912476z" fill-rule="evenodd"/><path fill="#ffffff" d="m577.47406 146.88239l1.859375 0q0.640625 -0.015625 1.203125 -0.203125q0.578125 -0.1875 1.0 -0.546875q0.4375 -0.359375 0.6875 -0.875q0.25 -0.53125 0.25 -1.203125q0 -0.6875 -0.25 -1.21875q-0.25 -0.53125 -0.6875 -0.890625q-0.421875 -0.34375 -1.0 -0.53125q-0.5625 -0.203125 -1.203125 -0.203125l-3.0625 0l0 9.46875l1.203125 0l0 -3.796875zm0 -1.0l0 -3.6875l1.859375 0q0.421875 0 0.765625 0.140625q0.359375 0.125 0.625 0.359375q0.25 0.25 0.390625 0.59375q0.15625 0.34375 0.15625 0.765625q0 0.4375 -0.15625 0.78125q-0.140625 0.328125 -0.40625 0.5625q-0.25 0.234375 -0.609375 0.359375q-0.34375 0.125 -0.765625 0.125l-1.859375 0zm13.060669 -3.65625l0 -1.015625l-7.015625 0l0 1.015625l2.921875 0l0 8.453125l1.171875 0l0 -8.453125l2.921875 0zm6.576294 6.0625q0 0.390625 -0.171875 0.671875q-0.171875 0.28125 -0.4375 0.46875q-0.265625 0.1875 -0.609375 0.28125q-0.34375 0.078125 -0.6875 0.078125q-0.453125 0 -0.828125 -0.109375q-0.359375 -0.125 -0.65625 -0.375q-0.28125 -0.234375 -0.46875 -0.578125q-0.171875 -0.34375 -0.234375 -0.78125l-1.234375 0q0.015625 0.609375 0.265625 1.109375q0.25 0.5 0.6875 0.875q0.484375 0.421875 1.125 0.65625q0.65625 0.21875 1.34375 0.21875q0.5625 0 1.125 -0.15625q0.578125 -0.15625 1.015625 -0.46875q0.453125 -0.3125 0.734375 -0.78125q0.28125 -0.484375 0.28125 -1.125q0 -0.640625 -0.265625 -1.109375q-0.265625 -0.484375 -0.6875 -0.8125q-0.4375 -0.359375 -0.96875 -0.59375q-0.515625 -0.234375 -1.046875 -0.390625q-0.328125 -0.109375 -0.6875 -0.234375q-0.359375 -0.125 -0.65625 -0.328125q-0.3125 -0.1875 -0.515625 -0.46875q-0.203125 -0.28125 -0.21875 -0.703125q0 -0.375 0.15625 -0.65625q0.15625 -0.28125 0.421875 -0.484375q0.25 -0.1875 0.578125 -0.28125q0.328125 -0.109375 0.671875 -0.109375q0.4375 0 0.765625 0.140625q0.34375 0.125 0.59375 0.375q0.25 0.234375 0.390625 0.578125q0.15625 0.328125 0.203125 0.734375l1.25 0q-0.015625 -0.65625 -0.28125 -1.171875q-0.265625 -0.53125 -0.71875 -0.90625q-0.4375 -0.375 -1.015625 -0.578125q-0.5625 -0.203125 -1.1875 -0.203125q-0.5625 0 -1.125 0.171875q-0.546875 0.171875 -0.96875 0.515625q-0.4375 0.328125 -0.71875 0.8125q-0.265625 0.46875 -0.265625 1.09375q0 0.609375 0.265625 1.0625q0.28125 0.453125 0.703125 0.78125q0.421875 0.328125 0.9375 0.5625q0.515625 0.21875 1.015625 0.390625q0.359375 0.109375 0.71875 0.25q0.375 0.125 0.6875 0.328125q0.3125 0.21875 0.515625 0.515625q0.203125 0.296875 0.203125 0.734375zm16.246399 -1.984375l0 -1.03125l-3.953125 0l0 -3.046875l4.546875 0l0 -1.015625l-5.75 0l0 9.46875l5.8125 0l0 -1.015625l-4.609375 0l0 -3.359375l3.953125 0zm2.779419 4.375l1.21875 0l0 -5.046875q0.109375 -0.234375 0.28125 -0.421875q0.171875 -0.1875 0.359375 -0.328125q0.25 -0.171875 0.53125 -0.265625q0.28125 -0.09375 0.609375 -0.09375q0.390625 0 0.6875 0.09375q0.296875 0.09375 0.5 0.296875q0.203125 0.203125 0.3125 0.53125q0.109375 0.328125 0.109375 0.796875l0 4.4375l1.203125 0l0 -4.46875q0 -0.703125 -0.171875 -1.21875q-0.171875 -0.515625 -0.5 -0.84375q-0.3125 -0.328125 -0.765625 -0.484375q-0.453125 -0.15625 -1.015625 -0.15625q-0.40625 0 -0.78125 0.125q-0.359375 0.109375 -0.671875 0.3125q-0.203125 0.140625 -0.390625 0.328125q-0.1875 0.1875 -0.34375 0.40625l-0.078125 -1.046875l-1.09375 0l0 7.046875zm10.404419 0l0.921875 0l2.875 -7.046875l-1.234375 0l-1.96875 5.3125l-0.125 0.4375l-0.109375 -0.4375l-2.015625 -5.3125l-1.234375 0l2.890625 7.046875z" fill-rule="nonzero"/><path fill="#ffffff" d="m31.188976 153.39389l0 0c0 -4.5024567 3.6499634 -8.15242 8.15242 -8.15242l195.22272 0c2.1621552 0 4.2357483 0.85891724 5.764633 2.3877869c1.5288696 1.5288696 2.3877869 3.602478 2.3877869 5.764633l0 134.49832c0 4.5024414 -3.6499634 8.152405 -8.15242 8.152405l-195.22272 0c-4.5024567 0 -8.15242 -3.6499634 -8.15242 -8.152405z" fill-rule="evenodd"/><path stroke="#9471f5" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m31.188976 153.39389l0 0c0 -4.5024567 3.6499634 -8.15242 8.15242 -8.15242l195.22272 0c2.1621552 0 4.2357483 0.85891724 5.764633 2.3877869c1.5288696 1.5288696 2.3877869 3.602478 2.3877869 5.764633l0 134.49832c0 4.5024414 -3.6499634 8.152405 -8.15242 8.152405l-195.22272 0c-4.5024567 0 -8.15242 -3.6499634 -8.15242 -8.152405z" fill-rule="evenodd"/><path fill="#9471f5" d="m39.656376 145.29659l194.59276 0c2.245697 0 4.399414 0.8921051 5.9873657 2.4800415c1.5879364 1.5879517 2.4800415 3.7416687 2.4800415 5.9873657l0 19.62709c0 9.613037E-4 -7.9345703E-4 0.0017547607 -0.0017700195 0.0017547607l-211.52579 -0.0017547607l0 0c-9.727478E-4 0 -0.0017623901 -7.9345703E-4 -0.0017623901 -0.0017700195l0.0017623901 -19.62532l0 0c0 -4.676422 3.790985 -8.467407 8.4674 -8.467407z" fill-rule="evenodd"/><path stroke="#9471f5" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m39.656376 145.29659l194.59276 0c2.245697 0 4.399414 0.8921051 5.9873657 2.4800415c1.5879364 1.5879517 2.4800415 3.7416687 2.4800415 5.9873657l0 19.62709c0 9.613037E-4 -7.9345703E-4 0.0017547607 -0.0017700195 0.0017547607l-211.52579 -0.0017547607l0 0c-9.727478E-4 0 -0.0017623901 -7.9345703E-4 -0.0017623901 -0.0017700195l0.0017623901 -19.62532l0 0c0 -4.676422 3.790985 -8.467407 8.4674 -8.467407z" fill-rule="evenodd"/><path fill="#ffffff" d="m51.44097 162.93071l0.75 2.453125l1.1875 0l-3.0 -9.46875l-1.015625 0l-3.046875 9.46875l1.203125 0l0.765625 -2.453125l3.15625 0zm-2.84375 -1.046875l1.28125 -4.109375l1.25 4.109375l-2.53125 0zm6.310684 3.5l1.21875 0l0 -5.046875q0.109375 -0.234375 0.28125 -0.421875q0.171875 -0.1875 0.359375 -0.328125q0.25 -0.171875 0.53125 -0.265625q0.28125 -0.09375 0.609375 -0.09375q0.390625 0 0.6875 0.09375q0.296875 0.09375 0.5 0.296875q0.203125 0.203125 0.3125 0.53125q0.109375 0.328125 0.109375 0.796875l0 4.4375l1.203125 0l0 -4.46875q0 -0.703125 -0.171875 -1.21875q-0.171875 -0.515625 -0.5 -0.84375q-0.3125 -0.328125 -0.765625 -0.484375q-0.453125 -0.15625 -1.015625 -0.15625q-0.40625 0 -0.78125 0.125q-0.359375 0.109375 -0.671875 0.3125q-0.203125 0.140625 -0.390625 0.328125q-0.1875 0.1875 -0.34375 0.40625l-0.078125 -1.046875l-1.09375 0l0 7.046875zm7.779434 -3.578125l0 0.140625q0 0.75 0.203125 1.40625q0.203125 0.65625 0.5625 1.140625q0.359375 0.46875 0.875 0.75q0.53125 0.265625 1.15625 0.265625q0.65625 0 1.140625 -0.21875q0.5 -0.21875 0.84375 -0.640625l0.046875 0.734375l1.109375 0l0 -10.0l-1.203125 0l0 3.65625q-0.34375 -0.40625 -0.8125 -0.609375q-0.46875 -0.21875 -1.109375 -0.21875q-0.640625 0 -1.171875 0.265625q-0.515625 0.265625 -0.875 0.75q-0.375 0.46875 -0.578125 1.140625q-0.1875 0.65625 -0.1875 1.4375zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.109375 -0.984375q0.109375 -0.46875 0.34375 -0.8125q0.234375 -0.359375 0.59375 -0.5625q0.359375 -0.21875 0.859375 -0.21875q0.59375 0 0.984375 0.28125q0.40625 0.28125 0.640625 0.703125l0 3.265625q-0.234375 0.46875 -0.640625 0.75q-0.390625 0.265625 -0.984375 0.265625q-0.515625 0 -0.875 -0.203125q-0.34375 -0.203125 -0.578125 -0.5625q-0.234375 -0.34375 -0.34375 -0.796875q-0.109375 -0.46875 -0.109375 -0.984375zm11.638809 -3.734375q-0.765625 0 -1.375 0.34375q-0.59375 0.328125 -1.03125 0.90625l0 -0.171875l-0.0625 -0.953125l-1.140625 0l0 7.046875l1.203125 0l0 -4.515625q0.125 -0.328125 0.296875 -0.59375q0.1875 -0.265625 0.421875 -0.4375q0.265625 -0.21875 0.625 -0.3125q0.359375 -0.109375 0.8125 -0.109375q0.34375 0 0.65625 0.03125q0.3125 0.03125 0.65625 0.109375l0.171875 -1.171875q-0.1875 -0.078125 -0.546875 -0.125q-0.359375 -0.046875 -0.6875 -0.046875zm3.0450592 3.59375l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.59375 0.265625 1.34375 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.328125 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.375 -0.21875 0.875 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.875 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm7.326309 -3.609375l0 1.046875l2.390625 0l0 4.953125l-2.390625 0l0 1.046875l5.890625 0l0 -1.046875l-2.296875 0l0 -6.0l-3.59375 0zm2.234375 -1.84375q0 0.296875 0.171875 0.5q0.1875 0.1875 0.546875 0.1875q0.359375 0 0.53125 -0.1875q0.1875 -0.203125 0.1875 -0.5q0 -0.15625 -0.046875 -0.296875q-0.046875 -0.140625 -0.15625 -0.234375q-0.078125 -0.078125 -0.21875 -0.125q-0.125 -0.046875 -0.296875 -0.046875q-0.171875 0 -0.3125 0.046875q-0.125 0.046875 -0.203125 0.125q-0.109375 0.109375 -0.15625 0.25q-0.046875 0.125 -0.046875 0.28125zm5.341934 5.3125l0 0.140625q0 0.75 0.203125 1.40625q0.203125 0.65625 0.5625 1.140625q0.359375 0.46875 0.875 0.75q0.53125 0.265625 1.15625 0.265625q0.65625 0 1.140625 -0.21875q0.5 -0.21875 0.84375 -0.640625l0.046875 0.734375l1.109375 0l0 -10.0l-1.203125 0l0 3.65625q-0.34375 -0.40625 -0.8125 -0.609375q-0.46875 -0.21875 -1.109375 -0.21875q-0.640625 0 -1.171875 0.265625q-0.515625 0.265625 -0.875 0.75q-0.375 0.46875 -0.578125 1.140625q-0.1875 0.65625 -0.1875 1.4375zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.109375 -0.984375q0.109375 -0.46875 0.34375 -0.8125q0.234375 -0.359375 0.59375 -0.5625q0.359375 -0.21875 0.859375 -0.21875q0.59375 0 0.984375 0.28125q0.40625 0.28125 0.640625 0.703125l0 3.265625q-0.234375 0.46875 -0.640625 0.75q-0.390625 0.265625 -0.984375 0.265625q-0.515625 0 -0.875 -0.203125q-0.34375 -0.203125 -0.578125 -0.5625q-0.234375 -0.34375 -0.34375 -0.796875q-0.109375 -0.46875 -0.109375 -0.984375zm15.011993 3.4375l3.03125 0q0.59375 0 1.15625 -0.1875q0.578125 -0.1875 1.015625 -0.53125q0.4375 -0.328125 0.6875 -0.828125q0.265625 -0.515625 0.265625 -1.1875q0 -0.421875 -0.125 -0.78125q-0.125 -0.375 -0.359375 -0.65625q-0.203125 -0.265625 -0.546875 -0.484375q-0.328125 -0.234375 -0.6875 -0.3125l0 -0.015625q0.34375 -0.15625 0.578125 -0.328125q0.25 -0.171875 0.453125 -0.421875q0.203125 -0.234375 0.3125 -0.53125q0.109375 -0.3125 0.125 -0.6875q0 -0.65625 -0.265625 -1.125q-0.25 -0.484375 -0.6875 -0.796875q-0.4375 -0.296875 -1.0 -0.4375q-0.5625 -0.15625 -1.140625 -0.15625l-2.8125 0l0 9.46875zm1.203125 -4.4375l1.921875 0q0.390625 0.015625 0.71875 0.140625q0.328125 0.109375 0.578125 0.328125q0.25 0.21875 0.390625 0.53125q0.140625 0.3125 0.125 0.71875q0 0.390625 -0.15625 0.703125q-0.140625 0.3125 -0.40625 0.53125q-0.265625 0.21875 -0.609375 0.34375q-0.328125 0.109375 -0.703125 0.125l-1.859375 0l0 -3.421875zm0 -1.0l0 -3.015625l1.640625 0q0.359375 0.015625 0.6875 0.109375q0.34375 0.078125 0.609375 0.25q0.25 0.1875 0.390625 0.46875q0.15625 0.265625 0.15625 0.671875q0 0.359375 -0.15625 0.640625q-0.15625 0.28125 -0.40625 0.46875q-0.25 0.203125 -0.578125 0.3125q-0.328125 0.09375 -0.65625 0.09375l-1.6875 0zm13.185684 -3.015625l0 -1.015625l-7.015625 0l0 1.015625l2.921875 0l0 8.453125l1.171875 0l0 -8.453125l2.921875 0zm10.933876 -1.015625l-1.484375 0l0 9.46875l1.171875 0l0 -3.78125l-0.109375 -3.8125l1.609375 4.953125l0.6875 0l1.75 -5.09375l-0.09375 3.953125l0 3.78125l1.171875 0l0 -9.46875l-1.5 0l-1.65625 4.734375l-1.546875 -4.734375zm6.341934 5.890625l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.59375 0.265625 1.34375 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.328125 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.375 -0.21875 0.875 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.875 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm6.904434 -0.140625l0 0.140625q0 0.75 0.203125 1.40625q0.203125 0.65625 0.5625 1.140625q0.359375 0.46875 0.875 0.75q0.53125 0.265625 1.15625 0.265625q0.65625 0 1.140625 -0.21875q0.5 -0.21875 0.84375 -0.640625l0.046875 0.734375l1.109375 0l0 -10.0l-1.203125 0l0 3.65625q-0.34375 -0.40625 -0.8125 -0.609375q-0.46875 -0.21875 -1.109375 -0.21875q-0.640625 0 -1.171875 0.265625q-0.515625 0.265625 -0.875 0.75q-0.375 0.46875 -0.578125 1.140625q-0.1875 0.65625 -0.1875 1.4375zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.109375 -0.984375q0.109375 -0.46875 0.34375 -0.8125q0.234375 -0.359375 0.59375 -0.5625q0.359375 -0.21875 0.859375 -0.21875q0.59375 0 0.984375 0.28125q0.40625 0.28125 0.640625 0.703125l0 3.265625q-0.234375 0.46875 -0.640625 0.75q-0.390625 0.265625 -0.984375 0.265625q-0.515625 0 -0.875 -0.203125q-0.34375 -0.203125 -0.578125 -0.5625q-0.234375 -0.34375 -0.34375 -0.796875q-0.109375 -0.46875 -0.109375 -0.984375zm11.654419 3.4375l1.09375 0l0 -7.046875l-1.203125 0l0 5.0625q-0.09375 0.21875 -0.25 0.421875q-0.140625 0.1875 -0.34375 0.3125q-0.234375 0.171875 -0.546875 0.265625q-0.3125 0.09375 -0.71873474 0.09375q-0.34375 0 -0.609375 -0.078125q-0.265625 -0.09375 -0.453125 -0.328125q-0.171875 -0.21875 -0.265625 -0.59375q-0.09375 -0.375 -0.09375 -0.953125l0 -4.203125l-1.203125 0l0 4.1875q0 0.796875 0.171875 1.359375q0.171875 0.5625 0.484375 0.921875q0.328125 0.359375 0.765625 0.53125q0.453125 0.171875 1.015625 0.171875q0.68748474 0 1.2031097 -0.28125q0.53125 -0.296875 0.890625 -0.8125l0.0625 0.96875zm3.5606995 -10.0l0 1.046875l2.390625 0l0 7.90625l-2.390625 0l0 1.046875l5.890625 0l0 -1.046875l-2.296875 0l0 -8.953125l-3.59375 0zm10.920044 10.125q1.015625 0 1.71875 -0.40625q0.703125 -0.421875 1.046875 -0.953125l-0.734375 -0.5625q-0.328125 0.421875 -0.828125 0.6875q-0.5 0.25 -1.140625 0.25q-0.5 0 -0.90625 -0.171875q-0.390625 -0.1875 -0.671875 -0.5q-0.28125 -0.296875 -0.453125 -0.6875q-0.15625 -0.390625 -0.203125 -0.90625l0 -0.046875l5.03125 0l0 -0.546875q0 -0.734375 -0.1875 -1.359375q-0.1875 -0.640625 -0.5625 -1.109375q-0.375 -0.453125 -0.953125 -0.71875q-0.5625 -0.265625 -1.3125 -0.265625q-0.609375 0 -1.1875 0.25q-0.578125 0.25 -1.03125 0.703125q-0.453125 0.46875 -0.734375 1.140625q-0.265625 0.671875 -0.265625 1.53125l0 0.265625q0 0.75 0.25 1.375q0.25 0.625 0.6875 1.078125q0.453125 0.453125 1.0625 0.703125q0.625 0.25 1.375 0.25zm-0.15625 -6.3125q0.453125 0 0.78125 0.171875q0.34375 0.171875 0.5625 0.4375q0.21875 0.28125 0.34375 0.65625q0.125 0.375 0.125 0.703125l0 0.046875l-3.78125 0q0.0625 -0.484375 0.234375 -0.859375q0.1875 -0.375 0.453125 -0.625q0.265625 -0.265625 0.578125 -0.390625q0.328125 -0.140625 0.703125 -0.140625z" fill-rule="nonzero"/><path fill="#ffffff" d="m190.65828 167.55571l0.953125 0l0 -2.71875q0.109375 0.125 0.21875 0.21875q0.125 0.09375 0.265625 0.171875q0.21875 0.125 0.5 0.1875q0.28125 0.078125 0.59375 0.078125q0.53125 0 0.9375 -0.21875q0.421875 -0.21875 0.703125 -0.609375q0.28125 -0.390625 0.421875 -0.90625q0.15625 -0.53125 0.15625 -1.125l0 -0.109375q0 -0.625 -0.15625 -1.15625q-0.140625 -0.53125 -0.421875 -0.90625q-0.28125 -0.390625 -0.703125 -0.59375q-0.40625 -0.21875 -0.953125 -0.21875q-0.296875 0 -0.5625 0.0625q-0.265625 0.0625 -0.484375 0.1875q-0.15625 0.09375 -0.296875 0.21875q-0.140625 0.109375 -0.25 0.25l-0.046875 -0.609375l-0.875 0l0 7.796875zm3.78125 -5.03125l0 0.109375q0 0.40625 -0.09375 0.78125q-0.078125 0.375 -0.265625 0.65625q-0.1875 0.296875 -0.484375 0.46875q-0.296875 0.15625 -0.6875 0.15625q-0.25 0 -0.453125 -0.0625q-0.203125 -0.0625 -0.375 -0.171875q-0.140625 -0.09375 -0.265625 -0.21875q-0.109375 -0.140625 -0.203125 -0.296875l0 -2.703125q0.109375 -0.1875 0.234375 -0.328125q0.125 -0.140625 0.296875 -0.25q0.15625 -0.09375 0.34375 -0.140625q0.1875 -0.0625 0.40625 -0.0625q0.40625 0 0.6875 0.171875q0.296875 0.171875 0.5 0.453125q0.1875 0.28125 0.265625 0.65625q0.09375 0.375 0.09375 0.78125zm3.8791656 3.515625l3.15625 -8.234375l-0.859375 0l-3.15625 8.234375l0.859375 0zm5.5666656 -6.28125l-0.859375 0l0 5.625l0.921875 0l0 -4.484375q0.03125 -0.078125 0.078125 -0.140625q0.046875 -0.078125 0.109375 -0.140625q0.09375 -0.078125 0.21875 -0.109375q0.125 -0.046875 0.296875 -0.046875q0.15625 0 0.265625 0.046875q0.125 0.03125 0.203125 0.125q0.09375 0.078125 0.125 0.21875q0.03125 0.140625 0.03125 0.3125l0 4.21875l0.921875 0l0 -4.21875q0 -0.03125 0 -0.046875q0 -0.03125 0 -0.046875q0.015625 -0.140625 0.0625 -0.234375q0.046875 -0.109375 0.125 -0.203125q0.09375 -0.078125 0.21875 -0.125q0.125 -0.046875 0.296875 -0.046875q0.15625 0 0.28125 0.046875q0.125 0.046875 0.203125 0.125q0.078125 0.09375 0.109375 0.234375q0.046875 0.125 0.046875 0.296875l0 4.21875l0.921875 0l0 -4.203125q0 -0.40625 -0.09375 -0.703125q-0.09375 -0.296875 -0.265625 -0.484375q-0.171875 -0.171875 -0.40625 -0.25q-0.234375 -0.09375 -0.515625 -0.09375q-0.21875 0 -0.40625 0.0625q-0.171875 0.046875 -0.3125 0.140625q-0.125 0.078125 -0.21875 0.1875q-0.09375 0.09375 -0.171875 0.21875q-0.0625 -0.140625 -0.140625 -0.234375q-0.078125 -0.109375 -0.171875 -0.1875q-0.140625 -0.09375 -0.328125 -0.140625q-0.171875 -0.046875 -0.390625 -0.046875q-0.390625 0 -0.671875 0.171875q-0.28125 0.171875 -0.453125 0.46875l-0.03125 -0.53125zm7.2229156 6.28125l3.15625 -8.234375l-0.859375 0l-3.15625 8.234375l0.859375 0zm9.894791 -3.40625l0 -0.109375q0 -0.4375 -0.078125 -0.828125q-0.0625 -0.40625 -0.203125 -0.734375q-0.140625 -0.296875 -0.3125 -0.53125q-0.171875 -0.234375 -0.40625 -0.40625q-0.25 -0.171875 -0.5625 -0.265625q-0.296875 -0.109375 -0.65625 -0.109375q-0.296875 0 -0.546875 0.0625q-0.25 0.046875 -0.453125 0.15625q-0.171875 0.09375 -0.3125 0.21875q-0.140625 0.125 -0.265625 0.265625l0 -2.96875l-0.96875 0l0 8.0l0.890625 0l0.046875 -0.640625q0.09375 0.125 0.1875 0.21875q0.109375 0.09375 0.234375 0.1875q0.234375 0.15625 0.53125 0.25q0.296875 0.09375 0.65625 0.09375q0.328125 0 0.59375 -0.078125q0.28125 -0.078125 0.5 -0.21875q0.328125 -0.203125 0.546875 -0.515625q0.234375 -0.3125 0.375 -0.703125q0.09375 -0.296875 0.140625 -0.640625q0.0625 -0.34375 0.0625 -0.703125zm-0.953125 -0.109375l0 0.109375q0 0.25 -0.03125 0.484375q-0.03125 0.234375 -0.109375 0.453125q-0.078125 0.265625 -0.21875 0.5q-0.140625 0.21875 -0.34375 0.359375q-0.15625 0.125 -0.359375 0.1875q-0.203125 0.046875 -0.4375 0.046875q-0.25 0 -0.453125 -0.0625q-0.203125 -0.0625 -0.375 -0.1875q-0.171875 -0.109375 -0.296875 -0.265625q-0.125 -0.171875 -0.21875 -0.359375l0 -2.453125q0.09375 -0.1875 0.21875 -0.34375q0.125 -0.15625 0.296875 -0.28125q0.15625 -0.109375 0.359375 -0.171875q0.203125 -0.078125 0.453125 -0.078125q0.234375 0 0.421875 0.0625q0.1875 0.046875 0.34375 0.140625q0.21875 0.125 0.359375 0.359375q0.15625 0.234375 0.25 0.5q0.0625 0.234375 0.09375 0.484375q0.046875 0.25 0.046875 0.515625zm4.8635406 -4.140625l-0.96875 0l0 1.375l-1.484375 0l0 0.734375l1.484375 0l0 3.0625q0 0.515625 0.140625 0.890625q0.140625 0.359375 0.375 0.59375q0.234375 0.234375 0.5625 0.34375q0.328125 0.109375 0.703125 0.109375q0.21875 0 0.4375 -0.03125q0.234375 -0.015625 0.4375 -0.0625q0.203125 -0.03125 0.375 -0.078125q0.171875 -0.0625 0.296875 -0.140625l-0.140625 -0.671875q-0.09375 0.015625 -0.234375 0.046875q-0.125 0.03125 -0.28125 0.046875q-0.171875 0.03125 -0.34375 0.046875q-0.15625 0.015625 -0.3125 0.015625q-0.21875 0 -0.40625 -0.046875q-0.1875 -0.046875 -0.328125 -0.1875q-0.15625 -0.125 -0.234375 -0.328125q-0.078125 -0.21875 -0.078125 -0.546875l0 -3.0625l2.140625 0l0 -0.734375l-2.140625 0l0 -1.375z" fill-rule="nonzero"/><path fill="#9471f5" d="m42.44362 192.67993l0 0c0 -4.050171 3.28331 -7.333481 7.333481 -7.333481l174.15193 0c1.9449615 0 3.8102722 0.77264404 5.185562 2.147934c1.3752899 1.3752899 2.1479187 3.2405853 2.1479187 5.185547l0 29.333038c0 4.050171 -3.28331 7.333481 -7.333481 7.333481l-174.15193 0c-4.050171 0 -7.333481 -3.28331 -7.333481 -7.333481z" fill-rule="evenodd"/><path fill="#ffffff" d="m114.51567 201.69333l0.75 2.453125l1.1875 0l-3.0 -9.46875l-1.015625 0l-3.046875 9.46875l1.203125 0l0.765625 -2.453125l3.15625 0zm-2.84375 -1.046875l1.28125 -4.109375l1.25 4.109375l-2.53125 0zm6.310684 3.5l1.21875 0l0 -5.046875q0.109375 -0.234375 0.28125 -0.421875q0.171875 -0.1875 0.359375 -0.328125q0.25 -0.171875 0.53125 -0.265625q0.28125 -0.09375 0.609375 -0.09375q0.390625 0 0.6875 0.09375q0.296875 0.09375 0.5 0.296875q0.203125 0.203125 0.3125 0.53125q0.109375 0.328125 0.109375 0.796875l0 4.4375l1.203125 0l0 -4.46875q0 -0.703125 -0.171875 -1.21875q-0.171875 -0.515625 -0.5 -0.84375q-0.3125 -0.328125 -0.765625 -0.484375q-0.453125 -0.15625 -1.015625 -0.15625q-0.40625 0 -0.78125 0.125q-0.359375 0.109375 -0.671875 0.3125q-0.203125 0.140625 -0.390625 0.328125q-0.1875 0.1875 -0.34375 0.40625l-0.078125 -1.046875l-1.09375 0l0 7.046875zm7.779434 -3.578125l0 0.140625q0 0.75 0.203125 1.40625q0.203125 0.65625 0.5625 1.140625q0.359375 0.46875 0.875 0.75q0.53125 0.265625 1.15625 0.265625q0.65625 0 1.140625 -0.21875q0.5 -0.21875 0.84375 -0.640625l0.046875 0.734375l1.109375 0l0 -10.0l-1.203125 0l0 3.65625q-0.34375 -0.40625 -0.8125 -0.609375q-0.46875 -0.21875 -1.109375 -0.21875q-0.640625 0 -1.171875 0.265625q-0.515625 0.265625 -0.875 0.75q-0.375 0.46875 -0.578125 1.140625q-0.1875 0.65625 -0.1875 1.4375zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.109375 -0.984375q0.109375 -0.46875 0.34375 -0.8125q0.234375 -0.359375 0.59375 -0.5625q0.359375 -0.21875 0.859375 -0.21875q0.59375 0 0.984375 0.28125q0.40625 0.28125 0.640625 0.703125l0 3.265625q-0.234375 0.46875 -0.640625 0.75q-0.390625 0.265625 -0.984375 0.265625q-0.515625 0 -0.875 -0.203125q-0.34375 -0.203125 -0.578125 -0.5625q-0.234375 -0.34375 -0.34375 -0.796875q-0.109375 -0.46875 -0.109375 -0.984375zm11.638809 -3.734375q-0.765625 0 -1.375 0.34375q-0.59375 0.328125 -1.03125 0.90625l0 -0.171875l-0.0625 -0.953125l-1.140625 0l0 7.046875l1.203125 0l0 -4.515625q0.125 -0.328125 0.296875 -0.59375q0.1875 -0.265625 0.421875 -0.4375q0.265625 -0.21875 0.625 -0.3125q0.359375 -0.109375 0.8125 -0.109375q0.34375 0 0.65625 0.03125q0.3125 0.03125 0.65625 0.109375l0.171875 -1.171875q-0.1875 -0.078125 -0.546875 -0.125q-0.359375 -0.046875 -0.6875 -0.046875zm3.0450592 3.59375l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.59375 0.265625 1.34375 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.328125 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.375 -0.21875 0.875 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.875 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm7.326309 -3.609375l0 1.046875l2.390625 0l0 4.953125l-2.390625 0l0 1.046875l5.890625 0l0 -1.046875l-2.296875 0l0 -6.0l-3.59375 0zm2.234375 -1.84375q0 0.296875 0.171875 0.5q0.1875 0.1875 0.546875 0.1875q0.359375 0 0.53125 -0.1875q0.1875 -0.203125 0.1875 -0.5q0 -0.15625 -0.046875 -0.296875q-0.046875 -0.140625 -0.15625 -0.234375q-0.078125 -0.078125 -0.21875 -0.125q-0.125 -0.046875 -0.296875 -0.046875q-0.171875 0 -0.3125 0.046875q-0.125 0.046875 -0.203125 0.125q-0.109375 0.109375 -0.15625 0.25q-0.046875 0.125 -0.046875 0.28125zm5.341934 5.3125l0 0.140625q0 0.75 0.203125 1.40625q0.203125 0.65625 0.5625 1.140625q0.359375 0.46875 0.875 0.75q0.53125 0.265625 1.15625 0.265625q0.65625 0 1.140625 -0.21875q0.5 -0.21875 0.84375 -0.640625l0.046875 0.734375l1.109375 0l0 -10.0l-1.203125 0l0 3.65625q-0.34375 -0.40625 -0.8125 -0.609375q-0.46875 -0.21875 -1.109375 -0.21875q-0.640625 0 -1.171875 0.265625q-0.515625 0.265625 -0.875 0.75q-0.375 0.46875 -0.578125 1.140625q-0.1875 0.65625 -0.1875 1.4375zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.109375 -0.984375q0.109375 -0.46875 0.34375 -0.8125q0.234375 -0.359375 0.59375 -0.5625q0.359375 -0.21875 0.859375 -0.21875q0.59375 0 0.984375 0.28125q0.40625 0.28125 0.640625 0.703125l0 3.265625q-0.234375 0.46875 -0.640625 0.75q-0.390625 0.265625 -0.984375 0.265625q-0.515625 0 -0.875 -0.203125q-0.34375 -0.203125 -0.578125 -0.5625q-0.234375 -0.34375 -0.34375 -0.796875q-0.109375 -0.46875 -0.109375 -0.984375z" fill-rule="nonzero"/><path fill="#ffffff" d="m85.98987 220.14645l3.03125 0q0.59375 0 1.15625 -0.1875q0.578125 -0.1875 1.015625 -0.53125q0.4375 -0.328125 0.6875 -0.828125q0.265625 -0.515625 0.265625 -1.1875q0 -0.421875 -0.125 -0.78125q-0.125 -0.375 -0.359375 -0.65625q-0.203125 -0.265625 -0.546875 -0.484375q-0.328125 -0.234375 -0.6875 -0.3125l0 -0.015625q0.34375 -0.15625 0.578125 -0.328125q0.25 -0.171875 0.453125 -0.421875q0.203125 -0.234375 0.3125 -0.53125q0.109375 -0.3125 0.125 -0.6875q0 -0.65625 -0.265625 -1.125q-0.25 -0.484375 -0.6875 -0.796875q-0.4375 -0.296875 -1.0 -0.4375q-0.5625 -0.15625 -1.140625 -0.15625l-2.8125 0l0 9.46875zm1.203125 -4.4375l1.921875 0q0.390625 0.015625 0.71875 0.140625q0.328125 0.109375 0.578125 0.328125q0.25 0.21875 0.390625 0.53125q0.140625 0.3125 0.125 0.71875q0 0.390625 -0.15625 0.703125q-0.140625 0.3125 -0.40625 0.53125q-0.265625 0.21875 -0.609375 0.34375q-0.328125 0.109375 -0.703125 0.125l-1.859375 0l0 -3.421875zm0 -1.0l0 -3.015625l1.640625 0q0.359375 0.015625 0.6875 0.109375q0.34375 0.078125 0.609375 0.25q0.25 0.1875 0.390625 0.46875q0.15625 0.265625 0.15625 0.671875q0 0.359375 -0.15625 0.640625q-0.15625 0.28125 -0.40625 0.46875q-0.25 0.203125 -0.578125 0.3125q-0.328125 0.09375 -0.65625 0.09375l-1.6875 0zm6.998184 -4.5625l0 1.046875l2.390625 0l0 7.90625l-2.390625 0l0 1.046875l5.890625 0l0 -1.046875l-2.296875 0l0 -8.953125l-3.59375 0zm12.435684 10.0l1.09375 0l0 -7.046875l-1.203125 0l0 5.0625q-0.09375 0.21875 -0.25 0.421875q-0.140625 0.1875 -0.34375 0.3125q-0.234375 0.171875 -0.546875 0.265625q-0.3125 0.09375 -0.71875 0.09375q-0.34375 0 -0.609375 -0.078125q-0.265625 -0.09375 -0.453125 -0.328125q-0.171875 -0.21875 -0.265625 -0.59375q-0.09375 -0.375 -0.09375 -0.953125l0 -4.203125l-1.203125 0l0 4.1875q0 0.796875 0.171875 1.359375q0.171875 0.5625 0.484375 0.921875q0.328125 0.359375 0.765625 0.53125q0.453125 0.171875 1.015625 0.171875q0.6875 0 1.203125 -0.28125q0.53125 -0.296875 0.890625 -0.8125l0.0625 0.96875zm6.482559 0.125q1.015625 0 1.71875 -0.40625q0.703125 -0.421875 1.046875 -0.953125l-0.734375 -0.5625q-0.328125 0.421875 -0.828125 0.6875q-0.5 0.25 -1.140625 0.25q-0.5 0 -0.90625 -0.171875q-0.390625 -0.1875 -0.671875 -0.5q-0.28125 -0.296875 -0.453125 -0.6875q-0.15625 -0.390625 -0.203125 -0.90625l0 -0.046875l5.03125 0l0 -0.546875q0 -0.734375 -0.1875 -1.359375q-0.1875 -0.640625 -0.5625 -1.109375q-0.375 -0.453125 -0.953125 -0.71875q-0.5625 -0.265625 -1.3125 -0.265625q-0.609375 0 -1.1875 0.25q-0.578125 0.25 -1.03125 0.703125q-0.453125 0.46875 -0.734375 1.140625q-0.265625 0.671875 -0.265625 1.53125l0 0.265625q0 0.75 0.25 1.375q0.25 0.625 0.6875 1.078125q0.453125 0.453125 1.0625 0.703125q0.625 0.25 1.375 0.25zm-0.15625 -6.3125q0.453125 0 0.78125 0.171875q0.34375 0.171875 0.5625 0.4375q0.21875 0.28125 0.34375 0.65625q0.125 0.375 0.125 0.703125l0 0.046875l-3.78125 0q0.0625 -0.484375 0.234375 -0.859375q0.1875 -0.375 0.453125 -0.625q0.265625 -0.265625 0.578125 -0.390625q0.328125 -0.140625 0.703125 -0.140625zm7.888809 -2.5625l-1.21875 0l0 1.703125l-1.84375 0l0 0.9375l1.84375 0l0 3.828125q0 0.640625 0.171875 1.109375q0.1875 0.453125 0.484375 0.75q0.296875 0.28125 0.703125 0.421875q0.40625 0.125 0.875 0.125q0.28125 0 0.5625 -0.03125q0.28125 -0.015625 0.53125 -0.0625q0.265625 -0.046875 0.46875 -0.109375q0.21875 -0.078125 0.375 -0.171875l-0.171875 -0.84375q-0.109375 0.015625 -0.28125 0.0625q-0.171875 0.03125 -0.375 0.0625q-0.203125 0.03125 -0.40625 0.0625q-0.203125 0.015625 -0.40625 0.015625q-0.265625 0 -0.5 -0.0625q-0.234375 -0.0625 -0.421875 -0.234375q-0.1875 -0.15625 -0.296875 -0.421875q-0.09375 -0.265625 -0.09375 -0.671875l0 -3.828125l2.6875 0l0 -0.9375l-2.6875 0l0 -1.703125zm4.810684 5.171875l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.59375 0.265625 1.34375 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.328125 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.375 -0.21875 0.875 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.875 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm6.795059 -0.140625l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.59375 0.265625 1.34375 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.328125 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.375 -0.21875 0.875 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.875 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm9.982559 -5.3125l-1.21875 0l0 1.703125l-1.84375 0l0 0.9375l1.84375 0l0 3.828125q0 0.640625 0.171875 1.109375q0.1875 0.453125 0.484375 0.75q0.296875 0.28125 0.703125 0.421875q0.40625 0.125 0.875 0.125q0.28125 0 0.5625 -0.03125q0.28125 -0.015625 0.53125 -0.0625q0.265625 -0.046875 0.46875 -0.109375q0.21875 -0.078125 0.375 -0.171875l-0.171875 -0.84375q-0.109375 0.015625 -0.28125 0.0625q-0.171875 0.03125 -0.375 0.0625q-0.203125 0.03125 -0.40625 0.0625q-0.203125 0.015625 -0.40625 0.015625q-0.265625 0 -0.5 -0.0625q-0.234375 -0.0625 -0.421875 -0.234375q-0.1875 -0.15625 -0.296875 -0.421875q-0.09375 -0.265625 -0.09375 -0.671875l0 -3.828125l2.6875 0l0 -0.9375l-2.6875 0l0 -1.703125zm6.357559 2.75l0 -4.0l-1.21875 0l0 10.0l1.21875 0l0 -5.109375q0.125 -0.21875 0.28125 -0.390625q0.171875 -0.171875 0.375 -0.296875q0.234375 -0.171875 0.53125 -0.265625q0.296875 -0.09375 0.625 -0.09375q0.390625 0 0.6875 0.125q0.3125 0.109375 0.515625 0.328125q0.1875 0.203125 0.28125 0.53125q0.109375 0.3125 0.109375 0.734375l0 4.4375l1.203125 0l0 -4.4375q0 -0.703125 -0.171875 -1.21875q-0.171875 -0.515625 -0.5 -0.859375q-0.3125 -0.34375 -0.765625 -0.5q-0.453125 -0.15625 -1.0 -0.15625q-0.421875 0 -0.796875 0.125q-0.375 0.109375 -0.6875 0.34375q-0.203125 0.140625 -0.375 0.328125q-0.171875 0.171875 -0.3125 0.375zm19.746368 3.609375q0 0.390625 -0.171875 0.671875q-0.171875 0.28125 -0.4375 0.46875q-0.265625 0.1875 -0.609375 0.28125q-0.34375 0.078125 -0.6875 0.078125q-0.453125 0 -0.828125 -0.109375q-0.359375 -0.125 -0.65625 -0.375q-0.28125 -0.234375 -0.46875 -0.578125q-0.171875 -0.34375 -0.234375 -0.78125l-1.234375 0q0.015625 0.609375 0.265625 1.109375q0.25 0.5 0.6875 0.875q0.484375 0.421875 1.125 0.65625q0.65625 0.21875 1.34375 0.21875q0.5625 0 1.125 -0.15625q0.578125 -0.15625 1.015625 -0.46875q0.453125 -0.3125 0.734375 -0.78125q0.28125 -0.484375 0.28125 -1.125q0 -0.640625 -0.265625 -1.109375q-0.265625 -0.484375 -0.6875 -0.8125q-0.4375 -0.359375 -0.96875 -0.59375q-0.515625 -0.234375 -1.046875 -0.390625q-0.328125 -0.109375 -0.6875 -0.234375q-0.359375 -0.125 -0.65625 -0.328125q-0.3125 -0.1875 -0.515625 -0.46875q-0.203125 -0.28125 -0.21875 -0.703125q0 -0.375 0.15625 -0.65625q0.15625 -0.28125 0.421875 -0.484375q0.25 -0.1875 0.578125 -0.28125q0.328125 -0.109375 0.671875 -0.109375q0.4375 0 0.765625 0.140625q0.34375 0.125 0.59375 0.375q0.25 0.234375 0.390625 0.578125q0.15625 0.328125 0.203125 0.734375l1.25 0q-0.015625 -0.65625 -0.28125 -1.171875q-0.265625 -0.53125 -0.71875 -0.90625q-0.4375 -0.375 -1.015625 -0.578125q-0.5625 -0.203125 -1.1875 -0.203125q-0.5625 0 -1.125 0.171875q-0.546875 0.171875 -0.96875 0.515625q-0.4375 0.328125 -0.71875 0.8125q-0.265625 0.46875 -0.265625 1.09375q0 0.609375 0.265625 1.0625q0.28125 0.453125 0.703125 0.78125q0.421875 0.328125 0.9375 0.5625q0.515625 0.21875 1.015625 0.390625q0.359375 0.109375 0.71875 0.25q0.375 0.125 0.6875 0.328125q0.3125 0.21875 0.515625 0.515625q0.203125 0.296875 0.203125 0.734375zm2.9200592 2.390625l2.1875 0q0.6875 0 1.265625 -0.15625q0.59375 -0.15625 1.0625 -0.453125q0.4375 -0.28125 0.796875 -0.671875q0.359375 -0.40625 0.59375 -0.890625q0.234375 -0.46875 0.34375 -1.03125q0.125 -0.5625 0.125 -1.1875l0 -0.6875q0 -0.65625 -0.140625 -1.21875q-0.125 -0.578125 -0.359375 -1.0625q-0.265625 -0.5625 -0.71875 -1.0q-0.4375 -0.4375 -1.015625 -0.703125q-0.421875 -0.1875 -0.921875 -0.296875q-0.484375 -0.109375 -1.03125 -0.109375l-2.1875 0l0 9.46875zm1.21875 -8.484375l0.96875 0q0.453125 0 0.828125 0.09375q0.375 0.09375 0.6875 0.265625q0.421875 0.234375 0.71875 0.609375q0.296875 0.359375 0.46875 0.8125q0.140625 0.34375 0.203125 0.765625q0.078125 0.40625 0.078125 0.84375l0 0.703125q0 0.4375 -0.078125 0.84375q-0.0625 0.390625 -0.1875 0.734375q-0.15625 0.4375 -0.40625 0.78125q-0.25 0.328125 -0.609375 0.5625q-0.328125 0.234375 -0.765625 0.359375q-0.421875 0.125 -0.9375 0.125l-0.96875 0l0 -7.5zm9.170059 4.078125l2.859375 4.40625l1.46875 0l-3.53125 -5.328125l3.3125 -4.140625l-1.46875 0l-2.78125 3.46875l-0.921875 1.15625l0 -4.625l-1.21875 0l0 9.46875l1.21875 0l0 -3.203125l1.0625 -1.203125z" fill-rule="nonzero"/><path fill="#9471f5" d="m42.443623 248.63531l0 0c0 -4.050171 3.2833138 -7.333481 7.333481 -7.333481l174.15195 0c1.9449615 0 3.810257 0.7726288 5.185547 2.147934c1.3752899 1.3752899 2.147934 3.2405853 2.147934 5.185547l0 29.333038c0 4.050171 -3.28331 7.333496 -7.333481 7.333496l-174.15195 0c-4.050167 0 -7.333481 -3.2833252 -7.333481 -7.333496z" fill-rule="evenodd"/><path fill="#ffffff" d="m114.51568 257.6487l0.75 2.453125l1.1875 0l-3.0 -9.46875l-1.015625 0l-3.046875 9.46875l1.203125 0l0.765625 -2.453125l3.15625 0zm-2.84375 -1.046875l1.28125 -4.109375l1.25 4.109375l-2.53125 0zm6.310684 3.5l1.21875 0l0 -5.046875q0.109375 -0.234375 0.28125 -0.421875q0.171875 -0.1875 0.359375 -0.328125q0.25 -0.171875 0.53125 -0.265625q0.28125 -0.09375 0.609375 -0.09375q0.390625 0 0.6875 0.09375q0.296875 0.09375 0.5 0.296875q0.203125 0.203125 0.3125 0.53125q0.109375 0.328125 0.109375 0.796875l0 4.4375l1.203125 0l0 -4.46875q0 -0.703125 -0.171875 -1.21875q-0.171875 -0.515625 -0.5 -0.84375q-0.3125 -0.328125 -0.765625 -0.484375q-0.453125 -0.15625 -1.015625 -0.15625q-0.40625 0 -0.78125 0.125q-0.359375 0.109375 -0.671875 0.3125q-0.203125 0.140625 -0.390625 0.328125q-0.1875 0.1875 -0.34375 0.40625l-0.078125 -1.046875l-1.09375 0l0 7.046875zm7.779434 -3.578125l0 0.140625q0 0.75 0.203125 1.40625q0.203125 0.65625 0.5625 1.140625q0.359375 0.46875 0.875 0.75q0.53125 0.265625 1.1562424 0.265625q0.65625 0 1.140625 -0.21875q0.5 -0.21875 0.84375 -0.640625l0.046875 0.734375l1.109375 0l0 -10.0l-1.203125 0l0 3.65625q-0.34375 -0.40625 -0.8125 -0.609375q-0.46875 -0.21875 -1.109375 -0.21875q-0.6406174 0 -1.1718674 0.265625q-0.515625 0.265625 -0.875 0.75q-0.375 0.46875 -0.578125 1.140625q-0.1875 0.65625 -0.1875 1.4375zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.109375 -0.984375q0.109375 -0.46875 0.34375 -0.8125q0.234375 -0.359375 0.5937424 -0.5625q0.359375 -0.21875 0.859375 -0.21875q0.59375 0 0.984375 0.28125q0.40625 0.28125 0.640625 0.703125l0 3.265625q-0.234375 0.46875 -0.640625 0.75q-0.390625 0.265625 -0.984375 0.265625q-0.515625 0 -0.8749924 -0.203125q-0.34375 -0.203125 -0.578125 -0.5625q-0.234375 -0.34375 -0.34375 -0.796875q-0.109375 -0.46875 -0.109375 -0.984375zm11.638802 -3.734375q-0.765625 0 -1.375 0.34375q-0.59375 0.328125 -1.03125 0.90625l0 -0.171875l-0.0625 -0.953125l-1.140625 0l0 7.046875l1.203125 0l0 -4.515625q0.125 -0.328125 0.296875 -0.59375q0.1875 -0.265625 0.421875 -0.4375q0.265625 -0.21875 0.625 -0.3125q0.359375 -0.109375 0.8125 -0.109375q0.34375 0 0.65625 0.03125q0.3125 0.03125 0.65625 0.109375l0.171875 -1.171875q-0.1875 -0.078125 -0.546875 -0.125q-0.359375 -0.046875 -0.6875 -0.046875zm3.0450592 3.59375l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.59375 0.265625 1.34375 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.328125 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.375 -0.21875 0.875 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.875 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm7.326309 -3.609375l0 1.046875l2.390625 0l0 4.953125l-2.390625 0l0 1.046875l5.890625 0l0 -1.046875l-2.296875 0l0 -6.0l-3.59375 0zm2.234375 -1.84375q0 0.296875 0.171875 0.5q0.1875 0.1875 0.546875 0.1875q0.359375 0 0.53125 -0.1875q0.1875 -0.203125 0.1875 -0.5q0 -0.15625 -0.046875 -0.296875q-0.046875 -0.140625 -0.15625 -0.234375q-0.078125 -0.078125 -0.21875 -0.125q-0.125 -0.046875 -0.296875 -0.046875q-0.171875 0 -0.3125 0.046875q-0.125 0.046875 -0.203125 0.125q-0.109375 0.109375 -0.15625 0.25q-0.046875 0.125 -0.046875 0.28125zm5.341934 5.3125l0 0.140625q0 0.75 0.203125 1.40625q0.203125 0.65625 0.5625 1.140625q0.359375 0.46875 0.875 0.75q0.53125 0.265625 1.15625 0.265625q0.65625 0 1.140625 -0.21875q0.5 -0.21875 0.84375 -0.640625l0.046875 0.734375l1.109375 0l0 -10.0l-1.203125 0l0 3.65625q-0.34375 -0.40625 -0.8125 -0.609375q-0.46875 -0.21875 -1.109375 -0.21875q-0.640625 0 -1.171875 0.265625q-0.515625 0.265625 -0.875 0.75q-0.375 0.46875 -0.578125 1.140625q-0.1875 0.65625 -0.1875 1.4375zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.109375 -0.984375q0.109375 -0.46875 0.34375 -0.8125q0.234375 -0.359375 0.59375 -0.5625q0.359375 -0.21875 0.859375 -0.21875q0.59375 0 0.984375 0.28125q0.40625 0.28125 0.640625 0.703125l0 3.265625q-0.234375 0.46875 -0.640625 0.75q-0.390625 0.265625 -0.984375 0.265625q-0.515625 0 -0.875 -0.203125q-0.34375 -0.203125 -0.578125 -0.5625q-0.234375 -0.34375 -0.34375 -0.796875q-0.109375 -0.46875 -0.109375 -0.984375z" fill-rule="nonzero"/><path fill="#ffffff" d="m77.99169 276.10184l3.03125 0q0.59375 0 1.15625 -0.1875q0.578125 -0.1875 1.015625 -0.53125q0.4375 -0.328125 0.6875 -0.828125q0.265625 -0.515625 0.265625 -1.1875q0 -0.421875 -0.125 -0.78125q-0.125 -0.375 -0.359375 -0.65625q-0.203125 -0.265625 -0.546875 -0.484375q-0.328125 -0.234375 -0.6875 -0.3125l0 -0.015625q0.34375 -0.15625 0.578125 -0.328125q0.25 -0.171875 0.453125 -0.421875q0.203125 -0.234375 0.3125 -0.53125q0.109375 -0.3125 0.125 -0.6875q0 -0.65625 -0.265625 -1.125q-0.25 -0.484375 -0.6875 -0.796875q-0.4375 -0.296875 -1.0 -0.4375q-0.5625 -0.15625 -1.140625 -0.15625l-2.8125 0l0 9.46875zm1.203125 -4.4375l1.921875 0q0.390625 0.015625 0.71875 0.140625q0.328125 0.109375 0.578125 0.328125q0.25 0.21875 0.390625 0.53125q0.140625 0.3125 0.125 0.71875q0 0.390625 -0.15625 0.703125q-0.140625 0.3125 -0.40625 0.53125q-0.265625 0.21875 -0.609375 0.34375q-0.328125 0.109375 -0.703125 0.125l-1.859375 0l0 -3.421875zm0 -1.0l0 -3.015625l1.640625 0q0.359375 0.015625 0.6875 0.109375q0.34375 0.078125 0.609375 0.25q0.25 0.1875 0.390625 0.46875q0.15625 0.265625 0.15625 0.671875q0 0.359375 -0.15625 0.640625q-0.15625 0.28125 -0.40625 0.46875q-0.25 0.203125 -0.578125 0.3125q-0.328125 0.09375 -0.65625 0.09375l-1.6875 0zm6.998184 -4.5625l0 1.046875l2.390625 0l0 7.90625l-2.390625 0l0 1.046875l5.890625 0l0 -1.046875l-2.296875 0l0 -8.953125l-3.59375 0zm12.435684 10.0l1.09375 0l0 -7.046875l-1.203125 0l0 5.0625q-0.09375 0.21875 -0.25 0.421875q-0.140625 0.1875 -0.34375 0.3125q-0.234375 0.171875 -0.546875 0.265625q-0.3125 0.09375 -0.71875 0.09375q-0.34375 0 -0.609375 -0.078125q-0.265625 -0.09375 -0.453125 -0.328125q-0.171875 -0.21875 -0.265625 -0.59375q-0.09375 -0.375 -0.09375 -0.953125l0 -4.203125l-1.203125 0l0 4.1875q0 0.796875 0.171875 1.359375q0.171875 0.5625 0.484375 0.921875q0.328125 0.359375 0.765625 0.53125q0.453125 0.171875 1.015625 0.171875q0.6875 0 1.203125 -0.28125q0.53125 -0.296875 0.890625 -0.8125l0.0625 0.96875zm6.482559 0.125q1.015625 0 1.71875 -0.40625q0.703125 -0.421875 1.046875 -0.953125l-0.734375 -0.5625q-0.328125 0.421875 -0.828125 0.6875q-0.5 0.25 -1.140625 0.25q-0.5 0 -0.90625 -0.171875q-0.390625 -0.1875 -0.671875 -0.5q-0.28125 -0.296875 -0.453125 -0.6875q-0.15625 -0.390625 -0.203125 -0.90625l0 -0.046875l5.03125 0l0 -0.546875q0 -0.734375 -0.1875 -1.359375q-0.1875 -0.640625 -0.5625 -1.109375q-0.375 -0.453125 -0.953125 -0.71875q-0.5625 -0.265625 -1.3125 -0.265625q-0.609375 0 -1.1875 0.25q-0.578125 0.25 -1.03125 0.703125q-0.453125 0.46875 -0.734375 1.140625q-0.265625 0.671875 -0.265625 1.53125l0 0.265625q0 0.75 0.25 1.375q0.25 0.625 0.6875 1.078125q0.453125 0.453125 1.0625 0.703125q0.625 0.25 1.375 0.25zm-0.15625 -6.3125q0.453125 0 0.78125 0.171875q0.34375 0.171875 0.5625 0.4375q0.21875 0.28125 0.34375 0.65625q0.125 0.375 0.125 0.703125l0 0.046875l-3.78125 0q0.0625 -0.484375 0.234375 -0.859375q0.1875 -0.375 0.453125 -0.625q0.265625 -0.265625 0.578125 -0.390625q0.328125 -0.140625 0.703125 -0.140625zm7.888809 -2.5625l-1.21875 0l0 1.703125l-1.84375 0l0 0.9375l1.84375 0l0 3.828125q0 0.640625 0.171875 1.109375q0.1875 0.453125 0.484375 0.75q0.296875 0.28125 0.703125 0.421875q0.40625 0.125 0.875 0.125q0.28125 0 0.5625 -0.03125q0.28125 -0.015625 0.53125 -0.0625q0.265625 -0.046875 0.46875 -0.109375q0.21875 -0.078125 0.375 -0.171875l-0.171875 -0.84375q-0.109375 0.015625 -0.28125 0.0625q-0.171875 0.03125 -0.375 0.0625q-0.203125 0.03125 -0.40625 0.0625q-0.203125 0.015625 -0.40625 0.015625q-0.265625 0 -0.5 -0.0625q-0.234375 -0.0625 -0.421875 -0.234375q-0.1875 -0.15625 -0.296875 -0.421875q-0.09375 -0.265625 -0.09375 -0.671875l0 -3.828125l2.6875 0l0 -0.9375l-2.6875 0l0 -1.703125zm4.810684 5.171875l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.59375 0.265625 1.34375 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.328125 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.375 -0.21875 0.875 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.875 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm6.795059 -0.140625l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.5937424 0.265625 1.3437424 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.3281174 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.37499237 -0.21875 0.8749924 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.8749924 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm9.982552 -5.3125l-1.21875 0l0 1.703125l-1.84375 0l0 0.9375l1.84375 0l0 3.828125q0 0.640625 0.171875 1.109375q0.1875 0.453125 0.484375 0.75q0.296875 0.28125 0.703125 0.421875q0.40625 0.125 0.875 0.125q0.28125 0 0.5625 -0.03125q0.28125 -0.015625 0.53125 -0.0625q0.265625 -0.046875 0.46875 -0.109375q0.21875 -0.078125 0.375 -0.171875l-0.171875 -0.84375q-0.109375 0.015625 -0.28125 0.0625q-0.171875 0.03125 -0.375 0.0625q-0.203125 0.03125 -0.40625 0.0625q-0.203125 0.015625 -0.40625 0.015625q-0.265625 0 -0.5 -0.0625q-0.234375 -0.0625 -0.421875 -0.234375q-0.1875 -0.15625 -0.296875 -0.421875q-0.09375 -0.265625 -0.09375 -0.671875l0 -3.828125l2.6875 0l0 -0.9375l-2.6875 0l0 -1.703125zm6.357559 2.75l0 -4.0l-1.21875 0l0 10.0l1.21875 0l0 -5.109375q0.125 -0.21875 0.28125 -0.390625q0.171875 -0.171875 0.375 -0.296875q0.234375 -0.171875 0.53125 -0.265625q0.296875 -0.09375 0.625 -0.09375q0.390625 0 0.6875 0.125q0.3125 0.109375 0.515625 0.328125q0.1875 0.203125 0.28125 0.53125q0.109375 0.3125 0.109375 0.734375l0 4.4375l1.203125 0l0 -4.4375q0 -0.703125 -0.171875 -1.21875q-0.171875 -0.515625 -0.5 -0.859375q-0.3125 -0.34375 -0.765625 -0.5q-0.453125 -0.15625 -1.0 -0.15625q-0.421875 0 -0.796875 0.125q-0.375 0.109375 -0.6875 0.34375q-0.203125 0.140625 -0.375 0.328125q-0.171875 0.171875 -0.3125 0.375zm19.746368 3.609375q0 0.390625 -0.171875 0.671875q-0.171875 0.28125 -0.4375 0.46875q-0.265625 0.1875 -0.609375 0.28125q-0.34375 0.078125 -0.6875 0.078125q-0.453125 0 -0.828125 -0.109375q-0.359375 -0.125 -0.65625 -0.375q-0.28125 -0.234375 -0.46875 -0.578125q-0.171875 -0.34375 -0.234375 -0.78125l-1.234375 0q0.015625 0.609375 0.265625 1.109375q0.25 0.5 0.6875 0.875q0.484375 0.421875 1.125 0.65625q0.65625 0.21875 1.34375 0.21875q0.5625 0 1.125 -0.15625q0.578125 -0.15625 1.015625 -0.46875q0.453125 -0.3125 0.734375 -0.78125q0.28125 -0.484375 0.28125 -1.125q0 -0.640625 -0.265625 -1.109375q-0.265625 -0.484375 -0.6875 -0.8125q-0.4375 -0.359375 -0.96875 -0.59375q-0.515625 -0.234375 -1.046875 -0.390625q-0.328125 -0.109375 -0.6875 -0.234375q-0.359375 -0.125 -0.65625 -0.328125q-0.3125 -0.1875 -0.515625 -0.46875q-0.203125 -0.28125 -0.21875 -0.703125q0 -0.375 0.15625 -0.65625q0.15625 -0.28125 0.421875 -0.484375q0.25 -0.1875 0.578125 -0.28125q0.328125 -0.109375 0.671875 -0.109375q0.4375 0 0.765625 0.140625q0.34375 0.125 0.59375 0.375q0.25 0.234375 0.390625 0.578125q0.15625 0.328125 0.203125 0.734375l1.25 0q-0.015625 -0.65625 -0.28125 -1.171875q-0.265625 -0.53125 -0.71875 -0.90625q-0.4375 -0.375 -1.015625 -0.578125q-0.5625 -0.203125 -1.1875 -0.203125q-0.5625 0 -1.125 0.171875q-0.546875 0.171875 -0.96875 0.515625q-0.4375 0.328125 -0.71875 0.8125q-0.265625 0.46875 -0.265625 1.09375q0 0.609375 0.265625 1.0625q0.28125 0.453125 0.703125 0.78125q0.421875 0.328125 0.9375 0.5625q0.515625 0.21875 1.015625 0.390625q0.359375 0.109375 0.71875 0.25q0.375 0.125 0.6875 0.328125q0.3125 0.21875 0.515625 0.515625q0.203125 0.296875 0.203125 0.734375zm5.888809 -6.359375l-1.21875 0l0 1.703125l-1.84375 0l0 0.9375l1.84375 0l0 3.828125q0 0.640625 0.171875 1.109375q0.1875 0.453125 0.484375 0.75q0.296875 0.28125 0.703125 0.421875q0.40625 0.125 0.875 0.125q0.28125 0 0.5625 -0.03125q0.28125 -0.015625 0.53125 -0.0625q0.265625 -0.046875 0.46875 -0.109375q0.21875 -0.078125 0.375 -0.171875l-0.171875 -0.84375q-0.109375 0.015625 -0.28125 0.0625q-0.171875 0.03125 -0.375 0.0625q-0.203125 0.03125 -0.40625 0.0625q-0.203125 0.015625 -0.40625 0.015625q-0.265625 0 -0.5 -0.0625q-0.234375 -0.0625 -0.421875 -0.234375q-0.1875 -0.15625 -0.296875 -0.421875q-0.09375 -0.265625 -0.09375 -0.671875l0 -3.828125l2.6875 0l0 -0.9375l-2.6875 0l0 -1.703125zm9.779434 8.75l1.25 0l0 -0.109375q-0.125 -0.28125 -0.1875 -0.671875q-0.0625 -0.40625 -0.0625 -0.75l0 -3.28125q0 -0.59375 -0.21875 -1.03125q-0.203125 -0.4375 -0.578125 -0.75q-0.375 -0.28125 -0.890625 -0.421875q-0.515625 -0.15625 -1.109375 -0.15625q-0.65625 0 -1.1875 0.1875q-0.515625 0.171875 -0.875 0.46875q-0.359375 0.296875 -0.546875 0.671875q-0.1875 0.375 -0.203125 0.75l1.21875 0q0 -0.21875 0.09375 -0.421875q0.109375 -0.203125 0.3125 -0.359375q0.1875 -0.140625 0.46875 -0.234375q0.296875 -0.09375 0.640625 -0.09375q0.390625 0 0.703125 0.109375q0.3125 0.09375 0.515625 0.265625q0.21875 0.171875 0.328125 0.4375q0.125 0.25 0.125 0.5625l0 0.5625l-1.3125 0q-0.734375 0 -1.328125 0.140625q-0.59375 0.140625 -1.015625 0.421875q-0.421875 0.296875 -0.65625 0.734375q-0.234375 0.4375 -0.234375 1.015625q0 0.4375 0.171875 0.828125q0.171875 0.375 0.484375 0.65625q0.3125 0.28125 0.765625 0.4375q0.453125 0.15625 1.015625 0.15625q0.34375 0 0.640625 -0.078125q0.3125 -0.0625 0.59375 -0.1875q0.265625 -0.125 0.484375 -0.28125q0.234375 -0.15625 0.40625 -0.34375q0.03125 0.21875 0.0625 0.421875q0.046875 0.203125 0.125 0.34375zm-2.140625 -0.921875q-0.34375 0 -0.609375 -0.078125q-0.265625 -0.09375 -0.4375 -0.265625q-0.1875 -0.15625 -0.28125 -0.375q-0.078125 -0.21875 -0.078125 -0.484375q0 -0.265625 0.09375 -0.484375q0.109375 -0.21875 0.296875 -0.375q0.28125 -0.21875 0.734375 -0.328125q0.46875 -0.109375 1.09375 -0.109375l1.125 0l0 1.4375q-0.109375 0.203125 -0.296875 0.390625q-0.171875 0.1875 -0.421875 0.34375q-0.25 0.15625 -0.5625 0.25q-0.296875 0.078125 -0.65625 0.078125zm8.498184 0.078125q-0.5625 0 -0.9375 -0.21875q-0.375 -0.234375 -0.609375 -0.59375q-0.234375 -0.359375 -0.34375 -0.8125q-0.09375 -0.453125 -0.09375 -0.921875l0 -0.265625q0 -0.453125 0.09375 -0.90625q0.109375 -0.453125 0.34375 -0.8125q0.234375 -0.359375 0.609375 -0.578125q0.390625 -0.234375 0.9375 -0.234375q0.375 0 0.6875 0.125q0.3125 0.125 0.546875 0.34375q0.21875 0.21875 0.34375 0.5q0.140625 0.28125 0.15625 0.59375l1.140625 0q0 -0.53125 -0.21875 -1.0q-0.21875 -0.46875 -0.59375 -0.8125q-0.375 -0.34375 -0.90625 -0.53125q-0.53125 -0.203125 -1.15625 -0.203125q-0.796875 0 -1.390625 0.296875q-0.59375 0.28125 -1.0 0.75q-0.40625 0.5 -0.609375 1.140625q-0.1875 0.625 -0.1875 1.328125l0 0.265625q0 0.703125 0.1875 1.34375q0.203125 0.640625 0.609375 1.109375q0.40625 0.5 1.0 0.78125q0.59375 0.28125 1.390625 0.28125q0.5625 0 1.078125 -0.1875q0.515625 -0.1875 0.921875 -0.515625q0.390625 -0.3125 0.625 -0.734375q0.234375 -0.4375 0.25 -0.90625l-1.140625 0q-0.015625 0.296875 -0.15625 0.546875q-0.140625 0.25 -0.390625 0.421875q-0.234375 0.203125 -0.546875 0.3125q-0.3125 0.09375 -0.640625 0.09375zm7.107559 -2.4375l2.59375 3.28125l1.53125 0l-3.296875 -4.109375l2.859375 -2.9375l-1.46875 0l-2.3125 2.328125l-0.78125 0.84375l0 -6.125l-1.21875 0l0 10.0l1.21875 0l0 -2.4375l0.875 -0.84375z" fill-rule="nonzero"/><path fill="#4285f4" d="m268.75595 296.19623l0 0c-4.109131 0 -7.4402466 -3.3311157 -7.4402466 -7.4402466l0 -136.58409c0 -1.9732666 0.7838745 -3.8657227 2.1791992 -5.261032c1.3953247 -1.3953247 3.2877808 -2.1791992 5.2610474 -2.1791992l50.253357 0c4.109131 0 7.4402466 3.3311005 7.4402466 7.4402313l0 136.58409c0 4.109131 -3.3311157 7.4402466 -7.4402466 7.4402466z" fill-rule="evenodd"/><path fill="#ffffff" d="m274.2295 240.94196l-1.015625 0l0 7.015625l1.015625 0l0 -2.921875l8.453125 0l0 -1.171875l-8.453125 0l0 -2.921875zm4.875 -1.2794342l0.140625 0q0.75 0 1.40625 -0.21875q0.65625 -0.21875 1.140625 -0.640625q0.46875 -0.40625 0.75 -1.0q0.265625 -0.59375 0.265625 -1.34375q0 -0.75 -0.265625 -1.328125q-0.28125 -0.59375 -0.75 -1.015625q-0.484375 -0.40625 -1.140625 -0.625q-0.65625 -0.234375 -1.40625 -0.234375l-0.140625 0q-0.765625 0 -1.421875 0.234375q-0.65625 0.21875 -1.140625 0.625q-0.484375 0.421875 -0.75 1.015625q-0.28125 0.59375 -0.28125 1.34375q0 0.734375 0.28125 1.328125q0.265625 0.59375 0.75 1.0q0.484375 0.421875 1.140625 0.640625q0.65625 0.21875 1.421875 0.21875zm0.140625 -1.203125l-0.140625 0q-0.515625 0 -0.984375 -0.125q-0.484375 -0.125 -0.84375 -0.375q-0.359375 -0.25 -0.5625 -0.609375q-0.21875 -0.375 -0.21875 -0.875q0 -0.5 0.21875 -0.875q0.203125 -0.375 0.5625 -0.640625q0.359375 -0.234375 0.84375 -0.359375q0.46875 -0.140625 0.984375 -0.140625l0.140625 0q0.515625 0 0.984375 0.125q0.46875 0.125 0.828125 0.375q0.359375 0.25 0.578125 0.625q0.203125 0.375 0.203125 0.875q0 0.5 -0.203125 0.875q-0.21875 0.375 -0.578125 0.625q-0.359375 0.25 -0.828125 0.375q-0.46875 0.125 -0.984375 0.125zm6.140625 -7.123184l0 -1.203125l-3.375 0q0.140625 -0.125 0.265625 -0.28125q0.109375 -0.15625 0.21875 -0.3125q0.15625 -0.28125 0.234375 -0.625q0.078125 -0.359375 0.078125 -0.765625q0 -0.65625 -0.265625 -1.171875q-0.28125 -0.515625 -0.75 -0.875q-0.484375 -0.34375 -1.140625 -0.53125q-0.65625 -0.1875 -1.40625 -0.1875l-0.140625 0q-0.78125 0 -1.4375 0.1875q-0.671875 0.1875 -1.140625 0.53125q-0.484375 0.359375 -0.75 0.875q-0.265625 0.515625 -0.265625 1.203125q0 0.375 0.078125 0.71875q0.078125 0.328125 0.234375 0.59375q0.109375 0.203125 0.265625 0.375q0.140625 0.171875 0.3125 0.3125l-0.765625 0.0625l0 1.09375l9.75 0zm-6.28125 -4.75l0.140625 0q0.515625 0 0.984375 0.125q0.46875 0.109375 0.8125 0.34375q0.359375 0.234375 0.578125 0.609375q0.203125 0.359375 0.203125 0.859375q0 0.3125 -0.078125 0.5625q-0.078125 0.25 -0.203125 0.46875q-0.125 0.171875 -0.28125 0.328125q-0.171875 0.140625 -0.375 0.25l-3.390625 0q-0.21875 -0.125 -0.390625 -0.28125q-0.1875 -0.171875 -0.3125 -0.375q-0.125 -0.1875 -0.1875 -0.421875q-0.078125 -0.25 -0.078125 -0.53125q0 -0.5 0.21875 -0.859375q0.203125 -0.375 0.5625 -0.609375q0.34375 -0.234375 0.8125 -0.34375q0.46875 -0.125 0.984375 -0.125zm1.703125 -7.935684q0.171875 0 0.328125 0.0625q0.140625 0.0625 0.265625 0.1875q0.203125 0.203125 0.328125 0.5625q0.109375 0.359375 0.109375 0.84375q0 0.296875 -0.0625 0.609375q-0.0625 0.3125 -0.21875 0.578125q-0.15625 0.25 -0.40625 0.421875q-0.265625 0.171875 -0.640625 0.203125l0 1.203125q0.453125 0 0.875 -0.203125q0.40625 -0.203125 0.71875 -0.59375q0.328125 -0.390625 0.515625 -0.9375q0.1875 -0.5625 0.1875 -1.28125q0 -0.625 -0.140625 -1.15625q-0.15625 -0.53125 -0.421875 -0.90625q-0.28125 -0.375 -0.65625 -0.578125q-0.390625 -0.21875 -0.859375 -0.21875q-0.4375 0 -0.765625 0.1875q-0.328125 0.1875 -0.59375 0.53125q-0.234375 0.359375 -0.40625 0.875q-0.1875 0.515625 -0.328125 1.15625q-0.09375 0.5 -0.203125 0.828125q-0.109375 0.3125 -0.234375 0.5q-0.125 0.203125 -0.28125 0.28125q-0.171875 0.078125 -0.375 0.078125q-0.203125 0 -0.390625 -0.09375q-0.203125 -0.109375 -0.34375 -0.296875q-0.140625 -0.1875 -0.21875 -0.46875q-0.09375 -0.296875 -0.09375 -0.6875q0 -0.375 0.109375 -0.671875q0.109375 -0.296875 0.265625 -0.5q0.171875 -0.203125 0.390625 -0.3125q0.21875 -0.125 0.453125 -0.125l0 -1.203125q-0.46875 0 -0.859375 0.203125q-0.40625 0.1875 -0.703125 0.546875q-0.296875 0.375 -0.46875 0.890625q-0.171875 0.515625 -0.171875 1.171875q0 0.609375 0.171875 1.109375q0.15625 0.5 0.4375 0.875q0.28125 0.359375 0.65625 0.5625q0.375 0.203125 0.796875 0.203125q0.4375 0 0.765625 -0.1875q0.328125 -0.203125 0.5625 -0.5625q0.25 -0.359375 0.4375 -0.84375q0.171875 -0.5 0.296875 -1.109375q0.09375 -0.5 0.21875 -0.828125q0.109375 -0.328125 0.25 -0.53125q0.15625 -0.203125 0.328125 -0.28125q0.171875 -0.09375 0.375 -0.09375zm-4.125 -4.529434l-4.0 0l0 1.21875l10.0 0l0 -1.21875l-5.109375 0q-0.21875 -0.125 -0.390625 -0.28125q-0.171875 -0.171875 -0.296875 -0.375q-0.171875 -0.234375 -0.265625 -0.53125q-0.09375 -0.296875 -0.09375 -0.625q0 -0.390625 0.125 -0.6875q0.109375 -0.3125 0.328125 -0.515625q0.203125 -0.1875 0.53125 -0.28125q0.3125 -0.109375 0.734375 -0.109375l4.4375 0l0 -1.203125l-4.4375 0q-0.703125 0 -1.21875 0.171875q-0.515625 0.171875 -0.859375 0.5q-0.34375 0.3125 -0.5 0.765625q-0.15625 0.453125 -0.15625 1.0q0 0.421875 0.125 0.796875q0.109375 0.375 0.34375 0.6875q0.140625 0.203125 0.328125 0.375q0.171875 0.171875 0.375 0.3125zm-1.046875 -6.982559l1.046875 0l0 -2.390625l4.953125 0l0 2.390625l1.046875 0l0 -5.890625l-1.046875 0l0 2.296875l-6.0 0l0 3.59375zm-1.84375 -2.234375q0.296875 0 0.5 -0.171875q0.1875 -0.1875 0.1875 -0.546875q0 -0.359375 -0.1875 -0.53125q-0.203125 -0.1875 -0.5 -0.1875q-0.15625 0 -0.296875 0.046875q-0.140625 0.046875 -0.234375 0.15625q-0.078125 0.078125 -0.125 0.21875q-0.046875 0.125 -0.046875 0.296875q0 0.171875 0.046875 0.3125q0.046875 0.125 0.125 0.203125q0.109375 0.109375 0.25 0.15625q0.125 0.046875 0.28125 0.046875zm1.84375 -6.123184l0 1.078125l7.046875 0l0 -1.140625l-5.609375 0q-0.09375 -0.046875 -0.1875 -0.09375q-0.09375 -0.0625 -0.171875 -0.15625q-0.078125 -0.109375 -0.125 -0.265625q-0.0625 -0.15625 -0.0625 -0.375q0 -0.203125 0.0625 -0.34375q0.046875 -0.140625 0.140625 -0.25q0.109375 -0.09375 0.28125 -0.140625q0.171875 -0.046875 0.390625 -0.046875l5.28125 0l0 -1.15625l-5.265625 0q-0.046875 0 -0.078125 0q-0.03125 0 -0.0625 0q-0.15625 -0.015625 -0.28125 -0.078125q-0.140625 -0.0625 -0.25 -0.15625q-0.09375 -0.109375 -0.15625 -0.265625q-0.0625 -0.15625 -0.0625 -0.375q0 -0.203125 0.0625 -0.34375q0.046875 -0.15625 0.15625 -0.265625q0.109375 -0.09375 0.28125 -0.140625q0.15625 -0.0625 0.390625 -0.0625l5.265625 0l0 -1.140625l-5.265625 0q-0.5 0 -0.875 0.125q-0.375 0.109375 -0.609375 0.328125q-0.203125 0.203125 -0.3125 0.5q-0.109375 0.296875 -0.109375 0.65625q0 0.265625 0.078125 0.5q0.0625 0.21875 0.171875 0.390625q0.09375 0.15625 0.234375 0.28125q0.125 0.109375 0.265625 0.203125q-0.15625 0.078125 -0.28125 0.1875q-0.140625 0.09375 -0.234375 0.21875q-0.109375 0.15625 -0.171875 0.390625q-0.0625 0.21875 -0.0625 0.5q0 0.5 0.21875 0.84375q0.203125 0.34375 0.578125 0.5625l-0.671875 0.03125z" fill-rule="nonzero"/><path fill="#ffffff" d="m298.68262 275.32623l0 -3.03125q0 -0.59375 -0.1875 -1.15625q-0.1875 -0.578125 -0.53125 -1.015625q-0.328125 -0.4375 -0.828125 -0.6875q-0.515625 -0.265625 -1.1875 -0.265625q-0.421875 0 -0.78125 0.125q-0.375 0.125 -0.65625 0.359375q-0.265625 0.203125 -0.484375 0.546875q-0.234375 0.328125 -0.3125 0.6875l-0.015625 0q-0.15625 -0.34375 -0.328125 -0.578125q-0.171875 -0.25 -0.421875 -0.453125q-0.234375 -0.203125 -0.53125 -0.3125q-0.3125 -0.109375 -0.6875 -0.125q-0.65625 0 -1.125 0.265625q-0.484375 0.25 -0.796875 0.6875q-0.296875 0.4375 -0.4375 1.0q-0.15625 0.5625 -0.15625 1.140625l0 2.8125l9.46875 0zm-4.4375 -1.203125l0 -1.921875q0.015625 -0.390625 0.140625 -0.71875q0.109375 -0.328125 0.328125 -0.578125q0.21875 -0.25 0.53125 -0.390625q0.3125 -0.140625 0.71875 -0.125q0.390625 0 0.703125 0.15625q0.3125 0.140625 0.53125 0.40625q0.21875 0.265625 0.34375 0.609375q0.109375 0.328125 0.125 0.703125l0 1.859375l-3.421875 0zm-1.0 0l-3.015625 0l0 -1.640625q0.015625 -0.359375 0.109375 -0.6875q0.078125 -0.34375 0.25 -0.609375q0.1875 -0.25 0.46875 -0.390625q0.265625 -0.15625 0.671875 -0.15625q0.359375 0 0.640625 0.15625q0.28125 0.15625 0.46875 0.40625q0.203125 0.25 0.3125 0.578125q0.09375 0.328125 0.09375 0.65625l0 1.6875zm-4.5625 -6.9981995l1.046875 0l0 -2.390625l7.90625 0l0 2.390625l1.046875 0l0 -5.890625l-1.046875 0l0 2.296875l-8.953125 0l0 3.59375zm10.0 -12.435669l0 -1.09375l-7.046875 0l0 1.203125l5.0625 0q0.21875 0.09375 0.421875 0.25q0.1875 0.140625 0.3125 0.34375q0.171875 0.234375 0.265625 0.546875q0.09375 0.3125 0.09375 0.71875q0 0.34375 -0.078125 0.609375q-0.09375 0.265625 -0.328125 0.453125q-0.21875 0.171875 -0.59375 0.265625q-0.375 0.09375 -0.953125 0.09375l-4.203125 0l0 1.203125l4.1875 0q0.796875 0 1.359375 -0.171875q0.5625 -0.171875 0.921875 -0.484375q0.359375 -0.328125 0.53125 -0.765625q0.171875 -0.453125 0.171875 -1.015625q0 -0.6875 -0.28125 -1.203125q-0.296875 -0.53125 -0.8125 -0.890625l0.96875 -0.0625zm0.125 -6.482559q0 -1.015625 -0.40625 -1.71875q-0.421875 -0.703125 -0.953125 -1.046875l-0.5625 0.734375q0.421875 0.328125 0.6875 0.828125q0.25 0.5 0.25 1.140625q0 0.5 -0.171875 0.90625q-0.1875 0.390625 -0.5 0.671875q-0.296875 0.28125 -0.6875 0.453125q-0.390625 0.15625 -0.90625 0.203125l-0.046875 0l0 -5.03125l-0.546875 0q-0.734375 0 -1.359375 0.1875q-0.640625 0.1875 -1.109375 0.5625q-0.453125 0.375 -0.71875 0.953125q-0.265625 0.5625 -0.265625 1.3125q0 0.609375 0.25 1.1875q0.25 0.578125 0.703125 1.03125q0.46875 0.453125 1.140625 0.734375q0.671875 0.265625 1.53125 0.265625l0.265625 0q0.75 0 1.375 -0.25q0.625 -0.25 1.078125 -0.6875q0.453125 -0.453125 0.703125 -1.0625q0.25 -0.625 0.25 -1.375zm-6.3125 0.15625q0 -0.453125 0.171875 -0.78125q0.171875 -0.34375 0.4375 -0.5625q0.28125 -0.21875 0.65625 -0.34375q0.375 -0.125 0.703125 -0.125l0.046875 0l0 3.78125q-0.484375 -0.0625 -0.859375 -0.234375q-0.375 -0.1875 -0.625 -0.453125q-0.265625 -0.265625 -0.390625 -0.578125q-0.140625 -0.328125 -0.140625 -0.703125zm-2.5625 -7.888809l0 1.21875l1.703125 0l0 1.84375l0.9375 0l0 -1.84375l3.828125 0q0.640625 0 1.109375 -0.171875q0.453125 -0.1875 0.75 -0.484375q0.28125 -0.296875 0.421875 -0.703125q0.125 -0.40625 0.125 -0.875q0 -0.28125 -0.03125 -0.5625q-0.015625 -0.28125 -0.0625 -0.53125q-0.046875 -0.265625 -0.109375 -0.46875q-0.078125 -0.21875 -0.171875 -0.375l-0.84375 0.171875q0.015625 0.109375 0.0625 0.28125q0.03125 0.171875 0.0625 0.375q0.03125 0.203125 0.0625 0.40625q0.015625 0.203125 0.015625 0.40625q0 0.265625 -0.0625 0.5q-0.0625 0.234375 -0.234375 0.421875q-0.15625 0.1875 -0.421875 0.296875q-0.265625 0.09375 -0.671875 0.09375l-3.828125 0l0 -2.6875l-0.9375 0l0 2.6875l-1.703125 0zm5.171875 -4.810684l0.140625 0q0.75 0 1.40625 -0.21875q0.65625 -0.21875 1.140625 -0.640625q0.46875 -0.40625 0.75 -1.0q0.265625 -0.59375 0.265625 -1.34375q0 -0.75 -0.265625 -1.328125q-0.28125 -0.59375 -0.75 -1.015625q-0.484375 -0.40625 -1.140625 -0.625q-0.65625 -0.234375 -1.40625 -0.234375l-0.140625 0q-0.765625 0 -1.421875 0.234375q-0.65625 0.21875 -1.140625 0.625q-0.484375 0.421875 -0.75 1.015625q-0.28125 0.59375 -0.28125 1.34375q0 0.734375 0.28125 1.328125q0.265625 0.59375 0.75 1.0q0.484375 0.421875 1.140625 0.640625q0.65625 0.21875 1.421875 0.21875zm0.140625 -1.203125l-0.140625 0q-0.515625 0 -0.984375 -0.125q-0.484375 -0.125 -0.84375 -0.375q-0.359375 -0.25 -0.5625 -0.609375q-0.21875 -0.375 -0.21875 -0.875q0 -0.5 0.21875 -0.875q0.203125 -0.375 0.5625 -0.640625q0.359375 -0.234375 0.84375 -0.359375q0.46875 -0.140625 0.984375 -0.140625l0.140625 0q0.515625 0 0.984375 0.125q0.46875 0.125 0.828125 0.375q0.359375 0.25 0.578125 0.625q0.203125 0.375 0.203125 0.875q0 0.5 -0.203125 0.875q-0.21875 0.375 -0.578125 0.625q-0.359375 0.25 -0.828125 0.375q-0.46875 0.125 -0.984375 0.125zm-0.140625 -6.795059l0.140625 0q0.75 0 1.40625 -0.21875q0.65625 -0.21875 1.140625 -0.640625q0.46875 -0.40625 0.75 -1.0q0.265625 -0.59375 0.265625 -1.34375q0 -0.75 -0.265625 -1.328125q-0.28125 -0.59375 -0.75 -1.015625q-0.484375 -0.40625 -1.140625 -0.625q-0.65625 -0.234375 -1.40625 -0.234375l-0.140625 0q-0.765625 0 -1.421875 0.234375q-0.65625 0.21875 -1.140625 0.625q-0.484375 0.421875 -0.75 1.015625q-0.28125 0.59375 -0.28125 1.34375q0 0.734375 0.28125 1.328125q0.265625 0.59375 0.75 1.0q0.484375 0.421875 1.140625 0.640625q0.65625 0.21875 1.421875 0.21875zm0.140625 -1.203125l-0.140625 0q-0.515625 0 -0.984375 -0.125q-0.484375 -0.125 -0.84375 -0.375q-0.359375 -0.25 -0.5625 -0.609375q-0.21875 -0.375 -0.21875 -0.875q0 -0.5 0.21875 -0.875q0.203125 -0.375 0.5625 -0.640625q0.359375 -0.234375 0.84375 -0.359375q0.46875 -0.140625 0.984375 -0.140625l0.140625 0q0.515625 0 0.984375 0.125q0.46875 0.125 0.828125 0.375q0.359375 0.25 0.578125 0.625q0.203125 0.375 0.203125 0.875q0 0.5 -0.203125 0.875q-0.21875 0.375 -0.578125 0.625q-0.359375 0.25 -0.828125 0.375q-0.46875 0.125 -0.984375 0.125zm-5.3125 -9.982559l0 1.21875l1.703125 0l0 1.84375l0.9375 0l0 -1.84375l3.828125 0q0.640625 0 1.109375 -0.171875q0.453125 -0.1875 0.75 -0.484375q0.28125 -0.296875 0.421875 -0.703125q0.125 -0.40625 0.125 -0.875q0 -0.28125 -0.03125 -0.5625q-0.015625 -0.28125 -0.0625 -0.53125q-0.046875 -0.265625 -0.109375 -0.46875q-0.078125 -0.21875 -0.171875 -0.375l-0.84375 0.171875q0.015625 0.109375 0.0625 0.28125q0.03125 0.171875 0.0625 0.375q0.03125 0.203125 0.0625 0.40625q0.015625 0.203125 0.015625 0.40625q0 0.265625 -0.0625 0.5q-0.0625 0.234375 -0.234375 0.421875q-0.15625 0.1875 -0.421875 0.296875q-0.265625 0.09375 -0.671875 0.09375l-3.828125 0l0 -2.6875l-0.9375 0l0 2.6875l-1.703125 0zm2.75 -6.357559l-4.0 0l0 1.21875l10.0 0l0 -1.21875l-5.109375 0q-0.21875 -0.125 -0.390625 -0.28125q-0.171875 -0.171875 -0.296875 -0.375q-0.171875 -0.234375 -0.265625 -0.53125q-0.09375 -0.296875 -0.09375 -0.625q0 -0.390625 0.125 -0.6875q0.109375 -0.3125 0.328125 -0.515625q0.203125 -0.1875 0.53125 -0.28125q0.3125 -0.109375 0.734375 -0.109375l4.4375 0l0 -1.203125l-4.4375 0q-0.703125 0 -1.21875 0.171875q-0.515625 0.171875 -0.859375 0.5q-0.34375 0.3125 -0.5 0.765625q-0.15625 0.453125 -0.15625 1.0q0 0.421875 0.125 0.796875q0.109375 0.375 0.34375 0.6875q0.140625 0.203125 0.328125 0.375q0.171875 0.171875 0.375 0.3125zm-2.453125 -21.168243l-1.015625 0l0 7.015625l1.015625 0l0 -2.921875l8.453125 0l0 -1.171875l-8.453125 0l0 -2.921875zm8.578125 -4.732559q0 -1.015625 -0.40625 -1.71875q-0.421875 -0.703125 -0.953125 -1.046875l-0.5625 0.734375q0.421875 0.328125 0.6875 0.828125q0.25 0.5 0.25 1.140625q0 0.5 -0.171875 0.90625q-0.1875 0.390625 -0.5 0.671875q-0.296875 0.28125 -0.6875 0.453125q-0.390625 0.15625 -0.90625 0.203125l-0.046875 0l0 -5.03125l-0.546875 0q-0.734375 0 -1.359375 0.1875q-0.640625 0.1875 -1.109375 0.5625q-0.453125 0.375 -0.71875 0.953125q-0.265625 0.5625 -0.265625 1.3125q0 0.609375 0.25 1.1875q0.25 0.578125 0.703125 1.03125q0.46875 0.453125 1.140625 0.734375q0.671875 0.265625 1.53125 0.265625l0.265625 0q0.75 0 1.375 -0.25q0.625 -0.25 1.078125 -0.6875q0.453125 -0.453125 0.703125 -1.0625q0.25 -0.625 0.25 -1.375zm-6.3125 0.15625q0 -0.453125 0.171875 -0.78125q0.171875 -0.34375 0.4375 -0.5625q0.28125 -0.21875 0.65625 -0.34375q0.375 -0.125 0.703125 -0.125l0.046875 0l0 3.78125q-0.484375 -0.0625 -0.859375 -0.234375q-0.375 -0.1875 -0.625 -0.453125q-0.265625 -0.265625 -0.390625 -0.578125q-0.140625 -0.328125 -0.140625 -0.703125zm4.3125 -9.716934q0.171875 0 0.328125 0.0625q0.140625 0.0625 0.265625 0.1875q0.203125 0.203125 0.328125 0.5625q0.109375 0.359375 0.109375 0.84375q0 0.296875 -0.0625 0.609375q-0.0625 0.3125 -0.21875 0.578125q-0.15625 0.25 -0.40625 0.421875q-0.265625 0.171875 -0.640625 0.203125l0 1.203125q0.453125 0 0.875 -0.203125q0.40625 -0.203125 0.71875 -0.59375q0.328125 -0.390625 0.515625 -0.9375q0.1875 -0.5625 0.1875 -1.28125q0 -0.625 -0.140625 -1.15625q-0.15625 -0.53125 -0.421875 -0.90625q-0.28125 -0.375 -0.65625 -0.578125q-0.390625 -0.21875 -0.859375 -0.21875q-0.4375 0 -0.765625 0.1875q-0.328125 0.1875 -0.59375 0.53125q-0.234375 0.359375 -0.40625 0.875q-0.1875 0.515625 -0.328125 1.15625q-0.09375 0.5 -0.203125 0.828125q-0.109375 0.3125 -0.234375 0.5q-0.125 0.203125 -0.28125 0.28125q-0.171875 0.078125 -0.375 0.078125q-0.203125 0 -0.390625 -0.09375q-0.203125 -0.109375 -0.34375 -0.296875q-0.140625 -0.1875 -0.21875 -0.46875q-0.09375 -0.296875 -0.09375 -0.6875q0 -0.375 0.109375 -0.671875q0.109375 -0.296875 0.265625 -0.5q0.171875 -0.203125 0.390625 -0.3125q0.21875 -0.125 0.453125 -0.125l0 -1.203125q-0.46875 0 -0.859375 0.203125q-0.40625 0.1875 -0.703125 0.546875q-0.296875 0.375 -0.46875 0.890625q-0.171875 0.515625 -0.171875 1.171875q0 0.609375 0.171875 1.109375q0.15625 0.5 0.4375 0.875q0.28125 0.359375 0.65625 0.5625q0.375 0.203125 0.796875 0.203125q0.4375 0 0.765625 -0.1875q0.328125 -0.203125 0.5625 -0.5625q0.25 -0.359375 0.4375 -0.84375q0.171875 -0.5 0.296875 -1.109375q0.09375 -0.5 0.21875 -0.828125q0.109375 -0.328125 0.25 -0.53125q0.15625 -0.203125 0.328125 -0.28125q0.171875 -0.09375 0.375 -0.09375zm-6.875 -6.170059l0 1.21875l1.703125 0l0 1.84375l0.9375 0l0 -1.84375l3.828125 0q0.640625 0 1.109375 -0.171875q0.453125 -0.1875 0.75 -0.484375q0.28125 -0.296875 0.421875 -0.703125q0.125 -0.40625 0.125 -0.875q0 -0.28125 -0.03125 -0.5625q-0.015625 -0.28125 -0.0625 -0.53125q-0.046875 -0.265625 -0.109375 -0.46875q-0.078125 -0.21875 -0.171875 -0.375l-0.84375 0.171875q0.015625 0.109375 0.0625 0.28125q0.03125 0.171875 0.0625 0.375q0.03125 0.203125 0.0625 0.40625q0.015625 0.203125 0.015625 0.40625q0 0.265625 -0.0625 0.5q-0.0625 0.234375 -0.234375 0.421875q-0.15625 0.1875 -0.421875 0.296875q-0.265625 0.09375 -0.671875 0.09375l-3.828125 0l0 -2.6875l-0.9375 0l0 2.6875l-1.703125 0z" fill-rule="nonzero"/><path fill="#ffffff" d="m312.292 238.36475q0.390625 0 0.671875 0.171875q0.28125 0.171875 0.46875 0.4375q0.1875 0.265625 0.28125 0.609375q0.078125 0.34375 0.078125 0.6875q0 0.453125 -0.109375 0.828125q-0.125 0.359375 -0.375 0.65625q-0.234375 0.28125 -0.578125 0.46875q-0.34375 0.171875 -0.78125 0.234375l0 1.234375q0.609375 -0.015625 1.109375 -0.265625q0.5 -0.25 0.875 -0.6875q0.421875 -0.484375 0.65625 -1.125q0.21875 -0.65625 0.21875 -1.34375q0 -0.5625 -0.15625 -1.125q-0.15625 -0.578125 -0.46875 -1.015625q-0.3125 -0.453125 -0.78125 -0.734375q-0.484375 -0.28125 -1.125 -0.28125q-0.640625 0 -1.109375 0.265625q-0.484375 0.265625 -0.8125 0.6875q-0.359375 0.4375 -0.59375 0.96875q-0.234375 0.515625 -0.390625 1.046875q-0.109375 0.328125 -0.234375 0.6875q-0.125 0.359375 -0.328125 0.65625q-0.1875 0.3125 -0.46875 0.515625q-0.28125 0.203125 -0.703125 0.21875q-0.375 0 -0.65625 -0.15625q-0.28125 -0.15625 -0.484375 -0.421875q-0.1875 -0.25 -0.28125 -0.578125q-0.109375 -0.328125 -0.109375 -0.671875q0 -0.4375 0.140625 -0.765625q0.125 -0.34375 0.375 -0.59375q0.234375 -0.25 0.578125 -0.390625q0.328125 -0.15625 0.734375 -0.203125l0 -1.25q-0.65625 0.015625 -1.171875 0.28125q-0.53125 0.265625 -0.90625 0.71875q-0.375 0.4375 -0.578125 1.015625q-0.203125 0.5625 -0.203125 1.1875q0 0.5625 0.171875 1.125q0.171875 0.546875 0.515625 0.96875q0.328125 0.4375 0.8125 0.71875q0.46875 0.265625 1.09375 0.265625q0.609375 0 1.0625 -0.265625q0.453125 -0.28125 0.78125 -0.703125q0.328125 -0.421875 0.5625 -0.9375q0.21875 -0.515625 0.390625 -1.015625q0.109375 -0.359375 0.25 -0.71875q0.125 -0.375 0.328125 -0.6875q0.21875 -0.3125 0.515625 -0.515625q0.296875 -0.203125 0.734375 -0.203125zm2.515625 -6.154434q0 -1.015625 -0.40625 -1.71875q-0.421875 -0.703125 -0.953125 -1.046875l-0.5625 0.734375q0.421875 0.328125 0.6875 0.828125q0.25 0.5 0.25 1.140625q0 0.5 -0.171875 0.90625q-0.1875 0.390625 -0.5 0.671875q-0.296875 0.28125 -0.6875 0.453125q-0.390625 0.15625 -0.90625 0.203125l-0.046875 0l0 -5.03125l-0.546875 0q-0.734375 0 -1.359375 0.1875q-0.640625 0.1875 -1.109375 0.5625q-0.453125 0.375 -0.71875 0.953125q-0.265625 0.5625 -0.265625 1.3125q0 0.609375 0.25 1.1875q0.25 0.578125 0.703125 1.03125q0.46875 0.453125 1.140625 0.734375q0.671875 0.265625 1.53125 0.265625l0.265625 0q0.75 0 1.375 -0.25q0.625 -0.25 1.078125 -0.6875q0.453125 -0.453125 0.703125 -1.0625q0.25 -0.625 0.25 -1.375zm-6.3125 0.15625q0 -0.453125 0.171875 -0.78125q0.171875 -0.34375 0.4375 -0.5625q0.28125 -0.21875 0.65625 -0.34375q0.375 -0.125 0.703125 -0.125l0.046875 0l0 3.78125q-0.484375 -0.0625 -0.859375 -0.234375q-0.375 -0.1875 -0.625 -0.453125q-0.265625 -0.265625 -0.390625 -0.578125q-0.140625 -0.328125 -0.140625 -0.703125zm-0.984375 -9.654434q0 0.765625 0.34375 1.375q0.328125 0.59375 0.90625 1.03125l-0.171875 0l-0.953125 0.0625l0 1.140625l7.046875 0l0 -1.203125l-4.515625 0q-0.328125 -0.125 -0.59375 -0.296875q-0.265625 -0.1875 -0.4375 -0.421875q-0.21875 -0.265625 -0.3125 -0.625q-0.109375 -0.359375 -0.109375 -0.8125q0 -0.34375 0.03125 -0.65625q0.03125 -0.3125 0.109375 -0.65625l-1.171875 -0.171875q-0.078125 0.1875 -0.125 0.546875q-0.046875 0.359375 -0.046875 0.6875zm7.171875 -5.779434l0 -0.921875l-7.046875 -2.875l0 1.234375l5.3125 1.96875l0.4375 0.125l-0.4375 0.109375l-5.3125 2.015625l0 1.234375l7.046875 -2.890625zm0.125 -8.716934q0 -1.015625 -0.40625 -1.71875q-0.421875 -0.703125 -0.953125 -1.046875l-0.5625 0.734375q0.421875 0.328125 0.6875 0.828125q0.25 0.5 0.25 1.140625q0 0.5 -0.171875 0.90625q-0.1875 0.390625 -0.5 0.671875q-0.296875 0.28125 -0.6875 0.453125q-0.390625 0.15625 -0.90625 0.203125l-0.046875 0l0 -5.03125l-0.546875 0q-0.734375 0 -1.359375 0.1875q-0.640625 0.1875 -1.109375 0.5625q-0.453125 0.375 -0.71875 0.953125q-0.265625 0.5625 -0.265625 1.3125q0 0.609375 0.25 1.1875q0.25 0.578125 0.703125 1.03125q0.46875 0.453125 1.140625 0.734375q0.671875 0.265625 1.53125 0.265625l0.265625 0q0.75 0 1.375 -0.25q0.625 -0.25 1.078125 -0.6875q0.453125 -0.453125 0.703125 -1.0625q0.25 -0.625 0.25 -1.375zm-6.3125 0.15625q0 -0.453125 0.171875 -0.78125q0.171875 -0.34375 0.4375 -0.5625q0.28125 -0.21875 0.65625 -0.34375q0.375 -0.125 0.703125 -0.125l0.046875 0l0 3.78125q-0.484375 -0.0625 -0.859375 -0.234375q-0.375 -0.1875 -0.625 -0.453125q-0.265625 -0.265625 -0.390625 -0.578125q-0.140625 -0.328125 -0.140625 -0.703125zm-0.984375 -9.654434q0 0.765625 0.34375 1.375q0.328125 0.59375 0.90625 1.03125l-0.171875 0l-0.953125 0.0625l0 1.140625l7.046875 0l0 -1.203125l-4.515625 0q-0.328125 -0.125 -0.59375 -0.296875q-0.265625 -0.1875 -0.4375 -0.421875q-0.21875 -0.265625 -0.3125 -0.625q-0.109375 -0.359375 -0.109375 -0.8125q0 -0.34375 0.03125 -0.65625q0.03125 -0.3125 0.109375 -0.65625l-1.171875 -0.171875q-0.078125 0.1875 -0.125 0.546875q-0.046875 0.359375 -0.046875 0.6875z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m261.3157 220.46394l-10.118713 0l0 42.83464l-19.928528 0" fill-rule="evenodd"/><path stroke="#8190a8" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m261.3157 220.46393l-10.118713 0l0 42.834656l-13.928543 0" fill-rule="evenodd"/><path fill="#8190a8" stroke="#8190a8" stroke-width="1.0" stroke-linecap="butt" d="m237.26845 261.64685l-4.538086 1.6517334l4.538086 1.6517334z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m518.68384 82.50656l-96.11792 0l0 137.95276l-96.10254 0" fill-rule="evenodd"/><path stroke="#4285f4" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m518.68384 82.50656l-96.11789 0l0 137.95276l-90.10257 0" fill-rule="evenodd"/><path fill="#4285f4" stroke="#4285f4" stroke-width="1.0" stroke-linecap="butt" d="m332.46338 218.80759l-4.538086 1.6517334l4.538086 1.6517334z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m422.87402 93.073494l-180.15749 0" fill-rule="evenodd"/><path stroke="#4285f4" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m422.87402 93.073494l-174.15749 0" fill-rule="evenodd"/><path fill="#4285f4" stroke="#4285f4" stroke-width="1.0" stroke-linecap="butt" d="m248.71654 91.42176l-4.538101 1.6517334l4.538101 1.6517258z" fill-rule="evenodd"/><path fill="#4285f4" d="m31.188988 322.9355l0 0c0 -4.3348083 3.5140572 -7.848877 7.8488693 -7.848877l195.82982 0c2.0816498 0 4.0780487 0.8269348 5.549988 2.2988892c1.4719543 1.4719543 2.2988892 3.4683228 2.2988892 5.549988l0 52.081787c0 4.3348083 -3.5140686 7.848877 -7.848877 7.848877l-195.82982 0c-4.334812 0 -7.8488693 -3.5140686 -7.8488693 -7.848877z" fill-rule="evenodd"/><path fill="#ffffff" d="m105.023445 334.2295l1.78125 3.546875l1.96875 0l0 -0.078125l-2.046875 -3.921875q0.390625 -0.171875 0.703125 -0.40625q0.328125 -0.25 0.546875 -0.578125q0.234375 -0.3125 0.34375 -0.71875q0.125 -0.40625 0.125 -0.921875q0 -0.703125 -0.25 -1.234375q-0.234375 -0.53125 -0.6875 -0.890625q-0.453125 -0.359375 -1.09375 -0.53125q-0.640625 -0.1875 -1.421875 -0.1875l-3.171875 0l0 9.46875l1.828125 0l0 -3.546875l1.375 0zm-1.375 -1.484375l0 -2.953125l1.34375 0q0.375 0 0.65625 0.09375q0.296875 0.078125 0.5 0.25q0.234375 0.1875 0.34375 0.484375q0.125 0.28125 0.125 0.65625q0 0.3125 -0.09375 0.578125q-0.09375 0.25 -0.265625 0.421875q-0.1875 0.234375 -0.515625 0.359375q-0.328125 0.109375 -0.75 0.109375l-1.34375 0zm5.982559 1.453125l0 0.125q0 0.78125 0.21875 1.4375q0.21875 0.65625 0.65625 1.125q0.421875 0.484375 1.03125 0.765625q0.625 0.265625 1.421875 0.265625q0.796875 0 1.40625 -0.265625q0.625 -0.28125 1.046875 -0.765625q0.421875 -0.46875 0.640625 -1.125q0.21875 -0.65625 0.21875 -1.4375l0 -0.125q0 -0.78125 -0.21875 -1.421875q-0.21875 -0.65625 -0.640625 -1.140625q-0.4375 -0.484375 -1.0625 -0.75q-0.609375 -0.28125 -1.40625 -0.28125q-0.78125 0 -1.40625 0.28125q-0.609375 0.265625 -1.03125 0.75q-0.4375 0.484375 -0.65625 1.140625q-0.21875 0.640625 -0.21875 1.421875zm1.8125 0.125l0 -0.125q0 -0.4375 0.078125 -0.8125q0.09375 -0.390625 0.265625 -0.6875q0.1875 -0.296875 0.46875 -0.453125q0.28125 -0.171875 0.6875 -0.171875q0.421875 0 0.703125 0.171875q0.28125 0.15625 0.46875 0.453125q0.171875 0.296875 0.25 0.6875q0.09375 0.375 0.09375 0.8125l0 0.125q0 0.453125 -0.09375 0.84375q-0.078125 0.375 -0.25 0.65625q-0.1875 0.296875 -0.46875 0.46875q-0.28125 0.171875 -0.6875 0.171875q-0.40625 0 -0.703125 -0.171875q-0.28125 -0.171875 -0.46875 -0.46875q-0.171875 -0.28125 -0.265625 -0.65625q-0.078125 -0.390625 -0.078125 -0.84375zm6.185684 -0.125l0 0.125q0 0.78125 0.21875 1.4375q0.21875 0.65625 0.65625 1.125q0.421875 0.484375 1.03125 0.765625q0.625 0.265625 1.421875 0.265625q0.796875 0 1.40625 -0.265625q0.625 -0.28125 1.046875 -0.765625q0.421875 -0.46875 0.640625 -1.125q0.21875 -0.65625 0.21875 -1.4375l0 -0.125q0 -0.78125 -0.21875 -1.421875q-0.21875 -0.65625 -0.640625 -1.140625q-0.4375 -0.484375 -1.0625 -0.75q-0.609375 -0.28125 -1.40625 -0.28125q-0.78125 0 -1.40625 0.28125q-0.609375 0.265625 -1.03125 0.75q-0.4375 0.484375 -0.65625 1.140625q-0.21875 0.640625 -0.21875 1.421875zm1.8125 0.125l0 -0.125q0 -0.4375 0.078125 -0.8125q0.09375 -0.390625 0.265625 -0.6875q0.1875 -0.296875 0.46875 -0.453125q0.28125 -0.171875 0.6875 -0.171875q0.421875 0 0.703125 0.171875q0.28125 0.15625 0.46875 0.453125q0.171875 0.296875 0.25 0.6875q0.09375 0.375 0.09375 0.8125l0 0.125q0 0.453125 -0.09375 0.84375q-0.078125 0.375 -0.25 0.65625q-0.1875 0.296875 -0.46875 0.46875q-0.28125 0.171875 -0.6875 0.171875q-0.40625 0 -0.703125 -0.171875q-0.28125 -0.171875 -0.46875 -0.46875q-0.171875 -0.28125 -0.265625 -0.65625q-0.078125 -0.390625 -0.078125 -0.84375zm9.748177 -5.3125l-1.8124924 0l0 1.71875l-1.609375 0l0 1.34375l1.609375 0l0 3.203125q0 0.6875 0.1875 1.1875q0.1875 0.5 0.5156174 0.8125q0.34375 0.328125 0.8125 0.484375q0.46875 0.15625 1.046875 0.15625q0.296875 0 0.609375 -0.03125q0.3125 -0.03125 0.59375 -0.078125q0.28125 -0.0625 0.53125 -0.140625q0.265625 -0.078125 0.453125 -0.1875l-0.171875 -1.25q-0.125 0.03125 -0.296875 0.078125q-0.171875 0.03125 -0.375 0.046875q-0.203125 0.03125 -0.421875 0.0625q-0.21875 0.015625 -0.421875 0.015625q-0.28125 0 -0.515625 -0.0625q-0.234375 -0.078125 -0.390625 -0.234375q-0.171875 -0.140625 -0.265625 -0.390625q-0.078125 -0.265625 -0.078125 -0.65625l0 -3.015625l2.625 0l0 -1.34375l-2.625 0l0 -1.71875zm7.795059 7.453125q-0.4375 0 -0.71875 -0.171875q-0.28125 -0.1875 -0.4375 -0.46875q-0.171875 -0.296875 -0.234375 -0.671875q-0.0625 -0.375 -0.0625 -0.796875l0 -0.1875q0 -0.40625 0.0625 -0.78125q0.0625 -0.375 0.234375 -0.671875q0.171875 -0.296875 0.4375 -0.46875q0.28125 -0.171875 0.71875 -0.171875q0.296875 0 0.53125 0.109375q0.25 0.09375 0.421875 0.25q0.1875 0.171875 0.265625 0.40625q0.09375 0.234375 0.09375 0.5l1.703125 0q0 -0.625 -0.21875 -1.125q-0.21875 -0.515625 -0.609375 -0.875q-0.40625 -0.34375 -0.96875 -0.53125q-0.546875 -0.203125 -1.203125 -0.203125q-0.8125 0 -1.421875 0.28125q-0.609375 0.28125 -1.03125 0.765625q-0.421875 0.46875 -0.625 1.125q-0.203125 0.640625 -0.203125 1.390625l0 0.1875q0 0.75 0.203125 1.40625q0.21875 0.640625 0.625 1.125q0.421875 0.46875 1.03125 0.75q0.625 0.28125 1.4375 0.28125q0.609375 0 1.15625 -0.1875q0.546875 -0.203125 0.953125 -0.53125q0.40625 -0.34375 0.640625 -0.8125q0.234375 -0.46875 0.234375 -1.015625l-1.703125 0q0 0.25 -0.109375 0.453125q-0.09375 0.203125 -0.265625 0.34375q-0.1875 0.140625 -0.4375 0.21875q-0.234375 0.078125 -0.5 0.078125zm9.279434 1.3125l1.84375 0l0 -0.109375q-0.140625 -0.265625 -0.21875 -0.640625q-0.0625 -0.375 -0.0625 -0.9375l0 -3.015625q0 -0.609375 -0.234375 -1.078125q-0.21875 -0.46875 -0.625 -0.765625q-0.40625 -0.3125 -0.953125 -0.46875q-0.546875 -0.15625 -1.1875 -0.15625q-0.71875 0 -1.265625 0.1875q-0.546875 0.171875 -0.921875 0.46875q-0.390625 0.3125 -0.59375 0.71875q-0.1875 0.40625 -0.1875 0.84375l1.8125 0q0 -0.1875 0.046875 -0.34375q0.0625 -0.15625 0.171875 -0.265625q0.140625 -0.125 0.34375 -0.1875q0.203125 -0.0625 0.5 -0.0625q0.3125 0 0.5625 0.078125q0.25 0.078125 0.40625 0.234375q0.15625 0.140625 0.234375 0.34375q0.078125 0.1875 0.078125 0.4375l0 0.421875l-1.015625 0q-0.765625 0 -1.375 0.140625q-0.609375 0.140625 -1.015625 0.40625q-0.453125 0.28125 -0.6875 0.734375q-0.21875 0.453125 -0.21875 1.046875q0 0.453125 0.171875 0.84375q0.1875 0.390625 0.515625 0.65625q0.328125 0.28125 0.78125 0.4375q0.453125 0.15625 0.984375 0.15625q0.34375 0 0.625 -0.0625q0.28125 -0.0625 0.53125 -0.171875q0.234375 -0.09375 0.421875 -0.234375q0.203125 -0.15625 0.34375 -0.3125q0.03125 0.1875 0.078125 0.359375q0.046875 0.171875 0.109375 0.296875zm-1.71875 -1.265625q-0.25 0 -0.453125 -0.0625q-0.1875 -0.0625 -0.3125 -0.171875q-0.140625 -0.109375 -0.203125 -0.265625q-0.0625 -0.15625 -0.0625 -0.34375q0 -0.25 0.078125 -0.453125q0.09375 -0.203125 0.28125 -0.359375q0.203125 -0.140625 0.5 -0.21875q0.296875 -0.078125 0.71875 -0.078125l0.921875 0l0 1.203125q-0.078125 0.140625 -0.21875 0.28125q-0.125 0.125 -0.328125 0.234375q-0.1875 0.09375 -0.421875 0.171875q-0.234375 0.0625 -0.5 0.0625zm5.326309 1.265625l1.8125 0l0 -5.0q0.09375 -0.140625 0.203125 -0.25q0.109375 -0.125 0.25 -0.21875q0.15625 -0.109375 0.375 -0.171875q0.21875 -0.0625 0.484375 -0.0625q0.3125 0 0.5625 0.0625q0.25 0.0625 0.421875 0.21875q0.171875 0.15625 0.265625 0.4375q0.09375 0.265625 0.09375 0.671875l0 4.3125l1.8125 0l0 -4.328125q0 -0.78125 -0.1875 -1.3125q-0.171875 -0.53125 -0.484375 -0.875q-0.328125 -0.34375 -0.78125 -0.5q-0.4375 -0.15625 -0.96875 -0.15625q-0.421875 0 -0.796875 0.125q-0.359375 0.109375 -0.671875 0.328125q-0.1875 0.125 -0.34375 0.296875q-0.15625 0.15625 -0.296875 0.359375l-0.109375 -0.984375l-1.640625 0l0 7.046875zm12.388809 0l1.84375 0l0 -0.109375q-0.140625 -0.265625 -0.21875 -0.640625q-0.0625 -0.375 -0.0625 -0.9375l0 -3.015625q0 -0.609375 -0.234375 -1.078125q-0.21875 -0.46875 -0.625 -0.765625q-0.40625 -0.3125 -0.953125 -0.46875q-0.546875 -0.15625 -1.1875 -0.15625q-0.71875 0 -1.265625 0.1875q-0.546875 0.171875 -0.921875 0.46875q-0.390625 0.3125 -0.59375 0.71875q-0.1875 0.40625 -0.1875 0.84375l1.8125 0q0 -0.1875 0.046875 -0.34375q0.0625 -0.15625 0.171875 -0.265625q0.140625 -0.125 0.34375 -0.1875q0.203125 -0.0625 0.5 -0.0625q0.3125 0 0.5625 0.078125q0.25 0.078125 0.40625 0.234375q0.15625 0.140625 0.234375 0.34375q0.078125 0.1875 0.078125 0.4375l0 0.421875l-1.015625 0q-0.765625 0 -1.375 0.140625q-0.609375 0.140625 -1.015625 0.40625q-0.453125 0.28125 -0.6875 0.734375q-0.21875 0.453125 -0.21875 1.046875q0 0.453125 0.171875 0.84375q0.1875 0.390625 0.515625 0.65625q0.328125 0.28125 0.78125 0.4375q0.453125 0.15625 0.984375 0.15625q0.34375 0 0.625 -0.0625q0.28125 -0.0625 0.53125 -0.171875q0.234375 -0.09375 0.421875 -0.234375q0.203125 -0.15625 0.34375 -0.3125q0.03125 0.1875 0.078125 0.359375q0.046875 0.171875 0.109375 0.296875zm-1.71875 -1.265625q-0.25 0 -0.453125 -0.0625q-0.1875 -0.0625 -0.3125 -0.171875q-0.140625 -0.109375 -0.203125 -0.265625q-0.0625 -0.15625 -0.0625 -0.34375q0 -0.25 0.078125 -0.453125q0.09375 -0.203125 0.28125 -0.359375q0.203125 -0.140625 0.5 -0.21875q0.296875 -0.078125 0.71875 -0.078125l0.921875 0l0 1.203125q-0.078125 0.140625 -0.21875 0.28125q-0.125 0.125 -0.328125 0.234375q-0.1875 0.09375 -0.421875 0.171875q-0.234375 0.0625 -0.5 0.0625zm5.701309 -8.734375l0 1.484375l2.109375 0l0 7.046875l-2.109375 0l0 1.46875l5.953125 0l0 -1.46875l-2.015625 0l0 -8.53125l-3.9375 0z" fill-rule="nonzero"/><path fill="#ffffff" d="m72.42133 353.77637l1.046875 0l2.984375 -9.46875l-1.28125 0l-2.09375 7.046875l-0.140625 0.484375l-0.140625 -0.46875l-2.078125 -7.0625l-1.28125 0l2.984375 9.46875zm5.873184 -7.046875l0 1.046875l2.390625 0l0 4.953125l-2.390625 0l0 1.046875l5.890625 0l0 -1.046875l-2.296875 0l0 -6.0l-3.59375 0zm2.234375 -1.84375q0 0.296875 0.171875 0.5q0.1875 0.1875 0.546875 0.1875q0.359375 0 0.53125 -0.1875q0.1875 -0.203125 0.1875 -0.5q0 -0.15625 -0.046875 -0.296875q-0.046875 -0.140625 -0.15625 -0.234375q-0.078125 -0.078125 -0.21875 -0.125q-0.125 -0.046875 -0.296875 -0.046875q-0.171875 0 -0.3125 0.046875q-0.125 0.046875 -0.203125 0.125q-0.109375 0.109375 -0.15625 0.25q-0.046875 0.125 -0.046875 0.28125zm10.185684 1.71875q-0.765625 0 -1.375 0.34375q-0.59375 0.328125 -1.03125 0.90625l0 -0.171875l-0.0625 -0.953125l-1.140625 0l0 7.046875l1.203125 0l0 -4.515625q0.125 -0.328125 0.296875 -0.59375q0.1875 -0.265625 0.421875 -0.4375q0.265625 -0.21875 0.625 -0.3125q0.359375 -0.109375 0.8125 -0.109375q0.34375 0 0.65625 0.03125q0.3125 0.03125 0.65625 0.109375l0.171875 -1.171875q-0.1875 -0.078125 -0.546875 -0.125q-0.359375 -0.046875 -0.6875 -0.046875zm6.232559 -1.578125l-1.21875 0l0 1.703125l-1.84375 0l0 0.9375l1.84375 0l0 3.828125q0 0.640625 0.171875 1.109375q0.1875 0.453125 0.484375 0.75q0.296875 0.28125 0.703125 0.421875q0.40625 0.125 0.875 0.125q0.28125 0 0.5625 -0.03125q0.28125 -0.015625 0.53125 -0.0625q0.265625 -0.046875 0.46875 -0.109375q0.21875 -0.078125 0.375 -0.171875l-0.171875 -0.84375q-0.109375 0.015625 -0.28125 0.0625q-0.171875 0.03125 -0.375 0.0625q-0.203125 0.03125 -0.40625 0.0625q-0.203125 0.015625 -0.40625 0.015625q-0.265625 0 -0.5 -0.0625q-0.234375 -0.0625 -0.421875 -0.234375q-0.1875 -0.15625 -0.296875 -0.421875q-0.09375 -0.265625 -0.09375 -0.671875l0 -3.828125l2.6875 0l0 -0.9375l-2.6875 0l0 -1.703125zm9.779434 8.75l1.09375 0l0 -7.046875l-1.203125 0l0 5.0625q-0.09375 0.21875 -0.25 0.421875q-0.140625 0.1875 -0.34375 0.3125q-0.234375 0.171875 -0.546875 0.265625q-0.3125 0.09375 -0.71875 0.09375q-0.34375 0 -0.609375 -0.078125q-0.265625 -0.09375 -0.453125 -0.328125q-0.171875 -0.21875 -0.265625 -0.59375q-0.09375 -0.375 -0.09375 -0.953125l0 -4.203125l-1.203125 0l0 4.1875q0 0.796875 0.171875 1.359375q0.171875 0.5625 0.484375 0.921875q0.328125 0.359375 0.765625 0.53125q0.453125 0.171875 1.015625 0.171875q0.6875 0 1.203125 -0.28125q0.53125 -0.296875 0.890625 -0.8125l0.0625 0.96875zm7.998184 0l1.25 0l0 -0.109375q-0.125 -0.28125 -0.1875 -0.671875q-0.0625 -0.40625 -0.0625 -0.75l0 -3.28125q0 -0.59375 -0.21875 -1.03125q-0.203125 -0.4375 -0.578125 -0.75q-0.375 -0.28125 -0.890625 -0.421875q-0.515625 -0.15625 -1.109375 -0.15625q-0.65625 0 -1.1875 0.1875q-0.515625 0.171875 -0.875 0.46875q-0.359375 0.296875 -0.546875 0.671875q-0.1875 0.375 -0.203125 0.75l1.21875 0q0 -0.21875 0.09375 -0.421875q0.109375 -0.203125 0.3125 -0.359375q0.1875 -0.140625 0.46875 -0.234375q0.296875 -0.09375 0.640625 -0.09375q0.390625 0 0.703125 0.109375q0.3125 0.09375 0.515625 0.265625q0.21875 0.171875 0.328125 0.4375q0.125 0.25 0.125 0.5625l0 0.5625l-1.3125 0q-0.734375 0 -1.328125 0.140625q-0.59375 0.140625 -1.015625 0.421875q-0.421875 0.296875 -0.65625 0.734375q-0.234375 0.4375 -0.234375 1.015625q0 0.4375 0.171875 0.828125q0.171875 0.375 0.484375 0.65625q0.3125 0.28125 0.765625 0.4375q0.453125 0.15625 1.015625 0.15625q0.34375 0 0.640625 -0.078125q0.3125 -0.0625 0.59375 -0.1875q0.265625 -0.125 0.484375 -0.28125q0.234375 -0.15625 0.40625 -0.34375q0.03125 0.21875 0.0625 0.421875q0.046875 0.203125 0.125 0.34375zm-2.140625 -0.921875q-0.34375 0 -0.609375 -0.078125q-0.265625 -0.09375 -0.4375 -0.265625q-0.1875 -0.15625 -0.28125 -0.375q-0.078125 -0.21875 -0.078125 -0.484375q0 -0.265625 0.09375 -0.484375q0.109375 -0.21875 0.296875 -0.375q0.28125 -0.21875 0.734375 -0.328125q0.46875 -0.109375 1.09375 -0.109375l1.125 0l0 1.4375q-0.109375 0.203125 -0.296875 0.390625q-0.171875 0.1875 -0.421875 0.34375q-0.25 0.15625 -0.5625 0.25q-0.296875 0.078125 -0.65625 0.078125zm5.701309 -9.078125l0 1.046875l2.390625 0l0 7.90625l-2.390625 0l0 1.046875l5.890625 0l0 -1.046875l-2.296875 0l0 -8.953125l-3.59375 0zm15.793236 10.0l3.03125 0q0.59375 0 1.15625 -0.1875q0.578125 -0.1875 1.015625 -0.53125q0.4375 -0.328125 0.6875 -0.828125q0.265625 -0.515625 0.265625 -1.1875q0 -0.421875 -0.125 -0.78125q-0.125 -0.375 -0.359375 -0.65625q-0.203125 -0.265625 -0.546875 -0.484375q-0.328125 -0.234375 -0.6875 -0.3125l0 -0.015625q0.34375 -0.15625 0.578125 -0.328125q0.25 -0.171875 0.453125 -0.421875q0.203125 -0.234375 0.3125 -0.53125q0.109375 -0.3125 0.125 -0.6875q0 -0.65625 -0.265625 -1.125q-0.25 -0.484375 -0.6875 -0.796875q-0.4375 -0.296875 -1.0 -0.4375q-0.5625 -0.15625 -1.140625 -0.15625l-2.8125 0l0 9.46875zm1.203125 -4.4375l1.921875 0q0.390625 0.015625 0.71875 0.140625q0.328125 0.109375 0.578125 0.328125q0.25 0.21875 0.390625 0.53125q0.140625 0.3125 0.125 0.71875q0 0.390625 -0.15625 0.703125q-0.140625 0.3125 -0.40625 0.53125q-0.265625 0.21875 -0.609375 0.34375q-0.328125 0.109375 -0.703125 0.125l-1.859375 0l0 -3.421875zm0 -1.0l0 -3.015625l1.640625 0q0.359375 0.015625 0.6875 0.109375q0.34375 0.078125 0.609375 0.25q0.25 0.1875 0.390625 0.46875q0.15625 0.265625 0.15625 0.671875q0 0.359375 -0.15625 0.640625q-0.15625 0.28125 -0.40625 0.46875q-0.25 0.203125 -0.578125 0.3125q-0.328125 0.09375 -0.65625 0.09375l-1.6875 0zm6.998184 -4.5625l0 1.046875l2.390625 0l0 7.90625l-2.390625 0l0 1.046875l5.890625 0l0 -1.046875l-2.296875 0l0 -8.953125l-3.59375 0zm12.435684 10.0l1.09375 0l0 -7.046875l-1.203125 0l0 5.0625q-0.09375 0.21875 -0.25 0.421875q-0.140625 0.1875 -0.34375 0.3125q-0.234375 0.171875 -0.546875 0.265625q-0.3125 0.09375 -0.71875 0.09375q-0.34375 0 -0.609375 -0.078125q-0.265625 -0.09375 -0.453125 -0.328125q-0.171875 -0.21875 -0.265625 -0.59375q-0.09375 -0.375 -0.09375 -0.953125l0 -4.203125l-1.203125 0l0 4.1875q0 0.796875 0.171875 1.359375q0.171875 0.5625 0.484375 0.921875q0.328125 0.359375 0.765625 0.53125q0.453125 0.171875 1.015625 0.171875q0.6875 0 1.203125 -0.28125q0.53125 -0.296875 0.890625 -0.8125l0.0625 0.96875zm6.482559 0.125q1.015625 0 1.71875 -0.40625q0.703125 -0.421875 1.046875 -0.953125l-0.734375 -0.5625q-0.328125 0.421875 -0.828125 0.6875q-0.5 0.25 -1.140625 0.25q-0.5 0 -0.90625 -0.171875q-0.390625 -0.1875 -0.671875 -0.5q-0.28125 -0.296875 -0.453125 -0.6875q-0.15625 -0.390625 -0.203125 -0.90625l0 -0.046875l5.03125 0l0 -0.546875q0 -0.734375 -0.1875 -1.359375q-0.1875 -0.640625 -0.5625 -1.109375q-0.375 -0.453125 -0.953125 -0.71875q-0.5625 -0.265625 -1.3125 -0.265625q-0.609375 0 -1.1875 0.25q-0.578125 0.25 -1.03125 0.703125q-0.453125 0.46875 -0.734375 1.140625q-0.265625 0.671875 -0.265625 1.53125l0 0.265625q0 0.75 0.25 1.375q0.25 0.625 0.6875 1.078125q0.453125 0.453125 1.0625 0.703125q0.625 0.25 1.375 0.25zm-0.15625 -6.3125q0.453125 0 0.78125 0.171875q0.34375 0.171875 0.5625 0.4375q0.21875 0.28125 0.34375 0.65625q0.125 0.375 0.125 0.703125l0 0.046875l-3.78125 0q0.0625 -0.484375 0.234375 -0.859375q0.1875 -0.375 0.453125 -0.625q0.265625 -0.265625 0.578125 -0.390625q0.328125 -0.140625 0.703125 -0.140625zm7.888809 -2.5625l-1.21875 0l0 1.703125l-1.84375 0l0 0.9375l1.84375 0l0 3.828125q0 0.640625 0.171875 1.109375q0.1875 0.453125 0.484375 0.75q0.296875 0.28125 0.703125 0.421875q0.40625 0.125 0.875 0.125q0.28125 0 0.5625 -0.03125q0.28125 -0.015625 0.53125 -0.0625q0.265625 -0.046875 0.46875 -0.109375q0.21875 -0.078125 0.375 -0.171875l-0.171875 -0.84375q-0.109375 0.015625 -0.28125 0.0625q-0.171875 0.03125 -0.375 0.0625q-0.203125 0.03125 -0.40625 0.0625q-0.203125 0.015625 -0.40625 0.015625q-0.265625 0 -0.5 -0.0625q-0.234375 -0.0625 -0.421875 -0.234375q-0.1875 -0.15625 -0.296875 -0.421875q-0.09375 -0.265625 -0.09375 -0.671875l0 -3.828125l2.6875 0l0 -0.9375l-2.6875 0l0 -1.703125zm4.810684 5.171875l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.59375 0.265625 1.34375 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.328125 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.375 -0.21875 0.875 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.875 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm6.795059 -0.140625l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.59375 0.265625 1.34375 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.328125 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.375 -0.21875 0.875 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.875 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm9.982559 -5.3125l-1.21875 0l0 1.703125l-1.84375 0l0 0.9375l1.84375 0l0 3.828125q0 0.640625 0.171875 1.109375q0.1875 0.453125 0.484375 0.75q0.296875 0.28125 0.703125 0.421875q0.40625 0.125 0.875 0.125q0.28125 0 0.5625 -0.03125q0.28125 -0.015625 0.53125 -0.0625q0.265625 -0.046875 0.46875 -0.109375q0.21875 -0.078125 0.375 -0.171875l-0.171875 -0.84375q-0.109375 0.015625 -0.28125 0.0625q-0.171875 0.03125 -0.375 0.0625q-0.203125 0.03125 -0.40625 0.0625q-0.203125 0.015625 -0.40625 0.015625q-0.265625 0 -0.5 -0.0625q-0.234375 -0.0625 -0.421875 -0.234375q-0.1875 -0.15625 -0.296875 -0.421875q-0.09375 -0.265625 -0.09375 -0.671875l0 -3.828125l2.6875 0l0 -0.9375l-2.6875 0l0 -1.703125zm6.357559 2.75l0 -4.0l-1.21875 0l0 10.0l1.21875 0l0 -5.109375q0.125 -0.21875 0.28125 -0.390625q0.171875 -0.171875 0.375 -0.296875q0.234375 -0.171875 0.53125 -0.265625q0.296875 -0.09375 0.625 -0.09375q0.390625 0 0.6875 0.125q0.3125 0.109375 0.515625 0.328125q0.1875 0.203125 0.28125 0.53125q0.109375 0.3125 0.109375 0.734375l0 4.4375l1.203125 0l0 -4.4375q0 -0.703125 -0.171875 -1.21875q-0.171875 -0.515625 -0.5 -0.859375q-0.3125 -0.34375 -0.765625 -0.5q-0.453125 -0.15625 -1.0 -0.15625q-0.421875 0 -0.796875 0.125q-0.375 0.109375 -0.6875 0.34375q-0.203125 0.140625 -0.375 0.328125q-0.171875 0.171875 -0.3125 0.375z" fill-rule="nonzero"/><path fill="#ffffff" d="m104.22748 366.93262l-1.203125 0q-0.0625 0.421875 -0.203125 0.796875q-0.140625 0.359375 -0.375 0.625q-0.25 0.28125 -0.59375 0.4375q-0.34375 0.140625 -0.828125 0.140625q-0.4375 0 -0.765625 -0.140625q-0.3125 -0.140625 -0.5625 -0.390625q-0.234375 -0.234375 -0.390625 -0.546875q-0.15625 -0.328125 -0.25 -0.6875q-0.109375 -0.359375 -0.15625 -0.734375q-0.03125 -0.375 -0.03125 -0.734375l0 -1.328125q0 -0.359375 0.03125 -0.734375q0.046875 -0.375 0.15625 -0.71875q0.09375 -0.359375 0.25 -0.671875q0.15625 -0.328125 0.40625 -0.578125q0.234375 -0.234375 0.5625 -0.375q0.328125 -0.140625 0.75 -0.140625q0.484375 0 0.828125 0.171875q0.34375 0.15625 0.59375 0.421875q0.234375 0.28125 0.375 0.65625q0.140625 0.375 0.203125 0.796875l1.203125 0q-0.078125 -0.671875 -0.328125 -1.234375q-0.234375 -0.5625 -0.640625 -0.953125q-0.40625 -0.40625 -0.96875 -0.625q-0.546875 -0.21875 -1.265625 -0.21875q-0.59375 0 -1.0625 0.171875q-0.46875 0.15625 -0.84375 0.453125q-0.375 0.296875 -0.65625 0.703125q-0.265625 0.390625 -0.4375 0.859375q-0.1875 0.46875 -0.28125 0.984375q-0.078125 0.515625 -0.078125 1.046875l0 1.3125q0 0.53125 0.078125 1.046875q0.09375 0.515625 0.28125 0.984375q0.171875 0.46875 0.4375 0.875q0.28125 0.390625 0.65625 0.671875q0.375 0.296875 0.84375 0.46875q0.484375 0.15625 1.0625 0.15625q0.6875 0 1.234375 -0.21875q0.5625 -0.21875 0.984375 -0.609375q0.390625 -0.390625 0.640625 -0.9375q0.265625 -0.546875 0.34375 -1.203125zm1.5294342 -0.734375l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.59375 0.265625 1.34375 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.328125 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.375 -0.21875 0.875 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.875 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm7.123184 3.4375l1.21875 0l0 -5.046875q0.109375 -0.234375 0.28125 -0.421875q0.171875 -0.1875 0.359375 -0.328125q0.25 -0.171875 0.53125 -0.265625q0.28125 -0.09375 0.609375 -0.09375q0.390625 0 0.6875 0.09375q0.296875 0.09375 0.5 0.296875q0.203125 0.203125 0.3125 0.53125q0.109375 0.328125 0.109375 0.796875l0 4.4375l1.203125 0l0 -4.46875q0 -0.703125 -0.171875 -1.21875q-0.171875 -0.515625 -0.5 -0.84375q-0.3125 -0.328125 -0.765625 -0.484375q-0.453125 -0.15625 -1.015625 -0.15625q-0.40625 0 -0.78125 0.125q-0.359375 0.109375 -0.671875 0.3125q-0.203125 0.140625 -0.390625 0.328125q-0.1875 0.1875 -0.34375 0.40625l-0.078125 -1.046875l-1.09375 0l0 7.046875zm10.857559 -8.75l-1.21875 0l0 1.703125l-1.84375 0l0 0.9375l1.84375 0l0 3.828125q0 0.640625 0.171875 1.109375q0.1875 0.453125 0.484375 0.75q0.296875 0.28125 0.703125 0.421875q0.40625 0.125 0.875 0.125q0.28125 0 0.5625 -0.03125q0.28125 -0.015625 0.53125 -0.0625q0.265625 -0.046875 0.46875 -0.109375q0.21875 -0.078125 0.375 -0.171875l-0.171875 -0.84375q-0.109375 0.015625 -0.28125 0.0625q-0.171875 0.03125 -0.375 0.0625q-0.203125 0.03125 -0.40625 0.0625q-0.203125 0.015625 -0.40625 0.015625q-0.265625 0 -0.5 -0.0625q-0.234375 -0.0625 -0.421875 -0.234375q-0.1875 -0.15625 -0.296875 -0.421875q-0.09375 -0.265625 -0.09375 -0.671875l0 -3.828125l2.6875 0l0 -0.9375l-2.6875 0l0 -1.703125zm9.763809 1.578125q-0.765625 0 -1.375 0.34375q-0.59375 0.328125 -1.03125 0.90625l0 -0.171875l-0.0625 -0.953125l-1.140625 0l0 7.046875l1.203125 0l0 -4.515625q0.125 -0.328125 0.296875 -0.59375q0.1875 -0.265625 0.421875 -0.4375q0.265625 -0.21875 0.625 -0.3125q0.359375 -0.109375 0.8125 -0.109375q0.34375 0 0.65625 0.03125q0.3125 0.03125 0.65625 0.109375l0.171875 -1.171875q-0.1875 -0.078125 -0.546875 -0.125q-0.359375 -0.046875 -0.6875 -0.046875zm3.0450592 3.59375l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.59375 0.265625 1.34375 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.328125 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.375 -0.21875 0.875 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.875 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm7.326309 -6.5625l0 1.046875l2.390625 0l0 7.90625l-2.390625 0l0 1.046875l5.890625 0l0 -1.046875l-2.296875 0l0 -8.953125l-3.59375 0zm7.998184 0l0 1.046875l2.390625 0l0 7.90625l-2.390625 0l0 1.046875l5.890625 0l0 -1.046875l-2.296875 0l0 -8.953125l-3.59375 0zm10.920044 10.125q1.015625 0 1.71875 -0.40625q0.703125 -0.421875 1.046875 -0.953125l-0.734375 -0.5625q-0.328125 0.421875 -0.828125 0.6875q-0.5 0.25 -1.140625 0.25q-0.5 0 -0.90625 -0.171875q-0.390625 -0.1875 -0.671875 -0.5q-0.28125 -0.296875 -0.453125 -0.6875q-0.15625 -0.390625 -0.203125 -0.90625l0 -0.046875l5.03125 0l0 -0.546875q0 -0.734375 -0.1875 -1.359375q-0.1875 -0.640625 -0.5625 -1.109375q-0.375 -0.453125 -0.953125 -0.71875q-0.5625 -0.265625 -1.3125 -0.265625q-0.609375 0 -1.1875 0.25q-0.578125 0.25 -1.03125 0.703125q-0.453125 0.46875 -0.734375 1.140625q-0.265625 0.671875 -0.265625 1.53125l0 0.265625q0 0.75 0.25 1.375q0.25 0.625 0.6875 1.078125q0.453125 0.453125 1.0625 0.703125q0.625 0.25 1.375 0.25zm-0.15625 -6.3125q0.453125 0 0.78125 0.171875q0.34375 0.171875 0.5625 0.4375q0.21875 0.28125 0.34375 0.65625q0.125 0.375 0.125 0.703125l0 0.046875l-3.78125 0q0.0625 -0.484375 0.234375 -0.859375q0.1875 -0.375 0.453125 -0.625q0.265625 -0.265625 0.578125 -0.390625q0.328125 -0.140625 0.703125 -0.140625zm9.654449 -0.984375q-0.765625 0 -1.375 0.34375q-0.59375 0.328125 -1.03125 0.90625l0 -0.171875l-0.0625 -0.953125l-1.140625 0l0 7.046875l1.203125 0l0 -4.515625q0.125 -0.328125 0.296875 -0.59375q0.1875 -0.265625 0.421875 -0.4375q0.265625 -0.21875 0.625 -0.3125q0.359375 -0.109375 0.8125 -0.109375q0.34375 0 0.65625 0.03125q0.3125 0.03125 0.65625 0.109375l0.171875 -1.171875q-0.1875 -0.078125 -0.546875 -0.125q-0.359375 -0.046875 -0.6875 -0.046875z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m603.0146 167.87927l0 252.98123l-466.04727 0l0 -37.989105" fill-rule="evenodd"/><path stroke="#8190a8" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m603.0146 167.87927l0 252.9812l-466.04727 0l0 -31.989075" fill-rule="evenodd"/><path fill="#8190a8" stroke="#8190a8" stroke-width="1.0" stroke-linecap="butt" d="m138.61905 388.8714l-1.6517334 -4.5381165l-1.6517334 4.5381165z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m136.95276 125.64042l-0.06298828 19.370079" fill-rule="evenodd"/><path stroke="#8190a8" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m136.95276 125.64042l-0.04348755 13.37011" fill-rule="evenodd"/><path fill="#8190a8" stroke="#8190a8" stroke-width="1.0" stroke-linecap="butt" d="m135.25755 139.00516l1.6369629 4.543442l1.6664886 -4.5326996z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m136.95276 296.04462l0 19.055115" fill-rule="evenodd"/><path stroke="#8190a8" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m136.95276 296.04462l0 13.055115" fill-rule="evenodd"/><path fill="#8190a8" stroke="#8190a8" stroke-width="1.0" stroke-linecap="butt" d="m135.30103 309.09973l1.6517334 4.5381165l1.6517334 -4.5381165z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m349.06137 17.501863l143.874 0l0 64.62992l-143.874 0z" fill-rule="evenodd"/><path fill="#4285f4" d="m366.13608 39.30186l3.03125 0q0.59375 0 1.15625 -0.1875q0.578125 -0.1875 1.015625 -0.53125q0.4375 -0.328125 0.6875 -0.828125q0.265625 -0.515625 0.265625 -1.1875q0 -0.421875 -0.125 -0.78125q-0.125 -0.375 -0.359375 -0.65625q-0.203125 -0.265625 -0.546875 -0.484375q-0.328125 -0.234375 -0.6875 -0.3125l0 -0.015625q0.34375 -0.15625 0.578125 -0.328125q0.25 -0.171875 0.453125 -0.421875q0.203125 -0.234375 0.3125 -0.53125q0.109375 -0.3125 0.125 -0.6875q0 -0.6562481 -0.265625 -1.1249981q-0.25 -0.484375 -0.6875 -0.796875q-0.4375 -0.296875 -1.0 -0.4375q-0.5625 -0.15625 -1.140625 -0.15625l-2.8125 0l0 9.468748zm1.203125 -4.4375l1.921875 0q0.390625 0.015625 0.71875 0.140625q0.328125 0.109375 0.578125 0.328125q0.25 0.21875 0.390625 0.53125q0.140625 0.3125 0.125 0.71875q0 0.390625 -0.15625 0.703125q-0.140625 0.3125 -0.40625 0.53125q-0.265625 0.21875 -0.609375 0.34375q-0.328125 0.109375 -0.703125 0.125l-1.859375 0l0 -3.421875zm0 -1.0l0 -3.015623l1.640625 0q0.359375 0.015625 0.6875 0.109375q0.34375 0.078125 0.609375 0.25q0.25 0.1875 0.390625 0.46875q0.15625 0.265625 0.15625 0.6718731q0 0.359375 -0.15625 0.640625q-0.15625 0.28125 -0.40625 0.46875q-0.25 0.203125 -0.578125 0.3125q-0.328125 0.09375 -0.65625 0.09375l-1.6875 0zm6.9981995 -4.562498l0 1.046875l2.390625 0l0 7.906248l-2.390625 0l0 1.046875l5.890625 0l0 -1.046875l-2.296875 0l0 -8.953123l-3.59375 0zm12.435669 9.999998l1.09375 0l0 -7.046875l-1.203125 0l0 5.0625q-0.09375 0.21875 -0.25 0.421875q-0.140625 0.1875 -0.34375 0.3125q-0.234375 0.171875 -0.546875 0.265625q-0.3125 0.09375 -0.71875 0.09375q-0.34375 0 -0.609375 -0.078125q-0.265625 -0.09375 -0.453125 -0.328125q-0.171875 -0.21875 -0.265625 -0.59375q-0.09375 -0.375 -0.09375 -0.953125l0 -4.203125l-1.203125 0l0 4.1875q0 0.796875 0.171875 1.359375q0.171875 0.5625 0.484375 0.921875q0.328125 0.359375 0.765625 0.53125q0.453125 0.171875 1.015625 0.171875q0.6875 0 1.203125 -0.28125q0.53125 -0.296875 0.890625 -0.8125l0.0625 0.96875zm6.4825745 0.125q1.015625 0 1.71875 -0.40625q0.703125 -0.421875 1.046875 -0.953125l-0.734375 -0.5625q-0.328125 0.421875 -0.828125 0.6875q-0.5 0.25 -1.140625 0.25q-0.5 0 -0.90625 -0.171875q-0.390625 -0.1875 -0.671875 -0.5q-0.28125 -0.296875 -0.453125 -0.6875q-0.15625 -0.390625 -0.203125 -0.90625l0 -0.046875l5.03125 0l0 -0.546875q0 -0.734375 -0.1875 -1.359375q-0.1875 -0.640625 -0.5625 -1.109375q-0.375 -0.453125 -0.953125 -0.71875q-0.5625 -0.265625 -1.3125 -0.265625q-0.609375 0 -1.1875 0.25q-0.578125 0.25 -1.03125 0.703125q-0.453125 0.46875 -0.734375 1.140625q-0.265625 0.671875 -0.265625 1.53125l0 0.265625q0 0.75 0.25 1.375q0.25 0.625 0.6875 1.078125q0.453125 0.453125 1.0625 0.703125q0.625 0.25 1.375 0.25zm-0.15625 -6.3125q0.453125 0 0.78125 0.171875q0.34375 0.171875 0.5625 0.4375q0.21875 0.28125 0.34375 0.65625q0.125 0.375 0.125 0.703125l0 0.046875l-3.78125 0q0.0625 -0.484375 0.234375 -0.859375q0.1875 -0.375 0.453125 -0.625q0.265625 -0.265625 0.578125 -0.390625q0.328125 -0.140625 0.703125 -0.140625zm7.888794 -2.562498l-1.21875 0l0 1.7031231l-1.84375 0l0 0.9375l1.84375 0l0 3.828125q0 0.640625 0.171875 1.109375q0.1875 0.453125 0.484375 0.75q0.296875 0.28125 0.703125 0.421875q0.40625 0.125 0.875 0.125q0.28125 0 0.5625 -0.03125q0.28125 -0.015625 0.53125 -0.0625q0.265625 -0.046875 0.46875 -0.109375q0.21875 -0.078125 0.375 -0.171875l-0.171875 -0.84375q-0.109375 0.015625 -0.28125 0.0625q-0.171875 0.03125 -0.375 0.0625q-0.203125 0.03125 -0.40625 0.0625q-0.203125 0.015625 -0.40625 0.015625q-0.265625 0 -0.5 -0.0625q-0.234375 -0.0625 -0.421875 -0.234375q-0.1875 -0.15625 -0.296875 -0.421875q-0.09375 -0.265625 -0.09375 -0.671875l0 -3.828125l2.6875 0l0 -0.9375l-2.6875 0l0 -1.7031231zm4.8106995 5.171873l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.59375 0.265625 1.34375 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.328125 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.375 -0.21875 0.875 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.875 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm6.795044 -0.140625l0 0.140625q0 0.75 0.21875 1.40625q0.21875 0.65625 0.640625 1.140625q0.40625 0.46875 1.0 0.75q0.59375 0.265625 1.34375 0.265625q0.75 0 1.328125 -0.265625q0.59375 -0.28125 1.015625 -0.75q0.40625 -0.484375 0.625 -1.140625q0.234375 -0.65625 0.234375 -1.40625l0 -0.140625q0 -0.765625 -0.234375 -1.421875q-0.21875 -0.65625 -0.625 -1.140625q-0.421875 -0.484375 -1.015625 -0.75q-0.59375 -0.28125 -1.34375 -0.28125q-0.734375 0 -1.328125 0.28125q-0.59375 0.265625 -1.0 0.75q-0.421875 0.484375 -0.640625 1.140625q-0.21875 0.65625 -0.21875 1.421875zm1.203125 0.140625l0 -0.140625q0 -0.515625 0.125 -0.984375q0.125 -0.484375 0.375 -0.84375q0.25 -0.359375 0.609375 -0.5625q0.375 -0.21875 0.875 -0.21875q0.5 0 0.875 0.21875q0.375 0.203125 0.640625 0.5625q0.234375 0.359375 0.359375 0.84375q0.140625 0.46875 0.140625 0.984375l0 0.140625q0 0.515625 -0.125 0.984375q-0.125 0.46875 -0.375 0.828125q-0.25 0.359375 -0.625 0.578125q-0.375 0.203125 -0.875 0.203125q-0.5 0 -0.875 -0.203125q-0.375 -0.21875 -0.625 -0.578125q-0.25 -0.359375 -0.375 -0.828125q-0.125 -0.46875 -0.125 -0.984375zm9.982574 -5.312498l-1.21875 0l0 1.7031231l-1.84375 0l0 0.9375l1.84375 0l0 3.828125q0 0.640625 0.171875 1.109375q0.1875 0.453125 0.484375 0.75q0.296875 0.28125 0.703125 0.421875q0.40625 0.125 0.875 0.125q0.28125 0 0.5625 -0.03125q0.28125 -0.015625 0.53125 -0.0625q0.265625 -0.046875 0.46875 -0.109375q0.21875 -0.078125 0.375 -0.171875l-0.171875 -0.84375q-0.109375 0.015625 -0.28125 0.0625q-0.171875 0.03125 -0.375 0.0625q-0.203125 0.03125 -0.40625 0.0625q-0.203125 0.015625 -0.40625 0.015625q-0.265625 0 -0.5 -0.0625q-0.234375 -0.0625 -0.421875 -0.234375q-0.1875 -0.15625 -0.296875 -0.421875q-0.09375 -0.265625 -0.09375 -0.671875l0 -3.828125l2.6875 0l0 -0.9375l-2.6875 0l0 -1.7031231zm6.357544 2.749998l0 -3.999998l-1.21875 0l0 9.999998l1.21875 0l0 -5.109375q0.125 -0.21875 0.28125 -0.390625q0.171875 -0.171875 0.375 -0.296875q0.234375 -0.171875 0.53125 -0.265625q0.296875 -0.09375 0.625 -0.09375q0.390625 0 0.6875 0.125q0.3125 0.109375 0.515625 0.328125q0.1875 0.203125 0.28125 0.53125q0.109375 0.3125 0.109375 0.734375l0 4.4375l1.203125 0l0 -4.4375q0 -0.703125 -0.171875 -1.21875q-0.171875 -0.515625 -0.5 -0.859375q-0.3125 -0.34375 -0.765625 -0.5q-0.453125 -0.15625 -1.0 -0.15625q-0.421875 0 -0.796875 0.125q-0.375 0.109375 -0.6875 0.34375q-0.203125 0.140625 -0.375 0.328125q-0.171875 0.171875 -0.3125 0.375zm21.168243 -2.453123l0 -1.015625l-7.015625 0l0 1.015625l2.921875 0l0 8.453123l1.171875 0l0 -8.453123l2.921875 0zm4.7325745 8.578123q1.015625 0 1.71875 -0.40625q0.703125 -0.421875 1.046875 -0.953125l-0.734375 -0.5625q-0.328125 0.421875 -0.828125 0.6875q-0.5 0.25 -1.140625 0.25q-0.5 0 -0.90625 -0.171875q-0.390625 -0.1875 -0.671875 -0.5q-0.28125 -0.296875 -0.453125 -0.6875q-0.15625 -0.390625 -0.203125 -0.90625l0 -0.046875l5.03125 0l0 -0.546875q0 -0.734375 -0.1875 -1.359375q-0.1875 -0.640625 -0.5625 -1.109375q-0.375 -0.453125 -0.953125 -0.71875q-0.5625 -0.265625 -1.3125 -0.265625q-0.609375 0 -1.1875 0.25q-0.578125 0.25 -1.03125 0.703125q-0.453125 0.46875 -0.734375 1.140625q-0.265625 0.671875 -0.265625 1.53125l0 0.265625q0 0.75 0.25 1.375q0.25 0.625 0.6875 1.078125q0.453125 0.453125 1.0625 0.703125q0.625 0.25 1.375 0.25zm-0.15625 -6.3125q0.453125 0 0.78125 0.171875q0.34375 0.171875 0.5625 0.4375q0.21875 0.28125 0.34375 0.65625q0.125 0.375 0.125 0.703125l0 0.046875l-3.78125 0q0.0625 -0.484375 0.234375 -0.859375q0.1875 -0.375 0.453125 -0.625q0.265625 -0.265625 0.578125 -0.390625q0.328125 -0.140625 0.703125 -0.140625zm9.716919 4.3125q0 0.171875 -0.0625 0.328125q-0.0625 0.140625 -0.1875 0.265625q-0.203125 0.203125 -0.5625 0.328125q-0.359375 0.109375 -0.84375 0.109375q-0.296875 0 -0.609375 -0.0625q-0.3125 -0.0625 -0.578125 -0.21875q-0.25 -0.15625 -0.421875 -0.40625q-0.171875 -0.265625 -0.203125 -0.640625l-1.203125 0q0 0.453125 0.203125 0.875q0.203125 0.40625 0.59375 0.71875q0.390625 0.328125 0.9375 0.515625q0.5625 0.1875 1.28125 0.1875q0.625 0 1.15625 -0.140625q0.53125 -0.15625 0.90625 -0.421875q0.375 -0.28125 0.578125 -0.65625q0.21875 -0.390625 0.21875 -0.859375q0 -0.4375 -0.1875 -0.765625q-0.1875 -0.328125 -0.53125 -0.59375q-0.359375 -0.234375 -0.875 -0.40625q-0.515625 -0.1875 -1.15625 -0.328125q-0.5 -0.09375 -0.828125 -0.203125q-0.3125 -0.109375 -0.5 -0.234375q-0.203125 -0.125 -0.28125 -0.28125q-0.078125 -0.171875 -0.078125 -0.375q0 -0.203125 0.09375 -0.390625q0.109375 -0.203125 0.296875 -0.34375q0.1875 -0.140625 0.46875 -0.21875q0.296875 -0.09375 0.6875 -0.09375q0.375 0 0.671875 0.109375q0.296875 0.109375 0.5 0.265625q0.203125 0.171875 0.3125 0.390625q0.125 0.21875 0.125 0.453125l1.203125 0q0 -0.46875 -0.203125 -0.859375q-0.1875 -0.40625 -0.546875 -0.703125q-0.375 -0.296875 -0.890625 -0.46875q-0.515625 -0.171875 -1.171875 -0.171875q-0.609375 0 -1.109375 0.171875q-0.5 0.15625 -0.875 0.4375q-0.359375 0.28125 -0.5625 0.65625q-0.203125 0.375 -0.203125 0.796875q0 0.4375 0.1875 0.765625q0.203125 0.328125 0.5625 0.5625q0.359375 0.25 0.84375 0.4375q0.5 0.171875 1.109375 0.296875q0.5 0.09375 0.828125 0.21875q0.328125 0.109375 0.53125 0.25q0.203125 0.15625 0.28125 0.328125q0.09375 0.171875 0.09375 0.375zm6.1700745 -6.874998l-1.21875 0l0 1.7031231l-1.84375 0l0 0.9375l1.84375 0l0 3.828125q0 0.640625 0.171875 1.109375q0.1875 0.453125 0.484375 0.75q0.296875 0.28125 0.703125 0.421875q0.40625 0.125 0.875 0.125q0.28125 0 0.5625 -0.03125q0.28125 -0.015625 0.53125 -0.0625q0.265625 -0.046875 0.46875 -0.109375q0.21875 -0.078125 0.375 -0.171875l-0.171875 -0.84375q-0.109375 0.015625 -0.28125 0.0625q-0.171875 0.03125 -0.375 0.0625q-0.203125 0.03125 -0.40625 0.0625q-0.203125 0.015625 -0.40625 0.015625q-0.265625 0 -0.5 -0.0625q-0.234375 -0.0625 -0.421875 -0.234375q-0.1875 -0.15625 -0.296875 -0.421875q-0.09375 -0.265625 -0.09375 -0.671875l0 -3.828125l2.6875 0l0 -0.9375l-2.6875 0l0 -1.7031231z" fill-rule="nonzero"/><path fill="#4285f4" d="m382.13245 45.83311l0 1.046875l2.21875 0l0 7.375l-2.21875 0l0 1.046875l5.734375 0l0 -1.046875l-2.265625 0l0 -7.375l2.265625 0l0 -1.046875l-5.734375 0zm7.9981995 9.46875l1.21875 0l0 -5.046875q0.109375 -0.234375 0.28125 -0.421875q0.171875 -0.1875 0.359375 -0.328125q0.25 -0.171875 0.53125 -0.265625q0.28125 -0.09375 0.609375 -0.09375q0.390625 0 0.6875 0.09375q0.296875 0.09375 0.5 0.296875q0.203125 0.203125 0.3125 0.53125q0.109375 0.328125 0.109375 0.796875l0 4.4375l1.203125 0l0 -4.46875q0 -0.703125 -0.171875 -1.21875q-0.171875 -0.515625 -0.5 -0.84375q-0.3125 -0.328125 -0.765625 -0.484375q-0.453125 -0.15625 -1.015625 -0.15625q-0.40625 0 -0.78125 0.125q-0.359375 0.109375 -0.671875 0.3125q-0.203125 0.140625 -0.390625 0.328125q-0.1875 0.1875 -0.34375 0.40625l-0.078125 -1.046875l-1.09375 0l0 7.046875zm10.857544 -8.75l-1.21875 0l0 1.703125l-1.84375 0l0 0.9375l1.84375 0l0 3.828125q0 0.640625 0.171875 1.109375q0.1875 0.453125 0.484375 0.75q0.296875 0.28125 0.703125 0.421875q0.40625 0.125 0.875 0.125q0.28125 0 0.5625 -0.03125q0.28125 -0.015625 0.53125 -0.0625q0.265625 -0.046875 0.46875 -0.109375q0.21875 -0.078125 0.375 -0.171875l-0.171875 -0.84375q-0.109375 0.015625 -0.28125 0.0625q-0.171875 0.03125 -0.375 0.0625q-0.203125 0.03125 -0.40625 0.0625q-0.203125 0.015625 -0.40625 0.015625q-0.265625 0 -0.5 -0.0625q-0.234375 -0.0625 -0.421875 -0.234375q-0.1875 -0.15625 -0.296875 -0.421875q-0.09375 -0.265625 -0.09375 -0.671875l0 -3.828125l2.6875 0l0 -0.9375l-2.6875 0l0 -1.703125zm8.263824 8.875q1.015625 0 1.71875 -0.40625q0.703125 -0.421875 1.046875 -0.953125l-0.734375 -0.5625q-0.328125 0.421875 -0.828125 0.6875q-0.5 0.25 -1.140625 0.25q-0.5 0 -0.90625 -0.171875q-0.390625 -0.1875 -0.671875 -0.5q-0.28125 -0.296875 -0.453125 -0.6875q-0.15625 -0.390625 -0.203125 -0.90625l0 -0.046875l5.03125 0l0 -0.546875q0 -0.734375 -0.1875 -1.359375q-0.1875 -0.640625 -0.5625 -1.109375q-0.375 -0.453125 -0.953125 -0.71875q-0.5625 -0.265625 -1.3125 -0.265625q-0.609375 0 -1.1875 0.25q-0.578125 0.25 -1.03125 0.703125q-0.453125 0.46875 -0.734375 1.140625q-0.265625 0.671875 -0.265625 1.53125l0 0.265625q0 0.75 0.25 1.375q0.25 0.625 0.6875 1.078125q0.453125 0.453125 1.0625 0.703125q0.625 0.25 1.375 0.25zm-0.15625 -6.3125q0.453125 0 0.78125 0.171875q0.34375 0.171875 0.5625 0.4375q0.21875 0.28125 0.34375 0.65625q0.125 0.375 0.125 0.703125l0 0.046875l-3.78125 0q0.0625 -0.484375 0.234375 -0.859375q0.1875 -0.375 0.453125 -0.625q0.265625 -0.265625 0.578125 -0.390625q0.328125 -0.140625 0.703125 -0.140625zm9.654419 -0.984375q-0.765625 0 -1.375 0.34375q-0.59375 0.328125 -1.03125 0.90625l0 -0.171875l-0.0625 -0.953125l-1.140625 0l0 7.046875l1.203125 0l0 -4.515625q0.125 -0.328125 0.296875 -0.59375q0.1875 -0.265625 0.421875 -0.4375q0.265625 -0.21875 0.625 -0.3125q0.359375 -0.109375 0.8125 -0.109375q0.34375 0 0.65625 0.03125q0.3125 0.03125 0.65625 0.109375l0.171875 -1.171875q-0.1875 -0.078125 -0.546875 -0.125q-0.359375 -0.046875 -0.6875 -0.046875zm5.1700745 7.171875l1.21875 0l0 -6.109375l2.71875 0l0 -0.9375l-2.71875 0l0 -0.484375q0 -0.453125 0.109375 -0.78125q0.109375 -0.328125 0.34375 -0.53125q0.203125 -0.203125 0.515625 -0.296875q0.3125 -0.109375 0.734375 -0.109375q0.390625 0 0.75 0.0625q0.359375 0.0625 0.625 0.15625l0.140625 -0.984375q-0.171875 -0.046875 -0.34375 -0.078125q-0.15625 -0.046875 -0.3125 -0.078125q-0.25 -0.046875 -0.5 -0.078125q-0.25 -0.03125 -0.515625 -0.03125q-0.625 0 -1.140625 0.1875q-0.5 0.171875 -0.859375 0.515625q-0.359375 0.34375 -0.5625 0.859375q-0.203125 0.5 -0.203125 1.1875l0 0.484375l-1.9375 0l0 0.9375l1.9375 0l0 6.109375zm10.841919 0l1.25 0l0 -0.109375q-0.125 -0.28125 -0.1875 -0.671875q-0.0625 -0.40625 -0.0625 -0.75l0 -3.28125q0 -0.59375 -0.21875 -1.03125q-0.203125 -0.4375 -0.578125 -0.75q-0.375 -0.28125 -0.890625 -0.421875q-0.515625 -0.15625 -1.109375 -0.15625q-0.65625 0 -1.1875 0.1875q-0.515625 0.171875 -0.875 0.46875q-0.359375 0.296875 -0.546875 0.671875q-0.1875 0.375 -0.203125 0.75l1.21875 0q0 -0.21875 0.09375 -0.421875q0.109375 -0.203125 0.3125 -0.359375q0.1875 -0.140625 0.46875 -0.234375q0.296875 -0.09375 0.640625 -0.09375q0.390625 0 0.703125 0.109375q0.3125 0.09375 0.515625 0.265625q0.21875 0.171875 0.328125 0.4375q0.125 0.25 0.125 0.5625l0 0.5625l-1.3125 0q-0.734375 0 -1.328125 0.140625q-0.59375 0.140625 -1.015625 0.421875q-0.421875 0.296875 -0.65625 0.734375q-0.234375 0.4375 -0.234375 1.015625q0 0.4375 0.171875 0.828125q0.171875 0.375 0.484375 0.65625q0.3125 0.28125 0.765625 0.4375q0.453125 0.15625 1.015625 0.15625q0.34375 0 0.640625 -0.078125q0.3125 -0.0625 0.59375 -0.1875q0.265625 -0.125 0.484375 -0.28125q0.234375 -0.15625 0.40625 -0.34375q0.03125 0.21875 0.0625 0.421875q0.046875 0.203125 0.125 0.34375zm-2.140625 -0.921875q-0.34375 0 -0.609375 -0.078125q-0.265625 -0.09375 -0.4375 -0.265625q-0.1875 -0.15625 -0.28125 -0.375q-0.078125 -0.21875 -0.078125 -0.484375q0 -0.265625 0.09375 -0.484375q0.109375 -0.21875 0.296875 -0.375q0.28125 -0.21875 0.734375 -0.328125q0.46875 -0.109375 1.09375 -0.109375l1.125 0l0 1.4375q-0.109375 0.203125 -0.296875 0.390625q-0.171875 0.1875 -0.421875 0.34375q-0.25 0.15625 -0.5625 0.25q-0.296875 0.078125 -0.65625 0.078125zm8.498199 0.078125q-0.5625 0 -0.9375 -0.21875q-0.375 -0.234375 -0.609375 -0.59375q-0.234375 -0.359375 -0.34375 -0.8125q-0.09375 -0.453125 -0.09375 -0.921875l0 -0.265625q0 -0.453125 0.09375 -0.90625q0.109375 -0.453125 0.34375 -0.8125q0.234375 -0.359375 0.609375 -0.578125q0.390625 -0.234375 0.9375 -0.234375q0.375 0 0.6875 0.125q0.3125 0.125 0.546875 0.34375q0.21875 0.21875 0.34375 0.5q0.140625 0.28125 0.15625 0.59375l1.140625 0q0 -0.53125 -0.21875 -1.0q-0.21875 -0.46875 -0.59375 -0.8125q-0.375 -0.34375 -0.90625 -0.53125q-0.53125 -0.203125 -1.15625 -0.203125q-0.796875 0 -1.390625 0.296875q-0.59375 0.28125 -1.0 0.75q-0.40625 0.5 -0.609375 1.140625q-0.1875 0.625 -0.1875 1.328125l0 0.265625q0 0.703125 0.1875 1.34375q0.203125 0.640625 0.609375 1.109375q0.40625 0.5 1.0 0.78125q0.59375 0.28125 1.390625 0.28125q0.5625 0 1.078125 -0.1875q0.515625 -0.1875 0.921875 -0.515625q0.390625 -0.3125 0.625 -0.734375q0.234375 -0.4375 0.25 -0.90625l-1.140625 0q-0.015625 0.296875 -0.15625 0.546875q-0.140625 0.25 -0.390625 0.421875q-0.234375 0.203125 -0.546875 0.3125q-0.3125 0.09375 -0.640625 0.09375zm8.123169 0.96875q1.015625 0 1.71875 -0.40625q0.703125 -0.421875 1.046875 -0.953125l-0.734375 -0.5625q-0.328125 0.421875 -0.828125 0.6875q-0.5 0.25 -1.140625 0.25q-0.5 0 -0.90625 -0.171875q-0.390625 -0.1875 -0.671875 -0.5q-0.28125 -0.296875 -0.453125 -0.6875q-0.15625 -0.390625 -0.203125 -0.90625l0 -0.046875l5.03125 0l0 -0.546875q0 -0.734375 -0.1875 -1.359375q-0.1875 -0.640625 -0.5625 -1.109375q-0.375 -0.453125 -0.953125 -0.71875q-0.5625 -0.265625 -1.3125 -0.265625q-0.609375 0 -1.1875 0.25q-0.578125 0.25 -1.03125 0.703125q-0.453125 0.46875 -0.734375 1.140625q-0.265625 0.671875 -0.265625 1.53125l0 0.265625q0 0.75 0.25 1.375q0.25 0.625 0.6875 1.078125q0.453125 0.453125 1.0625 0.703125q0.625 0.25 1.375 0.25zm-0.15625 -6.3125q0.453125 0 0.78125 0.171875q0.34375 0.171875 0.5625 0.4375q0.21875 0.28125 0.34375 0.65625q0.125 0.375 0.125 0.703125l0 0.046875l-3.78125 0q0.0625 -0.484375 0.234375 -0.859375q0.1875 -0.375 0.453125 -0.625q0.265625 -0.265625 0.578125 -0.390625q0.328125 -0.140625 0.703125 -0.140625zm9.716949 4.3125q0 0.171875 -0.0625 0.328125q-0.0625 0.140625 -0.1875 0.265625q-0.203125 0.203125 -0.5625 0.328125q-0.359375 0.109375 -0.84375 0.109375q-0.296875 0 -0.609375 -0.0625q-0.3125 -0.0625 -0.578125 -0.21875q-0.25 -0.15625 -0.421875 -0.40625q-0.171875 -0.265625 -0.203125 -0.640625l-1.203125 0q0 0.453125 0.203125 0.875q0.203125 0.40625 0.59375 0.71875q0.390625 0.328125 0.9375 0.515625q0.5625 0.1875 1.28125 0.1875q0.625 0 1.15625 -0.140625q0.53125 -0.15625 0.90625 -0.421875q0.375 -0.28125 0.578125 -0.65625q0.21875 -0.390625 0.21875 -0.859375q0 -0.4375 -0.1875 -0.765625q-0.1875 -0.328125 -0.53125 -0.59375q-0.359375 -0.234375 -0.875 -0.40625q-0.515625 -0.1875 -1.15625 -0.328125q-0.5 -0.09375 -0.828125 -0.203125q-0.3125 -0.109375 -0.5 -0.234375q-0.203125 -0.125 -0.28125 -0.28125q-0.078125 -0.171875 -0.078125 -0.375q0 -0.203125 0.09375 -0.390625q0.109375 -0.203125 0.296875 -0.34375q0.1875 -0.140625 0.46875 -0.21875q0.296875 -0.09375 0.6875 -0.09375q0.375 0 0.671875 0.109375q0.296875 0.109375 0.5 0.265625q0.203125 0.171875 0.3125 0.390625q0.125 0.21875 0.125 0.453125l1.203125 0q0 -0.46875 -0.203125 -0.859375q-0.1875 -0.40625 -0.546875 -0.703125q-0.375 -0.296875 -0.890625 -0.46875q-0.515625 -0.171875 -1.171875 -0.171875q-0.609375 0 -1.109375 0.171875q-0.5 0.15625 -0.875 0.4375q-0.359375 0.28125 -0.5625 0.65625q-0.203125 0.375 -0.203125 0.796875q0 0.4375 0.1875 0.765625q0.203125 0.328125 0.5625 0.5625q0.359375 0.25 0.84375 0.4375q0.5 0.171875 1.109375 0.296875q0.5 0.09375 0.828125 0.21875q0.328125 0.109375 0.53125 0.25q0.203125 0.15625 0.28125 0.328125q0.09375 0.171875 0.09375 0.375z" fill-rule="nonzero"/><path fill="#4285f4" d="m362.41974 69.39811l3.15625 -8.234375l-0.859375 0l-3.15625 8.234375l0.859375 0zm9.894775 -3.40625l0 -0.109375q0 -0.4375 -0.078125 -0.828125q-0.0625 -0.40625 -0.203125 -0.734375q-0.140625 -0.296875 -0.3125 -0.53125q-0.171875 -0.234375 -0.40625 -0.40625q-0.25 -0.171875 -0.5625 -0.265625q-0.296875 -0.109375 -0.65625 -0.109375q-0.296875 0 -0.546875 0.0625q-0.25 0.046875 -0.453125 0.15625q-0.171875 0.09375 -0.3125 0.21875q-0.140625 0.125 -0.265625 0.265625l0 -2.96875l-0.96875 0l0 8.0l0.890625 0l0.046875 -0.640625q0.09375 0.125 0.1875 0.21875q0.109375 0.09375 0.234375 0.1875q0.234375 0.15625 0.53125 0.25q0.296875 0.09375 0.65625 0.09375q0.328125 0 0.59375 -0.078125q0.28125 -0.078125 0.5 -0.21875q0.328125 -0.203125 0.546875 -0.515625q0.234375 -0.3125 0.375 -0.703125q0.09375 -0.296875 0.140625 -0.640625q0.0625 -0.34375 0.0625 -0.703125zm-0.953125 -0.109375l0 0.109375q0 0.25 -0.03125 0.484375q-0.03125 0.234375 -0.109375 0.453125q-0.078125 0.265625 -0.21875 0.5q-0.140625 0.21875 -0.34375 0.359375q-0.15625 0.125 -0.359375 0.1875q-0.203125 0.046875 -0.4375 0.046875q-0.25 0 -0.453125 -0.0625q-0.203125 -0.0625 -0.375 -0.1875q-0.171875 -0.109375 -0.296875 -0.265625q-0.125 -0.171875 -0.21875 -0.359375l0 -2.453125q0.09375 -0.1875 0.21875 -0.34375q0.125 -0.15625 0.296875 -0.28125q0.15625 -0.109375 0.359375 -0.171875q0.203125 -0.078125 0.453125 -0.078125q0.234375 0 0.421875 0.0625q0.1875 0.046875 0.34375 0.140625q0.21875 0.125 0.359375 0.359375q0.15625 0.234375 0.25 0.5q0.0625 0.234375 0.09375 0.484375q0.046875 0.25 0.046875 0.515625zm4.863556 -4.140625l-0.96875 0l0 1.375l-1.484375 0l0 0.734375l1.484375 0l0 3.0625q0 0.515625 0.140625 0.890625q0.140625 0.359375 0.375 0.59375q0.234375 0.234375 0.5625 0.34375q0.328125 0.109375 0.703125 0.109375q0.21875 0 0.4375 -0.03125q0.234375 -0.015625 0.4375 -0.0625q0.203125 -0.03125 0.375 -0.078125q0.171875 -0.0625 0.296875 -0.140625l-0.140625 -0.671875q-0.09375 0.015625 -0.234375 0.046875q-0.125 0.03125 -0.28125 0.046875q-0.171875 0.03125 -0.34375 0.046875q-0.15625 0.015625 -0.3125 0.015625q-0.21875 0 -0.40625 -0.046875q-0.1875 -0.046875 -0.328125 -0.1875q-0.15625 -0.125 -0.234375 -0.328125q-0.078125 -0.21875 -0.078125 -0.546875l0 -3.0625l2.140625 0l0 -0.734375l-2.140625 0l0 -1.375zm8.31665 4.078125l0 -0.78125l-3.96875 0l0 0.78125l3.96875 0zm4.472931 -4.078125l-0.96875 0l0 1.375l-1.484375 0l0 0.734375l1.484375 0l0 3.0625q0 0.515625 0.140625 0.890625q0.140625 0.359375 0.375 0.59375q0.234375 0.234375 0.5625 0.34375q0.328125 0.109375 0.703125 0.109375q0.21875 0 0.4375 -0.03125q0.234375 -0.015625 0.4375 -0.0625q0.203125 -0.03125 0.375 -0.078125q0.171875 -0.0625 0.296875 -0.140625l-0.140625 -0.671875q-0.09375 0.015625 -0.234375 0.046875q-0.125 0.03125 -0.28125 0.046875q-0.171875 0.03125 -0.34375 0.046875q-0.15625 0.015625 -0.3125 0.015625q-0.21875 0 -0.40625 -0.046875q-0.1875 -0.046875 -0.328125 -0.1875q-0.15625 -0.125 -0.234375 -0.328125q-0.078125 -0.21875 -0.078125 -0.546875l0 -3.0625l2.140625 0l0 -0.734375l-2.140625 0l0 -1.375zm6.5979004 7.109375q0.828125 0 1.375 -0.328125q0.5625 -0.34375 0.84375 -0.765625l-0.578125 -0.453125q-0.265625 0.34375 -0.671875 0.546875q-0.40625 0.203125 -0.921875 0.203125q-0.390625 0 -0.71875 -0.140625q-0.3125 -0.140625 -0.53125 -0.40625q-0.234375 -0.234375 -0.359375 -0.546875q-0.125 -0.3125 -0.15625 -0.71875l0 -0.046875l4.015625 0l0 -0.421875q0 -0.59375 -0.15625 -1.09375q-0.140625 -0.5 -0.4375 -0.875q-0.3125 -0.375 -0.765625 -0.578125q-0.453125 -0.21875 -1.0625 -0.21875q-0.484375 0 -0.953125 0.203125q-0.453125 0.1875 -0.8125 0.5625q-0.359375 0.375 -0.578125 0.921875q-0.21875 0.53125 -0.21875 1.21875l0 0.203125q0 0.59375 0.1875 1.09375q0.203125 0.5 0.5625 0.859375q0.359375 0.375 0.84375 0.578125q0.5 0.203125 1.09375 0.203125zm-0.125 -5.046875q0.375 0 0.640625 0.140625q0.265625 0.125 0.4375 0.34375q0.1875 0.21875 0.28125 0.515625q0.09375 0.296875 0.09375 0.5625l0 0.046875l-3.015625 0q0.046875 -0.390625 0.1875 -0.6875q0.15625 -0.296875 0.359375 -0.515625q0.203125 -0.203125 0.453125 -0.296875q0.265625 -0.109375 0.5625 -0.109375zm7.769806 3.4375q0 0.140625 -0.046875 0.265625q-0.046875 0.109375 -0.15625 0.21875q-0.15625 0.15625 -0.453125 0.25q-0.28125 0.09375 -0.65625 0.09375q-0.25 0 -0.5 -0.046875q-0.25 -0.0625 -0.453125 -0.1875q-0.203125 -0.125 -0.34375 -0.328125q-0.140625 -0.203125 -0.15625 -0.5l-0.96875 0q0 0.359375 0.15625 0.703125q0.171875 0.328125 0.484375 0.578125q0.3125 0.25 0.75 0.40625q0.453125 0.15625 1.03125 0.15625q0.5 0 0.921875 -0.125q0.421875 -0.125 0.71875 -0.34375q0.296875 -0.21875 0.46875 -0.515625q0.171875 -0.3125 0.171875 -0.6875q0 -0.34375 -0.15625 -0.609375q-0.140625 -0.265625 -0.421875 -0.46875q-0.28125 -0.203125 -0.703125 -0.34375q-0.40625 -0.140625 -0.921875 -0.25q-0.390625 -0.078125 -0.65625 -0.15625q-0.25 -0.09375 -0.40625 -0.1875q-0.15625 -0.109375 -0.21875 -0.234375q-0.0625 -0.140625 -0.0625 -0.296875q0 -0.171875 0.078125 -0.3125q0.078125 -0.15625 0.234375 -0.265625q0.15625 -0.125 0.375 -0.1875q0.234375 -0.0625 0.546875 -0.0625q0.296875 0 0.53125 0.078125q0.234375 0.078125 0.40625 0.21875q0.171875 0.140625 0.265625 0.3125q0.09375 0.171875 0.09375 0.359375l0.953125 0q0 -0.375 -0.15625 -0.6875q-0.15625 -0.328125 -0.453125 -0.5625q-0.28125 -0.25 -0.703125 -0.375q-0.421875 -0.140625 -0.9375 -0.140625q-0.484375 0 -0.890625 0.140625q-0.390625 0.125 -0.6875 0.34375q-0.296875 0.21875 -0.453125 0.53125q-0.15625 0.296875 -0.15625 0.640625q0 0.34375 0.15625 0.609375q0.15625 0.265625 0.4375 0.453125q0.28125 0.203125 0.671875 0.34375q0.40625 0.125 0.890625 0.234375q0.390625 0.078125 0.65625 0.171875q0.265625 0.09375 0.421875 0.203125q0.171875 0.125 0.234375 0.265625q0.0625 0.125 0.0625 0.296875zm4.9416504 -5.5l-0.96875 0l0 1.375l-1.484375 0l0 0.734375l1.484375 0l0 3.0625q0 0.515625 0.140625 0.890625q0.140625 0.359375 0.375 0.59375q0.234375 0.234375 0.5625 0.34375q0.328125 0.109375 0.703125 0.109375q0.21875 0 0.4375 -0.03125q0.234375 -0.015625 0.4375 -0.0625q0.203125 -0.03125 0.375 -0.078125q0.171875 -0.0625 0.296875 -0.140625l-0.140625 -0.671875q-0.09375 0.015625 -0.234375 0.046875q-0.125 0.03125 -0.28125 0.046875q-0.171875 0.03125 -0.34375 0.046875q-0.15625 0.015625 -0.3125 0.015625q-0.21875 0 -0.40625 -0.046875q-0.1875 -0.046875 -0.328125 -0.1875q-0.15625 -0.125 -0.234375 -0.328125q-0.078125 -0.21875 -0.078125 -0.546875l0 -3.0625l2.140625 0l0 -0.734375l-2.140625 0l0 -1.375zm8.316681 4.078125l0 -0.78125l-3.96875 0l0 0.78125l3.96875 0zm2.3479004 -2.703125l0 0.828125l1.90625 0l0 3.96875l-1.90625 0l0 0.828125l4.703125 0l0 -0.828125l-1.828125 0l0 -4.796875l-2.875 0zm1.78125 -1.484375q0 0.234375 0.140625 0.390625q0.140625 0.15625 0.4375 0.15625q0.28125 0 0.421875 -0.15625q0.15625 -0.15625 0.15625 -0.390625q0 -0.125 -0.046875 -0.234375q-0.03125 -0.109375 -0.125 -0.1875q-0.0625 -0.0625 -0.171875 -0.09375q-0.09375 -0.046875 -0.234375 -0.046875q-0.140625 0 -0.25 0.046875q-0.09375 0.03125 -0.171875 0.09375q-0.078125 0.078125 -0.125 0.1875q-0.03125 0.109375 -0.03125 0.234375zm4.457306 7.109375l0.96875 0l0 -4.03125q0.09375 -0.1875 0.21875 -0.328125q0.140625 -0.15625 0.296875 -0.28125q0.1875 -0.125 0.40625 -0.203125q0.234375 -0.078125 0.5 -0.078125q0.3125 0 0.546875 0.078125q0.234375 0.078125 0.40625 0.234375q0.15625 0.15625 0.234375 0.421875q0.09375 0.265625 0.09375 0.640625l0 3.546875l0.96875 0l0 -3.578125q0 -0.5625 -0.140625 -0.96875q-0.140625 -0.40625 -0.390625 -0.671875q-0.265625 -0.265625 -0.625 -0.390625q-0.359375 -0.125 -0.796875 -0.125q-0.328125 0 -0.625 0.09375q-0.296875 0.09375 -0.546875 0.265625q-0.15625 0.109375 -0.3125 0.265625q-0.140625 0.140625 -0.265625 0.3125l-0.078125 -0.828125l-0.859375 0l0 5.625zm8.676025 -7.0l-0.96875 0l0 1.375l-1.484375 0l0 0.734375l1.484375 0l0 3.0625q0 0.515625 0.140625 0.890625q0.140625 0.359375 0.375 0.59375q0.234375 0.234375 0.5625 0.34375q0.328125 0.109375 0.703125 0.109375q0.21875 0 0.4375 -0.03125q0.234375 -0.015625 0.4375 -0.0625q0.203125 -0.03125 0.375 -0.078125q0.171875 -0.0625 0.296875 -0.140625l-0.140625 -0.671875q-0.09375 0.015625 -0.234375 0.046875q-0.125 0.03125 -0.28125 0.046875q-0.171875 0.03125 -0.34375 0.046875q-0.15625 0.015625 -0.3125 0.015625q-0.21875 0 -0.40625 -0.046875q-0.1875 -0.046875 -0.328125 -0.1875q-0.15625 -0.125 -0.234375 -0.328125q-0.078125 -0.21875 -0.078125 -0.546875l0 -3.0625l2.140625 0l0 -0.734375l-2.140625 0l0 -1.375zm6.597931 7.109375q0.828125 0 1.375 -0.328125q0.5625 -0.34375 0.84375 -0.765625l-0.578125 -0.453125q-0.265625 0.34375 -0.671875 0.546875q-0.40625 0.203125 -0.921875 0.203125q-0.390625 0 -0.71875 -0.140625q-0.3125 -0.140625 -0.53125 -0.40625q-0.234375 -0.234375 -0.359375 -0.546875q-0.125 -0.3125 -0.15625 -0.71875l0 -0.046875l4.015625 0l0 -0.421875q0 -0.59375 -0.15625 -1.09375q-0.140625 -0.5 -0.4375 -0.875q-0.3125 -0.375 -0.765625 -0.578125q-0.453125 -0.21875 -1.0625 -0.21875q-0.484375 0 -0.953125 0.203125q-0.453125 0.1875 -0.8125 0.5625q-0.359375 0.375 -0.578125 0.921875q-0.21875 0.53125 -0.21875 1.21875l0 0.203125q0 0.59375 0.1875 1.09375q0.203125 0.5 0.5625 0.859375q0.359375 0.375 0.84375 0.578125q0.5 0.203125 1.09375 0.203125zm-0.125 -5.046875q0.375 0 0.640625 0.140625q0.265625 0.125 0.4375 0.34375q0.1875 0.21875 0.28125 0.515625q0.09375 0.296875 0.09375 0.5625l0 0.046875l-3.015625 0q0.046875 -0.390625 0.1875 -0.6875q0.15625 -0.296875 0.359375 -0.515625q0.203125 -0.203125 0.453125 -0.296875q0.265625 -0.109375 0.5625 -0.109375zm7.7229004 -0.796875q-0.609375 0 -1.09375 0.265625q-0.484375 0.265625 -0.828125 0.734375l0 -0.140625l-0.046875 -0.75l-0.90625 0l0 5.625l0.953125 0l0 -3.609375q0.09375 -0.265625 0.234375 -0.46875q0.15625 -0.21875 0.34375 -0.359375q0.21875 -0.171875 0.5 -0.25q0.28125 -0.09375 0.640625 -0.09375q0.28125 0 0.53125 0.03125q0.25 0.03125 0.53125 0.09375l0.125 -0.9375q-0.140625 -0.0625 -0.4375 -0.09375q-0.28125 -0.046875 -0.546875 -0.046875zm4.144806 5.734375l0.96875 0l0 -4.890625l2.171875 0l0 -0.734375l-2.171875 0l0 -0.40625q0 -0.34375 0.078125 -0.609375q0.09375 -0.265625 0.28125 -0.4375q0.15625 -0.15625 0.40625 -0.234375q0.265625 -0.09375 0.59375 -0.09375q0.3125 0 0.59375 0.0625q0.296875 0.046875 0.5 0.125l0.125 -0.796875q-0.140625 -0.03125 -0.28125 -0.0625q-0.125 -0.03125 -0.25 -0.046875q-0.203125 -0.046875 -0.40625 -0.0625q-0.203125 -0.03125 -0.40625 -0.03125q-0.5 0 -0.90625 0.140625q-0.40625 0.140625 -0.6875 0.421875q-0.296875 0.265625 -0.453125 0.6875q-0.15625 0.40625 -0.15625 0.9375l0 0.40625l-1.546875 0l0 0.734375l1.546875 0l0 4.890625zm8.6604 0l1.0 0l0 -0.078125q-0.09375 -0.234375 -0.15625 -0.546875q-0.046875 -0.328125 -0.046875 -0.609375l0 -2.609375q0 -0.46875 -0.171875 -0.828125q-0.171875 -0.359375 -0.46875 -0.59375q-0.296875 -0.234375 -0.71875 -0.34375q-0.40625 -0.125 -0.875 -0.125q-0.53125 0 -0.953125 0.15625q-0.40625 0.140625 -0.6875 0.375q-0.296875 0.234375 -0.453125 0.53125q-0.140625 0.296875 -0.15625 0.609375l0.96875 0q0 -0.1875 0.078125 -0.34375q0.09375 -0.171875 0.25 -0.28125q0.15625 -0.125 0.375 -0.1875q0.234375 -0.078125 0.515625 -0.078125q0.3125 0 0.5625 0.078125q0.25 0.078125 0.421875 0.21875q0.171875 0.140625 0.265625 0.34375q0.09375 0.203125 0.09375 0.453125l0 0.453125l-1.0625 0q-0.578125 0 -1.0625 0.109375q-0.46875 0.109375 -0.8125 0.34375q-0.328125 0.234375 -0.515625 0.578125q-0.1875 0.34375 -0.1875 0.8125q0 0.359375 0.140625 0.671875q0.140625 0.296875 0.390625 0.515625q0.25 0.21875 0.609375 0.359375q0.359375 0.125 0.8125 0.125q0.265625 0 0.515625 -0.0625q0.25 -0.0625 0.46875 -0.15625q0.203125 -0.09375 0.375 -0.21875q0.1875 -0.140625 0.34375 -0.28125q0.015625 0.171875 0.046875 0.34375q0.03125 0.15625 0.09375 0.265625zm-1.703125 -0.734375q-0.28125 0 -0.5 -0.0625q-0.203125 -0.078125 -0.34375 -0.21875q-0.140625 -0.125 -0.21875 -0.296875q-0.0625 -0.171875 -0.0625 -0.390625q0 -0.21875 0.078125 -0.390625q0.078125 -0.171875 0.234375 -0.296875q0.21875 -0.171875 0.578125 -0.25q0.375 -0.09375 0.875 -0.09375l0.90625 0l0 1.140625q-0.09375 0.171875 -0.234375 0.328125q-0.140625 0.140625 -0.34375 0.265625q-0.203125 0.125 -0.453125 0.203125q-0.234375 0.0625 -0.515625 0.0625zm6.785431 0.0625q-0.453125 0 -0.75 -0.171875q-0.296875 -0.1875 -0.484375 -0.484375q-0.1875 -0.28125 -0.265625 -0.640625q-0.078125 -0.375 -0.078125 -0.734375l0 -0.21875q0 -0.359375 0.078125 -0.71875q0.078125 -0.359375 0.265625 -0.65625q0.1875 -0.28125 0.484375 -0.453125q0.3125 -0.1875 0.75 -0.1875q0.296875 0 0.546875 0.09375q0.25 0.09375 0.4375 0.265625q0.1875 0.171875 0.28125 0.40625q0.109375 0.21875 0.125 0.484375l0.90625 0q0 -0.4375 -0.171875 -0.8125q-0.171875 -0.375 -0.46875 -0.640625q-0.3125 -0.28125 -0.734375 -0.4375q-0.421875 -0.15625 -0.921875 -0.15625q-0.625 0 -1.109375 0.234375q-0.484375 0.21875 -0.796875 0.609375q-0.328125 0.390625 -0.484375 0.90625q-0.15625 0.5 -0.15625 1.0625l0 0.21875q0 0.5625 0.15625 1.078125q0.15625 0.5 0.484375 0.875q0.3125 0.390625 0.796875 0.625q0.484375 0.234375 1.109375 0.234375q0.453125 0 0.859375 -0.15625q0.421875 -0.15625 0.734375 -0.421875q0.3125 -0.25 0.5 -0.59375q0.203125 -0.34375 0.203125 -0.71875l-0.90625 0q-0.015625 0.234375 -0.140625 0.4375q-0.109375 0.203125 -0.296875 0.34375q-0.1875 0.15625 -0.4375 0.25q-0.25 0.078125 -0.515625 0.078125zm6.4885254 0.78125q0.828125 0 1.375 -0.328125q0.5625 -0.34375 0.84375 -0.765625l-0.578125 -0.453125q-0.265625 0.34375 -0.671875 0.546875q-0.40625 0.203125 -0.921875 0.203125q-0.390625 0 -0.71875 -0.140625q-0.3125 -0.140625 -0.53125 -0.40625q-0.234375 -0.234375 -0.359375 -0.546875q-0.125 -0.3125 -0.15625 -0.71875l0 -0.046875l4.015625 0l0 -0.421875q0 -0.59375 -0.15625 -1.09375q-0.140625 -0.5 -0.4375 -0.875q-0.3125 -0.375 -0.765625 -0.578125q-0.453125 -0.21875 -1.0625 -0.21875q-0.484375 0 -0.953125 0.203125q-0.453125 0.1875 -0.8125 0.5625q-0.359375 0.375 -0.578125 0.921875q-0.21875 0.53125 -0.21875 1.21875l0 0.203125q0 0.59375 0.1875 1.09375q0.203125 0.5 0.5625 0.859375q0.359375 0.375 0.84375 0.578125q0.5 0.203125 1.09375 0.203125zm-0.125 -5.046875q0.375 0 0.640625 0.140625q0.265625 0.125 0.4375 0.34375q0.1875 0.21875 0.28125 0.515625q0.09375 0.296875 0.09375 0.5625l0 0.046875l-3.015625 0q0.046875 -0.390625 0.1875 -0.6875q0.15625 -0.296875 0.359375 -0.515625q0.203125 -0.203125 0.453125 -0.296875q0.265625 -0.109375 0.5625 -0.109375zm7.769806 3.4375q0 0.140625 -0.046875 0.265625q-0.046875 0.109375 -0.15625 0.21875q-0.15625 0.15625 -0.453125 0.25q-0.28125 0.09375 -0.65625 0.09375q-0.25 0 -0.5 -0.046875q-0.25 -0.0625 -0.453125 -0.1875q-0.203125 -0.125 -0.34375 -0.328125q-0.140625 -0.203125 -0.15625 -0.5l-0.96875 0q0 0.359375 0.15625 0.703125q0.171875 0.328125 0.484375 0.578125q0.3125 0.25 0.75 0.40625q0.453125 0.15625 1.03125 0.15625q0.5 0 0.921875 -0.125q0.421875 -0.125 0.71875 -0.34375q0.296875 -0.21875 0.46875 -0.515625q0.171875 -0.3125 0.171875 -0.6875q0 -0.34375 -0.15625 -0.609375q-0.140625 -0.265625 -0.421875 -0.46875q-0.28125 -0.203125 -0.703125 -0.34375q-0.40625 -0.140625 -0.921875 -0.25q-0.390625 -0.078125 -0.65625 -0.15625q-0.25 -0.09375 -0.40625 -0.1875q-0.15625 -0.109375 -0.21875 -0.234375q-0.0625 -0.140625 -0.0625 -0.296875q0 -0.171875 0.078125 -0.3125q0.078125 -0.15625 0.234375 -0.265625q0.15625 -0.125 0.375 -0.1875q0.234375 -0.0625 0.546875 -0.0625q0.296875 0 0.53125 0.078125q0.234375 0.078125 0.40625 0.21875q0.171875 0.140625 0.265625 0.3125q0.09375 0.171875 0.09375 0.359375l0.953125 0q0 -0.375 -0.15625 -0.6875q-0.15625 -0.328125 -0.453125 -0.5625q-0.28125 -0.25 -0.703125 -0.375q-0.421875 -0.140625 -0.9375 -0.140625q-0.484375 0 -0.890625 0.140625q-0.390625 0.125 -0.6875 0.34375q-0.296875 0.21875 -0.453125 0.53125q-0.15625 0.296875 -0.15625 0.640625q0 0.34375 0.15625 0.609375q0.15625 0.265625 0.4375 0.453125q0.28125 0.203125 0.671875 0.34375q0.40625 0.125 0.890625 0.234375q0.390625 0.078125 0.65625 0.171875q0.265625 0.09375 0.421875 0.203125q0.171875 0.125 0.234375 0.265625q0.0625 0.125 0.0625 0.296875z" fill-rule="nonzero"/></g></svg>
\ No newline at end of file
diff --git a/doc/overview.md b/doc/overview.md
new file mode 100644
index 0000000..288988f
--- /dev/null
+++ b/doc/overview.md
@@ -0,0 +1,57 @@
+# Bluetooth test interfaces
+
+The Pandora Bluetooth test interfaces are Remote Procedure Call (RPC) interfaces
+exposed to testing tools to trigger behaviors within a Bluetooth stack under
+test.
+
+While all Bluetooth stacks are different in their supported profiles, features,
+and corresponding APIs, the goal of Pandora is to provide a set of unified
+test interfaces which they could all implement, so we can reuse and scale
+testing tools and processes across all of them.
+
+## Requirements
+
+Since each Bluetooth stack exposes different APIs, the test interfaces must be
+generic enough and must not rely on any implementation specific behavior.
+However, they must ensure that they provide all the necessary access to the
+existing testing tools. For this reason, the test interfaces are co-designed by
+multiple teams at Google.
+
+The test interfaces must be implemented using [gRPC](https://grpc.io/) services
+and must use [protocol buffers](https://developers.google.com/protocol-buffers)
+as Interface Definition Language (IDL). A Bluetooth stack under test exposing
+such interfaces must thus implement a gRPC server.
+
+The test interfaces definition must follow the [Pandora style guide](
+style-guide.md).
+
+## Abstraction level
+
+**A test interface is defined for each Bluetooth profile (standard or custom)**.
+This allows the Bluetooth stack under test to implement only the test interfaces
+corresponding to its supported profiles. Additional platform/device-specific
+interfaces may also be added if necessary (but should be avoided as much as
+possible).
+
+**The same test interface can be implemented at different levels**: for
+instance, in Android, the Pandora Bluetooth test interfaces can be implemented
+both on top of Topshim (which is a Rust shim layer just on top of the stack),
+which is advantageous as tests running at that level can apply to Chrome OS as
+well, or on top of the Android Bluetooth SDK (Java) which is advantageous for
+Mainline, since the Bluetooth module includes both the stack and the SDK.
+
+![PTS-bot on Android](images/pts-bot-aosp.svg)
+
+## Optional features
+
+As Bluetooth profiles contain optional features, some methods of the test
+interfaces might not be implementable by a specific Bluetooth stack.
+
+Such unimplemented methods must return an [UNIMPLEMENTED](
+https://grpc.github.io/grpc/core/md_doc_statuscodes.html) status code as defined
+by gRPC.
+
+Discovering which features are supported by a Bluetooth stack is not (yet) part
+of the test interfaces as this is already doable via Bluetooth SIG
+[Implementation Conformance Statements (ICS)](
+https://www.bluetooth.com/specifications/qualification-test-requirements/).
diff --git a/doc/style-guide.md b/doc/style-guide.md
new file mode 100644
index 0000000..5f0f12c
--- /dev/null
+++ b/doc/style-guide.md
@@ -0,0 +1,123 @@
+# Style Guide
+
+The Bluetooth test interfaces uses [protocol buffers v3](
+https://developers.google.com/protocol-buffers) as Interfaces Definition
+Language.
+
+All guidelines from the [protocol buffers style guide](
+https://developers.google.com/protocol-buffers/docs/style) apply to them.
+
+## Additional guidelines
+
+A few additional guidelines apply to the Bluetooth test interfaces to guarantee
+consistency and improve readability.
+
+### Use proto3 syntax
+
+The protobuf compiler currently supports proto2 and proto3 syntax, but proto3
+should be used, as it is the latest version.
+
+### Use names from the Bluetooth specification nomenclature
+
+This avoids adding confusion to naming, even if the names used in the Bluetooth
+specification are not consistent across profiles (Gateway, Target, Controller,
+Server, Client, ...).
+
+```protobuf
+service A2DP {
+    rpc OpenServer(Empty) returns (Empty); // ✗ Avoid
+    rpc OpenSource(Empty) returns (Empty); // ✓ OK
+}
+```
+
+### Name services without prefixes or suffixes
+
+This helps to keep short names, if you need name-spacing you should use
+a package instead.
+
+```protobuf
+service A2DP {} // ✓ OK
+
+service Host {} // ✓ OK
+
+service A2DPServer {} // ✗ Avoid
+
+service BluetoothHost {} // ✗ Avoid
+```
+
+### Avoid long package names
+
+This makes the usage of the gRPC interface harder in some generated language
+where long package names are uncommon, for instance in rust and python.
+
+```protobuf
+package test.interfaces.bluetooth.bredr.l2cap; // ✗ Avoid
+package l2cap; // ✓ OK
+```
+
+### Use standards protocol buffers types
+
+Protocol buffers includes a lot of [well-known types](
+https://developers.google.com/protocol-buffers/docs/reference/google.protobuf),
+so use them instead of redefining your owns.
+
+```protobuf
+rpc L2CAP {
+    Send(MyData) returns (MyEmpty); // ✗ Avoid
+    Send(google.protobuf.BytesValue) returns (google.protobuf.Empty); // ✓ OK
+}
+```
+
+### Describe expected errors with `oneof` fields
+
+This allows using the protocol buffers type system to describe the possible
+outcomes of the request. You don't need to describe all errors, you should only
+specify the ones that are needed by the tests.
+
+We use the [gRPC standard error model](
+https://www.grpc.io/docs/guides/error/#standard-error-model) to send the other
+non specified errors (like implementation specific errors).
+
+```protobuf
+message ConnectResponse {
+    oneof result {
+        Connection connection = 1;
+        DeviceNotFoundError device_not_found = 2;
+        ...
+    }
+}
+```
+
+### Avoid gRPC streaming if possible
+
+There is only a few legitimate usages for gRPC streaming (such as audio
+streaming) and you should avoid it otherwise.
+
+### Use typed tokens to represent a resource
+
+This allows the implementation to wrap their internal format for representing
+the resource inside an opaque message instead of converting them.
+
+```protobuf
+// ✗ Avoid
+service Host {
+    rpc Connect(BdAddr) returns (Handle);
+}
+
+message Handle {
+    int16 handle = 1;
+}
+```
+
+```protobuf
+// ✓ OK
+service Host {
+    rpc Connect(BdAddr) returns (Connection);
+}
+
+message Connection {
+    // Internal (opaque) representation
+    // of the connection by the server
+    bytes cookie = 1;
+}
+```
diff --git a/pandora/a2dp.proto b/pandora/a2dp.proto
new file mode 100644
index 0000000..d262d1b
--- /dev/null
+++ b/pandora/a2dp.proto
@@ -0,0 +1,296 @@
+// Copyright 2022 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     https://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+syntax = "proto3";
+
+package pandora;
+
+import "pandora/host.proto";
+import "google/protobuf/empty.proto";
+import "google/protobuf/wrappers.proto";
+
+option java_outer_classname = "A2DPProto";
+
+// Service to trigger A2DP (Advanced Audio Distribution Profile) procedures.
+//
+// Requirements for the implementer:
+// - Streams must not be automatically opened, even if discovered.
+// - The `Host` service must be implemented
+//
+// References:
+// - [A2DP] Bluetooth SIG, Specification of the Bluetooth System,
+//    Advanced Audio Distribution, Version 1.3 or Later
+// - [AVDTP] Bluetooth SIG, Specification of the Bluetooth System,
+//    Audio/Video Distribution Transport Protocol, Version 1.3 or Later
+service A2DP {
+  // Open a stream from a local **Source** endpoint to a remote **Sink**
+  // endpoint.
+  //
+  // The returned source should be in the AVDTP_OPEN state (see [AVDTP] 9.1).
+  // The rpc must block until the stream has reached this state.
+  //
+  // A cancellation of this call must result in aborting the current
+  // AVDTP procedure (see [AVDTP] 9.9).
+  rpc OpenSource(OpenSourceRequest) returns (OpenSourceResponse);
+  // Open a stream from a local **Sink** endpoint to a remote **Source**
+  // endpoint.
+  //
+  // The returned sink must be in the AVDTP_OPEN state (see [AVDTP] 9.1).
+  // The rpc must block until the stream has reached this state.
+  //
+  // A cancellation of this call must result in aborting the current
+  // AVDTP procedure (see [AVDTP] 9.9).
+  rpc OpenSink(OpenSinkRequest) returns (OpenSinkResponse);
+  // Wait for a stream from a local **Source** endpoint to
+  // a remote **Sink** endpoint to open.
+  //
+  // The returned source should be in the AVDTP_OPEN state (see [AVDTP] 9.1).
+  // The rpc must block until the stream has reached this state.
+  //
+  // If the peer has opened a source prior to this call, the server will
+  // return it. The server must return the same source only once.
+  rpc WaitSource(WaitSourceRequest) returns (WaitSourceResponse);
+  // Wait for a stream from a local **Sink** endpoint to
+  // a remote **Source** endpoint to open.
+  //
+  // The returned sink should be in the AVDTP_OPEN state (see [AVDTP] 9.1).
+  // The rpc must block until the stream has reached this state.
+  //
+  // If the peer has opened a sink prior to this call, the server will
+  // return it. The server must return the same sink only once.
+  rpc WaitSink(WaitSinkRequest) returns (WaitSinkResponse);
+  // Get if the stream is suspended
+  rpc IsSuspended(IsSuspendedRequest) returns (google.protobuf.BoolValue);
+  // Start an opened stream.
+  //
+  // The rpc must block until the stream has reached the
+  // AVDTP_STREAMING state (see [AVDTP] 9.1).
+  rpc Start(StartRequest) returns (StartResponse);
+  // Suspend a streaming stream.
+  //
+  // The rpc must block until the stream has reached the AVDTP_OPEN
+  // state (see [AVDTP] 9.1).
+  rpc Suspend(SuspendRequest) returns (SuspendResponse);
+  // Close a stream, the source or sink tokens must not be reused afterwards.
+  rpc Close(CloseRequest) returns (CloseResponse);
+  // Get the `AudioEncoding` value of a stream
+  rpc GetAudioEncoding(GetAudioEncodingRequest)
+      returns (GetAudioEncodingResponse);
+  // Playback audio by a `Source`
+  rpc PlaybackAudio(stream PlaybackAudioRequest)
+      returns (PlaybackAudioResponse);
+  // Capture audio from a `Sink`
+  rpc CaptureAudio(CaptureAudioRequest) returns (stream CaptureAudioResponse);
+}
+
+// Audio encoding formats.
+enum AudioEncoding {
+  // Interleaved stereo frames with 16-bit signed little-endian linear PCM
+  // samples at 44100Hz sample rate
+  PCM_S16_LE_44K1_STEREO = 0;
+  // Interleaved stereo frames with 16-bit signed little-endian linear PCM
+  // samples at 48000Hz sample rate
+  PCM_S16_LE_48K_STEREO = 1;
+}
+
+// A Token representing a Source stream (see [A2DP] 2.2).
+// It's acquired via an OpenSource on the A2DP service.
+message Source {
+  // Opaque value filled by the GRPC server, must not
+  // be modified nor crafted.
+  bytes cookie = 1;
+}
+
+// A Token representing a Sink stream (see [A2DP] 2.2).
+// It's acquired via an OpenSink on the A2DP service.
+message Sink {
+  // Opaque value filled by the GRPC server, must not
+  // be modified nor crafted.
+  bytes cookie = 1;
+}
+
+// Request for the `OpenSource` method.
+message OpenSourceRequest {
+  // The connection that will open the stream.
+  Connection connection = 1;
+}
+
+// Response for the `OpenSource` method.
+message OpenSourceResponse {
+  // Result of the `OpenSource` call.
+  oneof result {
+    // Opened stream.
+    Source source = 1;
+    // The Connection disconnected.
+    google.protobuf.Empty disconnected = 2;
+  }
+}
+
+// Request for the `OpenSink` method.
+message OpenSinkRequest {
+  // The connection that will open the stream.
+  Connection connection = 1;
+}
+
+// Response for the `OpenSink` method.
+message OpenSinkResponse {
+  // Result of the `OpenSink` call.
+  oneof result {
+    // Opened stream.
+    Sink sink = 1;
+    // The Connection disconnected.
+    google.protobuf.Empty disconnected = 2;
+  }
+}
+
+// Request for the `WaitSource` method.
+message WaitSourceRequest {
+  // The connection that is awaiting the stream.
+  Connection connection = 1;
+}
+
+// Response for the `WaitSource` method.
+message WaitSourceResponse {
+  // Result of the `WaitSource` call.
+  oneof result {
+    // Awaited stream.
+    Source source = 1;
+    // The Connection disconnected.
+    google.protobuf.Empty disconnected = 2;
+  }
+}
+
+// Request for the `WaitSink` method.
+message WaitSinkRequest {
+  // The connection that is awaiting the stream.
+  Connection connection = 1;
+}
+
+// Response for the `WaitSink` method.
+message WaitSinkResponse {
+  // Result of the `WaitSink` call.
+  oneof result {
+    // Awaited stream.
+    Sink sink = 1;
+    // The Connection disconnected.
+    google.protobuf.Empty disconnected = 2;
+  }
+}
+
+// Request for the `IsSuspended` method.
+message IsSuspendedRequest {
+  // The stream on which the function will check if it's suspended
+  oneof target {
+    Sink sink = 1;
+    Source source = 2;
+  }
+}
+
+// Request for the `Start` method.
+message StartRequest {
+  // Target of the start, either a Sink or a Source.
+  oneof target {
+    Sink sink = 1;
+    Source source = 2;
+  }
+}
+
+// Response for the `Start` method.
+message StartResponse {
+  // Result of the `Start` call.
+  oneof result {
+    // Stream successfully started.
+    google.protobuf.Empty started = 1;
+    // Stream is already in AVDTP_STREAMING state.
+    google.protobuf.Empty already_started = 2;
+    // The Connection disconnected.
+    google.protobuf.Empty disconnected = 3;
+  }
+}
+
+// Request for the `Suspend` method.
+message SuspendRequest {
+  // Target of the suspend, either a Sink or a Source.
+  oneof target {
+    Sink sink = 1;
+    Source source = 2;
+  }
+}
+
+// Response for the `Suspend` method.
+message SuspendResponse {
+  // Result of the `Suspend` call.
+  oneof result {
+    // Stream successfully suspended.
+    google.protobuf.Empty suspended = 1;
+    // Stream is already in AVDTP_OPEN state.
+    google.protobuf.Empty already_suspended = 2;
+    // The Connection disconnected.
+    google.protobuf.Empty disconnected = 3;
+  }
+}
+
+// Request for the `Close` method.
+message CloseRequest {
+  // Target of the close, either a Sink or a Source.
+  oneof target {
+    Sink sink = 1;
+    Source source = 2;
+  }
+}
+
+// Response for the `Close` method.
+message CloseResponse {}
+
+// Request for the `GetAudioEncoding` method.
+message GetAudioEncodingRequest {
+  // The stream on which the function will read the `AudioEncoding`.
+  oneof target {
+    Sink sink = 1;
+    Source source = 2;
+  }
+}
+
+// Response for the `GetAudioEncoding` method.
+message GetAudioEncodingResponse {
+  // Audio encoding of the stream.
+  AudioEncoding encoding = 1;
+}
+
+// Request for the `PlaybackAudio` method.
+message PlaybackAudioRequest {
+  // Source that will playback audio.
+  Source source = 1;
+  // Audio data to playback.
+  // The audio data must be encoded in the specified `AudioEncoding` value
+  // obtained in response of a `GetAudioEncoding` method call.
+  bytes data = 2;
+}
+
+// Response for the `PlaybackAudio` method.
+message PlaybackAudioResponse {}
+
+// Request for the `CaptureAudio` method.
+message CaptureAudioRequest {
+  // Sink that will capture audio
+  Sink sink = 1;
+}
+
+// Response for the `CaptureAudio` method.
+message CaptureAudioResponse {
+  // Captured audio data.
+  // The audio data is encoded in the specified `AudioEncoding` value
+  // obtained in response of a `GetAudioEncoding` method call.
+  bytes data = 1;
+}
diff --git a/pandora/host.proto b/pandora/host.proto
new file mode 100644
index 0000000..57e539b
--- /dev/null
+++ b/pandora/host.proto
@@ -0,0 +1,120 @@
+// Copyright 2022 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     https://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+syntax = "proto3";
+
+package pandora;
+
+import "google/protobuf/empty.proto";
+
+option java_outer_classname = "HostProto";
+
+// Service to trigger Bluetooth Host procedures
+//
+// Requirements for the implementer:
+// At startup, the Host must be in BR/EDR connectable mode
+// (see GAP connectability modes)
+service Host {
+  // Reset the host.
+  // **After** responding to this command, the GRPC server should loose
+  // all its state.
+  // This is comparable to a process restart or an hardware reset.
+  // The GRPC server might take some time to be available after
+  // this command.
+  rpc Reset(google.protobuf.Empty) returns (google.protobuf.Empty);
+  // Create an ACL BR/EDR connection to a peer.
+  // This should send a CreateConnection on the HCI level.
+  // If the two devices have not established a previous bond,
+  // the peer must be discoverable.
+  rpc Connect(ConnectRequest) returns (ConnectResponse);
+  // Get an active ACL BR/EDR connection to a peer.
+  rpc GetConnection(GetConnectionRequest) returns (GetConnectionResponse);
+  // Wait for an ACL BR/EDR connection from a peer.
+  rpc WaitConnection(WaitConnectionRequest) returns (WaitConnectionResponse);
+  // Disconnect an ACL BR/EDR connection. The Connection must not be reused
+  // afterwards.
+  rpc Disconnect(DisconnectRequest) returns (DisconnectResponse);
+  // Read the local Bluetooth device address.
+  // This should return the same value as a Read BD_ADDR HCI command.
+  rpc ReadLocalAddress(google.protobuf.Empty)
+      returns (ReadLocalAddressResponse);
+}
+
+// A Token representing an ACL connection.
+// It's acquired via a Connect on the Host service.
+message Connection {
+  // Opaque value filled by the GRPC server, must not
+  // be modified nor crafted.
+  bytes cookie = 1;
+}
+
+// Request of the `Connect` method.
+message ConnectRequest {
+  // Peer Bluetooth Device Address as array of 6 bytes.
+  bytes address = 1;
+}
+
+// Response of the `Connect` method.
+message ConnectResponse {
+  // Result of the `Connect` call:
+  // - If successful: a Connection
+  oneof result {
+    Connection connection = 1;
+  }
+}
+
+// Request of the `GetConnection` method.
+message GetConnectionRequest {
+  // Peer Bluetooth Device Address as array of 6 bytes.
+  bytes address = 1;
+}
+
+// Response of the `GetConnection` method.
+message GetConnectionResponse {
+  // Result of the `GetConnection` call:
+  // - If successful: a Connection
+  oneof result {
+    Connection connection = 1;
+  }
+}
+
+// Request of the `WaitConnection` method.
+message WaitConnectionRequest {
+  // Peer Bluetooth Device Address as array of 6 bytes.
+  bytes address = 1;
+}
+
+// Response of the `WaitConnection` method.
+message WaitConnectionResponse {
+  // Result of the `WaitConnection` call:
+  // - If successful: a Connection
+  oneof result {
+    Connection connection = 1;
+  }
+}
+
+// Request of the `Disconnect` method.
+message DisconnectRequest {
+  // Connection that should be disconnected.
+  Connection connection = 1;
+}
+
+// Response of the `Disconnect` method.
+message DisconnectResponse {}
+
+// Response of the `ReadLocalAddress` method.
+message ReadLocalAddressResponse {
+  // Local Bluetooth Device Address as array of 6 bytes.
+  bytes address = 1;
+}
diff --git a/python/_build/__init__.py b/python/_build/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/python/_build/__init__.py
diff --git a/python/_build/backend.py b/python/_build/backend.py
new file mode 100644
index 0000000..75fb128
--- /dev/null
+++ b/python/_build/backend.py
@@ -0,0 +1,24 @@
+# Copyright 2022 Google LLC
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+"""PEP517 build backend."""
+
+from .grpc import build as build_pandora_grpc
+
+# Use all build hooks from flit
+from flit_core.buildapi import *
+
+
+# Build grpc interfaces when this build backend is invoked
+build_pandora_grpc()
diff --git a/python/_build/grpc.py b/python/_build/grpc.py
new file mode 100755
index 0000000..45d4367
--- /dev/null
+++ b/python/_build/grpc.py
@@ -0,0 +1,47 @@
+#!/usr/bin/env python3
+
+# Copyright 2022 Google LLC
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+"""Build Pandora gRPC Bluetooth test interfaces."""
+
+import os
+import pkg_resources
+from grpc_tools import protoc
+
+build_directory = os.path.dirname(os.path.realpath(__file__))
+package_directory = f'{build_directory}/..'
+bt_test_interfaces_directory = f'{package_directory}/..'
+proto_directory = f'{bt_test_interfaces_directory}/pandora'
+
+
+def build():
+
+    os.environ['PATH'] = build_directory + ':' + os.environ['PATH']
+
+    proto_include = pkg_resources.resource_filename('grpc_tools', '_proto')
+
+    files = [
+        f'pandora/{f}' for f in os.listdir(proto_directory) if f.endswith('.proto')]
+    protoc.main([
+        'grpc_tools.protoc',
+        f'-I{bt_test_interfaces_directory}',
+        f'-I{proto_include}',
+        f'--python_out={package_directory}',
+        f'--custom_grpc_out={package_directory}',
+    ] + files)
+
+
+if __name__ == '__main__':
+    build()
diff --git a/python/_build/protoc-gen-custom_grpc b/python/_build/protoc-gen-custom_grpc
new file mode 100755
index 0000000..3ab1abf
--- /dev/null
+++ b/python/_build/protoc-gen-custom_grpc
@@ -0,0 +1,183 @@
+#!/usr/bin/env python3
+
+# Copyright 2022 Google LLC
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+"""Custom mmi2grpc gRPC compiler."""
+
+import sys
+
+from google.protobuf.compiler.plugin_pb2 import CodeGeneratorRequest, \
+    CodeGeneratorResponse
+
+
+def eprint(*args, **kwargs):
+    print(*args, file=sys.stderr, **kwargs)
+
+
+request = CodeGeneratorRequest.FromString(sys.stdin.buffer.read())
+
+
+def has_type(proto_file, type_name):
+    return any(filter(lambda x: x.name == type_name, proto_file.message_type))
+
+
+def import_type(imports, type):
+    package = type[1:type.rindex('.')]
+    type_name = type[type.rindex('.')+1:]
+    file = next(filter(
+        lambda x: x.package == package and has_type(x, type_name),
+        request.proto_file))
+    python_path = file.name.replace('.proto', '').replace('/', '.')
+    as_name = python_path.replace('.', '_dot_') + '__pb2'
+    module_path = python_path[:python_path.rindex('.')]
+    module_name = python_path[python_path.rindex('.')+1:] + '_pb2'
+    imports.add(f'from {module_path} import {module_name} as {as_name}')
+    return f'{as_name}.{type_name}'
+
+
+def generate_service_method(imports, file, service, method):
+    input_mode = 'stream' if method.client_streaming else 'unary'
+    output_mode = 'stream' if method.server_streaming else 'unary'
+
+    input_type = import_type(imports, method.input_type)
+    output_type = import_type(imports, method.output_type)
+
+    if input_mode == 'stream':
+        return (
+            f'def {method.name}(self, iterator, **kwargs):\n'
+            f'    return self.channel.{input_mode}_{output_mode}(\n'
+            f"        '/{file.package}.{service.name}/{method.name}',\n"
+            f'        request_serializer={input_type}.SerializeToString,\n'
+            f'        response_deserializer={output_type}.FromString\n'
+            f'    )(iterator, **kwargs)'
+        ).split('\n')
+    else:
+        return (
+            f'def {method.name}(self, wait_for_ready=None, **kwargs):\n'
+            f'    return self.channel.{input_mode}_{output_mode}(\n'
+            f"        '/{file.package}.{service.name}/{method.name}',\n"
+            f'        request_serializer={input_type}.SerializeToString,\n'
+            f'        response_deserializer={output_type}.FromString\n'
+            f'    )({input_type}(**kwargs), wait_for_ready=wait_for_ready)'
+        ).split('\n')
+
+
+def generate_service(imports, file, service):
+    methods = '\n\n    '.join([
+        '\n    '.join(
+            generate_service_method(imports, file, service, method)
+        ) for method in service.method
+    ])
+    return (
+        f'class {service.name}:\n'
+        f'    def __init__(self, channel):\n'
+        f'        self.channel = channel\n'
+        f'\n'
+        f'    {methods}\n'
+    ).split('\n')
+
+
+def generate_servicer_method(method):
+    input_mode = 'stream' if method.client_streaming else 'unary'
+
+    if input_mode == 'stream':
+        return (
+            f'def {method.name}(self, request_iterator, context):\n'
+            f'    context.set_code(grpc.StatusCode.UNIMPLEMENTED)\n'
+            f'    context.set_details("Method not implemented!")\n'
+            f'    raise NotImplementedError("Method not implemented!")'
+        ).split('\n')
+    else:
+        return (
+            f'def {method.name}(self, request, context):\n'
+            f'    context.set_code(grpc.StatusCode.UNIMPLEMENTED)\n'
+            f'    context.set_details("Method not implemented!")\n'
+            f'    raise NotImplementedError("Method not implemented!")'
+        ).split('\n')
+
+
+def generate_servicer(service):
+    methods = '\n\n    '.join([
+        '\n    '.join(
+            generate_servicer_method(method)
+        ) for method in service.method
+    ])
+    return (
+        f'class {service.name}Servicer:\n'
+        f'\n'
+        f'    {methods}\n'
+    ).split('\n')
+
+
+def generate_rpc_method_handler(imports, method):
+    input_mode = 'stream' if method.client_streaming else 'unary'
+    output_mode = 'stream' if method.server_streaming else 'unary'
+
+    input_type = import_type(imports, method.input_type)
+    output_type = import_type(imports, method.output_type)
+
+    return (
+        f"'{method.name}': grpc.{input_mode}_{output_mode}_rpc_method_handler(\n"
+        f'        servicer.{method.name},\n'
+        f'        request_deserializer={input_type}.FromString,\n'
+        f'        response_serializer={output_type}.SerializeToString,\n'
+        f'    ),\n'
+    ).split('\n')
+
+
+def generate_add_servicer_to_server_method(imports, file, service):
+    method_handlers = '    '.join([
+        '\n    '.join(
+            generate_rpc_method_handler(imports, method)
+        ) for method in service.method
+    ])
+    return (
+        f'def add_{service.name}Servicer_to_server(servicer, server):\n'
+        f'    rpc_method_handlers = {{\n'
+        f'        {method_handlers}\n'
+        f'    }}\n'
+        f'    generic_handler = grpc.method_handlers_generic_handler(\n'
+        f"        '{file.package}.{service.name}', rpc_method_handlers)\n"
+        f'    server.add_generic_rpc_handlers((generic_handler,))'
+    ).split('\n')
+
+
+files = []
+
+for file_name in request.file_to_generate:
+    file = next(filter(lambda x: x.name == file_name, request.proto_file))
+
+    imports = set(['import grpc'])
+
+    services = '\n'.join(sum([
+        generate_service(imports, file, service) for service in file.service
+    ], []))
+
+    servicers = '\n'.join(sum([
+        generate_servicer(service) for service in file.service
+    ], []))
+
+    add_servicer_methods = '\n'.join(sum([
+        generate_add_servicer_to_server_method(imports, file, service) for service in file.service
+    ], []))
+
+    files.append(CodeGeneratorResponse.File(
+        name=file_name.replace('.proto', '_grpc.py'),
+        content='\n'.join(imports) + '\n\n' + services  + '\n\n' + servicers + '\n\n' + add_servicer_methods + '\n'
+    ))
+
+response = CodeGeneratorResponse(file=files)
+
+sys.stdout.buffer.write(response.SerializeToString())
diff --git a/python/pandora/__init__.py b/python/pandora/__init__.py
new file mode 100644
index 0000000..f8a96ae
--- /dev/null
+++ b/python/pandora/__init__.py
@@ -0,0 +1,17 @@
+# Copyright 2022 Google LLC
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+"""Pandora gRPC Bluetooth test interfaces."""
+
+__version__ = "0.0.1"
diff --git a/python/pyproject.toml b/python/pyproject.toml
new file mode 100644
index 0000000..cb5b72a
--- /dev/null
+++ b/python/pyproject.toml
@@ -0,0 +1,17 @@
+[project]
+name = "bt-test-interfaces"
+readme = "../README.md"
+authors = [{name = "Pandora", email = "pandora-core@google.com"}]
+dynamic = ["version", "description"]
+dependencies = ["protobuf==3.20.1"]
+
+[tool.flit.module]
+name = "pandora"
+
+[tool.flit.sdist]
+include = ["_build"]
+
+[build-system]
+requires = ["flit_core==3.7.1", "grpcio-tools>=1.41"]
+build-backend = "_build.backend"
+backend-path = ["."]