mirror of
https://gitlab.com/Anson-Projects/projects.git
synced 2025-06-15 14:36:47 +00:00
checkpoint, idk what is going on here anymore
This commit is contained in:
parent
2afa12f5ee
commit
f3e26e88d4
624
Manifest.toml
624
Manifest.toml
File diff suppressed because it is too large
Load Diff
11
Project.toml
11
Project.toml
@ -1,20 +1,13 @@
|
||||
[deps]
|
||||
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
|
||||
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
|
||||
Bonito = "824d6782-a2ef-11e9-3a09-e5662e0c26f8"
|
||||
Conda = "8f4d0f93-b110-5947-807f-2305c1781a2d"
|
||||
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
|
||||
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa"
|
||||
GR_jll = "d2c73de3-f751-5644-a686-071e5b155ba9"
|
||||
IJulia = "7073ff75-c697-5162-941a-fcdaad2a7d2a"
|
||||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
|
||||
Measurements = "eff96d63-e80a-5855-80a2-b1b0885c5ab7"
|
||||
Optim = "429524aa-4258-5aef-a3af-852621145aeb"
|
||||
PlotlyJS = "f0f68f2c-4968-5e81-91da-67840de0976a"
|
||||
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
|
||||
Pluto = "c3e4b0f8-55cb-11ea-2926-15256bba5781"
|
||||
Revise = "295af30f-e4ad-537b-8983-00126c2a3abe"
|
||||
SatelliteToolbox = "6ac157d9-b43d-51bb-8fab-48bf53814f4a"
|
||||
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
|
||||
SPICE = "5bab7191-041a-5c2e-a744-024b9c3a5062"
|
||||
|
||||
[compat]
|
||||
julia = "1.11"
|
||||
|
BIN
posts/.DS_Store
vendored
BIN
posts/.DS_Store
vendored
Binary file not shown.
BIN
posts/2024-12-25-moon-cannon-duece/Anson Biggs | Resume.pdf
Normal file
BIN
posts/2024-12-25-moon-cannon-duece/Anson Biggs | Resume.pdf
Normal file
Binary file not shown.
52
posts/2024-12-25-moon-cannon-duece/index.qmd
Normal file
52
posts/2024-12-25-moon-cannon-duece/index.qmd
Normal file
@ -0,0 +1,52 @@
|
||||
---
|
||||
title: "Moon Cannon: dos"
|
||||
description: |
|
||||
Can you shoot Earth from the Moon? Simulate lunar ballistic launches with Julia. Explore orbital mechanics, gravity, and drag in a simplified Moon-to-Earth cannon model.
|
||||
date: 2024-09-25
|
||||
categories:
|
||||
- Julia
|
||||
- Astrodynamics
|
||||
- Code
|
||||
- Aerospace
|
||||
- Space
|
||||
- Math
|
||||
draft: false
|
||||
freeze: false
|
||||
image: moon_spirograph.png
|
||||
---
|
||||
|
||||
```{julia}
|
||||
using SPICE
|
||||
|
||||
const LSK = "https://naif.jpl.nasa.gov/pub/naif/generic_kernels/lsk/naif0012.tls"
|
||||
const SPK = "https://naif.jpl.nasa.gov/pub/naif/generic_kernels/spk/planets/de440.bsp"
|
||||
|
||||
# Download kernels
|
||||
download(LSK, "naif0012.tls")
|
||||
download(SPK, "de440.bsp")
|
||||
|
||||
# Load leap seconds kernel
|
||||
furnsh("naif0012.tls")
|
||||
|
||||
# Load a planetary ephemeris kernel
|
||||
furnsh("de440.bsp")
|
||||
|
||||
function get_planet_positions(epoch)
|
||||
planets = ["MERCURY", "VENUS", "EARTH", "MARS",
|
||||
"JUPITER", "SATURN", "URANUS", "NEPTUNE"]
|
||||
positions = Dict()
|
||||
|
||||
for planet in planets
|
||||
# Get position vector in km relative to Sun
|
||||
pos, _ = spkpos(planet, epoch, "J2000", "NONE", "earth")
|
||||
positions[planet] = pos
|
||||
end
|
||||
|
||||
return positions
|
||||
end
|
||||
|
||||
# Example usage (epoch in UTC)
|
||||
epoch = "1995-12-17T12:00:00" |> utc2et
|
||||
positions = get_planet_positions(epoch)
|
||||
|
||||
```
|
78
posts/2024-12-25-moon-cannon-duece/index.quarto_ipynb
Normal file
78
posts/2024-12-25-moon-cannon-duece/index.quarto_ipynb
Normal file
@ -0,0 +1,78 @@
|
||||
{
|
||||
"cells": [
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"---\n",
|
||||
"title: \"Moon Cannon: dos\"\n",
|
||||
"description: |\n",
|
||||
" Can you shoot Earth from the Moon? Simulate lunar ballistic launches with Julia. Explore orbital mechanics, gravity, and drag in a simplified Moon-to-Earth cannon model.\n",
|
||||
"date: 2024-09-25\n",
|
||||
"categories:\n",
|
||||
" - Julia\n",
|
||||
" - Astrodynamics\n",
|
||||
" - Code\n",
|
||||
" - Aerospace\n",
|
||||
" - Space\n",
|
||||
" - Math\n",
|
||||
"draft: false\n",
|
||||
"freeze: false\n",
|
||||
"image: moon_spirograph.png\n",
|
||||
"---"
|
||||
],
|
||||
"id": "e623b02d"
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"using SPICE\n",
|
||||
"\n",
|
||||
"const LSK = \"https://naif.jpl.nasa.gov/pub/naif/generic_kernels/lsk/naif0012.tls\"\n",
|
||||
"const SPK = \"https://naif.jpl.nasa.gov/pub/naif/generic_kernels/spk/planets/de440.bsp\"\n",
|
||||
"\n",
|
||||
"# Download kernels\n",
|
||||
"download(LSK, \"naif0012.tls\")\n",
|
||||
"download(SPK, \"de440.bsp\")\n",
|
||||
"\n",
|
||||
"# Load leap seconds kernel\n",
|
||||
"furnsh(\"naif0012.tls\")\n",
|
||||
"\n",
|
||||
"# Load a planetary ephemeris kernel\n",
|
||||
"furnsh(\"de440.bsp\")\n",
|
||||
"\n",
|
||||
"function get_planet_positions(epoch)\n",
|
||||
" planets = [\"MERCURY\", \"VENUS\", \"EARTH\", \"MARS\", \n",
|
||||
" \"JUPITER\", \"SATURN\", \"URANUS\", \"NEPTUNE\"]\n",
|
||||
" positions = Dict()\n",
|
||||
"\n",
|
||||
" for planet in planets\n",
|
||||
" # Get position vector in km relative to Sun\n",
|
||||
" pos, _ = spkpos(planet, epoch, \"J2000\", \"NONE\", \"earth\")\n",
|
||||
" positions[planet] = pos\n",
|
||||
" end\n",
|
||||
"\n",
|
||||
" return positions\n",
|
||||
"end\n",
|
||||
"\n",
|
||||
"# Example usage (epoch in UTC)\n",
|
||||
"epoch = \"1995-12-17T12:00:00\" |> utc2et\n",
|
||||
"positions = get_planet_positions(epoch)"
|
||||
],
|
||||
"id": "72207da4",
|
||||
"execution_count": null,
|
||||
"outputs": []
|
||||
}
|
||||
],
|
||||
"metadata": {
|
||||
"kernelspec": {
|
||||
"name": "julia-1.11",
|
||||
"language": "julia",
|
||||
"display_name": "Julia 1.11.1",
|
||||
"path": "/root/.local/share/jupyter/kernels/julia-1.11"
|
||||
}
|
||||
},
|
||||
"nbformat": 4,
|
||||
"nbformat_minor": 5
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
{
|
||||
"hash": "043a3c0deb2d64b1ec9be92f462850fc",
|
||||
"result": {
|
||||
"engine": "jupyter",
|
||||
"markdown": "---\ntitle: \"Moon Cannon: dos\"\ndescription: |\n Can you shoot Earth from the Moon? Simulate lunar ballistic launches with Julia. Explore orbital mechanics, gravity, and drag in a simplified Moon-to-Earth cannon model.\ndate: 2024-09-25\ncategories:\n - Julia\n - Astrodynamics\n - Code\n - Aerospace\n - Space\n - Math\ndraft: false\nfreeze: false\nimage: moon_spirograph.png\n---\n\n::: {#3df027fb .cell execution_count=1}\n``` {.julia .cell-code}\nusing CairoMakie\n\nf = Figure(size=(800, 800))\n\nAxis(f[1, 1], title=\"Default cycle palette\")\n\nfor i in 1:6\n density!(randn(50) .+ 2i)\nend\n\nAxis(f[2, 1],\n title=\"Custom cycle palette\",\n palette=(patchcolor=[:red, :green, :blue, :yellow, :orange, :pink],))\n\nfor i in 1:6\n density!(randn(50) .+ 2i)\nend\n\nset_theme!(Density=(cycle=[],))\n\nAxis(f[3, 1], title=\"No cycle\")\n\nfor i in 1:6\n density!(randn(50) .+ 2i)\nend\n\n\nf\n```\n\n::: {.cell-output .cell-output-stderr}\n```\n┌ Warning: Found `resolution` in the theme when creating a `Scene`. The `resolution` keyword for `Scene`s and `Figure`s has been deprecated. Use `Figure(; size = ...` or `Scene(; size = ...)` instead, which better reflects that this is a unitless size and not a pixel resolution. The key could also come from `set_theme!` calls or related theming functions.\n└ @ Makie ~/.julia/packages/Makie/pFPBw/src/scenes.jl:238\n```\n:::\n\n::: {.cell-output .cell-output-display execution_count=2}\n{}\n:::\n:::\n\n\n",
|
||||
"supporting": [
|
||||
"index_files"
|
||||
],
|
||||
"filters": [],
|
||||
"includes": {}
|
||||
}
|
||||
}
|
@ -0,0 +1,527 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="672" height="480" viewBox="0 0 672 480">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0-a71a7792">
|
||||
<path d="M 7.09375 -4.78125 C 7.09375 -1.515625 5.953125 0.203125 3.84375 0.203125 C 1.71875 0.203125 0.609375 -1.515625 0.609375 -4.859375 C 0.609375 -8.1875 1.703125 -9.921875 3.84375 -9.921875 C 6 -9.921875 7.09375 -8.21875 7.09375 -4.78125 Z M 5.84375 -4.890625 C 5.84375 -7.546875 5.1875 -8.828125 3.84375 -8.828125 C 2.515625 -8.828125 1.859375 -7.5625 1.859375 -4.84375 C 1.859375 -2.125 2.515625 -0.8125 3.828125 -0.8125 C 5.1875 -0.8125 5.84375 -2.078125 5.84375 -4.890625 Z M 5.84375 -4.890625 "/>
|
||||
</g>
|
||||
<g id="glyph-0-1-a71a7792">
|
||||
<path d="M 7.1875 -3.296875 C 7.1875 -1.1875 5.78125 0.203125 3.78125 0.203125 C 2.015625 0.203125 0.890625 -0.578125 0.484375 -2.546875 C 0.484375 -2.546875 1.71875 -2.546875 1.71875 -2.546875 C 2.015625 -1.421875 2.671875 -0.875 3.75 -0.875 C 5.09375 -0.875 5.921875 -1.6875 5.921875 -3.125 C 5.921875 -4.59375 5.078125 -5.453125 3.75 -5.453125 C 2.984375 -5.453125 2.5 -5.203125 1.9375 -4.515625 C 1.9375 -4.515625 0.796875 -4.515625 0.796875 -4.515625 C 0.796875 -4.515625 1.546875 -9.71875 1.546875 -9.71875 C 1.546875 -9.71875 6.65625 -9.71875 6.65625 -9.71875 C 6.65625 -9.71875 6.65625 -8.5 6.65625 -8.5 C 6.65625 -8.5 2.53125 -8.5 2.53125 -8.5 C 2.53125 -8.5 2.140625 -5.9375 2.140625 -5.9375 C 2.71875 -6.359375 3.28125 -6.53125 3.96875 -6.53125 C 5.875 -6.53125 7.1875 -5.25 7.1875 -3.296875 Z M 7.1875 -3.296875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2-a71a7792">
|
||||
<path d="M 4.859375 0 C 4.859375 0 3.625 0 3.625 0 C 3.625 0 3.625 -7.0625 3.625 -7.0625 C 3.625 -7.0625 1.421875 -7.0625 1.421875 -7.0625 C 1.421875 -7.0625 1.421875 -7.953125 1.421875 -7.953125 C 3.328125 -8.1875 3.609375 -8.40625 4.046875 -9.921875 C 4.046875 -9.921875 4.859375 -9.921875 4.859375 -9.921875 C 4.859375 -9.921875 4.859375 0 4.859375 0 Z M 4.859375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0-a71a7792">
|
||||
<path d="M 7.09375 -4.78125 C 7.09375 -1.515625 5.953125 0.203125 3.84375 0.203125 C 1.71875 0.203125 0.609375 -1.515625 0.609375 -4.859375 C 0.609375 -8.1875 1.703125 -9.921875 3.84375 -9.921875 C 6 -9.921875 7.09375 -8.21875 7.09375 -4.78125 Z M 5.84375 -4.890625 C 5.84375 -7.546875 5.1875 -8.828125 3.84375 -8.828125 C 2.515625 -8.828125 1.859375 -7.5625 1.859375 -4.84375 C 1.859375 -2.125 2.515625 -0.8125 3.828125 -0.8125 C 5.1875 -0.8125 5.84375 -2.078125 5.84375 -4.890625 Z M 5.84375 -4.890625 "/>
|
||||
</g>
|
||||
<g id="glyph-1-1-a71a7792">
|
||||
<path d="M 2.671875 0 C 2.671875 0 1.21875 0 1.21875 0 C 1.21875 0 1.21875 -1.453125 1.21875 -1.453125 C 1.21875 -1.453125 2.671875 -1.453125 2.671875 -1.453125 C 2.671875 -1.453125 2.671875 0 2.671875 0 Z M 2.671875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-1-2-a71a7792">
|
||||
<path d="M 7.15625 -7.015625 C 7.15625 -5.796875 6.4375 -4.765625 5.046875 -4.015625 C 5.046875 -4.015625 3.65625 -3.265625 3.65625 -3.265625 C 2.4375 -2.546875 1.984375 -2.03125 1.859375 -1.21875 C 1.859375 -1.21875 7.078125 -1.21875 7.078125 -1.21875 C 7.078125 -1.21875 7.078125 0 7.078125 0 C 7.078125 0 0.46875 0 0.46875 0 C 0.59375 -2.1875 1.1875 -3.125 3.265625 -4.296875 C 3.265625 -4.296875 4.546875 -5.03125 4.546875 -5.03125 C 5.4375 -5.53125 5.890625 -6.203125 5.890625 -6.984375 C 5.890625 -8.046875 5.046875 -8.84375 3.9375 -8.84375 C 2.71875 -8.84375 2.03125 -8.140625 1.9375 -6.484375 C 1.9375 -6.484375 0.703125 -6.484375 0.703125 -6.484375 C 0.765625 -8.890625 1.953125 -9.921875 3.96875 -9.921875 C 5.859375 -9.921875 7.15625 -8.6875 7.15625 -7.015625 Z M 7.15625 -7.015625 "/>
|
||||
</g>
|
||||
<g id="glyph-2-0-a71a7792">
|
||||
<path d="M 7.09375 -4.78125 C 7.09375 -1.515625 5.953125 0.203125 3.84375 0.203125 C 1.71875 0.203125 0.609375 -1.515625 0.609375 -4.859375 C 0.609375 -8.1875 1.703125 -9.921875 3.84375 -9.921875 C 6 -9.921875 7.09375 -8.21875 7.09375 -4.78125 Z M 5.84375 -4.890625 C 5.84375 -7.546875 5.1875 -8.828125 3.84375 -8.828125 C 2.515625 -8.828125 1.859375 -7.5625 1.859375 -4.84375 C 1.859375 -2.125 2.515625 -0.8125 3.828125 -0.8125 C 5.1875 -0.8125 5.84375 -2.078125 5.84375 -4.890625 Z M 5.84375 -4.890625 "/>
|
||||
</g>
|
||||
<g id="glyph-2-1-a71a7792">
|
||||
<path d="M 2.671875 0 C 2.671875 0 1.21875 0 1.21875 0 C 1.21875 0 1.21875 -1.453125 1.21875 -1.453125 C 1.21875 -1.453125 2.671875 -1.453125 2.671875 -1.453125 C 2.671875 -1.453125 2.671875 0 2.671875 0 Z M 2.671875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2-a71a7792">
|
||||
<path d="M 7.15625 -7.015625 C 7.15625 -5.796875 6.4375 -4.765625 5.046875 -4.015625 C 5.046875 -4.015625 3.65625 -3.265625 3.65625 -3.265625 C 2.4375 -2.546875 1.984375 -2.03125 1.859375 -1.21875 C 1.859375 -1.21875 7.078125 -1.21875 7.078125 -1.21875 C 7.078125 -1.21875 7.078125 0 7.078125 0 C 7.078125 0 0.46875 0 0.46875 0 C 0.59375 -2.1875 1.1875 -3.125 3.265625 -4.296875 C 3.265625 -4.296875 4.546875 -5.03125 4.546875 -5.03125 C 5.4375 -5.53125 5.890625 -6.203125 5.890625 -6.984375 C 5.890625 -8.046875 5.046875 -8.84375 3.9375 -8.84375 C 2.71875 -8.84375 2.03125 -8.140625 1.9375 -6.484375 C 1.9375 -6.484375 0.703125 -6.484375 0.703125 -6.484375 C 0.765625 -8.890625 1.953125 -9.921875 3.96875 -9.921875 C 5.859375 -9.921875 7.15625 -8.6875 7.15625 -7.015625 Z M 7.15625 -7.015625 "/>
|
||||
</g>
|
||||
<g id="glyph-3-0-a71a7792">
|
||||
<path d="M 7.09375 -4.78125 C 7.09375 -1.515625 5.953125 0.203125 3.84375 0.203125 C 1.71875 0.203125 0.609375 -1.515625 0.609375 -4.859375 C 0.609375 -8.1875 1.703125 -9.921875 3.84375 -9.921875 C 6 -9.921875 7.09375 -8.21875 7.09375 -4.78125 Z M 5.84375 -4.890625 C 5.84375 -7.546875 5.1875 -8.828125 3.84375 -8.828125 C 2.515625 -8.828125 1.859375 -7.5625 1.859375 -4.84375 C 1.859375 -2.125 2.515625 -0.8125 3.828125 -0.8125 C 5.1875 -0.8125 5.84375 -2.078125 5.84375 -4.890625 Z M 5.84375 -4.890625 "/>
|
||||
</g>
|
||||
<g id="glyph-3-1-a71a7792">
|
||||
<path d="M 2.671875 0 C 2.671875 0 1.21875 0 1.21875 0 C 1.21875 0 1.21875 -1.453125 1.21875 -1.453125 C 1.21875 -1.453125 2.671875 -1.453125 2.671875 -1.453125 C 2.671875 -1.453125 2.671875 0 2.671875 0 Z M 2.671875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-3-2-a71a7792">
|
||||
<path d="M 7.28125 -2.375 C 7.28125 -2.375 5.8125 -2.375 5.8125 -2.375 C 5.8125 -2.375 5.8125 0 5.8125 0 C 5.8125 0 4.578125 0 4.578125 0 C 4.578125 0 4.578125 -2.375 4.578125 -2.375 C 4.578125 -2.375 0.390625 -2.375 0.390625 -2.375 C 0.390625 -2.375 0.390625 -3.6875 0.390625 -3.6875 C 0.390625 -3.6875 4.90625 -9.921875 4.90625 -9.921875 C 4.90625 -9.921875 5.8125 -9.921875 5.8125 -9.921875 C 5.8125 -9.921875 5.8125 -3.484375 5.8125 -3.484375 C 5.8125 -3.484375 7.28125 -3.484375 7.28125 -3.484375 C 7.28125 -3.484375 7.28125 -2.375 7.28125 -2.375 Z M 4.578125 -3.484375 C 4.578125 -3.484375 4.578125 -7.828125 4.578125 -7.828125 C 4.578125 -7.828125 1.46875 -3.484375 1.46875 -3.484375 C 1.46875 -3.484375 4.578125 -3.484375 4.578125 -3.484375 Z M 4.578125 -3.484375 "/>
|
||||
</g>
|
||||
<g id="glyph-3-3-a71a7792">
|
||||
<path d="M 4.859375 0 C 4.859375 0 3.625 0 3.625 0 C 3.625 0 3.625 -7.0625 3.625 -7.0625 C 3.625 -7.0625 1.421875 -7.0625 1.421875 -7.0625 C 1.421875 -7.0625 1.421875 -7.953125 1.421875 -7.953125 C 3.328125 -8.1875 3.609375 -8.40625 4.046875 -9.921875 C 4.046875 -9.921875 4.859375 -9.921875 4.859375 -9.921875 C 4.859375 -9.921875 4.859375 0 4.859375 0 Z M 4.859375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-3-4-a71a7792">
|
||||
<path d="M 7.15625 -7.015625 C 7.15625 -5.796875 6.4375 -4.765625 5.046875 -4.015625 C 5.046875 -4.015625 3.65625 -3.265625 3.65625 -3.265625 C 2.4375 -2.546875 1.984375 -2.03125 1.859375 -1.21875 C 1.859375 -1.21875 7.078125 -1.21875 7.078125 -1.21875 C 7.078125 -1.21875 7.078125 0 7.078125 0 C 7.078125 0 0.46875 0 0.46875 0 C 0.59375 -2.1875 1.1875 -3.125 3.265625 -4.296875 C 3.265625 -4.296875 4.546875 -5.03125 4.546875 -5.03125 C 5.4375 -5.53125 5.890625 -6.203125 5.890625 -6.984375 C 5.890625 -8.046875 5.046875 -8.84375 3.9375 -8.84375 C 2.71875 -8.84375 2.03125 -8.140625 1.9375 -6.484375 C 1.9375 -6.484375 0.703125 -6.484375 0.703125 -6.484375 C 0.765625 -8.890625 1.953125 -9.921875 3.96875 -9.921875 C 5.859375 -9.921875 7.15625 -8.6875 7.15625 -7.015625 Z M 7.15625 -7.015625 "/>
|
||||
</g>
|
||||
<g id="glyph-4-0-a71a7792">
|
||||
<path d="M 9.53125 -5.109375 C 9.53125 -3.53125 9.09375 -2.140625 8.28125 -1.1875 C 7.59375 -0.359375 6.625 0 5.0625 0 C 5.0625 0 1.078125 0 1.078125 0 C 1.078125 0 1.078125 -10.203125 1.078125 -10.203125 C 1.078125 -10.203125 5.0625 -10.203125 5.0625 -10.203125 C 6.640625 -10.203125 7.609375 -9.859375 8.28125 -9.03125 C 9.09375 -8.0625 9.53125 -6.671875 9.53125 -5.109375 Z M 7.4375 -5.09375 C 7.4375 -7.34375 6.65625 -8.453125 5.0625 -8.453125 C 5.0625 -8.453125 3.171875 -8.453125 3.171875 -8.453125 C 3.171875 -8.453125 3.171875 -1.75 3.171875 -1.75 C 3.171875 -1.75 5.0625 -1.75 5.0625 -1.75 C 6.65625 -1.75 7.4375 -2.859375 7.4375 -5.09375 Z M 7.4375 -5.09375 "/>
|
||||
</g>
|
||||
<g id="glyph-4-1-a71a7792">
|
||||
<path d="M 7.34375 0 C 7.34375 0 5.203125 0 5.203125 0 C 5.03125 -0.21875 4.984375 -0.5625 4.984375 -0.953125 C 4.296875 -0.234375 3.53125 0.125 2.6875 0.125 C 1.421875 0.125 0.390625 -0.578125 0.390625 -2.046875 C 0.390625 -3.421875 1.125 -4.0625 2.625 -4.328125 C 2.625 -4.328125 3.40625 -4.46875 3.40625 -4.46875 C 4.375 -4.640625 4.96875 -4.546875 4.96875 -5.34375 C 4.96875 -5.859375 4.59375 -6.109375 3.84375 -6.109375 C 2.875 -6.109375 2.546875 -5.859375 2.453125 -5.0625 C 2.453125 -5.0625 0.5625 -5.0625 0.5625 -5.0625 C 0.6875 -6.8125 1.75 -7.6875 3.796875 -7.6875 C 5.84375 -7.6875 6.890625 -6.90625 6.890625 -5.359375 C 6.890625 -5.359375 6.890625 -1.15625 6.890625 -1.15625 C 6.890625 -0.765625 6.984375 -0.5625 7.34375 -0.234375 C 7.34375 -0.234375 7.34375 0 7.34375 0 Z M 4.96875 -3.234375 C 4.96875 -3.234375 4.96875 -3.5625 4.96875 -3.5625 C 4.75 -3.453125 4.65625 -3.4375 4.140625 -3.328125 C 4.140625 -3.328125 3.46875 -3.203125 3.46875 -3.203125 C 2.65625 -3.046875 2.359375 -2.84375 2.359375 -2.265625 C 2.359375 -1.703125 2.765625 -1.453125 3.421875 -1.453125 C 4.40625 -1.453125 4.96875 -2.09375 4.96875 -3.234375 Z M 4.96875 -3.234375 "/>
|
||||
</g>
|
||||
<g id="glyph-4-2-a71a7792">
|
||||
<path d="M 7.578125 0 C 7.578125 0 5.609375 0 5.609375 0 C 5.609375 0 5.609375 -1 5.609375 -1 C 5.046875 -0.25 4.375 0.125 3.34375 0.125 C 1.734375 0.125 0.8125 -0.828125 0.8125 -2.484375 C 0.8125 -2.484375 0.8125 -7.5625 0.8125 -7.5625 C 0.8125 -7.5625 2.765625 -7.5625 2.765625 -7.5625 C 2.765625 -7.5625 2.765625 -2.890625 2.765625 -2.890625 C 2.765625 -1.984375 3.1875 -1.546875 4.03125 -1.546875 C 4.984375 -1.546875 5.609375 -2.125 5.609375 -3.03125 C 5.609375 -3.03125 5.609375 -7.5625 5.609375 -7.5625 C 5.609375 -7.5625 7.578125 -7.5625 7.578125 -7.5625 C 7.578125 -7.5625 7.578125 0 7.578125 0 Z M 7.578125 0 "/>
|
||||
</g>
|
||||
<g id="glyph-4-3-a71a7792">
|
||||
<path d="M 4.21875 0 C 3.859375 0.015625 3.515625 0.0625 3.078125 0.0625 C 1.796875 0.0625 1.15625 -0.4375 1.15625 -1.625 C 1.15625 -1.625 1.15625 -6.109375 1.15625 -6.109375 C 1.15625 -6.109375 0.203125 -6.109375 0.203125 -6.109375 C 0.203125 -6.109375 0.203125 -7.40625 0.203125 -7.40625 C 0.203125 -7.40625 1.15625 -7.40625 1.15625 -7.40625 C 1.15625 -7.40625 1.15625 -9.4375 1.15625 -9.4375 C 1.15625 -9.4375 3.125 -9.4375 3.125 -9.4375 C 3.125 -9.4375 3.125 -7.40625 3.125 -7.40625 C 3.125 -7.40625 4.21875 -7.40625 4.21875 -7.40625 C 4.21875 -7.40625 4.21875 -6.109375 4.21875 -6.109375 C 4.21875 -6.109375 3.125 -6.109375 3.125 -6.109375 C 3.125 -6.109375 3.125 -2.15625 3.125 -2.15625 C 3.125 -1.484375 3.25 -1.328125 3.765625 -1.328125 C 3.90625 -1.328125 4.015625 -1.34375 4.21875 -1.375 C 4.21875 -1.375 4.21875 0 4.21875 0 Z M 4.21875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-4-4-a71a7792">
|
||||
</g>
|
||||
<g id="glyph-4-5-a71a7792">
|
||||
<path d="M 7.3125 -2.625 C 7.125 -1.015625 5.859375 0.125 4.015625 0.125 C 1.78125 0.125 0.46875 -1.234375 0.46875 -3.71875 C 0.46875 -6.296875 1.796875 -7.6875 4.046875 -7.6875 C 5.9375 -7.6875 7.171875 -6.578125 7.3125 -4.734375 C 7.3125 -4.734375 5.4375 -4.734375 5.4375 -4.734375 C 5.203125 -5.71875 4.828125 -6.109375 4.03125 -6.109375 C 2.796875 -6.109375 2.4375 -5.109375 2.4375 -3.71875 C 2.4375 -2.25 3.03125 -1.453125 4.03125 -1.453125 C 4.78125 -1.453125 5.1875 -1.828125 5.4375 -2.625 C 5.4375 -2.625 7.3125 -2.625 7.3125 -2.625 Z M 7.3125 -2.625 "/>
|
||||
</g>
|
||||
<g id="glyph-4-6-a71a7792">
|
||||
<path d="M 7.53125 -7.5625 C 7.53125 -7.5625 4.421875 1.390625 4.421875 1.390625 C 3.90625 2.828125 3.21875 3.0625 1.90625 3.0625 C 1.671875 3.0625 1.5 3.046875 1.203125 3.015625 C 1.203125 3.015625 1.203125 1.546875 1.203125 1.546875 C 1.453125 1.609375 1.5625 1.625 1.71875 1.625 C 2.40625 1.625 2.9375 1.078125 2.9375 0.359375 C 2.9375 0.359375 2.9375 0.328125 2.9375 0.328125 C 2.9375 0.328125 0.125 -7.5625 0.125 -7.5625 C 0.125 -7.5625 2.28125 -7.5625 2.28125 -7.5625 C 2.28125 -7.5625 3.953125 -2.0625 3.953125 -2.0625 C 3.953125 -2.0625 5.515625 -7.5625 5.515625 -7.5625 C 5.515625 -7.5625 7.53125 -7.5625 7.53125 -7.5625 Z M 7.53125 -7.5625 "/>
|
||||
</g>
|
||||
<g id="glyph-4-7-a71a7792">
|
||||
<path d="M 2.890625 0 C 2.890625 0 0.9375 0 0.9375 0 C 0.9375 0 0.9375 -10.203125 0.9375 -10.203125 C 0.9375 -10.203125 2.890625 -10.203125 2.890625 -10.203125 C 2.890625 -10.203125 2.890625 0 2.890625 0 Z M 2.890625 0 "/>
|
||||
</g>
|
||||
<g id="glyph-4-8-a71a7792">
|
||||
<path d="M 7.34375 -3.5 C 7.34375 -3.5 7.34375 -3.265625 7.34375 -3.265625 C 7.34375 -3.265625 2.265625 -3.265625 2.265625 -3.265625 C 2.328125 -1.796875 2.90625 -1.375 3.84375 -1.375 C 4.546875 -1.375 5.171875 -1.578125 5.328125 -2.125 C 5.328125 -2.125 7.265625 -2.125 7.265625 -2.125 C 6.828125 -0.640625 5.453125 0.125 3.765625 0.125 C 1.625 0.125 0.3125 -1.265625 0.3125 -3.6875 C 0.3125 -6.21875 1.640625 -7.6875 3.8125 -7.6875 C 6.03125 -7.6875 7.34375 -6.109375 7.34375 -3.5 Z M 5.3125 -4.5625 C 5.203125 -5.640625 4.625 -6.1875 3.78125 -6.1875 C 2.90625 -6.1875 2.421875 -5.609375 2.296875 -4.5625 C 2.296875 -4.5625 5.3125 -4.5625 5.3125 -4.5625 Z M 5.3125 -4.5625 "/>
|
||||
</g>
|
||||
<g id="glyph-4-9-a71a7792">
|
||||
<path d="M 8.03125 -3.78125 C 8.03125 -1.484375 6.6875 0.125 4.875 0.125 C 3.921875 0.125 3.25 -0.171875 2.765625 -1.015625 C 2.765625 -1.015625 2.765625 3.046875 2.765625 3.046875 C 2.765625 3.046875 0.8125 3.046875 0.8125 3.046875 C 0.8125 3.046875 0.8125 -7.5625 0.8125 -7.5625 C 0.8125 -7.5625 2.765625 -7.5625 2.765625 -7.5625 C 2.765625 -7.5625 2.765625 -6.4375 2.765625 -6.4375 C 3.25 -7.28125 3.921875 -7.6875 4.875 -7.6875 C 6.84375 -7.6875 8.03125 -6.015625 8.03125 -3.78125 Z M 6.078125 -3.75 C 6.078125 -5.1875 5.421875 -6.046875 4.421875 -6.046875 C 3.4375 -6.046875 2.765625 -5.1875 2.765625 -3.78125 C 2.765625 -2.359375 3.4375 -1.515625 4.421875 -1.515625 C 5.390625 -1.515625 6.078125 -2.375 6.078125 -3.75 Z M 6.078125 -3.75 "/>
|
||||
</g>
|
||||
<g id="glyph-4-10-a71a7792">
|
||||
<path d="M 9.59375 -3.484375 C 9.46875 -1.140625 7.765625 0.171875 5.234375 0.171875 C 2.390625 0.171875 0.609375 -1.8125 0.609375 -5.09375 C 0.609375 -8.40625 2.40625 -10.375 5.296875 -10.375 C 7.59375 -10.375 9.359375 -9.09375 9.546875 -6.75 C 9.546875 -6.75 7.546875 -6.75 7.546875 -6.75 C 7.234375 -8.0625 6.5 -8.578125 5.359375 -8.578125 C 3.703125 -8.578125 2.71875 -7.328125 2.71875 -5.0625 C 2.71875 -2.84375 3.671875 -1.59375 5.296875 -1.59375 C 6.59375 -1.59375 7.421875 -2.1875 7.546875 -3.484375 C 7.546875 -3.484375 9.59375 -3.484375 9.59375 -3.484375 Z M 9.59375 -3.484375 "/>
|
||||
</g>
|
||||
<g id="glyph-4-11-a71a7792">
|
||||
<path d="M 7.96875 -3.71875 C 7.96875 -1.296875 6.53125 0.125 4.234375 0.125 C 1.90625 0.125 0.484375 -1.28125 0.484375 -3.78125 C 0.484375 -6.265625 1.90625 -7.6875 4.21875 -7.6875 C 6.578125 -7.6875 7.96875 -6.28125 7.96875 -3.71875 Z M 6 -3.75 C 6 -5.234375 5.3125 -6.109375 4.234375 -6.109375 C 3.15625 -6.109375 2.453125 -5.21875 2.453125 -3.78125 C 2.453125 -2.34375 3.15625 -1.453125 4.234375 -1.453125 C 5.28125 -1.453125 6 -2.34375 6 -3.75 Z M 6 -3.75 "/>
|
||||
</g>
|
||||
<g id="glyph-4-12-a71a7792">
|
||||
<path d="M 9.25 0 C 9.25 0 7.15625 0 7.15625 0 C 7.15625 0 3.046875 -7.0625 3.046875 -7.0625 C 3.046875 -7.0625 3.046875 0 3.046875 0 C 3.046875 0 0.953125 0 0.953125 0 C 0.953125 0 0.953125 -10.203125 0.953125 -10.203125 C 0.953125 -10.203125 3.109375 -10.203125 3.109375 -10.203125 C 3.109375 -10.203125 7.15625 -3.265625 7.15625 -3.265625 C 7.15625 -3.265625 7.15625 -10.203125 7.15625 -10.203125 C 7.15625 -10.203125 9.25 -10.203125 9.25 -10.203125 C 9.25 -10.203125 9.25 0 9.25 0 Z M 9.25 0 "/>
|
||||
</g>
|
||||
<g id="glyph-5-0-a71a7792">
|
||||
<path d="M 7.34375 -3.5 C 7.34375 -3.5 7.34375 -3.265625 7.34375 -3.265625 C 7.34375 -3.265625 2.265625 -3.265625 2.265625 -3.265625 C 2.328125 -1.796875 2.90625 -1.375 3.84375 -1.375 C 4.546875 -1.375 5.171875 -1.578125 5.328125 -2.125 C 5.328125 -2.125 7.265625 -2.125 7.265625 -2.125 C 6.828125 -0.640625 5.453125 0.125 3.765625 0.125 C 1.625 0.125 0.3125 -1.265625 0.3125 -3.6875 C 0.3125 -6.21875 1.640625 -7.6875 3.8125 -7.6875 C 6.03125 -7.6875 7.34375 -6.109375 7.34375 -3.5 Z M 5.3125 -4.5625 C 5.203125 -5.640625 4.625 -6.1875 3.78125 -6.1875 C 2.90625 -6.1875 2.421875 -5.609375 2.296875 -4.5625 C 2.296875 -4.5625 5.3125 -4.5625 5.3125 -4.5625 Z M 5.3125 -4.5625 "/>
|
||||
</g>
|
||||
<g id="glyph-5-1-a71a7792">
|
||||
<path d="M 4.375 -6.109375 C 4.375 -6.109375 3.21875 -6.109375 3.21875 -6.109375 C 3.21875 -6.109375 3.21875 0 3.21875 0 C 3.21875 0 1.265625 0 1.265625 0 C 1.265625 0 1.265625 -6.109375 1.265625 -6.109375 C 1.265625 -6.109375 0.203125 -6.109375 0.203125 -6.109375 C 0.203125 -6.109375 0.203125 -7.40625 0.203125 -7.40625 C 0.203125 -7.40625 1.265625 -7.40625 1.265625 -7.40625 C 1.265625 -7.40625 1.265625 -8.3125 1.265625 -8.3125 C 1.265625 -9.59375 1.890625 -10.203125 3.1875 -10.203125 C 3.453125 -10.203125 3.953125 -10.1875 4.3125 -10.15625 C 4.3125 -10.15625 4.3125 -8.6875 4.3125 -8.6875 C 4.140625 -8.71875 3.921875 -8.734375 3.75 -8.734375 C 3.390625 -8.734375 3.21875 -8.546875 3.21875 -8.140625 C 3.21875 -8.140625 3.21875 -7.40625 3.21875 -7.40625 C 3.21875 -7.40625 4.375 -7.40625 4.375 -7.40625 C 4.375 -7.40625 4.375 -6.109375 4.375 -6.109375 Z M 4.375 -6.109375 "/>
|
||||
</g>
|
||||
<g id="glyph-5-2-a71a7792">
|
||||
<path d="M 2.890625 0 C 2.890625 0 0.9375 0 0.9375 0 C 0.9375 0 0.9375 -10.203125 0.9375 -10.203125 C 0.9375 -10.203125 2.890625 -10.203125 2.890625 -10.203125 C 2.890625 -10.203125 2.890625 0 2.890625 0 Z M 2.890625 0 "/>
|
||||
</g>
|
||||
<g id="glyph-5-3-a71a7792">
|
||||
<path d="M 7.34375 0 C 7.34375 0 5.203125 0 5.203125 0 C 5.03125 -0.21875 4.984375 -0.5625 4.984375 -0.953125 C 4.296875 -0.234375 3.53125 0.125 2.6875 0.125 C 1.421875 0.125 0.390625 -0.578125 0.390625 -2.046875 C 0.390625 -3.421875 1.125 -4.0625 2.625 -4.328125 C 2.625 -4.328125 3.40625 -4.46875 3.40625 -4.46875 C 4.375 -4.640625 4.96875 -4.546875 4.96875 -5.34375 C 4.96875 -5.859375 4.59375 -6.109375 3.84375 -6.109375 C 2.875 -6.109375 2.546875 -5.859375 2.453125 -5.0625 C 2.453125 -5.0625 0.5625 -5.0625 0.5625 -5.0625 C 0.6875 -6.8125 1.75 -7.6875 3.796875 -7.6875 C 5.84375 -7.6875 6.890625 -6.90625 6.890625 -5.359375 C 6.890625 -5.359375 6.890625 -1.15625 6.890625 -1.15625 C 6.890625 -0.765625 6.984375 -0.5625 7.34375 -0.234375 C 7.34375 -0.234375 7.34375 0 7.34375 0 Z M 4.96875 -3.234375 C 4.96875 -3.234375 4.96875 -3.5625 4.96875 -3.5625 C 4.75 -3.453125 4.65625 -3.4375 4.140625 -3.328125 C 4.140625 -3.328125 3.46875 -3.203125 3.46875 -3.203125 C 2.65625 -3.046875 2.359375 -2.84375 2.359375 -2.265625 C 2.359375 -1.703125 2.765625 -1.453125 3.421875 -1.453125 C 4.40625 -1.453125 4.96875 -2.09375 4.96875 -3.234375 Z M 4.96875 -3.234375 "/>
|
||||
</g>
|
||||
<g id="glyph-5-4-a71a7792">
|
||||
<path d="M 7.28125 -2.234375 C 7.28125 -0.71875 6.109375 0.125 3.96875 0.125 C 1.6875 0.125 0.46875 -0.734375 0.40625 -2.390625 C 0.40625 -2.390625 2.328125 -2.390625 2.328125 -2.390625 C 2.484375 -1.578125 2.96875 -1.40625 3.859375 -1.40625 C 4.78125 -1.40625 5.3125 -1.59375 5.3125 -2.0625 C 5.3125 -2.265625 5.15625 -2.421875 4.65625 -2.578125 C 4.65625 -2.578125 2.328125 -3.296875 2.328125 -3.296875 C 0.921875 -3.734375 0.671875 -4.234375 0.671875 -5.171875 C 0.671875 -6.71875 1.859375 -7.6875 3.78125 -7.6875 C 5.8125 -7.6875 7.046875 -6.71875 7.0625 -5.125 C 7.0625 -5.125 5.1875 -5.125 5.1875 -5.125 C 5.171875 -5.8125 4.703125 -6.140625 3.765625 -6.140625 C 3.078125 -6.140625 2.625 -5.859375 2.625 -5.453125 C 2.625 -5.140625 2.765625 -5.015625 3.3125 -4.859375 C 3.3125 -4.859375 5.796875 -4.140625 5.796875 -4.140625 C 6.796875 -3.84375 7.28125 -3.203125 7.28125 -2.34375 C 7.28125 -2.34375 7.28125 -2.234375 7.28125 -2.234375 Z M 7.28125 -2.234375 "/>
|
||||
</g>
|
||||
<g id="glyph-5-5-a71a7792">
|
||||
<path d="M 11.53125 0 C 11.53125 0 9.578125 0 9.578125 0 C 9.578125 0 9.578125 -5.046875 9.578125 -5.046875 C 9.578125 -5.640625 9.171875 -6.015625 8.515625 -6.015625 C 7.671875 -6.015625 7.171875 -5.453125 7.171875 -4.53125 C 7.171875 -4.53125 7.171875 0 7.171875 0 C 7.171875 0 5.203125 0 5.203125 0 C 5.203125 0 5.203125 -5.046875 5.203125 -5.046875 C 5.203125 -5.640625 4.796875 -6.015625 4.140625 -6.015625 C 3.296875 -6.015625 2.796875 -5.453125 2.796875 -4.53125 C 2.796875 -4.53125 2.796875 0 2.796875 0 C 2.796875 0 0.84375 0 0.84375 0 C 0.84375 0 0.84375 -7.5625 0.84375 -7.5625 C 0.84375 -7.5625 2.78125 -7.5625 2.78125 -7.5625 C 2.78125 -7.5625 2.78125 -6.625 2.78125 -6.625 C 3.4375 -7.390625 3.984375 -7.6875 4.859375 -7.6875 C 5.796875 -7.6875 6.546875 -7.28125 6.921875 -6.5625 C 7.5 -7.34375 8.171875 -7.6875 9.125 -7.6875 C 10.640625 -7.6875 11.53125 -6.8125 11.53125 -5.34375 C 11.53125 -5.34375 11.53125 0 11.53125 0 Z M 11.53125 0 "/>
|
||||
</g>
|
||||
<g id="glyph-5-6-a71a7792">
|
||||
<path d="M 4.21875 0 C 3.859375 0.015625 3.515625 0.0625 3.078125 0.0625 C 1.796875 0.0625 1.15625 -0.4375 1.15625 -1.625 C 1.15625 -1.625 1.15625 -6.109375 1.15625 -6.109375 C 1.15625 -6.109375 0.203125 -6.109375 0.203125 -6.109375 C 0.203125 -6.109375 0.203125 -7.40625 0.203125 -7.40625 C 0.203125 -7.40625 1.15625 -7.40625 1.15625 -7.40625 C 1.15625 -7.40625 1.15625 -9.4375 1.15625 -9.4375 C 1.15625 -9.4375 3.125 -9.4375 3.125 -9.4375 C 3.125 -9.4375 3.125 -7.40625 3.125 -7.40625 C 3.125 -7.40625 4.21875 -7.40625 4.21875 -7.40625 C 4.21875 -7.40625 4.21875 -6.109375 4.21875 -6.109375 C 4.21875 -6.109375 3.125 -6.109375 3.125 -6.109375 C 3.125 -6.109375 3.125 -2.15625 3.125 -2.15625 C 3.125 -1.484375 3.25 -1.328125 3.765625 -1.328125 C 3.90625 -1.328125 4.015625 -1.34375 4.21875 -1.375 C 4.21875 -1.375 4.21875 0 4.21875 0 Z M 4.21875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-5-7-a71a7792">
|
||||
<path d="M 7.96875 -3.71875 C 7.96875 -1.296875 6.53125 0.125 4.234375 0.125 C 1.90625 0.125 0.484375 -1.28125 0.484375 -3.78125 C 0.484375 -6.265625 1.90625 -7.6875 4.21875 -7.6875 C 6.578125 -7.6875 7.96875 -6.28125 7.96875 -3.71875 Z M 6 -3.75 C 6 -5.234375 5.3125 -6.109375 4.234375 -6.109375 C 3.15625 -6.109375 2.453125 -5.21875 2.453125 -3.78125 C 2.453125 -2.34375 3.15625 -1.453125 4.234375 -1.453125 C 5.28125 -1.453125 6 -2.34375 6 -3.75 Z M 6 -3.75 "/>
|
||||
</g>
|
||||
<g id="glyph-6-0-a71a7792">
|
||||
<path d="M 7.09375 -4.78125 C 7.09375 -1.515625 5.953125 0.203125 3.84375 0.203125 C 1.71875 0.203125 0.609375 -1.515625 0.609375 -4.859375 C 0.609375 -8.1875 1.703125 -9.921875 3.84375 -9.921875 C 6 -9.921875 7.09375 -8.21875 7.09375 -4.78125 Z M 5.84375 -4.890625 C 5.84375 -7.546875 5.1875 -8.828125 3.84375 -8.828125 C 2.515625 -8.828125 1.859375 -7.5625 1.859375 -4.84375 C 1.859375 -2.125 2.515625 -0.8125 3.828125 -0.8125 C 5.1875 -0.8125 5.84375 -2.078125 5.84375 -4.890625 Z M 5.84375 -4.890625 "/>
|
||||
</g>
|
||||
<g id="glyph-7-0-a71a7792">
|
||||
<path d="M 7.1875 -3.296875 C 7.1875 -1.1875 5.78125 0.203125 3.78125 0.203125 C 2.015625 0.203125 0.890625 -0.578125 0.484375 -2.546875 C 0.484375 -2.546875 1.71875 -2.546875 1.71875 -2.546875 C 2.015625 -1.421875 2.671875 -0.875 3.75 -0.875 C 5.09375 -0.875 5.921875 -1.6875 5.921875 -3.125 C 5.921875 -4.59375 5.078125 -5.453125 3.75 -5.453125 C 2.984375 -5.453125 2.5 -5.203125 1.9375 -4.515625 C 1.9375 -4.515625 0.796875 -4.515625 0.796875 -4.515625 C 0.796875 -4.515625 1.546875 -9.71875 1.546875 -9.71875 C 1.546875 -9.71875 6.65625 -9.71875 6.65625 -9.71875 C 6.65625 -9.71875 6.65625 -8.5 6.65625 -8.5 C 6.65625 -8.5 2.53125 -8.5 2.53125 -8.5 C 2.53125 -8.5 2.140625 -5.9375 2.140625 -5.9375 C 2.71875 -6.359375 3.28125 -6.53125 3.96875 -6.53125 C 5.875 -6.53125 7.1875 -5.25 7.1875 -3.296875 Z M 7.1875 -3.296875 "/>
|
||||
</g>
|
||||
<g id="glyph-7-1-a71a7792">
|
||||
<path d="M 4.859375 0 C 4.859375 0 3.625 0 3.625 0 C 3.625 0 3.625 -7.0625 3.625 -7.0625 C 3.625 -7.0625 1.421875 -7.0625 1.421875 -7.0625 C 1.421875 -7.0625 1.421875 -7.953125 1.421875 -7.953125 C 3.328125 -8.1875 3.609375 -8.40625 4.046875 -9.921875 C 4.046875 -9.921875 4.859375 -9.921875 4.859375 -9.921875 C 4.859375 -9.921875 4.859375 0 4.859375 0 Z M 4.859375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-7-2-a71a7792">
|
||||
<path d="M 7.09375 -4.78125 C 7.09375 -1.515625 5.953125 0.203125 3.84375 0.203125 C 1.71875 0.203125 0.609375 -1.515625 0.609375 -4.859375 C 0.609375 -8.1875 1.703125 -9.921875 3.84375 -9.921875 C 6 -9.921875 7.09375 -8.21875 7.09375 -4.78125 Z M 5.84375 -4.890625 C 5.84375 -7.546875 5.1875 -8.828125 3.84375 -8.828125 C 2.515625 -8.828125 1.859375 -7.5625 1.859375 -4.84375 C 1.859375 -2.125 2.515625 -0.8125 3.828125 -0.8125 C 5.1875 -0.8125 5.84375 -2.078125 5.84375 -4.890625 Z M 5.84375 -4.890625 "/>
|
||||
</g>
|
||||
<g id="glyph-8-0-a71a7792">
|
||||
<path d="M 4.859375 0 C 4.859375 0 3.625 0 3.625 0 C 3.625 0 3.625 -7.0625 3.625 -7.0625 C 3.625 -7.0625 1.421875 -7.0625 1.421875 -7.0625 C 1.421875 -7.0625 1.421875 -7.953125 1.421875 -7.953125 C 3.328125 -8.1875 3.609375 -8.40625 4.046875 -9.921875 C 4.046875 -9.921875 4.859375 -9.921875 4.859375 -9.921875 C 4.859375 -9.921875 4.859375 0 4.859375 0 Z M 4.859375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-8-1-a71a7792">
|
||||
<path d="M 7.09375 -4.78125 C 7.09375 -1.515625 5.953125 0.203125 3.84375 0.203125 C 1.71875 0.203125 0.609375 -1.515625 0.609375 -4.859375 C 0.609375 -8.1875 1.703125 -9.921875 3.84375 -9.921875 C 6 -9.921875 7.09375 -8.21875 7.09375 -4.78125 Z M 5.84375 -4.890625 C 5.84375 -7.546875 5.1875 -8.828125 3.84375 -8.828125 C 2.515625 -8.828125 1.859375 -7.5625 1.859375 -4.84375 C 1.859375 -2.125 2.515625 -0.8125 3.828125 -0.8125 C 5.1875 -0.8125 5.84375 -2.078125 5.84375 -4.890625 Z M 5.84375 -4.890625 "/>
|
||||
</g>
|
||||
<g id="glyph-9-0-a71a7792">
|
||||
<path d="M 7.09375 -4.78125 C 7.09375 -1.515625 5.953125 0.203125 3.84375 0.203125 C 1.71875 0.203125 0.609375 -1.515625 0.609375 -4.859375 C 0.609375 -8.1875 1.703125 -9.921875 3.84375 -9.921875 C 6 -9.921875 7.09375 -8.21875 7.09375 -4.78125 Z M 5.84375 -4.890625 C 5.84375 -7.546875 5.1875 -8.828125 3.84375 -8.828125 C 2.515625 -8.828125 1.859375 -7.5625 1.859375 -4.84375 C 1.859375 -2.125 2.515625 -0.8125 3.828125 -0.8125 C 5.1875 -0.8125 5.84375 -2.078125 5.84375 -4.890625 Z M 5.84375 -4.890625 "/>
|
||||
</g>
|
||||
<g id="glyph-9-1-a71a7792">
|
||||
<path d="M 2.671875 0 C 2.671875 0 1.21875 0 1.21875 0 C 1.21875 0 1.21875 -1.453125 1.21875 -1.453125 C 1.21875 -1.453125 2.671875 -1.453125 2.671875 -1.453125 C 2.671875 -1.453125 2.671875 0 2.671875 0 Z M 2.671875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-9-2-a71a7792">
|
||||
<path d="M 7.078125 -2.890625 C 7.078125 -1.015625 5.765625 0.203125 3.71875 0.203125 C 1.6875 0.203125 0.609375 -0.78125 0.453125 -3 C 0.453125 -3 1.6875 -3 1.6875 -3 C 1.765625 -1.546875 2.421875 -0.875 3.765625 -0.875 C 5.046875 -0.875 5.828125 -1.625 5.828125 -2.875 C 5.828125 -3.96875 5.125 -4.625 3.765625 -4.625 C 3.765625 -4.625 3.09375 -4.625 3.09375 -4.625 C 3.09375 -4.625 3.09375 -5.65625 3.09375 -5.65625 C 5.0625 -5.65625 5.53125 -6.09375 5.53125 -7.15625 C 5.53125 -8.203125 4.875 -8.84375 3.78125 -8.84375 C 2.515625 -8.84375 1.921875 -8.1875 1.890625 -6.71875 C 1.890625 -6.71875 0.65625 -6.71875 0.65625 -6.71875 C 0.703125 -8.828125 1.765625 -9.921875 3.765625 -9.921875 C 5.65625 -9.921875 6.796875 -8.90625 6.796875 -7.203125 C 6.796875 -6.203125 6.328125 -5.5625 5.40625 -5.1875 C 6.59375 -4.78125 7.078125 -4.09375 7.078125 -2.890625 Z M 7.078125 -2.890625 "/>
|
||||
</g>
|
||||
<g id="glyph-10-0-a71a7792">
|
||||
<path d="M 7.09375 -4.78125 C 7.09375 -1.515625 5.953125 0.203125 3.84375 0.203125 C 1.71875 0.203125 0.609375 -1.515625 0.609375 -4.859375 C 0.609375 -8.1875 1.703125 -9.921875 3.84375 -9.921875 C 6 -9.921875 7.09375 -8.21875 7.09375 -4.78125 Z M 5.84375 -4.890625 C 5.84375 -7.546875 5.1875 -8.828125 3.84375 -8.828125 C 2.515625 -8.828125 1.859375 -7.5625 1.859375 -4.84375 C 1.859375 -2.125 2.515625 -0.8125 3.828125 -0.8125 C 5.1875 -0.8125 5.84375 -2.078125 5.84375 -4.890625 Z M 5.84375 -4.890625 "/>
|
||||
</g>
|
||||
<g id="glyph-10-1-a71a7792">
|
||||
<path d="M 2.671875 0 C 2.671875 0 1.21875 0 1.21875 0 C 1.21875 0 1.21875 -1.453125 1.21875 -1.453125 C 1.21875 -1.453125 2.671875 -1.453125 2.671875 -1.453125 C 2.671875 -1.453125 2.671875 0 2.671875 0 Z M 2.671875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-10-2-a71a7792">
|
||||
<path d="M 7.28125 -2.375 C 7.28125 -2.375 5.8125 -2.375 5.8125 -2.375 C 5.8125 -2.375 5.8125 0 5.8125 0 C 5.8125 0 4.578125 0 4.578125 0 C 4.578125 0 4.578125 -2.375 4.578125 -2.375 C 4.578125 -2.375 0.390625 -2.375 0.390625 -2.375 C 0.390625 -2.375 0.390625 -3.6875 0.390625 -3.6875 C 0.390625 -3.6875 4.90625 -9.921875 4.90625 -9.921875 C 4.90625 -9.921875 5.8125 -9.921875 5.8125 -9.921875 C 5.8125 -9.921875 5.8125 -3.484375 5.8125 -3.484375 C 5.8125 -3.484375 7.28125 -3.484375 7.28125 -3.484375 C 7.28125 -3.484375 7.28125 -2.375 7.28125 -2.375 Z M 4.578125 -3.484375 C 4.578125 -3.484375 4.578125 -7.828125 4.578125 -7.828125 C 4.578125 -7.828125 1.46875 -3.484375 1.46875 -3.484375 C 1.46875 -3.484375 4.578125 -3.484375 4.578125 -3.484375 Z M 4.578125 -3.484375 "/>
|
||||
</g>
|
||||
</g>
|
||||
</defs>
|
||||
<rect x="-67.2" y="-48" width="806.4" height="576" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 44 130 L 656 130 L 656 36 L 44 36 Z M 44 130 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 44 285 L 656 285 L 656 192 L 44 192 Z M 44 285 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 44 441 L 656 441 L 656 347 L 44 347 Z M 44 441 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 134.882812 130 L 134.882812 36 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 297.089844 130 L 297.089844 36 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 459.300781 130 L 459.300781 36 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 621.507812 130 L 621.507812 36 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 44 125.726562 L 656 125.726562 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 44 93.683594 L 656 93.683594 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 44 61.636719 L 656 61.636719 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 130.84375 285 L 130.84375 192 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 299.984375 285 L 299.984375 192 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 469.121094 285 L 469.121094 192 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 638.261719 285 L 638.261719 192 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 44 280.773438 L 656 280.773438 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 44 250.21875 L 656 250.21875 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 44 219.664062 L 656 219.664062 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 116.019531 441 L 116.019531 347 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 278.179688 441 L 278.179688 347 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 440.34375 441 L 440.34375 347 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 602.507812 441 L 602.507812 347 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 44 436.726562 L 656 436.726562 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 44 418.132812 L 656 418.132812 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 44 399.542969 L 656 399.542969 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 44 380.949219 L 656 380.949219 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0.12" stroke-miterlimit="1.154701" d="M 44 362.355469 L 656 362.355469 "/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0-a71a7792" x="130.991531" y="151.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-1-a71a7792" x="293.199768" y="151.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-2-a71a7792" x="451.516022" y="151.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0-a71a7792" x="459.300018" y="151.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-2-a71a7792" x="613.724243" y="151.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-1-a71a7792" x="621.50824" y="151.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0-a71a7792" x="14.539999" y="130.830261"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-1-a71a7792" x="22.323996" y="130.830261"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0-a71a7792" x="26.215994" y="130.830261"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-0-a71a7792" x="14.539999" y="98.784798"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-1-a71a7792" x="22.323996" y="98.784798"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-2-a71a7792" x="26.215994" y="98.784798"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-0-a71a7792" x="14.539999" y="66.739296"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-1-a71a7792" x="22.323996" y="66.739296"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-2-a71a7792" x="26.215994" y="66.739296"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-0-a71a7792" x="282.309998" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-5-0-a71a7792" x="292.41803" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-5-1-a71a7792" x="300.202026" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-1-a71a7792" x="304.864014" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-2-a71a7792" x="312.64801" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-5-2-a71a7792" x="321.202026" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-3-a71a7792" x="325.093994" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-4-a71a7792" x="329.756012" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-5-a71a7792" x="333.64801" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-6-a71a7792" x="341.432007" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-5-a71a7792" x="349.216003" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-7-a71a7792" x="357" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-8-a71a7792" x="360.891998" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-4-a71a7792" x="368.675995" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-9-a71a7792" x="372.567993" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-5-3-a71a7792" x="381.122009" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-5-2-a71a7792" x="388.906006" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-8-a71a7792" x="392.797974" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-3-a71a7792" x="400.58197" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-3-a71a7792" x="405.243988" y="28.948002"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-5-0-a71a7792" x="409.906006" y="28.948002"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 44.705883%, 69.803923%)" fill-opacity="0.8" d="M 71.816406 125.726562 L 73.152344 125.726562 L 74.488281 125.722656 L 77.15625 125.722656 L 78.488281 125.71875 L 79.824219 125.71875 L 81.15625 125.714844 L 82.492188 125.707031 L 83.824219 125.703125 L 85.160156 125.691406 L 86.492188 125.679688 L 87.828125 125.664062 L 89.160156 125.644531 L 90.496094 125.621094 L 91.832031 125.589844 L 93.164062 125.550781 L 94.5 125.5 L 95.832031 125.441406 L 97.167969 125.367188 L 98.5 125.28125 L 99.835938 125.175781 L 101.167969 125.050781 L 102.503906 124.902344 L 103.835938 124.734375 L 105.171875 124.535156 L 106.503906 124.3125 L 107.839844 124.058594 L 109.171875 123.773438 L 110.507812 123.457031 L 111.84375 123.109375 L 113.175781 122.726562 L 114.511719 122.316406 L 115.84375 121.871094 L 117.179688 121.402344 L 118.511719 120.90625 L 119.847656 120.382812 L 121.179688 119.84375 L 122.515625 119.289062 L 123.847656 118.722656 L 125.183594 118.148438 L 126.515625 117.570312 L 127.851562 116.988281 L 129.1875 116.414062 L 130.519531 115.84375 L 131.855469 115.285156 L 133.1875 114.734375 L 134.523438 114.199219 L 135.855469 113.675781 L 137.191406 113.171875 L 138.523438 112.683594 L 139.859375 112.207031 L 141.191406 111.75 L 142.527344 111.308594 L 143.859375 110.882812 L 145.195312 110.46875 L 146.53125 110.070312 L 147.863281 109.683594 L 149.199219 109.304688 L 150.53125 108.933594 L 151.867188 108.570312 L 153.199219 108.207031 L 154.535156 107.839844 L 155.867188 107.46875 L 157.203125 107.085938 L 158.535156 106.6875 L 159.871094 106.261719 L 161.203125 105.8125 L 162.539062 105.324219 L 163.871094 104.792969 L 165.207031 104.210938 L 166.542969 103.578125 L 167.875 102.878906 L 169.210938 102.117188 L 170.542969 101.289062 L 171.878906 100.386719 L 173.210938 99.410156 L 174.546875 98.363281 L 175.878906 97.238281 L 177.214844 96.046875 L 178.546875 94.789062 L 179.882812 93.464844 L 181.214844 92.082031 L 182.550781 90.648438 L 183.886719 89.167969 L 185.21875 87.652344 L 186.554688 86.105469 L 187.886719 84.542969 L 189.222656 82.96875 L 190.554688 81.394531 L 191.890625 79.835938 L 193.222656 78.308594 L 194.558594 76.820312 L 195.890625 75.390625 L 197.226562 74.03125 L 198.558594 72.761719 L 199.894531 71.589844 L 201.230469 70.539062 L 202.5625 69.613281 L 203.898438 68.828125 L 205.230469 68.191406 L 206.566406 67.710938 L 207.898438 67.386719 L 209.234375 67.21875 L 210.566406 67.203125 L 211.902344 67.332031 L 213.234375 67.597656 L 214.570312 67.984375 L 215.902344 68.476562 L 217.238281 69.058594 L 218.570312 69.710938 L 219.90625 70.417969 L 221.242188 71.15625 L 222.574219 71.917969 L 223.910156 72.683594 L 225.242188 73.445312 L 226.578125 74.195312 L 227.910156 74.925781 L 229.246094 75.636719 L 230.578125 76.332031 L 231.914062 77.011719 L 233.246094 77.691406 L 234.582031 78.375 L 235.914062 79.070312 L 237.25 79.792969 L 238.585938 80.554688 L 239.917969 81.363281 L 241.253906 82.230469 L 242.585938 83.160156 L 243.921875 84.160156 L 245.253906 85.234375 L 246.589844 86.378906 L 247.921875 87.597656 L 249.257812 88.886719 L 250.589844 90.234375 L 251.925781 91.632812 L 253.257812 93.078125 L 254.59375 94.558594 L 255.929688 96.058594 L 257.261719 97.566406 L 258.597656 99.078125 L 259.929688 100.578125 L 261.265625 102.054688 L 262.597656 103.5 L 263.933594 104.910156 L 265.265625 106.273438 L 266.601562 107.585938 L 267.933594 108.84375 L 269.269531 110.042969 L 270.601562 111.1875 L 271.9375 112.269531 L 273.273438 113.292969 L 274.605469 114.257812 L 275.941406 115.167969 L 277.273438 116.023438 L 278.609375 116.824219 L 279.941406 117.578125 L 281.277344 118.285156 L 282.609375 118.945312 L 283.945312 119.566406 L 285.277344 120.148438 L 286.613281 120.6875 L 287.945312 121.195312 L 289.28125 121.664062 L 290.613281 122.101562 L 291.949219 122.503906 L 293.285156 122.878906 L 294.617188 123.21875 L 295.953125 123.53125 L 297.285156 123.816406 L 298.621094 124.074219 L 299.953125 124.304688 L 301.289062 124.511719 L 302.621094 124.695312 L 303.957031 124.855469 L 305.289062 125 L 306.625 125.121094 L 307.957031 125.226562 L 309.292969 125.316406 L 310.628906 125.394531 L 311.960938 125.457031 L 313.296875 125.511719 L 314.628906 125.554688 L 315.964844 125.59375 L 317.296875 125.621094 L 318.632812 125.644531 L 319.964844 125.664062 L 321.300781 125.679688 L 322.632812 125.691406 L 323.96875 125.699219 L 325.300781 125.707031 L 327.972656 125.714844 L 329.304688 125.71875 L 330.640625 125.722656 L 333.308594 125.722656 L 334.640625 125.726562 L 337.308594 125.726562 Z M 71.816406 125.726562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(90.196079%, 62.352943%, 0%)" fill-opacity="0.8" d="M 124.5 125.726562 L 127.226562 125.726562 L 128.589844 125.722656 L 131.316406 125.722656 L 132.683594 125.71875 L 135.410156 125.710938 L 139.5 125.6875 L 142.226562 125.65625 L 143.589844 125.632812 L 144.953125 125.605469 L 146.316406 125.574219 L 147.679688 125.53125 L 149.042969 125.484375 L 150.40625 125.425781 L 151.769531 125.355469 L 153.132812 125.273438 L 154.496094 125.179688 L 155.859375 125.074219 L 157.222656 124.953125 L 158.585938 124.816406 L 159.949219 124.667969 L 161.3125 124.503906 L 162.675781 124.324219 L 164.039062 124.136719 L 165.402344 123.933594 L 166.765625 123.722656 L 168.132812 123.5 L 169.496094 123.269531 L 170.859375 123.035156 L 172.222656 122.792969 L 173.585938 122.542969 L 174.949219 122.289062 L 176.3125 122.027344 L 177.675781 121.757812 L 179.039062 121.476562 L 180.402344 121.179688 L 181.765625 120.859375 L 183.128906 120.519531 L 184.492188 120.144531 L 185.855469 119.738281 L 187.21875 119.285156 L 188.582031 118.785156 L 189.945312 118.230469 L 191.308594 117.617188 L 192.671875 116.9375 L 194.035156 116.191406 L 195.398438 115.371094 L 196.761719 114.480469 L 198.125 113.511719 L 199.488281 112.464844 L 200.851562 111.34375 L 202.214844 110.148438 L 203.578125 108.875 L 204.945312 107.53125 L 206.308594 106.121094 L 207.671875 104.640625 L 209.035156 103.097656 L 210.398438 101.496094 L 211.761719 99.84375 L 213.125 98.140625 L 214.488281 96.398438 L 215.851562 94.621094 L 217.214844 92.824219 L 218.578125 91.019531 L 219.941406 89.210938 L 221.304688 87.417969 L 222.667969 85.652344 L 224.03125 83.929688 L 225.394531 82.261719 L 226.757812 80.667969 L 228.121094 79.160156 L 229.484375 77.75 L 230.847656 76.445312 L 232.210938 75.261719 L 233.574219 74.199219 L 234.9375 73.265625 L 236.300781 72.464844 L 237.664062 71.796875 L 239.027344 71.253906 L 240.394531 70.835938 L 241.757812 70.539062 L 243.121094 70.347656 L 244.484375 70.265625 L 245.847656 70.273438 L 247.210938 70.367188 L 248.574219 70.53125 L 249.9375 70.765625 L 251.300781 71.058594 L 252.664062 71.398438 L 254.027344 71.785156 L 255.390625 72.207031 L 256.753906 72.660156 L 258.117188 73.144531 L 259.480469 73.660156 L 260.84375 74.195312 L 262.207031 74.757812 L 263.570312 75.34375 L 264.933594 75.957031 L 266.296875 76.589844 L 267.660156 77.246094 L 269.023438 77.921875 L 270.386719 78.621094 L 271.75 79.335938 L 273.113281 80.0625 L 274.476562 80.800781 L 275.84375 81.546875 L 277.207031 82.292969 L 278.570312 83.03125 L 279.933594 83.765625 L 281.296875 84.484375 L 282.660156 85.1875 L 284.023438 85.871094 L 285.386719 86.53125 L 286.75 87.175781 L 288.113281 87.796875 L 289.476562 88.40625 L 290.839844 89.003906 L 293.566406 90.191406 L 294.929688 90.796875 L 296.292969 91.421875 L 297.65625 92.074219 L 299.019531 92.757812 L 300.382812 93.484375 L 301.746094 94.257812 L 303.109375 95.082031 L 304.472656 95.964844 L 305.835938 96.90625 L 307.199219 97.902344 L 308.5625 98.953125 L 309.925781 100.054688 L 311.289062 101.199219 L 312.65625 102.382812 L 314.019531 103.59375 L 315.382812 104.820312 L 316.746094 106.058594 L 318.109375 107.289062 L 319.472656 108.503906 L 320.835938 109.695312 L 322.199219 110.851562 L 323.5625 111.957031 L 324.925781 113.015625 L 326.289062 114.011719 L 327.652344 114.945312 L 329.015625 115.816406 L 330.378906 116.617188 L 331.742188 117.355469 L 333.105469 118.027344 L 334.46875 118.640625 L 335.832031 119.199219 L 337.195312 119.710938 L 338.558594 120.175781 L 339.921875 120.601562 L 341.285156 120.996094 L 342.648438 121.359375 L 344.011719 121.703125 L 345.375 122.027344 L 346.738281 122.332031 L 348.105469 122.621094 L 349.46875 122.898438 L 350.832031 123.164062 L 352.195312 123.417969 L 353.558594 123.65625 L 354.921875 123.886719 L 356.285156 124.097656 L 357.648438 124.296875 L 359.011719 124.484375 L 360.375 124.652344 L 361.738281 124.804688 L 363.101562 124.945312 L 364.464844 125.066406 L 365.828125 125.175781 L 367.191406 125.269531 L 368.554688 125.351562 L 369.917969 125.421875 L 371.28125 125.480469 L 372.644531 125.53125 L 374.007812 125.574219 L 375.371094 125.605469 L 376.734375 125.632812 L 378.097656 125.65625 L 380.824219 125.6875 L 382.1875 125.695312 L 383.554688 125.703125 L 384.917969 125.710938 L 389.007812 125.722656 L 391.734375 125.722656 L 393.097656 125.726562 L 395.824219 125.726562 Z M 124.5 125.726562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 61.960787%, 45.09804%)" fill-opacity="0.8" d="M 217.753906 125.726562 L 218.839844 125.726562 L 219.929688 125.722656 L 222.109375 125.722656 L 226.46875 125.707031 L 228.648438 125.691406 L 229.738281 125.679688 L 230.824219 125.664062 L 233.003906 125.617188 L 234.09375 125.582031 L 235.183594 125.542969 L 236.273438 125.492188 L 237.363281 125.433594 L 238.453125 125.359375 L 239.542969 125.269531 L 240.632812 125.164062 L 241.722656 125.039062 L 242.808594 124.894531 L 243.898438 124.722656 L 244.988281 124.527344 L 246.078125 124.304688 L 247.167969 124.054688 L 248.257812 123.769531 L 249.347656 123.457031 L 250.4375 123.105469 L 251.527344 122.722656 L 252.617188 122.304688 L 253.707031 121.851562 L 254.792969 121.363281 L 255.882812 120.839844 L 256.972656 120.28125 L 258.0625 119.6875 L 259.152344 119.066406 L 260.242188 118.410156 L 261.332031 117.726562 L 262.421875 117.015625 L 263.511719 116.277344 L 264.601562 115.515625 L 265.691406 114.734375 L 266.777344 113.933594 L 267.867188 113.117188 L 268.957031 112.285156 L 270.046875 111.445312 L 272.226562 109.742188 L 275.496094 107.175781 L 276.585938 106.324219 L 277.675781 105.476562 L 278.761719 104.625 L 279.851562 103.773438 L 280.941406 102.917969 L 282.03125 102.042969 L 283.121094 101.152344 L 284.210938 100.230469 L 285.300781 99.269531 L 286.390625 98.257812 L 287.480469 97.183594 L 288.570312 96.035156 L 289.660156 94.808594 L 290.746094 93.492188 L 291.835938 92.078125 L 292.925781 90.5625 L 294.015625 88.945312 L 295.105469 87.230469 L 296.195312 85.425781 L 297.285156 83.535156 L 298.375 81.582031 L 299.464844 79.578125 L 300.554688 77.546875 L 301.644531 75.507812 L 302.730469 73.488281 L 303.820312 71.515625 L 304.910156 69.613281 L 306 67.808594 L 307.089844 66.125 L 308.179688 64.585938 L 309.269531 63.207031 L 310.359375 62.007812 L 311.449219 61 L 312.539062 60.191406 L 313.628906 59.585938 L 314.714844 59.179688 L 315.804688 58.972656 L 316.894531 58.953125 L 317.984375 59.113281 L 319.074219 59.441406 L 320.164062 59.914062 L 321.253906 60.515625 L 322.34375 61.222656 L 323.433594 62.023438 L 324.523438 62.886719 L 325.613281 63.800781 L 326.703125 64.738281 L 327.789062 65.6875 L 328.878906 66.628906 L 329.96875 67.550781 L 331.058594 68.441406 L 332.148438 69.292969 L 333.238281 70.097656 L 334.328125 70.863281 L 335.417969 71.582031 L 336.507812 72.265625 L 337.597656 72.917969 L 338.6875 73.550781 L 339.773438 74.175781 L 340.863281 74.804688 L 341.953125 75.449219 L 343.042969 76.125 L 344.132812 76.839844 L 345.222656 77.605469 L 346.3125 78.429688 L 347.402344 79.320312 L 348.492188 80.269531 L 349.582031 81.285156 L 350.671875 82.359375 L 351.757812 83.484375 L 352.847656 84.652344 L 353.9375 85.84375 L 355.027344 87.050781 L 356.117188 88.253906 L 357.207031 89.4375 L 358.296875 90.585938 L 359.386719 91.683594 L 360.476562 92.714844 L 361.566406 93.667969 L 362.65625 94.539062 L 363.742188 95.3125 L 364.832031 95.992188 L 365.921875 96.578125 L 367.011719 97.070312 L 368.101562 97.476562 L 369.191406 97.8125 L 370.28125 98.085938 L 371.371094 98.3125 L 372.460938 98.511719 L 373.550781 98.695312 L 374.640625 98.886719 L 375.726562 99.105469 L 376.816406 99.363281 L 377.90625 99.675781 L 378.996094 100.058594 L 380.085938 100.519531 L 381.175781 101.066406 L 382.265625 101.707031 L 383.355469 102.441406 L 384.445312 103.265625 L 385.535156 104.175781 L 386.625 105.164062 L 387.710938 106.222656 L 388.800781 107.335938 L 389.890625 108.496094 L 390.980469 109.6875 L 392.070312 110.890625 L 393.160156 112.097656 L 394.25 113.292969 L 395.339844 114.457031 L 396.429688 115.585938 L 397.519531 116.667969 L 398.609375 117.691406 L 399.695312 118.652344 L 400.785156 119.542969 L 401.875 120.363281 L 402.964844 121.105469 L 404.054688 121.777344 L 405.144531 122.378906 L 406.234375 122.910156 L 407.324219 123.375 L 408.414062 123.777344 L 409.503906 124.125 L 410.59375 124.421875 L 411.679688 124.667969 L 412.769531 124.878906 L 413.859375 125.050781 L 414.949219 125.191406 L 416.039062 125.308594 L 417.128906 125.402344 L 418.21875 125.476562 L 419.308594 125.535156 L 420.398438 125.582031 L 421.488281 125.617188 L 422.578125 125.644531 L 423.664062 125.667969 L 424.753906 125.683594 L 425.84375 125.695312 L 428.023438 125.710938 L 431.292969 125.722656 L 434.5625 125.722656 L 434.5625 125.726562 Z M 217.753906 125.726562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(80.000001%, 47.450981%, 65.490198%)" fill-opacity="0.8" d="M 273.988281 125.726562 L 275.089844 125.722656 L 277.289062 125.722656 L 278.390625 125.71875 L 279.492188 125.71875 L 280.59375 125.714844 L 281.691406 125.710938 L 284.996094 125.6875 L 286.09375 125.671875 L 287.195312 125.65625 L 288.296875 125.632812 L 289.394531 125.605469 L 290.496094 125.570312 L 291.597656 125.527344 L 292.699219 125.476562 L 293.796875 125.410156 L 294.898438 125.332031 L 296 125.238281 L 297.101562 125.125 L 298.199219 124.992188 L 299.300781 124.835938 L 300.402344 124.65625 L 301.503906 124.449219 L 302.601562 124.207031 L 303.703125 123.9375 L 304.804688 123.632812 L 305.902344 123.292969 L 307.003906 122.914062 L 308.105469 122.5 L 309.207031 122.054688 L 310.304688 121.570312 L 311.40625 121.050781 L 312.507812 120.503906 L 313.609375 119.929688 L 314.707031 119.328125 L 315.808594 118.710938 L 316.910156 118.074219 L 318.011719 117.433594 L 319.109375 116.785156 L 320.210938 116.136719 L 321.3125 115.492188 L 322.410156 114.859375 L 323.511719 114.238281 L 324.613281 113.632812 L 325.714844 113.042969 L 326.8125 112.472656 L 327.914062 111.917969 L 329.015625 111.378906 L 330.117188 110.851562 L 331.214844 110.332031 L 333.417969 109.300781 L 334.519531 108.777344 L 335.617188 108.238281 L 336.71875 107.679688 L 337.820312 107.097656 L 338.917969 106.480469 L 340.019531 105.832031 L 341.121094 105.144531 L 342.222656 104.421875 L 343.320312 103.652344 L 344.421875 102.847656 L 345.523438 102 L 346.625 101.121094 L 347.722656 100.210938 L 348.824219 99.273438 L 349.925781 98.316406 L 351.023438 97.339844 L 352.125 96.355469 L 354.328125 94.371094 L 355.425781 93.378906 L 356.527344 92.394531 L 357.628906 91.417969 L 358.730469 90.449219 L 359.828125 89.492188 L 360.929688 88.542969 L 362.03125 87.597656 L 363.132812 86.660156 L 364.230469 85.722656 L 366.433594 83.855469 L 367.53125 82.917969 L 368.632812 81.976562 L 369.734375 81.03125 L 370.835938 80.082031 L 371.933594 79.136719 L 373.035156 78.1875 L 374.136719 77.246094 L 375.238281 76.3125 L 376.335938 75.390625 L 377.4375 74.488281 L 378.539062 73.613281 L 379.640625 72.769531 L 380.738281 71.964844 L 381.839844 71.199219 L 382.941406 70.480469 L 384.039062 69.816406 L 385.140625 69.210938 L 386.242188 68.664062 L 387.34375 68.175781 L 388.441406 67.753906 L 389.542969 67.394531 L 390.644531 67.101562 L 391.746094 66.871094 L 392.84375 66.703125 L 393.945312 66.59375 L 395.046875 66.542969 L 396.148438 66.546875 L 397.246094 66.597656 L 398.347656 66.699219 L 399.449219 66.84375 L 400.546875 67.027344 L 401.648438 67.25 L 402.75 67.5 L 403.851562 67.78125 L 404.949219 68.085938 L 406.050781 68.410156 L 407.152344 68.757812 L 408.253906 69.117188 L 409.351562 69.492188 L 410.453125 69.886719 L 411.554688 70.292969 L 412.65625 70.714844 L 413.753906 71.152344 L 414.855469 71.617188 L 415.957031 72.105469 L 417.054688 72.625 L 418.15625 73.1875 L 419.257812 73.792969 L 420.359375 74.449219 L 421.457031 75.167969 L 422.558594 75.957031 L 423.660156 76.820312 L 424.761719 77.765625 L 425.859375 78.800781 L 426.960938 79.925781 L 428.0625 81.148438 L 429.164062 82.464844 L 430.261719 83.875 L 431.363281 85.375 L 432.464844 86.960938 L 433.5625 88.621094 L 434.664062 90.351562 L 435.765625 92.140625 L 436.867188 93.96875 L 437.964844 95.832031 L 440.167969 99.589844 L 441.269531 101.460938 L 442.367188 103.300781 L 443.46875 105.105469 L 444.570312 106.855469 L 445.667969 108.542969 L 446.769531 110.160156 L 447.871094 111.695312 L 448.972656 113.144531 L 450.070312 114.5 L 451.171875 115.765625 L 452.273438 116.933594 L 453.375 118.003906 L 454.472656 118.984375 L 455.574219 119.867188 L 456.675781 120.664062 L 457.777344 121.378906 L 458.875 122.011719 L 459.976562 122.570312 L 461.078125 123.058594 L 462.175781 123.484375 L 463.277344 123.855469 L 464.378906 124.171875 L 465.480469 124.441406 L 466.578125 124.671875 L 467.679688 124.867188 L 468.78125 125.03125 L 469.882812 125.164062 L 470.980469 125.277344 L 472.082031 125.367188 L 473.183594 125.445312 L 474.285156 125.503906 L 475.382812 125.554688 L 476.484375 125.59375 L 477.585938 125.621094 L 478.683594 125.648438 L 479.785156 125.667969 L 481.988281 125.691406 L 483.085938 125.703125 L 484.1875 125.707031 L 485.289062 125.714844 L 486.390625 125.71875 L 487.488281 125.71875 L 488.589844 125.722656 L 491.890625 125.722656 L 492.992188 125.726562 Z M 273.988281 125.726562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(33.725491%, 70.588237%, 91.37255%)" fill-opacity="0.8" d="M 355.378906 125.726562 L 356.4375 125.726562 L 357.5 125.722656 L 359.617188 125.722656 L 360.675781 125.71875 L 361.734375 125.71875 L 362.792969 125.714844 L 363.851562 125.707031 L 364.910156 125.703125 L 368.085938 125.667969 L 369.144531 125.648438 L 370.203125 125.625 L 371.261719 125.597656 L 372.320312 125.5625 L 373.378906 125.515625 L 374.4375 125.464844 L 375.496094 125.398438 L 376.554688 125.324219 L 377.613281 125.234375 L 378.671875 125.128906 L 379.730469 125.007812 L 380.789062 124.867188 L 381.851562 124.703125 L 382.910156 124.523438 L 383.96875 124.316406 L 385.027344 124.089844 L 386.085938 123.835938 L 387.144531 123.554688 L 388.203125 123.25 L 389.261719 122.917969 L 390.320312 122.554688 L 391.378906 122.164062 L 392.4375 121.742188 L 393.496094 121.289062 L 394.554688 120.800781 L 395.613281 120.277344 L 396.671875 119.71875 L 397.730469 119.117188 L 398.789062 118.472656 L 399.847656 117.78125 L 400.90625 117.042969 L 401.964844 116.25 L 403.023438 115.398438 L 404.082031 114.492188 L 405.140625 113.519531 L 406.203125 112.492188 L 407.261719 111.398438 L 408.320312 110.246094 L 409.378906 109.035156 L 410.4375 107.773438 L 411.496094 106.460938 L 412.554688 105.109375 L 413.613281 103.730469 L 414.671875 102.328125 L 415.730469 100.914062 L 416.789062 99.503906 L 417.847656 98.105469 L 418.90625 96.734375 L 419.964844 95.402344 L 421.023438 94.117188 L 422.082031 92.890625 L 423.140625 91.730469 L 424.199219 90.640625 L 425.257812 89.628906 L 426.316406 88.6875 L 427.375 87.824219 L 428.433594 87.027344 L 429.492188 86.300781 L 430.554688 85.625 L 431.613281 84.996094 L 432.671875 84.402344 L 433.730469 83.832031 L 434.789062 83.269531 L 435.847656 82.703125 L 436.90625 82.121094 L 437.964844 81.507812 L 439.023438 80.851562 L 440.082031 80.144531 L 441.140625 79.375 L 442.199219 78.539062 L 443.257812 77.625 L 444.316406 76.636719 L 445.375 75.570312 L 446.433594 74.421875 L 447.492188 73.199219 L 448.550781 71.90625 L 449.609375 70.550781 L 450.667969 69.140625 L 451.726562 67.691406 L 452.785156 66.21875 L 453.84375 64.734375 L 454.902344 63.265625 L 455.964844 61.832031 L 457.023438 60.449219 L 458.082031 59.148438 L 459.140625 57.953125 L 460.199219 56.882812 L 461.257812 55.960938 L 462.316406 55.207031 L 463.375 54.640625 L 464.433594 54.273438 L 465.492188 54.121094 L 466.550781 54.1875 L 467.609375 54.480469 L 468.667969 54.988281 L 469.726562 55.714844 L 470.785156 56.644531 L 471.84375 57.765625 L 472.902344 59.058594 L 473.960938 60.5 L 475.019531 62.070312 L 476.078125 63.746094 L 477.136719 65.496094 L 478.195312 67.296875 L 479.253906 69.121094 L 480.316406 70.945312 L 481.375 72.746094 L 482.433594 74.5 L 483.492188 76.1875 L 484.550781 77.800781 L 485.609375 79.324219 L 486.667969 80.746094 L 487.726562 82.0625 L 488.785156 83.277344 L 489.84375 84.386719 L 490.902344 85.398438 L 491.960938 86.320312 L 493.019531 87.164062 L 494.078125 87.9375 L 495.136719 88.65625 L 496.195312 89.335938 L 497.253906 89.984375 L 499.371094 91.25 L 500.429688 91.894531 L 501.488281 92.558594 L 502.546875 93.25 L 503.605469 93.980469 L 504.667969 94.75 L 505.726562 95.5625 L 506.785156 96.425781 L 507.84375 97.332031 L 508.902344 98.285156 L 509.960938 99.28125 L 511.019531 100.320312 L 512.078125 101.390625 L 513.136719 102.496094 L 514.195312 103.628906 L 515.253906 104.777344 L 516.3125 105.945312 L 519.488281 109.460938 L 520.546875 110.617188 L 521.605469 111.753906 L 522.664062 112.871094 L 523.722656 113.953125 L 524.78125 115 L 525.839844 116.003906 L 526.898438 116.964844 L 527.957031 117.871094 L 529.019531 118.726562 L 530.078125 119.523438 L 531.136719 120.265625 L 532.195312 120.949219 L 533.253906 121.570312 L 534.3125 122.136719 L 535.371094 122.644531 L 536.429688 123.101562 L 537.488281 123.503906 L 538.546875 123.859375 L 539.605469 124.167969 L 540.664062 124.433594 L 541.722656 124.664062 L 542.78125 124.859375 L 543.839844 125.023438 L 544.898438 125.160156 L 545.957031 125.273438 L 547.015625 125.367188 L 548.074219 125.445312 L 549.132812 125.507812 L 550.191406 125.554688 L 551.25 125.597656 L 552.308594 125.628906 L 553.367188 125.652344 L 554.429688 125.671875 L 556.546875 125.695312 L 558.664062 125.710938 L 561.839844 125.722656 L 563.957031 125.722656 L 565.015625 125.726562 L 566.074219 125.726562 Z M 355.378906 125.726562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(83.529413%, 36.862746%, 0%)" fill-opacity="0.8" d="M 434.488281 125.726562 L 435.460938 125.722656 L 437.40625 125.722656 L 439.351562 125.714844 L 440.328125 125.710938 L 441.300781 125.703125 L 442.273438 125.691406 L 443.246094 125.675781 L 444.21875 125.65625 L 445.191406 125.632812 L 446.167969 125.597656 L 447.140625 125.550781 L 448.113281 125.492188 L 449.085938 125.417969 L 450.058594 125.324219 L 451.035156 125.203125 L 452.007812 125.054688 L 452.980469 124.875 L 453.953125 124.65625 L 454.925781 124.390625 L 455.898438 124.070312 L 456.875 123.695312 L 457.847656 123.253906 L 458.820312 122.742188 L 459.792969 122.152344 L 460.765625 121.476562 L 461.738281 120.710938 L 462.714844 119.851562 L 463.6875 118.886719 L 464.660156 117.824219 L 465.632812 116.652344 L 466.605469 115.378906 L 467.578125 114 L 468.554688 112.527344 L 469.527344 110.964844 L 470.5 109.324219 L 471.472656 107.621094 L 472.445312 105.871094 L 473.421875 104.09375 L 474.394531 102.316406 L 475.367188 100.554688 L 476.339844 98.84375 L 477.3125 97.203125 L 478.285156 95.664062 L 479.261719 94.25 L 480.234375 92.980469 L 481.207031 91.871094 L 482.179688 90.941406 L 483.152344 90.195312 L 484.125 89.636719 L 485.101562 89.265625 L 486.074219 89.070312 L 487.046875 89.035156 L 488.019531 89.148438 L 488.992188 89.390625 L 489.96875 89.730469 L 490.941406 90.148438 L 491.914062 90.613281 L 492.886719 91.105469 L 493.859375 91.59375 L 494.832031 92.054688 L 495.808594 92.464844 L 496.78125 92.800781 L 497.753906 93.042969 L 498.726562 93.171875 L 499.699219 93.167969 L 500.671875 93.019531 L 501.648438 92.710938 L 502.621094 92.230469 L 503.59375 91.574219 L 504.566406 90.734375 L 505.539062 89.707031 L 506.515625 88.496094 L 507.488281 87.109375 L 508.460938 85.554688 L 509.433594 83.84375 L 510.40625 81.996094 L 511.378906 80.027344 L 512.355469 77.960938 L 513.328125 75.820312 L 514.300781 73.625 L 515.273438 71.394531 L 517.21875 66.910156 L 518.195312 64.683594 L 519.167969 62.488281 L 520.140625 60.332031 L 521.113281 58.21875 L 522.085938 56.164062 L 523.0625 54.167969 L 524.035156 52.238281 L 525.007812 50.390625 L 525.980469 48.632812 L 526.953125 46.984375 L 527.925781 45.460938 L 528.902344 44.082031 L 529.875 42.875 L 530.847656 41.863281 L 531.820312 41.074219 L 532.792969 40.535156 L 533.765625 40.273438 L 534.742188 40.304688 L 535.714844 40.648438 L 536.6875 41.320312 L 537.660156 42.324219 L 538.632812 43.65625 L 539.609375 45.3125 L 540.582031 47.277344 L 541.554688 49.53125 L 542.527344 52.042969 L 543.5 54.78125 L 544.472656 57.710938 L 545.449219 60.792969 L 546.421875 63.984375 L 547.394531 67.238281 L 548.367188 70.511719 L 549.339844 73.769531 L 550.3125 76.964844 L 551.289062 80.0625 L 552.261719 83.027344 L 553.234375 85.835938 L 554.207031 88.460938 L 555.179688 90.886719 L 556.15625 93.097656 L 557.128906 95.09375 L 558.101562 96.871094 L 559.074219 98.4375 L 560.046875 99.804688 L 561.019531 100.984375 L 561.996094 102 L 562.96875 102.871094 L 563.941406 103.617188 L 564.914062 104.265625 L 565.886719 104.832031 L 566.859375 105.335938 L 567.835938 105.792969 L 568.808594 106.21875 L 569.78125 106.621094 L 570.753906 107.003906 L 571.726562 107.367188 L 572.703125 107.71875 L 573.675781 108.050781 L 574.648438 108.363281 L 575.621094 108.65625 L 576.59375 108.929688 L 577.566406 109.1875 L 578.542969 109.425781 L 579.515625 109.65625 L 580.488281 109.882812 L 581.460938 110.113281 L 582.433594 110.359375 L 583.40625 110.628906 L 584.382812 110.933594 L 585.355469 111.28125 L 586.328125 111.675781 L 587.300781 112.121094 L 588.273438 112.621094 L 589.25 113.179688 L 590.222656 113.785156 L 591.195312 114.4375 L 592.167969 115.128906 L 593.140625 115.851562 L 594.113281 116.59375 L 595.089844 117.34375 L 596.0625 118.097656 L 597.035156 118.839844 L 598.007812 119.558594 L 598.980469 120.253906 L 599.953125 120.910156 L 600.929688 121.523438 L 601.902344 122.09375 L 602.875 122.617188 L 603.847656 123.085938 L 604.820312 123.507812 L 605.796875 123.878906 L 606.769531 124.203125 L 607.742188 124.480469 L 608.714844 124.71875 L 609.6875 124.917969 L 610.660156 125.085938 L 611.636719 125.226562 L 612.609375 125.335938 L 613.582031 125.425781 L 614.554688 125.5 L 615.527344 125.554688 L 616.5 125.597656 L 617.476562 125.632812 L 618.449219 125.660156 L 620.394531 125.691406 L 621.367188 125.703125 L 622.339844 125.710938 L 623.316406 125.714844 L 625.261719 125.722656 L 627.207031 125.722656 L 628.183594 125.726562 Z M 434.488281 125.726562 "/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-6-0-a71a7792" x="126.952354" y="306.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-7-0-a71a7792" x="296.091309" y="306.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-8-0-a71a7792" x="461.338318" y="306.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-8-1-a71a7792" x="469.122314" y="306.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-7-1-a71a7792" x="630.477234" y="306.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-7-0-a71a7792" x="638.26123" y="306.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-0-a71a7792" x="14.539999" y="285.875732"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-1-a71a7792" x="22.323996" y="285.875732"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-0-a71a7792" x="26.215994" y="285.875732"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0-a71a7792" x="14.539999" y="255.321579"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-1-a71a7792" x="22.323996" y="255.321579"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-2-a71a7792" x="26.215994" y="255.321579"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-0-a71a7792" x="14.539999" y="224.767426"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-1-a71a7792" x="22.323996" y="224.767426"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-2-a71a7792" x="26.215994" y="224.767426"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-10-a71a7792" x="279.979004" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-2-a71a7792" x="290.087006" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-5-4-a71a7792" x="298.641022" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-3-a71a7792" x="306.425018" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-11-a71a7792" x="311.087006" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-5-5-a71a7792" x="319.641022" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-4-a71a7792" x="332.087006" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-5-a71a7792" x="335.979004" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-6-a71a7792" x="343.763" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-5-a71a7792" x="351.546997" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-7-a71a7792" x="359.330994" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-8-a71a7792" x="363.222992" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-4-a71a7792" x="371.006989" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-9-a71a7792" x="374.898987" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-5-3-a71a7792" x="383.453003" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-5-2-a71a7792" x="391.237" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-5-0-a71a7792" x="395.128998" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-5-6-a71a7792" x="402.912994" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-3-a71a7792" x="407.574982" y="184.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-5-0-a71a7792" x="412.237" y="184.947998"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 0%, 0%)" fill-opacity="1" d="M 71.816406 280.769531 L 74.269531 280.769531 L 75.496094 280.765625 L 76.71875 280.765625 L 79.171875 280.757812 L 80.398438 280.75 L 81.621094 280.742188 L 84.074219 280.71875 L 85.300781 280.699219 L 86.523438 280.675781 L 87.75 280.644531 L 88.976562 280.605469 L 90.203125 280.558594 L 91.425781 280.496094 L 92.652344 280.421875 L 93.878906 280.328125 L 95.101562 280.214844 L 96.328125 280.078125 L 97.554688 279.914062 L 98.78125 279.714844 L 100.003906 279.484375 L 101.230469 279.214844 L 102.457031 278.902344 L 103.683594 278.539062 L 104.90625 278.128906 L 106.132812 277.667969 L 107.359375 277.148438 L 108.585938 276.574219 L 109.808594 275.941406 L 111.035156 275.257812 L 112.261719 274.515625 L 113.488281 273.722656 L 114.710938 272.886719 L 115.9375 272.007812 L 117.164062 271.09375 L 118.386719 270.15625 L 119.613281 269.203125 L 122.066406 267.28125 L 123.289062 266.332031 L 124.515625 265.402344 L 125.742188 264.503906 L 126.96875 263.640625 L 128.191406 262.820312 L 129.417969 262.046875 L 130.644531 261.320312 L 131.871094 260.644531 L 133.09375 260.019531 L 134.320312 259.441406 L 135.546875 258.902344 L 136.773438 258.402344 L 137.996094 257.933594 L 139.222656 257.488281 L 140.449219 257.058594 L 141.671875 256.636719 L 142.898438 256.21875 L 144.125 255.792969 L 145.351562 255.355469 L 146.574219 254.90625 L 147.800781 254.4375 L 149.027344 253.945312 L 150.253906 253.433594 L 151.476562 252.898438 L 152.703125 252.34375 L 153.929688 251.769531 L 155.15625 251.171875 L 156.378906 250.5625 L 157.605469 249.933594 L 158.832031 249.289062 L 160.058594 248.632812 L 161.28125 247.957031 L 162.507812 247.269531 L 163.734375 246.566406 L 164.957031 245.84375 L 166.183594 245.105469 L 167.410156 244.34375 L 168.636719 243.558594 L 169.859375 242.75 L 171.085938 241.914062 L 172.3125 241.054688 L 173.539062 240.171875 L 174.761719 239.261719 L 175.988281 238.332031 L 177.214844 237.382812 L 178.441406 236.421875 L 179.664062 235.453125 L 180.890625 234.480469 L 182.117188 233.519531 L 183.34375 232.570312 L 184.566406 231.640625 L 185.792969 230.746094 L 187.019531 229.894531 L 188.242188 229.085938 L 189.46875 228.339844 L 190.695312 227.65625 L 191.921875 227.039062 L 193.144531 226.503906 L 194.371094 226.046875 L 195.597656 225.671875 L 196.824219 225.378906 L 198.046875 225.171875 L 199.273438 225.046875 L 200.5 225 L 201.726562 225.027344 L 202.949219 225.125 L 204.175781 225.285156 L 205.402344 225.503906 L 206.628906 225.773438 L 207.851562 226.085938 L 209.078125 226.441406 L 210.304688 226.828125 L 211.527344 227.246094 L 212.753906 227.691406 L 213.980469 228.164062 L 215.207031 228.667969 L 216.429688 229.199219 L 217.65625 229.761719 L 218.882812 230.367188 L 220.109375 231.015625 L 221.332031 231.714844 L 222.558594 232.46875 L 223.785156 233.289062 L 225.011719 234.183594 L 226.234375 235.152344 L 227.460938 236.203125 L 228.6875 237.335938 L 229.914062 238.558594 L 231.136719 239.863281 L 232.363281 241.253906 L 233.589844 242.71875 L 234.8125 244.253906 L 236.039062 245.855469 L 237.265625 247.503906 L 238.492188 249.195312 L 239.714844 250.914062 L 240.941406 252.640625 L 242.167969 254.371094 L 243.394531 256.085938 L 244.617188 257.769531 L 245.84375 259.414062 L 247.070312 261.003906 L 248.296875 262.535156 L 249.519531 263.992188 L 250.746094 265.375 L 251.972656 266.675781 L 253.199219 267.890625 L 254.421875 269.023438 L 255.648438 270.070312 L 256.875 271.035156 L 258.097656 271.921875 L 259.324219 272.734375 L 260.550781 273.472656 L 261.777344 274.148438 L 263 274.765625 L 264.226562 275.332031 L 265.453125 275.84375 L 266.679688 276.316406 L 267.902344 276.75 L 269.128906 277.144531 L 270.355469 277.511719 L 271.582031 277.847656 L 272.804688 278.15625 L 274.03125 278.441406 L 275.257812 278.703125 L 276.484375 278.941406 L 277.707031 279.164062 L 278.933594 279.363281 L 280.160156 279.546875 L 281.382812 279.710938 L 282.609375 279.859375 L 283.835938 279.992188 L 285.0625 280.109375 L 286.285156 280.214844 L 287.511719 280.304688 L 288.738281 280.382812 L 289.964844 280.449219 L 291.1875 280.507812 L 292.414062 280.558594 L 293.640625 280.597656 L 294.867188 280.632812 L 296.089844 280.660156 L 297.316406 280.683594 L 298.542969 280.703125 L 299.769531 280.71875 L 300.992188 280.730469 L 302.21875 280.742188 L 303.445312 280.75 L 304.667969 280.753906 L 308.347656 280.765625 L 309.570312 280.765625 L 310.796875 280.769531 L 315.699219 280.769531 L 315.699219 280.773438 L 71.816406 280.773438 Z M 71.816406 280.769531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 50.196081%, 0%)" fill-opacity="1" d="M 138.191406 280.769531 L 143.035156 280.769531 L 147.878906 280.753906 L 150.300781 280.738281 L 151.515625 280.726562 L 153.9375 280.695312 L 155.148438 280.671875 L 156.359375 280.640625 L 157.570312 280.605469 L 158.78125 280.5625 L 159.992188 280.507812 L 161.203125 280.445312 L 162.414062 280.367188 L 163.625 280.28125 L 164.835938 280.179688 L 166.046875 280.0625 L 167.257812 279.929688 L 168.472656 279.785156 L 169.683594 279.621094 L 170.894531 279.445312 L 172.105469 279.25 L 173.316406 279.046875 L 174.527344 278.828125 L 175.738281 278.597656 L 176.949219 278.359375 L 178.160156 278.113281 L 179.371094 277.863281 L 180.582031 277.605469 L 183.003906 277.082031 L 184.214844 276.8125 L 185.429688 276.542969 L 186.640625 276.265625 L 187.851562 275.976562 L 189.0625 275.679688 L 190.273438 275.367188 L 191.484375 275.03125 L 192.695312 274.671875 L 193.90625 274.285156 L 195.117188 273.863281 L 196.328125 273.40625 L 197.539062 272.90625 L 198.75 272.363281 L 199.960938 271.78125 L 201.175781 271.152344 L 202.386719 270.480469 L 203.597656 269.769531 L 204.808594 269.023438 L 206.019531 268.242188 L 207.230469 267.429688 L 208.441406 266.59375 L 209.652344 265.738281 L 210.863281 264.863281 L 212.074219 263.980469 L 213.285156 263.082031 L 214.496094 262.179688 L 215.707031 261.269531 L 216.917969 260.351562 L 218.132812 259.425781 L 219.34375 258.488281 L 220.554688 257.535156 L 221.765625 256.566406 L 222.976562 255.578125 L 224.1875 254.5625 L 225.398438 253.519531 L 226.609375 252.441406 L 227.820312 251.324219 L 229.03125 250.167969 L 230.242188 248.972656 L 231.453125 247.734375 L 232.664062 246.449219 L 233.878906 245.125 L 235.089844 243.757812 L 236.300781 242.355469 L 237.511719 240.914062 L 238.722656 239.445312 L 239.933594 237.949219 L 241.144531 236.433594 L 242.355469 234.902344 L 243.566406 233.367188 L 244.777344 231.835938 L 245.988281 230.3125 L 247.199219 228.8125 L 248.410156 227.339844 L 249.621094 225.917969 L 250.835938 224.546875 L 252.046875 223.246094 L 253.257812 222.027344 L 254.46875 220.902344 L 255.679688 219.886719 L 256.890625 218.984375 L 258.101562 218.214844 L 259.3125 217.578125 L 260.523438 217.085938 L 261.734375 216.738281 L 262.945312 216.539062 L 264.15625 216.480469 L 265.367188 216.566406 L 266.578125 216.78125 L 267.792969 217.121094 L 269.003906 217.570312 L 270.214844 218.113281 L 271.425781 218.734375 L 272.636719 219.425781 L 273.847656 220.164062 L 275.058594 220.933594 L 276.269531 221.730469 L 277.480469 222.535156 L 278.691406 223.34375 L 279.902344 224.144531 L 281.113281 224.941406 L 282.324219 225.730469 L 283.539062 226.519531 L 284.75 227.304688 L 285.960938 228.101562 L 287.171875 228.914062 L 288.382812 229.757812 L 289.59375 230.640625 L 290.804688 231.574219 L 292.015625 232.566406 L 293.226562 233.625 L 294.4375 234.757812 L 295.648438 235.964844 L 296.859375 237.25 L 298.070312 238.609375 L 299.28125 240.035156 L 300.496094 241.519531 L 301.707031 243.054688 L 302.917969 244.628906 L 304.128906 246.226562 L 305.339844 247.835938 L 306.550781 249.441406 L 307.761719 251.03125 L 308.972656 252.597656 L 310.183594 254.121094 L 311.394531 255.597656 L 312.605469 257.023438 L 313.816406 258.390625 L 315.027344 259.699219 L 316.242188 260.945312 L 317.453125 262.128906 L 318.664062 263.257812 L 319.875 264.328125 L 321.085938 265.351562 L 322.296875 266.328125 L 323.507812 267.261719 L 324.71875 268.15625 L 325.929688 269.015625 L 327.140625 269.84375 L 328.351562 270.644531 L 329.5625 271.414062 L 330.773438 272.15625 L 331.984375 272.871094 L 333.199219 273.558594 L 334.410156 274.214844 L 335.621094 274.84375 L 336.832031 275.4375 L 338.042969 276.003906 L 339.253906 276.53125 L 340.464844 277.023438 L 341.675781 277.480469 L 342.886719 277.902344 L 344.097656 278.285156 L 345.308594 278.632812 L 346.519531 278.945312 L 347.730469 279.222656 L 348.941406 279.46875 L 350.15625 279.683594 L 351.367188 279.867188 L 352.578125 280.027344 L 353.789062 280.167969 L 355 280.28125 L 356.210938 280.378906 L 357.421875 280.457031 L 358.632812 280.523438 L 359.84375 280.578125 L 361.054688 280.621094 L 362.265625 280.65625 L 363.476562 280.683594 L 364.6875 280.707031 L 365.902344 280.722656 L 368.324219 280.746094 L 369.535156 280.753906 L 373.167969 280.765625 L 374.378906 280.765625 L 375.589844 280.769531 L 379.222656 280.769531 L 379.222656 280.773438 L 138.191406 280.773438 Z M 138.191406 280.769531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 100%)" fill-opacity="1" d="M 193.652344 280.769531 L 196.097656 280.769531 L 198.542969 280.761719 L 200.988281 280.746094 L 202.207031 280.730469 L 203.429688 280.710938 L 204.652344 280.679688 L 205.875 280.640625 L 207.097656 280.582031 L 208.320312 280.507812 L 209.542969 280.414062 L 210.765625 280.292969 L 211.988281 280.140625 L 213.210938 279.953125 L 214.433594 279.734375 L 215.65625 279.476562 L 216.878906 279.183594 L 218.101562 278.863281 L 219.324219 278.515625 L 220.546875 278.152344 L 221.769531 277.785156 L 222.992188 277.425781 L 224.214844 277.09375 L 225.4375 276.796875 L 226.660156 276.554688 L 227.882812 276.378906 L 229.105469 276.277344 L 230.328125 276.253906 L 231.550781 276.308594 L 232.769531 276.445312 L 233.992188 276.652344 L 235.214844 276.917969 L 236.4375 277.230469 L 237.660156 277.574219 L 238.882812 277.9375 L 240.105469 278.304688 L 241.328125 278.664062 L 242.550781 279 L 243.773438 279.308594 L 244.996094 279.585938 L 246.21875 279.824219 L 247.441406 280.027344 L 248.664062 280.191406 L 249.886719 280.324219 L 251.109375 280.421875 L 252.332031 280.488281 L 253.554688 280.523438 L 254.777344 280.535156 L 256 280.515625 L 257.222656 280.464844 L 258.445312 280.378906 L 259.667969 280.257812 L 260.890625 280.089844 L 262.113281 279.875 L 263.332031 279.601562 L 264.554688 279.269531 L 265.777344 278.867188 L 267 278.398438 L 268.222656 277.855469 L 269.445312 277.246094 L 270.667969 276.578125 L 271.890625 275.851562 L 273.113281 275.089844 L 274.335938 274.296875 L 276.78125 272.703125 L 278.003906 271.933594 L 279.226562 271.199219 L 280.449219 270.507812 L 281.671875 269.867188 L 282.894531 269.277344 L 284.117188 268.730469 L 285.339844 268.21875 L 286.5625 267.726562 L 287.785156 267.238281 L 289.007812 266.730469 L 290.230469 266.191406 L 291.453125 265.601562 L 292.675781 264.9375 L 293.898438 264.191406 L 295.117188 263.335938 L 296.339844 262.371094 L 297.5625 261.269531 L 298.785156 260.027344 L 300.007812 258.625 L 301.230469 257.046875 L 302.453125 255.285156 L 303.675781 253.320312 L 304.898438 251.140625 L 306.121094 248.746094 L 307.34375 246.128906 L 308.566406 243.300781 L 309.789062 240.269531 L 311.011719 237.0625 L 312.234375 233.710938 L 313.457031 230.257812 L 314.679688 226.746094 L 315.902344 223.226562 L 317.125 219.753906 L 318.347656 216.382812 L 319.570312 213.167969 L 320.792969 210.152344 L 322.015625 207.375 L 323.238281 204.875 L 324.460938 202.675781 L 325.679688 200.792969 L 326.902344 199.238281 L 328.125 198.011719 L 329.347656 197.113281 L 330.570312 196.527344 L 331.792969 196.238281 L 333.015625 196.226562 L 334.238281 196.464844 L 335.460938 196.929688 L 336.683594 197.589844 L 337.90625 198.417969 L 339.128906 199.390625 L 340.351562 200.484375 L 341.574219 201.691406 L 342.796875 203 L 344.019531 204.40625 L 345.242188 205.914062 L 346.464844 207.539062 L 347.6875 209.285156 L 348.910156 211.167969 L 350.132812 213.199219 L 351.355469 215.386719 L 352.578125 217.742188 L 353.800781 220.257812 L 355.023438 222.929688 L 356.242188 225.746094 L 357.464844 228.683594 L 358.6875 231.71875 L 359.910156 234.820312 L 361.132812 237.949219 L 362.355469 241.074219 L 363.578125 244.152344 L 364.800781 247.148438 L 366.023438 250.027344 L 367.246094 252.746094 L 368.46875 255.28125 L 369.691406 257.605469 L 370.914062 259.691406 L 372.136719 261.53125 L 373.359375 263.109375 L 374.582031 264.425781 L 375.804688 265.492188 L 377.027344 266.316406 L 378.25 266.921875 L 379.472656 267.332031 L 380.695312 267.578125 L 381.917969 267.695312 L 383.140625 267.710938 L 384.363281 267.664062 L 385.585938 267.574219 L 386.804688 267.46875 L 388.027344 267.367188 L 389.25 267.289062 L 390.472656 267.242188 L 391.695312 267.238281 L 392.917969 267.285156 L 394.140625 267.394531 L 395.363281 267.574219 L 396.585938 267.824219 L 397.808594 268.160156 L 399.03125 268.585938 L 400.253906 269.097656 L 401.476562 269.703125 L 402.699219 270.386719 L 403.921875 271.144531 L 405.144531 271.960938 L 406.367188 272.816406 L 408.8125 274.558594 L 410.035156 275.40625 L 411.257812 276.210938 L 412.480469 276.957031 L 413.703125 277.632812 L 414.925781 278.230469 L 416.148438 278.75 L 417.367188 279.191406 L 418.589844 279.558594 L 419.8125 279.855469 L 421.035156 280.089844 L 422.257812 280.277344 L 423.480469 280.417969 L 424.703125 280.523438 L 425.925781 280.597656 L 427.148438 280.65625 L 428.371094 280.695312 L 429.59375 280.722656 L 430.816406 280.738281 L 432.039062 280.75 L 434.484375 280.765625 L 435.707031 280.765625 L 436.929688 280.769531 L 436.929688 280.773438 L 193.652344 280.773438 Z M 193.652344 280.769531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 0%)" fill-opacity="1" d="M 259.664062 280.769531 L 265.121094 280.769531 L 266.484375 280.765625 L 267.847656 280.765625 L 270.574219 280.757812 L 274.664062 280.734375 L 276.03125 280.71875 L 277.394531 280.703125 L 278.757812 280.683594 L 280.121094 280.65625 L 281.484375 280.625 L 282.847656 280.585938 L 284.210938 280.539062 L 285.574219 280.484375 L 286.9375 280.417969 L 288.300781 280.335938 L 289.667969 280.246094 L 291.03125 280.136719 L 292.394531 280.015625 L 293.757812 279.878906 L 295.121094 279.722656 L 296.484375 279.550781 L 297.847656 279.359375 L 299.210938 279.152344 L 300.574219 278.929688 L 301.9375 278.6875 L 303.304688 278.429688 L 304.667969 278.15625 L 306.03125 277.871094 L 307.394531 277.574219 L 308.757812 277.261719 L 310.121094 276.9375 L 311.484375 276.601562 L 312.847656 276.253906 L 314.210938 275.898438 L 315.574219 275.523438 L 316.9375 275.136719 L 318.304688 274.734375 L 319.667969 274.3125 L 321.03125 273.871094 L 322.394531 273.402344 L 323.757812 272.910156 L 325.121094 272.386719 L 326.484375 271.835938 L 327.847656 271.246094 L 329.210938 270.625 L 330.574219 269.964844 L 331.941406 269.269531 L 333.304688 268.535156 L 334.667969 267.761719 L 336.03125 266.957031 L 337.394531 266.117188 L 338.757812 265.242188 L 340.121094 264.339844 L 341.484375 263.40625 L 342.847656 262.445312 L 344.210938 261.464844 L 345.578125 260.460938 L 346.941406 259.4375 L 348.304688 258.394531 L 349.667969 257.339844 L 351.03125 256.277344 L 352.394531 255.203125 L 353.757812 254.125 L 355.121094 253.050781 L 356.484375 251.980469 L 357.847656 250.925781 L 359.214844 249.886719 L 360.578125 248.875 L 361.941406 247.898438 L 363.304688 246.960938 L 364.667969 246.074219 L 366.03125 245.242188 L 367.394531 244.472656 L 368.757812 243.761719 L 370.121094 243.121094 L 371.484375 242.546875 L 372.851562 242.035156 L 374.214844 241.585938 L 375.578125 241.1875 L 376.941406 240.832031 L 378.304688 240.511719 L 379.667969 240.214844 L 381.03125 239.921875 L 382.394531 239.621094 L 383.757812 239.300781 L 385.121094 238.945312 L 386.484375 238.539062 L 387.851562 238.070312 L 389.214844 237.535156 L 390.578125 236.921875 L 391.941406 236.226562 L 393.304688 235.453125 L 394.667969 234.601562 L 396.03125 233.679688 L 397.394531 232.699219 L 398.757812 231.667969 L 400.121094 230.609375 L 401.488281 229.539062 L 402.851562 228.476562 L 404.214844 227.445312 L 405.578125 226.464844 L 406.941406 225.554688 L 408.304688 224.742188 L 409.667969 224.039062 L 411.03125 223.464844 L 412.394531 223.03125 L 413.757812 222.75 L 415.125 222.628906 L 416.488281 222.671875 L 417.851562 222.886719 L 419.214844 223.265625 L 420.578125 223.808594 L 421.941406 224.515625 L 423.304688 225.375 L 424.667969 226.386719 L 426.03125 227.535156 L 427.394531 228.816406 L 428.761719 230.222656 L 430.125 231.738281 L 431.488281 233.359375 L 432.851562 235.070312 L 434.214844 236.859375 L 435.578125 238.71875 L 436.941406 240.632812 L 438.304688 242.585938 L 439.667969 244.566406 L 441.03125 246.558594 L 442.398438 248.542969 L 443.761719 250.507812 L 445.125 252.4375 L 446.488281 254.316406 L 447.851562 256.132812 L 449.214844 257.875 L 450.578125 259.527344 L 451.941406 261.082031 L 453.304688 262.535156 L 454.667969 263.882812 L 456.035156 265.121094 L 457.398438 266.25 L 458.761719 267.277344 L 460.125 268.203125 L 461.488281 269.035156 L 462.851562 269.785156 L 464.214844 270.457031 L 465.578125 271.0625 L 466.941406 271.613281 L 468.304688 272.121094 L 469.671875 272.59375 L 471.035156 273.039062 L 472.398438 273.464844 L 473.761719 273.878906 L 476.488281 274.683594 L 477.851562 275.082031 L 480.578125 275.871094 L 483.304688 276.644531 L 484.671875 277.019531 L 486.035156 277.382812 L 487.398438 277.734375 L 488.761719 278.070312 L 490.125 278.386719 L 491.488281 278.683594 L 492.851562 278.957031 L 494.214844 279.207031 L 495.578125 279.433594 L 496.941406 279.636719 L 498.308594 279.816406 L 499.671875 279.976562 L 501.035156 280.113281 L 502.398438 280.234375 L 503.761719 280.332031 L 505.125 280.417969 L 506.488281 280.488281 L 507.851562 280.550781 L 509.214844 280.597656 L 510.578125 280.636719 L 511.945312 280.667969 L 513.308594 280.691406 L 514.671875 280.710938 L 516.035156 280.726562 L 517.398438 280.738281 L 520.125 280.753906 L 524.214844 280.765625 L 525.582031 280.769531 L 531.035156 280.769531 L 531.035156 280.773438 L 259.664062 280.773438 Z M 259.664062 280.769531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 64.705884%, 0%)" fill-opacity="1" d="M 337.078125 280.769531 L 342.445312 280.769531 L 343.785156 280.765625 L 345.128906 280.765625 L 346.46875 280.761719 L 347.8125 280.757812 L 349.152344 280.75 L 350.496094 280.742188 L 351.835938 280.730469 L 353.179688 280.71875 L 354.519531 280.703125 L 355.863281 280.679688 L 357.203125 280.652344 L 358.546875 280.621094 L 359.886719 280.582031 L 361.226562 280.53125 L 362.570312 280.476562 L 363.910156 280.40625 L 365.253906 280.328125 L 366.59375 280.238281 L 367.9375 280.132812 L 369.277344 280.015625 L 370.621094 279.886719 L 371.960938 279.742188 L 373.304688 279.585938 L 374.644531 279.417969 L 375.988281 279.238281 L 377.328125 279.050781 L 378.671875 278.855469 L 380.011719 278.65625 L 381.355469 278.453125 L 382.695312 278.246094 L 384.039062 278.042969 L 385.378906 277.835938 L 386.722656 277.632812 L 389.402344 277.226562 L 390.746094 277.015625 L 392.085938 276.800781 L 393.429688 276.574219 L 394.769531 276.324219 L 396.113281 276.050781 L 397.453125 275.742188 L 398.796875 275.386719 L 400.136719 274.980469 L 401.480469 274.511719 L 402.820312 273.964844 L 404.164062 273.339844 L 405.503906 272.621094 L 406.847656 271.804688 L 408.1875 270.886719 L 409.53125 269.859375 L 410.871094 268.722656 L 412.214844 267.472656 L 413.554688 266.117188 L 414.898438 264.660156 L 416.238281 263.109375 L 417.578125 261.472656 L 418.921875 259.765625 L 420.261719 258.003906 L 421.605469 256.199219 L 422.945312 254.375 L 424.289062 252.550781 L 425.628906 250.742188 L 426.972656 248.96875 L 428.3125 247.253906 L 429.65625 245.613281 L 430.996094 244.0625 L 432.339844 242.613281 L 433.679688 241.269531 L 435.023438 240.042969 L 436.363281 238.929688 L 437.707031 237.929688 L 439.046875 237.027344 L 440.390625 236.222656 L 441.730469 235.492188 L 443.074219 234.820312 L 444.414062 234.1875 L 445.757812 233.582031 L 447.097656 232.980469 L 448.4375 232.371094 L 449.78125 231.738281 L 451.121094 231.078125 L 452.464844 230.386719 L 453.804688 229.664062 L 455.148438 228.921875 L 456.488281 228.167969 L 457.832031 227.417969 L 459.171875 226.699219 L 460.515625 226.027344 L 461.855469 225.429688 L 463.199219 224.925781 L 464.539062 224.539062 L 465.882812 224.292969 L 467.222656 224.195312 L 468.566406 224.261719 L 469.90625 224.492188 L 471.25 224.886719 L 472.589844 225.441406 L 473.933594 226.140625 L 475.273438 226.96875 L 476.613281 227.90625 L 477.957031 228.925781 L 479.296875 230.003906 L 480.640625 231.113281 L 481.980469 232.230469 L 483.324219 233.332031 L 484.664062 234.394531 L 486.007812 235.40625 L 487.347656 236.347656 L 488.691406 237.214844 L 490.03125 238.003906 L 491.375 238.714844 L 492.714844 239.355469 L 494.058594 239.929688 L 495.398438 240.457031 L 496.742188 240.945312 L 498.082031 241.414062 L 499.425781 241.875 L 500.765625 242.347656 L 502.109375 242.84375 L 503.449219 243.375 L 504.789062 243.957031 L 506.132812 244.59375 L 507.472656 245.292969 L 508.816406 246.054688 L 510.15625 246.878906 L 511.5 247.769531 L 512.839844 248.714844 L 514.183594 249.714844 L 515.523438 250.757812 L 516.867188 251.84375 L 518.207031 252.957031 L 519.550781 254.09375 L 520.890625 255.242188 L 522.234375 256.402344 L 523.574219 257.5625 L 524.917969 258.714844 L 526.257812 259.859375 L 527.601562 260.984375 L 528.941406 262.089844 L 530.285156 263.167969 L 531.625 264.21875 L 532.96875 265.238281 L 534.308594 266.222656 L 535.648438 267.171875 L 536.992188 268.078125 L 538.332031 268.949219 L 539.675781 269.773438 L 541.015625 270.5625 L 542.359375 271.304688 L 543.699219 272.007812 L 545.042969 272.671875 L 546.382812 273.300781 L 547.726562 273.890625 L 549.066406 274.445312 L 550.410156 274.96875 L 551.75 275.460938 L 553.09375 275.925781 L 554.433594 276.363281 L 555.777344 276.773438 L 557.117188 277.160156 L 558.460938 277.523438 L 559.800781 277.867188 L 561.144531 278.183594 L 562.484375 278.480469 L 563.824219 278.753906 L 565.167969 279.007812 L 566.507812 279.238281 L 567.851562 279.449219 L 569.191406 279.636719 L 570.535156 279.804688 L 571.875 279.957031 L 573.21875 280.089844 L 574.558594 280.207031 L 575.902344 280.304688 L 577.242188 280.390625 L 578.585938 280.464844 L 579.925781 280.523438 L 581.269531 280.574219 L 582.609375 280.617188 L 583.953125 280.652344 L 585.292969 280.679688 L 586.636719 280.699219 L 587.976562 280.71875 L 589.320312 280.730469 L 590.660156 280.742188 L 592 280.75 L 593.34375 280.753906 L 594.683594 280.761719 L 596.027344 280.765625 L 597.367188 280.765625 L 598.710938 280.769531 L 604.078125 280.769531 L 604.078125 280.773438 L 337.078125 280.773438 Z M 337.078125 280.769531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 75.294119%, 79.607844%)" fill-opacity="1" d="M 399.769531 280.769531 L 403.214844 280.769531 L 405.511719 280.761719 L 406.65625 280.757812 L 408.953125 280.742188 L 410.101562 280.730469 L 411.25 280.714844 L 412.398438 280.695312 L 413.542969 280.667969 L 414.691406 280.628906 L 415.839844 280.585938 L 416.988281 280.53125 L 418.136719 280.460938 L 419.285156 280.375 L 420.429688 280.273438 L 421.578125 280.152344 L 422.726562 280.015625 L 423.875 279.855469 L 425.023438 279.671875 L 426.171875 279.46875 L 427.316406 279.25 L 428.464844 279.011719 L 429.613281 278.761719 L 431.910156 278.238281 L 433.058594 277.972656 L 434.203125 277.71875 L 435.351562 277.476562 L 436.5 277.25 L 437.648438 277.050781 L 438.796875 276.878906 L 439.945312 276.734375 L 441.089844 276.621094 L 442.238281 276.535156 L 443.386719 276.472656 L 444.535156 276.433594 L 445.683594 276.402344 L 446.832031 276.378906 L 447.976562 276.347656 L 449.125 276.296875 L 450.273438 276.222656 L 451.421875 276.109375 L 452.570312 275.949219 L 453.71875 275.738281 L 454.863281 275.472656 L 456.011719 275.144531 L 457.160156 274.761719 L 458.308594 274.320312 L 459.457031 273.832031 L 460.605469 273.304688 L 461.75 272.742188 L 462.898438 272.160156 L 465.195312 270.980469 L 466.34375 270.402344 L 467.492188 269.839844 L 468.636719 269.304688 L 469.785156 268.800781 L 470.933594 268.324219 L 472.082031 267.875 L 473.230469 267.449219 L 474.378906 267.039062 L 475.523438 266.636719 L 476.671875 266.230469 L 477.820312 265.808594 L 478.96875 265.363281 L 480.117188 264.878906 L 481.265625 264.34375 L 482.410156 263.746094 L 483.558594 263.082031 L 484.707031 262.335938 L 485.855469 261.507812 L 487.003906 260.589844 L 488.152344 259.582031 L 489.296875 258.488281 L 490.445312 257.3125 L 491.59375 256.0625 L 492.742188 254.742188 L 493.890625 253.371094 L 495.039062 251.957031 L 496.1875 250.515625 L 497.332031 249.066406 L 498.480469 247.621094 L 499.628906 246.191406 L 500.777344 244.792969 L 501.925781 243.429688 L 503.074219 242.105469 L 504.21875 240.820312 L 505.367188 239.570312 L 506.515625 238.347656 L 507.664062 237.132812 L 508.8125 235.914062 L 509.960938 234.667969 L 511.105469 233.386719 L 512.253906 232.039062 L 513.402344 230.621094 L 514.550781 229.113281 L 515.699219 227.515625 L 516.847656 225.820312 L 517.992188 224.035156 L 519.140625 222.171875 L 520.289062 220.246094 L 521.4375 218.28125 L 522.585938 216.308594 L 523.734375 214.351562 L 524.878906 212.449219 L 526.027344 210.632812 L 527.175781 208.9375 L 528.324219 207.394531 L 529.472656 206.039062 L 530.621094 204.902344 L 531.765625 204 L 532.914062 203.363281 L 534.0625 203.007812 L 535.210938 202.941406 L 536.359375 203.171875 L 537.507812 203.707031 L 538.652344 204.539062 L 539.800781 205.65625 L 540.949219 207.046875 L 542.097656 208.6875 L 543.246094 210.546875 L 544.394531 212.597656 L 545.539062 214.800781 L 546.6875 217.117188 L 547.835938 219.503906 L 548.984375 221.917969 L 550.132812 224.324219 L 551.28125 226.683594 L 552.425781 228.964844 L 553.574219 231.144531 L 554.722656 233.203125 L 555.871094 235.132812 L 557.019531 236.925781 L 558.167969 238.59375 L 559.3125 240.136719 L 560.460938 241.574219 L 561.609375 242.925781 L 562.757812 244.210938 L 563.90625 245.445312 L 565.054688 246.648438 L 566.199219 247.839844 L 567.347656 249.027344 L 568.496094 250.222656 L 569.644531 251.433594 L 570.792969 252.65625 L 571.941406 253.894531 L 573.085938 255.144531 L 575.382812 257.644531 L 576.53125 258.886719 L 577.679688 260.113281 L 578.828125 261.324219 L 579.972656 262.507812 L 581.121094 263.667969 L 582.269531 264.796875 L 583.417969 265.902344 L 584.566406 266.976562 L 585.714844 268.019531 L 586.859375 269.039062 L 588.007812 270.023438 L 589.15625 270.976562 L 590.304688 271.898438 L 591.453125 272.785156 L 592.601562 273.628906 L 593.75 274.433594 L 594.894531 275.1875 L 596.042969 275.894531 L 597.191406 276.546875 L 598.339844 277.144531 L 599.488281 277.6875 L 600.632812 278.171875 L 601.78125 278.605469 L 602.929688 278.980469 L 604.078125 279.308594 L 605.226562 279.589844 L 606.375 279.824219 L 607.523438 280.023438 L 608.667969 280.183594 L 609.816406 280.316406 L 610.964844 280.421875 L 612.113281 280.507812 L 613.261719 280.574219 L 614.410156 280.625 L 615.554688 280.664062 L 616.703125 280.695312 L 617.851562 280.71875 L 619 280.734375 L 620.148438 280.746094 L 621.296875 280.753906 L 622.441406 280.757812 L 623.589844 280.765625 L 624.738281 280.765625 L 625.886719 280.769531 L 628.183594 280.769531 L 628.183594 280.773438 L 399.769531 280.773438 Z M 399.769531 280.769531 "/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-6-0-a71a7792" x="112.126488" y="462.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-7-0-a71a7792" x="274.289398" y="462.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-7-1-a71a7792" x="432.560272" y="462.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-7-2-a71a7792" x="440.344269" y="462.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-7-1-a71a7792" x="594.723145" y="462.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-7-0-a71a7792" x="602.507141" y="462.257996"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-0-a71a7792" x="14.539999" y="441.830292"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-1-a71a7792" x="22.323996" y="441.830292"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-0-a71a7792" x="26.215994" y="441.830292"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-0-a71a7792" x="14.539999" y="423.237427"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-1-a71a7792" x="22.323996" y="423.237427"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-3-a71a7792" x="26.215994" y="423.237427"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-0-a71a7792" x="14.539999" y="404.644562"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-1-a71a7792" x="22.323996" y="404.644562"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-4-a71a7792" x="26.215994" y="404.644562"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-9-0-a71a7792" x="14.539999" y="386.051727"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-9-1-a71a7792" x="22.323996" y="386.051727"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-9-2-a71a7792" x="26.215994" y="386.051727"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-10-0-a71a7792" x="14.539999" y="367.458893"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-10-1-a71a7792" x="22.323996" y="367.458893"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-10-2-a71a7792" x="26.215994" y="367.458893"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-12-a71a7792" x="321.209015" y="339.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-5-7-a71a7792" x="331.317017" y="339.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-4-a71a7792" x="339.871002" y="339.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-5-a71a7792" x="343.763" y="339.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-6-a71a7792" x="351.546997" y="339.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-5-a71a7792" x="359.330994" y="339.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-7-a71a7792" x="367.11499" y="339.947998"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-8-a71a7792" x="371.006989" y="339.947998"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="0.6" d="M 71.816406 436.722656 L 73.984375 436.722656 L 75.070312 436.71875 L 76.152344 436.71875 L 77.238281 436.714844 L 78.320312 436.707031 L 79.40625 436.703125 L 81.570312 436.679688 L 82.65625 436.664062 L 83.738281 436.644531 L 84.824219 436.617188 L 85.90625 436.585938 L 86.992188 436.542969 L 88.074219 436.488281 L 89.160156 436.421875 L 90.242188 436.339844 L 91.324219 436.238281 L 92.410156 436.117188 L 93.492188 435.972656 L 94.578125 435.800781 L 95.660156 435.59375 L 96.746094 435.355469 L 97.828125 435.078125 L 98.914062 434.757812 L 99.996094 434.398438 L 101.078125 433.988281 L 102.164062 433.535156 L 103.246094 433.03125 L 104.332031 432.480469 L 105.414062 431.882812 L 106.5 431.242188 L 107.582031 430.558594 L 108.667969 429.84375 L 109.75 429.097656 L 110.832031 428.332031 L 111.917969 427.550781 L 113 426.765625 L 114.085938 425.984375 L 115.167969 425.214844 L 116.253906 424.464844 L 117.335938 423.746094 L 118.421875 423.058594 L 119.503906 422.410156 L 120.585938 421.804688 L 121.671875 421.242188 L 122.753906 420.71875 L 123.839844 420.230469 L 124.921875 419.769531 L 126.007812 419.328125 L 127.089844 418.890625 L 128.175781 418.445312 L 129.257812 417.976562 L 130.339844 417.460938 L 131.425781 416.886719 L 132.507812 416.230469 L 133.59375 415.480469 L 134.675781 414.609375 L 135.761719 413.609375 L 136.84375 412.46875 L 137.929688 411.167969 L 139.011719 409.710938 L 140.09375 408.082031 L 141.179688 406.289062 L 142.261719 404.335938 L 143.347656 402.226562 L 144.429688 399.972656 L 145.515625 397.585938 L 146.597656 395.089844 L 147.683594 392.5 L 148.765625 389.839844 L 149.847656 387.128906 L 150.933594 384.394531 L 152.015625 381.660156 L 153.101562 378.949219 L 154.183594 376.289062 L 155.269531 373.695312 L 156.351562 371.195312 L 157.4375 368.804688 L 158.519531 366.546875 L 159.601562 364.433594 L 160.6875 362.484375 L 161.769531 360.710938 L 162.855469 359.125 L 163.9375 357.738281 L 165.023438 356.558594 L 166.105469 355.59375 L 167.191406 354.855469 L 168.273438 354.339844 L 169.359375 354.050781 L 170.441406 353.996094 L 171.523438 354.171875 L 172.609375 354.570312 L 173.691406 355.191406 L 174.777344 356.027344 L 175.859375 357.0625 L 176.945312 358.292969 L 178.027344 359.699219 L 179.113281 361.265625 L 180.195312 362.972656 L 181.277344 364.796875 L 182.363281 366.71875 L 183.445312 368.710938 L 184.53125 370.75 L 185.613281 372.808594 L 186.699219 374.859375 L 187.78125 376.878906 L 188.867188 378.84375 L 189.949219 380.722656 L 191.03125 382.496094 L 192.117188 384.144531 L 193.199219 385.648438 L 194.285156 386.992188 L 195.367188 388.167969 L 196.453125 389.15625 L 197.535156 389.960938 L 198.621094 390.578125 L 199.703125 391.007812 L 200.785156 391.261719 L 201.871094 391.34375 L 202.953125 391.277344 L 204.039062 391.078125 L 205.121094 390.769531 L 206.207031 390.371094 L 207.289062 389.917969 L 208.375 389.433594 L 209.457031 388.949219 L 210.539062 388.5 L 211.625 388.109375 L 212.707031 387.804688 L 213.792969 387.617188 L 214.875 387.570312 L 215.960938 387.679688 L 217.042969 387.960938 L 218.128906 388.425781 L 219.210938 389.082031 L 220.292969 389.929688 L 221.378906 390.96875 L 222.460938 392.1875 L 223.546875 393.574219 L 224.628906 395.117188 L 225.714844 396.792969 L 226.796875 398.585938 L 227.882812 400.472656 L 228.964844 402.433594 L 230.046875 404.4375 L 231.132812 406.464844 L 232.214844 408.5 L 233.300781 410.511719 L 234.382812 412.492188 L 235.46875 414.414062 L 236.550781 416.273438 L 237.636719 418.054688 L 238.71875 419.75 L 239.800781 421.351562 L 240.886719 422.855469 L 241.96875 424.261719 L 243.054688 425.566406 L 244.136719 426.769531 L 245.222656 427.875 L 246.304688 428.890625 L 247.390625 429.8125 L 248.472656 430.648438 L 249.554688 431.40625 L 250.640625 432.085938 L 251.722656 432.695312 L 252.808594 433.242188 L 253.890625 433.726562 L 254.976562 434.15625 L 256.058594 434.53125 L 257.144531 434.863281 L 258.226562 435.15625 L 259.308594 435.40625 L 260.394531 435.625 L 261.476562 435.808594 L 262.5625 435.96875 L 263.644531 436.105469 L 264.730469 436.21875 L 265.8125 436.316406 L 266.898438 436.394531 L 267.980469 436.460938 L 269.0625 436.515625 L 270.148438 436.5625 L 271.230469 436.597656 L 272.316406 436.625 L 273.398438 436.648438 L 274.484375 436.667969 L 275.566406 436.679688 L 276.652344 436.691406 L 277.734375 436.703125 L 278.816406 436.707031 L 279.902344 436.714844 L 280.984375 436.714844 L 282.070312 436.71875 L 283.152344 436.722656 L 287.488281 436.722656 L 287.488281 436.726562 L 71.816406 436.726562 Z M 71.816406 436.722656 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="0.6" d="M 128.773438 436.726562 L 129.917969 436.722656 L 133.347656 436.722656 L 135.636719 436.714844 L 136.777344 436.710938 L 139.066406 436.695312 L 140.210938 436.683594 L 141.351562 436.667969 L 142.496094 436.648438 L 143.640625 436.621094 L 144.78125 436.589844 L 145.925781 436.546875 L 147.070312 436.496094 L 148.214844 436.433594 L 149.355469 436.355469 L 150.5 436.261719 L 151.644531 436.152344 L 152.785156 436.019531 L 153.929688 435.867188 L 155.074219 435.691406 L 156.21875 435.488281 L 157.359375 435.253906 L 158.503906 434.996094 L 159.648438 434.710938 L 160.792969 434.394531 L 161.933594 434.054688 L 163.078125 433.6875 L 164.222656 433.300781 L 165.363281 432.898438 L 166.507812 432.480469 L 167.652344 432.054688 L 168.796875 431.625 L 169.9375 431.199219 L 171.082031 430.785156 L 172.226562 430.386719 L 173.367188 430.007812 L 174.511719 429.652344 L 175.65625 429.328125 L 176.800781 429.039062 L 177.941406 428.777344 L 179.085938 428.546875 L 180.230469 428.34375 L 181.371094 428.164062 L 182.515625 427.996094 L 183.660156 427.835938 L 184.804688 427.667969 L 185.945312 427.484375 L 187.089844 427.269531 L 188.234375 427.003906 L 189.378906 426.683594 L 190.519531 426.285156 L 191.664062 425.796875 L 192.808594 425.210938 L 193.949219 424.507812 L 195.09375 423.6875 L 196.238281 422.734375 L 197.382812 421.652344 L 198.523438 420.429688 L 199.667969 419.070312 L 200.8125 417.574219 L 201.953125 415.945312 L 203.097656 414.1875 L 204.242188 412.304688 L 205.386719 410.304688 L 206.527344 408.191406 L 207.671875 405.972656 L 208.816406 403.65625 L 209.960938 401.246094 L 211.101562 398.75 L 212.246094 396.171875 L 213.390625 393.527344 L 214.53125 390.820312 L 215.675781 388.058594 L 216.820312 385.261719 L 217.964844 382.441406 L 219.105469 379.613281 L 220.25 376.792969 L 221.394531 374.011719 L 222.535156 371.289062 L 223.679688 368.644531 L 224.824219 366.109375 L 225.96875 363.710938 L 227.109375 361.472656 L 228.253906 359.417969 L 229.398438 357.570312 L 230.539062 355.945312 L 231.683594 354.554688 L 232.828125 353.417969 L 233.972656 352.53125 L 235.113281 351.902344 L 236.257812 351.527344 L 237.402344 351.394531 L 238.546875 351.496094 L 239.6875 351.820312 L 240.832031 352.34375 L 241.976562 353.054688 L 243.117188 353.933594 L 244.261719 354.957031 L 245.40625 356.109375 L 246.550781 357.371094 L 247.691406 358.726562 L 248.835938 360.15625 L 249.980469 361.644531 L 251.121094 363.183594 L 252.265625 364.761719 L 253.410156 366.363281 L 254.554688 367.980469 L 255.695312 369.613281 L 257.984375 372.878906 L 259.128906 374.503906 L 260.269531 376.117188 L 261.414062 377.71875 L 262.558594 379.304688 L 263.699219 380.871094 L 264.84375 382.417969 L 265.988281 383.945312 L 267.132812 385.449219 L 268.273438 386.933594 L 269.417969 388.394531 L 270.5625 389.828125 L 271.703125 391.238281 L 272.847656 392.613281 L 273.992188 393.953125 L 275.136719 395.253906 L 276.277344 396.503906 L 277.421875 397.703125 L 278.566406 398.835938 L 279.710938 399.90625 L 280.851562 400.902344 L 281.996094 401.820312 L 283.140625 402.660156 L 284.28125 403.425781 L 285.425781 404.113281 L 286.570312 404.734375 L 287.714844 405.296875 L 288.855469 405.808594 L 290 406.289062 L 291.144531 406.753906 L 292.285156 407.214844 L 293.429688 407.691406 L 294.574219 408.203125 L 295.71875 408.757812 L 296.859375 409.375 L 298.003906 410.058594 L 299.148438 410.820312 L 300.289062 411.667969 L 301.433594 412.59375 L 302.578125 413.597656 L 303.722656 414.675781 L 304.863281 415.816406 L 306.007812 417.011719 L 307.152344 418.25 L 308.296875 419.511719 L 309.4375 420.785156 L 310.582031 422.058594 L 311.726562 423.3125 L 312.867188 424.539062 L 314.011719 425.726562 L 315.15625 426.863281 L 316.300781 427.9375 L 317.441406 428.945312 L 318.585938 429.886719 L 319.730469 430.753906 L 320.871094 431.542969 L 322.015625 432.261719 L 323.160156 432.90625 L 324.304688 433.480469 L 325.445312 433.988281 L 326.589844 434.429688 L 327.734375 434.816406 L 328.878906 435.148438 L 330.019531 435.433594 L 331.164062 435.675781 L 332.308594 435.875 L 333.449219 436.046875 L 334.59375 436.183594 L 335.738281 436.296875 L 336.882812 436.390625 L 338.023438 436.464844 L 339.167969 436.527344 L 340.3125 436.574219 L 341.453125 436.609375 L 342.597656 436.640625 L 344.886719 436.679688 L 346.027344 436.691406 L 347.171875 436.703125 L 348.316406 436.707031 L 349.460938 436.714844 L 350.601562 436.71875 L 351.746094 436.71875 L 352.890625 436.722656 L 355.175781 436.722656 L 356.320312 436.726562 Z M 128.773438 436.726562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="0.6" d="M 184.023438 436.722656 L 188.515625 436.722656 L 189.636719 436.71875 L 190.761719 436.71875 L 193.003906 436.710938 L 194.128906 436.703125 L 195.25 436.695312 L 196.375 436.6875 L 197.496094 436.675781 L 198.617188 436.660156 L 199.742188 436.640625 L 200.863281 436.617188 L 201.984375 436.585938 L 203.109375 436.550781 L 204.230469 436.503906 L 205.351562 436.453125 L 206.476562 436.390625 L 207.597656 436.316406 L 208.722656 436.226562 L 209.84375 436.125 L 210.964844 436.007812 L 212.089844 435.871094 L 213.210938 435.71875 L 214.332031 435.546875 L 215.457031 435.351562 L 216.578125 435.136719 L 217.699219 434.902344 L 218.824219 434.644531 L 219.945312 434.363281 L 221.070312 434.0625 L 222.191406 433.738281 L 223.3125 433.394531 L 224.4375 433.03125 L 225.558594 432.648438 L 226.679688 432.25 L 227.804688 431.832031 L 228.925781 431.402344 L 230.050781 430.953125 L 231.171875 430.488281 L 232.292969 430.007812 L 233.417969 429.507812 L 234.539062 428.988281 L 235.660156 428.449219 L 236.785156 427.882812 L 237.90625 427.289062 L 239.027344 426.664062 L 240.152344 426 L 241.273438 425.292969 L 242.398438 424.539062 L 243.519531 423.734375 L 244.640625 422.871094 L 245.765625 421.949219 L 246.886719 420.964844 L 248.007812 419.917969 L 249.132812 418.804688 L 250.253906 417.632812 L 251.375 416.398438 L 252.5 415.113281 L 253.621094 413.78125 L 254.746094 412.410156 L 255.867188 411.011719 L 256.988281 409.601562 L 258.113281 408.183594 L 259.234375 406.78125 L 260.355469 405.402344 L 261.480469 404.0625 L 262.601562 402.773438 L 263.726562 401.546875 L 264.847656 400.390625 L 265.96875 399.3125 L 267.09375 398.320312 L 268.214844 397.410156 L 269.335938 396.589844 L 270.460938 395.847656 L 271.582031 395.175781 L 272.703125 394.574219 L 273.828125 394.023438 L 274.949219 393.511719 L 276.074219 393.023438 L 277.195312 392.546875 L 278.316406 392.0625 L 279.441406 391.554688 L 280.5625 391.011719 L 281.683594 390.414062 L 282.808594 389.753906 L 283.929688 389.019531 L 285.050781 388.210938 L 286.175781 387.316406 L 287.296875 386.339844 L 288.421875 385.285156 L 289.542969 384.15625 L 290.664062 382.964844 L 291.789062 381.714844 L 292.910156 380.429688 L 294.03125 379.121094 L 295.15625 377.804688 L 296.277344 376.503906 L 297.402344 375.238281 L 298.523438 374.019531 L 299.644531 372.875 L 300.769531 371.8125 L 301.890625 370.855469 L 303.011719 370.015625 L 304.136719 369.300781 L 305.257812 368.722656 L 306.378906 368.28125 L 307.503906 367.980469 L 308.625 367.816406 L 309.75 367.789062 L 310.871094 367.886719 L 311.992188 368.101562 L 313.117188 368.417969 L 314.238281 368.832031 L 315.359375 369.320312 L 316.484375 369.875 L 317.605469 370.476562 L 318.726562 371.121094 L 319.851562 371.785156 L 320.972656 372.464844 L 322.097656 373.152344 L 323.21875 373.835938 L 324.339844 374.511719 L 325.464844 375.179688 L 326.585938 375.835938 L 327.707031 376.476562 L 328.832031 377.109375 L 329.953125 377.734375 L 331.078125 378.355469 L 332.199219 378.976562 L 333.320312 379.605469 L 334.445312 380.242188 L 335.566406 380.898438 L 336.6875 381.578125 L 337.8125 382.285156 L 338.933594 383.027344 L 340.054688 383.816406 L 341.179688 384.65625 L 342.300781 385.550781 L 343.425781 386.507812 L 344.546875 387.53125 L 345.667969 388.632812 L 346.792969 389.816406 L 347.914062 391.082031 L 349.035156 392.433594 L 350.160156 393.875 L 351.28125 395.402344 L 352.402344 397.011719 L 353.527344 398.703125 L 354.648438 400.46875 L 355.773438 402.296875 L 356.894531 404.179688 L 358.015625 406.101562 L 359.140625 408.054688 L 361.382812 411.984375 L 362.507812 413.925781 L 363.628906 415.835938 L 364.753906 417.699219 L 365.875 419.496094 L 366.996094 421.21875 L 368.121094 422.859375 L 369.242188 424.402344 L 370.363281 425.84375 L 371.488281 427.179688 L 372.609375 428.40625 L 373.730469 429.523438 L 374.855469 430.535156 L 375.976562 431.4375 L 377.101562 432.242188 L 378.222656 432.949219 L 379.34375 433.570312 L 380.46875 434.105469 L 381.589844 434.566406 L 382.710938 434.957031 L 383.835938 435.289062 L 384.957031 435.566406 L 386.078125 435.796875 L 387.203125 435.988281 L 388.324219 436.144531 L 389.449219 436.269531 L 390.570312 436.371094 L 391.691406 436.453125 L 392.816406 436.515625 L 393.9375 436.566406 L 395.058594 436.605469 L 396.183594 436.636719 L 397.304688 436.660156 L 398.429688 436.675781 L 399.550781 436.691406 L 400.671875 436.699219 L 401.796875 436.707031 L 402.917969 436.714844 L 404.039062 436.71875 L 405.164062 436.71875 L 406.285156 436.722656 L 407.40625 436.722656 L 407.40625 436.726562 L 184.023438 436.726562 Z M 184.023438 436.722656 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="0.6" d="M 271.957031 436.722656 L 274.21875 436.722656 L 275.351562 436.71875 L 276.480469 436.71875 L 277.613281 436.710938 L 278.746094 436.707031 L 279.875 436.695312 L 281.007812 436.683594 L 282.140625 436.664062 L 283.269531 436.640625 L 284.402344 436.605469 L 285.535156 436.5625 L 286.664062 436.507812 L 287.796875 436.433594 L 288.929688 436.34375 L 290.058594 436.226562 L 291.191406 436.085938 L 292.324219 435.910156 L 293.453125 435.703125 L 294.585938 435.453125 L 295.71875 435.160156 L 296.847656 434.820312 L 297.980469 434.433594 L 299.113281 433.996094 L 300.242188 433.507812 L 301.375 432.972656 L 302.507812 432.390625 L 303.636719 431.769531 L 304.769531 431.117188 L 305.902344 430.433594 L 307.03125 429.734375 L 309.296875 428.3125 L 310.425781 427.601562 L 311.558594 426.90625 L 312.691406 426.226562 L 313.820312 425.5625 L 314.953125 424.921875 L 316.085938 424.300781 L 317.214844 423.695312 L 318.347656 423.101562 L 319.480469 422.511719 L 320.609375 421.925781 L 321.742188 421.332031 L 322.871094 420.730469 L 324.003906 420.113281 L 325.136719 419.484375 L 326.265625 418.835938 L 327.398438 418.175781 L 328.53125 417.503906 L 329.660156 416.828125 L 330.792969 416.152344 L 331.925781 415.484375 L 333.054688 414.824219 L 334.1875 414.179688 L 335.320312 413.554688 L 336.449219 412.945312 L 337.582031 412.351562 L 338.714844 411.773438 L 339.84375 411.199219 L 340.976562 410.621094 L 342.109375 410.03125 L 343.238281 409.410156 L 344.371094 408.746094 L 345.503906 408.03125 L 346.632812 407.242188 L 347.765625 406.371094 L 348.898438 405.40625 L 350.027344 404.332031 L 351.160156 403.148438 L 352.292969 401.847656 L 353.421875 400.425781 L 354.554688 398.890625 L 355.6875 397.242188 L 356.816406 395.496094 L 357.949219 393.660156 L 359.082031 391.746094 L 360.210938 389.777344 L 361.34375 387.765625 L 362.476562 385.730469 L 363.605469 383.683594 L 364.738281 381.640625 L 365.871094 379.613281 L 367 377.609375 L 368.132812 375.636719 L 369.265625 373.695312 L 370.394531 371.789062 L 371.527344 369.917969 L 372.660156 368.078125 L 373.789062 366.273438 L 374.921875 364.503906 L 376.054688 362.769531 L 377.183594 361.085938 L 378.316406 359.457031 L 379.449219 357.902344 L 380.578125 356.445312 L 381.710938 355.105469 L 382.84375 353.917969 L 383.972656 352.90625 L 385.105469 352.109375 L 386.238281 351.554688 L 387.367188 351.273438 L 388.5 351.285156 L 389.632812 351.613281 L 390.761719 352.261719 L 391.894531 353.238281 L 393.027344 354.535156 L 394.15625 356.136719 L 395.289062 358.015625 L 396.421875 360.140625 L 397.550781 362.464844 L 398.683594 364.949219 L 399.8125 367.542969 L 400.945312 370.191406 L 402.078125 372.851562 L 403.207031 375.46875 L 404.339844 378.007812 L 405.472656 380.429688 L 406.601562 382.703125 L 407.734375 384.8125 L 408.867188 386.738281 L 409.996094 388.484375 L 411.128906 390.046875 L 412.261719 391.441406 L 413.390625 392.675781 L 414.523438 393.777344 L 415.65625 394.765625 L 416.785156 395.664062 L 417.917969 396.5 L 419.050781 397.289062 L 420.179688 398.0625 L 421.3125 398.835938 L 422.445312 399.625 L 423.574219 400.441406 L 424.707031 401.304688 L 425.839844 402.21875 L 426.96875 403.1875 L 428.101562 404.214844 L 429.234375 405.304688 L 430.363281 406.449219 L 431.496094 407.644531 L 432.628906 408.894531 L 433.757812 410.179688 L 434.890625 411.5 L 436.023438 412.839844 L 437.152344 414.1875 L 438.285156 415.535156 L 439.417969 416.863281 L 440.546875 418.167969 L 441.679688 419.429688 L 442.8125 420.644531 L 443.941406 421.796875 L 445.074219 422.882812 L 446.207031 423.898438 L 447.335938 424.839844 L 448.46875 425.710938 L 449.601562 426.511719 L 450.730469 427.246094 L 451.863281 427.925781 L 452.996094 428.550781 L 454.125 429.132812 L 455.257812 429.675781 L 456.390625 430.191406 L 457.519531 430.683594 L 458.652344 431.152344 L 459.785156 431.609375 L 460.914062 432.054688 L 462.046875 432.484375 L 463.179688 432.898438 L 464.308594 433.296875 L 465.441406 433.679688 L 466.574219 434.042969 L 467.703125 434.386719 L 468.835938 434.703125 L 469.96875 434.992188 L 471.097656 435.257812 L 472.230469 435.496094 L 473.359375 435.703125 L 474.492188 435.886719 L 475.625 436.042969 L 476.753906 436.179688 L 477.886719 436.289062 L 479.019531 436.382812 L 480.148438 436.460938 L 481.28125 436.523438 L 482.414062 436.570312 L 483.542969 436.609375 L 484.675781 436.640625 L 485.808594 436.664062 L 486.9375 436.679688 L 488.070312 436.695312 L 489.203125 436.703125 L 490.332031 436.710938 L 492.597656 436.71875 L 493.726562 436.722656 L 497.121094 436.722656 L 497.121094 436.726562 L 271.957031 436.726562 Z M 271.957031 436.722656 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="0.6" d="M 315.261719 436.726562 L 316.515625 436.722656 L 319.023438 436.722656 L 320.277344 436.71875 L 321.527344 436.714844 L 322.78125 436.710938 L 325.289062 436.695312 L 327.796875 436.664062 L 329.046875 436.636719 L 330.300781 436.605469 L 331.554688 436.566406 L 332.808594 436.515625 L 334.0625 436.449219 L 335.316406 436.371094 L 336.566406 436.273438 L 337.820312 436.152344 L 339.074219 436.011719 L 340.328125 435.847656 L 341.582031 435.65625 L 342.835938 435.433594 L 344.085938 435.1875 L 345.339844 434.910156 L 346.59375 434.605469 L 347.847656 434.277344 L 349.101562 433.921875 L 350.351562 433.542969 L 351.605469 433.148438 L 352.859375 432.738281 L 354.113281 432.308594 L 355.367188 431.871094 L 356.621094 431.417969 L 357.871094 430.957031 L 359.125 430.484375 L 360.378906 430 L 361.632812 429.496094 L 362.886719 428.976562 L 364.140625 428.433594 L 365.390625 427.863281 L 366.644531 427.261719 L 367.898438 426.628906 L 369.152344 425.964844 L 370.40625 425.265625 L 371.660156 424.539062 L 372.910156 423.785156 L 374.164062 423.015625 L 375.417969 422.230469 L 376.671875 421.449219 L 377.925781 420.671875 L 379.179688 419.910156 L 380.429688 419.179688 L 381.683594 418.480469 L 382.9375 417.824219 L 384.191406 417.207031 L 385.445312 416.632812 L 386.695312 416.097656 L 387.949219 415.585938 L 389.203125 415.085938 L 390.457031 414.582031 L 391.710938 414.050781 L 392.964844 413.46875 L 394.214844 412.808594 L 395.46875 412.042969 L 396.722656 411.140625 L 397.976562 410.074219 L 399.230469 408.824219 L 400.484375 407.367188 L 401.734375 405.695312 L 402.988281 403.796875 L 404.242188 401.679688 L 405.496094 399.347656 L 406.75 396.824219 L 408.003906 394.136719 L 409.253906 391.320312 L 410.507812 388.421875 L 411.761719 385.492188 L 413.015625 382.574219 L 414.269531 379.734375 L 415.523438 377.015625 L 416.773438 374.46875 L 418.027344 372.140625 L 419.28125 370.0625 L 420.535156 368.261719 L 421.789062 366.753906 L 423.042969 365.542969 L 424.292969 364.621094 L 425.546875 363.96875 L 426.800781 363.566406 L 428.054688 363.378906 L 429.308594 363.367188 L 430.558594 363.496094 L 431.8125 363.726562 L 433.066406 364.027344 L 434.320312 364.363281 L 435.574219 364.714844 L 436.828125 365.070312 L 438.078125 365.425781 L 439.332031 365.78125 L 440.585938 366.15625 L 441.839844 366.566406 L 443.09375 367.035156 L 444.347656 367.59375 L 445.597656 368.273438 L 446.851562 369.097656 L 448.105469 370.09375 L 449.359375 371.273438 L 450.613281 372.652344 L 451.867188 374.222656 L 453.117188 375.984375 L 454.371094 377.914062 L 455.625 379.988281 L 456.878906 382.175781 L 458.132812 384.4375 L 459.386719 386.730469 L 460.636719 389.007812 L 461.890625 391.238281 L 463.144531 393.367188 L 464.398438 395.371094 L 465.652344 397.210938 L 466.902344 398.867188 L 468.15625 400.324219 L 469.410156 401.570312 L 470.664062 402.609375 L 471.917969 403.445312 L 473.171875 404.097656 L 474.421875 404.582031 L 475.675781 404.929688 L 476.929688 405.175781 L 478.183594 405.347656 L 479.4375 405.484375 L 480.691406 405.617188 L 481.941406 405.78125 L 483.195312 406.003906 L 484.449219 406.308594 L 485.703125 406.71875 L 486.957031 407.238281 L 488.210938 407.875 L 489.460938 408.628906 L 490.714844 409.488281 L 491.96875 410.4375 L 493.222656 411.464844 L 494.476562 412.546875 L 495.730469 413.660156 L 496.980469 414.78125 L 498.234375 415.890625 L 499.488281 416.964844 L 500.742188 417.992188 L 501.996094 418.953125 L 503.246094 419.851562 L 504.5 420.671875 L 505.753906 421.421875 L 507.007812 422.105469 L 508.261719 422.726562 L 509.515625 423.296875 L 510.765625 423.832031 L 512.019531 424.34375 L 513.273438 424.835938 L 514.527344 425.332031 L 515.78125 425.832031 L 517.035156 426.351562 L 518.285156 426.890625 L 519.539062 427.449219 L 520.792969 428.03125 L 522.046875 428.636719 L 523.300781 429.253906 L 524.554688 429.878906 L 525.804688 430.507812 L 527.058594 431.128906 L 528.3125 431.734375 L 529.566406 432.320312 L 530.820312 432.871094 L 532.074219 433.390625 L 533.324219 433.867188 L 534.578125 434.304688 L 535.832031 434.695312 L 537.085938 435.042969 L 538.339844 435.34375 L 539.589844 435.605469 L 540.84375 435.824219 L 542.097656 436.011719 L 543.351562 436.164062 L 544.605469 436.292969 L 545.859375 436.394531 L 547.109375 436.472656 L 548.363281 436.535156 L 549.617188 436.585938 L 550.871094 436.625 L 552.125 436.652344 L 553.378906 436.671875 L 554.628906 436.6875 L 555.882812 436.699219 L 558.390625 436.714844 L 560.898438 436.722656 L 563.402344 436.722656 L 564.65625 436.726562 Z M 315.261719 436.726562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="0.6" d="M 389.695312 436.726562 L 390.894531 436.722656 L 394.488281 436.722656 L 398.085938 436.710938 L 399.285156 436.703125 L 400.480469 436.695312 L 401.679688 436.683594 L 402.878906 436.667969 L 404.078125 436.648438 L 405.277344 436.625 L 406.472656 436.59375 L 407.671875 436.550781 L 408.871094 436.5 L 410.070312 436.441406 L 411.269531 436.363281 L 412.464844 436.269531 L 413.664062 436.160156 L 414.863281 436.03125 L 416.0625 435.875 L 417.257812 435.695312 L 418.457031 435.484375 L 419.65625 435.246094 L 420.855469 434.972656 L 422.054688 434.667969 L 423.25 434.324219 L 424.449219 433.945312 L 425.648438 433.53125 L 426.847656 433.078125 L 428.046875 432.589844 L 429.242188 432.066406 L 430.441406 431.507812 L 431.640625 430.914062 L 432.839844 430.289062 L 434.039062 429.632812 L 435.234375 428.949219 L 436.433594 428.230469 L 437.632812 427.484375 L 438.832031 426.710938 L 440.03125 425.902344 L 441.226562 425.0625 L 442.425781 424.1875 L 443.625 423.269531 L 444.824219 422.308594 L 446.023438 421.304688 L 447.21875 420.242188 L 448.417969 419.128906 L 449.617188 417.953125 L 450.816406 416.714844 L 452.015625 415.414062 L 453.210938 414.046875 L 454.410156 412.621094 L 455.609375 411.136719 L 456.808594 409.601562 L 458.007812 408.019531 L 459.203125 406.410156 L 460.402344 404.777344 L 461.601562 403.140625 L 462.800781 401.507812 L 464 399.902344 L 465.195312 398.332031 L 466.394531 396.816406 L 467.59375 395.367188 L 468.792969 393.988281 L 469.992188 392.695312 L 471.1875 391.492188 L 472.386719 390.378906 L 473.585938 389.355469 L 474.785156 388.414062 L 475.980469 387.550781 L 477.179688 386.753906 L 478.378906 386.011719 L 479.578125 385.308594 L 480.777344 384.632812 L 481.972656 383.96875 L 483.171875 383.296875 L 484.371094 382.605469 L 485.570312 381.882812 L 486.769531 381.117188 L 487.964844 380.296875 L 489.164062 379.414062 L 490.363281 378.472656 L 491.5625 377.460938 L 492.761719 376.386719 L 493.957031 375.253906 L 495.15625 374.066406 L 496.355469 372.839844 L 497.554688 371.582031 L 498.753906 370.3125 L 499.949219 369.046875 L 501.148438 367.804688 L 502.347656 366.613281 L 503.546875 365.492188 L 504.746094 364.464844 L 505.941406 363.5625 L 507.140625 362.800781 L 508.339844 362.207031 L 509.539062 361.804688 L 510.738281 361.605469 L 511.933594 361.621094 L 513.132812 361.867188 L 514.332031 362.34375 L 515.53125 363.046875 L 516.730469 363.96875 L 517.925781 365.101562 L 519.125 366.421875 L 520.324219 367.910156 L 521.523438 369.539062 L 522.722656 371.289062 L 523.917969 373.125 L 525.117188 375.023438 L 526.316406 376.964844 L 527.515625 378.921875 L 528.710938 380.875 L 529.910156 382.8125 L 531.109375 384.726562 L 532.308594 386.609375 L 533.507812 388.453125 L 534.703125 390.265625 L 535.902344 392.046875 L 537.101562 393.800781 L 538.300781 395.527344 L 539.5 397.238281 L 540.695312 398.925781 L 541.894531 400.597656 L 543.09375 402.25 L 544.292969 403.878906 L 545.492188 405.472656 L 546.6875 407.027344 L 547.886719 408.53125 L 549.085938 409.976562 L 550.285156 411.34375 L 551.484375 412.628906 L 552.679688 413.820312 L 553.878906 414.910156 L 555.078125 415.894531 L 556.277344 416.773438 L 557.476562 417.546875 L 558.671875 418.214844 L 559.871094 418.792969 L 561.070312 419.285156 L 562.269531 419.703125 L 563.46875 420.0625 L 564.664062 420.375 L 565.863281 420.664062 L 567.0625 420.933594 L 568.261719 421.207031 L 569.460938 421.492188 L 570.65625 421.804688 L 571.855469 422.148438 L 573.054688 422.535156 L 574.253906 422.972656 L 575.453125 423.453125 L 576.648438 423.988281 L 577.847656 424.566406 L 579.046875 425.1875 L 580.246094 425.847656 L 581.445312 426.535156 L 582.640625 427.242188 L 585.039062 428.6875 L 586.238281 429.40625 L 587.433594 430.109375 L 588.632812 430.789062 L 589.832031 431.441406 L 591.03125 432.058594 L 592.230469 432.636719 L 593.425781 433.167969 L 594.625 433.660156 L 595.824219 434.101562 L 597.023438 434.5 L 598.222656 434.851562 L 599.417969 435.164062 L 600.617188 435.433594 L 601.816406 435.664062 L 603.015625 435.863281 L 604.214844 436.03125 L 605.410156 436.167969 L 606.609375 436.285156 L 607.808594 436.378906 L 609.007812 436.457031 L 610.207031 436.519531 L 611.402344 436.566406 L 612.601562 436.605469 L 613.800781 436.636719 L 615 436.660156 L 616.199219 436.675781 L 617.394531 436.691406 L 620.992188 436.714844 L 622.191406 436.71875 L 623.386719 436.71875 L 624.585938 436.722656 L 626.984375 436.722656 L 628.183594 436.726562 Z M 389.695312 436.726562 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 134.882812 130.5 L 134.882812 135.5 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 297.089844 130.5 L 297.089844 135.5 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 459.300781 130.5 L 459.300781 135.5 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 621.507812 130.5 L 621.507812 135.5 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 43.5 125.726562 L 38.5 125.726562 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 43.5 93.683594 L 38.5 93.683594 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 43.5 61.636719 L 38.5 61.636719 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 130.84375 285.5 L 130.84375 290.5 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 299.984375 285.5 L 299.984375 290.5 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 469.121094 285.5 L 469.121094 290.5 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 638.261719 285.5 L 638.261719 290.5 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 43.5 280.773438 L 38.5 280.773438 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 43.5 250.21875 L 38.5 250.21875 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 43.5 219.664062 L 38.5 219.664062 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 116.019531 441.5 L 116.019531 446.5 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 278.179688 441.5 L 278.179688 446.5 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 440.34375 441.5 L 440.34375 446.5 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 602.507812 441.5 L 602.507812 446.5 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 43.5 436.726562 L 38.5 436.726562 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 43.5 418.132812 L 38.5 418.132812 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 43.5 399.542969 L 38.5 399.542969 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 43.5 380.949219 L 38.5 380.949219 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 43.5 362.355469 L 38.5 362.355469 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 43.5 130 L 656.5 130 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 44 130.5 L 44 35.5 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 43.5 36 L 656.5 36 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 656 130.5 L 656 35.5 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 43.5 285 L 656.5 285 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 44 285.5 L 44 191.5 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 43.5 192 L 656.5 192 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 656 285.5 L 656 191.5 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 43.5 441 L 656.5 441 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 44 441.5 L 44 346.5 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 43.5 347 L 656.5 347 "/>
|
||||
<path fill="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="1.154701" d="M 656 441.5 L 656 346.5 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 133 KiB |
152
posts/2024-12-25-moon-cannon-duece/latest_leapseconds.tls
Normal file
152
posts/2024-12-25-moon-cannon-duece/latest_leapseconds.tls
Normal file
@ -0,0 +1,152 @@
|
||||
KPL/LSK
|
||||
|
||||
|
||||
LEAPSECONDS KERNEL FILE
|
||||
===========================================================================
|
||||
|
||||
Modifications:
|
||||
--------------
|
||||
|
||||
2016, Jul. 14 NJB Modified file to account for the leapsecond that
|
||||
will occur on December 31, 2016.
|
||||
|
||||
2015, Jan. 5 NJB Modified file to account for the leapsecond that
|
||||
will occur on June 30, 2015.
|
||||
|
||||
2012, Jan. 5 NJB Modified file to account for the leapsecond that
|
||||
will occur on June 30, 2012.
|
||||
|
||||
2008, Jul. 7 NJB Modified file to account for the leapsecond that
|
||||
will occur on December 31, 2008.
|
||||
|
||||
2005, Aug. 3 NJB Modified file to account for the leapsecond that
|
||||
will occur on December 31, 2005.
|
||||
|
||||
1998, Jul 17 WLT Modified file to account for the leapsecond that
|
||||
will occur on December 31, 1998.
|
||||
|
||||
1997, Feb 22 WLT Modified file to account for the leapsecond that
|
||||
will occur on June 30, 1997.
|
||||
|
||||
1995, Dec 14 KSZ Corrected date of last leapsecond from 1-1-95
|
||||
to 1-1-96.
|
||||
|
||||
1995, Oct 25 WLT Modified file to account for the leapsecond that
|
||||
will occur on Dec 31, 1995.
|
||||
|
||||
1994, Jun 16 WLT Modified file to account for the leapsecond on
|
||||
June 30, 1994.
|
||||
|
||||
1993, Feb. 22 CHA Modified file to account for the leapsecond on
|
||||
June 30, 1993.
|
||||
|
||||
1992, Mar. 6 HAN Modified file to account for the leapsecond on
|
||||
June 30, 1992.
|
||||
|
||||
1990, Oct. 8 HAN Modified file to account for the leapsecond on
|
||||
Dec. 31, 1990.
|
||||
|
||||
|
||||
Explanation:
|
||||
------------
|
||||
|
||||
The contents of this file are used by the routine DELTET to compute the
|
||||
time difference
|
||||
|
||||
[1] DELTA_ET = ET - UTC
|
||||
|
||||
the increment to be applied to UTC to give ET.
|
||||
|
||||
The difference between UTC and TAI,
|
||||
|
||||
[2] DELTA_AT = TAI - UTC
|
||||
|
||||
is always an integral number of seconds. The value of DELTA_AT was 10
|
||||
seconds in January 1972, and increases by one each time a leap second
|
||||
is declared. Combining [1] and [2] gives
|
||||
|
||||
[3] DELTA_ET = ET - (TAI - DELTA_AT)
|
||||
|
||||
= (ET - TAI) + DELTA_AT
|
||||
|
||||
The difference (ET - TAI) is periodic, and is given by
|
||||
|
||||
[4] ET - TAI = DELTA_T_A + K sin E
|
||||
|
||||
where DELTA_T_A and K are constant, and E is the eccentric anomaly of the
|
||||
heliocentric orbit of the Earth-Moon barycenter. Equation [4], which ignores
|
||||
small-period fluctuations, is accurate to about 0.000030 seconds.
|
||||
|
||||
The eccentric anomaly E is given by
|
||||
|
||||
[5] E = M + EB sin M
|
||||
|
||||
where M is the mean anomaly, which in turn is given by
|
||||
|
||||
[6] M = M + M t
|
||||
0 1
|
||||
|
||||
where t is the number of ephemeris seconds past J2000.
|
||||
|
||||
Thus, in order to compute DELTA_ET, the following items are necessary.
|
||||
|
||||
DELTA_TA
|
||||
K
|
||||
EB
|
||||
M0
|
||||
M1
|
||||
DELTA_AT after each leap second.
|
||||
|
||||
The numbers, and the formulation, are taken from the following sources.
|
||||
|
||||
1) Moyer, T.D., Transformation from Proper Time on Earth to
|
||||
Coordinate Time in Solar System Barycentric Space-Time Frame
|
||||
of Reference, Parts 1 and 2, Celestial Mechanics 23 (1981),
|
||||
33-56 and 57-68.
|
||||
|
||||
2) Moyer, T.D., Effects of Conversion to the J2000 Astronomical
|
||||
Reference System on Algorithms for Computing Time Differences
|
||||
and Clock Rates, JPL IOM 314.5--942, 1 October 1985.
|
||||
|
||||
The variable names used above are consistent with those used in the
|
||||
Astronomical Almanac.
|
||||
|
||||
\begindata
|
||||
|
||||
DELTET/DELTA_T_A = 32.184
|
||||
DELTET/K = 1.657D-3
|
||||
DELTET/EB = 1.671D-2
|
||||
DELTET/M = ( 6.239996D0 1.99096871D-7 )
|
||||
|
||||
DELTET/DELTA_AT = ( 10, @1972-JAN-1
|
||||
11, @1972-JUL-1
|
||||
12, @1973-JAN-1
|
||||
13, @1974-JAN-1
|
||||
14, @1975-JAN-1
|
||||
15, @1976-JAN-1
|
||||
16, @1977-JAN-1
|
||||
17, @1978-JAN-1
|
||||
18, @1979-JAN-1
|
||||
19, @1980-JAN-1
|
||||
20, @1981-JUL-1
|
||||
21, @1982-JUL-1
|
||||
22, @1983-JUL-1
|
||||
23, @1985-JUL-1
|
||||
24, @1988-JAN-1
|
||||
25, @1990-JAN-1
|
||||
26, @1991-JAN-1
|
||||
27, @1992-JUL-1
|
||||
28, @1993-JUL-1
|
||||
29, @1994-JUL-1
|
||||
30, @1996-JAN-1
|
||||
31, @1997-JUL-1
|
||||
32, @1999-JAN-1
|
||||
33, @2006-JAN-1
|
||||
34, @2009-JAN-1
|
||||
35, @2012-JUL-1
|
||||
36, @2015-JUL-1
|
||||
37, @2017-JAN-1 )
|
||||
|
||||
\begintext
|
||||
|
||||
|
BIN
posts/2024-12-25-moon-cannon-duece/moon_spirograph.png
Normal file
BIN
posts/2024-12-25-moon-cannon-duece/moon_spirograph.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 135 KiB |
152
posts/2024-12-25-moon-cannon-duece/naif0012.tls
Normal file
152
posts/2024-12-25-moon-cannon-duece/naif0012.tls
Normal file
@ -0,0 +1,152 @@
|
||||
KPL/LSK
|
||||
|
||||
|
||||
LEAPSECONDS KERNEL FILE
|
||||
===========================================================================
|
||||
|
||||
Modifications:
|
||||
--------------
|
||||
|
||||
2016, Jul. 14 NJB Modified file to account for the leapsecond that
|
||||
will occur on December 31, 2016.
|
||||
|
||||
2015, Jan. 5 NJB Modified file to account for the leapsecond that
|
||||
will occur on June 30, 2015.
|
||||
|
||||
2012, Jan. 5 NJB Modified file to account for the leapsecond that
|
||||
will occur on June 30, 2012.
|
||||
|
||||
2008, Jul. 7 NJB Modified file to account for the leapsecond that
|
||||
will occur on December 31, 2008.
|
||||
|
||||
2005, Aug. 3 NJB Modified file to account for the leapsecond that
|
||||
will occur on December 31, 2005.
|
||||
|
||||
1998, Jul 17 WLT Modified file to account for the leapsecond that
|
||||
will occur on December 31, 1998.
|
||||
|
||||
1997, Feb 22 WLT Modified file to account for the leapsecond that
|
||||
will occur on June 30, 1997.
|
||||
|
||||
1995, Dec 14 KSZ Corrected date of last leapsecond from 1-1-95
|
||||
to 1-1-96.
|
||||
|
||||
1995, Oct 25 WLT Modified file to account for the leapsecond that
|
||||
will occur on Dec 31, 1995.
|
||||
|
||||
1994, Jun 16 WLT Modified file to account for the leapsecond on
|
||||
June 30, 1994.
|
||||
|
||||
1993, Feb. 22 CHA Modified file to account for the leapsecond on
|
||||
June 30, 1993.
|
||||
|
||||
1992, Mar. 6 HAN Modified file to account for the leapsecond on
|
||||
June 30, 1992.
|
||||
|
||||
1990, Oct. 8 HAN Modified file to account for the leapsecond on
|
||||
Dec. 31, 1990.
|
||||
|
||||
|
||||
Explanation:
|
||||
------------
|
||||
|
||||
The contents of this file are used by the routine DELTET to compute the
|
||||
time difference
|
||||
|
||||
[1] DELTA_ET = ET - UTC
|
||||
|
||||
the increment to be applied to UTC to give ET.
|
||||
|
||||
The difference between UTC and TAI,
|
||||
|
||||
[2] DELTA_AT = TAI - UTC
|
||||
|
||||
is always an integral number of seconds. The value of DELTA_AT was 10
|
||||
seconds in January 1972, and increases by one each time a leap second
|
||||
is declared. Combining [1] and [2] gives
|
||||
|
||||
[3] DELTA_ET = ET - (TAI - DELTA_AT)
|
||||
|
||||
= (ET - TAI) + DELTA_AT
|
||||
|
||||
The difference (ET - TAI) is periodic, and is given by
|
||||
|
||||
[4] ET - TAI = DELTA_T_A + K sin E
|
||||
|
||||
where DELTA_T_A and K are constant, and E is the eccentric anomaly of the
|
||||
heliocentric orbit of the Earth-Moon barycenter. Equation [4], which ignores
|
||||
small-period fluctuations, is accurate to about 0.000030 seconds.
|
||||
|
||||
The eccentric anomaly E is given by
|
||||
|
||||
[5] E = M + EB sin M
|
||||
|
||||
where M is the mean anomaly, which in turn is given by
|
||||
|
||||
[6] M = M + M t
|
||||
0 1
|
||||
|
||||
where t is the number of ephemeris seconds past J2000.
|
||||
|
||||
Thus, in order to compute DELTA_ET, the following items are necessary.
|
||||
|
||||
DELTA_TA
|
||||
K
|
||||
EB
|
||||
M0
|
||||
M1
|
||||
DELTA_AT after each leap second.
|
||||
|
||||
The numbers, and the formulation, are taken from the following sources.
|
||||
|
||||
1) Moyer, T.D., Transformation from Proper Time on Earth to
|
||||
Coordinate Time in Solar System Barycentric Space-Time Frame
|
||||
of Reference, Parts 1 and 2, Celestial Mechanics 23 (1981),
|
||||
33-56 and 57-68.
|
||||
|
||||
2) Moyer, T.D., Effects of Conversion to the J2000 Astronomical
|
||||
Reference System on Algorithms for Computing Time Differences
|
||||
and Clock Rates, JPL IOM 314.5--942, 1 October 1985.
|
||||
|
||||
The variable names used above are consistent with those used in the
|
||||
Astronomical Almanac.
|
||||
|
||||
\begindata
|
||||
|
||||
DELTET/DELTA_T_A = 32.184
|
||||
DELTET/K = 1.657D-3
|
||||
DELTET/EB = 1.671D-2
|
||||
DELTET/M = ( 6.239996D0 1.99096871D-7 )
|
||||
|
||||
DELTET/DELTA_AT = ( 10, @1972-JAN-1
|
||||
11, @1972-JUL-1
|
||||
12, @1973-JAN-1
|
||||
13, @1974-JAN-1
|
||||
14, @1975-JAN-1
|
||||
15, @1976-JAN-1
|
||||
16, @1977-JAN-1
|
||||
17, @1978-JAN-1
|
||||
18, @1979-JAN-1
|
||||
19, @1980-JAN-1
|
||||
20, @1981-JUL-1
|
||||
21, @1982-JUL-1
|
||||
22, @1983-JUL-1
|
||||
23, @1985-JUL-1
|
||||
24, @1988-JAN-1
|
||||
25, @1990-JAN-1
|
||||
26, @1991-JAN-1
|
||||
27, @1992-JUL-1
|
||||
28, @1993-JUL-1
|
||||
29, @1994-JUL-1
|
||||
30, @1996-JAN-1
|
||||
31, @1997-JUL-1
|
||||
32, @1999-JAN-1
|
||||
33, @2006-JAN-1
|
||||
34, @2009-JAN-1
|
||||
35, @2012-JUL-1
|
||||
36, @2015-JUL-1
|
||||
37, @2017-JAN-1 )
|
||||
|
||||
\begintext
|
||||
|
||||
|
@ -5,7 +5,7 @@ bibliography: ../citations.bib
|
||||
author:
|
||||
- name: Anson Biggs
|
||||
url: https://ansonbiggs.com
|
||||
license: "CC BY"
|
||||
license: "CC0"
|
||||
copyright:
|
||||
holder: "Anson Biggs"
|
||||
year: 2024
|
||||
|
Loading…
x
Reference in New Issue
Block a user