mirror of
https://gitlab.com/Anson-Projects/projects.git
synced 2025-09-19 12:02:38 +00:00
Compare commits
1 Commits
datascienc
...
moon-canno
Author | SHA1 | Date | |
---|---|---|---|
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]
|
[deps]
|
||||||
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
|
Bonito = "824d6782-a2ef-11e9-3a09-e5662e0c26f8"
|
||||||
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
|
|
||||||
Conda = "8f4d0f93-b110-5947-807f-2305c1781a2d"
|
Conda = "8f4d0f93-b110-5947-807f-2305c1781a2d"
|
||||||
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
|
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
|
||||||
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa"
|
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa"
|
||||||
GR_jll = "d2c73de3-f751-5644-a686-071e5b155ba9"
|
|
||||||
IJulia = "7073ff75-c697-5162-941a-fcdaad2a7d2a"
|
IJulia = "7073ff75-c697-5162-941a-fcdaad2a7d2a"
|
||||||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
|
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"
|
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
|
||||||
Pluto = "c3e4b0f8-55cb-11ea-2926-15256bba5781"
|
|
||||||
Revise = "295af30f-e4ad-537b-8983-00126c2a3abe"
|
Revise = "295af30f-e4ad-537b-8983-00126c2a3abe"
|
||||||
SatelliteToolbox = "6ac157d9-b43d-51bb-8fab-48bf53814f4a"
|
SPICE = "5bab7191-041a-5c2e-a744-024b9c3a5062"
|
||||||
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
|
|
||||||
|
|
||||||
[compat]
|
[compat]
|
||||||
julia = "1.11"
|
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
|
||||||
|
|
||||||
|
|
@@ -1,301 +0,0 @@
|
|||||||
Material Type,E (GPa),ν,ρ (kg/m³),Tensile Strength (MPa),Young’s Modulus,Altitude (m),Temperature (°C),Pressure (Pa),Operational Life (years),Wing Span (m),Fuselage Length (m),Structural Thickness (mm),Structural Shape,Load Distribution,Vibration Damping,Computational Time,Weight Efficiency,Durability,Quantum Algorithm Type,Number of Iterations,Optimization Time (sec)
|
|
||||||
Aluminum,185.69674587216923,0.3077091076893067,2730.710453347573,1423.8896628761486,91.17299288446213,15599.655147919875,-57.4316753428427,148360.10745115433,37,33.200714738611765,64.8981493428567,13.688270591376993,Tapered,point load,Low,Short,Excellent,Low,Chaotic Quantum Genetic,1568,146.8483625712404
|
|
||||||
Titanium,59.852396308551285,0.3091065976511747,1969.6701047524516,467.4422250027577,88.16186018969657,12086.883847255816,-40.72602152301445,168254.942831212,32,36.628837375854935,62.93773388897836,9.550246323730573,Cylindrical,point load,High,Long,Poor,High,Shark Optimizer,1764,107.07157146961171
|
|
||||||
Carbon Fiber,136.37391806872313,0.34693239807717946,3659.13911868068,961.1634225571677,55.89916627958678,19366.24386815015,-43.5763296690442,161654.15233261226,27,36.06081428096664,56.812967861996306,5.026259803862095,Tapered,distributed,Low,Long,Good,Medium,Chaotic Quantum Genetic,1707,148.14485133157285
|
|
||||||
Aluminum,103.1404688671567,0.3110803842093607,3377.9041546502604,1432.1332098388214,53.71812348404767,15975.653098448489,-54.26445040826743,143375.9981752317,25,58.4709309292062,30.477116063096545,9.812850176901676,Cylindrical,distributed,High,Long,Good,High,Chaotic Quantum Genetic,1394,72.46312572695285
|
|
||||||
Aluminum,136.73238012505152,0.3081743106150689,1859.5278067829097,1448.2940589146617,86.93776881689828,6948.7164403823535,-41.03878977021339,100397.4035199826,31,51.21656851915226,30.515037835310714,10.85505636634123,Tapered,point load,High,Medium,Poor,High,Chaotic Quantum Genetic,630,72.55489227802586
|
|
||||||
Aluminum,142.8293261707048,0.3458692800681361,3835.2676659121353,289.3948599331531,95.37520858635656,6431.227665179744,-56.159318961767795,176977.5145553468,31,20.01907763119695,65.65169341994012,9.711056981697059,Rectangular,uniform,Moderate,Long,Good,Medium,Chaotic Quantum Genetic,845,66.4723509826728
|
|
||||||
Aluminum,180.05288793830337,0.32605954095794687,2165.6654187122276,394.8236151465794,97.23435223482802,12975.196444997844,-40.785178256254,122496.84181779732,22,25.641439302803906,54.93476557528503,8.580532219920899,Cylindrical,distributed,Low,Short,Poor,High,Chaotic Quantum Genetic,1443,57.438959985958036
|
|
||||||
Carbon Fiber,95.46567932146925,0.3364791446443523,2381.1918865021908,918.3375262560851,77.54490562644108,6402.932149851687,-59.083534493517206,116094.72773801848,23,27.641114172579595,45.86597969323207,6.396295653522422,Rectangular,point load,Moderate,Medium,Poor,Medium,Shark Optimizer,1304,136.93256390334258
|
|
||||||
Titanium,193.33211000100965,0.3156223201252317,3843.9773642084233,832.5522183002187,81.40322335846595,16974.39460676098,-53.134688761511086,135539.80502332433,21,34.657051875464425,39.971821209190765,14.578870208967704,Tapered,uniform,High,Long,Good,Medium,Shark Optimizer,1124,107.67952920733637
|
|
||||||
Carbon Fiber,125.09339497884484,0.3270695448715915,3931.5677282158986,312.18376766009476,95.11438172512086,18428.346563804655,-59.113182716605884,189515.1590988675,37,23.55874400288851,39.89937025072916,12.239644803414784,Rectangular,distributed,Low,Medium,Excellent,Low,Chaotic Quantum Genetic,1195,128.01889520720465
|
|
||||||
Titanium,99.76197200379667,0.34219971494269685,3802.213663300717,1337.0312986856434,53.21965321919042,19718.0400014506,-45.667662622288994,139306.78626462014,38,37.87467910718959,49.995736339287646,14.680648659535029,Rectangular,uniform,Low,Medium,Good,Medium,Chaotic Quantum Genetic,1442,79.20082571877944
|
|
||||||
Aluminum,143.3125873666309,0.33993219975926603,2850.5786094242585,305.1293941720374,95.47654637704724,5193.101067257328,-43.569465368927624,123778.86047837434,20,58.871074482020546,64.763644877599,12.510552252342098,Rectangular,point load,High,Long,Excellent,Medium,Shark Optimizer,541,104.87086654280625
|
|
||||||
Aluminum,173.97208316924662,0.3297927846604411,4088.694664139886,1214.612784553235,61.21369420983725,14942.473259534878,-58.933154133216995,128046.04910270477,34,21.713714162745298,67.39587736930224,6.02060881973955,Tapered,point load,Low,Long,Poor,Low,Chaotic Quantum Genetic,1798,60.48475132088802
|
|
||||||
Carbon Fiber,164.39280107764,0.30160684458813486,3323.080303973813,969.0195401697008,70.37974658006833,16548.358714079353,-52.32338621879984,122355.92154472703,32,30.288172070395376,65.38914330024781,8.442654498895124,Tapered,point load,Moderate,Medium,Good,Low,Shark Optimizer,1037,58.774870860473825
|
|
||||||
Titanium,91.1591724557606,0.30021029872451355,1664.390825278095,261.2468675518519,87.61404538127476,7737.665305560045,-46.40778002720175,126644.23663043186,23,45.94479356094932,66.08393823328004,5.928445821198167,Tapered,point load,Low,Short,Poor,Medium,Shark Optimizer,1396,72.30942096323649
|
|
||||||
Carbon Fiber,165.1022287916304,0.3008221710583374,3555.2175899344197,831.5213387322339,88.05938513150673,15200.805232377954,-56.678938895369924,187245.15496293193,35,41.175028567582096,59.846477301936716,11.369122049991104,Rectangular,point load,High,Long,Poor,Low,Chaotic Quantum Genetic,1181,67.18012070543091
|
|
||||||
Titanium,183.85220393294023,0.3194816302474728,2140.532584432867,402.78530302256036,52.32649195759719,9470.54768089762,-43.50481992939302,194043.18213693151,38,45.668986919770916,35.75865924591864,7.508387097294733,Rectangular,point load,High,Medium,Excellent,Low,Shark Optimizer,762,91.06840119767335
|
|
||||||
Carbon Fiber,97.73649000181257,0.3465251814972963,1650.989863930798,1412.7590905269183,59.5296989080556,9473.487152567275,-48.69266879369785,100593.88273255317,29,53.88500825939991,67.59010105694699,5.915049433139105,Tapered,point load,Low,Medium,Excellent,Low,Chaotic Quantum Genetic,1541,130.16451419467
|
|
||||||
Titanium,103.32100834796287,0.3251616416637965,2063.066243161847,731.2444566912928,87.39099535485155,18773.927987827636,-51.635418720272,136000.4513198292,32,55.71027444991133,35.96461197422321,6.202030045517514,Rectangular,point load,High,Short,Excellent,Low,Shark Optimizer,1178,109.9248169510528
|
|
||||||
Carbon Fiber,126.67086383262512,0.3184986450753615,2748.5350688917533,1431.7431910820912,66.26139559574396,10000.458614177083,-42.72863794266303,160618.24564149286,32,36.123864085015995,68.64675350948136,7.9588951429252806,Rectangular,distributed,High,Short,Poor,High,Shark Optimizer,674,144.71471248891976
|
|
||||||
Carbon Fiber,65.83640046245274,0.33210439290697624,2288.8233594508492,1402.923346628862,63.30960553904075,12889.236306517234,-44.748384737640826,103901.36529063854,21,55.599758948803355,50.2659883520016,13.092362933884004,Tapered,uniform,Low,Long,Excellent,Low,Shark Optimizer,1466,143.485302485745
|
|
||||||
Aluminum,76.07339592814992,0.33782205516781094,3894.8878432032566,879.8498363101618,57.33068265251317,18175.65280786523,-45.65945623655695,148914.5749560104,37,52.77162727716028,30.329511276987343,6.363333735735451,Rectangular,uniform,High,Medium,Excellent,Low,Shark Optimizer,763,114.57785713385437
|
|
||||||
Aluminum,114.30464562492321,0.31364898375016864,2853.3471534018836,1186.4985158007942,59.94262741530115,15227.771507441645,-46.325477400382574,149505.71095971586,35,55.99710477557582,53.0742741412037,12.042902290161347,Tapered,uniform,Low,Long,Excellent,Medium,Shark Optimizer,1234,63.30789714731612
|
|
||||||
Aluminum,155.30014125726473,0.3463045171622278,2372.828437867368,1287.364284113898,86.1869184630626,19429.82668906438,-56.192926682953505,180798.82817886292,26,52.81414363657311,56.23267113133001,5.447753801464143,Cylindrical,uniform,High,Medium,Excellent,High,Shark Optimizer,1716,127.07984141251384
|
|
||||||
Titanium,89.68185181432807,0.34601878545167636,3467.4941842232615,1244.683293446122,75.08398749394509,7648.5411822589795,-53.2587376814376,169678.54108113432,33,55.95672624357594,51.802593169938,6.507240669764442,Tapered,distributed,Moderate,Short,Excellent,Low,Shark Optimizer,1800,106.0349869724827
|
|
||||||
Carbon Fiber,94.941326628275,0.3292341482313094,1984.0315169111295,451.39919053154307,76.25550943324689,18675.48532861378,-41.92134845163533,186516.57343162133,22,35.753265507287196,48.01579948924509,13.666356250759645,Tapered,point load,Low,Medium,Poor,Low,Chaotic Quantum Genetic,1481,140.0233447736726
|
|
||||||
Titanium,199.81757759681514,0.31730427447639625,1520.9326830665884,887.6698185833585,71.57797424272107,16849.923868198835,-43.141478528705484,127924.2401907722,39,37.389348486003996,41.313063478347665,11.617647747105028,Rectangular,distributed,Moderate,Long,Poor,Low,Chaotic Quantum Genetic,1937,107.71802469964831
|
|
||||||
Carbon Fiber,126.1558548149402,0.31220459790220234,1766.1422357320198,1483.2161721750033,86.99652446278297,6000.560641294601,-45.22842906320757,182374.7355351096,33,31.345037120332677,43.27105731288941,6.3104386120918035,Cylindrical,point load,Low,Medium,Excellent,Medium,Chaotic Quantum Genetic,1567,62.49753806139737
|
|
||||||
Titanium,90.49120856396642,0.3110594556193396,2246.090732707651,961.7395527232031,51.9364678559415,6909.513172344643,-40.471672166170094,120719.48515498136,27,35.288143033834345,50.92233688939321,8.077167277113304,Rectangular,point load,High,Medium,Poor,Low,Shark Optimizer,1178,69.96057682332706
|
|
||||||
Carbon Fiber,174.18302323561682,0.3488650862268602,2110.4414068867322,1415.8447690284972,86.97168639992108,15470.964231330086,-48.66796601545295,170774.8130660075,32,49.49157408154812,37.357939802083635,12.23262699413218,Cylindrical,distributed,Moderate,Short,Excellent,High,Shark Optimizer,1688,113.78608840480152
|
|
||||||
Carbon Fiber,50.10324792779846,0.3198538099174011,3454.20340548934,1436.463563476737,87.3980256309425,13293.297069881495,-56.033926491614785,107368.45344576395,32,53.65662468200266,49.59992953397539,13.776411710333175,Cylindrical,uniform,Moderate,Long,Good,Low,Shark Optimizer,1512,66.20427445707013
|
|
||||||
Titanium,102.59370321158133,0.3138365249203013,3698.001054697077,1031.2893197889362,67.8223312665979,18551.41433765254,-48.959965085013394,199753.23121456456,29,39.33409545323259,69.1042443948012,6.166558380245696,Tapered,distributed,Moderate,Medium,Good,Medium,Chaotic Quantum Genetic,599,86.20459461383635
|
|
||||||
Carbon Fiber,179.8601837764895,0.3212199485165768,4051.815453630391,350.3272911377233,71.02659886012793,7317.398454824679,-46.00713854401302,130432.42864555851,26,38.43526337354982,48.3916031392669,12.13650477461984,Cylindrical,distributed,Low,Long,Poor,Medium,Chaotic Quantum Genetic,1367,70.39894477480988
|
|
||||||
Aluminum,180.31717370858613,0.32398970635276614,4236.440887210955,958.0547929059627,90.18694600591681,17721.35467467908,-42.842938469918366,138251.0686734774,27,59.019420804208686,62.632726973470895,8.801667918699188,Cylindrical,point load,High,Medium,Good,Low,Chaotic Quantum Genetic,1094,65.43744200049852
|
|
||||||
Titanium,83.94742701811707,0.34629760413841476,1620.5408343974364,1410.3053664746371,72.45802238788207,5974.708676638895,-40.830608758035396,196996.0401135071,33,49.17695805302832,53.11643466648175,12.563119463106682,Rectangular,uniform,High,Long,Good,Medium,Chaotic Quantum Genetic,1391,137.70287344490055
|
|
||||||
Carbon Fiber,153.7902670450099,0.3429334249228698,2045.3599432162653,1385.5200900536254,61.91410700385839,7609.827125359874,-58.14729096847522,159994.09590703793,20,41.969313229517624,52.36771876365739,5.5222071692582775,Tapered,distributed,Low,Medium,Excellent,Medium,Shark Optimizer,735,118.6915748127189
|
|
||||||
Aluminum,197.82096452049848,0.3119910443413289,3375.48918804584,364.6478075497559,62.48317850458787,19962.628912373224,-53.29185042634573,148172.1077459446,21,46.07165746272892,32.80791280140578,8.04504780546391,Rectangular,point load,Moderate,Short,Poor,Medium,Chaotic Quantum Genetic,1355,70.41310363401095
|
|
||||||
Carbon Fiber,96.49774574338687,0.3217234467484825,3611.406616621056,325.7088403218356,62.64219434319173,9786.200543337738,-55.01831751744858,189546.53623136744,21,47.17772993686935,35.98127691981561,11.272163084709497,Rectangular,uniform,High,Long,Poor,High,Shark Optimizer,1537,115.93701177580775
|
|
||||||
Carbon Fiber,67.19368220137531,0.3152621385410689,3360.8395808477903,732.4683875250296,85.8852343101693,15536.035015799269,-57.45037399033869,103369.01246980573,33,56.68236905306986,60.82838204951429,8.793757771476947,Tapered,point load,Low,Short,Good,Medium,Chaotic Quantum Genetic,1433,108.24052665875041
|
|
||||||
Aluminum,145.9691592473058,0.3279837900648014,3047.0471882975553,726.5065912160063,89.15334170602381,7223.092355193023,-59.63576334379074,137622.91619872986,20,38.919485857087224,41.48776407231498,5.12701814075527,Tapered,uniform,High,Short,Good,Low,Shark Optimizer,1297,123.545799633798
|
|
||||||
Titanium,181.89251206173822,0.3045280593704386,2172.141626713458,1138.6949188296587,78.14394236447085,18492.477449297206,-56.53532506341871,148901.72944824485,31,48.33764052937341,69.94881322469841,7.7962542726683335,Rectangular,point load,Moderate,Short,Poor,Medium,Shark Optimizer,1673,130.23599876249048
|
|
||||||
Aluminum,180.40832905149895,0.3358546592267001,3779.305079212863,1172.9221585017822,90.40283248995459,17556.736668685626,-58.215594813308456,137763.017523335,33,55.04189055551096,69.05242236512643,14.281592330016922,Tapered,uniform,High,Short,Excellent,Medium,Shark Optimizer,1058,127.95688319796898
|
|
||||||
Titanium,139.36204823886553,0.3100690811986523,4106.413314134352,968.8277471766653,55.17719662156092,7122.928541049403,-53.213857781209214,165453.96780920826,20,43.576652724591355,57.505827135894094,9.682589900981457,Tapered,distributed,Low,Medium,Good,Low,Shark Optimizer,656,90.94844860339671
|
|
||||||
Aluminum,51.81017249373506,0.3352605710253455,2650.0124950999593,933.4888213887647,73.66971803738434,12110.296660994027,-52.97132452015937,109136.38312778754,21,27.915292837137965,30.30623238756448,6.8265145781461145,Rectangular,distributed,Low,Medium,Good,Low,Shark Optimizer,982,67.1710167138295
|
|
||||||
Carbon Fiber,165.54128690202185,0.3346820554806511,3000.742299803105,710.7813012517802,93.72875076281389,10280.128630580095,-48.95614388650211,124515.45824555824,31,24.754208486932235,54.408286558798096,7.162245260464161,Tapered,distributed,High,Short,Poor,High,Chaotic Quantum Genetic,860,108.83157338856557
|
|
||||||
Carbon Fiber,75.52636823304476,0.34015462408932634,2028.168206603846,1128.3788637758025,79.61096217167413,11035.915529704715,-54.00550478062596,174316.02129301603,28,36.57600065342378,31.620390142160417,11.014452180626567,Tapered,point load,High,Medium,Poor,Low,Chaotic Quantum Genetic,734,81.91398929192813
|
|
||||||
Aluminum,134.2445815243871,0.3396625227478938,3213.3167597173288,842.3632455072941,81.82236594419447,15542.71059503579,-58.37640252071766,134366.9232080362,20,28.430521199066586,62.885204620568686,12.591542248026117,Tapered,point load,Moderate,Long,Poor,Low,Shark Optimizer,1590,82.87443305515785
|
|
||||||
Carbon Fiber,51.92589868987134,0.3263982078047308,3922.946353396984,483.71745629058364,96.46870507031338,16843.764779349054,-57.479913608505555,178008.5725032908,28,45.05071110181301,52.45119994348275,5.431629480563175,Tapered,distributed,Low,Medium,Poor,High,Shark Optimizer,925,139.55570121612305
|
|
||||||
Aluminum,52.39584268665441,0.3340646956870017,2963.779409537177,1136.6364040866374,64.6066829672252,7705.364079862682,-48.13611673605301,105603.54082509266,25,49.08163939079482,31.33994726037191,7.280312441015119,Rectangular,distributed,High,Long,Poor,Low,Chaotic Quantum Genetic,809,73.3023656715142
|
|
||||||
Carbon Fiber,67.12419604885464,0.34939828315157634,2646.2996146619453,770.6907871089971,95.25364982468582,18238.298468368568,-50.39910153432608,141906.4297103032,23,26.208904671803722,62.22923576659143,10.024608673320618,Rectangular,point load,High,Short,Poor,High,Chaotic Quantum Genetic,1244,113.95656958889435
|
|
||||||
Titanium,125.0550520763387,0.3261607972683329,2645.033357748076,1158.1524741915118,57.85630173746365,12984.628009003696,-51.464052028780955,195651.36006806014,36,47.70085559184646,44.837999882052614,10.377837987060058,Tapered,point load,Low,Long,Poor,Medium,Chaotic Quantum Genetic,1004,134.25045202845445
|
|
||||||
Aluminum,106.59597173369147,0.30520087566284093,2264.5563629256712,864.4006439252198,53.92352967172894,17000.188166578708,-49.30703328992954,113215.00816928872,23,23.627615800031926,60.2312614954618,11.395836224702238,Rectangular,distributed,Moderate,Medium,Good,Medium,Chaotic Quantum Genetic,1403,148.71885519164908
|
|
||||||
Carbon Fiber,76.77139880894487,0.32288397958796283,4488.694619032443,851.994855598322,70.01921864769697,6991.4387878250345,-46.73002893677631,124068.24594056963,29,46.85763597715996,68.89676637113962,5.344333864801799,Tapered,uniform,Low,Long,Excellent,Low,Shark Optimizer,973,60.18465465088313
|
|
||||||
Carbon Fiber,166.62595402942807,0.31345617561655154,1622.418845601043,1178.4546792827118,87.57162019021179,6496.415503073929,-50.295794871642926,139673.2333180655,24,46.03284471188195,34.79682641759467,10.444322753597827,Tapered,point load,Low,Medium,Good,Low,Chaotic Quantum Genetic,558,111.82440330975172
|
|
||||||
Carbon Fiber,103.17546247576614,0.32114119061539603,3580.8718343627593,921.2736379816258,51.15444269077046,17763.3555582122,-45.51593734921981,182848.75767669035,37,40.70869405964362,61.55320743576864,11.67580067141912,Tapered,distributed,High,Short,Poor,High,Chaotic Quantum Genetic,889,71.70554771821288
|
|
||||||
Titanium,119.78659312190429,0.32202763184925237,2633.0727048554845,1386.429253706373,91.48489335429812,13027.527204254908,-58.6709913401147,131722.58665042804,26,31.570672893927885,60.71029548403665,11.001914083861738,Tapered,point load,Moderate,Medium,Poor,Medium,Shark Optimizer,728,57.87785554951081
|
|
||||||
Carbon Fiber,64.7337531399095,0.31909696622456507,1710.7711742007425,1116.224332777372,94.59189370682326,18630.828820971074,-49.54321187274624,140880.15486580122,33,44.245890188193215,35.06860686103313,9.930351982443662,Rectangular,distributed,High,Medium,Excellent,High,Chaotic Quantum Genetic,1250,62.39023637596573
|
|
||||||
Titanium,157.1366525376356,0.33778113619004196,4229.202795597148,1008.3434995394355,67.26946754131265,11875.459658007705,-47.26416892525209,158625.7928603336,35,55.37448336519795,57.532373897943785,13.725027226744846,Rectangular,distributed,Moderate,Medium,Excellent,High,Chaotic Quantum Genetic,1268,95.69211755015316
|
|
||||||
Carbon Fiber,96.25352808892958,0.3340331363150605,3832.486081712602,579.7298824255677,80.1652973771188,7190.744253400046,-58.649408845821426,124270.02953366433,28,38.78882045408136,64.59913025285542,8.5736110339123,Cylindrical,point load,Low,Medium,Excellent,Medium,Shark Optimizer,786,67.10415210554338
|
|
||||||
Titanium,125.49581854757568,0.3018495625761281,1989.1734798654365,518.0519335461158,75.20019144810344,9020.01724669529,-52.79323553442098,183726.16344585412,20,55.68568630989571,58.48089864262715,14.600653945697252,Cylindrical,uniform,Moderate,Medium,Good,High,Shark Optimizer,755,117.73648649644136
|
|
||||||
Titanium,79.78677028932746,0.30896032228873604,3329.290517677895,1256.8229478892729,72.15788651431193,14371.929990655526,-44.05166669513029,144302.9881317668,31,44.01368292712951,66.20627568082767,10.429486165318567,Rectangular,point load,Low,Short,Good,Low,Shark Optimizer,1895,55.141667030479894
|
|
||||||
Carbon Fiber,174.5840352198053,0.33112916896265276,4301.732871849848,549.4727803921394,56.74196490405457,9426.797302187802,-56.97075114852104,120238.36495844682,34,52.4147397242101,59.157072021272796,12.497721685851827,Rectangular,distributed,Moderate,Long,Poor,High,Shark Optimizer,1939,72.3663482379493
|
|
||||||
Carbon Fiber,145.7099592652728,0.34483513546056216,3870.51631014997,1103.9638862408856,83.31506980357005,8580.075154748785,-58.316830925257385,139575.78888199083,29,31.08678954978157,64.79769191426828,11.303787498352008,Cylindrical,point load,High,Short,Poor,Low,Chaotic Quantum Genetic,994,98.5768274353511
|
|
||||||
Titanium,62.352603928118285,0.33806682374225683,2756.991599697687,1120.9216400700225,82.00387275234948,5216.132976166924,-47.68758944534671,181099.04950867628,32,52.45576694281669,53.274202247818664,9.712069365189631,Rectangular,uniform,Moderate,Long,Excellent,High,Shark Optimizer,580,61.7731919120438
|
|
||||||
Aluminum,141.93751129688212,0.32683270312848717,2936.1115114383197,1153.3311641867906,93.56600255321447,7128.339269199193,-55.48393041486737,131970.97097416312,34,24.149395692653115,47.762827674298286,9.210452512591086,Tapered,distributed,Moderate,Short,Good,Low,Chaotic Quantum Genetic,1595,51.452166808289505
|
|
||||||
Carbon Fiber,80.11119206609943,0.32142582077929227,2780.959556192543,293.6230924046978,97.16729505454217,14708.638971238977,-41.62487786940113,143689.05143463542,25,40.560241141608,61.4057757343753,13.166632656263959,Rectangular,point load,Moderate,Medium,Poor,High,Shark Optimizer,831,126.86057157156615
|
|
||||||
Aluminum,64.92304702426978,0.34078484729801434,1530.4764333454066,1312.2815580517256,53.05601350850335,14262.350117018757,-47.226391365644176,180417.57613633777,33,30.03782265391196,48.68335712306381,14.681935967626739,Rectangular,distributed,High,Medium,Poor,High,Chaotic Quantum Genetic,1101,84.01353425744054
|
|
||||||
Carbon Fiber,120.73161331968106,0.30916322166882615,1924.3483516533702,806.3010402045561,62.458857360571606,19741.455801564058,-45.174906886232286,145163.25407416176,23,31.16073663050145,48.79943611108367,6.747584948497522,Cylindrical,point load,Moderate,Long,Excellent,High,Shark Optimizer,953,121.447874572892
|
|
||||||
Aluminum,83.31166557697277,0.34990396534913865,2531.4267219475387,1443.0062005444856,84.33254357697504,18259.95440369423,-40.02748539344467,168238.46736031948,36,56.31348225403329,55.113127109416624,10.321809275902819,Rectangular,point load,Low,Short,Good,Low,Shark Optimizer,1239,93.69451577385689
|
|
||||||
Titanium,68.2987780009954,0.33928495806909714,2066.240478505781,1446.145111100128,70.77653645006933,6071.200278298396,-54.743288070763846,122164.36390650568,27,34.06481834869423,61.00349411412256,6.798012909150933,Cylindrical,point load,Moderate,Long,Excellent,Low,Shark Optimizer,737,97.38853897247955
|
|
||||||
Carbon Fiber,181.05770111959808,0.3200286085935296,4322.098351215337,775.3376344149037,59.9982895061711,8346.319941714093,-43.61098151450741,163364.78104961774,26,36.71577854616624,40.78776598274473,10.809703985386053,Rectangular,uniform,Moderate,Short,Good,Low,Shark Optimizer,1663,144.36523752594871
|
|
||||||
Carbon Fiber,199.32331858444866,0.32346724082797357,3641.35929435735,914.8748181950555,70.1282059128773,9471.04950912469,-57.88165586225057,102917.22746541076,29,54.06943052454709,67.95267604495393,8.603210229781345,Rectangular,point load,High,Medium,Good,High,Chaotic Quantum Genetic,1866,128.12058805649917
|
|
||||||
Aluminum,193.81278082016019,0.3198583748438536,3107.523429895602,351.8486478078985,92.09031336503685,11572.685577560882,-59.83909144111157,186846.3033952424,36,41.38891291711869,30.01276768280777,10.869309077790453,Tapered,point load,Moderate,Long,Excellent,Medium,Shark Optimizer,1679,130.78437675187058
|
|
||||||
Aluminum,158.04281154753926,0.33081362759964644,2181.8215049067903,1387.5060642485632,75.06953467814637,16022.430938517125,-41.855856336011506,129574.30789275766,25,23.169391947340607,66.53384504277753,8.99118465569181,Cylindrical,uniform,Low,Long,Good,High,Shark Optimizer,1914,63.81812421794935
|
|
||||||
Aluminum,123.00463978788652,0.33586229327791195,4298.405766018375,282.5212407400989,87.17874319708542,12006.848061767763,-44.009619917183535,145311.13755185576,37,28.163491005785506,44.11594529694576,13.295317472826362,Cylindrical,uniform,High,Short,Poor,High,Chaotic Quantum Genetic,1505,103.34248167878721
|
|
||||||
Carbon Fiber,157.24982810270237,0.32764424037515655,3997.664360423798,1161.743177819044,83.2356802529196,14777.163141768651,-42.83664359993419,179565.24814722297,25,29.865087363376656,34.92962217771948,11.89974562572987,Rectangular,point load,Low,Medium,Excellent,High,Shark Optimizer,1049,134.16263742144548
|
|
||||||
Aluminum,199.79873562642683,0.33803079150185766,4155.848078633603,1047.7539568528498,96.00398373760461,10661.533557527062,-55.046293817026466,135523.91567529185,38,50.9082558210664,61.61807493409016,8.58993668384335,Rectangular,point load,Moderate,Medium,Good,Low,Shark Optimizer,960,81.88715670615426
|
|
||||||
Carbon Fiber,51.62875007673623,0.3342905973286316,2918.839606894168,432.2239487762512,97.0458149273556,6765.488962142561,-58.56350200026297,136899.07557651523,27,24.780620834562757,51.01257541212661,14.880442216015128,Rectangular,point load,High,Medium,Excellent,Medium,Chaotic Quantum Genetic,812,142.45243956038541
|
|
||||||
Titanium,102.57024885672254,0.3484051237672955,4401.575223887234,1371.2895375023656,98.45283912861181,15413.802583061055,-55.461850649184385,163609.72059587543,31,21.884151641735553,47.42107690466422,10.660588818362577,Cylindrical,point load,Low,Medium,Good,Medium,Shark Optimizer,960,138.89526786823666
|
|
||||||
Carbon Fiber,166.79426948269122,0.3335127162317976,3496.223750158945,1078.6697752843484,78.59502822969206,5970.85780914429,-57.7377967981293,186699.14141683932,30,42.98340911174206,51.01525554910158,7.888442714256309,Tapered,point load,Moderate,Long,Good,High,Chaotic Quantum Genetic,616,112.30862806344285
|
|
||||||
Aluminum,109.69766873153114,0.31801603475679024,2581.6527658101213,1121.0376109773708,53.73946761636116,16203.24088097327,-46.51206699841739,186324.04913003984,23,51.53347587433504,35.04235440481522,13.818059038320515,Rectangular,uniform,Moderate,Medium,Good,High,Shark Optimizer,1732,140.40738772801836
|
|
||||||
Aluminum,92.51010519210476,0.33138124583134165,1632.2891527791583,931.896558964996,85.60604314012227,18867.816225294133,-59.74363383837469,156542.4822601062,38,53.52866457879076,66.38635187320048,8.129975182447827,Tapered,point load,High,Short,Good,High,Shark Optimizer,677,87.73729944008977
|
|
||||||
Titanium,119.94872430886215,0.3339047877477086,2304.076833176831,288.8296542647375,77.60078951126592,15604.603059646399,-43.85067458113683,184574.92855529767,37,54.71041407453699,54.91931164346501,8.098797320047872,Tapered,distributed,Low,Medium,Good,Medium,Shark Optimizer,1391,108.13528150327238
|
|
||||||
Carbon Fiber,56.68633838128914,0.32036580986755664,3093.380984300831,1164.1480633247634,64.42196516710544,19367.912280099918,-46.38144919864643,161609.34012628978,26,54.68767473477626,69.96330333545606,14.107125159585612,Cylindrical,point load,Low,Short,Poor,High,Chaotic Quantum Genetic,637,145.4953148704685
|
|
||||||
Titanium,136.02442335005577,0.3199764670147615,1654.0993391467273,1466.861573890748,92.47496036789065,19004.393704124144,-42.43799816750993,139824.25059880555,38,39.82430060173187,45.044455244858426,7.982842640112154,Rectangular,uniform,Low,Short,Excellent,Low,Chaotic Quantum Genetic,1610,128.33100661294037
|
|
||||||
Aluminum,67.17496879224193,0.3432686355486503,4313.892014825285,1442.3889221347029,59.439437942709105,12547.280586836852,-56.70300091882989,122613.55387946786,26,46.33755399005969,48.13829406691694,14.263387219328788,Tapered,point load,Low,Medium,Poor,Medium,Shark Optimizer,1033,98.94293905157
|
|
||||||
Titanium,82.87817801366498,0.3364986273785943,3316.797728932426,332.338118288678,84.75798008974391,16535.54795771488,-40.580372581811375,104663.96178678896,39,52.640091096034844,62.984983298315726,9.40585206861043,Tapered,distributed,Low,Long,Good,High,Chaotic Quantum Genetic,919,110.05412004922044
|
|
||||||
Carbon Fiber,145.2899370200497,0.3008297340892527,2589.8562861471873,728.9221948628576,67.23555362907157,16770.01891939393,-56.28908635999404,129616.19365729274,27,32.74711035214018,31.12747054097595,8.523971537937605,Cylindrical,point load,Low,Medium,Excellent,Low,Chaotic Quantum Genetic,926,122.07972737777696
|
|
||||||
Titanium,76.91418830744459,0.33826609074533237,3963.0813739323544,397.58419480499026,78.57370830972161,5841.3062673969625,-53.721357645780365,180257.3183196313,28,24.618407784865166,45.49821942595951,12.216320186765017,Tapered,uniform,High,Medium,Poor,Low,Shark Optimizer,1022,54.70428535617845
|
|
||||||
Titanium,84.17935105262524,0.3121802578619319,3360.370948905229,1318.8159656985772,65.9688845363055,15335.306645973911,-47.97805863066143,121387.67032258914,28,26.30740068435225,47.336787835427664,7.5084923787657,Tapered,distributed,Low,Medium,Poor,Medium,Shark Optimizer,573,72.12455130423055
|
|
||||||
Titanium,179.83541624953236,0.3089427341261053,3416.5371445981073,886.7308167438717,96.59360043528862,18382.662411409477,-48.845825048941734,193147.05775591894,34,45.99003059791956,61.53420164324196,6.367703466391232,Cylindrical,uniform,High,Medium,Good,Medium,Chaotic Quantum Genetic,1499,127.21410070781467
|
|
||||||
Aluminum,162.625495920712,0.34379908882373145,3551.899938834394,1017.1737632298411,80.00480642199898,10712.328185207765,-48.0877281371544,128374.04457831135,38,57.62580373031115,32.30543520662526,14.273024190599045,Tapered,uniform,Low,Medium,Excellent,Low,Chaotic Quantum Genetic,1014,141.90362306016485
|
|
||||||
Carbon Fiber,93.56137557852627,0.3163487031851667,4222.337339056994,514.4395642182785,54.43976358531143,11032.831741271959,-41.884592228717985,102086.06251726026,32,53.365492590325125,63.844669401481056,10.755981578628298,Rectangular,point load,Low,Short,Good,Medium,Shark Optimizer,1189,120.31741367105886
|
|
||||||
Titanium,125.94395330817927,0.3259928433063592,2652.4227651285696,575.1940175827654,79.10872460559003,7906.255859700976,-51.43582154312202,146497.77021328296,27,34.090633770635144,50.12324392465645,7.3928860970612265,Rectangular,distributed,Moderate,Short,Poor,Low,Shark Optimizer,1824,113.22197585726792
|
|
||||||
Titanium,163.12294928775628,0.30126109970578324,2170.8433544605896,909.2615728393552,64.41411434892595,6197.414138580061,-49.2075455346522,128914.25648613147,32,30.29136717398812,32.21171982739105,12.118967907711234,Rectangular,uniform,Moderate,Medium,Good,Medium,Chaotic Quantum Genetic,1350,92.44591253858923
|
|
||||||
Carbon Fiber,124.07665122545002,0.32893581020939155,3999.5069650745954,684.1858643302327,80.27074353339084,15217.69602083406,-46.71645249540837,186377.7591058199,21,52.67688881465139,67.60770061778126,8.150328014686327,Tapered,distributed,Low,Short,Poor,High,Shark Optimizer,1365,124.71678851700949
|
|
||||||
Aluminum,57.26214531286442,0.33313405784661976,4106.8894617291435,403.6951804141105,58.747872244021636,15493.47937763715,-42.207651651908385,115400.70419731943,31,35.019743601559256,62.619052149578394,8.951652323766794,Tapered,uniform,Low,Short,Poor,High,Chaotic Quantum Genetic,1811,114.77977201388268
|
|
||||||
Carbon Fiber,179.806790085297,0.31449725982427434,3673.8332285660745,1262.1456347480912,74.31979786798422,10447.365730917183,-50.1853252905379,191436.5860863601,24,46.84923201328618,47.22423838667454,13.331945677199382,Cylindrical,point load,Low,Medium,Poor,Low,Shark Optimizer,640,106.15181505077253
|
|
||||||
Titanium,147.76877694911695,0.31368561994369654,3738.646001243673,1034.679589037522,87.38104743710042,8957.27656659461,-50.694209202406846,166086.75240033862,25,21.3756835353019,69.44189384744575,13.520506833772721,Cylindrical,distributed,High,Medium,Poor,Low,Shark Optimizer,1689,106.04616787902143
|
|
||||||
Aluminum,52.174883898308615,0.3053455482679295,2963.2478566728014,1260.4231306899558,82.6413789648906,7744.957008410021,-58.762015592894045,147178.03376333995,33,27.126628484107215,39.40804648774786,6.251924591518111,Tapered,point load,High,Long,Excellent,Medium,Chaotic Quantum Genetic,1965,134.68943585110935
|
|
||||||
Titanium,184.43893324273958,0.3427247400135462,3081.6114320085817,1012.4114283442904,79.85587036613865,17552.14089531356,-43.21395269339199,173357.29494532978,24,23.833245617461394,58.61892467502662,11.710335336488098,Tapered,point load,Low,Long,Poor,Low,Shark Optimizer,1435,148.7771228636147
|
|
||||||
Titanium,135.63836284704215,0.3380005478387557,1600.1814750305803,782.2510413637744,91.02812343570162,5654.629158427554,-46.11129129115784,130299.80419475633,37,40.166559348207464,51.838038739461965,10.84089152020642,Cylindrical,distributed,Moderate,Medium,Poor,Medium,Shark Optimizer,846,139.97693553342418
|
|
||||||
Carbon Fiber,76.79954485132303,0.3350277545428916,2450.1822039189074,1386.9929699618187,82.54336970444888,14703.58215175283,-56.31346256463422,140125.7089955663,30,27.2340450603772,48.920422879043585,7.789585518853858,Cylindrical,uniform,Low,Short,Poor,Low,Shark Optimizer,1907,92.43929081236843
|
|
||||||
Aluminum,60.48444947107433,0.33504309768839946,2183.992958975346,782.5467882314107,59.85878441448475,7301.053983427482,-53.88347973151224,126736.58702552057,24,54.67517617187244,68.50712184920992,6.0708501885579915,Rectangular,distributed,Moderate,Medium,Excellent,Medium,Chaotic Quantum Genetic,1721,108.49183953081575
|
|
||||||
Carbon Fiber,90.49154343604896,0.33222096025808984,2208.6714016493424,413.8914061824411,99.39376308501396,12125.377621674106,-44.539279122247294,115139.12207527022,38,39.08638647645702,57.8975503513143,12.206436604463606,Cylindrical,distributed,High,Medium,Poor,Medium,Chaotic Quantum Genetic,524,77.1825197184895
|
|
||||||
Titanium,91.55282762372312,0.31519326239074646,1529.522483135766,636.3811425366549,54.805216814441465,6550.204949242153,-58.31718693262403,184320.13305422163,23,47.21949681630108,53.47104998593006,12.949744147157727,Rectangular,distributed,Moderate,Long,Good,Medium,Chaotic Quantum Genetic,740,144.65566043534244
|
|
||||||
Aluminum,85.9902686912848,0.3479715189050339,3964.347313215337,645.2232108471612,92.7477027144372,17429.68411424043,-49.630410373214644,139443.1219999463,37,52.542790082799335,66.65746739575405,14.775731161383984,Cylindrical,uniform,Moderate,Long,Poor,Low,Shark Optimizer,633,131.80829509282373
|
|
||||||
Carbon Fiber,61.851208160031796,0.31500071203921787,3714.0441049746532,534.1300758827197,95.35821777486544,5376.9094436591495,-43.67594480135925,120686.64921333164,35,50.24890810469663,48.781151674233314,6.738799006066547,Cylindrical,distributed,Moderate,Short,Good,Medium,Shark Optimizer,1394,57.76785847832193
|
|
||||||
Aluminum,89.98176308928669,0.32693860723453544,2476.648622188361,773.9811560496805,75.97551587432388,8513.151285149126,-41.97345649364107,195790.86991082787,33,52.155499868931926,47.50121353603428,13.533282271009968,Cylindrical,uniform,Moderate,Long,Good,Medium,Shark Optimizer,1926,142.0687875584573
|
|
||||||
Titanium,114.58792068307095,0.34717988729928595,3548.066634951153,472.26818044919537,60.825413582155406,12397.296734391202,-44.96809602863618,109252.97538818988,35,35.252806652311996,49.52409876357566,6.277228607325734,Cylindrical,uniform,High,Medium,Excellent,Medium,Shark Optimizer,1979,141.38383190273504
|
|
||||||
Carbon Fiber,133.55386129779845,0.32334833485864556,3610.7854629797057,535.7100344478897,92.02116903033095,5813.421316815419,-49.03787996966923,109574.01124777614,38,48.06791232833086,36.83456013318051,11.127192618083626,Rectangular,point load,Moderate,Short,Good,Low,Chaotic Quantum Genetic,1449,125.03889027541749
|
|
||||||
Titanium,66.47947743957862,0.34274986274584646,3846.3888902281137,538.455680488003,88.48411659832087,7811.667803370031,-48.7320001610111,155470.41133333242,34,32.09122566917729,44.356764077724236,10.573351661330681,Tapered,distributed,Low,Long,Poor,Low,Chaotic Quantum Genetic,1708,86.59310520121974
|
|
||||||
Aluminum,77.86174515976937,0.31538870313870704,3896.0462222753663,1163.108793508014,71.04666375140258,18302.015784343395,-57.78311731623569,150027.95122863638,32,32.040264708994044,50.409246614630526,5.260121543019829,Rectangular,uniform,Moderate,Long,Excellent,High,Shark Optimizer,810,98.60631343370214
|
|
||||||
Aluminum,112.2761561644197,0.31800814427160484,2411.1353541531134,467.4800418816834,88.49263921322083,15107.823364204856,-53.9863382600782,175355.21250206657,27,26.476670055259458,39.535529477919845,6.470289674258533,Rectangular,distributed,Low,Medium,Excellent,Medium,Shark Optimizer,1076,67.4946347328466
|
|
||||||
Aluminum,187.6444669219642,0.3314288214629405,2791.0183735298915,1414.6902905608565,84.66259471749068,11895.22624081189,-56.49351242659862,151452.58012154154,31,43.61267531111008,36.91962405784078,12.305670374205134,Cylindrical,distributed,Low,Medium,Poor,High,Chaotic Quantum Genetic,1356,112.8758049224953
|
|
||||||
Titanium,154.13328143134243,0.33111131221019163,2368.758026252045,923.719728572155,67.57499243290658,16940.13352251224,-41.05446756842128,134482.63858802232,34,49.52628463656483,39.02193207855869,13.239061626007185,Tapered,distributed,Moderate,Short,Poor,High,Chaotic Quantum Genetic,1502,90.24037707766176
|
|
||||||
Titanium,89.77361408449609,0.332432621130794,3367.8961165529226,1435.4026681062542,75.21817109964186,15295.496048689403,-57.47851364286974,151666.24913247133,30,31.814791207783134,69.82145532549033,9.523130203191599,Rectangular,point load,Low,Short,Good,High,Chaotic Quantum Genetic,1402,76.87656310879599
|
|
||||||
Titanium,197.69307184406665,0.34847870226876165,1570.68586653003,1447.3412947714603,72.6580890863014,17361.399115659715,-48.06052289673833,141548.5735483423,36,40.53832710320906,39.47352070233924,13.26296515992648,Rectangular,point load,Low,Medium,Good,Low,Chaotic Quantum Genetic,1348,83.4801248818049
|
|
||||||
Titanium,87.51386046381967,0.34323917107856666,1777.3619797734766,1129.8116135539394,66.91209293243304,19384.641940425056,-42.17199580752094,138340.7525779543,36,35.400767712690104,60.68266514096644,5.123799088300558,Cylindrical,uniform,Low,Long,Excellent,High,Chaotic Quantum Genetic,1821,86.73927123073273
|
|
||||||
Aluminum,174.53868025738296,0.309029096088993,1643.5731187737154,935.3082644773463,58.564197636185405,11611.316386978557,-44.2779567902355,189740.60695258476,31,43.542310762718316,60.699682024753855,9.895327791074955,Cylindrical,distributed,Low,Short,Good,High,Shark Optimizer,1518,124.96019751647364
|
|
||||||
Titanium,134.69888492674067,0.3431704340349757,3309.188097628775,284.21645523888714,66.05671149485364,9611.413062072319,-57.950069664464536,177773.2469550484,32,32.84500792754571,30.43854297918614,7.940841423962398,Cylindrical,distributed,Moderate,Long,Excellent,Medium,Chaotic Quantum Genetic,594,111.85652966282001
|
|
||||||
Carbon Fiber,105.16066405920549,0.32772051146388786,3305.2576172329027,268.37133122959466,50.42456767106934,10441.975487963136,-46.75652902792134,103581.23260983427,26,25.39052461488651,37.81677994499889,6.0937220031791615,Rectangular,distributed,Moderate,Medium,Poor,High,Shark Optimizer,1218,84.15458419080369
|
|
||||||
Aluminum,97.13744338926156,0.33959099806880455,2255.456180250895,553.3538432075684,52.23798856961911,7760.888281471534,-42.99502435634451,147666.85931994775,30,41.19061854781824,51.64792381811826,14.21017510417067,Cylindrical,point load,Low,Long,Poor,Medium,Shark Optimizer,1178,136.4119098818287
|
|
||||||
Titanium,192.6595686606406,0.3378370964951013,3475.1566421289217,689.3456752618644,93.74280834696685,5147.811439144733,-43.11403607341548,152409.2263032784,35,27.139271591604622,58.04510376678871,7.743057042050042,Cylindrical,point load,High,Medium,Good,High,Shark Optimizer,1971,123.02089026723817
|
|
||||||
Carbon Fiber,196.68552330675885,0.3112854530417988,2104.677578174032,1349.3894577109115,60.88509182466303,19749.57673470555,-41.159506382576694,152536.9691155363,33,58.506424283069826,64.4285735515553,6.522153852040402,Tapered,uniform,Low,Long,Poor,Low,Chaotic Quantum Genetic,1361,66.391583625597
|
|
||||||
Aluminum,183.8906167180615,0.30768025250247594,2792.9898542986843,432.0151760907893,64.35188629950419,12449.436906372677,-50.047748024349914,154025.39874271565,25,42.27675846187081,60.388431969762735,5.978819853403826,Cylindrical,point load,Moderate,Short,Poor,Medium,Chaotic Quantum Genetic,1951,114.86525085726123
|
|
||||||
Aluminum,75.02629862638626,0.303493906873094,3712.984129576242,483.7489935226571,73.50664046847064,13766.919044327262,-56.578325577555596,183421.97472504195,34,53.34371532134881,31.36615983313861,11.065663369285133,Tapered,distributed,Low,Medium,Excellent,Medium,Chaotic Quantum Genetic,941,93.87709462046075
|
|
||||||
Aluminum,148.17507046870642,0.30343347859179376,4144.1534229696335,889.591682711022,96.17229743492592,9651.934666546655,-42.79316945644997,138332.17240194642,31,48.08123193665104,47.29526449915541,13.135265800208934,Tapered,point load,Moderate,Medium,Excellent,High,Chaotic Quantum Genetic,1012,97.52940579142154
|
|
||||||
Carbon Fiber,54.47272134203694,0.31775527155064764,3460.8322143698115,1036.8101047882842,83.06447492636715,14440.62966348379,-45.08295472893391,167130.18215741497,24,52.12206225137531,53.64209733938181,14.835461010921428,Rectangular,uniform,Moderate,Short,Good,Low,Shark Optimizer,1029,98.48692606574215
|
|
||||||
Aluminum,184.26998322860376,0.32969237437234233,3985.231446371762,1206.1870017156148,86.57718037264968,10894.644347613863,-47.022903257793324,155604.47276225704,21,28.629552749952126,59.578394373905454,14.271975743658572,Cylindrical,point load,High,Short,Poor,Low,Shark Optimizer,1239,122.80685546103992
|
|
||||||
Carbon Fiber,139.02043427925273,0.3250081129516541,4291.927911430152,1130.599677413748,68.50457570204802,5645.495309064314,-48.00680390378453,165496.35507062078,31,22.159731033816257,57.5700005347477,5.350588884653103,Rectangular,uniform,High,Long,Good,Medium,Chaotic Quantum Genetic,916,122.16155333019158
|
|
||||||
Titanium,121.23889060685343,0.3233584513976819,3048.947946973595,490.7853741011255,82.93802289260796,12672.684476010534,-55.43245509249938,181295.12031100813,36,41.56207083716204,37.952535846738094,11.808620138399139,Rectangular,point load,Low,Medium,Excellent,Medium,Shark Optimizer,1490,52.00685457980736
|
|
||||||
Carbon Fiber,103.74718622276833,0.31558285347157594,1835.9898025286757,850.2698378048267,90.69701663013859,18223.966410806264,-40.414440592247686,120916.40444077617,23,34.6880037364989,63.0193588779259,7.244540051765682,Rectangular,point load,High,Short,Excellent,Medium,Chaotic Quantum Genetic,829,75.19060715180943
|
|
||||||
Carbon Fiber,192.59185793082554,0.33329294562810163,2645.173561643849,511.522547469404,56.693247701721454,17944.279026943692,-42.211968491519755,193557.6107908364,21,34.657376347991004,61.20179547270853,7.899245459553135,Tapered,uniform,Moderate,Short,Good,Low,Shark Optimizer,1419,118.47300008219133
|
|
||||||
Carbon Fiber,53.17476807403847,0.319632638691402,2002.345274060352,535.4901513077143,91.09122148112104,19286.592328659746,-59.66907516208308,150487.07623444742,23,24.257700888603356,65.52094792140119,13.676073300570717,Tapered,distributed,Low,Long,Good,Medium,Chaotic Quantum Genetic,798,130.21788948829868
|
|
||||||
Carbon Fiber,109.4221612742347,0.321606442736265,2046.8231193278575,705.9309864325063,64.09218413965239,5455.518387373402,-47.4582094452839,173146.81711710396,38,48.53483532809835,57.67071238743965,11.27161216136317,Tapered,point load,Low,Medium,Poor,Low,Chaotic Quantum Genetic,868,147.3923714934731
|
|
||||||
Carbon Fiber,105.00083187385584,0.338745285280319,4406.600109697671,1309.3483268566483,93.16135003766627,13484.513327977136,-59.974258571539366,149388.18878492917,26,39.81018896151467,66.25991266248322,11.462097690084299,Cylindrical,uniform,Low,Short,Excellent,Medium,Chaotic Quantum Genetic,1085,116.47401671538692
|
|
||||||
Carbon Fiber,139.12998647371603,0.333578222945554,3872.9331918241382,1130.5249883630433,59.96522904798391,15058.745505322488,-40.781461829059864,164561.10536244523,21,30.311696149100385,66.85171521480873,12.576601361707985,Cylindrical,point load,High,Short,Good,Medium,Chaotic Quantum Genetic,642,108.18021051868077
|
|
||||||
Titanium,178.34292650583944,0.3285825688928668,4041.218324251428,747.4292689294091,61.04419314308945,15747.358358155669,-59.619443238050074,186124.71965772333,20,43.99388358988678,61.52432363292897,8.986222935906731,Cylindrical,point load,Low,Short,Good,Low,Shark Optimizer,1488,92.13461998585927
|
|
||||||
Carbon Fiber,89.06488164856773,0.32006218767672806,2265.009788081885,400.53401807257075,89.25179337509009,19360.45310237301,-52.24926922162031,136357.07150351602,35,31.555602869269332,55.4582377628179,12.179902476548945,Tapered,distributed,Moderate,Medium,Good,Low,Shark Optimizer,1593,61.39788768823497
|
|
||||||
Aluminum,114.08455086521978,0.32858606778014876,2579.618700241688,1096.2366018135808,50.75744203920824,15770.722855352524,-46.777237406433414,162497.42222998396,21,37.26007962902769,58.78784355457558,8.494933543287914,Cylindrical,point load,Moderate,Long,Good,High,Shark Optimizer,1233,91.93645735693049
|
|
||||||
Carbon Fiber,119.68300207223835,0.31872415997662584,3433.1545782232597,1371.8886537867509,79.76975604944536,6967.806137314897,-55.096142053456326,112462.27200257254,31,22.97038339587685,56.584240315561246,6.375768310642897,Cylindrical,uniform,Moderate,Long,Excellent,Low,Shark Optimizer,1423,148.97420523569332
|
|
||||||
Carbon Fiber,132.9939949539904,0.34479639069079776,3476.4041108633046,923.2408217418285,67.85569849854267,18175.71287544536,-46.65734817258223,157846.96752188334,31,46.32742730521771,67.2446920235183,10.686985080167831,Cylindrical,distributed,Low,Short,Excellent,Low,Chaotic Quantum Genetic,1802,122.90192889070134
|
|
||||||
Carbon Fiber,60.62543350660732,0.31598988605433687,2390.486804725004,1056.0027999917515,97.28037847255223,19538.86506732287,-43.711810468025206,173937.42421265919,24,38.40995074675583,53.18993548995866,8.732877172504182,Tapered,uniform,Moderate,Long,Good,High,Shark Optimizer,932,131.91397502133577
|
|
||||||
Titanium,69.2688454399015,0.3352042186907277,4408.555860765388,423.79333469019167,85.96018534848358,6535.025753933452,-51.49850969731044,182419.4302594776,21,57.02087172437106,69.69072102638613,12.524962426554502,Tapered,point load,High,Short,Poor,Medium,Shark Optimizer,949,56.536142251083575
|
|
||||||
Titanium,175.7383943982463,0.3497576507072271,1772.625270027273,1450.2706626931445,68.07486412129451,15654.748781061939,-47.82957670374314,103193.68279042256,27,50.343969396526795,33.195537528343834,14.445669216834713,Tapered,distributed,Low,Medium,Good,Low,Chaotic Quantum Genetic,1775,96.96868840261266
|
|
||||||
Aluminum,92.17369017894106,0.32231219649848636,3547.270666909043,346.72006006272755,64.868176460171,9447.543984281649,-49.20214419374315,128141.72380604527,26,47.3037150671765,63.33195723989284,7.060983369885894,Cylindrical,point load,High,Long,Good,Medium,Chaotic Quantum Genetic,1537,141.12887351646413
|
|
||||||
Aluminum,194.72876608043916,0.3498260631553911,4387.803113290621,1228.0939581358534,62.68229112749881,9416.925001688753,-48.48670140557605,141100.42942696993,31,48.782923420232535,53.357820390327134,11.49624403543298,Rectangular,distributed,Low,Short,Poor,High,Shark Optimizer,1971,116.59133508826464
|
|
||||||
Carbon Fiber,166.5605235168601,0.33298603678933925,3292.0130106779766,490.64558064833886,60.72870111858731,7476.652857763972,-47.519886799846894,151279.47781259433,26,32.84029556814817,47.352715240403185,7.615954699090288,Cylindrical,point load,Moderate,Medium,Good,High,Shark Optimizer,1959,141.50475362786983
|
|
||||||
Carbon Fiber,136.40483856492244,0.33029049320389037,2073.105157809348,517.2042154289202,94.05234441120234,16722.14045369842,-44.43309736464278,129883.17028628067,25,27.749223871916534,36.13515156884917,5.137279504616382,Tapered,point load,Low,Short,Poor,High,Shark Optimizer,1228,106.17100002733649
|
|
||||||
Aluminum,199.83468375664552,0.3201972263154291,3600.6859324170505,551.4422632033628,90.21923073666188,5548.178019648359,-47.38878647519978,133278.9646866758,39,27.014660007133294,60.866659789775156,10.560645886031729,Cylindrical,uniform,Low,Medium,Good,Medium,Chaotic Quantum Genetic,1633,141.72752839006483
|
|
||||||
Titanium,63.346614579642875,0.30306911546304,2362.8807754211434,1415.9203545052771,80.5816444772247,17351.474946353977,-40.12230196353694,127459.85686627339,24,40.98467167944583,38.050428347155844,7.273395981229688,Rectangular,uniform,High,Medium,Excellent,Medium,Shark Optimizer,709,146.03254076967374
|
|
||||||
Aluminum,99.03814614207573,0.32342099098643534,2375.1714757871277,820.7548287633477,72.90320398632147,5932.701076781486,-54.6511846056833,111264.17108280904,38,48.02370098730475,57.00411064767947,12.520428253767896,Rectangular,distributed,High,Medium,Poor,High,Shark Optimizer,1493,70.17661097124184
|
|
||||||
Titanium,75.40687540540495,0.3315691860783343,2497.8342587290663,957.1279266853898,88.70463096170494,17441.343051357162,-51.20483888905378,163243.3348476423,21,53.414273690914,37.68268911481229,6.887629248729828,Rectangular,distributed,Moderate,Short,Good,High,Chaotic Quantum Genetic,1457,125.32675334813422
|
|
||||||
Aluminum,68.7646914946048,0.30777658491471355,3897.7519265548394,609.9990607893453,55.79652399971057,6645.951986020225,-48.53260671660293,164627.0929374213,32,57.6371421486691,41.18433305603517,11.440008392983039,Rectangular,uniform,Moderate,Long,Good,Low,Shark Optimizer,738,121.9161392642731
|
|
||||||
Aluminum,166.84737720236998,0.3283392199423162,4304.190176824549,620.4980214827424,98.27423279229362,16250.081921951974,-40.81208789865232,149185.1709426367,35,25.768483008742148,48.06138969034268,5.228257496224748,Cylindrical,distributed,High,Short,Good,Low,Shark Optimizer,1217,125.02294232646437
|
|
||||||
Aluminum,120.09837112725617,0.34461568525958663,3213.6706543037108,1175.6269928123868,80.4202971444144,14083.385127608668,-54.26931548662968,131238.0656604902,33,21.578676961160138,36.80120918575558,10.841519321370292,Rectangular,uniform,Moderate,Medium,Excellent,Medium,Chaotic Quantum Genetic,831,64.45477053451731
|
|
||||||
Aluminum,56.69709945059187,0.3157407303502829,3826.410486284693,1080.9259051090617,58.83589412143627,6590.089848760536,-41.41535206449319,187033.30865202827,23,43.91122127170813,51.11571041122241,7.989444813261352,Tapered,uniform,Moderate,Long,Good,Low,Shark Optimizer,901,63.51697588851752
|
|
||||||
Aluminum,156.82138309881876,0.3194607261329255,4085.234923360307,627.932083142415,81.56017962943649,6001.6215767873855,-41.11837071458906,164988.11505586968,25,45.98213124519233,60.38292008526929,10.809049344061492,Tapered,point load,High,Long,Good,Medium,Chaotic Quantum Genetic,696,109.09169970740332
|
|
||||||
Carbon Fiber,187.11271147506574,0.32734695142171216,2643.417414356394,1308.1863690516734,90.79594817589891,18118.679212605603,-42.69021349117605,170333.4083442096,36,52.86001186879699,41.90752235181173,11.133548285596133,Cylindrical,point load,High,Short,Excellent,High,Chaotic Quantum Genetic,970,104.04109691705183
|
|
||||||
Titanium,71.90895345209883,0.30731456673371693,2162.8354070282476,733.1004411361089,78.28734880971301,19543.093051009295,-40.260691173904554,162301.12833883282,20,25.442045873054994,33.640062870680374,14.621281977080816,Cylindrical,point load,Moderate,Short,Poor,Low,Shark Optimizer,1613,116.92311497595226
|
|
||||||
Aluminum,126.24244126027871,0.3288802504631441,4171.673435526482,980.478230335445,50.10844500858114,6793.918802491668,-40.409615991806774,147705.58552853926,34,30.91367967753167,63.57714467766531,10.107418686608852,Rectangular,uniform,Low,Medium,Excellent,Medium,Chaotic Quantum Genetic,967,88.67737684798796
|
|
||||||
Aluminum,132.76809971399786,0.32189780582161676,3417.14160583138,289.5737330236487,83.56722642326741,14121.649937067752,-56.12069347854465,191521.67829782344,24,48.34671037260384,64.10286253273657,7.508791361437304,Tapered,uniform,Moderate,Short,Excellent,High,Chaotic Quantum Genetic,1877,59.83994986148069
|
|
||||||
Carbon Fiber,87.27337418029798,0.3058619078382297,4495.759088095127,1276.6913647750052,62.477724176645246,6093.353110750253,-47.909534456511075,172851.74463450734,24,49.354744194186964,32.068674111671,11.7714425156925,Cylindrical,distributed,High,Long,Good,Low,Shark Optimizer,1101,112.9440876077484
|
|
||||||
Titanium,116.9414619999563,0.33933657389100114,2423.07131646441,1343.6407368128528,91.04009236910004,11240.295163927125,-49.4982234096901,180430.24725062805,24,38.69732246117138,30.668971993706606,8.25551629521799,Cylindrical,point load,Moderate,Long,Excellent,Low,Shark Optimizer,1067,88.93385095457998
|
|
||||||
Aluminum,199.6874303498191,0.3047197704719732,4424.727677117145,558.644999159548,95.58079668543044,7914.392919918006,-59.17744253906887,135754.78216345742,37,45.51256588734137,34.419196059500926,11.230571539488661,Cylindrical,point load,Moderate,Short,Excellent,High,Shark Optimizer,924,132.38295848454538
|
|
||||||
Carbon Fiber,75.51484945659993,0.33405857566920594,3363.1487120786687,1194.0493461586047,56.330741869416094,6045.464723982278,-53.59800941435614,147713.74795957396,24,34.603685279744354,66.9263574944235,8.986823689904723,Cylindrical,distributed,Moderate,Medium,Excellent,Low,Shark Optimizer,1881,82.44187083874371
|
|
||||||
Aluminum,94.56556089203033,0.32471489572568857,1584.5843655427811,331.82785276571803,59.22638425632325,6882.740038603013,-50.04815261162904,187062.10894017783,37,21.855638741193207,45.08907489943889,10.654477149270479,Cylindrical,distributed,Low,Short,Excellent,Medium,Chaotic Quantum Genetic,660,142.44977118998773
|
|
||||||
Titanium,67.56157998854103,0.30783795527593555,1836.821865576465,877.5766596023909,56.6066820501142,6903.689512086867,-53.7507415039341,158602.44878113928,24,26.612918205950965,65.04635680736085,12.977760179877997,Tapered,uniform,Moderate,Long,Poor,High,Shark Optimizer,1203,70.64000738974406
|
|
||||||
Titanium,125.07938576615493,0.32189147886041664,2782.8714251932015,718.9670851660708,66.65101514102729,15294.060891879028,-51.23347730450811,144137.30534534185,26,42.700097820602636,55.98060292223079,14.705272243484217,Cylindrical,uniform,Moderate,Medium,Good,High,Chaotic Quantum Genetic,725,62.27031892039555
|
|
||||||
Titanium,171.80122164360668,0.3331430707404452,2251.918018777694,514.4999745149837,99.60466799554584,11283.724755384825,-56.66569701916052,154999.755319985,38,30.57953333704328,67.72994242837936,12.229155159854734,Cylindrical,uniform,Moderate,Short,Poor,Medium,Shark Optimizer,1032,134.07035448382464
|
|
||||||
Carbon Fiber,138.96799913988195,0.34049735313848034,2426.0133803637464,1118.382882280015,92.57949161144754,10483.325884279644,-40.03928514984504,127953.53212084374,23,46.959535447461285,49.84862549141527,10.171385333543206,Tapered,point load,Moderate,Medium,Good,Medium,Chaotic Quantum Genetic,1115,51.89795087302753
|
|
||||||
Titanium,170.82449016726224,0.31942975170320026,3193.2421121115203,721.1988787181929,79.81817304673737,16097.863768073987,-50.58823880556335,184786.23605019,33,24.569823534818287,59.82052256629467,8.35684247123519,Tapered,distributed,High,Long,Excellent,Low,Shark Optimizer,1428,119.59362289246151
|
|
||||||
Titanium,93.72792302224357,0.3396116047649838,3275.5856375930666,412.69901706851135,60.26073064232294,14552.069800588883,-43.26346955265798,182321.9884871071,36,52.05321058489518,47.352347342645345,10.791958622189856,Tapered,point load,Moderate,Medium,Excellent,Medium,Shark Optimizer,620,132.8946773365208
|
|
||||||
Titanium,128.338591606834,0.318390204537693,4156.482730017622,733.4835579355744,92.0218058131863,19935.24077476948,-56.850923338378564,192002.143145962,38,45.89018799666829,66.46359221326031,14.152896210103163,Cylindrical,uniform,Low,Long,Good,High,Shark Optimizer,1148,132.33449945744422
|
|
||||||
Aluminum,73.8090149565966,0.3408177430826213,2448.5769128868724,1396.0152771077885,64.95695257697055,6579.9292426561415,-59.621153861919844,158525.7366886848,25,23.997234466418927,47.124959238216064,14.003469289536568,Rectangular,uniform,Low,Short,Excellent,High,Shark Optimizer,626,139.9244882646708
|
|
||||||
Titanium,73.32930465871681,0.34272745401880583,2534.934963035566,490.3231064566148,50.75393812627439,5778.830183082483,-50.97413969615735,194582.21302045288,37,55.060416445991535,42.87058833575507,6.5783400656322275,Tapered,distributed,Moderate,Long,Good,High,Shark Optimizer,1056,64.88532297441647
|
|
||||||
Titanium,180.09620133045038,0.3243864678621922,2369.803768005643,889.3929429389649,54.03987066866878,13138.41567489173,-52.05198449209837,103293.43451524385,32,38.81194007351337,32.069989399260486,6.648687829011585,Cylindrical,distributed,Low,Medium,Poor,Low,Chaotic Quantum Genetic,712,68.51025671837998
|
|
||||||
Titanium,101.07948481019235,0.33960313788297314,1889.8579051754625,1124.2988306453503,62.85349978189063,12309.01725714908,-45.96427553301792,105879.52201363584,39,25.72064433241934,49.41769584481503,5.5465256548168504,Cylindrical,point load,High,Medium,Good,High,Shark Optimizer,1283,137.07259263296592
|
|
||||||
Titanium,109.19277192955673,0.32794549413266527,3187.2397495107853,293.65021239896515,86.9663194111391,13603.171726785527,-45.672039740679665,128067.73578506942,25,23.567439045494115,54.148813489052024,13.120443138632027,Cylindrical,distributed,Low,Long,Poor,High,Shark Optimizer,523,113.42455169039488
|
|
||||||
Carbon Fiber,152.6696023504366,0.32952897873152875,2708.4365867001634,737.8015144790563,89.89940486560965,17775.09829661627,-47.309929390925745,141917.39504487993,31,58.0582076477414,33.70070914398852,13.023187220065957,Rectangular,distributed,High,Medium,Excellent,Medium,Chaotic Quantum Genetic,914,58.620883204954865
|
|
||||||
Carbon Fiber,112.00881959133545,0.31865886549879124,2755.436104319301,827.4034301694264,89.74930422558322,14838.05760832567,-45.552019841846985,112338.63643995016,33,53.93675126274105,42.137620790526654,9.703516423209647,Cylindrical,uniform,Low,Medium,Poor,Medium,Chaotic Quantum Genetic,1197,92.89287075409526
|
|
||||||
Carbon Fiber,60.70789009281995,0.31567797098301037,3374.3329592433865,1333.3458865405053,64.96536079423925,13371.680365898603,-49.542903560932444,132120.00267518786,38,55.64041576527538,61.11139741954567,14.891479885329671,Cylindrical,uniform,High,Long,Poor,High,Shark Optimizer,1056,52.03076503170191
|
|
||||||
Carbon Fiber,152.78095182641238,0.3435710779182959,3245.7268453799197,330.6063540016541,83.98137964973716,17329.41791403921,-48.83775942445844,167410.03330741858,39,54.5044189573799,31.28338014760349,12.213018309392393,Rectangular,distributed,Low,Medium,Poor,High,Shark Optimizer,548,85.3271833848091
|
|
||||||
Titanium,71.82378604002112,0.3229463423087163,4262.4569636484375,751.3346948437769,74.09468183540808,6359.634529770067,-52.93897848034652,113917.69690990448,39,26.355100760186616,36.62370911418838,5.779340000642436,Rectangular,point load,Moderate,Short,Excellent,High,Shark Optimizer,892,79.46087045377946
|
|
||||||
Titanium,112.88745859776303,0.3380030989324535,2353.831236769237,609.6598578681815,87.84470151574206,17566.83131929546,-56.98103002033637,190363.484531281,33,22.162191679365996,59.27997176763812,13.54248522244884,Cylindrical,uniform,Low,Long,Good,High,Shark Optimizer,1212,124.75508064914825
|
|
||||||
Carbon Fiber,67.78219734186854,0.33265422145285306,2725.360533071691,1205.3204072061385,66.84198968265436,10805.422987986924,-52.72093138532442,187830.11061932036,24,44.96523857887968,68.68944500566197,12.849360176457019,Cylindrical,distributed,High,Long,Good,Medium,Chaotic Quantum Genetic,1754,59.38920611494613
|
|
||||||
Aluminum,199.78606273674143,0.307865367238671,4304.972831494888,564.5985806335037,54.5733096092584,15720.149500251373,-58.189778883064335,132944.42555412892,20,41.87944215333776,68.82410015827699,8.7020863196409,Rectangular,point load,Moderate,Long,Excellent,Medium,Chaotic Quantum Genetic,1674,56.20041624840617
|
|
||||||
Titanium,99.9159121694745,0.3215679473316001,3104.8504860547678,1404.2009528252047,99.53492609965339,16797.347420211536,-58.58934051995491,109472.15555236513,34,43.1196462990673,50.650836421485664,11.05158755097041,Rectangular,point load,Low,Short,Excellent,Medium,Shark Optimizer,1563,79.19727407478022
|
|
||||||
Aluminum,99.85072406041925,0.33694346622334626,3488.9115457916373,1081.2967351827815,59.55445634592409,5113.454695968275,-58.713687019179254,186970.55663227077,22,24.94991352248734,43.050441430124195,9.710147732066435,Tapered,distributed,Low,Long,Excellent,High,Shark Optimizer,1013,100.21775025214265
|
|
||||||
Titanium,133.45966673826945,0.32753318933012904,4116.376820774793,1428.4627149310197,86.36285149858058,10185.161725647138,-41.74214783029139,199838.63734669943,34,37.380486593526655,35.380110658370796,10.303594291097014,Cylindrical,distributed,Moderate,Medium,Poor,Medium,Shark Optimizer,739,105.61200759744418
|
|
||||||
Titanium,126.50016901527833,0.3425330024107249,3674.7584963395907,664.9957792545542,84.42230576682806,9402.140775464159,-53.64645590379666,187629.0472539254,20,30.066633996365496,57.798188607419746,9.566723001663053,Rectangular,distributed,High,Short,Excellent,Medium,Shark Optimizer,1839,52.97313133525133
|
|
||||||
Carbon Fiber,158.20249699278673,0.32260635061828874,3752.2161815070735,279.48367123112206,76.33619428727037,8881.060893684102,-58.55166580633603,129150.50343372603,27,54.796301529901875,62.74881032998602,13.418383768935735,Tapered,uniform,Low,Short,Good,Low,Chaotic Quantum Genetic,1825,144.4092085062881
|
|
||||||
Titanium,168.18628662563543,0.3230392300140324,4118.8404631486155,1196.787065368414,52.197071639575675,8486.47982359324,-49.61997957460107,146707.4214953051,31,32.5203199380889,61.10291371285684,12.014884030961241,Tapered,uniform,Moderate,Short,Good,Medium,Chaotic Quantum Genetic,896,131.7161089292363
|
|
||||||
Carbon Fiber,93.47735172074647,0.3276819676144798,2461.4502324587656,893.1608284010018,88.67322484997868,6318.7151113607615,-45.27239417126991,166276.46674818557,28,59.700470731936086,44.35268177850554,11.628575506756757,Tapered,point load,Low,Long,Excellent,Medium,Chaotic Quantum Genetic,1409,113.61113754907214
|
|
||||||
Titanium,78.74767208214891,0.3393160164635287,2057.271009239906,1099.9073857258832,80.92414713704787,10019.07631869839,-54.69440571537877,196017.24096054427,39,49.971522523709055,42.47769655220852,13.832703481352116,Tapered,distributed,High,Long,Good,High,Chaotic Quantum Genetic,672,75.75295895588889
|
|
||||||
Aluminum,137.3156664647344,0.3167303831072694,2273.51898115326,764.4424718713115,74.55181572014045,11358.504149523967,-46.34248615756951,186888.2786083053,34,24.332813734912648,66.46489766008504,14.524090817490867,Rectangular,distributed,Low,Long,Poor,Low,Shark Optimizer,1601,131.29518574000878
|
|
||||||
Carbon Fiber,130.48208971511093,0.33876012064799194,2768.2841982761684,1419.6990087330503,69.42598813221026,19416.25121338723,-58.53002632646023,157355.11169621354,39,24.78932552302384,48.4089098999,11.793058438855784,Rectangular,uniform,Moderate,Short,Poor,Medium,Chaotic Quantum Genetic,1221,134.3131854824422
|
|
||||||
Titanium,63.324962872687195,0.3080869092058525,3061.478556553598,871.2877922323855,71.06368516485479,8113.543617345882,-50.274422033708845,140441.7745384745,20,51.47575226315695,31.211102177975167,12.559639350984689,Rectangular,point load,Moderate,Long,Excellent,Medium,Chaotic Quantum Genetic,699,135.73738575527426
|
|
||||||
Titanium,123.53565721862158,0.3019454773671641,2092.8653620474424,1071.551350909288,97.66763776298635,9769.9545023014,-57.71260017205171,197133.8444764602,27,26.601907639912675,50.83135124738388,10.083783780990393,Tapered,point load,High,Medium,Excellent,Low,Shark Optimizer,895,149.83364146455503
|
|
||||||
Carbon Fiber,109.4490154547812,0.3493304450478336,3615.6779026183744,1162.3849487235677,84.09729086203858,14541.30925567411,-48.164918890181845,138151.10251520772,34,42.52848903553894,57.38284362095126,8.237433673721114,Cylindrical,point load,Moderate,Medium,Good,Medium,Shark Optimizer,615,79.10062304982083
|
|
||||||
Titanium,187.28303417858402,0.3268088480006997,2480.3234434401056,701.8223404543419,78.63575099523484,6921.19655520528,-40.97457228204692,151900.34389142768,33,31.157930875928365,42.72094795523928,12.599270883937432,Cylindrical,distributed,Low,Long,Good,Medium,Shark Optimizer,1610,72.13513294682767
|
|
||||||
Carbon Fiber,117.9492393494834,0.30890008719063605,3543.270095672942,711.4926785112391,60.466462990134275,8052.351570900372,-58.41390438974412,179659.30099874543,38,30.458436101970623,35.14032903773569,5.17665603182364,Rectangular,uniform,High,Medium,Poor,High,Shark Optimizer,1961,132.48423534114286
|
|
||||||
Titanium,161.3299132526702,0.3299691505131516,1914.4833836107175,1124.9501831359403,70.74377781428917,18759.32532046469,-43.09644160936145,169385.61950749977,28,25.778546972591954,65.33356446956168,14.8800238827295,Rectangular,point load,Low,Medium,Good,Medium,Shark Optimizer,1179,141.4768127000948
|
|
||||||
Carbon Fiber,131.53722696393785,0.3210177578287089,4351.720576933076,830.9522874371552,52.48215382448273,11997.669731326761,-44.70364888805722,160890.99338429153,26,21.703534389184753,30.929704958938004,7.957677732156462,Cylindrical,uniform,Low,Short,Good,High,Shark Optimizer,1095,132.57037458431398
|
|
||||||
Titanium,115.5421836442394,0.32389907583998245,2842.3475771895073,860.8376832820627,93.80644042712058,9151.577712295943,-48.36929942011754,174367.47435508907,22,49.04126664299555,65.01051880617047,11.029100023969796,Rectangular,uniform,High,Short,Good,Medium,Shark Optimizer,1857,148.94514534036836
|
|
||||||
Carbon Fiber,107.37747891979318,0.30579121410987914,3883.9844093515403,1424.663755277445,74.80393350691968,11959.579313290447,-41.27448348614631,139227.46634058078,21,22.20427859058068,45.34828971514548,10.671933220076628,Rectangular,point load,High,Medium,Excellent,High,Shark Optimizer,946,148.57945163008623
|
|
||||||
Carbon Fiber,144.79355569751556,0.30401440197199087,3352.744181713453,510.1914441574008,82.2269918971399,14253.075194501742,-45.18778171701921,143006.45903088132,36,39.36219953244666,66.26897863350095,8.566996455448294,Rectangular,distributed,Moderate,Medium,Excellent,High,Chaotic Quantum Genetic,1305,100.87720026479181
|
|
||||||
Titanium,84.53087473684803,0.3162160863721583,3534.2925631675453,374.17163832267056,51.689503598965715,7543.510330141304,-52.02872614226409,180752.53448797038,24,21.3608915610936,30.378353085973057,10.34132843272321,Cylindrical,uniform,High,Long,Good,Medium,Shark Optimizer,1133,117.16748745373539
|
|
||||||
Carbon Fiber,168.65728986466507,0.33300308399234574,3444.1420863367002,1064.475101438682,88.72069727520778,15797.595304615263,-56.16920982151109,106122.18622900116,39,29.17662268818939,35.91719475288422,12.912029831038916,Rectangular,point load,Low,Medium,Poor,Low,Shark Optimizer,1932,103.06570831206002
|
|
||||||
Titanium,183.501113634111,0.3425786303028783,1779.977470346558,591.0588368715744,63.81845628666689,15416.903081321543,-49.057924891994816,126681.35598185097,31,28.788747003501072,41.149848591568826,9.053157559123933,Tapered,distributed,Moderate,Medium,Poor,Low,Shark Optimizer,1828,129.26829528750548
|
|
||||||
Aluminum,161.17448530636005,0.3231393900637663,3963.8079137082327,811.3205380558993,62.87296068221107,19126.645016357095,-50.925493922973395,190515.40622172243,28,48.266917712098106,69.38449898796816,11.113015503806395,Rectangular,distributed,High,Medium,Excellent,Medium,Shark Optimizer,914,142.24981809497183
|
|
||||||
Carbon Fiber,58.031266833012474,0.30400445670195025,2017.2896486078218,978.2253625036751,64.2730276828996,19088.780933865164,-57.798662948257224,143405.54017249358,24,28.01505766878925,58.10790660179279,13.596178637277045,Tapered,point load,High,Short,Poor,Low,Shark Optimizer,1931,79.87429925535136
|
|
||||||
Titanium,136.37570297212676,0.33334205223689,1550.048780843938,559.783649359762,91.40958115345033,7915.29748861066,-47.457077299388146,146187.3548008253,36,20.624112778864557,39.561022351842695,6.343586350155961,Rectangular,uniform,Moderate,Long,Poor,Medium,Chaotic Quantum Genetic,1138,97.73123836389028
|
|
||||||
Carbon Fiber,152.73405190577824,0.30926024316365874,2761.1131143090333,1333.476356567212,69.68815281390472,5520.245690458759,-57.58023072754013,101602.67980436113,33,50.678436730889175,68.28455266234405,7.558440556547277,Tapered,uniform,Moderate,Medium,Excellent,Low,Shark Optimizer,1200,110.09101922559063
|
|
||||||
Carbon Fiber,57.65181232405935,0.3396311005140293,2084.8499154694873,796.3040907029854,52.815287554060184,13338.838661242955,-55.709090315430224,117838.79386039113,30,45.97437673837672,35.739866563601694,13.714408959552953,Cylindrical,distributed,Moderate,Long,Poor,High,Shark Optimizer,1500,145.43479233206568
|
|
||||||
Aluminum,138.00936462311864,0.34008559990155973,2180.076257600897,412.8283858301651,86.67372114471809,18081.527465381667,-51.36536544876153,116965.26840437623,24,37.22172771198903,32.056144710352235,12.96176874333899,Tapered,distributed,Moderate,Medium,Excellent,High,Shark Optimizer,1320,141.9082454648015
|
|
||||||
Titanium,196.84594476126284,0.30850845667844773,2175.3043891890643,521.8084513237167,97.61949349987913,9391.424635768917,-44.53569017196954,111947.8596010432,23,29.74796638040003,34.02639278313511,9.337394759048873,Tapered,distributed,Low,Medium,Poor,Low,Chaotic Quantum Genetic,1028,90.02667642409997
|
|
||||||
Carbon Fiber,125.00981945347718,0.3240182530588267,2232.7246963421417,1275.7195811371134,74.35490058460826,16228.05210583642,-52.26426132990494,139790.1601827328,29,26.48347289088477,43.63705672286863,7.567715406697869,Tapered,distributed,High,Short,Excellent,Low,Shark Optimizer,1005,53.295603308285756
|
|
||||||
Aluminum,125.4708165272372,0.31409741458499807,3142.899157908142,484.0823770068456,92.63091616559348,6712.079144696568,-47.57403797580669,173312.72842813522,23,28.588487616308527,42.35195672191338,6.269652526124117,Cylindrical,uniform,Low,Medium,Poor,Low,Shark Optimizer,1877,64.63359850697437
|
|
||||||
Titanium,187.38252838993355,0.31278577404373176,4154.004764908057,1279.0301528283187,69.78222204073813,8369.025762996407,-45.56440913091964,124798.41086824168,34,39.21407025992183,53.29858906288534,9.957279404793724,Rectangular,distributed,High,Short,Poor,High,Shark Optimizer,787,54.69873674920136
|
|
||||||
Aluminum,198.97573082046426,0.31611805152376743,4249.546997931168,561.4347049373589,78.98151686062941,12759.169213647192,-49.63077723689678,122600.18159426015,39,42.69543078562213,63.5321284920028,5.13882024963404,Rectangular,uniform,Low,Long,Excellent,High,Chaotic Quantum Genetic,780,109.48976221438011
|
|
||||||
Carbon Fiber,67.3327214126077,0.31329992398170314,3980.754750235748,1055.5266295727563,98.64527239749165,19671.280386867606,-40.575220575982776,165555.1606510082,28,44.67368688077056,41.33831710966791,6.507958579841045,Cylindrical,distributed,Moderate,Medium,Poor,Low,Shark Optimizer,860,129.59724070261154
|
|
||||||
Titanium,153.44339182596354,0.33328375237813057,4376.079652658282,594.4456593943303,56.27998056276017,19213.456966310776,-51.60061157221861,144812.75737787058,32,53.32819939646124,48.75672192337582,9.788017251789842,Tapered,distributed,High,Long,Good,High,Shark Optimizer,1396,58.694753247750796
|
|
||||||
Carbon Fiber,161.7449553000091,0.3023294424864961,1857.4660804630394,1089.283797175654,52.88366879007044,9748.459592535786,-50.329528080283026,140712.49395419424,36,28.02765592006115,43.38852961774215,8.301754947348403,Cylindrical,point load,High,Long,Good,Low,Chaotic Quantum Genetic,1921,138.4107694682034
|
|
||||||
Aluminum,183.449068679844,0.3474382841617692,3511.9630590409315,1037.041969635995,70.90816430852627,16558.04577283501,-43.065584496641875,103447.10545876047,36,43.3099662741761,48.39397825911057,6.526074212954347,Tapered,point load,Low,Short,Excellent,Low,Shark Optimizer,1897,110.43117133437039
|
|
||||||
Aluminum,84.34175298014374,0.32923496098639327,2937.631457719022,747.8873337860011,82.0672914524597,10459.033005382134,-58.861280769856,197460.25065263844,35,39.371991815316946,55.91369817694962,12.533248237095753,Rectangular,point load,High,Long,Good,Low,Shark Optimizer,1844,53.83283357820259
|
|
||||||
Aluminum,67.42242563333039,0.3198241480371565,4034.4540017486343,865.8454321190122,89.89782600440333,18327.72732919913,-45.960759413066256,127743.9501795964,24,46.69028937165877,64.36473587601357,8.269387610657912,Cylindrical,point load,Moderate,Long,Good,Medium,Shark Optimizer,1292,130.4977015541189
|
|
||||||
Aluminum,53.428797742534876,0.30701977954630527,3880.9260094917463,1427.5053449420695,86.58333805315425,19841.77115868535,-40.78009536430089,159551.2177648068,24,36.35101481033976,57.71187519204943,13.537845454417953,Tapered,distributed,Low,Long,Good,High,Shark Optimizer,764,69.11169350391867
|
|
||||||
Carbon Fiber,57.085239062242955,0.31110295608930855,2351.341950180716,1120.558298685262,58.760346049359875,14645.49745718864,-54.566123079950394,167206.28603439394,38,41.92399528837048,38.16433772984278,10.349883951908946,Rectangular,distributed,Low,Medium,Poor,Low,Chaotic Quantum Genetic,1897,114.52518324912403
|
|
||||||
Carbon Fiber,168.19615939315727,0.3263770892550651,3792.8163960174447,1364.2760740255196,86.54518119532469,16342.860787792799,-52.85236979846153,106835.90302989399,38,32.25214762338884,39.08357113573517,10.03724920221303,Cylindrical,point load,Low,Short,Excellent,Low,Chaotic Quantum Genetic,1080,127.31209225597671
|
|
||||||
Carbon Fiber,50.1475199417925,0.3224325835745488,2168.9859015896436,1493.0549273647625,91.96471326354984,17054.683588562442,-41.225334562671016,150129.63820626203,22,55.90437881833589,59.60274854453128,6.3050341682685005,Tapered,uniform,High,Short,Good,High,Shark Optimizer,884,56.96457478298099
|
|
||||||
Aluminum,159.07730124038275,0.34799394665493916,3297.2093547244895,282.1359945803931,69.78894226805491,17758.767533921025,-56.7120251199934,111919.5932774671,39,57.805949133021414,43.54369710480097,14.4217296994304,Rectangular,point load,Moderate,Long,Poor,Medium,Shark Optimizer,1490,71.35566842173844
|
|
||||||
Titanium,128.34881345740627,0.3387625696834526,3134.1917049602225,668.0202692030247,69.79289577307985,16752.713305694906,-48.92199507477562,160168.28905275164,26,53.05368787381495,60.16018178155578,12.076046186049634,Tapered,uniform,High,Long,Good,High,Shark Optimizer,1730,90.34207811742473
|
|
||||||
Aluminum,129.4176254705561,0.3262390016305974,3549.57740622188,615.3025537577353,79.07169020894653,11849.012576972262,-42.95362668552802,163034.67494548205,31,27.683376874307477,64.08543908539716,6.2561395983859915,Cylindrical,point load,Low,Medium,Good,Low,Shark Optimizer,1284,63.11740273130661
|
|
||||||
Carbon Fiber,60.806337298961296,0.3230222960495691,3321.2724277481525,801.9434206773415,90.766773055349,7257.273913628722,-40.52741253068015,119170.99041870018,30,37.4617433267726,53.475696515026364,5.007289818643935,Tapered,uniform,High,Short,Good,Medium,Chaotic Quantum Genetic,1096,141.90390813477325
|
|
||||||
Carbon Fiber,191.8542837494378,0.3037113248683276,1586.7272265085812,1313.9306437749235,78.21852152618891,18824.23209280477,-58.52091695519492,122776.87365120626,38,51.36011880765493,48.28008969630485,10.079738727492192,Rectangular,point load,Low,Medium,Good,Low,Chaotic Quantum Genetic,1053,148.3250831379027
|
|
||||||
Titanium,159.14293007922234,0.32610440831699034,3163.516545861131,921.0157911989576,78.8888050650946,13399.177494955497,-43.7081038131101,197546.09556894522,35,58.75202805455484,34.35722913538366,13.546434072556297,Rectangular,distributed,Moderate,Medium,Good,Low,Shark Optimizer,1365,80.38110095341474
|
|
||||||
Aluminum,95.50765953161259,0.3002257803282272,3158.6256019542134,1490.5235370651883,76.01797882167446,17631.090753943892,-52.76475754892414,115894.11274221505,38,49.163006425808234,40.86634408985985,8.992884408791785,Tapered,uniform,Moderate,Short,Good,Medium,Shark Optimizer,1102,71.98895383216399
|
|
||||||
Carbon Fiber,177.08228446053897,0.3372549244206147,3393.5636323503795,415.0516391584613,67.89140120394781,7338.27562295662,-56.18675938413862,141387.1961985939,30,33.88594494249489,68.38598707832885,6.024580189637602,Cylindrical,uniform,High,Medium,Good,Medium,Chaotic Quantum Genetic,1970,78.6215810565587
|
|
||||||
Carbon Fiber,93.27030406015186,0.31787050045695514,4468.365747528785,1382.5984018279678,90.93766608470104,18108.68756569468,-48.51977821348551,121354.52788959286,28,41.702269196271274,66.06573358244032,5.703669707507533,Rectangular,distributed,High,Short,Good,High,Shark Optimizer,1583,78.81348546354856
|
|
||||||
Carbon Fiber,103.44986977859799,0.3015192609639968,1624.7948489505502,957.9323653550438,98.60162522179414,12263.574150762619,-44.48251578282595,125600.48754599207,20,21.906181605603457,53.54398218465961,8.923569902670542,Cylindrical,point load,Moderate,Short,Excellent,Medium,Shark Optimizer,1567,68.41598451723618
|
|
||||||
Aluminum,59.85024692881366,0.33035966803109845,1926.1425119023147,1039.7650001949914,76.46262730149351,14858.91491755473,-52.122000906018826,195524.92918411846,22,32.70098726354604,41.20930560944943,10.20891531546451,Rectangular,distributed,Moderate,Short,Poor,Low,Shark Optimizer,616,119.81058315170866
|
|
||||||
Aluminum,145.10220223203737,0.32083344923480306,2466.1745404384546,1458.3643486495646,92.93416096366246,16512.885729684836,-46.97636482464479,194996.1770537466,25,24.3946198251297,33.39827001545552,12.215211244370117,Rectangular,point load,High,Long,Poor,Medium,Shark Optimizer,1504,79.98148748392312
|
|
||||||
Aluminum,156.23663628672296,0.31383419535100976,1611.0951453140658,772.5830581098461,84.91059517603884,8657.163121623667,-54.33301737449769,185253.6328148537,38,29.595385592804387,52.85203823643974,12.23396142686233,Tapered,distributed,Moderate,Short,Good,High,Chaotic Quantum Genetic,933,65.54861969838592
|
|
||||||
Aluminum,129.40441584207443,0.3113574899189524,2983.299087638119,286.113113217805,55.93064049664957,14852.302540288127,-42.52506245084881,151435.9020039608,34,25.467522803867517,47.405947027879506,11.690922072779568,Rectangular,point load,Moderate,Short,Good,Low,Chaotic Quantum Genetic,1524,128.88023033746975
|
|
||||||
Carbon Fiber,159.74559288388912,0.3102209106189198,2875.944494102293,604.2988642726604,70.68488412680576,8044.280517760523,-53.19658930819816,137196.8254794872,33,57.72686548143357,50.27300046378633,10.866539282225778,Cylindrical,uniform,Low,Long,Excellent,Medium,Shark Optimizer,954,96.86733920125826
|
|
||||||
Aluminum,155.8393301315951,0.3426252457818588,1937.1872841391591,512.5767590499013,52.291383506519786,19266.927247512023,-50.190590906917514,177493.24021970894,30,42.193561547597,68.24995426694744,13.714735079476572,Rectangular,uniform,Moderate,Short,Good,High,Shark Optimizer,1151,122.65855766786242
|
|
||||||
Titanium,124.38390592380034,0.3298943473320918,2529.5597341716802,718.5950718562467,55.69914726794903,5884.309861069101,-43.57902714619591,118356.34720418457,24,24.917482502412835,62.048482304312664,5.7246230685096275,Rectangular,point load,Low,Long,Poor,Medium,Chaotic Quantum Genetic,1569,94.06164767783511
|
|
||||||
Carbon Fiber,147.06351138935955,0.31371683449892473,1586.6715999425744,747.9921607993817,94.49979950160741,19655.50934295629,-41.63211436747248,125838.02920841033,31,57.055513803360924,49.42016034129139,9.031507981102704,Rectangular,point load,Low,Medium,Excellent,High,Chaotic Quantum Genetic,1340,103.58042100009911
|
|
||||||
Carbon Fiber,138.05967626418652,0.3168444668841396,3573.185229158968,1358.6782701354248,91.93515798661696,10740.562349915166,-40.52579012793008,191134.4733947721,31,34.978602554505926,65.32691887127287,5.002665120391389,Tapered,point load,Low,Medium,Excellent,Low,Chaotic Quantum Genetic,1666,132.20683382549674
|
|
||||||
Carbon Fiber,104.09492941174557,0.3381619739888985,2555.484186857165,1421.3921046449352,52.24277639629873,14297.323214101865,-56.965944362029994,102036.38431816829,30,20.730539262197368,55.559594615666654,9.439345941532457,Tapered,distributed,Moderate,Long,Poor,Medium,Shark Optimizer,1983,108.11524561951418
|
|
||||||
Aluminum,171.70401126092554,0.3377089240480896,3751.192228966798,943.999928534063,80.31303028002746,6697.475397037162,-42.792750960092874,127418.52743523614,31,51.26189900470396,36.125874271187385,13.533339954964113,Cylindrical,uniform,Moderate,Short,Poor,High,Chaotic Quantum Genetic,879,84.48499277895189
|
|
||||||
Titanium,60.484640668248126,0.32574846579810257,1793.997006732732,335.2350290226964,60.156575490146906,5085.762895380582,-41.626859155023695,164442.33638856414,34,48.132985728583705,44.22281060226674,10.68695838672264,Rectangular,point load,Moderate,Medium,Excellent,Medium,Chaotic Quantum Genetic,680,102.89897110836881
|
|
||||||
Aluminum,91.88923194895838,0.33506809257701897,4171.373814819603,731.3437573186568,59.099347411554064,7008.140891272159,-43.601039117699905,189945.493456338,32,38.85912669665809,69.58975536684518,6.508198998912061,Rectangular,distributed,Low,Medium,Good,Medium,Chaotic Quantum Genetic,622,74.27080950415265
|
|
||||||
Titanium,198.51241145775035,0.32572130001328586,4005.206019704468,691.9507988005614,61.41226833287119,14060.467167154186,-49.971827159526924,173869.65341240546,26,44.89180944204042,40.27420863176589,6.7720054985989195,Tapered,uniform,Moderate,Medium,Poor,Low,Chaotic Quantum Genetic,1096,52.31034389266972
|
|
||||||
Titanium,166.39684387245256,0.3461118037885186,2035.1298568926777,1463.516946166312,50.647692267905896,13087.61878333434,-59.62180467301834,199589.4115631007,39,28.102079491684965,31.398487482070546,11.734603870975022,Rectangular,point load,Moderate,Short,Poor,Low,Shark Optimizer,1572,72.85065873217532
|
|
||||||
Carbon Fiber,151.44739672956135,0.31306804156299434,2647.662272489538,312.3242890680026,75.50388560144992,7783.912358218977,-44.92102965073815,139328.78670744144,37,34.81550656625869,61.50889592633849,9.599565586502468,Tapered,distributed,High,Medium,Excellent,Low,Chaotic Quantum Genetic,575,144.744777789402
|
|
||||||
Titanium,168.29118621672035,0.3357715357189974,3710.271445655975,979.2504648681735,57.337411236785925,5350.723601828506,-59.137729284974874,112531.1630605543,32,23.941216057740103,51.646469681532295,14.938447247403403,Rectangular,uniform,Moderate,Short,Excellent,Medium,Shark Optimizer,1564,55.5217890109575
|
|
||||||
Aluminum,141.56360490479676,0.33796379859101244,3442.4633663124723,482.4565544720325,92.00604567118044,9516.56698078591,-59.531832084291,104190.16758434002,36,38.4470505546949,49.32498158982234,13.50327961146064,Cylindrical,uniform,Low,Medium,Good,Medium,Chaotic Quantum Genetic,809,135.9400441070838
|
|
||||||
Aluminum,156.14665339101856,0.3448177532374029,2273.6373521717687,265.4341464147885,64.8965611311593,17070.264198277648,-54.12140128817527,180546.0655689793,29,59.25602198893366,47.72023068179749,6.7554112877938435,Rectangular,uniform,Low,Long,Good,High,Shark Optimizer,1830,109.01889951046488
|
|
||||||
Aluminum,186.35219262122487,0.3326552752850483,4258.772765693722,968.1218134331315,74.49107352556676,7290.61487077061,-44.37110429385557,100171.58928205323,28,47.08281242102227,60.163608010835155,14.28696523524599,Cylindrical,point load,High,Medium,Good,Low,Chaotic Quantum Genetic,1567,95.96096866912072
|
|
||||||
Titanium,77.32531776454842,0.30786647184051247,1659.784082054094,905.0046011050001,62.915780464455025,14400.176350510319,-49.07015680790664,125679.4516497108,24,36.48200962091373,66.02444616604825,13.966945573607797,Cylindrical,distributed,High,Medium,Excellent,Low,Shark Optimizer,1309,140.66903311095058
|
|
||||||
Aluminum,60.049487142818236,0.3407841888228831,2760.8560586518524,300.30327455345457,96.33097058314851,17257.44453323435,-56.41382135140423,185533.90661767777,30,40.852017259610236,35.19735907219575,13.980378160188657,Tapered,uniform,Moderate,Medium,Good,High,Chaotic Quantum Genetic,1864,104.92854012037427
|
|
||||||
Carbon Fiber,151.9538216823329,0.3221474246707368,1702.4318829468336,541.3965007010958,66.00587638353169,7110.035334122142,-53.68156452713198,170178.52731901256,37,39.87547984350953,49.07124484433884,11.394304922861073,Rectangular,uniform,Moderate,Long,Poor,Medium,Shark Optimizer,851,120.8064944586448
|
|
||||||
Aluminum,173.67020380593257,0.31214139521525636,1781.7388727173634,1155.0187736253856,61.08114940514266,14878.982816786243,-46.42044448454856,180427.31065770882,38,37.213652300161485,35.04161368786937,13.876900412908999,Rectangular,uniform,Moderate,Short,Excellent,Medium,Shark Optimizer,662,72.31556737626164
|
|
||||||
Titanium,83.99383252007797,0.33750142504332437,2723.2018500539207,797.6202186708347,51.22546878915388,11960.76331784355,-53.5141056906284,182260.25088735457,29,32.13421848414275,62.25285294922725,11.42697179252313,Cylindrical,distributed,Moderate,Medium,Excellent,Medium,Chaotic Quantum Genetic,1528,119.85236375454163
|
|
||||||
Titanium,73.14818083777563,0.34394834746234393,1942.1599075163656,360.6833682370541,67.26979276142019,8481.514357385486,-53.06464017549114,163179.81861464377,31,33.589081632999935,30.81779190194693,6.706978335349341,Cylindrical,uniform,High,Medium,Good,Medium,Chaotic Quantum Genetic,1094,124.80323269144964
|
|
||||||
Carbon Fiber,136.26150284410426,0.30551953522520053,1979.9588155706736,1133.8869510505847,79.96223297446562,12626.428747250233,-58.33193197077725,171662.4512674342,37,30.196883636635352,34.22237986067627,14.662507700548101,Tapered,point load,High,Medium,Good,Medium,Chaotic Quantum Genetic,761,111.95483429623509
|
|
||||||
Carbon Fiber,186.7704624284862,0.30063675837991477,3965.99854697664,865.0213275297234,92.62167016322528,13699.36069643242,-47.58973876916265,117880.21592821144,20,47.97737662692356,53.6907431456489,10.44824349716499,Rectangular,point load,High,Long,Excellent,High,Shark Optimizer,1223,79.61694168958124
|
|
||||||
Titanium,99.82355031479588,0.30327758395320126,4008.920840766815,937.0666502781637,60.96550440822172,11454.44961618821,-44.31827467032464,133690.293628842,39,40.19021328331874,30.646549984944457,12.472189443676902,Rectangular,distributed,Low,Medium,Good,Low,Shark Optimizer,1568,61.8883706863526
|
|
||||||
Carbon Fiber,188.00932199689447,0.3405895994284934,4089.732370172486,373.02697304690855,88.23066968513618,15740.313681368887,-44.09372598500028,106962.69291739838,21,37.389433222826014,48.63921849536145,13.342877624081583,Cylindrical,point load,Low,Short,Good,High,Chaotic Quantum Genetic,1919,77.57765161557042
|
|
||||||
Aluminum,64.88289734563017,0.30624445767097386,1988.147642988144,335.46031263178975,65.80811928758766,13065.966031441094,-49.9439966239004,163570.92543500435,32,48.206268580935664,35.486506124408315,12.91690494737031,Tapered,point load,Low,Long,Poor,High,Shark Optimizer,1424,103.47288828246892
|
|
||||||
Aluminum,134.09762093293463,0.3394207690433808,3482.5451440618344,372.5035392174285,67.10720219396096,13118.874797302262,-56.15983471174473,150685.49449590297,37,45.805858258830256,54.653265551644864,9.455853114564926,Cylindrical,distributed,High,Medium,Excellent,High,Chaotic Quantum Genetic,1250,66.78528324241148
|
|
||||||
Carbon Fiber,175.03107899478047,0.30866438424547804,3591.6155405575932,814.8028121815528,69.89617508264722,7386.706014574198,-57.202844715305744,162535.89070983444,32,41.81140403395452,31.14356934949207,7.71432694676546,Cylindrical,point load,Moderate,Short,Poor,High,Shark Optimizer,870,79.7849260433373
|
|
||||||
Titanium,89.13365846241868,0.34506135012491645,3132.411291988288,1152.3598212256977,72.30935128674004,6230.313598677851,-54.8829335670404,163297.50020329354,39,31.962176900947043,31.45909523915328,8.998606967637816,Rectangular,uniform,Moderate,Medium,Poor,Medium,Chaotic Quantum Genetic,1186,62.6036435743822
|
|
||||||
Titanium,134.4840693580297,0.3251746495388523,3030.4785345729006,454.03231105276836,86.73007887714084,7721.772906245542,-51.79719496099713,142104.6524330817,28,52.700400149760455,39.91951219468825,14.471794730760012,Rectangular,point load,Moderate,Long,Excellent,Low,Shark Optimizer,1052,96.77927553880457
|
|
||||||
Carbon Fiber,188.96103015236105,0.30076536981279867,3709.1072489331127,859.2956916468434,96.12529727513947,5443.044418436746,-44.820241016673585,104524.3565542988,26,43.21125247623613,69.15217318216074,9.80834460069814,Cylindrical,uniform,Moderate,Long,Poor,Low,Chaotic Quantum Genetic,1923,83.620317613261
|
|
||||||
Carbon Fiber,169.79265005989234,0.3181057399937741,3362.6542808212753,707.4702996778867,72.86849252344486,15805.846416803606,-42.39587478411417,165460.665629724,35,20.891434665572742,53.58689568172608,6.352011466468827,Cylindrical,uniform,High,Long,Poor,Medium,Shark Optimizer,1770,62.191332570599485
|
|
||||||
Titanium,137.2350913713762,0.30449616861502515,3700.377606847798,717.2515849431023,67.28383439129476,7000.936857146653,-53.829102244576404,105017.48288982283,25,46.83660047495542,48.46890965175308,13.387533006607555,Rectangular,distributed,Low,Medium,Poor,High,Shark Optimizer,583,75.9612560910044
|
|
||||||
Aluminum,115.29300684919109,0.3184380080271858,4125.936865372625,1214.1966605504322,91.9454969747219,7274.916556316738,-57.92185559036089,116390.37797121082,22,37.50186031484844,45.10950272161495,14.085511449205427,Cylindrical,uniform,High,Medium,Poor,Medium,Shark Optimizer,1832,56.710819002829595
|
|
||||||
Carbon Fiber,176.52288232004204,0.3091817920483404,2793.7421284399325,396.6689811486299,53.33379524783018,9851.885901686885,-40.098808281132484,164929.25085347675,22,56.62656363821458,64.65850890787505,9.476010096261849,Cylindrical,point load,Moderate,Medium,Excellent,High,Shark Optimizer,1661,125.66561305686342
|
|
||||||
Aluminum,85.10311917589424,0.3250320128327853,2087.2738969767315,1174.0570532076674,50.79963359933059,7280.2239669761675,-45.37169072002044,127537.77521433562,38,26.978441141393734,62.96134180275982,9.409737797277376,Rectangular,point load,Moderate,Long,Good,Medium,Shark Optimizer,1292,98.00597854028697
|
|
||||||
Carbon Fiber,189.53534555057416,0.3328902583943779,3966.9330507887244,305.0795095240535,81.16855226576678,10784.877875809436,-43.41033189411002,151313.77588389887,22,25.065357519104342,54.81899072273649,11.264380748948248,Rectangular,distributed,Low,Long,Good,Medium,Shark Optimizer,1600,147.29283875119353
|
|
||||||
Titanium,98.98609692431702,0.3497879572761305,2846.3715634561454,1206.0676752647596,74.2169437962935,17730.444488559784,-42.704273269890095,161905.09035316168,34,52.675123915299324,37.662125736937256,12.653889059725028,Rectangular,point load,High,Short,Good,High,Chaotic Quantum Genetic,634,145.33209330225165
|
|
||||||
Titanium,80.55784456890241,0.34976744997721654,3002.602605346025,1148.3674069036065,54.832538780004136,14987.596501108343,-59.163533778771864,174311.15305892937,30,59.12129669914463,41.16695530622888,10.715935978925739,Cylindrical,uniform,Moderate,Short,Good,Low,Shark Optimizer,900,144.84186373443015
|
|
||||||
Aluminum,117.95200255027571,0.32767764039637065,2330.819769711209,553.7367917305155,90.47971352613263,19486.52817290716,-54.61211019163627,195308.92606680357,32,49.46487274908121,55.539936400983045,12.230750280417084,Tapered,uniform,Moderate,Medium,Excellent,Medium,Chaotic Quantum Genetic,1369,139.42699771695612
|
|
||||||
Aluminum,155.8191615056037,0.31129332863287673,3161.7392868333454,922.1466928801116,67.17891880010666,16577.678484371798,-48.89323682062665,181673.77104873906,22,58.78346866123343,34.4539775040142,7.717805892580085,Rectangular,point load,Moderate,Short,Excellent,Low,Shark Optimizer,1271,86.86101488571046
|
|
||||||
Carbon Fiber,143.54675083662738,0.34174603205969084,3247.8831573619427,1476.9199519619747,76.7750227876111,11865.062747889351,-56.81522176851152,107849.6697591146,27,37.82242821368178,51.67286343541725,9.722605819991728,Rectangular,uniform,High,Long,Good,High,Shark Optimizer,718,145.23687533121898
|
|
||||||
Titanium,148.50909668570117,0.30608664114719525,3884.2686994343203,1393.2456312777863,77.17624864015906,8401.037170388068,-58.61992262154988,126779.1213749302,31,46.75099271250602,53.46373718528487,5.132143030452556,Cylindrical,point load,Low,Short,Good,Low,Shark Optimizer,797,80.20122112826833
|
|
||||||
Titanium,115.64807787707241,0.312168382931845,2269.4946797452067,1496.0900572156327,62.89137194278163,17516.761506200004,-42.558844475029815,117237.22246613717,20,25.779021282469074,66.6939981592844,10.931995698857497,Cylindrical,uniform,Moderate,Long,Excellent,Medium,Chaotic Quantum Genetic,1152,95.02410278716414
|
|
||||||
Carbon Fiber,152.19298113374987,0.30568797162727074,4029.6462356487896,715.818632174801,93.80331437640177,10520.244343647923,-48.03315757848352,111051.17602928143,25,35.443337956795276,67.80255919793285,11.907901225962206,Tapered,point load,High,Medium,Good,Low,Shark Optimizer,820,132.30481689652333
|
|
||||||
Aluminum,117.36002445868198,0.3466053116773562,3006.1978261623835,480.98426539834946,61.33734779684961,12989.479632856071,-42.00980007921311,130854.21620500425,31,20.986472780118888,62.58365570763588,11.90563308816559,Tapered,distributed,Moderate,Medium,Excellent,Medium,Chaotic Quantum Genetic,1539,128.69087941551788
|
|
||||||
Carbon Fiber,125.24371041457647,0.3133765263406588,3683.252965646017,1014.2799956809547,82.41606800718073,18236.592028240142,-41.40345922066663,115182.73614049428,37,26.054711379546106,66.3116976006136,11.899220672036083,Rectangular,distributed,High,Long,Excellent,Medium,Shark Optimizer,1522,55.32154775146428
|
|
||||||
Titanium,81.402076093447,0.31638075745070154,3532.958841127813,1391.7129968108009,94.40312171865794,8464.038664010153,-42.28975119641002,119832.19496737808,36,23.2637976347783,40.887992208532324,5.188763578838172,Cylindrical,point load,Moderate,Short,Poor,Low,Chaotic Quantum Genetic,1092,80.86598043542074
|
|
||||||
Titanium,55.97896636848175,0.32687086647948893,2427.3951908379286,1054.9460378899175,59.26838448613375,9363.247661704849,-56.90642121061366,169993.10115419654,24,27.56282087437862,52.3566153636087,12.13661289432569,Cylindrical,uniform,Low,Medium,Excellent,Medium,Shark Optimizer,1522,129.82292268067954
|
|
||||||
Titanium,181.4755039013556,0.33761911312864784,2529.2954311346416,532.2097956169976,87.36955621126728,15313.349255104666,-40.149003561025566,168685.08257364627,26,22.145418294281455,30.684717832413945,11.543812957604953,Cylindrical,uniform,Low,Long,Poor,High,Shark Optimizer,594,51.89795828363507
|
|
||||||
Aluminum,106.47674007376429,0.3239004228536562,2295.3590690990013,705.3597184965945,62.55961649880683,14826.358818312372,-48.31325985071068,125409.27772485602,23,26.87503151137357,55.76618939915603,8.521192075532527,Cylindrical,uniform,Moderate,Short,Excellent,Low,Shark Optimizer,1036,54.661268230527746
|
|
||||||
Carbon Fiber,112.79773948037523,0.3048648345978486,4062.0808391680516,619.8131697323777,97.60872566213848,12367.062895724015,-53.50037607230469,153441.8260105037,39,31.012928898847136,39.55234336953571,13.36562092599181,Rectangular,uniform,Low,Medium,Excellent,High,Chaotic Quantum Genetic,1012,100.59953325652282
|
|
||||||
Titanium,150.11706063756958,0.34414444111197534,4238.370089472764,1259.170797541669,73.67445196167145,11749.799603298728,-48.08308147277026,128124.36617500398,35,45.36454860814612,61.40523874868347,12.854248658142579,Rectangular,distributed,High,Medium,Poor,Medium,Chaotic Quantum Genetic,1830,114.71417920841427
|
|
|
@@ -5,7 +5,7 @@ bibliography: ../citations.bib
|
|||||||
author:
|
author:
|
||||||
- name: Anson Biggs
|
- name: Anson Biggs
|
||||||
url: https://ansonbiggs.com
|
url: https://ansonbiggs.com
|
||||||
license: "CC BY"
|
license: "CC0"
|
||||||
copyright:
|
copyright:
|
||||||
holder: "Anson Biggs"
|
holder: "Anson Biggs"
|
||||||
year: 2024
|
year: 2024
|
||||||
|
Reference in New Issue
Block a user