第8次课
|
@ -318,909 +318,6 @@ flights |>
|
|||
distinct(origin, dest, .keep_all = TRUE)
|
||||
```
|
||||
|
||||
## 计数
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
count(origin, dest, sort = TRUE)
|
||||
```
|
||||
|
||||
|
||||
## 计数-练习
|
||||
|
||||
统计每月的航班数量。
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
flights |>
|
||||
count(year, month, sort = TRUE)
|
||||
```
|
||||
|
||||
|
||||
## 计算新变量
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
mutate(
|
||||
gain = dep_delay - arr_delay,
|
||||
speed = distance / air_time * 60
|
||||
)
|
||||
```
|
||||
|
||||
## 计算新变量
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
mutate(
|
||||
gain = dep_delay - arr_delay,
|
||||
speed = distance / air_time * 60,
|
||||
.before = 1
|
||||
)
|
||||
```
|
||||
|
||||
## 计算新变量
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
mutate(
|
||||
gain = dep_delay - arr_delay,
|
||||
speed = distance / air_time * 60,
|
||||
.after = day
|
||||
)
|
||||
```
|
||||
|
||||
## 计算新变量
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
mutate(
|
||||
gain = dep_delay - arr_delay,
|
||||
hours = air_time / 60,
|
||||
gain_per_hour = gain / hours,
|
||||
.keep = "used"
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
## 列排序
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
relocate(time_hour, air_time)
|
||||
```
|
||||
|
||||
## 列排序
|
||||
|
||||
```{r}
|
||||
#| results: false
|
||||
|
||||
flights |>
|
||||
relocate(year:dep_time, .after = time_hour)
|
||||
flights |>
|
||||
relocate(starts_with("arr"), .before = dep_time)
|
||||
flights |>
|
||||
select(starts_with("arr"), everything())
|
||||
```
|
||||
|
||||
|
||||
## 练习
|
||||
|
||||
计算目的地为IAH,按飞行速度排序的表格,保留year:day, `dep_time`, carrier, flight与speed列。
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
filter(dest == "IAH") |>
|
||||
mutate(speed = distance / air_time * 60) |>
|
||||
select(year:day, dep_time, carrier, flight, speed) |>
|
||||
arrange(desc(speed))
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
计算目的地为IAH,按飞行速度排序的表格,保留year:day, `dep_time`, carrier, flight与speed列。
|
||||
|
||||
```{r}
|
||||
#| results: false
|
||||
|
||||
flights1 <- filter(flights, dest == "IAH")
|
||||
flights2 <- mutate(flights1, speed = distance / air_time * 60)
|
||||
flights3 <- select(flights2, year:day, dep_time, carrier, flight, speed)
|
||||
arrange(flights3, desc(speed))
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
计算目的地为IAH,按飞行速度排序的表格,保留year:day, `dep_time`, carrier, flight与speed列。
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
filter(dest == "IAH") |>
|
||||
mutate(speed = distance / air_time * 60) |>
|
||||
select(year:day, dep_time, carrier, flight, speed) |>
|
||||
arrange(desc(speed))
|
||||
```
|
||||
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
|
||||
library(tidyverse)
|
||||
|
||||
mtcars %>%
|
||||
group_by(cyl) %>%
|
||||
summarize(n = n())
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
group_by(month)
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
group_by(month) |>
|
||||
summarize(
|
||||
avg_delay = mean(dep_delay)
|
||||
)
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
group_by(month) |>
|
||||
summarize(
|
||||
avg_delay = mean(dep_delay, na.rm = TRUE)
|
||||
)
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
group_by(month) |>
|
||||
summarize(
|
||||
avg_delay = mean(dep_delay, na.rm = TRUE),
|
||||
n = n()
|
||||
)
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
group_by(dest) |>
|
||||
slice_max(arr_delay, n = 1) |>
|
||||
relocate(dest)
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
|
||||
flights |>
|
||||
filter(dest == "IAH") |>
|
||||
group_by(year, month, day) |>
|
||||
summarize(
|
||||
arr_delay = mean(arr_delay, na.rm = TRUE)
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
## 分组
|
||||
|
||||
```{r}
|
||||
daily <- flights |>
|
||||
group_by(year, month, day)
|
||||
daily
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
daily_flights <- daily |>
|
||||
summarize(n = n())
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
#| results: false
|
||||
|
||||
daily_flights <- daily |>
|
||||
summarize(
|
||||
n = n(),
|
||||
.groups = "drop_last"
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
|
||||
## 删除分组
|
||||
|
||||
```{r}
|
||||
daily |> ungroup()
|
||||
```
|
||||
|
||||
## 删除分组
|
||||
|
||||
```{r}
|
||||
daily |>
|
||||
ungroup() |>
|
||||
summarize(
|
||||
avg_delay = mean(dep_delay, na.rm = TRUE),
|
||||
flights = n()
|
||||
)
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
summarize(
|
||||
delay = mean(dep_delay, na.rm = TRUE),
|
||||
n = n(),
|
||||
.by = month
|
||||
)
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
summarize(
|
||||
delay = mean(dep_delay, na.rm = TRUE),
|
||||
n = n(),
|
||||
.by = c(origin, dest)
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
df <- tibble(
|
||||
x = 1:5,
|
||||
y = c("a", "b", "a", "a", "b"),
|
||||
z = c("K", "K", "L", "L", "K")
|
||||
)
|
||||
df
|
||||
```
|
||||
|
||||
```{r}
|
||||
#| eval: false
|
||||
|
||||
df |> arrange(y)
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
df
|
||||
```
|
||||
|
||||
```{r}
|
||||
#| eval: false
|
||||
df |>
|
||||
group_by(y) |>
|
||||
summarize(mean_x = mean(x))
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
df
|
||||
```
|
||||
```{r}
|
||||
#| eval: false
|
||||
|
||||
df |>
|
||||
group_by(y, z) |>
|
||||
summarize(mean_x = mean(x))
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
df
|
||||
```
|
||||
```{r}
|
||||
#| eval: false
|
||||
|
||||
df |>
|
||||
group_by(y, z) |>
|
||||
summarize(mean_x = mean(x), .groups = "drop")
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
df
|
||||
```
|
||||
|
||||
```{r}
|
||||
#| eval: false
|
||||
df |>
|
||||
group_by(y, z) |>
|
||||
summarize(mean_x = mean(x))
|
||||
|
||||
df |>
|
||||
group_by(y, z) |>
|
||||
mutate(mean_x = mean(x))
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
## 练习
|
||||
|
||||
- 计算不同采样点的平均CO浓度、最大CO浓度、最小CO浓度、中位数CO浓度(`CO_mg/m3`)。
|
||||
- 计算各小时全国的平均CO浓度、最大CO浓度、最小CO浓度、中位数CO浓度(`CO_mg/m3`)。
|
||||
- 计算不同采样点各小时的平均CO浓度、最大CO浓度、最小CO浓度、中位数CO浓度(`CO_mg/m3`)。
|
||||
- 计算各采样点中CO浓度小于全国平均CO浓度的占比。
|
||||
- 找出全国各采样点中CO浓度小于全国平均CO浓度的占比最高的10个采样点。
|
||||
|
||||
```{r}
|
||||
airqualitydf <- readxl::read_xlsx("../../data/airquality.xlsx",
|
||||
sheet = 2)
|
||||
```
|
||||
|
||||
|
||||
## 练习
|
||||
|
||||
按月统计dep_delay最大的3个航班的航班号(flight),用逗号连接。
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
flights |>
|
||||
group_by(year, month) |>
|
||||
slice_max(dep_delay, n = 3) |>
|
||||
summarize(flight = paste(paste0(carrier, flight), collapse = ", ")) |>
|
||||
knitr::kable()
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
## 数据变形示意图
|
||||
|
||||
```{r}
|
||||
billboard
|
||||
knitr::include_graphics("../../image/tidy-data/variables.png", dpi = 270)
|
||||
```
|
||||
|
||||
## 数据变形
|
||||
|
||||
```{r}
|
||||
billboard |>
|
||||
pivot_longer(
|
||||
cols = starts_with("wk"),
|
||||
names_to = "week",
|
||||
values_to = "rank",
|
||||
values_drop_na = TRUE
|
||||
)
|
||||
```
|
||||
|
||||
## 数据变形
|
||||
|
||||
```{r}
|
||||
billboard_longer <- billboard |>
|
||||
pivot_longer(
|
||||
cols = starts_with("wk"),
|
||||
names_to = "week",
|
||||
values_to = "rank",
|
||||
values_drop_na = TRUE
|
||||
) |>
|
||||
mutate(
|
||||
week = parse_number(week)
|
||||
)
|
||||
billboard_longer
|
||||
```
|
||||
|
||||
|
||||
## 练习
|
||||
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
df <- tribble(
|
||||
~id, ~bp1, ~bp2,
|
||||
"A", 100, 120,
|
||||
"B", 140, 115,
|
||||
"C", 120, 125
|
||||
)
|
||||
df
|
||||
```
|
||||
|
||||
将以上数据(`df`)转换为如下形式。
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
df |>
|
||||
pivot_longer(
|
||||
cols = bp1:bp2,
|
||||
names_to = "measurement",
|
||||
values_to = "value"
|
||||
)
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
请转换如下`iris`数据。
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
as_tibble(head(iris, n = 3))
|
||||
cat("转为如下形式:")
|
||||
iris |>
|
||||
pivot_longer(cols = c(Sepal.Length,
|
||||
Sepal.Width,
|
||||
Petal.Length,
|
||||
Petal.Width),
|
||||
names_to = "flower_attr",
|
||||
values_to = "attr_value") |>
|
||||
head()
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
## 数据变形示意图2
|
||||
|
||||
```{r}
|
||||
who2
|
||||
knitr::include_graphics("../../image/tidy-data/multiple-names.png", dpi = 270)
|
||||
```
|
||||
|
||||
|
||||
## 数据变形
|
||||
|
||||
```{r}
|
||||
who2 |>
|
||||
pivot_longer(
|
||||
cols = !(country:year),
|
||||
names_to = c("diagnosis", "gender", "age"),
|
||||
names_sep = "_",
|
||||
values_to = "count"
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
## 数据变形示意图
|
||||
|
||||
```{r}
|
||||
household
|
||||
knitr::include_graphics("../../image/tidy-data/names-and-values.png", dpi = 270)
|
||||
```
|
||||
|
||||
## 数据变形
|
||||
|
||||
```{r}
|
||||
household |>
|
||||
pivot_longer(
|
||||
cols = !family,
|
||||
names_to = c(".value", "child"),
|
||||
names_sep = "_",
|
||||
values_drop_na = TRUE
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
## 查看数据
|
||||
|
||||
```{r}
|
||||
cms_patient_experience
|
||||
```
|
||||
|
||||
## 查看数据
|
||||
|
||||
```{r}
|
||||
cms_patient_experience |>
|
||||
distinct(measure_cd, measure_title)
|
||||
```
|
||||
|
||||
## 数据变形(变宽)
|
||||
|
||||
```{r}
|
||||
cms_patient_experience |>
|
||||
pivot_wider(
|
||||
names_from = measure_cd,
|
||||
values_from = prf_rate
|
||||
)
|
||||
```
|
||||
|
||||
## 数据变形(变宽)
|
||||
|
||||
```{r}
|
||||
cms_patient_experience |>
|
||||
pivot_wider(
|
||||
id_cols = starts_with("org"),
|
||||
names_from = measure_cd,
|
||||
values_from = prf_rate
|
||||
)
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
df <- tribble(
|
||||
~id, ~measurement, ~value,
|
||||
"A", "bp1", 100,
|
||||
"B", "bp1", 140,
|
||||
"B", "bp2", 115,
|
||||
"A", "bp2", 120,
|
||||
"A", "bp3", 105
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
变形成如下形式:
|
||||
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
df |>
|
||||
pivot_wider(
|
||||
names_from = measurement,
|
||||
values_from = value
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
## 练习:变宽
|
||||
|
||||
```{r}
|
||||
df <- tribble(
|
||||
~id, ~measurement, ~value,
|
||||
"A", "bp1", 100,
|
||||
"A", "bp1", 102,
|
||||
"A", "bp2", 120,
|
||||
"B", "bp1", 140,
|
||||
"B", "bp2", 115
|
||||
)
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
df |>
|
||||
pivot_wider(
|
||||
names_from = measurement,
|
||||
values_from = value
|
||||
)
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
df |>
|
||||
group_by(id, measurement) |>
|
||||
summarize(n = n(), .groups = "drop") |>
|
||||
filter(n > 1)
|
||||
```
|
||||
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
df <- tibble(x = c(1, 1, 1, 2, 2, 3), y = 1:6, z = 6:1)
|
||||
df
|
||||
```
|
||||
|
||||
```{r}
|
||||
df %>% nest(data = c(y, z))
|
||||
```
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
Specify variables to nest by (rather than variables to nest) using `.by`
|
||||
|
||||
```{r}
|
||||
df %>% nest(.by = x)
|
||||
```
|
||||
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
In this case, since `...` isn't used you can specify the resulting column name with `.key`
|
||||
|
||||
```{r}
|
||||
df %>% nest(.by = x, .key = "cols")
|
||||
```
|
||||
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
Use tidyselect syntax and helpers, just like in `dplyr::select()`
|
||||
|
||||
```{r}
|
||||
df %>% nest(data = any_of(c("y", "z")))
|
||||
```
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
`...` and `.by` can be used together to drop columns you no longer need,
|
||||
or to include the columns you are nesting by in the inner data frame too.
|
||||
This drops `z`:
|
||||
|
||||
```{r}
|
||||
df %>% nest(data = y, .by = x)
|
||||
```
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
This includes `x` in the inner data frame:
|
||||
|
||||
```{r}
|
||||
df %>% nest(data = everything(), .by = x)
|
||||
```
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
Multiple nesting structures can be specified at once
|
||||
|
||||
```{r}
|
||||
iris %>%
|
||||
nest(petal = starts_with("Petal"), sepal = starts_with("Sepal"))
|
||||
```
|
||||
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
```{r}
|
||||
iris %>%
|
||||
nest(width = contains("Width"), length = contains("Length"))
|
||||
```
|
||||
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
Nesting a grouped data frame nests all variables apart from the group vars
|
||||
|
||||
```{r}
|
||||
fish_encounters
|
||||
fish_encounters %>%
|
||||
dplyr::group_by(fish) %>%
|
||||
nest()
|
||||
```
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
That is similar to `nest(.by = )`, except here the result isn't grouped
|
||||
|
||||
```{r}
|
||||
fish_encounters %>%
|
||||
nest(.by = fish)
|
||||
```
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
Nesting is often useful for creating per group models
|
||||
|
||||
```{r}
|
||||
mtcars %>%
|
||||
nest(.by = cyl) %>%
|
||||
dplyr::mutate(models = lapply(data, function(df) lm(mpg ~ wt, data = df)))
|
||||
```
|
||||
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
(airqualitydf <- readxl::read_xlsx("../../data/airquality.xlsx",
|
||||
sheet = 2))
|
||||
```
|
||||
|
||||
```{r}
|
||||
airqualitydf
|
||||
airqualitynestdf <- airqualitydf |>
|
||||
nest(sitedf = -site)
|
||||
```
|
||||
|
||||
## `nest`与`group_by`联用
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
iris %>%
|
||||
group_by(Species) %>%
|
||||
nest(.key = "spdf")
|
||||
```
|
||||
|
||||
## unnest
|
||||
|
||||
```{r}
|
||||
airqualitynestdf |> unnest(sitedf)
|
||||
```
|
||||
|
||||
|
||||
|
||||
## `purrr`包
|
||||
|
||||
- map():依次应用一元函数到一个序列的每个元素上,基本等同 lapply()
|
||||
- map2():依次应用二元函数到两个序列的每对元素上
|
||||
- pmap():应用多元函数到多个序列的每组元素上,可以实现对数据框逐行迭代
|
||||
- map 系列默认返回列表型,可根据想要的返回类型添加后缀:_int, _dbl, _lgl, _chr, _df, 甚至可以接着对返回的数据框df做行/列合并:_dfr, _dfc
|
||||
- 如果只想要函数依次作用的过程,而不需要返回结果,改用 walk 系列即可
|
||||
- 所应用的函数,有 purrr公式风格简写(匿名函数),支持一元,二元,多元函数
|
||||
- purrr 包中的其它有用函数
|
||||
|
||||
## `purrr`包
|
||||
|
||||
- `map_chr(.x, .f)`: 返回字符型向量
|
||||
- `map_lgl(.x, .f)`: 返回逻辑型向量
|
||||
- `map_dbl(.x, .f)`: 返回实数型向量
|
||||
- `map_int(.x, .f)`: 返回整数型向量
|
||||
- `map_dfr(.x, .f)`: 返回数据框列表,再 bind_rows 按行合并为一个数据框
|
||||
- `map_dfc(.x, .f)`: 返回数据框列表,再 bind_cols 按列合并为一个数据框
|
||||
|
||||
|
||||
## `purrr`包-cheatsheet
|
||||
|
||||
```{r}
|
||||
dwfun::ggsavep("../../image/cheatsheet/purrr.svg", loadit = TRUE)
|
||||
```
|
||||
|
||||
[purrr](../../image/cheatsheet/purrr.pdf)
|
||||
|
||||
|
||||
## `purrr`包
|
||||
|
||||
生成从1到10的10组随机数,每组随机数个数为100,均值依次为1到10,标准差为1,并存储在数据框中。
|
||||
|
||||
```{r}
|
||||
res <- list()
|
||||
for (i in 1:10) {
|
||||
res[[i]] <- tibble(随机数 = rnorm(n = 100, mean = i, sd = 1))
|
||||
}
|
||||
res
|
||||
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
## `purrr`包
|
||||
|
||||
生成从1到10的10组随机数,每组随机数个数为100,均值依次为1到10,标准差为1,并存储在数据框中。
|
||||
|
||||
```{r}
|
||||
1:10 |>
|
||||
purrr::map(~tibble(随机数 = rnorm(n = 100, mean = .x, sd = 1)))
|
||||
```
|
||||
|
||||
## purrr
|
||||
|
||||
```{r}
|
||||
library(purrr)
|
||||
mtcars |>
|
||||
split(mtcars$cyl) |> # from base R
|
||||
map(\(df) lm(mpg ~ wt, data = df)) |>
|
||||
map(summary) %>%
|
||||
map_dbl("r.squared")
|
||||
```
|
||||
|
||||
|
||||
## 练习:
|
||||
|
||||
计算每月最后一个周六的航班数:
|
||||
|
||||
```{r}
|
||||
flights
|
||||
```
|
||||
|
||||
## `tidyr` + `purrr`包
|
||||
|
||||
任务:展示不同城市间的大气指标散点图
|
||||
|
||||
```{r}
|
||||
(airqualitydf <- readxl::read_xlsx("../../data/airquality.xlsx",
|
||||
sheet = 2))
|
||||
```
|
||||
|
||||
## join
|
||||
|
||||
Perform left join
|
||||
|
||||
```{r}
|
||||
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
|
||||
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
|
||||
left_join(df1, df2, by = "id")
|
||||
```
|
||||
|
||||
## left join
|
||||
|
||||
Create sample data frames with non-matching rows
|
||||
|
||||
```{r}
|
||||
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
|
||||
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
|
||||
left_join(df2, df1, by = "id")
|
||||
```
|
||||
|
||||
## left join
|
||||
|
||||
|
||||
Create sample data frames with multiple columns
|
||||
|
||||
```{r}
|
||||
df1 <- data.frame(id1 = c(1, 2, 3), id2 = c("A", "B", "C"), value1 = letters[1:3])
|
||||
df2 <- data.frame(id1 = c(2, 3, 4), id2 = c("B", "C", "D"), value2 = LETTERS[1:3])
|
||||
# Perform left join
|
||||
left_join(df1, df2, by = c("id1", "id2"))
|
||||
```
|
||||
|
||||
## right join
|
||||
|
||||
|
||||
```{r}
|
||||
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
|
||||
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
|
||||
|
||||
# Perform right join
|
||||
right_join(df1, df2, by = "id")
|
||||
```
|
||||
|
||||
|
||||
## inner join
|
||||
|
||||
```{r}
|
||||
# Create sample data frames
|
||||
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
|
||||
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
|
||||
# Perform inner join
|
||||
inner_join(df1, df2, by = "id")
|
||||
```
|
||||
|
||||
|
||||
## full join
|
||||
|
||||
```{r}
|
||||
# Create sample data frames
|
||||
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
|
||||
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
|
||||
# Perform inner join
|
||||
full_join(df1, df2, by = "id")
|
||||
```
|
||||
|
||||
## semi join
|
||||
|
||||
Create sample data frames
|
||||
|
||||
```{r}
|
||||
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
|
||||
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
|
||||
# Perform semi join
|
||||
semi_join(df1, df2, by = "id")
|
||||
```
|
||||
|
||||
|
||||
## 练习
|
||||
|
||||
合并`airquality.xlsx`中的数据。
|
||||
|
||||
|
||||
|
||||
## 练习
|
||||
|
||||
统计各城市白天与晚上的大气质量差异,计算不同指标差异最大的10个城市。
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## 欢迎讨论!{.center}
|
||||
|
|
|
@ -0,0 +1,949 @@
|
|||
---
|
||||
title: "Data Transform"
|
||||
subtitle: 《区域水环境污染数据分析实践》<br>Data analysis practice of regional water environment pollution
|
||||
author: 苏命、王为东<br>中国科学院大学资源与环境学院<br>中国科学院生态环境研究中心
|
||||
date: today
|
||||
lang: zh
|
||||
format:
|
||||
revealjs:
|
||||
theme: dark
|
||||
slide-number: true
|
||||
chalkboard:
|
||||
buttons: true
|
||||
preview-links: auto
|
||||
lang: zh
|
||||
toc: true
|
||||
toc-depth: 1
|
||||
toc-title: 大纲
|
||||
logo: ./_extensions/inst/img/ucaslogo.png
|
||||
css: ./_extensions/inst/css/revealjs.css
|
||||
pointer:
|
||||
key: "p"
|
||||
color: "#32cd32"
|
||||
pointerSize: 18
|
||||
revealjs-plugins:
|
||||
- pointer
|
||||
filters:
|
||||
- d2
|
||||
---
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
knitr::opts_chunk$set(echo = TRUE)
|
||||
source("../../coding/_common.R")
|
||||
library(nycflights13)
|
||||
library(tidyverse)
|
||||
```
|
||||
|
||||
|
||||
|
||||
## 计数
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
count(origin, dest, sort = TRUE)
|
||||
```
|
||||
|
||||
|
||||
## 计数-练习
|
||||
|
||||
统计每月的航班数量。
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
flights |>
|
||||
count(year, month, sort = TRUE)
|
||||
```
|
||||
|
||||
|
||||
## 计算新变量
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
mutate(
|
||||
gain = dep_delay - arr_delay,
|
||||
speed = distance / air_time * 60
|
||||
)
|
||||
```
|
||||
|
||||
## 计算新变量
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
mutate(
|
||||
gain = dep_delay - arr_delay,
|
||||
speed = distance / air_time * 60,
|
||||
.before = 1
|
||||
)
|
||||
```
|
||||
|
||||
## 计算新变量
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
mutate(
|
||||
gain = dep_delay - arr_delay,
|
||||
speed = distance / air_time * 60,
|
||||
.after = day
|
||||
)
|
||||
```
|
||||
|
||||
## 计算新变量
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
mutate(
|
||||
gain = dep_delay - arr_delay,
|
||||
hours = air_time / 60,
|
||||
gain_per_hour = gain / hours,
|
||||
.keep = "used"
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
## 列排序
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
relocate(time_hour, air_time)
|
||||
```
|
||||
|
||||
## 列排序
|
||||
|
||||
```{r}
|
||||
#| results: false
|
||||
|
||||
flights |>
|
||||
relocate(year:dep_time, .after = time_hour)
|
||||
flights |>
|
||||
relocate(starts_with("arr"), .before = dep_time)
|
||||
flights |>
|
||||
select(starts_with("arr"), everything())
|
||||
```
|
||||
|
||||
|
||||
## 练习
|
||||
|
||||
计算目的地为IAH,按飞行速度排序的表格,保留year:day, `dep_time`, carrier, flight与speed列。
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
filter(dest == "IAH") |>
|
||||
mutate(speed = distance / air_time * 60) |>
|
||||
select(year:day, dep_time, carrier, flight, speed) |>
|
||||
arrange(desc(speed))
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
计算目的地为IAH,按飞行速度排序的表格,保留year:day, `dep_time`, carrier, flight与speed列。
|
||||
|
||||
```{r}
|
||||
#| results: false
|
||||
|
||||
flights1 <- filter(flights, dest == "IAH")
|
||||
flights2 <- mutate(flights1, speed = distance / air_time * 60)
|
||||
flights3 <- select(flights2, year:day, dep_time, carrier, flight, speed)
|
||||
arrange(flights3, desc(speed))
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
计算目的地为IAH,按飞行速度排序的表格,保留year:day, `dep_time`, carrier, flight与speed列。
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
filter(dest == "IAH") |>
|
||||
mutate(speed = distance / air_time * 60) |>
|
||||
select(year:day, dep_time, carrier, flight, speed) |>
|
||||
arrange(desc(speed))
|
||||
```
|
||||
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
|
||||
library(tidyverse)
|
||||
|
||||
mtcars %>%
|
||||
group_by(cyl) %>%
|
||||
summarize(n = n())
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
group_by(month)
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
group_by(month) |>
|
||||
summarize(
|
||||
avg_delay = mean(dep_delay)
|
||||
)
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
group_by(month) |>
|
||||
summarize(
|
||||
avg_delay = mean(dep_delay, na.rm = TRUE)
|
||||
)
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
group_by(month) |>
|
||||
summarize(
|
||||
avg_delay = mean(dep_delay, na.rm = TRUE),
|
||||
n = n()
|
||||
)
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
group_by(dest) |>
|
||||
slice_max(arr_delay, n = 1) |>
|
||||
relocate(dest)
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
|
||||
flights |>
|
||||
filter(dest == "IAH") |>
|
||||
group_by(year, month, day) |>
|
||||
summarize(
|
||||
arr_delay = mean(arr_delay, na.rm = TRUE)
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
## 分组
|
||||
|
||||
```{r}
|
||||
daily <- flights |>
|
||||
group_by(year, month, day)
|
||||
daily
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
daily_flights <- daily |>
|
||||
summarize(n = n())
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
#| results: false
|
||||
|
||||
daily_flights <- daily |>
|
||||
summarize(
|
||||
n = n(),
|
||||
.groups = "drop_last"
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
|
||||
## 删除分组
|
||||
|
||||
```{r}
|
||||
daily |> ungroup()
|
||||
```
|
||||
|
||||
## 删除分组
|
||||
|
||||
```{r}
|
||||
daily |>
|
||||
ungroup() |>
|
||||
summarize(
|
||||
avg_delay = mean(dep_delay, na.rm = TRUE),
|
||||
flights = n()
|
||||
)
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
summarize(
|
||||
delay = mean(dep_delay, na.rm = TRUE),
|
||||
n = n(),
|
||||
.by = month
|
||||
)
|
||||
```
|
||||
|
||||
## 分组统计
|
||||
|
||||
```{r}
|
||||
flights |>
|
||||
summarize(
|
||||
delay = mean(dep_delay, na.rm = TRUE),
|
||||
n = n(),
|
||||
.by = c(origin, dest)
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
df <- tibble(
|
||||
x = 1:5,
|
||||
y = c("a", "b", "a", "a", "b"),
|
||||
z = c("K", "K", "L", "L", "K")
|
||||
)
|
||||
df
|
||||
```
|
||||
|
||||
```{r}
|
||||
#| eval: false
|
||||
|
||||
df |> arrange(y)
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
df
|
||||
```
|
||||
|
||||
```{r}
|
||||
#| eval: false
|
||||
df |>
|
||||
group_by(y) |>
|
||||
summarize(mean_x = mean(x))
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
df
|
||||
```
|
||||
```{r}
|
||||
#| eval: false
|
||||
|
||||
df |>
|
||||
group_by(y, z) |>
|
||||
summarize(mean_x = mean(x))
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
df
|
||||
```
|
||||
```{r}
|
||||
#| eval: false
|
||||
|
||||
df |>
|
||||
group_by(y, z) |>
|
||||
summarize(mean_x = mean(x), .groups = "drop")
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
df
|
||||
```
|
||||
|
||||
```{r}
|
||||
#| eval: false
|
||||
df |>
|
||||
group_by(y, z) |>
|
||||
summarize(mean_x = mean(x))
|
||||
|
||||
df |>
|
||||
group_by(y, z) |>
|
||||
mutate(mean_x = mean(x))
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
## 练习
|
||||
|
||||
- 计算不同采样点的平均CO浓度、最大CO浓度、最小CO浓度、中位数CO浓度(`CO_mg/m3`)。
|
||||
- 计算各小时全国的平均CO浓度、最大CO浓度、最小CO浓度、中位数CO浓度(`CO_mg/m3`)。
|
||||
- 计算不同采样点各小时的平均CO浓度、最大CO浓度、最小CO浓度、中位数CO浓度(`CO_mg/m3`)。
|
||||
- 计算各采样点中CO浓度小于全国平均CO浓度的占比。
|
||||
- 找出全国各采样点中CO浓度小于全国平均CO浓度的占比最高的10个采样点。
|
||||
|
||||
```{r}
|
||||
airqualitydf <- readxl::read_xlsx("../../data/airquality.xlsx",
|
||||
sheet = 2)
|
||||
```
|
||||
|
||||
|
||||
## 练习
|
||||
|
||||
按月统计dep_delay最大的3个航班的航班号(flight),用逗号连接。
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
flights |>
|
||||
group_by(year, month) |>
|
||||
slice_max(dep_delay, n = 3) |>
|
||||
summarize(flight = paste(paste0(carrier, flight), collapse = ", ")) |>
|
||||
knitr::kable()
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
## 数据变形示意图
|
||||
|
||||
```{r}
|
||||
billboard
|
||||
knitr::include_graphics("../../image/tidy-data/variables.png", dpi = 270)
|
||||
```
|
||||
|
||||
## 数据变形
|
||||
|
||||
```{r}
|
||||
billboard |>
|
||||
pivot_longer(
|
||||
cols = starts_with("wk"),
|
||||
names_to = "week",
|
||||
values_to = "rank",
|
||||
values_drop_na = TRUE
|
||||
)
|
||||
```
|
||||
|
||||
## 数据变形
|
||||
|
||||
```{r}
|
||||
billboard_longer <- billboard |>
|
||||
pivot_longer(
|
||||
cols = starts_with("wk"),
|
||||
names_to = "week",
|
||||
values_to = "rank",
|
||||
values_drop_na = TRUE
|
||||
) |>
|
||||
mutate(
|
||||
week = parse_number(week)
|
||||
)
|
||||
billboard_longer
|
||||
```
|
||||
|
||||
|
||||
## 练习
|
||||
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
df <- tribble(
|
||||
~id, ~bp1, ~bp2,
|
||||
"A", 100, 120,
|
||||
"B", 140, 115,
|
||||
"C", 120, 125
|
||||
)
|
||||
df
|
||||
```
|
||||
|
||||
将以上数据(`df`)转换为如下形式。
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
df |>
|
||||
pivot_longer(
|
||||
cols = bp1:bp2,
|
||||
names_to = "measurement",
|
||||
values_to = "value"
|
||||
)
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
请转换如下`iris`数据。
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
as_tibble(head(iris, n = 3))
|
||||
cat("转为如下形式:")
|
||||
iris |>
|
||||
pivot_longer(cols = c(Sepal.Length,
|
||||
Sepal.Width,
|
||||
Petal.Length,
|
||||
Petal.Width),
|
||||
names_to = "flower_attr",
|
||||
values_to = "attr_value") |>
|
||||
head()
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
## 数据变形示意图2
|
||||
|
||||
```{r}
|
||||
who2
|
||||
knitr::include_graphics("../../image/tidy-data/multiple-names.png", dpi = 270)
|
||||
```
|
||||
|
||||
|
||||
## 数据变形
|
||||
|
||||
```{r}
|
||||
who2 |>
|
||||
pivot_longer(
|
||||
cols = !(country:year),
|
||||
names_to = c("diagnosis", "gender", "age"),
|
||||
names_sep = "_",
|
||||
values_to = "count"
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
## 数据变形示意图
|
||||
|
||||
```{r}
|
||||
household
|
||||
knitr::include_graphics("../../image/tidy-data/names-and-values.png", dpi = 270)
|
||||
```
|
||||
|
||||
## 数据变形
|
||||
|
||||
```{r}
|
||||
household |>
|
||||
pivot_longer(
|
||||
cols = !family,
|
||||
names_to = c(".value", "child"),
|
||||
names_sep = "_",
|
||||
values_drop_na = TRUE
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
## 查看数据
|
||||
|
||||
```{r}
|
||||
cms_patient_experience
|
||||
```
|
||||
|
||||
## 查看数据
|
||||
|
||||
```{r}
|
||||
cms_patient_experience |>
|
||||
distinct(measure_cd, measure_title)
|
||||
```
|
||||
|
||||
## 数据变形(变宽)
|
||||
|
||||
```{r}
|
||||
cms_patient_experience |>
|
||||
pivot_wider(
|
||||
names_from = measure_cd,
|
||||
values_from = prf_rate
|
||||
)
|
||||
```
|
||||
|
||||
## 数据变形(变宽)
|
||||
|
||||
```{r}
|
||||
cms_patient_experience |>
|
||||
pivot_wider(
|
||||
id_cols = starts_with("org"),
|
||||
names_from = measure_cd,
|
||||
values_from = prf_rate
|
||||
)
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
df <- tribble(
|
||||
~id, ~measurement, ~value,
|
||||
"A", "bp1", 100,
|
||||
"B", "bp1", 140,
|
||||
"B", "bp2", 115,
|
||||
"A", "bp2", 120,
|
||||
"A", "bp3", 105
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
变形成如下形式:
|
||||
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
df |>
|
||||
pivot_wider(
|
||||
names_from = measurement,
|
||||
values_from = value
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
## 练习:变宽
|
||||
|
||||
```{r}
|
||||
df <- tribble(
|
||||
~id, ~measurement, ~value,
|
||||
"A", "bp1", 100,
|
||||
"A", "bp1", 102,
|
||||
"A", "bp2", 120,
|
||||
"B", "bp1", 140,
|
||||
"B", "bp2", 115
|
||||
)
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
df |>
|
||||
pivot_wider(
|
||||
names_from = measurement,
|
||||
values_from = value
|
||||
)
|
||||
```
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
df |>
|
||||
group_by(id, measurement) |>
|
||||
summarize(n = n(), .groups = "drop") |>
|
||||
filter(n > 1)
|
||||
```
|
||||
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
df <- tibble(x = c(1, 1, 1, 2, 2, 3), y = 1:6, z = 6:1)
|
||||
df
|
||||
```
|
||||
|
||||
```{r}
|
||||
df %>% nest(data = c(y, z))
|
||||
```
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
Specify variables to nest by (rather than variables to nest) using `.by`
|
||||
|
||||
```{r}
|
||||
df %>% nest(.by = x)
|
||||
```
|
||||
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
In this case, since `...` isn't used you can specify the resulting column name with `.key`
|
||||
|
||||
```{r}
|
||||
df %>% nest(.by = x, .key = "cols")
|
||||
```
|
||||
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
Use tidyselect syntax and helpers, just like in `dplyr::select()`
|
||||
|
||||
```{r}
|
||||
df %>% nest(data = any_of(c("y", "z")))
|
||||
```
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
`...` and `.by` can be used together to drop columns you no longer need,
|
||||
or to include the columns you are nesting by in the inner data frame too.
|
||||
This drops `z`:
|
||||
|
||||
```{r}
|
||||
df %>% nest(data = y, .by = x)
|
||||
```
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
This includes `x` in the inner data frame:
|
||||
|
||||
```{r}
|
||||
df %>% nest(data = everything(), .by = x)
|
||||
```
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
Multiple nesting structures can be specified at once
|
||||
|
||||
```{r}
|
||||
iris %>%
|
||||
nest(petal = starts_with("Petal"), sepal = starts_with("Sepal"))
|
||||
```
|
||||
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
```{r}
|
||||
iris %>%
|
||||
nest(width = contains("Width"), length = contains("Length"))
|
||||
```
|
||||
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
Nesting a grouped data frame nests all variables apart from the group vars
|
||||
|
||||
```{r}
|
||||
fish_encounters
|
||||
fish_encounters %>%
|
||||
dplyr::group_by(fish) %>%
|
||||
nest()
|
||||
```
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
That is similar to `nest(.by = )`, except here the result isn't grouped
|
||||
|
||||
```{r}
|
||||
fish_encounters %>%
|
||||
nest(.by = fish)
|
||||
```
|
||||
|
||||
## nest,套嵌数据框
|
||||
|
||||
Nesting is often useful for creating per group models
|
||||
|
||||
```{r}
|
||||
mtcars %>%
|
||||
nest(.by = cyl) %>%
|
||||
dplyr::mutate(models = lapply(data, function(df) lm(mpg ~ wt, data = df)))
|
||||
```
|
||||
|
||||
|
||||
## 练习
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
(airqualitydf <- readxl::read_xlsx("../../data/airquality.xlsx",
|
||||
sheet = 2))
|
||||
```
|
||||
|
||||
```{r}
|
||||
airqualitydf
|
||||
airqualitynestdf <- airqualitydf |>
|
||||
nest(sitedf = -site)
|
||||
```
|
||||
|
||||
## `nest`与`group_by`联用
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
iris %>%
|
||||
group_by(Species) %>%
|
||||
nest(.key = "spdf")
|
||||
```
|
||||
|
||||
## unnest
|
||||
|
||||
```{r}
|
||||
airqualitynestdf |> unnest(sitedf)
|
||||
```
|
||||
|
||||
|
||||
|
||||
## `purrr`包
|
||||
|
||||
- map():依次应用一元函数到一个序列的每个元素上,基本等同 lapply()
|
||||
- map2():依次应用二元函数到两个序列的每对元素上
|
||||
- pmap():应用多元函数到多个序列的每组元素上,可以实现对数据框逐行迭代
|
||||
- map 系列默认返回列表型,可根据想要的返回类型添加后缀:_int, _dbl, _lgl, _chr, _df, 甚至可以接着对返回的数据框df做行/列合并:_dfr, _dfc
|
||||
- 如果只想要函数依次作用的过程,而不需要返回结果,改用 walk 系列即可
|
||||
- 所应用的函数,有 purrr公式风格简写(匿名函数),支持一元,二元,多元函数
|
||||
- purrr 包中的其它有用函数
|
||||
|
||||
## `purrr`包
|
||||
|
||||
- `map_chr(.x, .f)`: 返回字符型向量
|
||||
- `map_lgl(.x, .f)`: 返回逻辑型向量
|
||||
- `map_dbl(.x, .f)`: 返回实数型向量
|
||||
- `map_int(.x, .f)`: 返回整数型向量
|
||||
- `map_dfr(.x, .f)`: 返回数据框列表,再 bind_rows 按行合并为一个数据框
|
||||
- `map_dfc(.x, .f)`: 返回数据框列表,再 bind_cols 按列合并为一个数据框
|
||||
|
||||
|
||||
## `purrr`包-cheatsheet
|
||||
|
||||
```{r}
|
||||
dwfun::ggsavep("../../image/cheatsheet/purrr.svg", loadit = TRUE)
|
||||
```
|
||||
|
||||
[purrr](../../image/cheatsheet/purrr.pdf)
|
||||
|
||||
|
||||
## `purrr`包
|
||||
|
||||
生成从1到10的10组随机数,每组随机数个数为100,均值依次为1到10,标准差为1,并存储在数据框中。
|
||||
|
||||
```{r}
|
||||
res <- list()
|
||||
for (i in 1:10) {
|
||||
res[[i]] <- tibble(随机数 = rnorm(n = 100, mean = i, sd = 1))
|
||||
}
|
||||
res
|
||||
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
## `purrr`包
|
||||
|
||||
生成从1到10的10组随机数,每组随机数个数为100,均值依次为1到10,标准差为1,并存储在数据框中。
|
||||
|
||||
```{r}
|
||||
1:10 |>
|
||||
purrr::map(~tibble(随机数 = rnorm(n = 100, mean = .x, sd = 1)))
|
||||
```
|
||||
|
||||
## purrr
|
||||
|
||||
```{r}
|
||||
library(purrr)
|
||||
mtcars |>
|
||||
split(mtcars$cyl) |> # from base R
|
||||
map(\(df) lm(mpg ~ wt, data = df)) |>
|
||||
map(summary) %>%
|
||||
map_dbl("r.squared")
|
||||
```
|
||||
|
||||
|
||||
## 练习:
|
||||
|
||||
计算每月最后一个周六的航班数:
|
||||
|
||||
```{r}
|
||||
flights
|
||||
```
|
||||
|
||||
## `tidyr` + `purrr`包
|
||||
|
||||
任务:展示不同城市间的大气指标散点图
|
||||
|
||||
```{r}
|
||||
(airqualitydf <- readxl::read_xlsx("../../data/airquality.xlsx",
|
||||
sheet = 2))
|
||||
```
|
||||
|
||||
## join
|
||||
|
||||
Perform left join
|
||||
|
||||
```{r}
|
||||
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
|
||||
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
|
||||
left_join(df1, df2, by = "id")
|
||||
```
|
||||
|
||||
## left join
|
||||
|
||||
Create sample data frames with non-matching rows
|
||||
|
||||
```{r}
|
||||
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
|
||||
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
|
||||
left_join(df2, df1, by = "id")
|
||||
```
|
||||
|
||||
## left join
|
||||
|
||||
|
||||
Create sample data frames with multiple columns
|
||||
|
||||
```{r}
|
||||
df1 <- data.frame(id1 = c(1, 2, 3), id2 = c("A", "B", "C"), value1 = letters[1:3])
|
||||
df2 <- data.frame(id1 = c(2, 3, 4), id2 = c("B", "C", "D"), value2 = LETTERS[1:3])
|
||||
# Perform left join
|
||||
left_join(df1, df2, by = c("id1", "id2"))
|
||||
```
|
||||
|
||||
## right join
|
||||
|
||||
|
||||
```{r}
|
||||
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
|
||||
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
|
||||
|
||||
# Perform right join
|
||||
right_join(df1, df2, by = "id")
|
||||
```
|
||||
|
||||
|
||||
## inner join
|
||||
|
||||
```{r}
|
||||
# Create sample data frames
|
||||
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
|
||||
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
|
||||
# Perform inner join
|
||||
inner_join(df1, df2, by = "id")
|
||||
```
|
||||
|
||||
|
||||
## full join
|
||||
|
||||
```{r}
|
||||
# Create sample data frames
|
||||
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
|
||||
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
|
||||
# Perform inner join
|
||||
full_join(df1, df2, by = "id")
|
||||
```
|
||||
|
||||
## semi join
|
||||
|
||||
Create sample data frames
|
||||
|
||||
```{r}
|
||||
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
|
||||
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
|
||||
# Perform semi join
|
||||
semi_join(df1, df2, by = "id")
|
||||
```
|
||||
|
||||
|
||||
## 练习
|
||||
|
||||
合并`airquality.xlsx`中的数据。
|
||||
|
||||
|
||||
|
||||
## 练习
|
||||
|
||||
统计各城市白天与晚上的大气质量差异,计算不同指标差异最大的10个城市。
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## 欢迎讨论!{.center}
|
||||
|
||||
|
||||
`r rmdify::slideend(wechat = FALSE, type = "public", tel = FALSE, thislink = "https://drwater.rcees.ac.cn/course/public/RWEP/@PUB/SD/")`
|
||||
|
|
@ -0,0 +1 @@
|
|||
../../_extensions
|
|
@ -0,0 +1 @@
|
|||
../../_extensions
|
After Width: | Height: | Size: 61 KiB |
|
@ -0,0 +1 @@
|
|||
../../_extensions
|
|
@ -0,0 +1,99 @@
|
|||
---
|
||||
title: "数据前处理+ggplot2画图实践"
|
||||
subtitle: 《区域水环境污染数据分析实践》<br>Data analysis practice of regional water environment pollution
|
||||
author: 苏命、王为东<br>中国科学院大学资源与环境学院<br>中国科学院生态环境研究中心
|
||||
date: today
|
||||
lang: zh
|
||||
format:
|
||||
revealjs:
|
||||
theme: dark
|
||||
slide-number: true
|
||||
chalkboard:
|
||||
buttons: true
|
||||
preview-links: auto
|
||||
lang: zh
|
||||
toc: true
|
||||
toc-depth: 1
|
||||
toc-title: 大纲
|
||||
logo: ./_extensions/inst/img/ucaslogo.png
|
||||
css: ./_extensions/inst/css/revealjs.css
|
||||
pointer:
|
||||
key: "p"
|
||||
color: "#32cd32"
|
||||
pointerSize: 18
|
||||
revealjs-plugins:
|
||||
- pointer
|
||||
filters:
|
||||
- d2
|
||||
---
|
||||
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
knitr::opts_chunk$set(echo = TRUE)
|
||||
source("../../coding/_common.R")
|
||||
library(tidyverse)
|
||||
```
|
||||
|
||||
|
||||
## 数据说明
|
||||
|
||||
```{r}
|
||||
mpg
|
||||
```
|
||||
|
||||
## 完成图1
|
||||
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
mpg |>
|
||||
ggplot(aes(x = displ, y = hwy, color = class)) +
|
||||
geom_point()
|
||||
|
||||
```
|
||||
|
||||
## 完成图2
|
||||
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
ggplot(mpg, aes(x = displ, y = hwy, color = drv)) +
|
||||
geom_point() +
|
||||
geom_smooth(aes(linetype = drv))
|
||||
```
|
||||
|
||||
## 完成图3
|
||||
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
ggplot(mpg, aes(x = displ, y = hwy)) +
|
||||
geom_point(aes(color = class)) +
|
||||
geom_smooth()
|
||||
```
|
||||
|
||||
## 完成图4
|
||||
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
ggplot(mpg, aes(x = displ, y = hwy)) +
|
||||
geom_point() +
|
||||
facet_wrap(~cyl)
|
||||
|
||||
```
|
||||
|
||||
## 完成图5
|
||||
|
||||
|
||||
```{r}
|
||||
#| echo: false
|
||||
ggplot(mpg, aes(x = drv, fill = class)) +
|
||||
geom_bar(position = "fill")
|
||||
```
|
||||
|
||||
|
||||
## 综合实践:三维荧光数据处理
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
:root {
|
||||
--r-background-color: #fff;
|
||||
--r-main-font: Source Sans Pro, simhei, microsoft yahei;
|
||||
--r-main-font-size: 32px;
|
||||
--r-main-font-size: 28px;
|
||||
--r-main-color: #222;
|
||||
--r-block-margin: 12px;
|
||||
--r-heading-margin: 0 0 12px 0;
|
||||
|
@ -320,11 +320,11 @@ figure > figcaption {
|
|||
background-color: #554433;
|
||||
line-height: 1.2em;
|
||||
color: #fff;
|
||||
font-size: x-large;
|
||||
/* font-size: x-large; */
|
||||
}
|
||||
|
||||
.reveal pre code:hover{
|
||||
font-size: xx-large;
|
||||
font-size: x-large;
|
||||
line-height: 120%;
|
||||
}
|
||||
|
||||
|
@ -337,9 +337,9 @@ section#title-slide p.subtitle {
|
|||
.reveal div.sourceCode pre code {
|
||||
background-color: #002233;
|
||||
min-height: 100%;
|
||||
font-size: x-large;
|
||||
/* font-size: x-large; */
|
||||
}
|
||||
|
||||
.reveal div.sourceCode pre code:hover {
|
||||
font-size: xx-large;
|
||||
font-size: x-large;
|
||||
}
|
||||
|
|
After Width: | Height: | Size: 51 KiB |
|
@ -0,0 +1,279 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="432" viewBox="0 0 360 432">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 2.90625 0.21875 C 1.976562 0.21875 1.304688 -0.0351562 0.890625 -0.546875 C 0.472656 -1.054688 0.265625 -1.675781 0.265625 -2.40625 L 1.296875 -2.40625 C 1.335938 -1.894531 1.429688 -1.523438 1.578125 -1.296875 C 1.835938 -0.890625 2.300781 -0.6875 2.96875 -0.6875 C 3.476562 -0.6875 3.890625 -0.820312 4.203125 -1.09375 C 4.523438 -1.375 4.6875 -1.734375 4.6875 -2.171875 C 4.6875 -2.710938 4.519531 -3.085938 4.1875 -3.296875 C 3.851562 -3.515625 3.394531 -3.625 2.8125 -3.625 C 2.75 -3.625 2.679688 -3.625 2.609375 -3.625 C 2.546875 -3.625 2.476562 -3.617188 2.40625 -3.609375 L 2.40625 -4.484375 C 2.507812 -4.472656 2.59375 -4.460938 2.65625 -4.453125 C 2.726562 -4.453125 2.804688 -4.453125 2.890625 -4.453125 C 3.253906 -4.453125 3.554688 -4.515625 3.796875 -4.640625 C 4.210938 -4.835938 4.421875 -5.203125 4.421875 -5.734375 C 4.421875 -6.117188 4.28125 -6.414062 4 -6.625 C 3.726562 -6.84375 3.40625 -6.953125 3.03125 -6.953125 C 2.375 -6.953125 1.921875 -6.734375 1.671875 -6.296875 C 1.535156 -6.054688 1.457031 -5.710938 1.4375 -5.265625 L 0.46875 -5.265625 C 0.46875 -5.847656 0.582031 -6.34375 0.8125 -6.75 C 1.21875 -7.476562 1.925781 -7.84375 2.9375 -7.84375 C 3.726562 -7.84375 4.34375 -7.664062 4.78125 -7.3125 C 5.21875 -6.957031 5.4375 -6.441406 5.4375 -5.765625 C 5.4375 -5.285156 5.304688 -4.894531 5.046875 -4.59375 C 4.890625 -4.40625 4.6875 -4.257812 4.4375 -4.15625 C 4.84375 -4.039062 5.160156 -3.820312 5.390625 -3.5 C 5.628906 -3.175781 5.75 -2.78125 5.75 -2.3125 C 5.75 -1.570312 5.5 -0.960938 5 -0.484375 C 4.507812 -0.015625 3.8125 0.21875 2.90625 0.21875 Z M 2.90625 0.21875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 1.390625 -2 C 1.453125 -1.4375 1.710938 -1.046875 2.171875 -0.828125 C 2.398438 -0.722656 2.664062 -0.671875 2.96875 -0.671875 C 3.550781 -0.671875 3.984375 -0.851562 4.265625 -1.21875 C 4.546875 -1.59375 4.6875 -2.007812 4.6875 -2.46875 C 4.6875 -3.007812 4.519531 -3.425781 4.1875 -3.71875 C 3.851562 -4.019531 3.457031 -4.171875 3 -4.171875 C 2.65625 -4.171875 2.359375 -4.101562 2.109375 -3.96875 C 1.867188 -3.84375 1.664062 -3.664062 1.5 -3.4375 L 0.640625 -3.484375 L 1.234375 -7.703125 L 5.3125 -7.703125 L 5.3125 -6.75 L 1.984375 -6.75 L 1.640625 -4.578125 C 1.828125 -4.710938 2.003906 -4.816406 2.171875 -4.890625 C 2.460938 -5.003906 2.796875 -5.0625 3.171875 -5.0625 C 3.890625 -5.0625 4.5 -4.828125 5 -4.359375 C 5.5 -3.898438 5.75 -3.316406 5.75 -2.609375 C 5.75 -1.867188 5.519531 -1.210938 5.0625 -0.640625 C 4.601562 -0.078125 3.875 0.203125 2.875 0.203125 C 2.238281 0.203125 1.675781 0.0234375 1.1875 -0.328125 C 0.695312 -0.691406 0.421875 -1.25 0.359375 -2 Z M 1.390625 -2 "/>
|
||||
</g>
|
||||
<g id="glyph-0-6">
|
||||
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-7">
|
||||
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-8">
|
||||
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-9">
|
||||
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-0-10">
|
||||
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-11">
|
||||
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-12">
|
||||
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-13">
|
||||
<path d="M 3.1875 -0.65625 C 3.65625 -0.65625 4.039062 -0.847656 4.34375 -1.234375 C 4.644531 -1.617188 4.796875 -2.195312 4.796875 -2.96875 C 4.796875 -3.4375 4.726562 -3.835938 4.59375 -4.171875 C 4.34375 -4.816406 3.875 -5.140625 3.1875 -5.140625 C 2.507812 -5.140625 2.046875 -4.796875 1.796875 -4.109375 C 1.660156 -3.742188 1.59375 -3.28125 1.59375 -2.71875 C 1.59375 -2.269531 1.660156 -1.882812 1.796875 -1.5625 C 2.046875 -0.957031 2.507812 -0.65625 3.1875 -0.65625 Z M 0.640625 -5.828125 L 1.609375 -5.828125 L 1.609375 -5.046875 C 1.796875 -5.316406 2.007812 -5.523438 2.25 -5.671875 C 2.582031 -5.890625 2.972656 -6 3.421875 -6 C 4.085938 -6 4.648438 -5.742188 5.109375 -5.234375 C 5.566406 -4.722656 5.796875 -4 5.796875 -3.0625 C 5.796875 -1.78125 5.460938 -0.867188 4.796875 -0.328125 C 4.378906 0.0234375 3.890625 0.203125 3.328125 0.203125 C 2.878906 0.203125 2.507812 0.101562 2.21875 -0.09375 C 2.039062 -0.195312 1.84375 -0.382812 1.625 -0.65625 L 1.625 2.328125 L 0.640625 2.328125 Z M 0.640625 -5.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-14">
|
||||
<path d="M 2.796875 -5.96875 C 3.253906 -5.96875 3.65625 -5.851562 4 -5.625 C 4.175781 -5.5 4.363281 -5.3125 4.5625 -5.0625 L 4.5625 -5.796875 L 5.46875 -5.796875 L 5.46875 -0.46875 C 5.46875 0.269531 5.359375 0.851562 5.140625 1.28125 C 4.734375 2.082031 3.960938 2.484375 2.828125 2.484375 C 2.191406 2.484375 1.660156 2.335938 1.234375 2.046875 C 0.804688 1.765625 0.566406 1.328125 0.515625 0.734375 L 1.515625 0.734375 C 1.566406 0.992188 1.660156 1.191406 1.796875 1.328125 C 2.023438 1.546875 2.375 1.65625 2.84375 1.65625 C 3.601562 1.65625 4.097656 1.390625 4.328125 0.859375 C 4.472656 0.546875 4.539062 -0.0078125 4.53125 -0.8125 C 4.332031 -0.507812 4.09375 -0.285156 3.8125 -0.140625 C 3.53125 0.00390625 3.164062 0.078125 2.71875 0.078125 C 2.082031 0.078125 1.523438 -0.144531 1.046875 -0.59375 C 0.566406 -1.050781 0.328125 -1.800781 0.328125 -2.84375 C 0.328125 -3.820312 0.566406 -4.585938 1.046875 -5.140625 C 1.523438 -5.691406 2.109375 -5.96875 2.796875 -5.96875 Z M 4.5625 -2.953125 C 4.5625 -3.679688 4.410156 -4.21875 4.109375 -4.5625 C 3.816406 -4.914062 3.4375 -5.09375 2.96875 -5.09375 C 2.28125 -5.09375 1.804688 -4.769531 1.546875 -4.125 C 1.410156 -3.769531 1.34375 -3.3125 1.34375 -2.75 C 1.34375 -2.09375 1.476562 -1.59375 1.75 -1.25 C 2.019531 -0.90625 2.378906 -0.734375 2.828125 -0.734375 C 3.535156 -0.734375 4.035156 -1.050781 4.328125 -1.6875 C 4.484375 -2.050781 4.5625 -2.472656 4.5625 -2.953125 Z M 2.90625 -6 Z M 2.90625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-15">
|
||||
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-16">
|
||||
<path d="M 0.71875 -5.859375 L 1.703125 -5.859375 L 1.703125 -5.03125 C 1.929688 -5.3125 2.140625 -5.519531 2.328125 -5.65625 C 2.648438 -5.875 3.019531 -5.984375 3.4375 -5.984375 C 3.90625 -5.984375 4.28125 -5.867188 4.5625 -5.640625 C 4.71875 -5.515625 4.863281 -5.320312 5 -5.0625 C 5.21875 -5.375 5.472656 -5.601562 5.765625 -5.75 C 6.066406 -5.90625 6.398438 -5.984375 6.765625 -5.984375 C 7.554688 -5.984375 8.09375 -5.703125 8.375 -5.140625 C 8.53125 -4.828125 8.609375 -4.414062 8.609375 -3.90625 L 8.609375 0 L 7.578125 0 L 7.578125 -4.0625 C 7.578125 -4.457031 7.476562 -4.726562 7.28125 -4.875 C 7.09375 -5.019531 6.859375 -5.09375 6.578125 -5.09375 C 6.191406 -5.09375 5.859375 -4.960938 5.578125 -4.703125 C 5.296875 -4.441406 5.15625 -4.007812 5.15625 -3.40625 L 5.15625 0 L 4.15625 0 L 4.15625 -3.828125 C 4.15625 -4.222656 4.109375 -4.507812 4.015625 -4.6875 C 3.867188 -4.96875 3.585938 -5.109375 3.171875 -5.109375 C 2.804688 -5.109375 2.46875 -4.960938 2.15625 -4.671875 C 1.851562 -4.378906 1.703125 -3.859375 1.703125 -3.109375 L 1.703125 0 L 0.71875 0 Z M 0.71875 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-17">
|
||||
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
<path d="M 1.640625 -2.296875 C 1.671875 -1.890625 1.769531 -1.578125 1.9375 -1.359375 C 2.25 -0.960938 2.789062 -0.765625 3.5625 -0.765625 C 4.007812 -0.765625 4.40625 -0.863281 4.75 -1.0625 C 5.101562 -1.257812 5.28125 -1.5625 5.28125 -1.96875 C 5.28125 -2.289062 5.140625 -2.53125 4.859375 -2.6875 C 4.679688 -2.789062 4.332031 -2.910156 3.8125 -3.046875 L 2.828125 -3.28125 C 2.203125 -3.4375 1.742188 -3.613281 1.453125 -3.8125 C 0.921875 -4.144531 0.65625 -4.601562 0.65625 -5.1875 C 0.65625 -5.882812 0.90625 -6.445312 1.40625 -6.875 C 1.90625 -7.300781 2.578125 -7.515625 3.421875 -7.515625 C 4.523438 -7.515625 5.316406 -7.191406 5.796875 -6.546875 C 6.109375 -6.128906 6.257812 -5.6875 6.25 -5.21875 L 5.09375 -5.21875 C 5.0625 -5.5 4.960938 -5.75 4.796875 -5.96875 C 4.515625 -6.289062 4.023438 -6.453125 3.328125 -6.453125 C 2.859375 -6.453125 2.503906 -6.363281 2.265625 -6.1875 C 2.023438 -6.007812 1.90625 -5.773438 1.90625 -5.484375 C 1.90625 -5.171875 2.0625 -4.914062 2.375 -4.71875 C 2.5625 -4.601562 2.832031 -4.503906 3.1875 -4.421875 L 4 -4.21875 C 4.882812 -4.007812 5.476562 -3.804688 5.78125 -3.609375 C 6.257812 -3.285156 6.5 -2.789062 6.5 -2.125 C 6.5 -1.46875 6.25 -0.898438 5.75 -0.421875 C 5.257812 0.0429688 4.507812 0.28125 3.5 0.28125 C 2.40625 0.28125 1.628906 0.0351562 1.171875 -0.453125 C 0.722656 -0.953125 0.484375 -1.566406 0.453125 -2.296875 Z M 3.453125 -7.5 Z M 3.453125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-1">
|
||||
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-2">
|
||||
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-3">
|
||||
<path d="M 3.8125 -0.796875 C 4.625 -0.796875 5.179688 -1.101562 5.484375 -1.71875 C 5.785156 -2.332031 5.9375 -3.019531 5.9375 -3.78125 C 5.9375 -4.46875 5.828125 -5.023438 5.609375 -5.453125 C 5.265625 -6.117188 4.671875 -6.453125 3.828125 -6.453125 C 3.066406 -6.453125 2.515625 -6.164062 2.171875 -5.59375 C 1.835938 -5.019531 1.671875 -4.328125 1.671875 -3.515625 C 1.671875 -2.742188 1.835938 -2.097656 2.171875 -1.578125 C 2.515625 -1.054688 3.0625 -0.796875 3.8125 -0.796875 Z M 3.859375 -7.53125 C 4.796875 -7.53125 5.585938 -7.210938 6.234375 -6.578125 C 6.890625 -5.953125 7.21875 -5.03125 7.21875 -3.8125 C 7.21875 -2.632812 6.929688 -1.660156 6.359375 -0.890625 C 5.785156 -0.117188 4.894531 0.265625 3.6875 0.265625 C 2.6875 0.265625 1.890625 -0.0703125 1.296875 -0.75 C 0.703125 -1.4375 0.40625 -2.351562 0.40625 -3.5 C 0.40625 -4.726562 0.71875 -5.707031 1.34375 -6.4375 C 1.96875 -7.164062 2.804688 -7.53125 3.859375 -7.53125 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-4">
|
||||
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-2-0">
|
||||
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-1">
|
||||
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2">
|
||||
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-3">
|
||||
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
|
||||
</g>
|
||||
<g id="glyph-2-4">
|
||||
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
|
||||
</g>
|
||||
</g>
|
||||
<clipPath id="clip-0">
|
||||
<path clip-rule="nonzero" d="M 61.019531 6.972656 L 353.023438 6.972656 L 353.023438 391.613281 L 61.019531 391.613281 Z M 61.019531 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-1">
|
||||
<path clip-rule="nonzero" d="M 61.019531 380 L 353.023438 380 L 353.023438 382 L 61.019531 382 Z M 61.019531 380 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-2">
|
||||
<path clip-rule="nonzero" d="M 61.019531 311 L 353.023438 311 L 353.023438 313 L 61.019531 313 Z M 61.019531 311 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-3">
|
||||
<path clip-rule="nonzero" d="M 61.019531 242 L 353.023438 242 L 353.023438 244 L 61.019531 244 Z M 61.019531 242 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-4">
|
||||
<path clip-rule="nonzero" d="M 61.019531 174 L 353.023438 174 L 353.023438 175 L 61.019531 175 Z M 61.019531 174 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-5">
|
||||
<path clip-rule="nonzero" d="M 61.019531 105 L 353.023438 105 L 353.023438 107 L 61.019531 107 Z M 61.019531 105 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-6">
|
||||
<path clip-rule="nonzero" d="M 61.019531 36 L 353.023438 36 L 353.023438 38 L 61.019531 38 Z M 61.019531 36 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-7">
|
||||
<path clip-rule="nonzero" d="M 102 6.972656 L 104 6.972656 L 104 391.613281 L 102 391.613281 Z M 102 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-8">
|
||||
<path clip-rule="nonzero" d="M 171 6.972656 L 173 6.972656 L 173 391.613281 L 171 391.613281 Z M 171 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-9">
|
||||
<path clip-rule="nonzero" d="M 241 6.972656 L 243 6.972656 L 243 391.613281 L 241 391.613281 Z M 241 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-10">
|
||||
<path clip-rule="nonzero" d="M 310 6.972656 L 312 6.972656 L 312 391.613281 L 310 391.613281 Z M 310 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-11">
|
||||
<path clip-rule="nonzero" d="M 61.019531 6.972656 L 353.023438 6.972656 L 353.023438 391.613281 L 61.019531 391.613281 Z M 61.019531 6.972656 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 432 L 360 432 L 360 0 L 0 0 Z M 0 432 "/>
|
||||
<g clip-path="url(#clip-0)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-1)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 380.675781 L 353.027344 380.675781 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-2)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 312 L 353.027344 312 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-3)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 243.324219 L 353.027344 243.324219 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-4)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 174.648438 L 353.027344 174.648438 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-5)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 105.972656 L 353.027344 105.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-6)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 37.300781 L 353.027344 37.300781 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-7)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 391.613281 L 102.734375 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-8)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 391.613281 L 172.261719 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-9)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 391.613281 L 241.785156 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-10)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 391.613281 L 311.3125 6.972656 "/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 274.070312 L 102.734375 191.109375 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 341.949219 L 102.734375 367.558594 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.664062 274.070312 L 76.664062 341.949219 L 128.808594 341.949219 L 128.808594 274.070312 Z M 76.664062 274.070312 "/>
|
||||
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.664062 327.796875 L 128.808594 327.796875 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 248.621094 L 172.261719 164.011719 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 329.984375 L 172.261719 372.171875 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.1875 248.621094 L 146.1875 329.984375 L 198.332031 329.984375 L 198.332031 248.621094 Z M 146.1875 248.621094 "/>
|
||||
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.1875 305.820312 L 198.332031 305.820312 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(20%, 20%, 20%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 243.742188 24.457031 C 243.742188 27.0625 239.832031 27.0625 239.832031 24.457031 C 239.832031 21.851562 243.742188 21.851562 243.742188 24.457031 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(20%, 20%, 20%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 243.742188 71.191406 C 243.742188 73.796875 239.832031 73.796875 239.832031 71.191406 C 239.832031 68.585938 243.742188 68.585938 243.742188 71.191406 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 212.332031 L 241.785156 165.640625 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 302.988281 L 241.785156 348.246094 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 215.714844 212.332031 L 215.714844 302.988281 L 267.859375 302.988281 L 267.859375 212.332031 Z M 215.714844 212.332031 "/>
|
||||
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 215.714844 279.164062 L 267.859375 279.164062 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 237.566406 L 311.3125 172.199219 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 325.707031 L 311.3125 374.128906 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.238281 237.566406 L 285.238281 325.707031 L 337.382812 325.707031 L 337.382812 237.566406 Z M 285.238281 237.566406 "/>
|
||||
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.238281 302.214844 L 337.382812 302.214844 "/>
|
||||
<g clip-path="url(#clip-11)">
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="48.511719" y="384.691406"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-1" x="23.597656" y="316.015625"/>
|
||||
<use xlink:href="#glyph-0-0" x="29.826563" y="316.015625"/>
|
||||
<use xlink:href="#glyph-0-0" x="36.055469" y="316.015625"/>
|
||||
<use xlink:href="#glyph-0-0" x="42.284375" y="316.015625"/>
|
||||
<use xlink:href="#glyph-0-0" x="48.513281" y="316.015625"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-2" x="23.597656" y="247.339844"/>
|
||||
<use xlink:href="#glyph-0-0" x="29.826563" y="247.339844"/>
|
||||
<use xlink:href="#glyph-0-0" x="36.055469" y="247.339844"/>
|
||||
<use xlink:href="#glyph-0-0" x="42.284375" y="247.339844"/>
|
||||
<use xlink:href="#glyph-0-0" x="48.513281" y="247.339844"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-3" x="23.597656" y="178.667969"/>
|
||||
<use xlink:href="#glyph-0-0" x="29.826563" y="178.667969"/>
|
||||
<use xlink:href="#glyph-0-0" x="36.055469" y="178.667969"/>
|
||||
<use xlink:href="#glyph-0-0" x="42.284375" y="178.667969"/>
|
||||
<use xlink:href="#glyph-0-0" x="48.513281" y="178.667969"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-4" x="23.597656" y="109.992188"/>
|
||||
<use xlink:href="#glyph-0-0" x="29.826563" y="109.992188"/>
|
||||
<use xlink:href="#glyph-0-0" x="36.055469" y="109.992188"/>
|
||||
<use xlink:href="#glyph-0-0" x="42.284375" y="109.992188"/>
|
||||
<use xlink:href="#glyph-0-0" x="48.513281" y="109.992188"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-5" x="23.597656" y="41.316406"/>
|
||||
<use xlink:href="#glyph-0-0" x="29.826563" y="41.316406"/>
|
||||
<use xlink:href="#glyph-0-0" x="36.055469" y="41.316406"/>
|
||||
<use xlink:href="#glyph-0-0" x="42.284375" y="41.316406"/>
|
||||
<use xlink:href="#glyph-0-0" x="48.513281" y="41.316406"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 380.675781 L 61.019531 380.675781 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 312 L 61.019531 312 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 243.324219 L 61.019531 243.324219 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 174.648438 L 61.019531 174.648438 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 105.972656 L 61.019531 105.972656 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 37.300781 L 61.019531 37.300781 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 395.101562 L 102.734375 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 395.101562 L 172.261719 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 395.101562 L 241.785156 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 395.101562 L 311.3125 391.613281 "/>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-6" x="87.796875" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="95.885156" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-8" x="98.373437" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-9" x="104.602344" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="107.714062" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-11" x="113.942969" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-12" x="157.007812" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-13" x="162.607812" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-11" x="168.836719" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="172.566406" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-8" x="175.054688" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-14" x="181.283594" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-12" x="221.5625" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="227.1625" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-16" x="233.391406" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-16" x="242.721094" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="252.050781" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-11" x="258.279688" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-17" x="292.632812" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="298.861719" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-9" x="305.090625" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="308.202344" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-16" x="314.43125" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-8" x="323.760938" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0" x="184.453125" y="421.929688"/>
|
||||
<use xlink:href="#glyph-1-1" x="191.453125" y="421.929688"/>
|
||||
<use xlink:href="#glyph-1-2" x="199.239258" y="421.929688"/>
|
||||
<use xlink:href="#glyph-1-0" x="207.025391" y="421.929688"/>
|
||||
<use xlink:href="#glyph-1-3" x="214.025391" y="421.929688"/>
|
||||
<use xlink:href="#glyph-1-4" x="221.811523" y="421.929688"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-0" x="17.015625" y="216.417969"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="209.417969"/>
|
||||
<use xlink:href="#glyph-2-2" x="17.015625" y="201.631836"/>
|
||||
<use xlink:href="#glyph-2-3" x="17.015625" y="193.845703"/>
|
||||
<use xlink:href="#glyph-2-4" x="17.015625" y="186.05957"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 40 KiB |
|
@ -0,0 +1,311 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="295" viewBox="0 0 360 295">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-6">
|
||||
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-7">
|
||||
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-8">
|
||||
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-9">
|
||||
</g>
|
||||
<g id="glyph-0-10">
|
||||
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-11">
|
||||
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-12">
|
||||
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-13">
|
||||
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-14">
|
||||
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-15">
|
||||
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-16">
|
||||
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-17">
|
||||
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-18">
|
||||
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-0-19">
|
||||
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-20">
|
||||
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
|
||||
</g>
|
||||
<g id="glyph-0-21">
|
||||
<path d="M 0.859375 -8.03125 L 2.140625 -8.03125 L 6.203125 -1.53125 L 6.203125 -8.03125 L 7.234375 -8.03125 L 7.234375 0 L 6.015625 0 L 1.890625 -6.5 L 1.890625 0 L 0.859375 0 Z M 3.96875 -8.03125 Z M 3.96875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-22">
|
||||
<path d="M 4.984375 -3.296875 L 3.765625 -6.84375 L 2.46875 -3.296875 Z M 3.1875 -8.03125 L 4.421875 -8.03125 L 7.328125 0 L 6.140625 0 L 5.328125 -2.40625 L 2.15625 -2.40625 L 1.28125 0 L 0.171875 0 Z M 3.1875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
<path d="M 1.46875 -7.328125 L 2.875 -1.546875 L 4.3125 -7.328125 L 5.6875 -7.328125 L 7.125 -1.59375 L 8.625 -7.328125 L 9.84375 -7.328125 L 7.71875 0 L 6.453125 0 L 4.953125 -5.671875 L 3.515625 0 L 2.234375 0 L 0.125 -7.328125 Z M 1.46875 -7.328125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-1">
|
||||
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-2">
|
||||
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-3">
|
||||
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
|
||||
</g>
|
||||
<g id="glyph-1-4">
|
||||
<path d="M 0.90625 -10.078125 L 2.140625 -10.078125 L 2.140625 -6.328125 C 2.429688 -6.703125 2.691406 -6.960938 2.921875 -7.109375 C 3.316406 -7.367188 3.8125 -7.5 4.40625 -7.5 C 5.46875 -7.5 6.1875 -7.128906 6.5625 -6.390625 C 6.769531 -5.984375 6.875 -5.421875 6.875 -4.703125 L 6.875 0 L 5.609375 0 L 5.609375 -4.609375 C 5.609375 -5.148438 5.539062 -5.546875 5.40625 -5.796875 C 5.175781 -6.203125 4.753906 -6.40625 4.140625 -6.40625 C 3.628906 -6.40625 3.164062 -6.226562 2.75 -5.875 C 2.34375 -5.519531 2.140625 -4.859375 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -10.078125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-5">
|
||||
<path d="M 0.9375 -7.328125 L 2.109375 -7.328125 L 2.109375 -6.0625 C 2.203125 -6.300781 2.4375 -6.597656 2.8125 -6.953125 C 3.1875 -7.304688 3.617188 -7.484375 4.109375 -7.484375 C 4.128906 -7.484375 4.164062 -7.476562 4.21875 -7.46875 C 4.269531 -7.46875 4.363281 -7.460938 4.5 -7.453125 L 4.5 -6.15625 C 4.425781 -6.164062 4.359375 -6.171875 4.296875 -6.171875 C 4.234375 -6.179688 4.164062 -6.1875 4.09375 -6.1875 C 3.476562 -6.1875 3.003906 -5.984375 2.671875 -5.578125 C 2.335938 -5.179688 2.171875 -4.726562 2.171875 -4.21875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -7.328125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-6">
|
||||
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
|
||||
</g>
|
||||
<g id="glyph-1-7">
|
||||
<path d="M 5.46875 -7.328125 L 6.84375 -7.328125 C 6.664062 -6.859375 6.28125 -5.785156 5.6875 -4.109375 C 5.238281 -2.847656 4.863281 -1.820312 4.5625 -1.03125 C 3.851562 0.832031 3.351562 1.96875 3.0625 2.375 C 2.769531 2.789062 2.265625 3 1.546875 3 C 1.378906 3 1.25 2.988281 1.15625 2.96875 C 1.0625 2.957031 0.945312 2.9375 0.8125 2.90625 L 0.8125 1.78125 C 1.019531 1.84375 1.171875 1.878906 1.265625 1.890625 C 1.367188 1.910156 1.457031 1.921875 1.53125 1.921875 C 1.75 1.921875 1.910156 1.878906 2.015625 1.796875 C 2.128906 1.722656 2.222656 1.632812 2.296875 1.53125 C 2.316406 1.488281 2.394531 1.296875 2.53125 0.953125 C 2.675781 0.617188 2.78125 0.375 2.84375 0.21875 L 0.140625 -7.328125 L 1.53125 -7.328125 L 3.5 -1.359375 Z M 3.5 -7.5 Z M 3.5 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-8">
|
||||
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-0">
|
||||
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-1">
|
||||
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2">
|
||||
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-3">
|
||||
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
|
||||
</g>
|
||||
<g id="glyph-2-4">
|
||||
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
|
||||
</g>
|
||||
</g>
|
||||
<clipPath id="clip-0">
|
||||
<path clip-rule="nonzero" d="M 48.5625 6.972656 L 353.027344 6.972656 L 353.027344 254.613281 L 48.5625 254.613281 Z M 48.5625 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-1">
|
||||
<path clip-rule="nonzero" d="M 48.5625 243 L 353.027344 243 L 353.027344 244 L 48.5625 244 Z M 48.5625 243 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-2">
|
||||
<path clip-rule="nonzero" d="M 48.5625 163 L 353.027344 163 L 353.027344 165 L 48.5625 165 Z M 48.5625 163 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-3">
|
||||
<path clip-rule="nonzero" d="M 48.5625 83 L 353.027344 83 L 353.027344 85 L 48.5625 85 Z M 48.5625 83 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-4">
|
||||
<path clip-rule="nonzero" d="M 73 6.972656 L 75 6.972656 L 75 254.613281 L 73 254.613281 Z M 73 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-5">
|
||||
<path clip-rule="nonzero" d="M 115 6.972656 L 117 6.972656 L 117 254.613281 L 115 254.613281 Z M 115 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-6">
|
||||
<path clip-rule="nonzero" d="M 158 6.972656 L 159 6.972656 L 159 254.613281 L 158 254.613281 Z M 158 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-7">
|
||||
<path clip-rule="nonzero" d="M 200 6.972656 L 202 6.972656 L 202 254.613281 L 200 254.613281 Z M 200 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-8">
|
||||
<path clip-rule="nonzero" d="M 242 6.972656 L 244 6.972656 L 244 254.613281 L 242 254.613281 Z M 242 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-9">
|
||||
<path clip-rule="nonzero" d="M 285 6.972656 L 286 6.972656 L 286 254.613281 L 285 254.613281 Z M 285 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-10">
|
||||
<path clip-rule="nonzero" d="M 327 6.972656 L 328 6.972656 L 328 254.613281 L 327 254.613281 Z M 327 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-11">
|
||||
<path clip-rule="nonzero" d="M 48.5625 6.972656 L 353.027344 6.972656 L 353.027344 254.613281 L 48.5625 254.613281 Z M 48.5625 6.972656 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 295 L 360 295 L 360 0 L 0 0 Z M 0 295 "/>
|
||||
<g clip-path="url(#clip-0)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 48.5625 254.613281 L 353.027344 254.613281 L 353.027344 6.972656 L 48.5625 6.972656 Z M 48.5625 254.613281 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-1)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 243.355469 L 353.027344 243.355469 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-2)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 163.664062 L 353.027344 163.664062 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-3)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 83.976562 L 353.027344 83.976562 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-4)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 73.933594 254.613281 L 73.933594 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-5)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 116.222656 254.613281 L 116.222656 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-6)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 158.507812 254.613281 L 158.507812 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-7)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 254.613281 L 200.792969 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-8)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 243.082031 254.613281 L 243.082031 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-9)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.367188 254.613281 L 285.367188 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-10)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 327.652344 254.613281 L 327.652344 6.972656 "/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 54.90625 243.355469 L 92.964844 243.355469 L 92.964844 136.96875 L 54.90625 136.96875 Z M 54.90625 243.355469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 97.191406 243.355469 L 135.25 243.355469 L 135.25 18.230469 L 97.191406 18.230469 Z M 97.191406 243.355469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 139.480469 243.355469 L 177.539062 243.355469 L 177.539062 211.878906 L 139.480469 211.878906 Z M 139.480469 243.355469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 181.765625 243.355469 L 219.824219 243.355469 L 219.824219 180.796875 L 181.765625 180.796875 Z M 181.765625 243.355469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 224.050781 243.355469 L 262.109375 243.355469 L 262.109375 119.4375 L 224.050781 119.4375 Z M 224.050781 243.355469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 266.339844 243.355469 L 304.398438 243.355469 L 304.398438 242.160156 L 266.339844 242.160156 Z M 266.339844 243.355469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 308.625 243.355469 L 346.683594 243.355469 L 346.683594 214.667969 L 308.625 214.667969 Z M 308.625 243.355469 "/>
|
||||
<g clip-path="url(#clip-11)">
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 254.613281 L 353.027344 254.613281 L 353.027344 6.972656 L 48.5625 6.972656 Z M 48.5625 254.613281 "/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="36.054688" y="247.375"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-1" x="23.597656" y="167.683594"/>
|
||||
<use xlink:href="#glyph-0-0" x="29.826563" y="167.683594"/>
|
||||
<use xlink:href="#glyph-0-0" x="36.055469" y="167.683594"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-2" x="23.597656" y="87.992188"/>
|
||||
<use xlink:href="#glyph-0-0" x="29.826563" y="87.992188"/>
|
||||
<use xlink:href="#glyph-0-0" x="36.055469" y="87.992188"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 243.355469 L 48.5625 243.355469 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 163.664062 L 48.5625 163.664062 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 83.976562 L 48.5625 83.976562 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 73.933594 258.101562 L 73.933594 254.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 116.222656 258.101562 L 116.222656 254.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 158.507812 258.101562 L 158.507812 254.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 258.101562 L 200.792969 254.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 243.082031 258.101562 L 243.082031 254.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.367188 258.101562 L 285.367188 254.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 327.652344 258.101562 L 327.652344 254.613281 "/>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-3" x="39.066406" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-4" x="45.295313" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-5" x="49.025" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-6" x="55.253906" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="60.853906" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-8" x="67.082813" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-9" x="73.311719" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="76.423437" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-11" x="82.023437" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-5" x="84.511719" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-12" x="90.740625" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-13" x="96.969531" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-14" x="103.198437" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-10" x="104.085938" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-11" x="109.685937" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="112.174219" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="118.403125" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-4" x="124.632031" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-10" x="142.320312" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-11" x="147.920312" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-5" x="150.408594" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-12" x="156.6375" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-13" x="162.866406" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-16" x="169.095312" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-4" x="191.457031" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="195.186719" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-17" x="201.415625" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-8" x="203.903906" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-14" x="202.304688" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="207.904687" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="213.504687" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-18" x="219.733594" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-18" x="222.845312" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="225.957031" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-4" x="232.185937" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="235.915625" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-13" x="242.144531" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-9" x="248.373437" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="251.485156" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-11" x="257.085156" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-5" x="259.573437" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-12" x="265.802344" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-13" x="272.03125" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-14" x="278.260156" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-14" x="265.136719" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-8" x="270.736719" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-5" x="276.965625" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-19" x="283.194531" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-20" x="291.282813" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="294.394531" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-11" x="300.623438" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-11" x="303.111719" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-21" x="319.871094" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-22" x="327.959375" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0" x="158.765625" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-1" x="168.875977" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-2" x="176.662109" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-3" x="184.448242" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-4" x="188.337891" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-1" x="196.124023" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-5" x="203.910156" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-6" x="208.572266" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-3" x="216.358398" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-7" x="220.248047" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-8" x="227.248047" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-1" x="235.03418" y="284.929688"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-0" x="17.015625" y="147.917969"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="140.917969"/>
|
||||
<use xlink:href="#glyph-2-2" x="17.015625" y="133.131836"/>
|
||||
<use xlink:href="#glyph-2-3" x="17.015625" y="125.345703"/>
|
||||
<use xlink:href="#glyph-2-4" x="17.015625" y="117.55957"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 54 KiB |
|
@ -0,0 +1,384 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="280" viewBox="0 0 360 280">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-6">
|
||||
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-7">
|
||||
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-8">
|
||||
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-9">
|
||||
</g>
|
||||
<g id="glyph-0-10">
|
||||
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-11">
|
||||
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-12">
|
||||
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-13">
|
||||
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-14">
|
||||
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-15">
|
||||
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-16">
|
||||
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-17">
|
||||
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-18">
|
||||
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-0-19">
|
||||
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-20">
|
||||
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
<path d="M 1.46875 -7.328125 L 2.875 -1.546875 L 4.3125 -7.328125 L 5.6875 -7.328125 L 7.125 -1.59375 L 8.625 -7.328125 L 9.84375 -7.328125 L 7.71875 0 L 6.453125 0 L 4.953125 -5.671875 L 3.515625 0 L 2.234375 0 L 0.125 -7.328125 Z M 1.46875 -7.328125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-1">
|
||||
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-2">
|
||||
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-3">
|
||||
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
|
||||
</g>
|
||||
<g id="glyph-1-4">
|
||||
<path d="M 0.90625 -10.078125 L 2.140625 -10.078125 L 2.140625 -6.328125 C 2.429688 -6.703125 2.691406 -6.960938 2.921875 -7.109375 C 3.316406 -7.367188 3.8125 -7.5 4.40625 -7.5 C 5.46875 -7.5 6.1875 -7.128906 6.5625 -6.390625 C 6.769531 -5.984375 6.875 -5.421875 6.875 -4.703125 L 6.875 0 L 5.609375 0 L 5.609375 -4.609375 C 5.609375 -5.148438 5.539062 -5.546875 5.40625 -5.796875 C 5.175781 -6.203125 4.753906 -6.40625 4.140625 -6.40625 C 3.628906 -6.40625 3.164062 -6.226562 2.75 -5.875 C 2.34375 -5.519531 2.140625 -4.859375 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -10.078125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-5">
|
||||
<path d="M 0.9375 -7.328125 L 2.109375 -7.328125 L 2.109375 -6.0625 C 2.203125 -6.300781 2.4375 -6.597656 2.8125 -6.953125 C 3.1875 -7.304688 3.617188 -7.484375 4.109375 -7.484375 C 4.128906 -7.484375 4.164062 -7.476562 4.21875 -7.46875 C 4.269531 -7.46875 4.363281 -7.460938 4.5 -7.453125 L 4.5 -6.15625 C 4.425781 -6.164062 4.359375 -6.171875 4.296875 -6.171875 C 4.234375 -6.179688 4.164062 -6.1875 4.09375 -6.1875 C 3.476562 -6.1875 3.003906 -5.984375 2.671875 -5.578125 C 2.335938 -5.179688 2.171875 -4.726562 2.171875 -4.21875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -7.328125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-6">
|
||||
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
|
||||
</g>
|
||||
<g id="glyph-1-7">
|
||||
<path d="M 5.46875 -7.328125 L 6.84375 -7.328125 C 6.664062 -6.859375 6.28125 -5.785156 5.6875 -4.109375 C 5.238281 -2.847656 4.863281 -1.820312 4.5625 -1.03125 C 3.851562 0.832031 3.351562 1.96875 3.0625 2.375 C 2.769531 2.789062 2.265625 3 1.546875 3 C 1.378906 3 1.25 2.988281 1.15625 2.96875 C 1.0625 2.957031 0.945312 2.9375 0.8125 2.90625 L 0.8125 1.78125 C 1.019531 1.84375 1.171875 1.878906 1.265625 1.890625 C 1.367188 1.910156 1.457031 1.921875 1.53125 1.921875 C 1.75 1.921875 1.910156 1.878906 2.015625 1.796875 C 2.128906 1.722656 2.222656 1.632812 2.296875 1.53125 C 2.316406 1.488281 2.394531 1.296875 2.53125 0.953125 C 2.675781 0.617188 2.78125 0.375 2.84375 0.21875 L 0.140625 -7.328125 L 1.53125 -7.328125 L 3.5 -1.359375 Z M 3.5 -7.5 Z M 3.5 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-8">
|
||||
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-0">
|
||||
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-1">
|
||||
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2">
|
||||
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-3">
|
||||
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
|
||||
</g>
|
||||
<g id="glyph-2-4">
|
||||
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
|
||||
</g>
|
||||
</g>
|
||||
<clipPath id="clip-0">
|
||||
<path clip-rule="nonzero" d="M 48.5625 76.402344 L 353.027344 76.402344 L 353.027344 239.613281 L 48.5625 239.613281 Z M 48.5625 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-1">
|
||||
<path clip-rule="nonzero" d="M 48.5625 231 L 353.027344 231 L 353.027344 233 L 48.5625 233 Z M 48.5625 231 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-2">
|
||||
<path clip-rule="nonzero" d="M 48.5625 179 L 353.027344 179 L 353.027344 181 L 48.5625 181 Z M 48.5625 179 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-3">
|
||||
<path clip-rule="nonzero" d="M 48.5625 126 L 353.027344 126 L 353.027344 128 L 48.5625 128 Z M 48.5625 126 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-4">
|
||||
<path clip-rule="nonzero" d="M 77 76.402344 L 79 76.402344 L 79 239.613281 L 77 239.613281 Z M 77 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-5">
|
||||
<path clip-rule="nonzero" d="M 126 76.402344 L 128 76.402344 L 128 239.613281 L 126 239.613281 Z M 126 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-6">
|
||||
<path clip-rule="nonzero" d="M 175 76.402344 L 177 76.402344 L 177 239.613281 L 175 239.613281 Z M 175 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-7">
|
||||
<path clip-rule="nonzero" d="M 225 76.402344 L 226 76.402344 L 226 239.613281 L 225 239.613281 Z M 225 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-8">
|
||||
<path clip-rule="nonzero" d="M 274 76.402344 L 275 76.402344 L 275 239.613281 L 274 239.613281 Z M 274 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-9">
|
||||
<path clip-rule="nonzero" d="M 323 76.402344 L 324 76.402344 L 324 239.613281 L 323 239.613281 Z M 323 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-10">
|
||||
<path clip-rule="nonzero" d="M 48.5625 76.402344 L 353.027344 76.402344 L 353.027344 239.613281 L 48.5625 239.613281 Z M 48.5625 76.402344 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<rect x="-36" y="-28" width="432" height="336" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<rect x="-36" y="-28" width="432" height="336" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 280 L 360 280 L 360 0 L 0 0 Z M 0 280 "/>
|
||||
<g clip-path="url(#clip-0)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 48.5625 239.613281 L 353.027344 239.613281 L 353.027344 76.402344 L 48.5625 76.402344 Z M 48.5625 239.613281 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-1)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 232.195312 L 353.027344 232.195312 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-2)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 179.671875 L 353.027344 179.671875 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-3)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 127.152344 L 353.027344 127.152344 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-4)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 78.027344 239.613281 L 78.027344 76.402344 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-5)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 127.132812 239.613281 L 127.132812 76.402344 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-6)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 176.242188 239.613281 L 176.242188 76.402344 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-7)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 225.347656 239.613281 L 225.347656 76.402344 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-8)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 274.453125 239.613281 L 274.453125 76.402344 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-9)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 323.5625 239.613281 L 323.5625 76.402344 "/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 55.929688 232.195312 L 100.125 232.195312 L 100.125 162.078125 L 55.929688 162.078125 Z M 55.929688 232.195312 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 105.035156 232.195312 L 149.230469 232.195312 L 149.230469 83.824219 L 105.035156 83.824219 Z M 105.035156 232.195312 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 154.144531 232.195312 L 198.339844 232.195312 L 198.339844 211.449219 L 154.144531 211.449219 Z M 154.144531 232.195312 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 203.25 232.195312 L 247.445312 232.195312 L 247.445312 190.964844 L 203.25 190.964844 Z M 203.25 232.195312 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 252.355469 232.195312 L 296.550781 232.195312 L 296.550781 150.523438 L 252.355469 150.523438 Z M 252.355469 232.195312 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 301.464844 232.195312 L 345.660156 232.195312 L 345.660156 231.40625 L 301.464844 231.40625 Z M 301.464844 232.195312 "/>
|
||||
<g clip-path="url(#clip-10)">
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 239.613281 L 353.027344 239.613281 L 353.027344 76.402344 L 48.5625 76.402344 Z M 48.5625 239.613281 "/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="36.054688" y="236.210938"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-1" x="23.597656" y="183.691406"/>
|
||||
<use xlink:href="#glyph-0-0" x="29.826563" y="183.691406"/>
|
||||
<use xlink:href="#glyph-0-0" x="36.055469" y="183.691406"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-2" x="23.597656" y="131.167969"/>
|
||||
<use xlink:href="#glyph-0-0" x="29.826563" y="131.167969"/>
|
||||
<use xlink:href="#glyph-0-0" x="36.055469" y="131.167969"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 232.195312 L 48.5625 232.195312 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 179.671875 L 48.5625 179.671875 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 127.152344 L 48.5625 127.152344 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 78.027344 243.101562 L 78.027344 239.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 127.132812 243.101562 L 127.132812 239.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 176.242188 243.101562 L 176.242188 239.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 225.347656 243.101562 L 225.347656 239.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 274.453125 243.101562 L 274.453125 239.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 323.5625 243.101562 L 323.5625 239.613281 "/>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-3" x="43.160156" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-4" x="49.389063" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-5" x="53.11875" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-6" x="59.347656" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="64.947656" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-8" x="71.176562" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-9" x="77.405469" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="80.517187" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-11" x="86.117187" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-5" x="88.605469" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-12" x="94.834375" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-13" x="101.063281" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-14" x="107.292187" y="253.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-10" x="114.996094" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-11" x="120.596094" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="123.084375" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="129.313281" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-4" x="135.542187" y="253.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-10" x="160.054688" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-11" x="165.654687" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-5" x="168.142969" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-12" x="174.371875" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-13" x="180.600781" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-16" x="186.829687" y="253.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-4" x="216.011719" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="219.741406" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-17" x="225.970313" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-8" x="228.458594" y="253.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-14" x="233.675781" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="239.275781" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="244.875781" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-18" x="251.104687" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-18" x="254.216406" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="257.328125" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-4" x="263.557031" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="267.286719" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-13" x="273.515625" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-9" x="279.744531" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="282.85625" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-11" x="288.45625" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-5" x="290.944531" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-12" x="297.173438" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-13" x="303.402344" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-14" x="309.63125" y="253.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-14" x="303.332031" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-8" x="308.932031" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-5" x="315.160938" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-19" x="321.389844" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-20" x="329.478125" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="332.589844" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-11" x="338.81875" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-11" x="341.307031" y="253.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0" x="158.765625" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-1" x="168.875977" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-2" x="176.662109" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-3" x="184.448242" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-4" x="188.337891" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-1" x="196.124023" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-5" x="203.910156" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-6" x="208.572266" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-3" x="216.358398" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-7" x="220.248047" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-8" x="227.248047" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-1" x="235.03418" y="269.929688"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-0" x="17.015625" y="175.132812"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="168.132812"/>
|
||||
<use xlink:href="#glyph-2-2" x="17.015625" y="160.34668"/>
|
||||
<use xlink:href="#glyph-2-3" x="17.015625" y="152.560547"/>
|
||||
<use xlink:href="#glyph-2-4" x="17.015625" y="144.774414"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 13.121094 62.457031 L 388.46875 62.457031 L 388.46875 6.976562 L 13.121094 6.976562 Z M 13.121094 62.457031 "/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0" x="20.09375" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-1" x="30.204102" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-2" x="37.990234" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-3" x="45.776367" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-4" x="49.666016" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-1" x="57.452148" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-5" x="65.238281" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-6" x="69.900391" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-3" x="77.686523" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-7" x="81.576172" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-8" x="88.576172" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-1" x="96.362305" y="39.734375"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.121094 31.226562 L 128.402344 31.226562 L 128.402344 13.945312 L 111.121094 13.945312 Z M 111.121094 31.226562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 111.832031 30.519531 L 127.695312 30.519531 L 127.695312 14.65625 L 111.832031 14.65625 Z M 111.832031 30.519531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.121094 55.480469 L 128.402344 55.480469 L 128.402344 38.199219 L 111.121094 38.199219 Z M 111.121094 55.480469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 111.832031 54.773438 L 127.695312 54.773438 L 127.695312 38.910156 L 111.832031 38.910156 Z M 111.832031 54.773438 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 212.082031 31.226562 L 229.363281 31.226562 L 229.363281 13.945312 L 212.082031 13.945312 Z M 212.082031 31.226562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 212.792969 30.519531 L 228.65625 30.519531 L 228.65625 14.65625 L 212.792969 14.65625 Z M 212.792969 30.519531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 212.082031 55.480469 L 229.363281 55.480469 L 229.363281 38.199219 L 212.082031 38.199219 Z M 212.082031 55.480469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 212.792969 54.773438 L 228.65625 54.773438 L 228.65625 38.910156 L 212.792969 38.910156 Z M 212.792969 54.773438 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 275.683594 31.226562 L 292.964844 31.226562 L 292.964844 13.945312 L 275.683594 13.945312 Z M 275.683594 31.226562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 276.394531 30.519531 L 292.257812 30.519531 L 292.257812 14.65625 L 276.394531 14.65625 Z M 276.394531 30.519531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 275.683594 55.480469 L 292.964844 55.480469 L 292.964844 38.199219 L 275.683594 38.199219 Z M 275.683594 55.480469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 276.394531 54.773438 L 292.257812 54.773438 L 292.257812 38.910156 L 276.394531 38.910156 Z M 276.394531 54.773438 "/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-3" x="135.375" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-4" x="141.603906" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-5" x="145.333594" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-6" x="151.5625" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-7" x="157.1625" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-8" x="163.391406" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-9" x="169.620312" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-10" x="172.732031" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-11" x="178.332031" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-5" x="180.820312" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-12" x="187.049219" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-13" x="193.278125" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-14" x="199.507031" y="26.605469"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-10" x="135.375" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-11" x="140.975" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-7" x="143.463281" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-15" x="149.692187" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-4" x="155.921094" y="50.859375"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-10" x="236.335938" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-11" x="241.935937" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-5" x="244.424219" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-12" x="250.653125" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-13" x="256.882031" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-16" x="263.110938" y="26.605469"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-4" x="236.335938" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-15" x="240.065625" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-17" x="246.294531" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-8" x="248.782813" y="50.859375"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-14" x="299.9375" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-10" x="305.5375" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-15" x="311.1375" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-18" x="317.366406" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-18" x="320.478125" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-7" x="323.589844" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-4" x="329.81875" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-7" x="333.548438" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-13" x="339.777344" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-9" x="346.00625" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-10" x="349.117969" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-11" x="354.717969" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-5" x="357.20625" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-12" x="363.435156" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-13" x="369.664063" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-14" x="375.892969" y="26.605469"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-14" x="299.9375" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-8" x="305.5375" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-5" x="311.766406" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-19" x="317.995313" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-20" x="326.083594" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-15" x="329.195313" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-11" x="335.424219" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-11" x="337.9125" y="50.859375"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 57 KiB |
|
@ -0,0 +1,417 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="280" viewBox="0 0 360 280">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-6">
|
||||
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-7">
|
||||
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-8">
|
||||
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-9">
|
||||
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-0-10">
|
||||
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-11">
|
||||
</g>
|
||||
<g id="glyph-0-12">
|
||||
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-13">
|
||||
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-14">
|
||||
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-15">
|
||||
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-16">
|
||||
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-17">
|
||||
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-18">
|
||||
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-19">
|
||||
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-20">
|
||||
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
<path d="M 1.203125 -8.4375 C 1.222656 -8.945312 1.316406 -9.320312 1.484375 -9.5625 C 1.765625 -9.976562 2.316406 -10.1875 3.140625 -10.1875 C 3.210938 -10.1875 3.289062 -10.179688 3.375 -10.171875 C 3.457031 -10.171875 3.550781 -10.164062 3.65625 -10.15625 L 3.65625 -9.03125 C 3.53125 -9.039062 3.4375 -9.046875 3.375 -9.046875 C 3.320312 -9.054688 3.269531 -9.0625 3.21875 -9.0625 C 2.84375 -9.0625 2.617188 -8.960938 2.546875 -8.765625 C 2.472656 -8.578125 2.4375 -8.082031 2.4375 -7.28125 L 3.65625 -7.28125 L 3.65625 -6.3125 L 2.421875 -6.3125 L 2.421875 0 L 1.203125 0 L 1.203125 -6.3125 L 0.1875 -6.3125 L 0.1875 -7.28125 L 1.203125 -7.28125 Z M 1.203125 -8.4375 "/>
|
||||
</g>
|
||||
<g id="glyph-1-1">
|
||||
<path d="M 3.71875 -7.53125 C 4.550781 -7.53125 5.222656 -7.328125 5.734375 -6.921875 C 6.253906 -6.523438 6.566406 -5.835938 6.671875 -4.859375 L 5.46875 -4.859375 C 5.394531 -5.304688 5.226562 -5.679688 4.96875 -5.984375 C 4.71875 -6.285156 4.300781 -6.4375 3.71875 -6.4375 C 2.9375 -6.4375 2.378906 -6.050781 2.046875 -5.28125 C 1.828125 -4.789062 1.71875 -4.179688 1.71875 -3.453125 C 1.71875 -2.710938 1.867188 -2.09375 2.171875 -1.59375 C 2.484375 -1.09375 2.972656 -0.84375 3.640625 -0.84375 C 4.148438 -0.84375 4.554688 -1 4.859375 -1.3125 C 5.160156 -1.625 5.363281 -2.050781 5.46875 -2.59375 L 6.671875 -2.59375 C 6.535156 -1.625 6.191406 -0.910156 5.640625 -0.453125 C 5.097656 -0.00390625 4.398438 0.21875 3.546875 0.21875 C 2.585938 0.21875 1.820312 -0.128906 1.25 -0.828125 C 0.6875 -1.535156 0.40625 -2.410156 0.40625 -3.453125 C 0.40625 -4.742188 0.71875 -5.742188 1.34375 -6.453125 C 1.96875 -7.171875 2.757812 -7.53125 3.71875 -7.53125 Z M 3.53125 -7.5 Z M 3.53125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-2">
|
||||
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
|
||||
</g>
|
||||
<g id="glyph-1-3">
|
||||
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
|
||||
</g>
|
||||
<g id="glyph-1-4">
|
||||
<path d="M 0.90625 -7.28125 L 2.15625 -7.28125 L 2.15625 0 L 0.90625 0 Z M 0.90625 -10.046875 L 2.15625 -10.046875 L 2.15625 -8.640625 L 0.90625 -8.640625 Z M 0.90625 -10.046875 "/>
|
||||
</g>
|
||||
<g id="glyph-1-5">
|
||||
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-6">
|
||||
<path d="M 0.9375 -7.328125 L 2.109375 -7.328125 L 2.109375 -6.0625 C 2.203125 -6.300781 2.4375 -6.597656 2.8125 -6.953125 C 3.1875 -7.304688 3.617188 -7.484375 4.109375 -7.484375 C 4.128906 -7.484375 4.164062 -7.476562 4.21875 -7.46875 C 4.269531 -7.46875 4.363281 -7.460938 4.5 -7.453125 L 4.5 -6.15625 C 4.425781 -6.164062 4.359375 -6.171875 4.296875 -6.171875 C 4.234375 -6.179688 4.164062 -6.1875 4.09375 -6.1875 C 3.476562 -6.1875 3.003906 -5.984375 2.671875 -5.578125 C 2.335938 -5.179688 2.171875 -4.726562 2.171875 -4.21875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -7.328125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-7">
|
||||
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-8">
|
||||
<path d="M 1.703125 -3.5625 C 1.703125 -2.925781 1.789062 -2.394531 1.96875 -1.96875 C 2.28125 -1.207031 2.84375 -0.828125 3.65625 -0.828125 C 4.507812 -0.828125 5.097656 -1.226562 5.421875 -2.03125 C 5.597656 -2.46875 5.6875 -3.03125 5.6875 -3.71875 C 5.6875 -4.351562 5.585938 -4.882812 5.390625 -5.3125 C 5.054688 -6.039062 4.472656 -6.40625 3.640625 -6.40625 C 3.109375 -6.40625 2.648438 -6.171875 2.265625 -5.703125 C 1.890625 -5.242188 1.703125 -4.53125 1.703125 -3.5625 Z M 3.515625 -7.484375 C 4.117188 -7.484375 4.628906 -7.332031 5.046875 -7.03125 C 5.273438 -6.863281 5.492188 -6.617188 5.703125 -6.296875 L 5.703125 -7.328125 L 6.875 -7.328125 L 6.875 2.921875 L 5.640625 2.921875 L 5.640625 -0.84375 C 5.429688 -0.507812 5.144531 -0.242188 4.78125 -0.046875 C 4.414062 0.140625 3.960938 0.234375 3.421875 0.234375 C 2.640625 0.234375 1.941406 -0.0664062 1.328125 -0.671875 C 0.710938 -1.285156 0.40625 -2.21875 0.40625 -3.46875 C 0.40625 -4.644531 0.691406 -5.609375 1.265625 -6.359375 C 1.847656 -7.109375 2.597656 -7.484375 3.515625 -7.484375 Z M 3.515625 -7.484375 "/>
|
||||
</g>
|
||||
<g id="glyph-1-9">
|
||||
<path d="M 4.140625 -10.203125 C 3.421875 -8.816406 2.957031 -7.796875 2.75 -7.140625 C 2.425781 -6.140625 2.265625 -4.984375 2.265625 -3.671875 C 2.265625 -2.359375 2.445312 -1.15625 2.8125 -0.0625 C 3.039062 0.613281 3.488281 1.585938 4.15625 2.859375 L 3.34375 2.859375 C 2.675781 1.816406 2.257812 1.148438 2.09375 0.859375 C 1.9375 0.578125 1.765625 0.191406 1.578125 -0.296875 C 1.328125 -0.972656 1.148438 -1.695312 1.046875 -2.46875 C 0.992188 -2.863281 0.96875 -3.238281 0.96875 -3.59375 C 0.96875 -4.945312 1.179688 -6.148438 1.609375 -7.203125 C 1.878906 -7.867188 2.4375 -8.867188 3.28125 -10.203125 Z M 4.140625 -10.203125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-10">
|
||||
<path d="M 1.46875 -7.328125 L 2.875 -1.546875 L 4.3125 -7.328125 L 5.6875 -7.328125 L 7.125 -1.59375 L 8.625 -7.328125 L 9.84375 -7.328125 L 7.71875 0 L 6.453125 0 L 4.953125 -5.671875 L 3.515625 0 L 2.234375 0 L 0.125 -7.328125 Z M 1.46875 -7.328125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-11">
|
||||
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-12">
|
||||
<path d="M 0.90625 -10.078125 L 2.140625 -10.078125 L 2.140625 -6.328125 C 2.429688 -6.703125 2.691406 -6.960938 2.921875 -7.109375 C 3.316406 -7.367188 3.8125 -7.5 4.40625 -7.5 C 5.46875 -7.5 6.1875 -7.128906 6.5625 -6.390625 C 6.769531 -5.984375 6.875 -5.421875 6.875 -4.703125 L 6.875 0 L 5.609375 0 L 5.609375 -4.609375 C 5.609375 -5.148438 5.539062 -5.546875 5.40625 -5.796875 C 5.175781 -6.203125 4.753906 -6.40625 4.140625 -6.40625 C 3.628906 -6.40625 3.164062 -6.226562 2.75 -5.875 C 2.34375 -5.519531 2.140625 -4.859375 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -10.078125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-13">
|
||||
<path d="M 5.46875 -7.328125 L 6.84375 -7.328125 C 6.664062 -6.859375 6.28125 -5.785156 5.6875 -4.109375 C 5.238281 -2.847656 4.863281 -1.820312 4.5625 -1.03125 C 3.851562 0.832031 3.351562 1.96875 3.0625 2.375 C 2.769531 2.789062 2.265625 3 1.546875 3 C 1.378906 3 1.25 2.988281 1.15625 2.96875 C 1.0625 2.957031 0.945312 2.9375 0.8125 2.90625 L 0.8125 1.78125 C 1.019531 1.84375 1.171875 1.878906 1.265625 1.890625 C 1.367188 1.910156 1.457031 1.921875 1.53125 1.921875 C 1.75 1.921875 1.910156 1.878906 2.015625 1.796875 C 2.128906 1.722656 2.222656 1.632812 2.296875 1.53125 C 2.316406 1.488281 2.394531 1.296875 2.53125 0.953125 C 2.675781 0.617188 2.78125 0.375 2.84375 0.21875 L 0.140625 -7.328125 L 1.53125 -7.328125 L 3.5 -1.359375 Z M 3.5 -7.5 Z M 3.5 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-14">
|
||||
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-15">
|
||||
<path d="M 0.484375 2.859375 C 1.210938 1.441406 1.679688 0.410156 1.890625 -0.234375 C 2.203125 -1.210938 2.359375 -2.359375 2.359375 -3.671875 C 2.359375 -4.992188 2.175781 -6.203125 1.8125 -7.296875 C 1.582031 -7.972656 1.132812 -8.941406 0.46875 -10.203125 L 1.296875 -10.203125 C 1.992188 -9.085938 2.414062 -8.394531 2.5625 -8.125 C 2.71875 -7.863281 2.878906 -7.503906 3.046875 -7.046875 C 3.265625 -6.472656 3.421875 -5.910156 3.515625 -5.359375 C 3.609375 -4.804688 3.65625 -4.269531 3.65625 -3.75 C 3.65625 -2.40625 3.441406 -1.203125 3.015625 -0.140625 C 2.742188 0.535156 2.1875 1.535156 1.34375 2.859375 Z M 0.484375 2.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-2-0">
|
||||
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-1">
|
||||
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2">
|
||||
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-3">
|
||||
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
|
||||
</g>
|
||||
<g id="glyph-2-4">
|
||||
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
|
||||
</g>
|
||||
</g>
|
||||
<clipPath id="clip-0">
|
||||
<path clip-rule="nonzero" d="M 48.5625 76.402344 L 353.027344 76.402344 L 353.027344 239.613281 L 48.5625 239.613281 Z M 48.5625 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-1">
|
||||
<path clip-rule="nonzero" d="M 48.5625 231 L 353.027344 231 L 353.027344 233 L 48.5625 233 Z M 48.5625 231 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-2">
|
||||
<path clip-rule="nonzero" d="M 48.5625 179 L 353.027344 179 L 353.027344 181 L 48.5625 181 Z M 48.5625 179 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-3">
|
||||
<path clip-rule="nonzero" d="M 48.5625 126 L 353.027344 126 L 353.027344 128 L 48.5625 128 Z M 48.5625 126 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-4">
|
||||
<path clip-rule="nonzero" d="M 77 76.402344 L 79 76.402344 L 79 239.613281 L 77 239.613281 Z M 77 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-5">
|
||||
<path clip-rule="nonzero" d="M 126 76.402344 L 128 76.402344 L 128 239.613281 L 126 239.613281 Z M 126 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-6">
|
||||
<path clip-rule="nonzero" d="M 175 76.402344 L 177 76.402344 L 177 239.613281 L 175 239.613281 Z M 175 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-7">
|
||||
<path clip-rule="nonzero" d="M 225 76.402344 L 226 76.402344 L 226 239.613281 L 225 239.613281 Z M 225 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-8">
|
||||
<path clip-rule="nonzero" d="M 274 76.402344 L 275 76.402344 L 275 239.613281 L 274 239.613281 Z M 274 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-9">
|
||||
<path clip-rule="nonzero" d="M 323 76.402344 L 324 76.402344 L 324 239.613281 L 323 239.613281 Z M 323 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-10">
|
||||
<path clip-rule="nonzero" d="M 48.5625 76.402344 L 353.027344 76.402344 L 353.027344 239.613281 L 48.5625 239.613281 Z M 48.5625 76.402344 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<rect x="-36" y="-28" width="432" height="336" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<rect x="-36" y="-28" width="432" height="336" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 280 L 360 280 L 360 0 L 0 0 Z M 0 280 "/>
|
||||
<g clip-path="url(#clip-0)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 48.5625 239.613281 L 353.027344 239.613281 L 353.027344 76.402344 L 48.5625 76.402344 Z M 48.5625 239.613281 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-1)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 232.195312 L 353.027344 232.195312 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-2)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 179.671875 L 353.027344 179.671875 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-3)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 127.152344 L 353.027344 127.152344 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-4)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 78.027344 239.613281 L 78.027344 76.402344 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-5)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 127.132812 239.613281 L 127.132812 76.402344 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-6)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 176.242188 239.613281 L 176.242188 76.402344 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-7)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 225.347656 239.613281 L 225.347656 76.402344 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-8)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 274.453125 239.613281 L 274.453125 76.402344 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-9)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 323.5625 239.613281 L 323.5625 76.402344 "/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 53.472656 232.195312 L 102.578125 232.195312 L 102.578125 83.824219 L 53.472656 83.824219 Z M 53.472656 232.195312 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 102.582031 232.195312 L 151.6875 232.195312 L 151.6875 150.523438 L 102.582031 150.523438 Z M 102.582031 232.195312 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 151.6875 232.195312 L 200.792969 232.195312 L 200.792969 162.078125 L 151.6875 162.078125 Z M 151.6875 232.195312 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 200.792969 232.195312 L 249.898438 232.195312 L 249.898438 190.964844 L 200.792969 190.964844 Z M 200.792969 232.195312 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 249.902344 232.195312 L 299.007812 232.195312 L 299.007812 211.449219 L 249.902344 211.449219 Z M 249.902344 232.195312 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 299.007812 232.195312 L 348.113281 232.195312 L 348.113281 231.40625 L 299.007812 231.40625 Z M 299.007812 232.195312 "/>
|
||||
<g clip-path="url(#clip-10)">
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 239.613281 L 353.027344 239.613281 L 353.027344 76.402344 L 48.5625 76.402344 Z M 48.5625 239.613281 "/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="36.054688" y="236.210938"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-1" x="23.597656" y="183.691406"/>
|
||||
<use xlink:href="#glyph-0-0" x="29.826563" y="183.691406"/>
|
||||
<use xlink:href="#glyph-0-0" x="36.055469" y="183.691406"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-2" x="23.597656" y="131.167969"/>
|
||||
<use xlink:href="#glyph-0-0" x="29.826563" y="131.167969"/>
|
||||
<use xlink:href="#glyph-0-0" x="36.055469" y="131.167969"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 232.195312 L 48.5625 232.195312 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 179.671875 L 48.5625 179.671875 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 127.152344 L 48.5625 127.152344 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 78.027344 243.101562 L 78.027344 239.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 127.132812 243.101562 L 127.132812 239.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 176.242188 243.101562 L 176.242188 239.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 225.347656 243.101562 L 225.347656 239.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 274.453125 243.101562 L 274.453125 239.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 323.5625 243.101562 L 323.5625 239.613281 "/>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-3" x="65.890625" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-4" x="71.490625" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-5" x="73.978906" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-6" x="80.207812" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="86.436719" y="253.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-8" x="86.355469" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-3" x="91.955469" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-6" x="97.555469" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-9" x="103.784375" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-9" x="106.896094" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-5" x="110.007812" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="116.236719" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-5" x="119.966406" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="126.195312" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-11" x="132.424219" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-3" x="135.535937" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-4" x="141.135937" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-12" x="143.624219" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-13" x="149.853125" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="156.082031" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-8" x="162.310937" y="253.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-14" x="141.375" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="147.603906" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-12" x="151.333594" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="157.5625" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-5" x="163.1625" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-16" x="169.391406" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-11" x="175.620312" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-3" x="178.732031" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-4" x="184.332031" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-12" x="186.820312" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-13" x="193.049219" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="199.278125" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-8" x="205.507031" y="253.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-7" x="216.011719" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-6" x="219.741406" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-17" x="225.970313" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-16" x="228.458594" y="253.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-3" x="258.265625" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-4" x="263.865625" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-12" x="266.353906" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-13" x="272.582813" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="278.811719" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-18" x="285.040625" y="253.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-8" x="303.332031" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-16" x="308.932031" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-12" x="315.160938" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-19" x="321.389844" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-20" x="329.478125" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-6" x="332.589844" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-4" x="338.81875" y="253.921875"/>
|
||||
<use xlink:href="#glyph-0-4" x="341.307031" y="253.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0" x="125.308594" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-1" x="129.198242" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-2" x="136.198242" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-3" x="140.087891" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-4" x="147.874023" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-5" x="150.984375" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-0" x="158.770508" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-6" x="162.660156" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-7" x="167.322266" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-8" x="175.108398" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-9" x="182.894531" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-10" x="187.556641" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-7" x="197.666992" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-11" x="205.453125" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-2" x="213.239258" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-12" x="217.128906" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-7" x="224.915039" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-6" x="232.701172" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-3" x="237.363281" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-2" x="245.149414" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-13" x="249.039062" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-14" x="256.039062" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-7" x="263.825195" y="269.929688"/>
|
||||
<use xlink:href="#glyph-1-15" x="271.611328" y="269.929688"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-0" x="17.015625" y="175.132812"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="168.132812"/>
|
||||
<use xlink:href="#glyph-2-2" x="17.015625" y="160.34668"/>
|
||||
<use xlink:href="#glyph-2-3" x="17.015625" y="152.560547"/>
|
||||
<use xlink:href="#glyph-2-4" x="17.015625" y="144.774414"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 13.121094 62.457031 L 388.46875 62.457031 L 388.46875 6.976562 L 13.121094 6.976562 Z M 13.121094 62.457031 "/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-10" x="20.09375" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-7" x="30.204102" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-11" x="37.990234" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-2" x="45.776367" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-12" x="49.666016" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-7" x="57.452148" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-6" x="65.238281" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-3" x="69.900391" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-2" x="77.686523" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-13" x="81.576172" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-14" x="88.576172" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-7" x="96.362305" y="39.734375"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.121094 31.226562 L 128.402344 31.226562 L 128.402344 13.945312 L 111.121094 13.945312 Z M 111.121094 31.226562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 111.832031 30.519531 L 127.695312 30.519531 L 127.695312 14.65625 L 111.832031 14.65625 Z M 111.832031 30.519531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.121094 55.480469 L 128.402344 55.480469 L 128.402344 38.199219 L 111.121094 38.199219 Z M 111.121094 55.480469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 111.832031 54.773438 L 127.695312 54.773438 L 127.695312 38.910156 L 111.832031 38.910156 Z M 111.832031 54.773438 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 212.082031 31.226562 L 229.363281 31.226562 L 229.363281 13.945312 L 212.082031 13.945312 Z M 212.082031 31.226562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 212.792969 30.519531 L 228.65625 30.519531 L 228.65625 14.65625 L 212.792969 14.65625 Z M 212.792969 30.519531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 212.082031 55.480469 L 229.363281 55.480469 L 229.363281 38.199219 L 212.082031 38.199219 Z M 212.082031 55.480469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 212.792969 54.773438 L 228.65625 54.773438 L 228.65625 38.910156 L 212.792969 38.910156 Z M 212.792969 54.773438 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 275.683594 31.226562 L 292.964844 31.226562 L 292.964844 13.945312 L 275.683594 13.945312 Z M 275.683594 31.226562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 276.394531 30.519531 L 292.257812 30.519531 L 292.257812 14.65625 L 276.394531 14.65625 Z M 276.394531 30.519531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 275.683594 55.480469 L 292.964844 55.480469 L 292.964844 38.199219 L 275.683594 38.199219 Z M 275.683594 55.480469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 276.394531 54.773438 L 292.257812 54.773438 L 292.257812 38.910156 L 276.394531 38.910156 Z M 276.394531 54.773438 "/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-14" x="135.375" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-7" x="141.603906" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-12" x="145.333594" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-15" x="151.5625" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-5" x="157.1625" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-16" x="163.391406" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-11" x="169.620312" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-3" x="172.732031" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-4" x="178.332031" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-12" x="180.820312" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-13" x="187.049219" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-10" x="193.278125" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-8" x="199.507031" y="26.605469"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-3" x="135.375" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-4" x="140.975" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-5" x="143.463281" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-6" x="149.692187" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-7" x="155.921094" y="50.859375"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-3" x="236.335938" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-4" x="241.935937" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-12" x="244.424219" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-13" x="250.653125" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-10" x="256.882031" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-18" x="263.110938" y="26.605469"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-7" x="236.335938" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-6" x="240.065625" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-17" x="246.294531" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-16" x="248.782813" y="50.859375"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-8" x="299.9375" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-3" x="305.5375" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-6" x="311.1375" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-9" x="317.366406" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-9" x="320.478125" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-5" x="323.589844" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-7" x="329.81875" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-5" x="333.548438" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-10" x="339.777344" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-11" x="346.00625" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-3" x="349.117969" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-4" x="354.717969" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-12" x="357.20625" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-13" x="363.435156" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-10" x="369.664063" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-8" x="375.892969" y="26.605469"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-8" x="299.9375" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-16" x="305.5375" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-12" x="311.766406" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-19" x="317.995313" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-20" x="326.083594" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-6" x="329.195313" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-4" x="335.424219" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-4" x="337.9125" y="50.859375"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 46 KiB |
|
@ -0,0 +1,319 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="295" viewBox="0 0 360 295">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 1.390625 -2 C 1.453125 -1.4375 1.710938 -1.046875 2.171875 -0.828125 C 2.398438 -0.722656 2.664062 -0.671875 2.96875 -0.671875 C 3.550781 -0.671875 3.984375 -0.851562 4.265625 -1.21875 C 4.546875 -1.59375 4.6875 -2.007812 4.6875 -2.46875 C 4.6875 -3.007812 4.519531 -3.425781 4.1875 -3.71875 C 3.851562 -4.019531 3.457031 -4.171875 3 -4.171875 C 2.65625 -4.171875 2.359375 -4.101562 2.109375 -3.96875 C 1.867188 -3.84375 1.664062 -3.664062 1.5 -3.4375 L 0.640625 -3.484375 L 1.234375 -7.703125 L 5.3125 -7.703125 L 5.3125 -6.75 L 1.984375 -6.75 L 1.640625 -4.578125 C 1.828125 -4.710938 2.003906 -4.816406 2.171875 -4.890625 C 2.460938 -5.003906 2.796875 -5.0625 3.171875 -5.0625 C 3.890625 -5.0625 4.5 -4.828125 5 -4.359375 C 5.5 -3.898438 5.75 -3.316406 5.75 -2.609375 C 5.75 -1.867188 5.519531 -1.210938 5.0625 -0.640625 C 4.601562 -0.078125 3.875 0.203125 2.875 0.203125 C 2.238281 0.203125 1.675781 0.0234375 1.1875 -0.328125 C 0.695312 -0.691406 0.421875 -1.25 0.359375 -2 Z M 1.390625 -2 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 0.953125 -1.1875 L 2.09375 -1.1875 L 2.09375 0 L 0.953125 0 Z M 0.953125 -1.1875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 5.859375 -7.703125 L 5.859375 -6.84375 C 5.609375 -6.601562 5.273438 -6.175781 4.859375 -5.5625 C 4.441406 -4.957031 4.070312 -4.304688 3.75 -3.609375 C 3.425781 -2.929688 3.1875 -2.3125 3.03125 -1.75 C 2.914062 -1.382812 2.773438 -0.800781 2.609375 0 L 1.53125 0 C 1.769531 -1.5 2.316406 -2.988281 3.171875 -4.46875 C 3.671875 -5.332031 4.195312 -6.082031 4.75 -6.71875 L 0.40625 -6.71875 L 0.40625 -7.703125 Z M 5.859375 -7.703125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-6">
|
||||
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-7">
|
||||
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-8">
|
||||
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-9">
|
||||
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-10">
|
||||
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-11">
|
||||
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-12">
|
||||
</g>
|
||||
<g id="glyph-0-13">
|
||||
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-14">
|
||||
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-15">
|
||||
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-16">
|
||||
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-17">
|
||||
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-18">
|
||||
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-19">
|
||||
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-20">
|
||||
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-21">
|
||||
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-0-22">
|
||||
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-23">
|
||||
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
<path d="M 0.203125 -7.328125 L 1.796875 -7.328125 L 3.484375 -4.75 L 5.1875 -7.328125 L 6.671875 -7.28125 L 4.21875 -3.75 L 6.78125 0 L 5.21875 0 L 3.390625 -2.75 L 1.640625 0 L 0.078125 0 L 2.65625 -3.75 Z M 0.203125 -7.328125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-1">
|
||||
<path d="M 1.46875 -7.328125 L 2.875 -1.546875 L 4.3125 -7.328125 L 5.6875 -7.328125 L 7.125 -1.59375 L 8.625 -7.328125 L 9.84375 -7.328125 L 7.71875 0 L 6.453125 0 L 4.953125 -5.671875 L 3.515625 0 L 2.234375 0 L 0.125 -7.328125 Z M 1.46875 -7.328125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-2">
|
||||
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-3">
|
||||
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-4">
|
||||
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
|
||||
</g>
|
||||
<g id="glyph-1-5">
|
||||
<path d="M 0.90625 -10.078125 L 2.140625 -10.078125 L 2.140625 -6.328125 C 2.429688 -6.703125 2.691406 -6.960938 2.921875 -7.109375 C 3.316406 -7.367188 3.8125 -7.5 4.40625 -7.5 C 5.46875 -7.5 6.1875 -7.128906 6.5625 -6.390625 C 6.769531 -5.984375 6.875 -5.421875 6.875 -4.703125 L 6.875 0 L 5.609375 0 L 5.609375 -4.609375 C 5.609375 -5.148438 5.539062 -5.546875 5.40625 -5.796875 C 5.175781 -6.203125 4.753906 -6.40625 4.140625 -6.40625 C 3.628906 -6.40625 3.164062 -6.226562 2.75 -5.875 C 2.34375 -5.519531 2.140625 -4.859375 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -10.078125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-6">
|
||||
<path d="M 0.9375 -7.328125 L 2.109375 -7.328125 L 2.109375 -6.0625 C 2.203125 -6.300781 2.4375 -6.597656 2.8125 -6.953125 C 3.1875 -7.304688 3.617188 -7.484375 4.109375 -7.484375 C 4.128906 -7.484375 4.164062 -7.476562 4.21875 -7.46875 C 4.269531 -7.46875 4.363281 -7.460938 4.5 -7.453125 L 4.5 -6.15625 C 4.425781 -6.164062 4.359375 -6.171875 4.296875 -6.171875 C 4.234375 -6.179688 4.164062 -6.1875 4.09375 -6.1875 C 3.476562 -6.1875 3.003906 -5.984375 2.671875 -5.578125 C 2.335938 -5.179688 2.171875 -4.726562 2.171875 -4.21875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -7.328125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-7">
|
||||
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
|
||||
</g>
|
||||
<g id="glyph-1-8">
|
||||
<path d="M 5.46875 -7.328125 L 6.84375 -7.328125 C 6.664062 -6.859375 6.28125 -5.785156 5.6875 -4.109375 C 5.238281 -2.847656 4.863281 -1.820312 4.5625 -1.03125 C 3.851562 0.832031 3.351562 1.96875 3.0625 2.375 C 2.769531 2.789062 2.265625 3 1.546875 3 C 1.378906 3 1.25 2.988281 1.15625 2.96875 C 1.0625 2.957031 0.945312 2.9375 0.8125 2.90625 L 0.8125 1.78125 C 1.019531 1.84375 1.171875 1.878906 1.265625 1.890625 C 1.367188 1.910156 1.457031 1.921875 1.53125 1.921875 C 1.75 1.921875 1.910156 1.878906 2.015625 1.796875 C 2.128906 1.722656 2.222656 1.632812 2.296875 1.53125 C 2.316406 1.488281 2.394531 1.296875 2.53125 0.953125 C 2.675781 0.617188 2.78125 0.375 2.84375 0.21875 L 0.140625 -7.328125 L 1.53125 -7.328125 L 3.5 -1.359375 Z M 3.5 -7.5 Z M 3.5 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-9">
|
||||
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-0">
|
||||
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-1">
|
||||
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2">
|
||||
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-3">
|
||||
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
|
||||
</g>
|
||||
<g id="glyph-2-4">
|
||||
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
|
||||
</g>
|
||||
</g>
|
||||
<clipPath id="clip-0">
|
||||
<path clip-rule="nonzero" d="M 54.792969 76.402344 L 353.027344 76.402344 L 353.027344 254.613281 L 54.792969 254.613281 Z M 54.792969 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-1">
|
||||
<path clip-rule="nonzero" d="M 54.792969 246 L 353.027344 246 L 353.027344 247 L 54.792969 247 Z M 54.792969 246 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-2">
|
||||
<path clip-rule="nonzero" d="M 54.792969 187 L 353.027344 187 L 353.027344 189 L 54.792969 189 Z M 54.792969 187 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-3">
|
||||
<path clip-rule="nonzero" d="M 54.792969 128 L 353.027344 128 L 353.027344 130 L 54.792969 130 Z M 54.792969 128 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-4">
|
||||
<path clip-rule="nonzero" d="M 128 76.402344 L 129 76.402344 L 129 254.613281 L 128 254.613281 Z M 128 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-5">
|
||||
<path clip-rule="nonzero" d="M 203 76.402344 L 205 76.402344 L 205 254.613281 L 203 254.613281 Z M 203 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-6">
|
||||
<path clip-rule="nonzero" d="M 278 76.402344 L 280 76.402344 L 280 254.613281 L 278 254.613281 Z M 278 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-7">
|
||||
<path clip-rule="nonzero" d="M 54.792969 76.402344 L 353.027344 76.402344 L 353.027344 254.613281 L 54.792969 254.613281 Z M 54.792969 76.402344 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 295 L 360 295 L 360 0 L 0 0 Z M 0 295 "/>
|
||||
<g clip-path="url(#clip-0)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 54.792969 254.613281 L 353.027344 254.613281 L 353.027344 76.402344 L 54.792969 76.402344 Z M 54.792969 254.613281 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-1)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.792969 246.511719 L 353.027344 246.511719 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-2)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.792969 187.898438 L 353.027344 187.898438 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-3)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.792969 129.285156 L 353.027344 129.285156 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-4)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 128.597656 254.613281 L 128.597656 76.402344 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-5)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 203.910156 254.613281 L 203.910156 76.402344 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-6)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 279.21875 254.613281 L 279.21875 76.402344 "/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 68.347656 115.804688 L 339.46875 115.804688 L 339.46875 84.503906 L 68.347656 84.503906 Z M 68.347656 115.804688 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 68.347656 182.039062 L 339.46875 182.039062 L 339.46875 115.804688 L 68.347656 115.804688 Z M 68.347656 182.039062 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 68.347656 191.296875 L 339.46875 191.296875 L 339.46875 182.035156 L 68.347656 182.035156 Z M 68.347656 191.296875 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 68.347656 209.703125 L 339.46875 209.703125 L 339.46875 191.296875 L 68.347656 191.296875 Z M 68.347656 209.703125 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 68.347656 246.160156 L 339.46875 246.160156 L 339.46875 209.703125 L 68.347656 209.703125 Z M 68.347656 246.160156 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 68.347656 246.511719 L 339.46875 246.511719 L 339.46875 246.160156 L 68.347656 246.160156 Z M 68.347656 246.511719 "/>
|
||||
<g clip-path="url(#clip-7)">
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.792969 254.613281 L 353.027344 254.613281 L 353.027344 76.402344 L 54.792969 76.402344 Z M 54.792969 254.613281 "/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="42.285156" y="250.53125"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-1" x="29.828125" y="191.914062"/>
|
||||
<use xlink:href="#glyph-0-0" x="36.057031" y="191.914062"/>
|
||||
<use xlink:href="#glyph-0-0" x="42.285938" y="191.914062"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-2" x="23.601562" y="133.300781"/>
|
||||
<use xlink:href="#glyph-0-0" x="29.830469" y="133.300781"/>
|
||||
<use xlink:href="#glyph-0-0" x="36.059375" y="133.300781"/>
|
||||
<use xlink:href="#glyph-0-0" x="42.288281" y="133.300781"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 51.304688 246.511719 L 54.792969 246.511719 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 51.304688 187.898438 L 54.792969 187.898438 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 51.304688 129.285156 L 54.792969 129.285156 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 128.597656 258.101562 L 128.597656 254.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 203.910156 258.101562 L 203.910156 254.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 279.21875 258.101562 L 279.21875 254.613281 "/>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="117.699219" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-3" x="123.928125" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-4" x="127.039844" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-1" x="133.26875" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-2" x="193.011719" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-3" x="199.240625" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-0" x="202.352344" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-0" x="208.58125" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-2" x="268.320312" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-3" x="274.549219" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-5" x="277.660938" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-1" x="283.889844" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0" x="200.410156" y="284.929688"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-0" x="17.015625" y="182.632812"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="175.632812"/>
|
||||
<use xlink:href="#glyph-2-2" x="17.015625" y="167.84668"/>
|
||||
<use xlink:href="#glyph-2-3" x="17.015625" y="160.060547"/>
|
||||
<use xlink:href="#glyph-2-4" x="17.015625" y="152.274414"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 16.234375 62.457031 L 391.582031 62.457031 L 391.582031 6.976562 L 16.234375 6.976562 Z M 16.234375 62.457031 "/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-1" x="23.207031" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-2" x="33.317383" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-3" x="41.103516" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-4" x="48.889648" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-5" x="52.779297" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-2" x="60.56543" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-6" x="68.351562" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-7" x="73.013672" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-4" x="80.799805" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-8" x="84.689453" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-9" x="91.689453" y="39.734375"/>
|
||||
<use xlink:href="#glyph-1-2" x="99.475586" y="39.734375"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 114.238281 31.226562 L 131.519531 31.226562 L 131.519531 13.945312 L 114.238281 13.945312 Z M 114.238281 31.226562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 114.945312 30.519531 L 130.808594 30.519531 L 130.808594 14.65625 L 114.945312 14.65625 Z M 114.945312 30.519531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 114.238281 55.480469 L 131.519531 55.480469 L 131.519531 38.199219 L 114.238281 38.199219 Z M 114.238281 55.480469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 114.945312 54.773438 L 130.808594 54.773438 L 130.808594 38.910156 L 114.945312 38.910156 Z M 114.945312 54.773438 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 215.195312 31.226562 L 232.476562 31.226562 L 232.476562 13.945312 L 215.195312 13.945312 Z M 215.195312 31.226562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 215.90625 30.519531 L 231.769531 30.519531 L 231.769531 14.65625 L 215.90625 14.65625 Z M 215.90625 30.519531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 215.195312 55.480469 L 232.476562 55.480469 L 232.476562 38.199219 L 215.195312 38.199219 Z M 215.195312 55.480469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 215.90625 54.773438 L 231.769531 54.773438 L 231.769531 38.910156 L 215.90625 38.910156 Z M 215.90625 54.773438 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 278.800781 31.226562 L 296.082031 31.226562 L 296.082031 13.945312 L 278.800781 13.945312 Z M 278.800781 31.226562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 279.507812 30.519531 L 295.371094 30.519531 L 295.371094 14.65625 L 279.507812 14.65625 Z M 279.507812 30.519531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 278.800781 55.480469 L 296.082031 55.480469 L 296.082031 38.199219 L 278.800781 38.199219 Z M 278.800781 55.480469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 279.507812 54.773438 L 295.371094 54.773438 L 295.371094 38.910156 L 279.507812 38.910156 Z M 279.507812 54.773438 "/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-6" x="138.492188" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-7" x="144.721094" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-8" x="148.450781" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-9" x="154.679688" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-10" x="160.279687" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-11" x="166.508594" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-12" x="172.7375" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-13" x="175.849219" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-14" x="181.449219" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-8" x="183.9375" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-15" x="190.166406" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-16" x="196.395312" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-17" x="202.624219" y="26.605469"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-13" x="138.492188" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-14" x="144.092187" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-10" x="146.580469" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-18" x="152.809375" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-7" x="159.038281" y="50.859375"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-13" x="239.449219" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-14" x="245.049219" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-8" x="247.5375" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-15" x="253.766406" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-16" x="259.995313" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-19" x="266.224219" y="26.605469"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-7" x="239.449219" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-18" x="243.178906" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-20" x="249.407813" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-11" x="251.896094" y="50.859375"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-17" x="303.054688" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-13" x="308.654688" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-18" x="314.254688" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-21" x="320.483594" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-21" x="323.595313" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-10" x="326.707031" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-7" x="332.935938" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-10" x="336.665625" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-16" x="342.894531" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-12" x="349.123438" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-13" x="352.235156" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-14" x="357.835156" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-8" x="360.323438" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-15" x="366.552344" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-16" x="372.78125" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-17" x="379.010156" y="26.605469"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-17" x="303.054688" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-11" x="308.654688" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-8" x="314.883594" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-22" x="321.1125" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-23" x="329.200781" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-18" x="332.3125" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-14" x="338.541406" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-14" x="341.029688" y="50.859375"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 41 KiB |
|
@ -0,0 +1,278 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="259" viewBox="0 0 360 259">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 1.390625 -2 C 1.453125 -1.4375 1.710938 -1.046875 2.171875 -0.828125 C 2.398438 -0.722656 2.664062 -0.671875 2.96875 -0.671875 C 3.550781 -0.671875 3.984375 -0.851562 4.265625 -1.21875 C 4.546875 -1.59375 4.6875 -2.007812 4.6875 -2.46875 C 4.6875 -3.007812 4.519531 -3.425781 4.1875 -3.71875 C 3.851562 -4.019531 3.457031 -4.171875 3 -4.171875 C 2.65625 -4.171875 2.359375 -4.101562 2.109375 -3.96875 C 1.867188 -3.84375 1.664062 -3.664062 1.5 -3.4375 L 0.640625 -3.484375 L 1.234375 -7.703125 L 5.3125 -7.703125 L 5.3125 -6.75 L 1.984375 -6.75 L 1.640625 -4.578125 C 1.828125 -4.710938 2.003906 -4.816406 2.171875 -4.890625 C 2.460938 -5.003906 2.796875 -5.0625 3.171875 -5.0625 C 3.890625 -5.0625 4.5 -4.828125 5 -4.359375 C 5.5 -3.898438 5.75 -3.316406 5.75 -2.609375 C 5.75 -1.867188 5.519531 -1.210938 5.0625 -0.640625 C 4.601562 -0.078125 3.875 0.203125 2.875 0.203125 C 2.238281 0.203125 1.675781 0.0234375 1.1875 -0.328125 C 0.695312 -0.691406 0.421875 -1.25 0.359375 -2 Z M 1.390625 -2 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 0.953125 -1.1875 L 2.09375 -1.1875 L 2.09375 0 L 0.953125 0 Z M 0.953125 -1.1875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 5.859375 -7.703125 L 5.859375 -6.84375 C 5.609375 -6.601562 5.273438 -6.175781 4.859375 -5.5625 C 4.441406 -4.957031 4.070312 -4.304688 3.75 -3.609375 C 3.425781 -2.929688 3.1875 -2.3125 3.03125 -1.75 C 2.914062 -1.382812 2.773438 -0.800781 2.609375 0 L 1.53125 0 C 1.769531 -1.5 2.316406 -2.988281 3.171875 -4.46875 C 3.671875 -5.332031 4.195312 -6.082031 4.75 -6.71875 L 0.40625 -6.71875 L 0.40625 -7.703125 Z M 5.859375 -7.703125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-6">
|
||||
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-7">
|
||||
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-8">
|
||||
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-9">
|
||||
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-10">
|
||||
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
|
||||
</g>
|
||||
<g id="glyph-0-11">
|
||||
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-12">
|
||||
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-13">
|
||||
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-14">
|
||||
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-15">
|
||||
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-16">
|
||||
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-17">
|
||||
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-18">
|
||||
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-19">
|
||||
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-20">
|
||||
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-21">
|
||||
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-22">
|
||||
</g>
|
||||
<g id="glyph-0-23">
|
||||
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
<path d="M 0.203125 -7.328125 L 1.796875 -7.328125 L 3.484375 -4.75 L 5.1875 -7.328125 L 6.671875 -7.28125 L 4.21875 -3.75 L 6.78125 0 L 5.21875 0 L 3.390625 -2.75 L 1.640625 0 L 0.078125 0 L 2.65625 -3.75 Z M 0.203125 -7.328125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-0">
|
||||
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-1">
|
||||
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2">
|
||||
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-3">
|
||||
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
|
||||
</g>
|
||||
<g id="glyph-2-4">
|
||||
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
|
||||
</g>
|
||||
</g>
|
||||
<clipPath id="clip-0">
|
||||
<path clip-rule="nonzero" d="M 54.792969 76.402344 L 353.027344 76.402344 L 353.027344 218.613281 L 54.792969 218.613281 Z M 54.792969 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-1">
|
||||
<path clip-rule="nonzero" d="M 54.792969 211 L 353.027344 211 L 353.027344 213 L 54.792969 213 Z M 54.792969 211 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-2">
|
||||
<path clip-rule="nonzero" d="M 54.792969 165 L 353.027344 165 L 353.027344 166 L 54.792969 166 Z M 54.792969 165 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-3">
|
||||
<path clip-rule="nonzero" d="M 54.792969 118 L 353.027344 118 L 353.027344 119 L 54.792969 119 Z M 54.792969 118 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-4">
|
||||
<path clip-rule="nonzero" d="M 128 76.402344 L 129 76.402344 L 129 218.613281 L 128 218.613281 Z M 128 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-5">
|
||||
<path clip-rule="nonzero" d="M 203 76.402344 L 205 76.402344 L 205 218.613281 L 203 218.613281 Z M 203 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-6">
|
||||
<path clip-rule="nonzero" d="M 278 76.402344 L 280 76.402344 L 280 218.613281 L 278 218.613281 Z M 278 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-7">
|
||||
<path clip-rule="nonzero" d="M 54.792969 76.402344 L 353.027344 76.402344 L 353.027344 218.613281 L 54.792969 218.613281 Z M 54.792969 76.402344 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<rect x="-36" y="-25.9" width="432" height="310.8" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<rect x="-36" y="-25.9" width="432" height="310.8" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 259 L 360 259 L 360 0 L 0 0 Z M 0 259 "/>
|
||||
<g clip-path="url(#clip-0)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 54.792969 218.613281 L 353.027344 218.613281 L 353.027344 76.402344 L 54.792969 76.402344 Z M 54.792969 218.613281 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-1)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.792969 212.148438 L 353.027344 212.148438 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-2)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.792969 165.375 L 353.027344 165.375 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-3)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.792969 118.601562 L 353.027344 118.601562 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-4)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 128.597656 218.613281 L 128.597656 76.402344 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-5)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 203.910156 218.613281 L 203.910156 76.402344 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-6)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 279.21875 218.613281 L 279.21875 76.402344 "/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 68.347656 83.148438 L 339.46875 83.148438 L 339.46875 82.867188 L 68.347656 82.867188 Z M 68.347656 83.148438 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 68.347656 90.539062 L 339.46875 90.539062 L 339.46875 83.148438 L 68.347656 83.148438 Z M 68.347656 90.539062 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 68.347656 105.226562 L 339.46875 105.226562 L 339.46875 90.539062 L 68.347656 90.539062 Z M 68.347656 105.226562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 68.347656 130.203125 L 339.46875 130.203125 L 339.46875 105.226562 L 68.347656 105.226562 Z M 68.347656 130.203125 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 68.347656 159.296875 L 339.46875 159.296875 L 339.46875 130.203125 L 68.347656 130.203125 Z M 68.347656 159.296875 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 68.347656 212.148438 L 339.46875 212.148438 L 339.46875 159.292969 L 68.347656 159.292969 Z M 68.347656 212.148438 "/>
|
||||
<g clip-path="url(#clip-7)">
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.792969 218.613281 L 353.027344 218.613281 L 353.027344 76.402344 L 54.792969 76.402344 Z M 54.792969 218.613281 "/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="42.285156" y="216.164062"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-1" x="29.828125" y="169.390625"/>
|
||||
<use xlink:href="#glyph-0-0" x="36.057031" y="169.390625"/>
|
||||
<use xlink:href="#glyph-0-0" x="42.285938" y="169.390625"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-2" x="23.601562" y="122.617188"/>
|
||||
<use xlink:href="#glyph-0-0" x="29.830469" y="122.617188"/>
|
||||
<use xlink:href="#glyph-0-0" x="36.059375" y="122.617188"/>
|
||||
<use xlink:href="#glyph-0-0" x="42.288281" y="122.617188"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 51.304688 212.148438 L 54.792969 212.148438 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 51.304688 165.375 L 54.792969 165.375 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 51.304688 118.601562 L 54.792969 118.601562 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 128.597656 222.101562 L 128.597656 218.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 203.910156 222.101562 L 203.910156 218.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 279.21875 222.101562 L 279.21875 218.613281 "/>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="117.699219" y="232.921875"/>
|
||||
<use xlink:href="#glyph-0-3" x="123.928125" y="232.921875"/>
|
||||
<use xlink:href="#glyph-0-4" x="127.039844" y="232.921875"/>
|
||||
<use xlink:href="#glyph-0-1" x="133.26875" y="232.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-2" x="193.011719" y="232.921875"/>
|
||||
<use xlink:href="#glyph-0-3" x="199.240625" y="232.921875"/>
|
||||
<use xlink:href="#glyph-0-0" x="202.352344" y="232.921875"/>
|
||||
<use xlink:href="#glyph-0-0" x="208.58125" y="232.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-2" x="268.320312" y="232.921875"/>
|
||||
<use xlink:href="#glyph-0-3" x="274.549219" y="232.921875"/>
|
||||
<use xlink:href="#glyph-0-5" x="277.660938" y="232.921875"/>
|
||||
<use xlink:href="#glyph-0-1" x="283.889844" y="232.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0" x="200.410156" y="248.929688"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-0" x="17.015625" y="164.632812"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="157.632812"/>
|
||||
<use xlink:href="#glyph-2-2" x="17.015625" y="149.84668"/>
|
||||
<use xlink:href="#glyph-2-3" x="17.015625" y="142.060547"/>
|
||||
<use xlink:href="#glyph-2-4" x="17.015625" y="134.274414"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 57.703125 62.457031 L 350.109375 62.457031 L 350.109375 6.976562 L 57.703125 6.976562 Z M 57.703125 62.457031 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 64.679688 31.226562 L 81.960938 31.226562 L 81.960938 13.945312 L 64.679688 13.945312 Z M 64.679688 31.226562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 65.386719 30.519531 L 81.25 30.519531 L 81.25 14.65625 L 65.386719 14.65625 Z M 65.386719 30.519531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 64.679688 55.480469 L 81.960938 55.480469 L 81.960938 38.199219 L 64.679688 38.199219 Z M 64.679688 55.480469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 65.386719 54.773438 L 81.25 54.773438 L 81.25 38.910156 L 65.386719 38.910156 Z M 65.386719 54.773438 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 136.371094 31.226562 L 153.652344 31.226562 L 153.652344 13.945312 L 136.371094 13.945312 Z M 136.371094 31.226562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 137.078125 30.519531 L 152.941406 30.519531 L 152.941406 14.65625 L 137.078125 14.65625 Z M 137.078125 30.519531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 136.371094 55.480469 L 153.652344 55.480469 L 153.652344 38.199219 L 136.371094 38.199219 Z M 136.371094 55.480469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 137.078125 54.773438 L 152.941406 54.773438 L 152.941406 38.910156 L 137.078125 38.910156 Z M 137.078125 54.773438 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 237.328125 31.226562 L 254.609375 31.226562 L 254.609375 13.945312 L 237.328125 13.945312 Z M 237.328125 31.226562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 238.039062 30.519531 L 253.902344 30.519531 L 253.902344 14.65625 L 238.039062 14.65625 Z M 238.039062 30.519531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 237.328125 55.480469 L 254.609375 55.480469 L 254.609375 38.199219 L 237.328125 38.199219 Z M 237.328125 55.480469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 238.039062 54.773438 L 253.902344 54.773438 L 253.902344 38.910156 L 238.039062 38.910156 Z M 238.039062 54.773438 "/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-6" x="88.933594" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-7" x="94.533594" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-8" x="100.7625" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-9" x="106.991406" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-10" x="115.079687" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-11" x="118.191406" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-12" x="124.420312" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-12" x="126.908594" y="26.605469"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-13" x="88.933594" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-12" x="94.533594" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-8" x="97.021875" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-14" x="103.250781" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-15" x="109.479687" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-16" x="115.708594" y="50.859375"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-17" x="160.625" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-11" x="164.354688" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-18" x="170.583594" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-7" x="173.071875" y="26.605469"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-19" x="160.625" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-17" x="166.853906" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-8" x="170.583594" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-20" x="176.8125" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-21" x="182.4125" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-7" x="188.641406" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-22" x="194.870312" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-13" x="197.982031" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-12" x="203.582031" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-8" x="206.070312" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-14" x="212.299219" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-15" x="218.528125" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-6" x="224.757031" y="50.859375"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-6" x="261.582031" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-13" x="267.182031" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-11" x="272.782031" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-23" x="279.010938" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-23" x="282.122656" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-21" x="285.234375" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-17" x="291.463281" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-21" x="295.192969" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-15" x="301.421875" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-22" x="307.650781" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-13" x="310.7625" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-12" x="316.3625" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-8" x="318.850781" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-14" x="325.079688" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-15" x="331.308594" y="26.605469"/>
|
||||
<use xlink:href="#glyph-0-6" x="337.5375" y="26.605469"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-13" x="261.582031" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-12" x="267.182031" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-21" x="269.670313" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-11" x="275.899219" y="50.859375"/>
|
||||
<use xlink:href="#glyph-0-17" x="282.128125" y="50.859375"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 49 KiB |
|
@ -0,0 +1,311 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="295" viewBox="0 0 360 295">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-6">
|
||||
</g>
|
||||
<g id="glyph-0-7">
|
||||
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-8">
|
||||
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-9">
|
||||
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-10">
|
||||
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-11">
|
||||
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-12">
|
||||
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-13">
|
||||
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-14">
|
||||
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-15">
|
||||
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-0-16">
|
||||
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-17">
|
||||
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
|
||||
</g>
|
||||
<g id="glyph-0-18">
|
||||
<path d="M 0.859375 -8.03125 L 2.140625 -8.03125 L 6.203125 -1.53125 L 6.203125 -8.03125 L 7.234375 -8.03125 L 7.234375 0 L 6.015625 0 L 1.890625 -6.5 L 1.890625 0 L 0.859375 0 Z M 3.96875 -8.03125 Z M 3.96875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-19">
|
||||
<path d="M 4.984375 -3.296875 L 3.765625 -6.84375 L 2.46875 -3.296875 Z M 3.1875 -8.03125 L 4.421875 -8.03125 L 7.328125 0 L 6.140625 0 L 5.328125 -2.40625 L 2.15625 -2.40625 L 1.28125 0 L 0.171875 0 Z M 3.1875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-20">
|
||||
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-21">
|
||||
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-22">
|
||||
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
<path d="M 3.71875 -7.53125 C 4.550781 -7.53125 5.222656 -7.328125 5.734375 -6.921875 C 6.253906 -6.523438 6.566406 -5.835938 6.671875 -4.859375 L 5.46875 -4.859375 C 5.394531 -5.304688 5.226562 -5.679688 4.96875 -5.984375 C 4.71875 -6.285156 4.300781 -6.4375 3.71875 -6.4375 C 2.9375 -6.4375 2.378906 -6.050781 2.046875 -5.28125 C 1.828125 -4.789062 1.71875 -4.179688 1.71875 -3.453125 C 1.71875 -2.710938 1.867188 -2.09375 2.171875 -1.59375 C 2.484375 -1.09375 2.972656 -0.84375 3.640625 -0.84375 C 4.148438 -0.84375 4.554688 -1 4.859375 -1.3125 C 5.160156 -1.625 5.363281 -2.050781 5.46875 -2.59375 L 6.671875 -2.59375 C 6.535156 -1.625 6.191406 -0.910156 5.640625 -0.453125 C 5.097656 -0.00390625 4.398438 0.21875 3.546875 0.21875 C 2.585938 0.21875 1.820312 -0.128906 1.25 -0.828125 C 0.6875 -1.535156 0.40625 -2.410156 0.40625 -3.453125 C 0.40625 -4.742188 0.71875 -5.742188 1.34375 -6.453125 C 1.96875 -7.171875 2.757812 -7.53125 3.71875 -7.53125 Z M 3.53125 -7.5 Z M 3.53125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-1">
|
||||
<path d="M 3.8125 -0.796875 C 4.625 -0.796875 5.179688 -1.101562 5.484375 -1.71875 C 5.785156 -2.332031 5.9375 -3.019531 5.9375 -3.78125 C 5.9375 -4.46875 5.828125 -5.023438 5.609375 -5.453125 C 5.265625 -6.117188 4.671875 -6.453125 3.828125 -6.453125 C 3.066406 -6.453125 2.515625 -6.164062 2.171875 -5.59375 C 1.835938 -5.019531 1.671875 -4.328125 1.671875 -3.515625 C 1.671875 -2.742188 1.835938 -2.097656 2.171875 -1.578125 C 2.515625 -1.054688 3.0625 -0.796875 3.8125 -0.796875 Z M 3.859375 -7.53125 C 4.796875 -7.53125 5.585938 -7.210938 6.234375 -6.578125 C 6.890625 -5.953125 7.21875 -5.03125 7.21875 -3.8125 C 7.21875 -2.632812 6.929688 -1.660156 6.359375 -0.890625 C 5.785156 -0.117188 4.894531 0.265625 3.6875 0.265625 C 2.6875 0.265625 1.890625 -0.0703125 1.296875 -0.75 C 0.703125 -1.4375 0.40625 -2.351562 0.40625 -3.5 C 0.40625 -4.726562 0.71875 -5.707031 1.34375 -6.4375 C 1.96875 -7.164062 2.804688 -7.53125 3.859375 -7.53125 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-2">
|
||||
<path d="M 2.140625 -7.328125 L 2.140625 -2.46875 C 2.140625 -2.09375 2.195312 -1.785156 2.3125 -1.546875 C 2.53125 -1.109375 2.9375 -0.890625 3.53125 -0.890625 C 4.382812 -0.890625 4.96875 -1.269531 5.28125 -2.03125 C 5.445312 -2.445312 5.53125 -3.007812 5.53125 -3.71875 L 5.53125 -7.328125 L 6.765625 -7.328125 L 6.765625 0 L 5.609375 0 L 5.625 -1.078125 C 5.457031 -0.796875 5.257812 -0.5625 5.03125 -0.375 C 4.5625 0.0078125 3.988281 0.203125 3.3125 0.203125 C 2.269531 0.203125 1.5625 -0.144531 1.1875 -0.84375 C 0.976562 -1.21875 0.875 -1.71875 0.875 -2.34375 L 0.875 -7.328125 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-3">
|
||||
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-4">
|
||||
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
|
||||
</g>
|
||||
<g id="glyph-2-0">
|
||||
<path d="M -7.328125 -1.46875 L -1.546875 -2.875 L -7.328125 -4.3125 L -7.328125 -5.6875 L -1.59375 -7.125 L -7.328125 -8.625 L -7.328125 -9.84375 L 0 -7.71875 L 0 -6.453125 L -5.671875 -4.953125 L 0 -3.515625 L 0 -2.234375 L -7.328125 -0.125 Z M -7.328125 -1.46875 "/>
|
||||
</g>
|
||||
<g id="glyph-2-1">
|
||||
<path d="M -7.484375 -3.953125 C -7.484375 -4.472656 -7.359375 -4.972656 -7.109375 -5.453125 C -6.867188 -5.941406 -6.554688 -6.316406 -6.171875 -6.578125 C -5.804688 -6.828125 -5.375 -6.988281 -4.875 -7.0625 C -4.539062 -7.132812 -4.003906 -7.171875 -3.265625 -7.171875 L -3.265625 -1.8125 C -2.523438 -1.832031 -1.929688 -2.003906 -1.484375 -2.328125 C -1.035156 -2.660156 -0.8125 -3.171875 -0.8125 -3.859375 C -0.8125 -4.503906 -1.019531 -5.019531 -1.4375 -5.40625 C -1.6875 -5.625 -1.972656 -5.773438 -2.296875 -5.859375 L -2.296875 -7.078125 C -2.023438 -7.046875 -1.722656 -6.9375 -1.390625 -6.75 C -1.066406 -6.570312 -0.800781 -6.375 -0.59375 -6.15625 C -0.226562 -5.78125 0.0195312 -5.316406 0.15625 -4.765625 C 0.226562 -4.472656 0.265625 -4.140625 0.265625 -3.765625 C 0.265625 -2.847656 -0.0664062 -2.070312 -0.734375 -1.4375 C -1.398438 -0.8125 -2.328125 -0.5 -3.515625 -0.5 C -4.691406 -0.5 -5.644531 -0.816406 -6.375 -1.453125 C -7.113281 -2.085938 -7.484375 -2.921875 -7.484375 -3.953125 Z M -4.25 -5.90625 C -4.78125 -5.863281 -5.207031 -5.75 -5.53125 -5.5625 C -6.113281 -5.226562 -6.40625 -4.664062 -6.40625 -3.875 C -6.40625 -3.3125 -6.203125 -2.835938 -5.796875 -2.453125 C -5.390625 -2.066406 -4.875 -1.863281 -4.25 -1.84375 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2">
|
||||
<path d="M -1.953125 -1.84375 C -1.597656 -1.84375 -1.316406 -1.972656 -1.109375 -2.234375 C -0.898438 -2.492188 -0.796875 -2.800781 -0.796875 -3.15625 C -0.796875 -3.59375 -0.894531 -4.015625 -1.09375 -4.421875 C -1.425781 -5.097656 -1.972656 -5.4375 -2.734375 -5.4375 L -3.71875 -5.4375 C -3.625 -5.289062 -3.546875 -5.097656 -3.484375 -4.859375 C -3.421875 -4.617188 -3.375 -4.382812 -3.34375 -4.15625 L -3.25 -3.421875 C -3.195312 -2.972656 -3.101562 -2.632812 -2.96875 -2.40625 C -2.757812 -2.03125 -2.421875 -1.84375 -1.953125 -1.84375 Z M -4.4375 -4.828125 C -4.46875 -5.109375 -4.585938 -5.296875 -4.796875 -5.390625 C -4.898438 -5.441406 -5.054688 -5.46875 -5.265625 -5.46875 C -5.679688 -5.46875 -5.984375 -5.316406 -6.171875 -5.015625 C -6.359375 -4.722656 -6.453125 -4.300781 -6.453125 -3.75 C -6.453125 -3.101562 -6.28125 -2.644531 -5.9375 -2.375 C -5.75 -2.226562 -5.46875 -2.128906 -5.09375 -2.078125 L -5.09375 -0.9375 C -5.988281 -0.957031 -6.613281 -1.25 -6.96875 -1.8125 C -7.320312 -2.375 -7.5 -3.03125 -7.5 -3.78125 C -7.5 -4.632812 -7.332031 -5.332031 -7 -5.875 C -6.675781 -6.40625 -6.164062 -6.671875 -5.46875 -6.671875 L -1.265625 -6.671875 C -1.128906 -6.671875 -1.019531 -6.695312 -0.9375 -6.75 C -0.863281 -6.800781 -0.828125 -6.910156 -0.828125 -7.078125 C -0.828125 -7.140625 -0.832031 -7.203125 -0.84375 -7.265625 C -0.851562 -7.335938 -0.863281 -7.410156 -0.875 -7.484375 L 0.03125 -7.484375 C 0.0820312 -7.296875 0.113281 -7.148438 0.125 -7.046875 C 0.144531 -6.941406 0.15625 -6.804688 0.15625 -6.640625 C 0.15625 -6.210938 0.00390625 -5.90625 -0.296875 -5.71875 C -0.453125 -5.613281 -0.675781 -5.539062 -0.96875 -5.5 C -0.644531 -5.25 -0.359375 -4.890625 -0.109375 -4.421875 C 0.128906 -3.953125 0.25 -3.4375 0.25 -2.875 C 0.25 -2.195312 0.0429688 -1.640625 -0.359375 -1.203125 C -0.773438 -0.773438 -1.296875 -0.5625 -1.921875 -0.5625 C -2.597656 -0.5625 -3.125 -0.769531 -3.5 -1.1875 C -3.875 -1.613281 -4.101562 -2.171875 -4.1875 -2.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-3">
|
||||
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
|
||||
</g>
|
||||
<g id="glyph-2-4">
|
||||
<path d="M -10.078125 -0.90625 L -10.078125 -2.140625 L -6.328125 -2.140625 C -6.703125 -2.429688 -6.960938 -2.691406 -7.109375 -2.921875 C -7.367188 -3.316406 -7.5 -3.8125 -7.5 -4.40625 C -7.5 -5.46875 -7.128906 -6.1875 -6.390625 -6.5625 C -5.984375 -6.769531 -5.421875 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.609375 L -4.609375 -5.609375 C -5.148438 -5.609375 -5.546875 -5.539062 -5.796875 -5.40625 C -6.203125 -5.175781 -6.40625 -4.753906 -6.40625 -4.140625 C -6.40625 -3.628906 -6.226562 -3.164062 -5.875 -2.75 C -5.519531 -2.34375 -4.859375 -2.140625 -3.890625 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -10.078125 -0.90625 "/>
|
||||
</g>
|
||||
<g id="glyph-2-5">
|
||||
<path d="M -7.328125 -0.9375 L -7.328125 -2.109375 L -6.0625 -2.109375 C -6.300781 -2.203125 -6.597656 -2.4375 -6.953125 -2.8125 C -7.304688 -3.1875 -7.484375 -3.617188 -7.484375 -4.109375 C -7.484375 -4.128906 -7.476562 -4.164062 -7.46875 -4.21875 C -7.46875 -4.269531 -7.460938 -4.363281 -7.453125 -4.5 L -6.15625 -4.5 C -6.164062 -4.425781 -6.171875 -4.359375 -6.171875 -4.296875 C -6.179688 -4.234375 -6.1875 -4.164062 -6.1875 -4.09375 C -6.1875 -3.476562 -5.984375 -3.003906 -5.578125 -2.671875 C -5.179688 -2.335938 -4.726562 -2.171875 -4.21875 -2.171875 L 0 -2.171875 L 0 -0.9375 Z M -7.328125 -0.9375 "/>
|
||||
</g>
|
||||
<g id="glyph-2-6">
|
||||
<path d="M 1.75 0 L 1.0625 0 L 1.0625 -7.78125 L 1.75 -7.78125 Z M 1.75 0 "/>
|
||||
</g>
|
||||
<g id="glyph-2-7">
|
||||
<path d="M -7.328125 -5.46875 L -7.328125 -6.84375 C -6.859375 -6.664062 -5.785156 -6.28125 -4.109375 -5.6875 C -2.847656 -5.238281 -1.820312 -4.863281 -1.03125 -4.5625 C 0.832031 -3.851562 1.96875 -3.351562 2.375 -3.0625 C 2.789062 -2.769531 3 -2.265625 3 -1.546875 C 3 -1.378906 2.988281 -1.25 2.96875 -1.15625 C 2.957031 -1.0625 2.9375 -0.945312 2.90625 -0.8125 L 1.78125 -0.8125 C 1.84375 -1.019531 1.878906 -1.171875 1.890625 -1.265625 C 1.910156 -1.367188 1.921875 -1.457031 1.921875 -1.53125 C 1.921875 -1.75 1.878906 -1.910156 1.796875 -2.015625 C 1.722656 -2.128906 1.632812 -2.222656 1.53125 -2.296875 C 1.488281 -2.316406 1.296875 -2.394531 0.953125 -2.53125 C 0.617188 -2.675781 0.375 -2.78125 0.21875 -2.84375 L -7.328125 -0.140625 L -7.328125 -1.53125 L -1.359375 -3.5 Z M -7.5 -3.5 Z M -7.5 -3.5 "/>
|
||||
</g>
|
||||
<g id="glyph-2-8">
|
||||
<path d="M -0.828125 -4 C -0.828125 -4.570312 -1.066406 -5.046875 -1.546875 -5.421875 C -2.023438 -5.804688 -2.742188 -6 -3.703125 -6 C -4.285156 -6 -4.785156 -5.914062 -5.203125 -5.75 C -6.015625 -5.425781 -6.421875 -4.84375 -6.421875 -4 C -6.421875 -3.144531 -5.992188 -2.5625 -5.140625 -2.25 C -4.679688 -2.070312 -4.101562 -1.984375 -3.40625 -1.984375 C -2.84375 -1.984375 -2.363281 -2.070312 -1.96875 -2.25 C -1.207031 -2.5625 -0.828125 -3.144531 -0.828125 -4 Z M -7.28125 -0.8125 L -7.28125 -2 L -6.3125 -2 C -6.644531 -2.25 -6.90625 -2.519531 -7.09375 -2.8125 C -7.363281 -3.226562 -7.5 -3.710938 -7.5 -4.265625 C -7.5 -5.097656 -7.179688 -5.800781 -6.546875 -6.375 C -5.910156 -6.957031 -5.003906 -7.25 -3.828125 -7.25 C -2.222656 -7.25 -1.082031 -6.832031 -0.40625 -6 C 0.0273438 -5.46875 0.25 -4.851562 0.25 -4.15625 C 0.25 -3.601562 0.128906 -3.140625 -0.109375 -2.765625 C -0.253906 -2.546875 -0.492188 -2.300781 -0.828125 -2.03125 L 2.921875 -2.03125 L 2.921875 -0.8125 Z M -7.28125 -0.8125 "/>
|
||||
</g>
|
||||
</g>
|
||||
<clipPath id="clip-0">
|
||||
<path clip-rule="nonzero" d="M 111.429688 6.972656 L 353.023438 6.972656 L 353.023438 254.613281 L 111.429688 254.613281 Z M 111.429688 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-1">
|
||||
<path clip-rule="nonzero" d="M 111.429688 233 L 353.023438 233 L 353.023438 235 L 111.429688 235 Z M 111.429688 233 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-2">
|
||||
<path clip-rule="nonzero" d="M 111.429688 199 L 353.023438 199 L 353.023438 200 L 111.429688 200 Z M 111.429688 199 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-3">
|
||||
<path clip-rule="nonzero" d="M 111.429688 164 L 353.023438 164 L 353.023438 166 L 111.429688 166 Z M 111.429688 164 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-4">
|
||||
<path clip-rule="nonzero" d="M 111.429688 130 L 353.023438 130 L 353.023438 132 L 111.429688 132 Z M 111.429688 130 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-5">
|
||||
<path clip-rule="nonzero" d="M 111.429688 96 L 353.023438 96 L 353.023438 97 L 111.429688 97 Z M 111.429688 96 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-6">
|
||||
<path clip-rule="nonzero" d="M 111.429688 61 L 353.023438 61 L 353.023438 63 L 111.429688 63 Z M 111.429688 61 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-7">
|
||||
<path clip-rule="nonzero" d="M 111.429688 27 L 353.023438 27 L 353.023438 28 L 111.429688 28 Z M 111.429688 27 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-8">
|
||||
<path clip-rule="nonzero" d="M 122 6.972656 L 123 6.972656 L 123 254.613281 L 122 254.613281 Z M 122 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-9">
|
||||
<path clip-rule="nonzero" d="M 199 6.972656 L 201 6.972656 L 201 254.613281 L 199 254.613281 Z M 199 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-10">
|
||||
<path clip-rule="nonzero" d="M 277 6.972656 L 279 6.972656 L 279 254.613281 L 277 254.613281 Z M 277 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-11">
|
||||
<path clip-rule="nonzero" d="M 111.429688 6.972656 L 353.023438 6.972656 L 353.023438 254.613281 L 111.429688 254.613281 Z M 111.429688 6.972656 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 295 L 360 295 L 360 0 L 0 0 Z M 0 295 "/>
|
||||
<g clip-path="url(#clip-0)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.429688 254.613281 L 353.023438 254.613281 L 353.023438 6.972656 L 111.429688 6.972656 Z M 111.429688 254.613281 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-1)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 233.976562 L 353.027344 233.976562 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-2)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 199.582031 L 353.027344 199.582031 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-3)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 165.1875 L 353.027344 165.1875 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-4)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 130.792969 L 353.027344 130.792969 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-5)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 96.398438 L 353.027344 96.398438 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-6)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 62.003906 L 353.027344 62.003906 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-7)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 27.609375 L 353.027344 27.609375 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-8)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 122.414062 254.613281 L 122.414062 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-9)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.160156 254.613281 L 200.160156 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-10)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 277.90625 254.613281 L 277.90625 6.972656 "/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 249.453125 L 226.203125 249.453125 L 226.203125 218.5 L 122.414062 218.5 Z M 122.414062 249.453125 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 215.058594 L 342.046875 215.058594 L 342.046875 184.105469 L 122.414062 184.105469 Z M 122.414062 215.058594 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 180.664062 L 153.125 180.664062 L 153.125 149.710938 L 122.414062 149.710938 Z M 122.414062 180.664062 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 146.269531 L 183.445312 146.269531 L 183.445312 115.316406 L 122.414062 115.316406 Z M 122.414062 146.269531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 111.875 L 243.308594 111.875 L 243.308594 80.921875 L 122.414062 80.921875 Z M 122.414062 111.875 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 77.480469 L 123.582031 77.480469 L 123.582031 46.527344 L 122.414062 46.527344 Z M 122.414062 77.480469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 43.089844 L 150.402344 43.089844 L 150.402344 12.136719 L 122.414062 12.136719 Z M 122.414062 43.089844 "/>
|
||||
<g clip-path="url(#clip-11)">
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 254.613281 L 353.023438 254.613281 L 353.023438 6.972656 L 111.429688 6.972656 Z M 111.429688 254.613281 "/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="35.425781" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-1" x="41.654688" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-2" x="45.384375" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-3" x="51.613281" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-4" x="57.213281" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-5" x="63.442188" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-6" x="69.671094" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-7" x="72.782812" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-8" x="78.382812" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-2" x="80.871094" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-9" x="87.1" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-10" x="93.328906" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-11" x="99.557812" y="237.992188"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-7" x="80.878906" y="203.597656"/>
|
||||
<use xlink:href="#glyph-0-8" x="86.478906" y="203.597656"/>
|
||||
<use xlink:href="#glyph-0-4" x="88.967187" y="203.597656"/>
|
||||
<use xlink:href="#glyph-0-12" x="95.196094" y="203.597656"/>
|
||||
<use xlink:href="#glyph-0-1" x="101.425" y="203.597656"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-7" x="72.78125" y="169.203125"/>
|
||||
<use xlink:href="#glyph-0-8" x="78.38125" y="169.203125"/>
|
||||
<use xlink:href="#glyph-0-2" x="80.869531" y="169.203125"/>
|
||||
<use xlink:href="#glyph-0-9" x="87.098437" y="169.203125"/>
|
||||
<use xlink:href="#glyph-0-10" x="93.327344" y="169.203125"/>
|
||||
<use xlink:href="#glyph-0-13" x="99.55625" y="169.203125"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-1" x="86.480469" y="134.808594"/>
|
||||
<use xlink:href="#glyph-0-12" x="90.210156" y="134.808594"/>
|
||||
<use xlink:href="#glyph-0-14" x="96.439062" y="134.808594"/>
|
||||
<use xlink:href="#glyph-0-5" x="98.927344" y="134.808594"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-11" x="23.601562" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-7" x="29.201563" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-12" x="34.801563" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-15" x="41.030469" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-15" x="44.142188" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-4" x="47.253906" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-1" x="53.482813" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-4" x="57.2125" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-10" x="63.441406" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-6" x="69.670313" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-7" x="72.782031" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-8" x="78.382031" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-2" x="80.870312" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-9" x="87.099219" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-10" x="93.328125" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-11" x="99.557031" y="100.414062"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-11" x="64.691406" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-5" x="70.291406" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-2" x="76.520312" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-16" x="82.749219" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-17" x="90.8375" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-12" x="93.949219" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-8" x="100.178125" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-8" x="102.666406" y="66.023438"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-18" x="89.597656" y="31.628906"/>
|
||||
<use xlink:href="#glyph-0-19" x="97.685937" y="31.628906"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 233.976562 L 111.429688 233.976562 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 199.582031 L 111.429688 199.582031 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 165.1875 L 111.429688 165.1875 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 130.792969 L 111.429688 130.792969 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 96.398438 L 111.429688 96.398438 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 62.003906 L 111.429688 62.003906 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 27.609375 L 111.429688 27.609375 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 122.414062 258.101562 L 122.414062 254.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.160156 258.101562 L 200.160156 254.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 277.90625 258.101562 L 277.90625 254.613281 "/>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-20" x="119.300781" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-21" x="190.816406" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-20" x="197.045312" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-20" x="203.274219" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-22" x="268.5625" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-20" x="274.791406" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-20" x="281.020313" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0" x="215.105469" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-1" x="222.105469" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-2" x="229.891602" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-3" x="237.677734" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-4" x="245.463867" y="284.929688"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-0" x="17.015625" y="172.820312"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="162.709961"/>
|
||||
<use xlink:href="#glyph-2-2" x="17.015625" y="154.923828"/>
|
||||
<use xlink:href="#glyph-2-3" x="17.015625" y="147.137695"/>
|
||||
<use xlink:href="#glyph-2-4" x="17.015625" y="143.248047"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="135.461914"/>
|
||||
<use xlink:href="#glyph-2-5" x="17.015625" y="127.675781"/>
|
||||
<use xlink:href="#glyph-2-6" x="17.015625" y="123.013672"/>
|
||||
<use xlink:href="#glyph-2-3" x="17.015625" y="115.227539"/>
|
||||
<use xlink:href="#glyph-2-7" x="17.015625" y="111.337891"/>
|
||||
<use xlink:href="#glyph-2-8" x="17.015625" y="104.337891"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="96.551758"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 34 KiB |
|
@ -0,0 +1,269 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="252" viewBox="0 0 360 252">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 3.046875 -4.546875 C 3.484375 -4.546875 3.820312 -4.664062 4.0625 -4.90625 C 4.3125 -5.15625 4.4375 -5.445312 4.4375 -5.78125 C 4.4375 -6.070312 4.316406 -6.335938 4.078125 -6.578125 C 3.847656 -6.828125 3.492188 -6.953125 3.015625 -6.953125 C 2.535156 -6.953125 2.191406 -6.828125 1.984375 -6.578125 C 1.773438 -6.335938 1.671875 -6.054688 1.671875 -5.734375 C 1.671875 -5.359375 1.804688 -5.066406 2.078125 -4.859375 C 2.347656 -4.648438 2.671875 -4.546875 3.046875 -4.546875 Z M 3.109375 -0.671875 C 3.566406 -0.671875 3.941406 -0.789062 4.234375 -1.03125 C 4.535156 -1.28125 4.6875 -1.648438 4.6875 -2.140625 C 4.6875 -2.648438 4.53125 -3.035156 4.21875 -3.296875 C 3.914062 -3.554688 3.519531 -3.6875 3.03125 -3.6875 C 2.5625 -3.6875 2.175781 -3.550781 1.875 -3.28125 C 1.582031 -3.019531 1.4375 -2.648438 1.4375 -2.171875 C 1.4375 -1.765625 1.570312 -1.410156 1.84375 -1.109375 C 2.113281 -0.816406 2.535156 -0.671875 3.109375 -0.671875 Z M 1.703125 -4.171875 C 1.429688 -4.285156 1.21875 -4.421875 1.0625 -4.578125 C 0.78125 -4.867188 0.640625 -5.25 0.640625 -5.71875 C 0.640625 -6.300781 0.847656 -6.800781 1.265625 -7.21875 C 1.691406 -7.644531 2.289062 -7.859375 3.0625 -7.859375 C 3.820312 -7.859375 4.410156 -7.660156 4.828125 -7.265625 C 5.253906 -6.867188 5.46875 -6.40625 5.46875 -5.875 C 5.46875 -5.382812 5.347656 -4.988281 5.109375 -4.6875 C 4.960938 -4.519531 4.742188 -4.351562 4.453125 -4.1875 C 4.773438 -4.03125 5.03125 -3.859375 5.21875 -3.671875 C 5.570312 -3.304688 5.75 -2.832031 5.75 -2.25 C 5.75 -1.5625 5.515625 -0.976562 5.046875 -0.5 C 4.585938 -0.0195312 3.929688 0.21875 3.078125 0.21875 C 2.316406 0.21875 1.671875 0.0117188 1.140625 -0.390625 C 0.617188 -0.804688 0.359375 -1.410156 0.359375 -2.203125 C 0.359375 -2.660156 0.472656 -3.054688 0.703125 -3.390625 C 0.929688 -3.734375 1.265625 -3.992188 1.703125 -4.171875 Z M 1.703125 -4.171875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-6">
|
||||
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-7">
|
||||
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-8">
|
||||
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-0-9">
|
||||
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-10">
|
||||
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-11">
|
||||
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-12">
|
||||
<path d="M 3.1875 -0.65625 C 3.65625 -0.65625 4.039062 -0.847656 4.34375 -1.234375 C 4.644531 -1.617188 4.796875 -2.195312 4.796875 -2.96875 C 4.796875 -3.4375 4.726562 -3.835938 4.59375 -4.171875 C 4.34375 -4.816406 3.875 -5.140625 3.1875 -5.140625 C 2.507812 -5.140625 2.046875 -4.796875 1.796875 -4.109375 C 1.660156 -3.742188 1.59375 -3.28125 1.59375 -2.71875 C 1.59375 -2.269531 1.660156 -1.882812 1.796875 -1.5625 C 2.046875 -0.957031 2.507812 -0.65625 3.1875 -0.65625 Z M 0.640625 -5.828125 L 1.609375 -5.828125 L 1.609375 -5.046875 C 1.796875 -5.316406 2.007812 -5.523438 2.25 -5.671875 C 2.582031 -5.890625 2.972656 -6 3.421875 -6 C 4.085938 -6 4.648438 -5.742188 5.109375 -5.234375 C 5.566406 -4.722656 5.796875 -4 5.796875 -3.0625 C 5.796875 -1.78125 5.460938 -0.867188 4.796875 -0.328125 C 4.378906 0.0234375 3.890625 0.203125 3.328125 0.203125 C 2.878906 0.203125 2.507812 0.101562 2.21875 -0.09375 C 2.039062 -0.195312 1.84375 -0.382812 1.625 -0.65625 L 1.625 2.328125 L 0.640625 2.328125 Z M 0.640625 -5.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-13">
|
||||
<path d="M 2.796875 -5.96875 C 3.253906 -5.96875 3.65625 -5.851562 4 -5.625 C 4.175781 -5.5 4.363281 -5.3125 4.5625 -5.0625 L 4.5625 -5.796875 L 5.46875 -5.796875 L 5.46875 -0.46875 C 5.46875 0.269531 5.359375 0.851562 5.140625 1.28125 C 4.734375 2.082031 3.960938 2.484375 2.828125 2.484375 C 2.191406 2.484375 1.660156 2.335938 1.234375 2.046875 C 0.804688 1.765625 0.566406 1.328125 0.515625 0.734375 L 1.515625 0.734375 C 1.566406 0.992188 1.660156 1.191406 1.796875 1.328125 C 2.023438 1.546875 2.375 1.65625 2.84375 1.65625 C 3.601562 1.65625 4.097656 1.390625 4.328125 0.859375 C 4.472656 0.546875 4.539062 -0.0078125 4.53125 -0.8125 C 4.332031 -0.507812 4.09375 -0.285156 3.8125 -0.140625 C 3.53125 0.00390625 3.164062 0.078125 2.71875 0.078125 C 2.082031 0.078125 1.523438 -0.144531 1.046875 -0.59375 C 0.566406 -1.050781 0.328125 -1.800781 0.328125 -2.84375 C 0.328125 -3.820312 0.566406 -4.585938 1.046875 -5.140625 C 1.523438 -5.691406 2.109375 -5.96875 2.796875 -5.96875 Z M 4.5625 -2.953125 C 4.5625 -3.679688 4.410156 -4.21875 4.109375 -4.5625 C 3.816406 -4.914062 3.4375 -5.09375 2.96875 -5.09375 C 2.28125 -5.09375 1.804688 -4.769531 1.546875 -4.125 C 1.410156 -3.769531 1.34375 -3.3125 1.34375 -2.75 C 1.34375 -2.09375 1.476562 -1.59375 1.75 -1.25 C 2.019531 -0.90625 2.378906 -0.734375 2.828125 -0.734375 C 3.535156 -0.734375 4.035156 -1.050781 4.328125 -1.6875 C 4.484375 -2.050781 4.5625 -2.472656 4.5625 -2.953125 Z M 2.90625 -6 Z M 2.90625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-14">
|
||||
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-15">
|
||||
<path d="M 0.71875 -5.859375 L 1.703125 -5.859375 L 1.703125 -5.03125 C 1.929688 -5.3125 2.140625 -5.519531 2.328125 -5.65625 C 2.648438 -5.875 3.019531 -5.984375 3.4375 -5.984375 C 3.90625 -5.984375 4.28125 -5.867188 4.5625 -5.640625 C 4.71875 -5.515625 4.863281 -5.320312 5 -5.0625 C 5.21875 -5.375 5.472656 -5.601562 5.765625 -5.75 C 6.066406 -5.90625 6.398438 -5.984375 6.765625 -5.984375 C 7.554688 -5.984375 8.09375 -5.703125 8.375 -5.140625 C 8.53125 -4.828125 8.609375 -4.414062 8.609375 -3.90625 L 8.609375 0 L 7.578125 0 L 7.578125 -4.0625 C 7.578125 -4.457031 7.476562 -4.726562 7.28125 -4.875 C 7.09375 -5.019531 6.859375 -5.09375 6.578125 -5.09375 C 6.191406 -5.09375 5.859375 -4.960938 5.578125 -4.703125 C 5.296875 -4.441406 5.15625 -4.007812 5.15625 -3.40625 L 5.15625 0 L 4.15625 0 L 4.15625 -3.828125 C 4.15625 -4.222656 4.109375 -4.507812 4.015625 -4.6875 C 3.867188 -4.96875 3.585938 -5.109375 3.171875 -5.109375 C 2.804688 -5.109375 2.46875 -4.960938 2.15625 -4.671875 C 1.851562 -4.378906 1.703125 -3.859375 1.703125 -3.109375 L 1.703125 0 L 0.71875 0 Z M 0.71875 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-16">
|
||||
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
<path d="M 1.640625 -2.296875 C 1.671875 -1.890625 1.769531 -1.578125 1.9375 -1.359375 C 2.25 -0.960938 2.789062 -0.765625 3.5625 -0.765625 C 4.007812 -0.765625 4.40625 -0.863281 4.75 -1.0625 C 5.101562 -1.257812 5.28125 -1.5625 5.28125 -1.96875 C 5.28125 -2.289062 5.140625 -2.53125 4.859375 -2.6875 C 4.679688 -2.789062 4.332031 -2.910156 3.8125 -3.046875 L 2.828125 -3.28125 C 2.203125 -3.4375 1.742188 -3.613281 1.453125 -3.8125 C 0.921875 -4.144531 0.65625 -4.601562 0.65625 -5.1875 C 0.65625 -5.882812 0.90625 -6.445312 1.40625 -6.875 C 1.90625 -7.300781 2.578125 -7.515625 3.421875 -7.515625 C 4.523438 -7.515625 5.316406 -7.191406 5.796875 -6.546875 C 6.109375 -6.128906 6.257812 -5.6875 6.25 -5.21875 L 5.09375 -5.21875 C 5.0625 -5.5 4.960938 -5.75 4.796875 -5.96875 C 4.515625 -6.289062 4.023438 -6.453125 3.328125 -6.453125 C 2.859375 -6.453125 2.503906 -6.363281 2.265625 -6.1875 C 2.023438 -6.007812 1.90625 -5.773438 1.90625 -5.484375 C 1.90625 -5.171875 2.0625 -4.914062 2.375 -4.71875 C 2.5625 -4.601562 2.832031 -4.503906 3.1875 -4.421875 L 4 -4.21875 C 4.882812 -4.007812 5.476562 -3.804688 5.78125 -3.609375 C 6.257812 -3.285156 6.5 -2.789062 6.5 -2.125 C 6.5 -1.46875 6.25 -0.898438 5.75 -0.421875 C 5.257812 0.0429688 4.507812 0.28125 3.5 0.28125 C 2.40625 0.28125 1.628906 0.0351562 1.171875 -0.453125 C 0.722656 -0.953125 0.484375 -1.566406 0.453125 -2.296875 Z M 3.453125 -7.5 Z M 3.453125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-1">
|
||||
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-2">
|
||||
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-3">
|
||||
<path d="M 3.8125 -0.796875 C 4.625 -0.796875 5.179688 -1.101562 5.484375 -1.71875 C 5.785156 -2.332031 5.9375 -3.019531 5.9375 -3.78125 C 5.9375 -4.46875 5.828125 -5.023438 5.609375 -5.453125 C 5.265625 -6.117188 4.671875 -6.453125 3.828125 -6.453125 C 3.066406 -6.453125 2.515625 -6.164062 2.171875 -5.59375 C 1.835938 -5.019531 1.671875 -4.328125 1.671875 -3.515625 C 1.671875 -2.742188 1.835938 -2.097656 2.171875 -1.578125 C 2.515625 -1.054688 3.0625 -0.796875 3.8125 -0.796875 Z M 3.859375 -7.53125 C 4.796875 -7.53125 5.585938 -7.210938 6.234375 -6.578125 C 6.890625 -5.953125 7.21875 -5.03125 7.21875 -3.8125 C 7.21875 -2.632812 6.929688 -1.660156 6.359375 -0.890625 C 5.785156 -0.117188 4.894531 0.265625 3.6875 0.265625 C 2.6875 0.265625 1.890625 -0.0703125 1.296875 -0.75 C 0.703125 -1.4375 0.40625 -2.351562 0.40625 -3.5 C 0.40625 -4.726562 0.71875 -5.707031 1.34375 -6.4375 C 1.96875 -7.164062 2.804688 -7.53125 3.859375 -7.53125 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-4">
|
||||
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-2-0">
|
||||
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-1">
|
||||
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2">
|
||||
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-3">
|
||||
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
|
||||
</g>
|
||||
<g id="glyph-2-4">
|
||||
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
|
||||
</g>
|
||||
</g>
|
||||
<clipPath id="clip-0">
|
||||
<path clip-rule="nonzero" d="M 61.019531 6.972656 L 353.023438 6.972656 L 353.023438 211.613281 L 61.019531 211.613281 Z M 61.019531 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-1">
|
||||
<path clip-rule="nonzero" d="M 61.019531 161 L 353.023438 161 L 353.023438 163 L 61.019531 163 Z M 61.019531 161 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-2">
|
||||
<path clip-rule="nonzero" d="M 61.019531 108 L 353.023438 108 L 353.023438 110 L 61.019531 110 Z M 61.019531 108 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-3">
|
||||
<path clip-rule="nonzero" d="M 61.019531 55 L 353.023438 55 L 353.023438 57 L 61.019531 57 Z M 61.019531 55 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-4">
|
||||
<path clip-rule="nonzero" d="M 102 6.972656 L 104 6.972656 L 104 211.613281 L 102 211.613281 Z M 102 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-5">
|
||||
<path clip-rule="nonzero" d="M 171 6.972656 L 173 6.972656 L 173 211.613281 L 171 211.613281 Z M 171 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-6">
|
||||
<path clip-rule="nonzero" d="M 241 6.972656 L 243 6.972656 L 243 211.613281 L 241 211.613281 Z M 241 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-7">
|
||||
<path clip-rule="nonzero" d="M 310 6.972656 L 312 6.972656 L 312 211.613281 L 310 211.613281 Z M 310 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-8">
|
||||
<path clip-rule="nonzero" d="M 102 6.972656 L 104 6.972656 L 104 10 L 102 10 Z M 102 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-9">
|
||||
<path clip-rule="nonzero" d="M 146 6.972656 L 199 6.972656 L 199 118 L 146 118 Z M 146 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-10">
|
||||
<path clip-rule="nonzero" d="M 145 6.972656 L 199 6.972656 L 199 118 L 145 118 Z M 145 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-11">
|
||||
<path clip-rule="nonzero" d="M 215 6.972656 L 268 6.972656 L 268 66 L 215 66 Z M 215 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-12">
|
||||
<path clip-rule="nonzero" d="M 215 6.972656 L 269 6.972656 L 269 66 L 215 66 Z M 215 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-13">
|
||||
<path clip-rule="nonzero" d="M 285 6.972656 L 338 6.972656 L 338 109 L 285 109 Z M 285 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-14">
|
||||
<path clip-rule="nonzero" d="M 284 6.972656 L 338 6.972656 L 338 110 L 284 110 Z M 284 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-15">
|
||||
<path clip-rule="nonzero" d="M 61.019531 6.972656 L 353.023438 6.972656 L 353.023438 211.613281 L 61.019531 211.613281 Z M 61.019531 6.972656 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<rect x="-36" y="-25.2" width="432" height="302.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<rect x="-36" y="-25.2" width="432" height="302.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 252 L 360 252 L 360 0 L 0 0 Z M 0 252 "/>
|
||||
<g clip-path="url(#clip-0)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 61.019531 211.613281 L 353.023438 211.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 211.613281 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-1)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 161.957031 L 353.027344 161.957031 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-2)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 108.980469 L 353.027344 108.980469 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-3)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 56.007812 L 353.027344 56.007812 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-4)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 211.613281 L 102.734375 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-5)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 211.613281 L 172.261719 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-6)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 211.613281 L 241.785156 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-7)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 211.613281 L 311.3125 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-8)">
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 9.347656 L 102.734375 -150.636719 "/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 140.25 L 102.734375 189.636719 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.664062 9.347656 L 76.664062 140.25 L 128.808594 140.25 L 128.808594 9.347656 Z M 76.664062 9.347656 "/>
|
||||
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.664062 112.960938 L 128.808594 112.960938 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 117.175781 L 172.261719 198.535156 "/>
|
||||
<g clip-path="url(#clip-9)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 146.1875 -39.730469 L 146.1875 117.175781 L 198.332031 117.175781 L 198.332031 -39.730469 Z M 146.1875 -39.730469 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-10)">
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.1875 -39.730469 L 146.1875 117.175781 L 198.332031 117.175781 L 198.332031 -39.730469 Z M 146.1875 -39.730469 "/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.1875 70.582031 L 198.332031 70.582031 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 65.117188 L 241.785156 152.394531 "/>
|
||||
<g clip-path="url(#clip-11)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 215.714844 -109.710938 L 215.714844 65.117188 L 267.859375 65.117188 L 267.859375 -109.710938 Z M 215.714844 -109.710938 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-12)">
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 215.714844 -109.710938 L 215.714844 65.117188 L 267.859375 65.117188 L 267.859375 -109.710938 Z M 215.714844 -109.710938 "/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 215.714844 19.167969 L 267.859375 19.167969 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 108.929688 L 311.3125 202.3125 "/>
|
||||
<g clip-path="url(#clip-13)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 285.238281 -61.046875 L 285.238281 108.929688 L 337.382812 108.929688 L 337.382812 -61.046875 Z M 285.238281 -61.046875 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-14)">
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.238281 -61.046875 L 285.238281 108.929688 L 337.382812 108.929688 L 337.382812 -61.046875 Z M 285.238281 -61.046875 "/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.238281 63.621094 L 337.382812 63.621094 "/>
|
||||
<g clip-path="url(#clip-15)">
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 211.613281 L 353.023438 211.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 211.613281 "/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="29.828125" y="165.972656"/>
|
||||
<use xlink:href="#glyph-0-1" x="36.057031" y="165.972656"/>
|
||||
<use xlink:href="#glyph-0-1" x="42.285938" y="165.972656"/>
|
||||
<use xlink:href="#glyph-0-1" x="48.514844" y="165.972656"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-2" x="29.828125" y="113"/>
|
||||
<use xlink:href="#glyph-0-1" x="36.057031" y="113"/>
|
||||
<use xlink:href="#glyph-0-1" x="42.285938" y="113"/>
|
||||
<use xlink:href="#glyph-0-1" x="48.514844" y="113"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-3" x="23.597656" y="60.023438"/>
|
||||
<use xlink:href="#glyph-0-4" x="29.826563" y="60.023438"/>
|
||||
<use xlink:href="#glyph-0-1" x="36.055469" y="60.023438"/>
|
||||
<use xlink:href="#glyph-0-1" x="42.284375" y="60.023438"/>
|
||||
<use xlink:href="#glyph-0-1" x="48.513281" y="60.023438"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 161.957031 L 61.019531 161.957031 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 108.980469 L 61.019531 108.980469 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 56.007812 L 61.019531 56.007812 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 215.101562 L 102.734375 211.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 215.101562 L 172.261719 211.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 215.101562 L 241.785156 211.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 215.101562 L 311.3125 211.613281 "/>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-5" x="87.796875" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-6" x="95.885156" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="98.373437" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-8" x="104.602344" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-9" x="107.714062" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="113.942969" y="225.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-11" x="157.007812" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-12" x="162.607812" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="168.836719" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-6" x="172.566406" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="175.054688" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-13" x="181.283594" y="225.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-11" x="221.5625" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-14" x="227.1625" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="233.391406" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="242.721094" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-9" x="252.050781" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="258.279688" y="225.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-16" x="292.632812" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-14" x="298.861719" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-8" x="305.090625" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-14" x="308.202344" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="314.43125" y="225.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="323.760938" y="225.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0" x="184.453125" y="241.929688"/>
|
||||
<use xlink:href="#glyph-1-1" x="191.453125" y="241.929688"/>
|
||||
<use xlink:href="#glyph-1-2" x="199.239258" y="241.929688"/>
|
||||
<use xlink:href="#glyph-1-0" x="207.025391" y="241.929688"/>
|
||||
<use xlink:href="#glyph-1-3" x="214.025391" y="241.929688"/>
|
||||
<use xlink:href="#glyph-1-4" x="221.811523" y="241.929688"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-0" x="17.015625" y="126.417969"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="119.417969"/>
|
||||
<use xlink:href="#glyph-2-2" x="17.015625" y="111.631836"/>
|
||||
<use xlink:href="#glyph-2-3" x="17.015625" y="103.845703"/>
|
||||
<use xlink:href="#glyph-2-4" x="17.015625" y="96.05957"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 45 KiB |
|
@ -0,0 +1,269 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="432" viewBox="0 0 360 432">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 3.046875 -4.546875 C 3.484375 -4.546875 3.820312 -4.664062 4.0625 -4.90625 C 4.3125 -5.15625 4.4375 -5.445312 4.4375 -5.78125 C 4.4375 -6.070312 4.316406 -6.335938 4.078125 -6.578125 C 3.847656 -6.828125 3.492188 -6.953125 3.015625 -6.953125 C 2.535156 -6.953125 2.191406 -6.828125 1.984375 -6.578125 C 1.773438 -6.335938 1.671875 -6.054688 1.671875 -5.734375 C 1.671875 -5.359375 1.804688 -5.066406 2.078125 -4.859375 C 2.347656 -4.648438 2.671875 -4.546875 3.046875 -4.546875 Z M 3.109375 -0.671875 C 3.566406 -0.671875 3.941406 -0.789062 4.234375 -1.03125 C 4.535156 -1.28125 4.6875 -1.648438 4.6875 -2.140625 C 4.6875 -2.648438 4.53125 -3.035156 4.21875 -3.296875 C 3.914062 -3.554688 3.519531 -3.6875 3.03125 -3.6875 C 2.5625 -3.6875 2.175781 -3.550781 1.875 -3.28125 C 1.582031 -3.019531 1.4375 -2.648438 1.4375 -2.171875 C 1.4375 -1.765625 1.570312 -1.410156 1.84375 -1.109375 C 2.113281 -0.816406 2.535156 -0.671875 3.109375 -0.671875 Z M 1.703125 -4.171875 C 1.429688 -4.285156 1.21875 -4.421875 1.0625 -4.578125 C 0.78125 -4.867188 0.640625 -5.25 0.640625 -5.71875 C 0.640625 -6.300781 0.847656 -6.800781 1.265625 -7.21875 C 1.691406 -7.644531 2.289062 -7.859375 3.0625 -7.859375 C 3.820312 -7.859375 4.410156 -7.660156 4.828125 -7.265625 C 5.253906 -6.867188 5.46875 -6.40625 5.46875 -5.875 C 5.46875 -5.382812 5.347656 -4.988281 5.109375 -4.6875 C 4.960938 -4.519531 4.742188 -4.351562 4.453125 -4.1875 C 4.773438 -4.03125 5.03125 -3.859375 5.21875 -3.671875 C 5.570312 -3.304688 5.75 -2.832031 5.75 -2.25 C 5.75 -1.5625 5.515625 -0.976562 5.046875 -0.5 C 4.585938 -0.0195312 3.929688 0.21875 3.078125 0.21875 C 2.316406 0.21875 1.671875 0.0117188 1.140625 -0.390625 C 0.617188 -0.804688 0.359375 -1.410156 0.359375 -2.203125 C 0.359375 -2.660156 0.472656 -3.054688 0.703125 -3.390625 C 0.929688 -3.734375 1.265625 -3.992188 1.703125 -4.171875 Z M 1.703125 -4.171875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-6">
|
||||
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-7">
|
||||
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-8">
|
||||
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-0-9">
|
||||
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-10">
|
||||
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-11">
|
||||
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-12">
|
||||
<path d="M 3.1875 -0.65625 C 3.65625 -0.65625 4.039062 -0.847656 4.34375 -1.234375 C 4.644531 -1.617188 4.796875 -2.195312 4.796875 -2.96875 C 4.796875 -3.4375 4.726562 -3.835938 4.59375 -4.171875 C 4.34375 -4.816406 3.875 -5.140625 3.1875 -5.140625 C 2.507812 -5.140625 2.046875 -4.796875 1.796875 -4.109375 C 1.660156 -3.742188 1.59375 -3.28125 1.59375 -2.71875 C 1.59375 -2.269531 1.660156 -1.882812 1.796875 -1.5625 C 2.046875 -0.957031 2.507812 -0.65625 3.1875 -0.65625 Z M 0.640625 -5.828125 L 1.609375 -5.828125 L 1.609375 -5.046875 C 1.796875 -5.316406 2.007812 -5.523438 2.25 -5.671875 C 2.582031 -5.890625 2.972656 -6 3.421875 -6 C 4.085938 -6 4.648438 -5.742188 5.109375 -5.234375 C 5.566406 -4.722656 5.796875 -4 5.796875 -3.0625 C 5.796875 -1.78125 5.460938 -0.867188 4.796875 -0.328125 C 4.378906 0.0234375 3.890625 0.203125 3.328125 0.203125 C 2.878906 0.203125 2.507812 0.101562 2.21875 -0.09375 C 2.039062 -0.195312 1.84375 -0.382812 1.625 -0.65625 L 1.625 2.328125 L 0.640625 2.328125 Z M 0.640625 -5.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-13">
|
||||
<path d="M 2.796875 -5.96875 C 3.253906 -5.96875 3.65625 -5.851562 4 -5.625 C 4.175781 -5.5 4.363281 -5.3125 4.5625 -5.0625 L 4.5625 -5.796875 L 5.46875 -5.796875 L 5.46875 -0.46875 C 5.46875 0.269531 5.359375 0.851562 5.140625 1.28125 C 4.734375 2.082031 3.960938 2.484375 2.828125 2.484375 C 2.191406 2.484375 1.660156 2.335938 1.234375 2.046875 C 0.804688 1.765625 0.566406 1.328125 0.515625 0.734375 L 1.515625 0.734375 C 1.566406 0.992188 1.660156 1.191406 1.796875 1.328125 C 2.023438 1.546875 2.375 1.65625 2.84375 1.65625 C 3.601562 1.65625 4.097656 1.390625 4.328125 0.859375 C 4.472656 0.546875 4.539062 -0.0078125 4.53125 -0.8125 C 4.332031 -0.507812 4.09375 -0.285156 3.8125 -0.140625 C 3.53125 0.00390625 3.164062 0.078125 2.71875 0.078125 C 2.082031 0.078125 1.523438 -0.144531 1.046875 -0.59375 C 0.566406 -1.050781 0.328125 -1.800781 0.328125 -2.84375 C 0.328125 -3.820312 0.566406 -4.585938 1.046875 -5.140625 C 1.523438 -5.691406 2.109375 -5.96875 2.796875 -5.96875 Z M 4.5625 -2.953125 C 4.5625 -3.679688 4.410156 -4.21875 4.109375 -4.5625 C 3.816406 -4.914062 3.4375 -5.09375 2.96875 -5.09375 C 2.28125 -5.09375 1.804688 -4.769531 1.546875 -4.125 C 1.410156 -3.769531 1.34375 -3.3125 1.34375 -2.75 C 1.34375 -2.09375 1.476562 -1.59375 1.75 -1.25 C 2.019531 -0.90625 2.378906 -0.734375 2.828125 -0.734375 C 3.535156 -0.734375 4.035156 -1.050781 4.328125 -1.6875 C 4.484375 -2.050781 4.5625 -2.472656 4.5625 -2.953125 Z M 2.90625 -6 Z M 2.90625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-14">
|
||||
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-15">
|
||||
<path d="M 0.71875 -5.859375 L 1.703125 -5.859375 L 1.703125 -5.03125 C 1.929688 -5.3125 2.140625 -5.519531 2.328125 -5.65625 C 2.648438 -5.875 3.019531 -5.984375 3.4375 -5.984375 C 3.90625 -5.984375 4.28125 -5.867188 4.5625 -5.640625 C 4.71875 -5.515625 4.863281 -5.320312 5 -5.0625 C 5.21875 -5.375 5.472656 -5.601562 5.765625 -5.75 C 6.066406 -5.90625 6.398438 -5.984375 6.765625 -5.984375 C 7.554688 -5.984375 8.09375 -5.703125 8.375 -5.140625 C 8.53125 -4.828125 8.609375 -4.414062 8.609375 -3.90625 L 8.609375 0 L 7.578125 0 L 7.578125 -4.0625 C 7.578125 -4.457031 7.476562 -4.726562 7.28125 -4.875 C 7.09375 -5.019531 6.859375 -5.09375 6.578125 -5.09375 C 6.191406 -5.09375 5.859375 -4.960938 5.578125 -4.703125 C 5.296875 -4.441406 5.15625 -4.007812 5.15625 -3.40625 L 5.15625 0 L 4.15625 0 L 4.15625 -3.828125 C 4.15625 -4.222656 4.109375 -4.507812 4.015625 -4.6875 C 3.867188 -4.96875 3.585938 -5.109375 3.171875 -5.109375 C 2.804688 -5.109375 2.46875 -4.960938 2.15625 -4.671875 C 1.851562 -4.378906 1.703125 -3.859375 1.703125 -3.109375 L 1.703125 0 L 0.71875 0 Z M 0.71875 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-16">
|
||||
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
<path d="M 1.640625 -2.296875 C 1.671875 -1.890625 1.769531 -1.578125 1.9375 -1.359375 C 2.25 -0.960938 2.789062 -0.765625 3.5625 -0.765625 C 4.007812 -0.765625 4.40625 -0.863281 4.75 -1.0625 C 5.101562 -1.257812 5.28125 -1.5625 5.28125 -1.96875 C 5.28125 -2.289062 5.140625 -2.53125 4.859375 -2.6875 C 4.679688 -2.789062 4.332031 -2.910156 3.8125 -3.046875 L 2.828125 -3.28125 C 2.203125 -3.4375 1.742188 -3.613281 1.453125 -3.8125 C 0.921875 -4.144531 0.65625 -4.601562 0.65625 -5.1875 C 0.65625 -5.882812 0.90625 -6.445312 1.40625 -6.875 C 1.90625 -7.300781 2.578125 -7.515625 3.421875 -7.515625 C 4.523438 -7.515625 5.316406 -7.191406 5.796875 -6.546875 C 6.109375 -6.128906 6.257812 -5.6875 6.25 -5.21875 L 5.09375 -5.21875 C 5.0625 -5.5 4.960938 -5.75 4.796875 -5.96875 C 4.515625 -6.289062 4.023438 -6.453125 3.328125 -6.453125 C 2.859375 -6.453125 2.503906 -6.363281 2.265625 -6.1875 C 2.023438 -6.007812 1.90625 -5.773438 1.90625 -5.484375 C 1.90625 -5.171875 2.0625 -4.914062 2.375 -4.71875 C 2.5625 -4.601562 2.832031 -4.503906 3.1875 -4.421875 L 4 -4.21875 C 4.882812 -4.007812 5.476562 -3.804688 5.78125 -3.609375 C 6.257812 -3.285156 6.5 -2.789062 6.5 -2.125 C 6.5 -1.46875 6.25 -0.898438 5.75 -0.421875 C 5.257812 0.0429688 4.507812 0.28125 3.5 0.28125 C 2.40625 0.28125 1.628906 0.0351562 1.171875 -0.453125 C 0.722656 -0.953125 0.484375 -1.566406 0.453125 -2.296875 Z M 3.453125 -7.5 Z M 3.453125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-1">
|
||||
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-2">
|
||||
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-3">
|
||||
<path d="M 3.8125 -0.796875 C 4.625 -0.796875 5.179688 -1.101562 5.484375 -1.71875 C 5.785156 -2.332031 5.9375 -3.019531 5.9375 -3.78125 C 5.9375 -4.46875 5.828125 -5.023438 5.609375 -5.453125 C 5.265625 -6.117188 4.671875 -6.453125 3.828125 -6.453125 C 3.066406 -6.453125 2.515625 -6.164062 2.171875 -5.59375 C 1.835938 -5.019531 1.671875 -4.328125 1.671875 -3.515625 C 1.671875 -2.742188 1.835938 -2.097656 2.171875 -1.578125 C 2.515625 -1.054688 3.0625 -0.796875 3.8125 -0.796875 Z M 3.859375 -7.53125 C 4.796875 -7.53125 5.585938 -7.210938 6.234375 -6.578125 C 6.890625 -5.953125 7.21875 -5.03125 7.21875 -3.8125 C 7.21875 -2.632812 6.929688 -1.660156 6.359375 -0.890625 C 5.785156 -0.117188 4.894531 0.265625 3.6875 0.265625 C 2.6875 0.265625 1.890625 -0.0703125 1.296875 -0.75 C 0.703125 -1.4375 0.40625 -2.351562 0.40625 -3.5 C 0.40625 -4.726562 0.71875 -5.707031 1.34375 -6.4375 C 1.96875 -7.164062 2.804688 -7.53125 3.859375 -7.53125 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-4">
|
||||
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-2-0">
|
||||
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-1">
|
||||
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2">
|
||||
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-3">
|
||||
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
|
||||
</g>
|
||||
<g id="glyph-2-4">
|
||||
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
|
||||
</g>
|
||||
</g>
|
||||
<clipPath id="clip-0">
|
||||
<path clip-rule="nonzero" d="M 61.019531 6.972656 L 353.023438 6.972656 L 353.023438 391.613281 L 61.019531 391.613281 Z M 61.019531 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-1">
|
||||
<path clip-rule="nonzero" d="M 61.019531 297 L 353.023438 297 L 353.023438 299 L 61.019531 299 Z M 61.019531 297 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-2">
|
||||
<path clip-rule="nonzero" d="M 61.019531 198 L 353.023438 198 L 353.023438 200 L 61.019531 200 Z M 61.019531 198 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-3">
|
||||
<path clip-rule="nonzero" d="M 61.019531 98 L 353.023438 98 L 353.023438 100 L 61.019531 100 Z M 61.019531 98 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-4">
|
||||
<path clip-rule="nonzero" d="M 102 6.972656 L 104 6.972656 L 104 391.613281 L 102 391.613281 Z M 102 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-5">
|
||||
<path clip-rule="nonzero" d="M 171 6.972656 L 173 6.972656 L 173 391.613281 L 171 391.613281 Z M 171 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-6">
|
||||
<path clip-rule="nonzero" d="M 241 6.972656 L 243 6.972656 L 243 391.613281 L 241 391.613281 Z M 241 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-7">
|
||||
<path clip-rule="nonzero" d="M 310 6.972656 L 312 6.972656 L 312 391.613281 L 310 391.613281 Z M 310 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-8">
|
||||
<path clip-rule="nonzero" d="M 102 6.972656 L 104 6.972656 L 104 12 L 102 12 Z M 102 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-9">
|
||||
<path clip-rule="nonzero" d="M 146 6.972656 L 199 6.972656 L 199 215 L 146 215 Z M 146 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-10">
|
||||
<path clip-rule="nonzero" d="M 145 6.972656 L 199 6.972656 L 199 215 L 145 215 Z M 145 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-11">
|
||||
<path clip-rule="nonzero" d="M 215 6.972656 L 268 6.972656 L 268 117 L 215 117 Z M 215 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-12">
|
||||
<path clip-rule="nonzero" d="M 215 6.972656 L 269 6.972656 L 269 117 L 215 117 Z M 215 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-13">
|
||||
<path clip-rule="nonzero" d="M 285 6.972656 L 338 6.972656 L 338 199 L 285 199 Z M 285 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-14">
|
||||
<path clip-rule="nonzero" d="M 284 6.972656 L 338 6.972656 L 338 200 L 284 200 Z M 284 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-15">
|
||||
<path clip-rule="nonzero" d="M 61.019531 6.972656 L 353.023438 6.972656 L 353.023438 391.613281 L 61.019531 391.613281 Z M 61.019531 6.972656 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 432 L 360 432 L 360 0 L 0 0 Z M 0 432 "/>
|
||||
<g clip-path="url(#clip-0)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-1)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 298.28125 L 353.027344 298.28125 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-2)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 198.707031 L 353.027344 198.707031 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-3)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 99.136719 L 353.027344 99.136719 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-4)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 391.613281 L 102.734375 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-5)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 391.613281 L 172.261719 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-6)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 391.613281 L 241.785156 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-7)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 391.613281 L 311.3125 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-8)">
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 11.433594 L 102.734375 -289.269531 "/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 257.480469 L 102.734375 350.308594 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.664062 11.433594 L 76.664062 257.480469 L 128.808594 257.480469 L 128.808594 11.433594 Z M 76.664062 11.433594 "/>
|
||||
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.664062 206.1875 L 128.808594 206.1875 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 214.109375 L 172.261719 367.035156 "/>
|
||||
<g clip-path="url(#clip-9)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 146.1875 -80.816406 L 146.1875 214.109375 L 198.332031 214.109375 L 198.332031 -80.816406 Z M 146.1875 -80.816406 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-10)">
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.1875 -80.816406 L 146.1875 214.109375 L 198.332031 214.109375 L 198.332031 -80.816406 Z M 146.1875 -80.816406 "/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.1875 126.53125 L 198.332031 126.53125 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 116.261719 L 241.785156 280.308594 "/>
|
||||
<g clip-path="url(#clip-11)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 215.714844 -212.34375 L 215.714844 116.261719 L 267.859375 116.261719 L 267.859375 -212.34375 Z M 215.714844 -212.34375 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-12)">
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 215.714844 -212.34375 L 215.714844 116.261719 L 267.859375 116.261719 L 267.859375 -212.34375 Z M 215.714844 -212.34375 "/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 215.714844 29.898438 L 267.859375 29.898438 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 198.609375 L 311.3125 374.128906 "/>
|
||||
<g clip-path="url(#clip-13)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 285.238281 -120.875 L 285.238281 198.609375 L 337.382812 198.609375 L 337.382812 -120.875 Z M 285.238281 -120.875 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-14)">
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.238281 -120.875 L 285.238281 198.609375 L 337.382812 198.609375 L 337.382812 -120.875 Z M 285.238281 -120.875 "/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.238281 113.449219 L 337.382812 113.449219 "/>
|
||||
<g clip-path="url(#clip-15)">
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="29.828125" y="302.296875"/>
|
||||
<use xlink:href="#glyph-0-1" x="36.057031" y="302.296875"/>
|
||||
<use xlink:href="#glyph-0-1" x="42.285938" y="302.296875"/>
|
||||
<use xlink:href="#glyph-0-1" x="48.514844" y="302.296875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-2" x="29.828125" y="202.726562"/>
|
||||
<use xlink:href="#glyph-0-1" x="36.057031" y="202.726562"/>
|
||||
<use xlink:href="#glyph-0-1" x="42.285938" y="202.726562"/>
|
||||
<use xlink:href="#glyph-0-1" x="48.514844" y="202.726562"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-3" x="23.597656" y="103.152344"/>
|
||||
<use xlink:href="#glyph-0-4" x="29.826563" y="103.152344"/>
|
||||
<use xlink:href="#glyph-0-1" x="36.055469" y="103.152344"/>
|
||||
<use xlink:href="#glyph-0-1" x="42.284375" y="103.152344"/>
|
||||
<use xlink:href="#glyph-0-1" x="48.513281" y="103.152344"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 298.28125 L 61.019531 298.28125 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 198.707031 L 61.019531 198.707031 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 99.136719 L 61.019531 99.136719 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 395.101562 L 102.734375 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 395.101562 L 172.261719 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 395.101562 L 241.785156 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 395.101562 L 311.3125 391.613281 "/>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-5" x="87.796875" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-6" x="95.885156" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="98.373437" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-8" x="104.602344" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-9" x="107.714062" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="113.942969" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-11" x="157.007812" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-12" x="162.607812" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="168.836719" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-6" x="172.566406" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="175.054688" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-13" x="181.283594" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-11" x="221.5625" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-14" x="227.1625" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="233.391406" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="242.721094" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-9" x="252.050781" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="258.279688" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-16" x="292.632812" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-14" x="298.861719" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-8" x="305.090625" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-14" x="308.202344" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="314.43125" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="323.760938" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0" x="184.453125" y="421.929688"/>
|
||||
<use xlink:href="#glyph-1-1" x="191.453125" y="421.929688"/>
|
||||
<use xlink:href="#glyph-1-2" x="199.239258" y="421.929688"/>
|
||||
<use xlink:href="#glyph-1-0" x="207.025391" y="421.929688"/>
|
||||
<use xlink:href="#glyph-1-3" x="214.025391" y="421.929688"/>
|
||||
<use xlink:href="#glyph-1-4" x="221.811523" y="421.929688"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-0" x="17.015625" y="216.417969"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="209.417969"/>
|
||||
<use xlink:href="#glyph-2-2" x="17.015625" y="201.631836"/>
|
||||
<use xlink:href="#glyph-2-3" x="17.015625" y="193.845703"/>
|
||||
<use xlink:href="#glyph-2-4" x="17.015625" y="186.05957"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 45 KiB |
|
@ -0,0 +1,186 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="432" viewBox="0 0 360 432">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 3.046875 -4.546875 C 3.484375 -4.546875 3.820312 -4.664062 4.0625 -4.90625 C 4.3125 -5.15625 4.4375 -5.445312 4.4375 -5.78125 C 4.4375 -6.070312 4.316406 -6.335938 4.078125 -6.578125 C 3.847656 -6.828125 3.492188 -6.953125 3.015625 -6.953125 C 2.535156 -6.953125 2.191406 -6.828125 1.984375 -6.578125 C 1.773438 -6.335938 1.671875 -6.054688 1.671875 -5.734375 C 1.671875 -5.359375 1.804688 -5.066406 2.078125 -4.859375 C 2.347656 -4.648438 2.671875 -4.546875 3.046875 -4.546875 Z M 3.109375 -0.671875 C 3.566406 -0.671875 3.941406 -0.789062 4.234375 -1.03125 C 4.535156 -1.28125 4.6875 -1.648438 4.6875 -2.140625 C 4.6875 -2.648438 4.53125 -3.035156 4.21875 -3.296875 C 3.914062 -3.554688 3.519531 -3.6875 3.03125 -3.6875 C 2.5625 -3.6875 2.175781 -3.550781 1.875 -3.28125 C 1.582031 -3.019531 1.4375 -2.648438 1.4375 -2.171875 C 1.4375 -1.765625 1.570312 -1.410156 1.84375 -1.109375 C 2.113281 -0.816406 2.535156 -0.671875 3.109375 -0.671875 Z M 1.703125 -4.171875 C 1.429688 -4.285156 1.21875 -4.421875 1.0625 -4.578125 C 0.78125 -4.867188 0.640625 -5.25 0.640625 -5.71875 C 0.640625 -6.300781 0.847656 -6.800781 1.265625 -7.21875 C 1.691406 -7.644531 2.289062 -7.859375 3.0625 -7.859375 C 3.820312 -7.859375 4.410156 -7.660156 4.828125 -7.265625 C 5.253906 -6.867188 5.46875 -6.40625 5.46875 -5.875 C 5.46875 -5.382812 5.347656 -4.988281 5.109375 -4.6875 C 4.960938 -4.519531 4.742188 -4.351562 4.453125 -4.1875 C 4.773438 -4.03125 5.03125 -3.859375 5.21875 -3.671875 C 5.570312 -3.304688 5.75 -2.832031 5.75 -2.25 C 5.75 -1.5625 5.515625 -0.976562 5.046875 -0.5 C 4.585938 -0.0195312 3.929688 0.21875 3.078125 0.21875 C 2.316406 0.21875 1.671875 0.0117188 1.140625 -0.390625 C 0.617188 -0.804688 0.359375 -1.410156 0.359375 -2.203125 C 0.359375 -2.660156 0.472656 -3.054688 0.703125 -3.390625 C 0.929688 -3.734375 1.265625 -3.992188 1.703125 -4.171875 Z M 1.703125 -4.171875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-6">
|
||||
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-7">
|
||||
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-8">
|
||||
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-0-9">
|
||||
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-10">
|
||||
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-11">
|
||||
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-12">
|
||||
<path d="M 3.1875 -0.65625 C 3.65625 -0.65625 4.039062 -0.847656 4.34375 -1.234375 C 4.644531 -1.617188 4.796875 -2.195312 4.796875 -2.96875 C 4.796875 -3.4375 4.726562 -3.835938 4.59375 -4.171875 C 4.34375 -4.816406 3.875 -5.140625 3.1875 -5.140625 C 2.507812 -5.140625 2.046875 -4.796875 1.796875 -4.109375 C 1.660156 -3.742188 1.59375 -3.28125 1.59375 -2.71875 C 1.59375 -2.269531 1.660156 -1.882812 1.796875 -1.5625 C 2.046875 -0.957031 2.507812 -0.65625 3.1875 -0.65625 Z M 0.640625 -5.828125 L 1.609375 -5.828125 L 1.609375 -5.046875 C 1.796875 -5.316406 2.007812 -5.523438 2.25 -5.671875 C 2.582031 -5.890625 2.972656 -6 3.421875 -6 C 4.085938 -6 4.648438 -5.742188 5.109375 -5.234375 C 5.566406 -4.722656 5.796875 -4 5.796875 -3.0625 C 5.796875 -1.78125 5.460938 -0.867188 4.796875 -0.328125 C 4.378906 0.0234375 3.890625 0.203125 3.328125 0.203125 C 2.878906 0.203125 2.507812 0.101562 2.21875 -0.09375 C 2.039062 -0.195312 1.84375 -0.382812 1.625 -0.65625 L 1.625 2.328125 L 0.640625 2.328125 Z M 0.640625 -5.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-13">
|
||||
<path d="M 2.796875 -5.96875 C 3.253906 -5.96875 3.65625 -5.851562 4 -5.625 C 4.175781 -5.5 4.363281 -5.3125 4.5625 -5.0625 L 4.5625 -5.796875 L 5.46875 -5.796875 L 5.46875 -0.46875 C 5.46875 0.269531 5.359375 0.851562 5.140625 1.28125 C 4.734375 2.082031 3.960938 2.484375 2.828125 2.484375 C 2.191406 2.484375 1.660156 2.335938 1.234375 2.046875 C 0.804688 1.765625 0.566406 1.328125 0.515625 0.734375 L 1.515625 0.734375 C 1.566406 0.992188 1.660156 1.191406 1.796875 1.328125 C 2.023438 1.546875 2.375 1.65625 2.84375 1.65625 C 3.601562 1.65625 4.097656 1.390625 4.328125 0.859375 C 4.472656 0.546875 4.539062 -0.0078125 4.53125 -0.8125 C 4.332031 -0.507812 4.09375 -0.285156 3.8125 -0.140625 C 3.53125 0.00390625 3.164062 0.078125 2.71875 0.078125 C 2.082031 0.078125 1.523438 -0.144531 1.046875 -0.59375 C 0.566406 -1.050781 0.328125 -1.800781 0.328125 -2.84375 C 0.328125 -3.820312 0.566406 -4.585938 1.046875 -5.140625 C 1.523438 -5.691406 2.109375 -5.96875 2.796875 -5.96875 Z M 4.5625 -2.953125 C 4.5625 -3.679688 4.410156 -4.21875 4.109375 -4.5625 C 3.816406 -4.914062 3.4375 -5.09375 2.96875 -5.09375 C 2.28125 -5.09375 1.804688 -4.769531 1.546875 -4.125 C 1.410156 -3.769531 1.34375 -3.3125 1.34375 -2.75 C 1.34375 -2.09375 1.476562 -1.59375 1.75 -1.25 C 2.019531 -0.90625 2.378906 -0.734375 2.828125 -0.734375 C 3.535156 -0.734375 4.035156 -1.050781 4.328125 -1.6875 C 4.484375 -2.050781 4.5625 -2.472656 4.5625 -2.953125 Z M 2.90625 -6 Z M 2.90625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-14">
|
||||
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-15">
|
||||
<path d="M 0.71875 -5.859375 L 1.703125 -5.859375 L 1.703125 -5.03125 C 1.929688 -5.3125 2.140625 -5.519531 2.328125 -5.65625 C 2.648438 -5.875 3.019531 -5.984375 3.4375 -5.984375 C 3.90625 -5.984375 4.28125 -5.867188 4.5625 -5.640625 C 4.71875 -5.515625 4.863281 -5.320312 5 -5.0625 C 5.21875 -5.375 5.472656 -5.601562 5.765625 -5.75 C 6.066406 -5.90625 6.398438 -5.984375 6.765625 -5.984375 C 7.554688 -5.984375 8.09375 -5.703125 8.375 -5.140625 C 8.53125 -4.828125 8.609375 -4.414062 8.609375 -3.90625 L 8.609375 0 L 7.578125 0 L 7.578125 -4.0625 C 7.578125 -4.457031 7.476562 -4.726562 7.28125 -4.875 C 7.09375 -5.019531 6.859375 -5.09375 6.578125 -5.09375 C 6.191406 -5.09375 5.859375 -4.960938 5.578125 -4.703125 C 5.296875 -4.441406 5.15625 -4.007812 5.15625 -3.40625 L 5.15625 0 L 4.15625 0 L 4.15625 -3.828125 C 4.15625 -4.222656 4.109375 -4.507812 4.015625 -4.6875 C 3.867188 -4.96875 3.585938 -5.109375 3.171875 -5.109375 C 2.804688 -5.109375 2.46875 -4.960938 2.15625 -4.671875 C 1.851562 -4.378906 1.703125 -3.859375 1.703125 -3.109375 L 1.703125 0 L 0.71875 0 Z M 0.71875 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-16">
|
||||
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
<path d="M 1.640625 -2.296875 C 1.671875 -1.890625 1.769531 -1.578125 1.9375 -1.359375 C 2.25 -0.960938 2.789062 -0.765625 3.5625 -0.765625 C 4.007812 -0.765625 4.40625 -0.863281 4.75 -1.0625 C 5.101562 -1.257812 5.28125 -1.5625 5.28125 -1.96875 C 5.28125 -2.289062 5.140625 -2.53125 4.859375 -2.6875 C 4.679688 -2.789062 4.332031 -2.910156 3.8125 -3.046875 L 2.828125 -3.28125 C 2.203125 -3.4375 1.742188 -3.613281 1.453125 -3.8125 C 0.921875 -4.144531 0.65625 -4.601562 0.65625 -5.1875 C 0.65625 -5.882812 0.90625 -6.445312 1.40625 -6.875 C 1.90625 -7.300781 2.578125 -7.515625 3.421875 -7.515625 C 4.523438 -7.515625 5.316406 -7.191406 5.796875 -6.546875 C 6.109375 -6.128906 6.257812 -5.6875 6.25 -5.21875 L 5.09375 -5.21875 C 5.0625 -5.5 4.960938 -5.75 4.796875 -5.96875 C 4.515625 -6.289062 4.023438 -6.453125 3.328125 -6.453125 C 2.859375 -6.453125 2.503906 -6.363281 2.265625 -6.1875 C 2.023438 -6.007812 1.90625 -5.773438 1.90625 -5.484375 C 1.90625 -5.171875 2.0625 -4.914062 2.375 -4.71875 C 2.5625 -4.601562 2.832031 -4.503906 3.1875 -4.421875 L 4 -4.21875 C 4.882812 -4.007812 5.476562 -3.804688 5.78125 -3.609375 C 6.257812 -3.285156 6.5 -2.789062 6.5 -2.125 C 6.5 -1.46875 6.25 -0.898438 5.75 -0.421875 C 5.257812 0.0429688 4.507812 0.28125 3.5 0.28125 C 2.40625 0.28125 1.628906 0.0351562 1.171875 -0.453125 C 0.722656 -0.953125 0.484375 -1.566406 0.453125 -2.296875 Z M 3.453125 -7.5 Z M 3.453125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-1">
|
||||
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-2">
|
||||
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-3">
|
||||
<path d="M 3.8125 -0.796875 C 4.625 -0.796875 5.179688 -1.101562 5.484375 -1.71875 C 5.785156 -2.332031 5.9375 -3.019531 5.9375 -3.78125 C 5.9375 -4.46875 5.828125 -5.023438 5.609375 -5.453125 C 5.265625 -6.117188 4.671875 -6.453125 3.828125 -6.453125 C 3.066406 -6.453125 2.515625 -6.164062 2.171875 -5.59375 C 1.835938 -5.019531 1.671875 -4.328125 1.671875 -3.515625 C 1.671875 -2.742188 1.835938 -2.097656 2.171875 -1.578125 C 2.515625 -1.054688 3.0625 -0.796875 3.8125 -0.796875 Z M 3.859375 -7.53125 C 4.796875 -7.53125 5.585938 -7.210938 6.234375 -6.578125 C 6.890625 -5.953125 7.21875 -5.03125 7.21875 -3.8125 C 7.21875 -2.632812 6.929688 -1.660156 6.359375 -0.890625 C 5.785156 -0.117188 4.894531 0.265625 3.6875 0.265625 C 2.6875 0.265625 1.890625 -0.0703125 1.296875 -0.75 C 0.703125 -1.4375 0.40625 -2.351562 0.40625 -3.5 C 0.40625 -4.726562 0.71875 -5.707031 1.34375 -6.4375 C 1.96875 -7.164062 2.804688 -7.53125 3.859375 -7.53125 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-4">
|
||||
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-2-0">
|
||||
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-1">
|
||||
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2">
|
||||
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-3">
|
||||
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
|
||||
</g>
|
||||
<g id="glyph-2-4">
|
||||
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
|
||||
</g>
|
||||
</g>
|
||||
</defs>
|
||||
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 432 L 360 432 L 360 0 L 0 0 Z M 0 432 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 298.28125 L 353.027344 298.28125 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 198.707031 L 353.027344 198.707031 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 99.136719 L 353.027344 99.136719 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 391.613281 L 102.734375 6.972656 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 391.613281 L 172.261719 6.972656 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 391.613281 L 241.785156 6.972656 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 391.613281 L 311.3125 6.972656 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 11.433594 L 102.734375 -289.269531 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 257.480469 L 102.734375 350.308594 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.664062 11.433594 L 76.664062 257.480469 L 128.808594 257.480469 L 128.808594 11.433594 Z M 76.664062 11.433594 "/>
|
||||
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.664062 206.1875 L 128.808594 206.1875 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 214.109375 L 172.261719 367.035156 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.1875 -80.816406 L 146.1875 214.109375 L 198.332031 214.109375 L 198.332031 -80.816406 Z M 146.1875 -80.816406 "/>
|
||||
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.1875 126.53125 L 198.332031 126.53125 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 116.261719 L 241.785156 280.308594 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 215.714844 -212.34375 L 215.714844 116.261719 L 267.859375 116.261719 L 267.859375 -212.34375 Z M 215.714844 -212.34375 "/>
|
||||
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 215.714844 29.898438 L 267.859375 29.898438 "/>
|
||||
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 198.609375 L 311.3125 374.128906 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.238281 -120.875 L 285.238281 198.609375 L 337.382812 198.609375 L 337.382812 -120.875 Z M 285.238281 -120.875 "/>
|
||||
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.238281 113.449219 L 337.382812 113.449219 "/>
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="29.828125" y="302.296875"/>
|
||||
<use xlink:href="#glyph-0-1" x="36.057031" y="302.296875"/>
|
||||
<use xlink:href="#glyph-0-1" x="42.285938" y="302.296875"/>
|
||||
<use xlink:href="#glyph-0-1" x="48.514844" y="302.296875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-2" x="29.828125" y="202.726562"/>
|
||||
<use xlink:href="#glyph-0-1" x="36.057031" y="202.726562"/>
|
||||
<use xlink:href="#glyph-0-1" x="42.285938" y="202.726562"/>
|
||||
<use xlink:href="#glyph-0-1" x="48.514844" y="202.726562"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-3" x="23.597656" y="103.152344"/>
|
||||
<use xlink:href="#glyph-0-4" x="29.826563" y="103.152344"/>
|
||||
<use xlink:href="#glyph-0-1" x="36.055469" y="103.152344"/>
|
||||
<use xlink:href="#glyph-0-1" x="42.284375" y="103.152344"/>
|
||||
<use xlink:href="#glyph-0-1" x="48.513281" y="103.152344"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 298.28125 L 61.019531 298.28125 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 198.707031 L 61.019531 198.707031 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 99.136719 L 61.019531 99.136719 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 395.101562 L 102.734375 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 395.101562 L 172.261719 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 395.101562 L 241.785156 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 395.101562 L 311.3125 391.613281 "/>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-5" x="87.796875" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-6" x="95.885156" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="98.373437" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-8" x="104.602344" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-9" x="107.714062" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="113.942969" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-11" x="157.007812" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-12" x="162.607812" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="168.836719" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-6" x="172.566406" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="175.054688" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-13" x="181.283594" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-11" x="221.5625" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-14" x="227.1625" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="233.391406" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="242.721094" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-9" x="252.050781" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-10" x="258.279688" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-16" x="292.632812" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-14" x="298.861719" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-8" x="305.090625" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-14" x="308.202344" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-15" x="314.43125" y="405.921875"/>
|
||||
<use xlink:href="#glyph-0-7" x="323.760938" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0" x="184.453125" y="421.929688"/>
|
||||
<use xlink:href="#glyph-1-1" x="191.453125" y="421.929688"/>
|
||||
<use xlink:href="#glyph-1-2" x="199.239258" y="421.929688"/>
|
||||
<use xlink:href="#glyph-1-0" x="207.025391" y="421.929688"/>
|
||||
<use xlink:href="#glyph-1-3" x="214.025391" y="421.929688"/>
|
||||
<use xlink:href="#glyph-1-4" x="221.811523" y="421.929688"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-0" x="17.015625" y="216.417969"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="209.417969"/>
|
||||
<use xlink:href="#glyph-2-2" x="17.015625" y="201.631836"/>
|
||||
<use xlink:href="#glyph-2-3" x="17.015625" y="193.845703"/>
|
||||
<use xlink:href="#glyph-2-4" x="17.015625" y="186.05957"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 37 KiB |
After Width: | Height: | Size: 101 KiB |
|
@ -0,0 +1,439 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="432" viewBox="0 0 360 432">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
<path d="M 1.296875 -1.8125 C 1.316406 -1.488281 1.394531 -1.238281 1.53125 -1.0625 C 1.78125 -0.75 2.207031 -0.59375 2.8125 -0.59375 C 3.164062 -0.59375 3.476562 -0.671875 3.75 -0.828125 C 4.03125 -0.984375 4.171875 -1.226562 4.171875 -1.5625 C 4.171875 -1.8125 4.054688 -2 3.828125 -2.125 C 3.691406 -2.207031 3.414062 -2.300781 3 -2.40625 L 2.234375 -2.59375 C 1.742188 -2.71875 1.378906 -2.851562 1.140625 -3 C 0.722656 -3.257812 0.515625 -3.625 0.515625 -4.09375 C 0.515625 -4.632812 0.710938 -5.070312 1.109375 -5.40625 C 1.503906 -5.75 2.035156 -5.921875 2.703125 -5.921875 C 3.566406 -5.921875 4.191406 -5.664062 4.578125 -5.15625 C 4.816406 -4.832031 4.9375 -4.484375 4.9375 -4.109375 L 4.015625 -4.109375 C 3.992188 -4.328125 3.914062 -4.53125 3.78125 -4.71875 C 3.5625 -4.96875 3.175781 -5.09375 2.625 -5.09375 C 2.257812 -5.09375 1.976562 -5.019531 1.78125 -4.875 C 1.59375 -4.738281 1.5 -4.554688 1.5 -4.328125 C 1.5 -4.078125 1.625 -3.878906 1.875 -3.734375 C 2.019531 -3.640625 2.234375 -3.554688 2.515625 -3.484375 L 3.15625 -3.328125 C 3.851562 -3.160156 4.320312 -3 4.5625 -2.84375 C 4.9375 -2.59375 5.125 -2.203125 5.125 -1.671875 C 5.125 -1.160156 4.925781 -0.71875 4.53125 -0.34375 C 4.144531 0.0273438 3.550781 0.21875 2.75 0.21875 C 1.894531 0.21875 1.285156 0.0234375 0.921875 -0.359375 C 0.566406 -0.753906 0.378906 -1.238281 0.359375 -1.8125 Z M 2.71875 -5.921875 Z M 2.71875 -5.921875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 3.15625 -0.65625 C 3.601562 -0.65625 3.976562 -0.84375 4.28125 -1.21875 C 4.582031 -1.601562 4.734375 -2.171875 4.734375 -2.921875 C 4.734375 -3.378906 4.664062 -3.773438 4.53125 -4.109375 C 4.28125 -4.742188 3.820312 -5.0625 3.15625 -5.0625 C 2.476562 -5.0625 2.015625 -4.726562 1.765625 -4.0625 C 1.628906 -3.695312 1.5625 -3.238281 1.5625 -2.6875 C 1.5625 -2.238281 1.628906 -1.859375 1.765625 -1.546875 C 2.015625 -0.953125 2.476562 -0.65625 3.15625 -0.65625 Z M 0.640625 -5.75 L 1.578125 -5.75 L 1.578125 -4.984375 C 1.773438 -5.242188 1.988281 -5.445312 2.21875 -5.59375 C 2.539062 -5.8125 2.925781 -5.921875 3.375 -5.921875 C 4.03125 -5.921875 4.582031 -5.664062 5.03125 -5.15625 C 5.488281 -4.65625 5.71875 -3.941406 5.71875 -3.015625 C 5.71875 -1.753906 5.390625 -0.851562 4.734375 -0.3125 C 4.316406 0.0195312 3.832031 0.1875 3.28125 0.1875 C 2.84375 0.1875 2.476562 0.0898438 2.1875 -0.09375 C 2.007812 -0.195312 1.816406 -0.378906 1.609375 -0.640625 L 1.609375 2.296875 L 0.640625 2.296875 Z M 0.640625 -5.75 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 0.734375 -5.78125 L 1.65625 -5.78125 L 1.65625 -4.78125 C 1.738281 -4.976562 1.925781 -5.210938 2.21875 -5.484375 C 2.507812 -5.765625 2.847656 -5.90625 3.234375 -5.90625 C 3.253906 -5.90625 3.285156 -5.898438 3.328125 -5.890625 C 3.367188 -5.890625 3.441406 -5.882812 3.546875 -5.875 L 3.546875 -4.859375 C 3.492188 -4.867188 3.441406 -4.875 3.390625 -4.875 C 3.335938 -4.875 3.285156 -4.875 3.234375 -4.875 C 2.742188 -4.875 2.363281 -4.71875 2.09375 -4.40625 C 1.832031 -4.09375 1.703125 -3.734375 1.703125 -3.328125 L 1.703125 0 L 0.734375 0 Z M 0.734375 -5.78125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 0.71875 -5.75 L 1.703125 -5.75 L 1.703125 0 L 0.71875 0 Z M 0.71875 -7.921875 L 1.703125 -7.921875 L 1.703125 -6.828125 L 0.71875 -6.828125 Z M 0.71875 -7.921875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 0.71875 -5.78125 L 1.640625 -5.78125 L 1.640625 -4.953125 C 1.910156 -5.296875 2.195312 -5.539062 2.5 -5.6875 C 2.8125 -5.832031 3.148438 -5.90625 3.515625 -5.90625 C 4.335938 -5.90625 4.894531 -5.617188 5.1875 -5.046875 C 5.34375 -4.734375 5.421875 -4.285156 5.421875 -3.703125 L 5.421875 0 L 4.4375 0 L 4.4375 -3.640625 C 4.4375 -3.992188 4.382812 -4.28125 4.28125 -4.5 C 4.101562 -4.851562 3.789062 -5.03125 3.34375 -5.03125 C 3.113281 -5.03125 2.921875 -5.007812 2.765625 -4.96875 C 2.503906 -4.882812 2.273438 -4.722656 2.078125 -4.484375 C 1.910156 -4.296875 1.800781 -4.097656 1.75 -3.890625 C 1.707031 -3.691406 1.6875 -3.40625 1.6875 -3.03125 L 1.6875 0 L 0.71875 0 Z M 3 -5.921875 Z M 3 -5.921875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 2.75 -5.875 C 3.207031 -5.875 3.601562 -5.765625 3.9375 -5.546875 C 4.125 -5.421875 4.3125 -5.238281 4.5 -5 L 4.5 -5.71875 L 5.390625 -5.71875 L 5.390625 -0.46875 C 5.390625 0.257812 5.285156 0.835938 5.078125 1.265625 C 4.671875 2.046875 3.90625 2.4375 2.78125 2.4375 C 2.164062 2.4375 1.644531 2.296875 1.21875 2.015625 C 0.789062 1.742188 0.550781 1.3125 0.5 0.71875 L 1.5 0.71875 C 1.539062 0.976562 1.632812 1.175781 1.78125 1.3125 C 2 1.53125 2.34375 1.640625 2.8125 1.640625 C 3.550781 1.640625 4.035156 1.378906 4.265625 0.859375 C 4.410156 0.546875 4.472656 -0.00390625 4.453125 -0.796875 C 4.265625 -0.503906 4.03125 -0.285156 3.75 -0.140625 C 3.476562 -0.00390625 3.117188 0.0625 2.671875 0.0625 C 2.046875 0.0625 1.5 -0.15625 1.03125 -0.59375 C 0.5625 -1.039062 0.328125 -1.773438 0.328125 -2.796875 C 0.328125 -3.765625 0.5625 -4.519531 1.03125 -5.0625 C 1.507812 -5.601562 2.082031 -5.875 2.75 -5.875 Z M 4.5 -2.90625 C 4.5 -3.625 4.347656 -4.15625 4.046875 -4.5 C 3.753906 -4.84375 3.378906 -5.015625 2.921875 -5.015625 C 2.242188 -5.015625 1.78125 -4.695312 1.53125 -4.0625 C 1.394531 -3.71875 1.328125 -3.269531 1.328125 -2.71875 C 1.328125 -2.070312 1.457031 -1.578125 1.71875 -1.234375 C 1.988281 -0.890625 2.34375 -0.71875 2.78125 -0.71875 C 3.476562 -0.71875 3.972656 -1.035156 4.265625 -1.671875 C 4.421875 -2.023438 4.5 -2.4375 4.5 -2.90625 Z M 2.859375 -5.921875 Z M 2.859375 -5.921875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-6">
|
||||
<path d="M 1.6875 -5.78125 L 1.6875 -1.9375 C 1.6875 -1.644531 1.734375 -1.40625 1.828125 -1.21875 C 1.992188 -0.875 2.3125 -0.703125 2.78125 -0.703125 C 3.457031 -0.703125 3.921875 -1.003906 4.171875 -1.609375 C 4.304688 -1.929688 4.375 -2.375 4.375 -2.9375 L 4.375 -5.78125 L 5.34375 -5.78125 L 5.34375 0 L 4.421875 0 L 4.4375 -0.859375 C 4.3125 -0.628906 4.15625 -0.441406 3.96875 -0.296875 C 3.59375 0.00390625 3.140625 0.15625 2.609375 0.15625 C 1.785156 0.15625 1.226562 -0.117188 0.9375 -0.671875 C 0.769531 -0.960938 0.6875 -1.351562 0.6875 -1.84375 L 0.6875 -5.78125 Z M 3.015625 -5.921875 Z M 3.015625 -5.921875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-7">
|
||||
<path d="M 0.71875 -5.78125 L 1.671875 -5.78125 L 1.671875 -4.953125 C 1.898438 -5.242188 2.109375 -5.453125 2.296875 -5.578125 C 2.617188 -5.796875 2.984375 -5.90625 3.390625 -5.90625 C 3.847656 -5.90625 4.21875 -5.789062 4.5 -5.5625 C 4.65625 -5.4375 4.800781 -5.25 4.9375 -5 C 5.144531 -5.300781 5.394531 -5.523438 5.6875 -5.671875 C 5.976562 -5.828125 6.304688 -5.90625 6.671875 -5.90625 C 7.453125 -5.90625 7.984375 -5.625 8.265625 -5.0625 C 8.410156 -4.757812 8.484375 -4.351562 8.484375 -3.84375 L 8.484375 0 L 7.46875 0 L 7.46875 -4.015625 C 7.46875 -4.398438 7.375 -4.660156 7.1875 -4.796875 C 7 -4.941406 6.765625 -5.015625 6.484375 -5.015625 C 6.097656 -5.015625 5.769531 -4.882812 5.5 -4.625 C 5.226562 -4.375 5.09375 -3.953125 5.09375 -3.359375 L 5.09375 0 L 4.09375 0 L 4.09375 -3.765625 C 4.09375 -4.160156 4.046875 -4.445312 3.953125 -4.625 C 3.804688 -4.894531 3.535156 -5.03125 3.140625 -5.03125 C 2.765625 -5.03125 2.425781 -4.890625 2.125 -4.609375 C 1.832031 -4.328125 1.6875 -3.8125 1.6875 -3.0625 L 1.6875 0 L 0.71875 0 Z M 0.71875 -5.78125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-8">
|
||||
<path d="M 3.125 -5.90625 C 3.53125 -5.90625 3.925781 -5.804688 4.3125 -5.609375 C 4.695312 -5.421875 4.988281 -5.175781 5.1875 -4.875 C 5.382812 -4.582031 5.515625 -4.238281 5.578125 -3.84375 C 5.628906 -3.582031 5.65625 -3.160156 5.65625 -2.578125 L 1.421875 -2.578125 C 1.441406 -1.992188 1.582031 -1.523438 1.84375 -1.171875 C 2.101562 -0.816406 2.503906 -0.640625 3.046875 -0.640625 C 3.554688 -0.640625 3.960938 -0.804688 4.265625 -1.140625 C 4.429688 -1.328125 4.550781 -1.550781 4.625 -1.8125 L 5.578125 -1.8125 C 5.554688 -1.601562 5.472656 -1.367188 5.328125 -1.109375 C 5.191406 -0.847656 5.035156 -0.632812 4.859375 -0.46875 C 4.554688 -0.175781 4.191406 0.0195312 3.765625 0.125 C 3.523438 0.175781 3.257812 0.203125 2.96875 0.203125 C 2.25 0.203125 1.640625 -0.0546875 1.140625 -0.578125 C 0.640625 -1.097656 0.390625 -1.832031 0.390625 -2.78125 C 0.390625 -3.707031 0.640625 -4.457031 1.140625 -5.03125 C 1.648438 -5.613281 2.3125 -5.90625 3.125 -5.90625 Z M 4.671875 -3.34375 C 4.628906 -3.769531 4.535156 -4.109375 4.390625 -4.359375 C 4.117188 -4.828125 3.675781 -5.0625 3.0625 -5.0625 C 2.613281 -5.0625 2.238281 -4.898438 1.9375 -4.578125 C 1.632812 -4.253906 1.472656 -3.84375 1.453125 -3.34375 Z M 3.03125 -5.921875 Z M 3.03125 -5.921875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-9">
|
||||
<path d="M 1.15625 -5.78125 L 2.265625 -1.21875 L 3.390625 -5.78125 L 4.484375 -5.78125 L 5.625 -1.25 L 6.796875 -5.78125 L 7.765625 -5.78125 L 6.09375 0 L 5.09375 0 L 3.90625 -4.46875 L 2.765625 0 L 1.765625 0 L 0.09375 -5.78125 Z M 1.15625 -5.78125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-10">
|
||||
<path d="M 0.90625 -7.390625 L 1.890625 -7.390625 L 1.890625 -5.78125 L 2.8125 -5.78125 L 2.8125 -4.984375 L 1.890625 -4.984375 L 1.890625 -1.21875 C 1.890625 -1.007812 1.957031 -0.875 2.09375 -0.8125 C 2.164062 -0.769531 2.289062 -0.75 2.46875 -0.75 C 2.519531 -0.75 2.570312 -0.75 2.625 -0.75 C 2.675781 -0.75 2.738281 -0.753906 2.8125 -0.765625 L 2.8125 0 C 2.695312 0.03125 2.578125 0.0507812 2.453125 0.0625 C 2.335938 0.0820312 2.210938 0.09375 2.078125 0.09375 C 1.617188 0.09375 1.304688 -0.0195312 1.140625 -0.25 C 0.984375 -0.488281 0.90625 -0.789062 0.90625 -1.15625 L 0.90625 -4.984375 L 0.125 -4.984375 L 0.125 -5.78125 L 0.90625 -5.78125 Z M 0.90625 -7.390625 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
<path d="M 1.390625 -2 C 1.453125 -1.4375 1.710938 -1.046875 2.171875 -0.828125 C 2.398438 -0.722656 2.664062 -0.671875 2.96875 -0.671875 C 3.550781 -0.671875 3.984375 -0.851562 4.265625 -1.21875 C 4.546875 -1.59375 4.6875 -2.007812 4.6875 -2.46875 C 4.6875 -3.007812 4.519531 -3.425781 4.1875 -3.71875 C 3.851562 -4.019531 3.457031 -4.171875 3 -4.171875 C 2.65625 -4.171875 2.359375 -4.101562 2.109375 -3.96875 C 1.867188 -3.84375 1.664062 -3.664062 1.5 -3.4375 L 0.640625 -3.484375 L 1.234375 -7.703125 L 5.3125 -7.703125 L 5.3125 -6.75 L 1.984375 -6.75 L 1.640625 -4.578125 C 1.828125 -4.710938 2.003906 -4.816406 2.171875 -4.890625 C 2.460938 -5.003906 2.796875 -5.0625 3.171875 -5.0625 C 3.890625 -5.0625 4.5 -4.828125 5 -4.359375 C 5.5 -3.898438 5.75 -3.316406 5.75 -2.609375 C 5.75 -1.867188 5.519531 -1.210938 5.0625 -0.640625 C 4.601562 -0.078125 3.875 0.203125 2.875 0.203125 C 2.238281 0.203125 1.675781 0.0234375 1.1875 -0.328125 C 0.695312 -0.691406 0.421875 -1.25 0.359375 -2 Z M 1.390625 -2 "/>
|
||||
</g>
|
||||
<g id="glyph-1-1">
|
||||
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-1-2">
|
||||
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
|
||||
</g>
|
||||
<g id="glyph-1-3">
|
||||
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-2-0">
|
||||
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
|
||||
</g>
|
||||
<g id="glyph-2-1">
|
||||
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2">
|
||||
<path d="M 0.90625 -7.328125 L 2.125 -7.328125 L 2.125 -6.28125 C 2.414062 -6.644531 2.675781 -6.90625 2.90625 -7.0625 C 3.3125 -7.34375 3.773438 -7.484375 4.296875 -7.484375 C 4.878906 -7.484375 5.347656 -7.34375 5.703125 -7.0625 C 5.898438 -6.894531 6.082031 -6.648438 6.25 -6.328125 C 6.519531 -6.722656 6.835938 -7.015625 7.203125 -7.203125 C 7.578125 -7.390625 7.992188 -7.484375 8.453125 -7.484375 C 9.441406 -7.484375 10.113281 -7.128906 10.46875 -6.421875 C 10.65625 -6.035156 10.75 -5.519531 10.75 -4.875 L 10.75 0 L 9.46875 0 L 9.46875 -5.09375 C 9.46875 -5.570312 9.347656 -5.898438 9.109375 -6.078125 C 8.867188 -6.265625 8.570312 -6.359375 8.21875 -6.359375 C 7.738281 -6.359375 7.320312 -6.195312 6.96875 -5.875 C 6.625 -5.550781 6.453125 -5.015625 6.453125 -4.265625 L 6.453125 0 L 5.203125 0 L 5.203125 -4.78125 C 5.203125 -5.28125 5.140625 -5.640625 5.015625 -5.859375 C 4.828125 -6.203125 4.476562 -6.375 3.96875 -6.375 C 3.507812 -6.375 3.085938 -6.191406 2.703125 -5.828125 C 2.328125 -5.472656 2.140625 -4.828125 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -7.328125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-3">
|
||||
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-4">
|
||||
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
|
||||
</g>
|
||||
<g id="glyph-2-5">
|
||||
<path d="M 1.203125 -8.4375 C 1.222656 -8.945312 1.316406 -9.320312 1.484375 -9.5625 C 1.765625 -9.976562 2.316406 -10.1875 3.140625 -10.1875 C 3.210938 -10.1875 3.289062 -10.179688 3.375 -10.171875 C 3.457031 -10.171875 3.550781 -10.164062 3.65625 -10.15625 L 3.65625 -9.03125 C 3.53125 -9.039062 3.4375 -9.046875 3.375 -9.046875 C 3.320312 -9.054688 3.269531 -9.0625 3.21875 -9.0625 C 2.84375 -9.0625 2.617188 -8.960938 2.546875 -8.765625 C 2.472656 -8.578125 2.4375 -8.082031 2.4375 -7.28125 L 3.65625 -7.28125 L 3.65625 -6.3125 L 2.421875 -6.3125 L 2.421875 0 L 1.203125 0 L 1.203125 -6.3125 L 0.1875 -6.3125 L 0.1875 -7.28125 L 1.203125 -7.28125 Z M 1.203125 -8.4375 "/>
|
||||
</g>
|
||||
<g id="glyph-2-6">
|
||||
<path d="M 0.9375 -10.046875 L 2.171875 -10.046875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -10.046875 "/>
|
||||
</g>
|
||||
<g id="glyph-3-0">
|
||||
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
|
||||
</g>
|
||||
<g id="glyph-3-1">
|
||||
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
|
||||
</g>
|
||||
<g id="glyph-3-2">
|
||||
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-3-3">
|
||||
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
|
||||
</g>
|
||||
<g id="glyph-3-4">
|
||||
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
|
||||
</g>
|
||||
</g>
|
||||
</defs>
|
||||
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 432 L 360 432 L 360 0 L 0 0 Z M 0 432 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 328.605469 L 353.027344 328.605469 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 243.867188 L 353.027344 243.867188 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 159.125 L 353.027344 159.125 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 74.386719 L 353.027344 74.386719 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 121.292969 391.613281 L 121.292969 6.972656 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 192.683594 391.613281 L 192.683594 6.972656 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 264.078125 391.613281 L 264.078125 6.972656 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 335.46875 391.613281 L 335.46875 6.972656 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 189.878906 270 C 189.878906 272.605469 185.972656 272.605469 185.972656 270 C 185.972656 267.394531 189.878906 267.394531 189.878906 270 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 158.945312 365.214844 C 158.945312 367.820312 155.035156 367.820312 155.035156 365.214844 C 155.035156 362.609375 158.945312 362.609375 158.945312 365.214844 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 197.019531 69.574219 C 197.019531 72.179688 193.109375 72.179688 193.109375 69.574219 C 193.109375 66.964844 197.019531 66.964844 197.019531 69.574219 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 128.601562 325.980469 C 128.601562 328.585938 124.691406 328.585938 124.691406 325.980469 C 124.691406 323.375 128.601562 323.375 128.601562 325.980469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 275.550781 43.050781 C 275.550781 45.65625 271.640625 45.65625 271.640625 43.050781 C 271.640625 40.441406 275.550781 40.441406 275.550781 43.050781 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 245.210938 329.523438 C 245.210938 332.128906 241.300781 332.128906 241.300781 329.523438 C 241.300781 326.914062 245.210938 326.914062 245.210938 329.523438 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 253.539062 53.539062 C 253.539062 56.148438 249.628906 56.148438 249.628906 53.539062 C 249.628906 50.933594 253.539062 50.933594 253.539062 53.539062 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 242.828125 273.152344 C 242.828125 275.757812 238.921875 275.757812 238.921875 273.152344 C 238.921875 270.546875 242.828125 270.546875 242.828125 273.152344 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 271.980469 330.402344 C 271.980469 333.011719 268.070312 333.011719 268.070312 330.402344 C 268.070312 327.796875 271.980469 327.796875 271.980469 330.402344 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 273.765625 332.929688 C 273.765625 335.535156 269.855469 335.535156 269.855469 332.929688 C 269.855469 330.324219 273.765625 330.324219 273.765625 332.929688 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 198.210938 134.601562 C 198.210938 137.210938 194.300781 137.210938 194.300781 134.601562 C 194.300781 131.996094 198.210938 131.996094 198.210938 134.601562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 201.183594 312.066406 C 201.183594 314.671875 197.273438 314.671875 197.273438 312.066406 C 197.273438 309.460938 201.183594 309.460938 201.183594 312.066406 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 221.414062 241.1875 C 221.414062 243.796875 217.503906 243.796875 217.503906 241.1875 C 217.503906 238.582031 221.414062 238.582031 221.414062 241.1875 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 212.488281 352.773438 C 212.488281 355.382812 208.578125 355.382812 208.578125 352.773438 C 208.578125 350.167969 212.488281 350.167969 212.488281 352.773438 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 94.691406 317.726562 C 94.691406 320.332031 90.78125 320.332031 90.78125 317.726562 C 90.78125 315.121094 94.691406 315.121094 94.691406 317.726562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 115.515625 342.929688 C 115.515625 345.535156 111.605469 345.535156 111.605469 342.929688 C 111.605469 340.320312 115.515625 340.320312 115.515625 342.929688 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 207.730469 74.640625 C 207.730469 77.246094 203.820312 77.246094 203.820312 74.640625 C 203.820312 72.035156 207.730469 72.035156 207.730469 74.640625 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 160.730469 324.351562 C 160.730469 326.960938 156.820312 326.960938 156.820312 324.351562 C 156.820312 321.746094 160.730469 321.746094 160.730469 324.351562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 150.019531 279.425781 C 150.019531 282.03125 146.109375 282.03125 146.109375 279.425781 C 146.109375 276.816406 150.019531 276.816406 150.019531 279.425781 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 114.917969 374.128906 C 114.917969 376.734375 111.007812 376.734375 111.007812 374.128906 C 111.007812 371.523438 114.917969 371.523438 114.917969 374.128906 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 252.945312 163.449219 C 252.945312 166.054688 249.035156 166.054688 249.035156 163.449219 C 249.035156 160.84375 252.945312 160.84375 252.945312 163.449219 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 210.109375 333.980469 C 210.109375 336.585938 206.199219 336.585938 206.199219 333.980469 C 206.199219 331.375 210.109375 331.375 210.109375 333.980469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 258.296875 139.332031 C 258.296875 141.9375 254.386719 141.9375 254.386719 139.332031 C 254.386719 136.726562 258.296875 136.726562 258.296875 139.332031 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 257.109375 285.746094 C 257.109375 288.351562 253.199219 288.351562 253.199219 285.746094 C 253.199219 283.140625 257.109375 283.140625 257.109375 285.746094 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 337.425781 24.457031 C 337.425781 27.0625 333.515625 27.0625 333.515625 24.457031 C 333.515625 21.851562 337.425781 21.851562 337.425781 24.457031 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 320.765625 223.019531 C 320.765625 225.628906 316.855469 225.628906 316.855469 223.019531 C 316.855469 220.414062 320.765625 220.414062 320.765625 223.019531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 125.628906 265.304688 C 125.628906 267.914062 121.71875 267.914062 121.71875 265.304688 C 121.71875 262.699219 125.628906 262.699219 125.628906 265.304688 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 136.335938 367.25 C 136.335938 369.855469 132.425781 369.855469 132.425781 367.25 C 132.425781 364.640625 136.335938 364.640625 136.335938 367.25 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 97.664062 274.964844 C 97.664062 277.574219 93.757812 277.574219 93.757812 274.964844 C 93.757812 272.359375 97.664062 272.359375 97.664062 274.964844 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.25 367.976562 C 76.25 370.582031 72.339844 370.582031 72.339844 367.976562 C 72.339844 365.371094 76.25 365.371094 76.25 367.976562 "/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="192.210938" y="273.960938"/>
|
||||
<use xlink:href="#glyph-0-1" x="197.730772" y="273.960938"/>
|
||||
<use xlink:href="#glyph-0-2" x="203.87051" y="273.960938"/>
|
||||
<use xlink:href="#glyph-0-3" x="207.546806" y="273.960938"/>
|
||||
<use xlink:href="#glyph-0-4" x="209.999467" y="273.960938"/>
|
||||
<use xlink:href="#glyph-0-5" x="216.139205" y="273.960938"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="161.273438" y="369.175781"/>
|
||||
<use xlink:href="#glyph-0-1" x="166.793272" y="369.175781"/>
|
||||
<use xlink:href="#glyph-0-2" x="172.93301" y="369.175781"/>
|
||||
<use xlink:href="#glyph-0-3" x="176.609306" y="369.175781"/>
|
||||
<use xlink:href="#glyph-0-4" x="179.061967" y="369.175781"/>
|
||||
<use xlink:href="#glyph-0-5" x="185.201705" y="369.175781"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="199.347656" y="73.53125"/>
|
||||
<use xlink:href="#glyph-0-1" x="204.867491" y="73.53125"/>
|
||||
<use xlink:href="#glyph-0-2" x="211.007229" y="73.53125"/>
|
||||
<use xlink:href="#glyph-0-3" x="214.683525" y="73.53125"/>
|
||||
<use xlink:href="#glyph-0-4" x="217.136186" y="73.53125"/>
|
||||
<use xlink:href="#glyph-0-5" x="223.275924" y="73.53125"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="130.929688" y="329.9375"/>
|
||||
<use xlink:href="#glyph-0-1" x="136.449522" y="329.9375"/>
|
||||
<use xlink:href="#glyph-0-2" x="142.58926" y="329.9375"/>
|
||||
<use xlink:href="#glyph-0-3" x="146.265556" y="329.9375"/>
|
||||
<use xlink:href="#glyph-0-4" x="148.718217" y="329.9375"/>
|
||||
<use xlink:href="#glyph-0-5" x="154.857955" y="329.9375"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="277.878906" y="47.007812"/>
|
||||
<use xlink:href="#glyph-0-1" x="283.398741" y="47.007812"/>
|
||||
<use xlink:href="#glyph-0-2" x="289.538479" y="47.007812"/>
|
||||
<use xlink:href="#glyph-0-3" x="293.214775" y="47.007812"/>
|
||||
<use xlink:href="#glyph-0-4" x="295.667436" y="47.007812"/>
|
||||
<use xlink:href="#glyph-0-5" x="301.807174" y="47.007812"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="247.539062" y="333.480469"/>
|
||||
<use xlink:href="#glyph-0-1" x="253.058897" y="333.480469"/>
|
||||
<use xlink:href="#glyph-0-2" x="259.198635" y="333.480469"/>
|
||||
<use xlink:href="#glyph-0-3" x="262.874931" y="333.480469"/>
|
||||
<use xlink:href="#glyph-0-4" x="265.327592" y="333.480469"/>
|
||||
<use xlink:href="#glyph-0-5" x="271.46733" y="333.480469"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="255.867188" y="57.5"/>
|
||||
<use xlink:href="#glyph-0-1" x="261.387022" y="57.5"/>
|
||||
<use xlink:href="#glyph-0-2" x="267.52676" y="57.5"/>
|
||||
<use xlink:href="#glyph-0-3" x="271.203056" y="57.5"/>
|
||||
<use xlink:href="#glyph-0-4" x="273.655717" y="57.5"/>
|
||||
<use xlink:href="#glyph-0-5" x="279.795455" y="57.5"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="245.160156" y="277.113281"/>
|
||||
<use xlink:href="#glyph-0-1" x="250.679991" y="277.113281"/>
|
||||
<use xlink:href="#glyph-0-2" x="256.819729" y="277.113281"/>
|
||||
<use xlink:href="#glyph-0-3" x="260.496025" y="277.113281"/>
|
||||
<use xlink:href="#glyph-0-4" x="262.948686" y="277.113281"/>
|
||||
<use xlink:href="#glyph-0-5" x="269.088424" y="277.113281"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="274.308594" y="334.363281"/>
|
||||
<use xlink:href="#glyph-0-6" x="279.828428" y="334.363281"/>
|
||||
<use xlink:href="#glyph-0-7" x="285.968166" y="334.363281"/>
|
||||
<use xlink:href="#glyph-0-7" x="295.164297" y="334.363281"/>
|
||||
<use xlink:href="#glyph-0-8" x="304.360428" y="334.363281"/>
|
||||
<use xlink:href="#glyph-0-2" x="310.500166" y="334.363281"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="276.09375" y="336.886719"/>
|
||||
<use xlink:href="#glyph-0-6" x="281.613585" y="336.886719"/>
|
||||
<use xlink:href="#glyph-0-7" x="287.753323" y="336.886719"/>
|
||||
<use xlink:href="#glyph-0-7" x="296.949453" y="336.886719"/>
|
||||
<use xlink:href="#glyph-0-8" x="306.145584" y="336.886719"/>
|
||||
<use xlink:href="#glyph-0-2" x="312.285322" y="336.886719"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="200.539062" y="138.5625"/>
|
||||
<use xlink:href="#glyph-0-3" x="208.511558" y="138.5625"/>
|
||||
<use xlink:href="#glyph-0-4" x="210.964219" y="138.5625"/>
|
||||
<use xlink:href="#glyph-0-10" x="217.103957" y="138.5625"/>
|
||||
<use xlink:href="#glyph-0-8" x="220.171131" y="138.5625"/>
|
||||
<use xlink:href="#glyph-0-2" x="226.310869" y="138.5625"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="203.511719" y="316.023438"/>
|
||||
<use xlink:href="#glyph-0-3" x="211.484214" y="316.023438"/>
|
||||
<use xlink:href="#glyph-0-4" x="213.936875" y="316.023438"/>
|
||||
<use xlink:href="#glyph-0-10" x="220.076613" y="316.023438"/>
|
||||
<use xlink:href="#glyph-0-8" x="223.143787" y="316.023438"/>
|
||||
<use xlink:href="#glyph-0-2" x="229.283525" y="316.023438"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="223.742188" y="245.148438"/>
|
||||
<use xlink:href="#glyph-0-3" x="231.714683" y="245.148438"/>
|
||||
<use xlink:href="#glyph-0-4" x="234.167344" y="245.148438"/>
|
||||
<use xlink:href="#glyph-0-10" x="240.307082" y="245.148438"/>
|
||||
<use xlink:href="#glyph-0-8" x="243.374256" y="245.148438"/>
|
||||
<use xlink:href="#glyph-0-2" x="249.513994" y="245.148438"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="214.816406" y="356.734375"/>
|
||||
<use xlink:href="#glyph-0-3" x="222.788902" y="356.734375"/>
|
||||
<use xlink:href="#glyph-0-4" x="225.241563" y="356.734375"/>
|
||||
<use xlink:href="#glyph-0-10" x="231.381301" y="356.734375"/>
|
||||
<use xlink:href="#glyph-0-8" x="234.448474" y="356.734375"/>
|
||||
<use xlink:href="#glyph-0-2" x="240.588212" y="356.734375"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="97.019531" y="321.6875"/>
|
||||
<use xlink:href="#glyph-0-3" x="104.992027" y="321.6875"/>
|
||||
<use xlink:href="#glyph-0-4" x="107.444688" y="321.6875"/>
|
||||
<use xlink:href="#glyph-0-10" x="113.584426" y="321.6875"/>
|
||||
<use xlink:href="#glyph-0-8" x="116.651599" y="321.6875"/>
|
||||
<use xlink:href="#glyph-0-2" x="122.791337" y="321.6875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="117.84375" y="346.886719"/>
|
||||
<use xlink:href="#glyph-0-3" x="125.816246" y="346.886719"/>
|
||||
<use xlink:href="#glyph-0-4" x="128.268906" y="346.886719"/>
|
||||
<use xlink:href="#glyph-0-10" x="134.408644" y="346.886719"/>
|
||||
<use xlink:href="#glyph-0-8" x="137.475818" y="346.886719"/>
|
||||
<use xlink:href="#glyph-0-2" x="143.615556" y="346.886719"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="210.058594" y="78.601562"/>
|
||||
<use xlink:href="#glyph-0-1" x="215.578428" y="78.601562"/>
|
||||
<use xlink:href="#glyph-0-2" x="221.718166" y="78.601562"/>
|
||||
<use xlink:href="#glyph-0-3" x="225.394462" y="78.601562"/>
|
||||
<use xlink:href="#glyph-0-4" x="227.847123" y="78.601562"/>
|
||||
<use xlink:href="#glyph-0-5" x="233.986861" y="78.601562"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="163.058594" y="328.3125"/>
|
||||
<use xlink:href="#glyph-0-1" x="168.578428" y="328.3125"/>
|
||||
<use xlink:href="#glyph-0-2" x="174.718166" y="328.3125"/>
|
||||
<use xlink:href="#glyph-0-3" x="178.394462" y="328.3125"/>
|
||||
<use xlink:href="#glyph-0-4" x="180.847123" y="328.3125"/>
|
||||
<use xlink:href="#glyph-0-5" x="186.986861" y="328.3125"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="152.347656" y="283.382812"/>
|
||||
<use xlink:href="#glyph-0-1" x="157.867491" y="283.382812"/>
|
||||
<use xlink:href="#glyph-0-2" x="164.007229" y="283.382812"/>
|
||||
<use xlink:href="#glyph-0-3" x="167.683525" y="283.382812"/>
|
||||
<use xlink:href="#glyph-0-4" x="170.136186" y="283.382812"/>
|
||||
<use xlink:href="#glyph-0-5" x="176.275924" y="283.382812"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="117.246094" y="378.089844"/>
|
||||
<use xlink:href="#glyph-0-1" x="122.765928" y="378.089844"/>
|
||||
<use xlink:href="#glyph-0-2" x="128.905666" y="378.089844"/>
|
||||
<use xlink:href="#glyph-0-3" x="132.581962" y="378.089844"/>
|
||||
<use xlink:href="#glyph-0-4" x="135.034623" y="378.089844"/>
|
||||
<use xlink:href="#glyph-0-5" x="141.174361" y="378.089844"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="255.273438" y="167.40625"/>
|
||||
<use xlink:href="#glyph-0-1" x="260.793272" y="167.40625"/>
|
||||
<use xlink:href="#glyph-0-2" x="266.93301" y="167.40625"/>
|
||||
<use xlink:href="#glyph-0-3" x="270.609306" y="167.40625"/>
|
||||
<use xlink:href="#glyph-0-4" x="273.061967" y="167.40625"/>
|
||||
<use xlink:href="#glyph-0-5" x="279.201705" y="167.40625"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="212.4375" y="337.9375"/>
|
||||
<use xlink:href="#glyph-0-1" x="217.957335" y="337.9375"/>
|
||||
<use xlink:href="#glyph-0-2" x="224.097073" y="337.9375"/>
|
||||
<use xlink:href="#glyph-0-3" x="227.773369" y="337.9375"/>
|
||||
<use xlink:href="#glyph-0-4" x="230.22603" y="337.9375"/>
|
||||
<use xlink:href="#glyph-0-5" x="236.365768" y="337.9375"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="260.625" y="143.289062"/>
|
||||
<use xlink:href="#glyph-0-1" x="266.144835" y="143.289062"/>
|
||||
<use xlink:href="#glyph-0-2" x="272.284573" y="143.289062"/>
|
||||
<use xlink:href="#glyph-0-3" x="275.960869" y="143.289062"/>
|
||||
<use xlink:href="#glyph-0-4" x="278.41353" y="143.289062"/>
|
||||
<use xlink:href="#glyph-0-5" x="284.553268" y="143.289062"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="259.4375" y="289.703125"/>
|
||||
<use xlink:href="#glyph-0-1" x="264.957335" y="289.703125"/>
|
||||
<use xlink:href="#glyph-0-2" x="271.097073" y="289.703125"/>
|
||||
<use xlink:href="#glyph-0-3" x="274.773369" y="289.703125"/>
|
||||
<use xlink:href="#glyph-0-4" x="277.22603" y="289.703125"/>
|
||||
<use xlink:href="#glyph-0-5" x="283.365768" y="289.703125"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="339.753906" y="28.417969"/>
|
||||
<use xlink:href="#glyph-0-6" x="345.273741" y="28.417969"/>
|
||||
<use xlink:href="#glyph-0-7" x="351.413479" y="28.417969"/>
|
||||
<use xlink:href="#glyph-0-7" x="360.60961" y="28.417969"/>
|
||||
<use xlink:href="#glyph-0-8" x="369.80574" y="28.417969"/>
|
||||
<use xlink:href="#glyph-0-2" x="375.945478" y="28.417969"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="323.09375" y="226.980469"/>
|
||||
<use xlink:href="#glyph-0-6" x="328.613585" y="226.980469"/>
|
||||
<use xlink:href="#glyph-0-7" x="334.753323" y="226.980469"/>
|
||||
<use xlink:href="#glyph-0-7" x="343.949453" y="226.980469"/>
|
||||
<use xlink:href="#glyph-0-8" x="353.145584" y="226.980469"/>
|
||||
<use xlink:href="#glyph-0-2" x="359.285322" y="226.980469"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="127.957031" y="269.265625"/>
|
||||
<use xlink:href="#glyph-0-3" x="135.929527" y="269.265625"/>
|
||||
<use xlink:href="#glyph-0-4" x="138.382188" y="269.265625"/>
|
||||
<use xlink:href="#glyph-0-10" x="144.521926" y="269.265625"/>
|
||||
<use xlink:href="#glyph-0-8" x="147.589099" y="269.265625"/>
|
||||
<use xlink:href="#glyph-0-2" x="153.728837" y="269.265625"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="138.664062" y="371.207031"/>
|
||||
<use xlink:href="#glyph-0-3" x="146.636558" y="371.207031"/>
|
||||
<use xlink:href="#glyph-0-4" x="149.089219" y="371.207031"/>
|
||||
<use xlink:href="#glyph-0-10" x="155.228957" y="371.207031"/>
|
||||
<use xlink:href="#glyph-0-8" x="158.296131" y="371.207031"/>
|
||||
<use xlink:href="#glyph-0-2" x="164.435869" y="371.207031"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="99.996094" y="278.925781"/>
|
||||
<use xlink:href="#glyph-0-3" x="107.968589" y="278.925781"/>
|
||||
<use xlink:href="#glyph-0-4" x="110.42125" y="278.925781"/>
|
||||
<use xlink:href="#glyph-0-10" x="116.560988" y="278.925781"/>
|
||||
<use xlink:href="#glyph-0-8" x="119.628162" y="278.925781"/>
|
||||
<use xlink:href="#glyph-0-2" x="125.7679" y="278.925781"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="78.578125" y="371.9375"/>
|
||||
<use xlink:href="#glyph-0-3" x="86.550621" y="371.9375"/>
|
||||
<use xlink:href="#glyph-0-4" x="89.003281" y="371.9375"/>
|
||||
<use xlink:href="#glyph-0-10" x="95.143019" y="371.9375"/>
|
||||
<use xlink:href="#glyph-0-8" x="98.210193" y="371.9375"/>
|
||||
<use xlink:href="#glyph-0-2" x="104.349931" y="371.9375"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0" x="29.828125" y="332.625"/>
|
||||
<use xlink:href="#glyph-1-1" x="36.057031" y="332.625"/>
|
||||
<use xlink:href="#glyph-1-1" x="42.285938" y="332.625"/>
|
||||
<use xlink:href="#glyph-1-1" x="48.514844" y="332.625"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-2" x="23.597656" y="247.882812"/>
|
||||
<use xlink:href="#glyph-1-1" x="29.826563" y="247.882812"/>
|
||||
<use xlink:href="#glyph-1-1" x="36.055469" y="247.882812"/>
|
||||
<use xlink:href="#glyph-1-1" x="42.284375" y="247.882812"/>
|
||||
<use xlink:href="#glyph-1-1" x="48.513281" y="247.882812"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-2" x="23.597656" y="163.144531"/>
|
||||
<use xlink:href="#glyph-1-0" x="29.826563" y="163.144531"/>
|
||||
<use xlink:href="#glyph-1-1" x="36.055469" y="163.144531"/>
|
||||
<use xlink:href="#glyph-1-1" x="42.284375" y="163.144531"/>
|
||||
<use xlink:href="#glyph-1-1" x="48.513281" y="163.144531"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-3" x="23.597656" y="78.402344"/>
|
||||
<use xlink:href="#glyph-1-1" x="29.826563" y="78.402344"/>
|
||||
<use xlink:href="#glyph-1-1" x="36.055469" y="78.402344"/>
|
||||
<use xlink:href="#glyph-1-1" x="42.284375" y="78.402344"/>
|
||||
<use xlink:href="#glyph-1-1" x="48.513281" y="78.402344"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 328.605469 L 61.019531 328.605469 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 243.867188 L 61.019531 243.867188 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 159.125 L 61.019531 159.125 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 74.386719 L 61.019531 74.386719 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 121.292969 395.101562 L 121.292969 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 192.683594 395.101562 L 192.683594 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 264.078125 395.101562 L 264.078125 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 335.46875 395.101562 L 335.46875 391.613281 "/>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0" x="118.179688" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-2" x="186.453125" y="405.921875"/>
|
||||
<use xlink:href="#glyph-1-1" x="192.682031" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-2" x="257.847656" y="405.921875"/>
|
||||
<use xlink:href="#glyph-1-0" x="264.076563" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-3" x="329.238281" y="405.921875"/>
|
||||
<use xlink:href="#glyph-1-1" x="335.467188" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-0" x="176.28125" y="421.929688"/>
|
||||
<use xlink:href="#glyph-2-1" x="180.170898" y="421.929688"/>
|
||||
<use xlink:href="#glyph-2-2" x="187.957031" y="421.929688"/>
|
||||
<use xlink:href="#glyph-2-3" x="199.619141" y="421.929688"/>
|
||||
<use xlink:href="#glyph-2-4" x="207.405273" y="421.929688"/>
|
||||
<use xlink:href="#glyph-2-5" x="215.191406" y="421.929688"/>
|
||||
<use xlink:href="#glyph-2-1" x="219.081055" y="421.929688"/>
|
||||
<use xlink:href="#glyph-2-1" x="226.867188" y="421.929688"/>
|
||||
<use xlink:href="#glyph-2-6" x="234.65332" y="421.929688"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-0" x="17.015625" y="216.417969"/>
|
||||
<use xlink:href="#glyph-3-1" x="17.015625" y="209.417969"/>
|
||||
<use xlink:href="#glyph-3-2" x="17.015625" y="201.631836"/>
|
||||
<use xlink:href="#glyph-3-3" x="17.015625" y="193.845703"/>
|
||||
<use xlink:href="#glyph-3-4" x="17.015625" y="186.05957"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 52 KiB |
After Width: | Height: | Size: 104 KiB |
|
@ -0,0 +1,439 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="432" viewBox="0 0 360 432">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
<path d="M 1.296875 -1.8125 C 1.316406 -1.488281 1.394531 -1.238281 1.53125 -1.0625 C 1.78125 -0.75 2.207031 -0.59375 2.8125 -0.59375 C 3.164062 -0.59375 3.476562 -0.671875 3.75 -0.828125 C 4.03125 -0.984375 4.171875 -1.226562 4.171875 -1.5625 C 4.171875 -1.8125 4.054688 -2 3.828125 -2.125 C 3.691406 -2.207031 3.414062 -2.300781 3 -2.40625 L 2.234375 -2.59375 C 1.742188 -2.71875 1.378906 -2.851562 1.140625 -3 C 0.722656 -3.257812 0.515625 -3.625 0.515625 -4.09375 C 0.515625 -4.632812 0.710938 -5.070312 1.109375 -5.40625 C 1.503906 -5.75 2.035156 -5.921875 2.703125 -5.921875 C 3.566406 -5.921875 4.191406 -5.664062 4.578125 -5.15625 C 4.816406 -4.832031 4.9375 -4.484375 4.9375 -4.109375 L 4.015625 -4.109375 C 3.992188 -4.328125 3.914062 -4.53125 3.78125 -4.71875 C 3.5625 -4.96875 3.175781 -5.09375 2.625 -5.09375 C 2.257812 -5.09375 1.976562 -5.019531 1.78125 -4.875 C 1.59375 -4.738281 1.5 -4.554688 1.5 -4.328125 C 1.5 -4.078125 1.625 -3.878906 1.875 -3.734375 C 2.019531 -3.640625 2.234375 -3.554688 2.515625 -3.484375 L 3.15625 -3.328125 C 3.851562 -3.160156 4.320312 -3 4.5625 -2.84375 C 4.9375 -2.59375 5.125 -2.203125 5.125 -1.671875 C 5.125 -1.160156 4.925781 -0.71875 4.53125 -0.34375 C 4.144531 0.0273438 3.550781 0.21875 2.75 0.21875 C 1.894531 0.21875 1.285156 0.0234375 0.921875 -0.359375 C 0.566406 -0.753906 0.378906 -1.238281 0.359375 -1.8125 Z M 2.71875 -5.921875 Z M 2.71875 -5.921875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 3.15625 -0.65625 C 3.601562 -0.65625 3.976562 -0.84375 4.28125 -1.21875 C 4.582031 -1.601562 4.734375 -2.171875 4.734375 -2.921875 C 4.734375 -3.378906 4.664062 -3.773438 4.53125 -4.109375 C 4.28125 -4.742188 3.820312 -5.0625 3.15625 -5.0625 C 2.476562 -5.0625 2.015625 -4.726562 1.765625 -4.0625 C 1.628906 -3.695312 1.5625 -3.238281 1.5625 -2.6875 C 1.5625 -2.238281 1.628906 -1.859375 1.765625 -1.546875 C 2.015625 -0.953125 2.476562 -0.65625 3.15625 -0.65625 Z M 0.640625 -5.75 L 1.578125 -5.75 L 1.578125 -4.984375 C 1.773438 -5.242188 1.988281 -5.445312 2.21875 -5.59375 C 2.539062 -5.8125 2.925781 -5.921875 3.375 -5.921875 C 4.03125 -5.921875 4.582031 -5.664062 5.03125 -5.15625 C 5.488281 -4.65625 5.71875 -3.941406 5.71875 -3.015625 C 5.71875 -1.753906 5.390625 -0.851562 4.734375 -0.3125 C 4.316406 0.0195312 3.832031 0.1875 3.28125 0.1875 C 2.84375 0.1875 2.476562 0.0898438 2.1875 -0.09375 C 2.007812 -0.195312 1.816406 -0.378906 1.609375 -0.640625 L 1.609375 2.296875 L 0.640625 2.296875 Z M 0.640625 -5.75 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 0.734375 -5.78125 L 1.65625 -5.78125 L 1.65625 -4.78125 C 1.738281 -4.976562 1.925781 -5.210938 2.21875 -5.484375 C 2.507812 -5.765625 2.847656 -5.90625 3.234375 -5.90625 C 3.253906 -5.90625 3.285156 -5.898438 3.328125 -5.890625 C 3.367188 -5.890625 3.441406 -5.882812 3.546875 -5.875 L 3.546875 -4.859375 C 3.492188 -4.867188 3.441406 -4.875 3.390625 -4.875 C 3.335938 -4.875 3.285156 -4.875 3.234375 -4.875 C 2.742188 -4.875 2.363281 -4.71875 2.09375 -4.40625 C 1.832031 -4.09375 1.703125 -3.734375 1.703125 -3.328125 L 1.703125 0 L 0.734375 0 Z M 0.734375 -5.78125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 0.71875 -5.75 L 1.703125 -5.75 L 1.703125 0 L 0.71875 0 Z M 0.71875 -7.921875 L 1.703125 -7.921875 L 1.703125 -6.828125 L 0.71875 -6.828125 Z M 0.71875 -7.921875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 0.71875 -5.78125 L 1.640625 -5.78125 L 1.640625 -4.953125 C 1.910156 -5.296875 2.195312 -5.539062 2.5 -5.6875 C 2.8125 -5.832031 3.148438 -5.90625 3.515625 -5.90625 C 4.335938 -5.90625 4.894531 -5.617188 5.1875 -5.046875 C 5.34375 -4.734375 5.421875 -4.285156 5.421875 -3.703125 L 5.421875 0 L 4.4375 0 L 4.4375 -3.640625 C 4.4375 -3.992188 4.382812 -4.28125 4.28125 -4.5 C 4.101562 -4.851562 3.789062 -5.03125 3.34375 -5.03125 C 3.113281 -5.03125 2.921875 -5.007812 2.765625 -4.96875 C 2.503906 -4.882812 2.273438 -4.722656 2.078125 -4.484375 C 1.910156 -4.296875 1.800781 -4.097656 1.75 -3.890625 C 1.707031 -3.691406 1.6875 -3.40625 1.6875 -3.03125 L 1.6875 0 L 0.71875 0 Z M 3 -5.921875 Z M 3 -5.921875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 2.75 -5.875 C 3.207031 -5.875 3.601562 -5.765625 3.9375 -5.546875 C 4.125 -5.421875 4.3125 -5.238281 4.5 -5 L 4.5 -5.71875 L 5.390625 -5.71875 L 5.390625 -0.46875 C 5.390625 0.257812 5.285156 0.835938 5.078125 1.265625 C 4.671875 2.046875 3.90625 2.4375 2.78125 2.4375 C 2.164062 2.4375 1.644531 2.296875 1.21875 2.015625 C 0.789062 1.742188 0.550781 1.3125 0.5 0.71875 L 1.5 0.71875 C 1.539062 0.976562 1.632812 1.175781 1.78125 1.3125 C 2 1.53125 2.34375 1.640625 2.8125 1.640625 C 3.550781 1.640625 4.035156 1.378906 4.265625 0.859375 C 4.410156 0.546875 4.472656 -0.00390625 4.453125 -0.796875 C 4.265625 -0.503906 4.03125 -0.285156 3.75 -0.140625 C 3.476562 -0.00390625 3.117188 0.0625 2.671875 0.0625 C 2.046875 0.0625 1.5 -0.15625 1.03125 -0.59375 C 0.5625 -1.039062 0.328125 -1.773438 0.328125 -2.796875 C 0.328125 -3.765625 0.5625 -4.519531 1.03125 -5.0625 C 1.507812 -5.601562 2.082031 -5.875 2.75 -5.875 Z M 4.5 -2.90625 C 4.5 -3.625 4.347656 -4.15625 4.046875 -4.5 C 3.753906 -4.84375 3.378906 -5.015625 2.921875 -5.015625 C 2.242188 -5.015625 1.78125 -4.695312 1.53125 -4.0625 C 1.394531 -3.71875 1.328125 -3.269531 1.328125 -2.71875 C 1.328125 -2.070312 1.457031 -1.578125 1.71875 -1.234375 C 1.988281 -0.890625 2.34375 -0.71875 2.78125 -0.71875 C 3.476562 -0.71875 3.972656 -1.035156 4.265625 -1.671875 C 4.421875 -2.023438 4.5 -2.4375 4.5 -2.90625 Z M 2.859375 -5.921875 Z M 2.859375 -5.921875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-6">
|
||||
<path d="M 1.6875 -5.78125 L 1.6875 -1.9375 C 1.6875 -1.644531 1.734375 -1.40625 1.828125 -1.21875 C 1.992188 -0.875 2.3125 -0.703125 2.78125 -0.703125 C 3.457031 -0.703125 3.921875 -1.003906 4.171875 -1.609375 C 4.304688 -1.929688 4.375 -2.375 4.375 -2.9375 L 4.375 -5.78125 L 5.34375 -5.78125 L 5.34375 0 L 4.421875 0 L 4.4375 -0.859375 C 4.3125 -0.628906 4.15625 -0.441406 3.96875 -0.296875 C 3.59375 0.00390625 3.140625 0.15625 2.609375 0.15625 C 1.785156 0.15625 1.226562 -0.117188 0.9375 -0.671875 C 0.769531 -0.960938 0.6875 -1.351562 0.6875 -1.84375 L 0.6875 -5.78125 Z M 3.015625 -5.921875 Z M 3.015625 -5.921875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-7">
|
||||
<path d="M 0.71875 -5.78125 L 1.671875 -5.78125 L 1.671875 -4.953125 C 1.898438 -5.242188 2.109375 -5.453125 2.296875 -5.578125 C 2.617188 -5.796875 2.984375 -5.90625 3.390625 -5.90625 C 3.847656 -5.90625 4.21875 -5.789062 4.5 -5.5625 C 4.65625 -5.4375 4.800781 -5.25 4.9375 -5 C 5.144531 -5.300781 5.394531 -5.523438 5.6875 -5.671875 C 5.976562 -5.828125 6.304688 -5.90625 6.671875 -5.90625 C 7.453125 -5.90625 7.984375 -5.625 8.265625 -5.0625 C 8.410156 -4.757812 8.484375 -4.351562 8.484375 -3.84375 L 8.484375 0 L 7.46875 0 L 7.46875 -4.015625 C 7.46875 -4.398438 7.375 -4.660156 7.1875 -4.796875 C 7 -4.941406 6.765625 -5.015625 6.484375 -5.015625 C 6.097656 -5.015625 5.769531 -4.882812 5.5 -4.625 C 5.226562 -4.375 5.09375 -3.953125 5.09375 -3.359375 L 5.09375 0 L 4.09375 0 L 4.09375 -3.765625 C 4.09375 -4.160156 4.046875 -4.445312 3.953125 -4.625 C 3.804688 -4.894531 3.535156 -5.03125 3.140625 -5.03125 C 2.765625 -5.03125 2.425781 -4.890625 2.125 -4.609375 C 1.832031 -4.328125 1.6875 -3.8125 1.6875 -3.0625 L 1.6875 0 L 0.71875 0 Z M 0.71875 -5.78125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-8">
|
||||
<path d="M 3.125 -5.90625 C 3.53125 -5.90625 3.925781 -5.804688 4.3125 -5.609375 C 4.695312 -5.421875 4.988281 -5.175781 5.1875 -4.875 C 5.382812 -4.582031 5.515625 -4.238281 5.578125 -3.84375 C 5.628906 -3.582031 5.65625 -3.160156 5.65625 -2.578125 L 1.421875 -2.578125 C 1.441406 -1.992188 1.582031 -1.523438 1.84375 -1.171875 C 2.101562 -0.816406 2.503906 -0.640625 3.046875 -0.640625 C 3.554688 -0.640625 3.960938 -0.804688 4.265625 -1.140625 C 4.429688 -1.328125 4.550781 -1.550781 4.625 -1.8125 L 5.578125 -1.8125 C 5.554688 -1.601562 5.472656 -1.367188 5.328125 -1.109375 C 5.191406 -0.847656 5.035156 -0.632812 4.859375 -0.46875 C 4.554688 -0.175781 4.191406 0.0195312 3.765625 0.125 C 3.523438 0.175781 3.257812 0.203125 2.96875 0.203125 C 2.25 0.203125 1.640625 -0.0546875 1.140625 -0.578125 C 0.640625 -1.097656 0.390625 -1.832031 0.390625 -2.78125 C 0.390625 -3.707031 0.640625 -4.457031 1.140625 -5.03125 C 1.648438 -5.613281 2.3125 -5.90625 3.125 -5.90625 Z M 4.671875 -3.34375 C 4.628906 -3.769531 4.535156 -4.109375 4.390625 -4.359375 C 4.117188 -4.828125 3.675781 -5.0625 3.0625 -5.0625 C 2.613281 -5.0625 2.238281 -4.898438 1.9375 -4.578125 C 1.632812 -4.253906 1.472656 -3.84375 1.453125 -3.34375 Z M 3.03125 -5.921875 Z M 3.03125 -5.921875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-9">
|
||||
<path d="M 1.15625 -5.78125 L 2.265625 -1.21875 L 3.390625 -5.78125 L 4.484375 -5.78125 L 5.625 -1.25 L 6.796875 -5.78125 L 7.765625 -5.78125 L 6.09375 0 L 5.09375 0 L 3.90625 -4.46875 L 2.765625 0 L 1.765625 0 L 0.09375 -5.78125 Z M 1.15625 -5.78125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-10">
|
||||
<path d="M 0.90625 -7.390625 L 1.890625 -7.390625 L 1.890625 -5.78125 L 2.8125 -5.78125 L 2.8125 -4.984375 L 1.890625 -4.984375 L 1.890625 -1.21875 C 1.890625 -1.007812 1.957031 -0.875 2.09375 -0.8125 C 2.164062 -0.769531 2.289062 -0.75 2.46875 -0.75 C 2.519531 -0.75 2.570312 -0.75 2.625 -0.75 C 2.675781 -0.75 2.738281 -0.753906 2.8125 -0.765625 L 2.8125 0 C 2.695312 0.03125 2.578125 0.0507812 2.453125 0.0625 C 2.335938 0.0820312 2.210938 0.09375 2.078125 0.09375 C 1.617188 0.09375 1.304688 -0.0195312 1.140625 -0.25 C 0.984375 -0.488281 0.90625 -0.789062 0.90625 -1.15625 L 0.90625 -4.984375 L 0.125 -4.984375 L 0.125 -5.78125 L 0.90625 -5.78125 Z M 0.90625 -7.390625 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
<path d="M 1.390625 -2 C 1.453125 -1.4375 1.710938 -1.046875 2.171875 -0.828125 C 2.398438 -0.722656 2.664062 -0.671875 2.96875 -0.671875 C 3.550781 -0.671875 3.984375 -0.851562 4.265625 -1.21875 C 4.546875 -1.59375 4.6875 -2.007812 4.6875 -2.46875 C 4.6875 -3.007812 4.519531 -3.425781 4.1875 -3.71875 C 3.851562 -4.019531 3.457031 -4.171875 3 -4.171875 C 2.65625 -4.171875 2.359375 -4.101562 2.109375 -3.96875 C 1.867188 -3.84375 1.664062 -3.664062 1.5 -3.4375 L 0.640625 -3.484375 L 1.234375 -7.703125 L 5.3125 -7.703125 L 5.3125 -6.75 L 1.984375 -6.75 L 1.640625 -4.578125 C 1.828125 -4.710938 2.003906 -4.816406 2.171875 -4.890625 C 2.460938 -5.003906 2.796875 -5.0625 3.171875 -5.0625 C 3.890625 -5.0625 4.5 -4.828125 5 -4.359375 C 5.5 -3.898438 5.75 -3.316406 5.75 -2.609375 C 5.75 -1.867188 5.519531 -1.210938 5.0625 -0.640625 C 4.601562 -0.078125 3.875 0.203125 2.875 0.203125 C 2.238281 0.203125 1.675781 0.0234375 1.1875 -0.328125 C 0.695312 -0.691406 0.421875 -1.25 0.359375 -2 Z M 1.390625 -2 "/>
|
||||
</g>
|
||||
<g id="glyph-1-1">
|
||||
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-1-2">
|
||||
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
|
||||
</g>
|
||||
<g id="glyph-1-3">
|
||||
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-2-0">
|
||||
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
|
||||
</g>
|
||||
<g id="glyph-2-1">
|
||||
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2">
|
||||
<path d="M 0.90625 -7.328125 L 2.125 -7.328125 L 2.125 -6.28125 C 2.414062 -6.644531 2.675781 -6.90625 2.90625 -7.0625 C 3.3125 -7.34375 3.773438 -7.484375 4.296875 -7.484375 C 4.878906 -7.484375 5.347656 -7.34375 5.703125 -7.0625 C 5.898438 -6.894531 6.082031 -6.648438 6.25 -6.328125 C 6.519531 -6.722656 6.835938 -7.015625 7.203125 -7.203125 C 7.578125 -7.390625 7.992188 -7.484375 8.453125 -7.484375 C 9.441406 -7.484375 10.113281 -7.128906 10.46875 -6.421875 C 10.65625 -6.035156 10.75 -5.519531 10.75 -4.875 L 10.75 0 L 9.46875 0 L 9.46875 -5.09375 C 9.46875 -5.570312 9.347656 -5.898438 9.109375 -6.078125 C 8.867188 -6.265625 8.570312 -6.359375 8.21875 -6.359375 C 7.738281 -6.359375 7.320312 -6.195312 6.96875 -5.875 C 6.625 -5.550781 6.453125 -5.015625 6.453125 -4.265625 L 6.453125 0 L 5.203125 0 L 5.203125 -4.78125 C 5.203125 -5.28125 5.140625 -5.640625 5.015625 -5.859375 C 4.828125 -6.203125 4.476562 -6.375 3.96875 -6.375 C 3.507812 -6.375 3.085938 -6.191406 2.703125 -5.828125 C 2.328125 -5.472656 2.140625 -4.828125 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -7.328125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-3">
|
||||
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-4">
|
||||
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
|
||||
</g>
|
||||
<g id="glyph-2-5">
|
||||
<path d="M 1.203125 -8.4375 C 1.222656 -8.945312 1.316406 -9.320312 1.484375 -9.5625 C 1.765625 -9.976562 2.316406 -10.1875 3.140625 -10.1875 C 3.210938 -10.1875 3.289062 -10.179688 3.375 -10.171875 C 3.457031 -10.171875 3.550781 -10.164062 3.65625 -10.15625 L 3.65625 -9.03125 C 3.53125 -9.039062 3.4375 -9.046875 3.375 -9.046875 C 3.320312 -9.054688 3.269531 -9.0625 3.21875 -9.0625 C 2.84375 -9.0625 2.617188 -8.960938 2.546875 -8.765625 C 2.472656 -8.578125 2.4375 -8.082031 2.4375 -7.28125 L 3.65625 -7.28125 L 3.65625 -6.3125 L 2.421875 -6.3125 L 2.421875 0 L 1.203125 0 L 1.203125 -6.3125 L 0.1875 -6.3125 L 0.1875 -7.28125 L 1.203125 -7.28125 Z M 1.203125 -8.4375 "/>
|
||||
</g>
|
||||
<g id="glyph-2-6">
|
||||
<path d="M 0.9375 -10.046875 L 2.171875 -10.046875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -10.046875 "/>
|
||||
</g>
|
||||
<g id="glyph-3-0">
|
||||
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
|
||||
</g>
|
||||
<g id="glyph-3-1">
|
||||
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
|
||||
</g>
|
||||
<g id="glyph-3-2">
|
||||
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-3-3">
|
||||
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
|
||||
</g>
|
||||
<g id="glyph-3-4">
|
||||
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
|
||||
</g>
|
||||
</g>
|
||||
</defs>
|
||||
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 432 L 360 432 L 360 0 L 0 0 Z M 0 432 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 328.605469 L 353.027344 328.605469 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 243.867188 L 353.027344 243.867188 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 159.125 L 353.027344 159.125 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 74.386719 L 353.027344 74.386719 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 121.292969 391.613281 L 121.292969 6.972656 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 192.683594 391.613281 L 192.683594 6.972656 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 264.078125 391.613281 L 264.078125 6.972656 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 335.46875 391.613281 L 335.46875 6.972656 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 189.878906 270 C 189.878906 272.605469 185.972656 272.605469 185.972656 270 C 185.972656 267.394531 189.878906 267.394531 189.878906 270 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 158.945312 365.214844 C 158.945312 367.820312 155.035156 367.820312 155.035156 365.214844 C 155.035156 362.609375 158.945312 362.609375 158.945312 365.214844 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 197.019531 69.574219 C 197.019531 72.179688 193.109375 72.179688 193.109375 69.574219 C 193.109375 66.964844 197.019531 66.964844 197.019531 69.574219 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 128.601562 325.980469 C 128.601562 328.585938 124.691406 328.585938 124.691406 325.980469 C 124.691406 323.375 128.601562 323.375 128.601562 325.980469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 275.550781 43.050781 C 275.550781 45.65625 271.640625 45.65625 271.640625 43.050781 C 271.640625 40.441406 275.550781 40.441406 275.550781 43.050781 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 245.210938 329.523438 C 245.210938 332.128906 241.300781 332.128906 241.300781 329.523438 C 241.300781 326.914062 245.210938 326.914062 245.210938 329.523438 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 253.539062 53.539062 C 253.539062 56.148438 249.628906 56.148438 249.628906 53.539062 C 249.628906 50.933594 253.539062 50.933594 253.539062 53.539062 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 242.828125 273.152344 C 242.828125 275.757812 238.921875 275.757812 238.921875 273.152344 C 238.921875 270.546875 242.828125 270.546875 242.828125 273.152344 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 271.980469 330.402344 C 271.980469 333.011719 268.070312 333.011719 268.070312 330.402344 C 268.070312 327.796875 271.980469 327.796875 271.980469 330.402344 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 273.765625 332.929688 C 273.765625 335.535156 269.855469 335.535156 269.855469 332.929688 C 269.855469 330.324219 273.765625 330.324219 273.765625 332.929688 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 198.210938 134.601562 C 198.210938 137.210938 194.300781 137.210938 194.300781 134.601562 C 194.300781 131.996094 198.210938 131.996094 198.210938 134.601562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 201.183594 312.066406 C 201.183594 314.671875 197.273438 314.671875 197.273438 312.066406 C 197.273438 309.460938 201.183594 309.460938 201.183594 312.066406 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 221.414062 241.1875 C 221.414062 243.796875 217.503906 243.796875 217.503906 241.1875 C 217.503906 238.582031 221.414062 238.582031 221.414062 241.1875 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 212.488281 352.773438 C 212.488281 355.382812 208.578125 355.382812 208.578125 352.773438 C 208.578125 350.167969 212.488281 350.167969 212.488281 352.773438 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 94.691406 317.726562 C 94.691406 320.332031 90.78125 320.332031 90.78125 317.726562 C 90.78125 315.121094 94.691406 315.121094 94.691406 317.726562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 115.515625 342.929688 C 115.515625 345.535156 111.605469 345.535156 111.605469 342.929688 C 111.605469 340.320312 115.515625 340.320312 115.515625 342.929688 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 207.730469 74.640625 C 207.730469 77.246094 203.820312 77.246094 203.820312 74.640625 C 203.820312 72.035156 207.730469 72.035156 207.730469 74.640625 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 160.730469 324.351562 C 160.730469 326.960938 156.820312 326.960938 156.820312 324.351562 C 156.820312 321.746094 160.730469 321.746094 160.730469 324.351562 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 150.019531 279.425781 C 150.019531 282.03125 146.109375 282.03125 146.109375 279.425781 C 146.109375 276.816406 150.019531 276.816406 150.019531 279.425781 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 114.917969 374.128906 C 114.917969 376.734375 111.007812 376.734375 111.007812 374.128906 C 111.007812 371.523438 114.917969 371.523438 114.917969 374.128906 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 252.945312 163.449219 C 252.945312 166.054688 249.035156 166.054688 249.035156 163.449219 C 249.035156 160.84375 252.945312 160.84375 252.945312 163.449219 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 210.109375 333.980469 C 210.109375 336.585938 206.199219 336.585938 206.199219 333.980469 C 206.199219 331.375 210.109375 331.375 210.109375 333.980469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 258.296875 139.332031 C 258.296875 141.9375 254.386719 141.9375 254.386719 139.332031 C 254.386719 136.726562 258.296875 136.726562 258.296875 139.332031 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 257.109375 285.746094 C 257.109375 288.351562 253.199219 288.351562 253.199219 285.746094 C 253.199219 283.140625 257.109375 283.140625 257.109375 285.746094 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 337.425781 24.457031 C 337.425781 27.0625 333.515625 27.0625 333.515625 24.457031 C 333.515625 21.851562 337.425781 21.851562 337.425781 24.457031 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 320.765625 223.019531 C 320.765625 225.628906 316.855469 225.628906 316.855469 223.019531 C 316.855469 220.414062 320.765625 220.414062 320.765625 223.019531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 125.628906 265.304688 C 125.628906 267.914062 121.71875 267.914062 121.71875 265.304688 C 121.71875 262.699219 125.628906 262.699219 125.628906 265.304688 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 136.335938 367.25 C 136.335938 369.855469 132.425781 369.855469 132.425781 367.25 C 132.425781 364.640625 136.335938 364.640625 136.335938 367.25 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 97.664062 274.964844 C 97.664062 277.574219 93.757812 277.574219 93.757812 274.964844 C 93.757812 272.359375 97.664062 272.359375 97.664062 274.964844 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.25 367.976562 C 76.25 370.582031 72.339844 370.582031 72.339844 367.976562 C 72.339844 365.371094 76.25 365.371094 76.25 367.976562 "/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="192.382812" y="273.960938"/>
|
||||
<use xlink:href="#glyph-0-1" x="197.902647" y="273.960938"/>
|
||||
<use xlink:href="#glyph-0-2" x="204.042385" y="273.960938"/>
|
||||
<use xlink:href="#glyph-0-3" x="207.718681" y="273.960938"/>
|
||||
<use xlink:href="#glyph-0-4" x="210.171342" y="273.960938"/>
|
||||
<use xlink:href="#glyph-0-5" x="216.31108" y="273.960938"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="162.5" y="369.808594"/>
|
||||
<use xlink:href="#glyph-0-1" x="168.019835" y="369.808594"/>
|
||||
<use xlink:href="#glyph-0-2" x="174.159573" y="369.808594"/>
|
||||
<use xlink:href="#glyph-0-3" x="177.835869" y="369.808594"/>
|
||||
<use xlink:href="#glyph-0-4" x="180.28853" y="369.808594"/>
|
||||
<use xlink:href="#glyph-0-5" x="186.428268" y="369.808594"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="192.066406" y="64.8125"/>
|
||||
<use xlink:href="#glyph-0-1" x="197.586241" y="64.8125"/>
|
||||
<use xlink:href="#glyph-0-2" x="203.725979" y="64.8125"/>
|
||||
<use xlink:href="#glyph-0-3" x="207.402275" y="64.8125"/>
|
||||
<use xlink:href="#glyph-0-4" x="209.854936" y="64.8125"/>
|
||||
<use xlink:href="#glyph-0-5" x="215.994674" y="64.8125"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="123.644531" y="338.628906"/>
|
||||
<use xlink:href="#glyph-0-1" x="129.164366" y="338.628906"/>
|
||||
<use xlink:href="#glyph-0-2" x="135.304104" y="338.628906"/>
|
||||
<use xlink:href="#glyph-0-3" x="138.9804" y="338.628906"/>
|
||||
<use xlink:href="#glyph-0-4" x="141.433061" y="338.628906"/>
|
||||
<use xlink:href="#glyph-0-5" x="147.572799" y="338.628906"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="278.914062" y="45.640625"/>
|
||||
<use xlink:href="#glyph-0-1" x="284.433897" y="45.640625"/>
|
||||
<use xlink:href="#glyph-0-2" x="290.573635" y="45.640625"/>
|
||||
<use xlink:href="#glyph-0-3" x="294.249931" y="45.640625"/>
|
||||
<use xlink:href="#glyph-0-4" x="296.702592" y="45.640625"/>
|
||||
<use xlink:href="#glyph-0-5" x="302.84233" y="45.640625"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="235.582031" y="342.164062"/>
|
||||
<use xlink:href="#glyph-0-1" x="241.101866" y="342.164062"/>
|
||||
<use xlink:href="#glyph-0-2" x="247.241604" y="342.164062"/>
|
||||
<use xlink:href="#glyph-0-3" x="250.9179" y="342.164062"/>
|
||||
<use xlink:href="#glyph-0-4" x="253.370561" y="342.164062"/>
|
||||
<use xlink:href="#glyph-0-5" x="259.510299" y="342.164062"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="256.074219" y="60.882812"/>
|
||||
<use xlink:href="#glyph-0-1" x="261.594053" y="60.882812"/>
|
||||
<use xlink:href="#glyph-0-2" x="267.733791" y="60.882812"/>
|
||||
<use xlink:href="#glyph-0-3" x="271.410087" y="60.882812"/>
|
||||
<use xlink:href="#glyph-0-4" x="273.862748" y="60.882812"/>
|
||||
<use xlink:href="#glyph-0-5" x="280.002486" y="60.882812"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="245.359375" y="275.671875"/>
|
||||
<use xlink:href="#glyph-0-1" x="250.87921" y="275.671875"/>
|
||||
<use xlink:href="#glyph-0-2" x="257.018948" y="275.671875"/>
|
||||
<use xlink:href="#glyph-0-3" x="260.695244" y="275.671875"/>
|
||||
<use xlink:href="#glyph-0-4" x="263.147905" y="275.671875"/>
|
||||
<use xlink:href="#glyph-0-5" x="269.287643" y="275.671875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="267.054688" y="325.664062"/>
|
||||
<use xlink:href="#glyph-0-6" x="272.574522" y="325.664062"/>
|
||||
<use xlink:href="#glyph-0-7" x="278.71426" y="325.664062"/>
|
||||
<use xlink:href="#glyph-0-7" x="287.910391" y="325.664062"/>
|
||||
<use xlink:href="#glyph-0-8" x="297.106522" y="325.664062"/>
|
||||
<use xlink:href="#glyph-0-2" x="303.24626" y="325.664062"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="278.519531" y="340.867188"/>
|
||||
<use xlink:href="#glyph-0-6" x="284.039366" y="340.867188"/>
|
||||
<use xlink:href="#glyph-0-7" x="290.179104" y="340.867188"/>
|
||||
<use xlink:href="#glyph-0-7" x="299.375235" y="340.867188"/>
|
||||
<use xlink:href="#glyph-0-8" x="308.571365" y="340.867188"/>
|
||||
<use xlink:href="#glyph-0-2" x="314.711103" y="340.867188"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="200.703125" y="138.5625"/>
|
||||
<use xlink:href="#glyph-0-3" x="208.675621" y="138.5625"/>
|
||||
<use xlink:href="#glyph-0-4" x="211.128281" y="138.5625"/>
|
||||
<use xlink:href="#glyph-0-10" x="217.268019" y="138.5625"/>
|
||||
<use xlink:href="#glyph-0-8" x="220.335193" y="138.5625"/>
|
||||
<use xlink:href="#glyph-0-2" x="226.474931" y="138.5625"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="203.695312" y="316.027344"/>
|
||||
<use xlink:href="#glyph-0-3" x="211.667808" y="316.027344"/>
|
||||
<use xlink:href="#glyph-0-4" x="214.120469" y="316.027344"/>
|
||||
<use xlink:href="#glyph-0-10" x="220.260207" y="316.027344"/>
|
||||
<use xlink:href="#glyph-0-8" x="223.327381" y="316.027344"/>
|
||||
<use xlink:href="#glyph-0-2" x="229.467119" y="316.027344"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="223.898438" y="245.148438"/>
|
||||
<use xlink:href="#glyph-0-3" x="231.870933" y="245.148438"/>
|
||||
<use xlink:href="#glyph-0-4" x="234.323594" y="245.148438"/>
|
||||
<use xlink:href="#glyph-0-10" x="240.463332" y="245.148438"/>
|
||||
<use xlink:href="#glyph-0-8" x="243.530506" y="245.148438"/>
|
||||
<use xlink:href="#glyph-0-2" x="249.670244" y="245.148438"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="215.140625" y="357.320312"/>
|
||||
<use xlink:href="#glyph-0-3" x="223.113121" y="357.320312"/>
|
||||
<use xlink:href="#glyph-0-4" x="225.565781" y="357.320312"/>
|
||||
<use xlink:href="#glyph-0-10" x="231.705519" y="357.320312"/>
|
||||
<use xlink:href="#glyph-0-8" x="234.772693" y="357.320312"/>
|
||||
<use xlink:href="#glyph-0-2" x="240.912431" y="357.320312"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="97.1875" y="321.269531"/>
|
||||
<use xlink:href="#glyph-0-3" x="105.159996" y="321.269531"/>
|
||||
<use xlink:href="#glyph-0-4" x="107.612656" y="321.269531"/>
|
||||
<use xlink:href="#glyph-0-10" x="113.752394" y="321.269531"/>
|
||||
<use xlink:href="#glyph-0-8" x="116.819568" y="321.269531"/>
|
||||
<use xlink:href="#glyph-0-2" x="122.959306" y="321.269531"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="89.164062" y="355.546875"/>
|
||||
<use xlink:href="#glyph-0-3" x="97.136558" y="355.546875"/>
|
||||
<use xlink:href="#glyph-0-4" x="99.589219" y="355.546875"/>
|
||||
<use xlink:href="#glyph-0-10" x="105.728957" y="355.546875"/>
|
||||
<use xlink:href="#glyph-0-8" x="108.796131" y="355.546875"/>
|
||||
<use xlink:href="#glyph-0-2" x="114.935869" y="355.546875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="210.925781" y="79.996094"/>
|
||||
<use xlink:href="#glyph-0-1" x="216.445616" y="79.996094"/>
|
||||
<use xlink:href="#glyph-0-2" x="222.585354" y="79.996094"/>
|
||||
<use xlink:href="#glyph-0-3" x="226.26165" y="79.996094"/>
|
||||
<use xlink:href="#glyph-0-4" x="228.714311" y="79.996094"/>
|
||||
<use xlink:href="#glyph-0-5" x="234.854049" y="79.996094"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="163.214844" y="328.3125"/>
|
||||
<use xlink:href="#glyph-0-1" x="168.734678" y="328.3125"/>
|
||||
<use xlink:href="#glyph-0-2" x="174.874416" y="328.3125"/>
|
||||
<use xlink:href="#glyph-0-3" x="178.550712" y="328.3125"/>
|
||||
<use xlink:href="#glyph-0-4" x="181.003373" y="328.3125"/>
|
||||
<use xlink:href="#glyph-0-5" x="187.143111" y="328.3125"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="152.507812" y="283.382812"/>
|
||||
<use xlink:href="#glyph-0-1" x="158.027647" y="283.382812"/>
|
||||
<use xlink:href="#glyph-0-2" x="164.167385" y="283.382812"/>
|
||||
<use xlink:href="#glyph-0-3" x="167.843681" y="283.382812"/>
|
||||
<use xlink:href="#glyph-0-4" x="170.296342" y="283.382812"/>
|
||||
<use xlink:href="#glyph-0-5" x="176.43608" y="283.382812"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="109.910156" y="386.867188"/>
|
||||
<use xlink:href="#glyph-0-1" x="115.429991" y="386.867188"/>
|
||||
<use xlink:href="#glyph-0-2" x="121.569729" y="386.867188"/>
|
||||
<use xlink:href="#glyph-0-3" x="125.246025" y="386.867188"/>
|
||||
<use xlink:href="#glyph-0-4" x="127.698686" y="386.867188"/>
|
||||
<use xlink:href="#glyph-0-5" x="133.838424" y="386.867188"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="255.457031" y="167.40625"/>
|
||||
<use xlink:href="#glyph-0-1" x="260.976866" y="167.40625"/>
|
||||
<use xlink:href="#glyph-0-2" x="267.116604" y="167.40625"/>
|
||||
<use xlink:href="#glyph-0-3" x="270.7929" y="167.40625"/>
|
||||
<use xlink:href="#glyph-0-4" x="273.245561" y="167.40625"/>
|
||||
<use xlink:href="#glyph-0-5" x="279.385299" y="167.40625"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="177.855469" y="346.570312"/>
|
||||
<use xlink:href="#glyph-0-1" x="183.375303" y="346.570312"/>
|
||||
<use xlink:href="#glyph-0-2" x="189.515041" y="346.570312"/>
|
||||
<use xlink:href="#glyph-0-3" x="193.191337" y="346.570312"/>
|
||||
<use xlink:href="#glyph-0-4" x="195.643998" y="346.570312"/>
|
||||
<use xlink:href="#glyph-0-5" x="201.783736" y="346.570312"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="260.792969" y="143.292969"/>
|
||||
<use xlink:href="#glyph-0-1" x="266.312803" y="143.292969"/>
|
||||
<use xlink:href="#glyph-0-2" x="272.452541" y="143.292969"/>
|
||||
<use xlink:href="#glyph-0-3" x="276.128837" y="143.292969"/>
|
||||
<use xlink:href="#glyph-0-4" x="278.581498" y="143.292969"/>
|
||||
<use xlink:href="#glyph-0-5" x="284.721236" y="143.292969"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="260.003906" y="290.875"/>
|
||||
<use xlink:href="#glyph-0-1" x="265.523741" y="290.875"/>
|
||||
<use xlink:href="#glyph-0-2" x="271.663479" y="290.875"/>
|
||||
<use xlink:href="#glyph-0-3" x="275.339775" y="290.875"/>
|
||||
<use xlink:href="#glyph-0-4" x="277.792436" y="290.875"/>
|
||||
<use xlink:href="#glyph-0-5" x="283.932174" y="290.875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="291.28125" y="28.417969"/>
|
||||
<use xlink:href="#glyph-0-6" x="296.801085" y="28.417969"/>
|
||||
<use xlink:href="#glyph-0-7" x="302.940823" y="28.417969"/>
|
||||
<use xlink:href="#glyph-0-7" x="312.136953" y="28.417969"/>
|
||||
<use xlink:href="#glyph-0-8" x="321.333084" y="28.417969"/>
|
||||
<use xlink:href="#glyph-0-2" x="327.472822" y="28.417969"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="274.53125" y="226.988281"/>
|
||||
<use xlink:href="#glyph-0-6" x="280.051085" y="226.988281"/>
|
||||
<use xlink:href="#glyph-0-7" x="286.190823" y="226.988281"/>
|
||||
<use xlink:href="#glyph-0-7" x="295.386953" y="226.988281"/>
|
||||
<use xlink:href="#glyph-0-8" x="304.583084" y="226.988281"/>
|
||||
<use xlink:href="#glyph-0-2" x="310.722822" y="226.988281"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="129.609375" y="267.566406"/>
|
||||
<use xlink:href="#glyph-0-3" x="137.581871" y="267.566406"/>
|
||||
<use xlink:href="#glyph-0-4" x="140.034531" y="267.566406"/>
|
||||
<use xlink:href="#glyph-0-10" x="146.174269" y="267.566406"/>
|
||||
<use xlink:href="#glyph-0-8" x="149.241443" y="267.566406"/>
|
||||
<use xlink:href="#glyph-0-2" x="155.381181" y="267.566406"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="125.835938" y="360.511719"/>
|
||||
<use xlink:href="#glyph-0-3" x="133.808433" y="360.511719"/>
|
||||
<use xlink:href="#glyph-0-4" x="136.261094" y="360.511719"/>
|
||||
<use xlink:href="#glyph-0-10" x="142.400832" y="360.511719"/>
|
||||
<use xlink:href="#glyph-0-8" x="145.468006" y="360.511719"/>
|
||||
<use xlink:href="#glyph-0-2" x="151.607744" y="360.511719"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="100.179688" y="282.683594"/>
|
||||
<use xlink:href="#glyph-0-3" x="108.152183" y="282.683594"/>
|
||||
<use xlink:href="#glyph-0-4" x="110.604844" y="282.683594"/>
|
||||
<use xlink:href="#glyph-0-10" x="116.744582" y="282.683594"/>
|
||||
<use xlink:href="#glyph-0-8" x="119.811756" y="282.683594"/>
|
||||
<use xlink:href="#glyph-0-2" x="125.951494" y="282.683594"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="78.738281" y="371.597656"/>
|
||||
<use xlink:href="#glyph-0-3" x="86.710777" y="371.597656"/>
|
||||
<use xlink:href="#glyph-0-4" x="89.163438" y="371.597656"/>
|
||||
<use xlink:href="#glyph-0-10" x="95.303176" y="371.597656"/>
|
||||
<use xlink:href="#glyph-0-8" x="98.370349" y="371.597656"/>
|
||||
<use xlink:href="#glyph-0-2" x="104.510087" y="371.597656"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0" x="29.828125" y="332.625"/>
|
||||
<use xlink:href="#glyph-1-1" x="36.057031" y="332.625"/>
|
||||
<use xlink:href="#glyph-1-1" x="42.285938" y="332.625"/>
|
||||
<use xlink:href="#glyph-1-1" x="48.514844" y="332.625"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-2" x="23.597656" y="247.882812"/>
|
||||
<use xlink:href="#glyph-1-1" x="29.826563" y="247.882812"/>
|
||||
<use xlink:href="#glyph-1-1" x="36.055469" y="247.882812"/>
|
||||
<use xlink:href="#glyph-1-1" x="42.284375" y="247.882812"/>
|
||||
<use xlink:href="#glyph-1-1" x="48.513281" y="247.882812"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-2" x="23.597656" y="163.144531"/>
|
||||
<use xlink:href="#glyph-1-0" x="29.826563" y="163.144531"/>
|
||||
<use xlink:href="#glyph-1-1" x="36.055469" y="163.144531"/>
|
||||
<use xlink:href="#glyph-1-1" x="42.284375" y="163.144531"/>
|
||||
<use xlink:href="#glyph-1-1" x="48.513281" y="163.144531"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-3" x="23.597656" y="78.402344"/>
|
||||
<use xlink:href="#glyph-1-1" x="29.826563" y="78.402344"/>
|
||||
<use xlink:href="#glyph-1-1" x="36.055469" y="78.402344"/>
|
||||
<use xlink:href="#glyph-1-1" x="42.284375" y="78.402344"/>
|
||||
<use xlink:href="#glyph-1-1" x="48.513281" y="78.402344"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 328.605469 L 61.019531 328.605469 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 243.867188 L 61.019531 243.867188 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 159.125 L 61.019531 159.125 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 74.386719 L 61.019531 74.386719 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 121.292969 395.101562 L 121.292969 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 192.683594 395.101562 L 192.683594 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 264.078125 395.101562 L 264.078125 391.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 335.46875 395.101562 L 335.46875 391.613281 "/>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0" x="118.179688" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-2" x="186.453125" y="405.921875"/>
|
||||
<use xlink:href="#glyph-1-1" x="192.682031" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-2" x="257.847656" y="405.921875"/>
|
||||
<use xlink:href="#glyph-1-0" x="264.076563" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-3" x="329.238281" y="405.921875"/>
|
||||
<use xlink:href="#glyph-1-1" x="335.467188" y="405.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-0" x="176.28125" y="421.929688"/>
|
||||
<use xlink:href="#glyph-2-1" x="180.170898" y="421.929688"/>
|
||||
<use xlink:href="#glyph-2-2" x="187.957031" y="421.929688"/>
|
||||
<use xlink:href="#glyph-2-3" x="199.619141" y="421.929688"/>
|
||||
<use xlink:href="#glyph-2-4" x="207.405273" y="421.929688"/>
|
||||
<use xlink:href="#glyph-2-5" x="215.191406" y="421.929688"/>
|
||||
<use xlink:href="#glyph-2-1" x="219.081055" y="421.929688"/>
|
||||
<use xlink:href="#glyph-2-1" x="226.867188" y="421.929688"/>
|
||||
<use xlink:href="#glyph-2-6" x="234.65332" y="421.929688"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-0" x="17.015625" y="216.417969"/>
|
||||
<use xlink:href="#glyph-3-1" x="17.015625" y="209.417969"/>
|
||||
<use xlink:href="#glyph-3-2" x="17.015625" y="201.631836"/>
|
||||
<use xlink:href="#glyph-3-3" x="17.015625" y="193.845703"/>
|
||||
<use xlink:href="#glyph-3-4" x="17.015625" y="186.05957"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 52 KiB |
After Width: | Height: | Size: 168 KiB |
After Width: | Height: | Size: 543 KiB |
After Width: | Height: | Size: 51 KiB |
After Width: | Height: | Size: 542 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 542 KiB |
After Width: | Height: | Size: 49 KiB |
|
@ -0,0 +1,311 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="295" viewBox="0 0 360 295">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-6">
|
||||
</g>
|
||||
<g id="glyph-0-7">
|
||||
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-8">
|
||||
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-9">
|
||||
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-10">
|
||||
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-11">
|
||||
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-12">
|
||||
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-13">
|
||||
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-14">
|
||||
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-15">
|
||||
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-0-16">
|
||||
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-17">
|
||||
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
|
||||
</g>
|
||||
<g id="glyph-0-18">
|
||||
<path d="M 0.859375 -8.03125 L 2.140625 -8.03125 L 6.203125 -1.53125 L 6.203125 -8.03125 L 7.234375 -8.03125 L 7.234375 0 L 6.015625 0 L 1.890625 -6.5 L 1.890625 0 L 0.859375 0 Z M 3.96875 -8.03125 Z M 3.96875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-19">
|
||||
<path d="M 4.984375 -3.296875 L 3.765625 -6.84375 L 2.46875 -3.296875 Z M 3.1875 -8.03125 L 4.421875 -8.03125 L 7.328125 0 L 6.140625 0 L 5.328125 -2.40625 L 2.15625 -2.40625 L 1.28125 0 L 0.171875 0 Z M 3.1875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-20">
|
||||
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-21">
|
||||
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-22">
|
||||
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
<path d="M 3.71875 -7.53125 C 4.550781 -7.53125 5.222656 -7.328125 5.734375 -6.921875 C 6.253906 -6.523438 6.566406 -5.835938 6.671875 -4.859375 L 5.46875 -4.859375 C 5.394531 -5.304688 5.226562 -5.679688 4.96875 -5.984375 C 4.71875 -6.285156 4.300781 -6.4375 3.71875 -6.4375 C 2.9375 -6.4375 2.378906 -6.050781 2.046875 -5.28125 C 1.828125 -4.789062 1.71875 -4.179688 1.71875 -3.453125 C 1.71875 -2.710938 1.867188 -2.09375 2.171875 -1.59375 C 2.484375 -1.09375 2.972656 -0.84375 3.640625 -0.84375 C 4.148438 -0.84375 4.554688 -1 4.859375 -1.3125 C 5.160156 -1.625 5.363281 -2.050781 5.46875 -2.59375 L 6.671875 -2.59375 C 6.535156 -1.625 6.191406 -0.910156 5.640625 -0.453125 C 5.097656 -0.00390625 4.398438 0.21875 3.546875 0.21875 C 2.585938 0.21875 1.820312 -0.128906 1.25 -0.828125 C 0.6875 -1.535156 0.40625 -2.410156 0.40625 -3.453125 C 0.40625 -4.742188 0.71875 -5.742188 1.34375 -6.453125 C 1.96875 -7.171875 2.757812 -7.53125 3.71875 -7.53125 Z M 3.53125 -7.5 Z M 3.53125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-1">
|
||||
<path d="M 3.8125 -0.796875 C 4.625 -0.796875 5.179688 -1.101562 5.484375 -1.71875 C 5.785156 -2.332031 5.9375 -3.019531 5.9375 -3.78125 C 5.9375 -4.46875 5.828125 -5.023438 5.609375 -5.453125 C 5.265625 -6.117188 4.671875 -6.453125 3.828125 -6.453125 C 3.066406 -6.453125 2.515625 -6.164062 2.171875 -5.59375 C 1.835938 -5.019531 1.671875 -4.328125 1.671875 -3.515625 C 1.671875 -2.742188 1.835938 -2.097656 2.171875 -1.578125 C 2.515625 -1.054688 3.0625 -0.796875 3.8125 -0.796875 Z M 3.859375 -7.53125 C 4.796875 -7.53125 5.585938 -7.210938 6.234375 -6.578125 C 6.890625 -5.953125 7.21875 -5.03125 7.21875 -3.8125 C 7.21875 -2.632812 6.929688 -1.660156 6.359375 -0.890625 C 5.785156 -0.117188 4.894531 0.265625 3.6875 0.265625 C 2.6875 0.265625 1.890625 -0.0703125 1.296875 -0.75 C 0.703125 -1.4375 0.40625 -2.351562 0.40625 -3.5 C 0.40625 -4.726562 0.71875 -5.707031 1.34375 -6.4375 C 1.96875 -7.164062 2.804688 -7.53125 3.859375 -7.53125 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-2">
|
||||
<path d="M 2.140625 -7.328125 L 2.140625 -2.46875 C 2.140625 -2.09375 2.195312 -1.785156 2.3125 -1.546875 C 2.53125 -1.109375 2.9375 -0.890625 3.53125 -0.890625 C 4.382812 -0.890625 4.96875 -1.269531 5.28125 -2.03125 C 5.445312 -2.445312 5.53125 -3.007812 5.53125 -3.71875 L 5.53125 -7.328125 L 6.765625 -7.328125 L 6.765625 0 L 5.609375 0 L 5.625 -1.078125 C 5.457031 -0.796875 5.257812 -0.5625 5.03125 -0.375 C 4.5625 0.0078125 3.988281 0.203125 3.3125 0.203125 C 2.269531 0.203125 1.5625 -0.144531 1.1875 -0.84375 C 0.976562 -1.21875 0.875 -1.71875 0.875 -2.34375 L 0.875 -7.328125 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-3">
|
||||
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-4">
|
||||
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
|
||||
</g>
|
||||
<g id="glyph-2-0">
|
||||
<path d="M -7.328125 -1.46875 L -1.546875 -2.875 L -7.328125 -4.3125 L -7.328125 -5.6875 L -1.59375 -7.125 L -7.328125 -8.625 L -7.328125 -9.84375 L 0 -7.71875 L 0 -6.453125 L -5.671875 -4.953125 L 0 -3.515625 L 0 -2.234375 L -7.328125 -0.125 Z M -7.328125 -1.46875 "/>
|
||||
</g>
|
||||
<g id="glyph-2-1">
|
||||
<path d="M -7.484375 -3.953125 C -7.484375 -4.472656 -7.359375 -4.972656 -7.109375 -5.453125 C -6.867188 -5.941406 -6.554688 -6.316406 -6.171875 -6.578125 C -5.804688 -6.828125 -5.375 -6.988281 -4.875 -7.0625 C -4.539062 -7.132812 -4.003906 -7.171875 -3.265625 -7.171875 L -3.265625 -1.8125 C -2.523438 -1.832031 -1.929688 -2.003906 -1.484375 -2.328125 C -1.035156 -2.660156 -0.8125 -3.171875 -0.8125 -3.859375 C -0.8125 -4.503906 -1.019531 -5.019531 -1.4375 -5.40625 C -1.6875 -5.625 -1.972656 -5.773438 -2.296875 -5.859375 L -2.296875 -7.078125 C -2.023438 -7.046875 -1.722656 -6.9375 -1.390625 -6.75 C -1.066406 -6.570312 -0.800781 -6.375 -0.59375 -6.15625 C -0.226562 -5.78125 0.0195312 -5.316406 0.15625 -4.765625 C 0.226562 -4.472656 0.265625 -4.140625 0.265625 -3.765625 C 0.265625 -2.847656 -0.0664062 -2.070312 -0.734375 -1.4375 C -1.398438 -0.8125 -2.328125 -0.5 -3.515625 -0.5 C -4.691406 -0.5 -5.644531 -0.816406 -6.375 -1.453125 C -7.113281 -2.085938 -7.484375 -2.921875 -7.484375 -3.953125 Z M -4.25 -5.90625 C -4.78125 -5.863281 -5.207031 -5.75 -5.53125 -5.5625 C -6.113281 -5.226562 -6.40625 -4.664062 -6.40625 -3.875 C -6.40625 -3.3125 -6.203125 -2.835938 -5.796875 -2.453125 C -5.390625 -2.066406 -4.875 -1.863281 -4.25 -1.84375 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2">
|
||||
<path d="M -1.953125 -1.84375 C -1.597656 -1.84375 -1.316406 -1.972656 -1.109375 -2.234375 C -0.898438 -2.492188 -0.796875 -2.800781 -0.796875 -3.15625 C -0.796875 -3.59375 -0.894531 -4.015625 -1.09375 -4.421875 C -1.425781 -5.097656 -1.972656 -5.4375 -2.734375 -5.4375 L -3.71875 -5.4375 C -3.625 -5.289062 -3.546875 -5.097656 -3.484375 -4.859375 C -3.421875 -4.617188 -3.375 -4.382812 -3.34375 -4.15625 L -3.25 -3.421875 C -3.195312 -2.972656 -3.101562 -2.632812 -2.96875 -2.40625 C -2.757812 -2.03125 -2.421875 -1.84375 -1.953125 -1.84375 Z M -4.4375 -4.828125 C -4.46875 -5.109375 -4.585938 -5.296875 -4.796875 -5.390625 C -4.898438 -5.441406 -5.054688 -5.46875 -5.265625 -5.46875 C -5.679688 -5.46875 -5.984375 -5.316406 -6.171875 -5.015625 C -6.359375 -4.722656 -6.453125 -4.300781 -6.453125 -3.75 C -6.453125 -3.101562 -6.28125 -2.644531 -5.9375 -2.375 C -5.75 -2.226562 -5.46875 -2.128906 -5.09375 -2.078125 L -5.09375 -0.9375 C -5.988281 -0.957031 -6.613281 -1.25 -6.96875 -1.8125 C -7.320312 -2.375 -7.5 -3.03125 -7.5 -3.78125 C -7.5 -4.632812 -7.332031 -5.332031 -7 -5.875 C -6.675781 -6.40625 -6.164062 -6.671875 -5.46875 -6.671875 L -1.265625 -6.671875 C -1.128906 -6.671875 -1.019531 -6.695312 -0.9375 -6.75 C -0.863281 -6.800781 -0.828125 -6.910156 -0.828125 -7.078125 C -0.828125 -7.140625 -0.832031 -7.203125 -0.84375 -7.265625 C -0.851562 -7.335938 -0.863281 -7.410156 -0.875 -7.484375 L 0.03125 -7.484375 C 0.0820312 -7.296875 0.113281 -7.148438 0.125 -7.046875 C 0.144531 -6.941406 0.15625 -6.804688 0.15625 -6.640625 C 0.15625 -6.210938 0.00390625 -5.90625 -0.296875 -5.71875 C -0.453125 -5.613281 -0.675781 -5.539062 -0.96875 -5.5 C -0.644531 -5.25 -0.359375 -4.890625 -0.109375 -4.421875 C 0.128906 -3.953125 0.25 -3.4375 0.25 -2.875 C 0.25 -2.195312 0.0429688 -1.640625 -0.359375 -1.203125 C -0.773438 -0.773438 -1.296875 -0.5625 -1.921875 -0.5625 C -2.597656 -0.5625 -3.125 -0.769531 -3.5 -1.1875 C -3.875 -1.613281 -4.101562 -2.171875 -4.1875 -2.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-3">
|
||||
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
|
||||
</g>
|
||||
<g id="glyph-2-4">
|
||||
<path d="M -10.078125 -0.90625 L -10.078125 -2.140625 L -6.328125 -2.140625 C -6.703125 -2.429688 -6.960938 -2.691406 -7.109375 -2.921875 C -7.367188 -3.316406 -7.5 -3.8125 -7.5 -4.40625 C -7.5 -5.46875 -7.128906 -6.1875 -6.390625 -6.5625 C -5.984375 -6.769531 -5.421875 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.609375 L -4.609375 -5.609375 C -5.148438 -5.609375 -5.546875 -5.539062 -5.796875 -5.40625 C -6.203125 -5.175781 -6.40625 -4.753906 -6.40625 -4.140625 C -6.40625 -3.628906 -6.226562 -3.164062 -5.875 -2.75 C -5.519531 -2.34375 -4.859375 -2.140625 -3.890625 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -10.078125 -0.90625 "/>
|
||||
</g>
|
||||
<g id="glyph-2-5">
|
||||
<path d="M -7.328125 -0.9375 L -7.328125 -2.109375 L -6.0625 -2.109375 C -6.300781 -2.203125 -6.597656 -2.4375 -6.953125 -2.8125 C -7.304688 -3.1875 -7.484375 -3.617188 -7.484375 -4.109375 C -7.484375 -4.128906 -7.476562 -4.164062 -7.46875 -4.21875 C -7.46875 -4.269531 -7.460938 -4.363281 -7.453125 -4.5 L -6.15625 -4.5 C -6.164062 -4.425781 -6.171875 -4.359375 -6.171875 -4.296875 C -6.179688 -4.234375 -6.1875 -4.164062 -6.1875 -4.09375 C -6.1875 -3.476562 -5.984375 -3.003906 -5.578125 -2.671875 C -5.179688 -2.335938 -4.726562 -2.171875 -4.21875 -2.171875 L 0 -2.171875 L 0 -0.9375 Z M -7.328125 -0.9375 "/>
|
||||
</g>
|
||||
<g id="glyph-2-6">
|
||||
<path d="M 1.75 0 L 1.0625 0 L 1.0625 -7.78125 L 1.75 -7.78125 Z M 1.75 0 "/>
|
||||
</g>
|
||||
<g id="glyph-2-7">
|
||||
<path d="M -7.328125 -5.46875 L -7.328125 -6.84375 C -6.859375 -6.664062 -5.785156 -6.28125 -4.109375 -5.6875 C -2.847656 -5.238281 -1.820312 -4.863281 -1.03125 -4.5625 C 0.832031 -3.851562 1.96875 -3.351562 2.375 -3.0625 C 2.789062 -2.769531 3 -2.265625 3 -1.546875 C 3 -1.378906 2.988281 -1.25 2.96875 -1.15625 C 2.957031 -1.0625 2.9375 -0.945312 2.90625 -0.8125 L 1.78125 -0.8125 C 1.84375 -1.019531 1.878906 -1.171875 1.890625 -1.265625 C 1.910156 -1.367188 1.921875 -1.457031 1.921875 -1.53125 C 1.921875 -1.75 1.878906 -1.910156 1.796875 -2.015625 C 1.722656 -2.128906 1.632812 -2.222656 1.53125 -2.296875 C 1.488281 -2.316406 1.296875 -2.394531 0.953125 -2.53125 C 0.617188 -2.675781 0.375 -2.78125 0.21875 -2.84375 L -7.328125 -0.140625 L -7.328125 -1.53125 L -1.359375 -3.5 Z M -7.5 -3.5 Z M -7.5 -3.5 "/>
|
||||
</g>
|
||||
<g id="glyph-2-8">
|
||||
<path d="M -0.828125 -4 C -0.828125 -4.570312 -1.066406 -5.046875 -1.546875 -5.421875 C -2.023438 -5.804688 -2.742188 -6 -3.703125 -6 C -4.285156 -6 -4.785156 -5.914062 -5.203125 -5.75 C -6.015625 -5.425781 -6.421875 -4.84375 -6.421875 -4 C -6.421875 -3.144531 -5.992188 -2.5625 -5.140625 -2.25 C -4.679688 -2.070312 -4.101562 -1.984375 -3.40625 -1.984375 C -2.84375 -1.984375 -2.363281 -2.070312 -1.96875 -2.25 C -1.207031 -2.5625 -0.828125 -3.144531 -0.828125 -4 Z M -7.28125 -0.8125 L -7.28125 -2 L -6.3125 -2 C -6.644531 -2.25 -6.90625 -2.519531 -7.09375 -2.8125 C -7.363281 -3.226562 -7.5 -3.710938 -7.5 -4.265625 C -7.5 -5.097656 -7.179688 -5.800781 -6.546875 -6.375 C -5.910156 -6.957031 -5.003906 -7.25 -3.828125 -7.25 C -2.222656 -7.25 -1.082031 -6.832031 -0.40625 -6 C 0.0273438 -5.46875 0.25 -4.851562 0.25 -4.15625 C 0.25 -3.601562 0.128906 -3.140625 -0.109375 -2.765625 C -0.253906 -2.546875 -0.492188 -2.300781 -0.828125 -2.03125 L 2.921875 -2.03125 L 2.921875 -0.8125 Z M -7.28125 -0.8125 "/>
|
||||
</g>
|
||||
</g>
|
||||
<clipPath id="clip-0">
|
||||
<path clip-rule="nonzero" d="M 111.429688 6.972656 L 353.023438 6.972656 L 353.023438 254.613281 L 111.429688 254.613281 Z M 111.429688 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-1">
|
||||
<path clip-rule="nonzero" d="M 111.429688 233 L 353.023438 233 L 353.023438 235 L 111.429688 235 Z M 111.429688 233 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-2">
|
||||
<path clip-rule="nonzero" d="M 111.429688 199 L 353.023438 199 L 353.023438 200 L 111.429688 200 Z M 111.429688 199 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-3">
|
||||
<path clip-rule="nonzero" d="M 111.429688 164 L 353.023438 164 L 353.023438 166 L 111.429688 166 Z M 111.429688 164 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-4">
|
||||
<path clip-rule="nonzero" d="M 111.429688 130 L 353.023438 130 L 353.023438 132 L 111.429688 132 Z M 111.429688 130 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-5">
|
||||
<path clip-rule="nonzero" d="M 111.429688 96 L 353.023438 96 L 353.023438 97 L 111.429688 97 Z M 111.429688 96 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-6">
|
||||
<path clip-rule="nonzero" d="M 111.429688 61 L 353.023438 61 L 353.023438 63 L 111.429688 63 Z M 111.429688 61 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-7">
|
||||
<path clip-rule="nonzero" d="M 111.429688 27 L 353.023438 27 L 353.023438 28 L 111.429688 28 Z M 111.429688 27 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-8">
|
||||
<path clip-rule="nonzero" d="M 122 6.972656 L 123 6.972656 L 123 254.613281 L 122 254.613281 Z M 122 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-9">
|
||||
<path clip-rule="nonzero" d="M 199 6.972656 L 201 6.972656 L 201 254.613281 L 199 254.613281 Z M 199 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-10">
|
||||
<path clip-rule="nonzero" d="M 277 6.972656 L 279 6.972656 L 279 254.613281 L 277 254.613281 Z M 277 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-11">
|
||||
<path clip-rule="nonzero" d="M 111.429688 6.972656 L 353.023438 6.972656 L 353.023438 254.613281 L 111.429688 254.613281 Z M 111.429688 6.972656 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 295 L 360 295 L 360 0 L 0 0 Z M 0 295 "/>
|
||||
<g clip-path="url(#clip-0)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.429688 254.613281 L 353.023438 254.613281 L 353.023438 6.972656 L 111.429688 6.972656 Z M 111.429688 254.613281 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-1)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 233.976562 L 353.027344 233.976562 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-2)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 199.582031 L 353.027344 199.582031 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-3)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 165.1875 L 353.027344 165.1875 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-4)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 130.792969 L 353.027344 130.792969 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-5)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 96.398438 L 353.027344 96.398438 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-6)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 62.003906 L 353.027344 62.003906 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-7)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 27.609375 L 353.027344 27.609375 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-8)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 122.414062 254.613281 L 122.414062 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-9)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.160156 254.613281 L 200.160156 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-10)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 277.90625 254.613281 L 277.90625 6.972656 "/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 249.453125 L 226.203125 249.453125 L 226.203125 218.5 L 122.414062 218.5 Z M 122.414062 249.453125 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 215.058594 L 342.046875 215.058594 L 342.046875 184.105469 L 122.414062 184.105469 Z M 122.414062 215.058594 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 180.664062 L 153.125 180.664062 L 153.125 149.710938 L 122.414062 149.710938 Z M 122.414062 180.664062 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 146.269531 L 183.445312 146.269531 L 183.445312 115.316406 L 122.414062 115.316406 Z M 122.414062 146.269531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 111.875 L 243.308594 111.875 L 243.308594 80.921875 L 122.414062 80.921875 Z M 122.414062 111.875 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 77.480469 L 123.582031 77.480469 L 123.582031 46.527344 L 122.414062 46.527344 Z M 122.414062 77.480469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 43.089844 L 150.402344 43.089844 L 150.402344 12.136719 L 122.414062 12.136719 Z M 122.414062 43.089844 "/>
|
||||
<g clip-path="url(#clip-11)">
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 254.613281 L 353.023438 254.613281 L 353.023438 6.972656 L 111.429688 6.972656 Z M 111.429688 254.613281 "/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="35.425781" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-1" x="41.654688" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-2" x="45.384375" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-3" x="51.613281" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-4" x="57.213281" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-5" x="63.442188" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-6" x="69.671094" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-7" x="72.782812" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-8" x="78.382812" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-2" x="80.871094" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-9" x="87.1" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-10" x="93.328906" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-11" x="99.557812" y="237.992188"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-7" x="80.878906" y="203.597656"/>
|
||||
<use xlink:href="#glyph-0-8" x="86.478906" y="203.597656"/>
|
||||
<use xlink:href="#glyph-0-4" x="88.967187" y="203.597656"/>
|
||||
<use xlink:href="#glyph-0-12" x="95.196094" y="203.597656"/>
|
||||
<use xlink:href="#glyph-0-1" x="101.425" y="203.597656"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-7" x="72.78125" y="169.203125"/>
|
||||
<use xlink:href="#glyph-0-8" x="78.38125" y="169.203125"/>
|
||||
<use xlink:href="#glyph-0-2" x="80.869531" y="169.203125"/>
|
||||
<use xlink:href="#glyph-0-9" x="87.098437" y="169.203125"/>
|
||||
<use xlink:href="#glyph-0-10" x="93.327344" y="169.203125"/>
|
||||
<use xlink:href="#glyph-0-13" x="99.55625" y="169.203125"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-1" x="86.480469" y="134.808594"/>
|
||||
<use xlink:href="#glyph-0-12" x="90.210156" y="134.808594"/>
|
||||
<use xlink:href="#glyph-0-14" x="96.439062" y="134.808594"/>
|
||||
<use xlink:href="#glyph-0-5" x="98.927344" y="134.808594"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-11" x="23.601562" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-7" x="29.201563" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-12" x="34.801563" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-15" x="41.030469" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-15" x="44.142188" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-4" x="47.253906" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-1" x="53.482813" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-4" x="57.2125" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-10" x="63.441406" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-6" x="69.670313" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-7" x="72.782031" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-8" x="78.382031" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-2" x="80.870312" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-9" x="87.099219" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-10" x="93.328125" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-11" x="99.557031" y="100.414062"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-11" x="64.691406" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-5" x="70.291406" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-2" x="76.520312" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-16" x="82.749219" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-17" x="90.8375" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-12" x="93.949219" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-8" x="100.178125" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-8" x="102.666406" y="66.023438"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-18" x="89.597656" y="31.628906"/>
|
||||
<use xlink:href="#glyph-0-19" x="97.685937" y="31.628906"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 233.976562 L 111.429688 233.976562 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 199.582031 L 111.429688 199.582031 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 165.1875 L 111.429688 165.1875 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 130.792969 L 111.429688 130.792969 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 96.398438 L 111.429688 96.398438 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 62.003906 L 111.429688 62.003906 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 27.609375 L 111.429688 27.609375 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 122.414062 258.101562 L 122.414062 254.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.160156 258.101562 L 200.160156 254.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 277.90625 258.101562 L 277.90625 254.613281 "/>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-20" x="119.300781" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-21" x="190.816406" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-20" x="197.045312" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-20" x="203.274219" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-22" x="268.5625" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-20" x="274.791406" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-20" x="281.020313" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0" x="215.105469" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-1" x="222.105469" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-2" x="229.891602" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-3" x="237.677734" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-4" x="245.463867" y="284.929688"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-0" x="17.015625" y="172.820312"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="162.709961"/>
|
||||
<use xlink:href="#glyph-2-2" x="17.015625" y="154.923828"/>
|
||||
<use xlink:href="#glyph-2-3" x="17.015625" y="147.137695"/>
|
||||
<use xlink:href="#glyph-2-4" x="17.015625" y="143.248047"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="135.461914"/>
|
||||
<use xlink:href="#glyph-2-5" x="17.015625" y="127.675781"/>
|
||||
<use xlink:href="#glyph-2-6" x="17.015625" y="123.013672"/>
|
||||
<use xlink:href="#glyph-2-3" x="17.015625" y="115.227539"/>
|
||||
<use xlink:href="#glyph-2-7" x="17.015625" y="111.337891"/>
|
||||
<use xlink:href="#glyph-2-8" x="17.015625" y="104.337891"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="96.551758"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 49 KiB |
|
@ -0,0 +1,311 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="295" viewBox="0 0 360 295">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-6">
|
||||
</g>
|
||||
<g id="glyph-0-7">
|
||||
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-8">
|
||||
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-9">
|
||||
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-10">
|
||||
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-11">
|
||||
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-12">
|
||||
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-13">
|
||||
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-14">
|
||||
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-15">
|
||||
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-0-16">
|
||||
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-17">
|
||||
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
|
||||
</g>
|
||||
<g id="glyph-0-18">
|
||||
<path d="M 0.859375 -8.03125 L 2.140625 -8.03125 L 6.203125 -1.53125 L 6.203125 -8.03125 L 7.234375 -8.03125 L 7.234375 0 L 6.015625 0 L 1.890625 -6.5 L 1.890625 0 L 0.859375 0 Z M 3.96875 -8.03125 Z M 3.96875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-19">
|
||||
<path d="M 4.984375 -3.296875 L 3.765625 -6.84375 L 2.46875 -3.296875 Z M 3.1875 -8.03125 L 4.421875 -8.03125 L 7.328125 0 L 6.140625 0 L 5.328125 -2.40625 L 2.15625 -2.40625 L 1.28125 0 L 0.171875 0 Z M 3.1875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-20">
|
||||
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-21">
|
||||
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-22">
|
||||
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
<path d="M 3.71875 -7.53125 C 4.550781 -7.53125 5.222656 -7.328125 5.734375 -6.921875 C 6.253906 -6.523438 6.566406 -5.835938 6.671875 -4.859375 L 5.46875 -4.859375 C 5.394531 -5.304688 5.226562 -5.679688 4.96875 -5.984375 C 4.71875 -6.285156 4.300781 -6.4375 3.71875 -6.4375 C 2.9375 -6.4375 2.378906 -6.050781 2.046875 -5.28125 C 1.828125 -4.789062 1.71875 -4.179688 1.71875 -3.453125 C 1.71875 -2.710938 1.867188 -2.09375 2.171875 -1.59375 C 2.484375 -1.09375 2.972656 -0.84375 3.640625 -0.84375 C 4.148438 -0.84375 4.554688 -1 4.859375 -1.3125 C 5.160156 -1.625 5.363281 -2.050781 5.46875 -2.59375 L 6.671875 -2.59375 C 6.535156 -1.625 6.191406 -0.910156 5.640625 -0.453125 C 5.097656 -0.00390625 4.398438 0.21875 3.546875 0.21875 C 2.585938 0.21875 1.820312 -0.128906 1.25 -0.828125 C 0.6875 -1.535156 0.40625 -2.410156 0.40625 -3.453125 C 0.40625 -4.742188 0.71875 -5.742188 1.34375 -6.453125 C 1.96875 -7.171875 2.757812 -7.53125 3.71875 -7.53125 Z M 3.53125 -7.5 Z M 3.53125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-1">
|
||||
<path d="M 3.8125 -0.796875 C 4.625 -0.796875 5.179688 -1.101562 5.484375 -1.71875 C 5.785156 -2.332031 5.9375 -3.019531 5.9375 -3.78125 C 5.9375 -4.46875 5.828125 -5.023438 5.609375 -5.453125 C 5.265625 -6.117188 4.671875 -6.453125 3.828125 -6.453125 C 3.066406 -6.453125 2.515625 -6.164062 2.171875 -5.59375 C 1.835938 -5.019531 1.671875 -4.328125 1.671875 -3.515625 C 1.671875 -2.742188 1.835938 -2.097656 2.171875 -1.578125 C 2.515625 -1.054688 3.0625 -0.796875 3.8125 -0.796875 Z M 3.859375 -7.53125 C 4.796875 -7.53125 5.585938 -7.210938 6.234375 -6.578125 C 6.890625 -5.953125 7.21875 -5.03125 7.21875 -3.8125 C 7.21875 -2.632812 6.929688 -1.660156 6.359375 -0.890625 C 5.785156 -0.117188 4.894531 0.265625 3.6875 0.265625 C 2.6875 0.265625 1.890625 -0.0703125 1.296875 -0.75 C 0.703125 -1.4375 0.40625 -2.351562 0.40625 -3.5 C 0.40625 -4.726562 0.71875 -5.707031 1.34375 -6.4375 C 1.96875 -7.164062 2.804688 -7.53125 3.859375 -7.53125 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-2">
|
||||
<path d="M 2.140625 -7.328125 L 2.140625 -2.46875 C 2.140625 -2.09375 2.195312 -1.785156 2.3125 -1.546875 C 2.53125 -1.109375 2.9375 -0.890625 3.53125 -0.890625 C 4.382812 -0.890625 4.96875 -1.269531 5.28125 -2.03125 C 5.445312 -2.445312 5.53125 -3.007812 5.53125 -3.71875 L 5.53125 -7.328125 L 6.765625 -7.328125 L 6.765625 0 L 5.609375 0 L 5.625 -1.078125 C 5.457031 -0.796875 5.257812 -0.5625 5.03125 -0.375 C 4.5625 0.0078125 3.988281 0.203125 3.3125 0.203125 C 2.269531 0.203125 1.5625 -0.144531 1.1875 -0.84375 C 0.976562 -1.21875 0.875 -1.71875 0.875 -2.34375 L 0.875 -7.328125 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-3">
|
||||
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-4">
|
||||
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
|
||||
</g>
|
||||
<g id="glyph-2-0">
|
||||
<path d="M -7.328125 -1.46875 L -1.546875 -2.875 L -7.328125 -4.3125 L -7.328125 -5.6875 L -1.59375 -7.125 L -7.328125 -8.625 L -7.328125 -9.84375 L 0 -7.71875 L 0 -6.453125 L -5.671875 -4.953125 L 0 -3.515625 L 0 -2.234375 L -7.328125 -0.125 Z M -7.328125 -1.46875 "/>
|
||||
</g>
|
||||
<g id="glyph-2-1">
|
||||
<path d="M -7.484375 -3.953125 C -7.484375 -4.472656 -7.359375 -4.972656 -7.109375 -5.453125 C -6.867188 -5.941406 -6.554688 -6.316406 -6.171875 -6.578125 C -5.804688 -6.828125 -5.375 -6.988281 -4.875 -7.0625 C -4.539062 -7.132812 -4.003906 -7.171875 -3.265625 -7.171875 L -3.265625 -1.8125 C -2.523438 -1.832031 -1.929688 -2.003906 -1.484375 -2.328125 C -1.035156 -2.660156 -0.8125 -3.171875 -0.8125 -3.859375 C -0.8125 -4.503906 -1.019531 -5.019531 -1.4375 -5.40625 C -1.6875 -5.625 -1.972656 -5.773438 -2.296875 -5.859375 L -2.296875 -7.078125 C -2.023438 -7.046875 -1.722656 -6.9375 -1.390625 -6.75 C -1.066406 -6.570312 -0.800781 -6.375 -0.59375 -6.15625 C -0.226562 -5.78125 0.0195312 -5.316406 0.15625 -4.765625 C 0.226562 -4.472656 0.265625 -4.140625 0.265625 -3.765625 C 0.265625 -2.847656 -0.0664062 -2.070312 -0.734375 -1.4375 C -1.398438 -0.8125 -2.328125 -0.5 -3.515625 -0.5 C -4.691406 -0.5 -5.644531 -0.816406 -6.375 -1.453125 C -7.113281 -2.085938 -7.484375 -2.921875 -7.484375 -3.953125 Z M -4.25 -5.90625 C -4.78125 -5.863281 -5.207031 -5.75 -5.53125 -5.5625 C -6.113281 -5.226562 -6.40625 -4.664062 -6.40625 -3.875 C -6.40625 -3.3125 -6.203125 -2.835938 -5.796875 -2.453125 C -5.390625 -2.066406 -4.875 -1.863281 -4.25 -1.84375 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2">
|
||||
<path d="M -1.953125 -1.84375 C -1.597656 -1.84375 -1.316406 -1.972656 -1.109375 -2.234375 C -0.898438 -2.492188 -0.796875 -2.800781 -0.796875 -3.15625 C -0.796875 -3.59375 -0.894531 -4.015625 -1.09375 -4.421875 C -1.425781 -5.097656 -1.972656 -5.4375 -2.734375 -5.4375 L -3.71875 -5.4375 C -3.625 -5.289062 -3.546875 -5.097656 -3.484375 -4.859375 C -3.421875 -4.617188 -3.375 -4.382812 -3.34375 -4.15625 L -3.25 -3.421875 C -3.195312 -2.972656 -3.101562 -2.632812 -2.96875 -2.40625 C -2.757812 -2.03125 -2.421875 -1.84375 -1.953125 -1.84375 Z M -4.4375 -4.828125 C -4.46875 -5.109375 -4.585938 -5.296875 -4.796875 -5.390625 C -4.898438 -5.441406 -5.054688 -5.46875 -5.265625 -5.46875 C -5.679688 -5.46875 -5.984375 -5.316406 -6.171875 -5.015625 C -6.359375 -4.722656 -6.453125 -4.300781 -6.453125 -3.75 C -6.453125 -3.101562 -6.28125 -2.644531 -5.9375 -2.375 C -5.75 -2.226562 -5.46875 -2.128906 -5.09375 -2.078125 L -5.09375 -0.9375 C -5.988281 -0.957031 -6.613281 -1.25 -6.96875 -1.8125 C -7.320312 -2.375 -7.5 -3.03125 -7.5 -3.78125 C -7.5 -4.632812 -7.332031 -5.332031 -7 -5.875 C -6.675781 -6.40625 -6.164062 -6.671875 -5.46875 -6.671875 L -1.265625 -6.671875 C -1.128906 -6.671875 -1.019531 -6.695312 -0.9375 -6.75 C -0.863281 -6.800781 -0.828125 -6.910156 -0.828125 -7.078125 C -0.828125 -7.140625 -0.832031 -7.203125 -0.84375 -7.265625 C -0.851562 -7.335938 -0.863281 -7.410156 -0.875 -7.484375 L 0.03125 -7.484375 C 0.0820312 -7.296875 0.113281 -7.148438 0.125 -7.046875 C 0.144531 -6.941406 0.15625 -6.804688 0.15625 -6.640625 C 0.15625 -6.210938 0.00390625 -5.90625 -0.296875 -5.71875 C -0.453125 -5.613281 -0.675781 -5.539062 -0.96875 -5.5 C -0.644531 -5.25 -0.359375 -4.890625 -0.109375 -4.421875 C 0.128906 -3.953125 0.25 -3.4375 0.25 -2.875 C 0.25 -2.195312 0.0429688 -1.640625 -0.359375 -1.203125 C -0.773438 -0.773438 -1.296875 -0.5625 -1.921875 -0.5625 C -2.597656 -0.5625 -3.125 -0.769531 -3.5 -1.1875 C -3.875 -1.613281 -4.101562 -2.171875 -4.1875 -2.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-3">
|
||||
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
|
||||
</g>
|
||||
<g id="glyph-2-4">
|
||||
<path d="M -10.078125 -0.90625 L -10.078125 -2.140625 L -6.328125 -2.140625 C -6.703125 -2.429688 -6.960938 -2.691406 -7.109375 -2.921875 C -7.367188 -3.316406 -7.5 -3.8125 -7.5 -4.40625 C -7.5 -5.46875 -7.128906 -6.1875 -6.390625 -6.5625 C -5.984375 -6.769531 -5.421875 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.609375 L -4.609375 -5.609375 C -5.148438 -5.609375 -5.546875 -5.539062 -5.796875 -5.40625 C -6.203125 -5.175781 -6.40625 -4.753906 -6.40625 -4.140625 C -6.40625 -3.628906 -6.226562 -3.164062 -5.875 -2.75 C -5.519531 -2.34375 -4.859375 -2.140625 -3.890625 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -10.078125 -0.90625 "/>
|
||||
</g>
|
||||
<g id="glyph-2-5">
|
||||
<path d="M -7.328125 -0.9375 L -7.328125 -2.109375 L -6.0625 -2.109375 C -6.300781 -2.203125 -6.597656 -2.4375 -6.953125 -2.8125 C -7.304688 -3.1875 -7.484375 -3.617188 -7.484375 -4.109375 C -7.484375 -4.128906 -7.476562 -4.164062 -7.46875 -4.21875 C -7.46875 -4.269531 -7.460938 -4.363281 -7.453125 -4.5 L -6.15625 -4.5 C -6.164062 -4.425781 -6.171875 -4.359375 -6.171875 -4.296875 C -6.179688 -4.234375 -6.1875 -4.164062 -6.1875 -4.09375 C -6.1875 -3.476562 -5.984375 -3.003906 -5.578125 -2.671875 C -5.179688 -2.335938 -4.726562 -2.171875 -4.21875 -2.171875 L 0 -2.171875 L 0 -0.9375 Z M -7.328125 -0.9375 "/>
|
||||
</g>
|
||||
<g id="glyph-2-6">
|
||||
<path d="M 1.75 0 L 1.0625 0 L 1.0625 -7.78125 L 1.75 -7.78125 Z M 1.75 0 "/>
|
||||
</g>
|
||||
<g id="glyph-2-7">
|
||||
<path d="M -7.328125 -5.46875 L -7.328125 -6.84375 C -6.859375 -6.664062 -5.785156 -6.28125 -4.109375 -5.6875 C -2.847656 -5.238281 -1.820312 -4.863281 -1.03125 -4.5625 C 0.832031 -3.851562 1.96875 -3.351562 2.375 -3.0625 C 2.789062 -2.769531 3 -2.265625 3 -1.546875 C 3 -1.378906 2.988281 -1.25 2.96875 -1.15625 C 2.957031 -1.0625 2.9375 -0.945312 2.90625 -0.8125 L 1.78125 -0.8125 C 1.84375 -1.019531 1.878906 -1.171875 1.890625 -1.265625 C 1.910156 -1.367188 1.921875 -1.457031 1.921875 -1.53125 C 1.921875 -1.75 1.878906 -1.910156 1.796875 -2.015625 C 1.722656 -2.128906 1.632812 -2.222656 1.53125 -2.296875 C 1.488281 -2.316406 1.296875 -2.394531 0.953125 -2.53125 C 0.617188 -2.675781 0.375 -2.78125 0.21875 -2.84375 L -7.328125 -0.140625 L -7.328125 -1.53125 L -1.359375 -3.5 Z M -7.5 -3.5 Z M -7.5 -3.5 "/>
|
||||
</g>
|
||||
<g id="glyph-2-8">
|
||||
<path d="M -0.828125 -4 C -0.828125 -4.570312 -1.066406 -5.046875 -1.546875 -5.421875 C -2.023438 -5.804688 -2.742188 -6 -3.703125 -6 C -4.285156 -6 -4.785156 -5.914062 -5.203125 -5.75 C -6.015625 -5.425781 -6.421875 -4.84375 -6.421875 -4 C -6.421875 -3.144531 -5.992188 -2.5625 -5.140625 -2.25 C -4.679688 -2.070312 -4.101562 -1.984375 -3.40625 -1.984375 C -2.84375 -1.984375 -2.363281 -2.070312 -1.96875 -2.25 C -1.207031 -2.5625 -0.828125 -3.144531 -0.828125 -4 Z M -7.28125 -0.8125 L -7.28125 -2 L -6.3125 -2 C -6.644531 -2.25 -6.90625 -2.519531 -7.09375 -2.8125 C -7.363281 -3.226562 -7.5 -3.710938 -7.5 -4.265625 C -7.5 -5.097656 -7.179688 -5.800781 -6.546875 -6.375 C -5.910156 -6.957031 -5.003906 -7.25 -3.828125 -7.25 C -2.222656 -7.25 -1.082031 -6.832031 -0.40625 -6 C 0.0273438 -5.46875 0.25 -4.851562 0.25 -4.15625 C 0.25 -3.601562 0.128906 -3.140625 -0.109375 -2.765625 C -0.253906 -2.546875 -0.492188 -2.300781 -0.828125 -2.03125 L 2.921875 -2.03125 L 2.921875 -0.8125 Z M -7.28125 -0.8125 "/>
|
||||
</g>
|
||||
</g>
|
||||
<clipPath id="clip-0">
|
||||
<path clip-rule="nonzero" d="M 111.429688 6.972656 L 353.023438 6.972656 L 353.023438 254.613281 L 111.429688 254.613281 Z M 111.429688 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-1">
|
||||
<path clip-rule="nonzero" d="M 111.429688 233 L 353.023438 233 L 353.023438 235 L 111.429688 235 Z M 111.429688 233 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-2">
|
||||
<path clip-rule="nonzero" d="M 111.429688 199 L 353.023438 199 L 353.023438 200 L 111.429688 200 Z M 111.429688 199 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-3">
|
||||
<path clip-rule="nonzero" d="M 111.429688 164 L 353.023438 164 L 353.023438 166 L 111.429688 166 Z M 111.429688 164 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-4">
|
||||
<path clip-rule="nonzero" d="M 111.429688 130 L 353.023438 130 L 353.023438 132 L 111.429688 132 Z M 111.429688 130 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-5">
|
||||
<path clip-rule="nonzero" d="M 111.429688 96 L 353.023438 96 L 353.023438 97 L 111.429688 97 Z M 111.429688 96 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-6">
|
||||
<path clip-rule="nonzero" d="M 111.429688 61 L 353.023438 61 L 353.023438 63 L 111.429688 63 Z M 111.429688 61 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-7">
|
||||
<path clip-rule="nonzero" d="M 111.429688 27 L 353.023438 27 L 353.023438 28 L 111.429688 28 Z M 111.429688 27 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-8">
|
||||
<path clip-rule="nonzero" d="M 122 6.972656 L 123 6.972656 L 123 254.613281 L 122 254.613281 Z M 122 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-9">
|
||||
<path clip-rule="nonzero" d="M 199 6.972656 L 201 6.972656 L 201 254.613281 L 199 254.613281 Z M 199 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-10">
|
||||
<path clip-rule="nonzero" d="M 277 6.972656 L 279 6.972656 L 279 254.613281 L 277 254.613281 Z M 277 6.972656 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-11">
|
||||
<path clip-rule="nonzero" d="M 111.429688 6.972656 L 353.023438 6.972656 L 353.023438 254.613281 L 111.429688 254.613281 Z M 111.429688 6.972656 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 295 L 360 295 L 360 0 L 0 0 Z M 0 295 "/>
|
||||
<g clip-path="url(#clip-0)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.429688 254.613281 L 353.023438 254.613281 L 353.023438 6.972656 L 111.429688 6.972656 Z M 111.429688 254.613281 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-1)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 233.976562 L 353.027344 233.976562 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-2)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 199.582031 L 353.027344 199.582031 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-3)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 165.1875 L 353.027344 165.1875 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-4)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 130.792969 L 353.027344 130.792969 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-5)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 96.398438 L 353.027344 96.398438 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-6)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 62.003906 L 353.027344 62.003906 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-7)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 27.609375 L 353.027344 27.609375 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-8)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 122.414062 254.613281 L 122.414062 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-9)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.160156 254.613281 L 200.160156 6.972656 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-10)">
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 277.90625 254.613281 L 277.90625 6.972656 "/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 249.453125 L 226.203125 249.453125 L 226.203125 218.5 L 122.414062 218.5 Z M 122.414062 249.453125 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 215.058594 L 342.046875 215.058594 L 342.046875 184.105469 L 122.414062 184.105469 Z M 122.414062 215.058594 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 180.664062 L 153.125 180.664062 L 153.125 149.710938 L 122.414062 149.710938 Z M 122.414062 180.664062 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 146.269531 L 183.445312 146.269531 L 183.445312 115.316406 L 122.414062 115.316406 Z M 122.414062 146.269531 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 111.875 L 243.308594 111.875 L 243.308594 80.921875 L 122.414062 80.921875 Z M 122.414062 111.875 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 77.480469 L 123.582031 77.480469 L 123.582031 46.527344 L 122.414062 46.527344 Z M 122.414062 77.480469 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 43.089844 L 150.402344 43.089844 L 150.402344 12.136719 L 122.414062 12.136719 Z M 122.414062 43.089844 "/>
|
||||
<g clip-path="url(#clip-11)">
|
||||
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 254.613281 L 353.023438 254.613281 L 353.023438 6.972656 L 111.429688 6.972656 Z M 111.429688 254.613281 "/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-0" x="35.425781" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-1" x="41.654688" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-2" x="45.384375" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-3" x="51.613281" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-4" x="57.213281" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-5" x="63.442188" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-6" x="69.671094" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-7" x="72.782812" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-8" x="78.382812" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-2" x="80.871094" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-9" x="87.1" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-10" x="93.328906" y="237.992188"/>
|
||||
<use xlink:href="#glyph-0-11" x="99.557812" y="237.992188"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-7" x="80.878906" y="203.597656"/>
|
||||
<use xlink:href="#glyph-0-8" x="86.478906" y="203.597656"/>
|
||||
<use xlink:href="#glyph-0-4" x="88.967187" y="203.597656"/>
|
||||
<use xlink:href="#glyph-0-12" x="95.196094" y="203.597656"/>
|
||||
<use xlink:href="#glyph-0-1" x="101.425" y="203.597656"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-7" x="72.78125" y="169.203125"/>
|
||||
<use xlink:href="#glyph-0-8" x="78.38125" y="169.203125"/>
|
||||
<use xlink:href="#glyph-0-2" x="80.869531" y="169.203125"/>
|
||||
<use xlink:href="#glyph-0-9" x="87.098437" y="169.203125"/>
|
||||
<use xlink:href="#glyph-0-10" x="93.327344" y="169.203125"/>
|
||||
<use xlink:href="#glyph-0-13" x="99.55625" y="169.203125"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-1" x="86.480469" y="134.808594"/>
|
||||
<use xlink:href="#glyph-0-12" x="90.210156" y="134.808594"/>
|
||||
<use xlink:href="#glyph-0-14" x="96.439062" y="134.808594"/>
|
||||
<use xlink:href="#glyph-0-5" x="98.927344" y="134.808594"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-11" x="23.601562" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-7" x="29.201563" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-12" x="34.801563" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-15" x="41.030469" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-15" x="44.142188" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-4" x="47.253906" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-1" x="53.482813" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-4" x="57.2125" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-10" x="63.441406" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-6" x="69.670313" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-7" x="72.782031" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-8" x="78.382031" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-2" x="80.870312" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-9" x="87.099219" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-10" x="93.328125" y="100.414062"/>
|
||||
<use xlink:href="#glyph-0-11" x="99.557031" y="100.414062"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-11" x="64.691406" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-5" x="70.291406" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-2" x="76.520312" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-16" x="82.749219" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-17" x="90.8375" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-12" x="93.949219" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-8" x="100.178125" y="66.023438"/>
|
||||
<use xlink:href="#glyph-0-8" x="102.666406" y="66.023438"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-18" x="89.597656" y="31.628906"/>
|
||||
<use xlink:href="#glyph-0-19" x="97.685937" y="31.628906"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 233.976562 L 111.429688 233.976562 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 199.582031 L 111.429688 199.582031 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 165.1875 L 111.429688 165.1875 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 130.792969 L 111.429688 130.792969 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 96.398438 L 111.429688 96.398438 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 62.003906 L 111.429688 62.003906 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 27.609375 L 111.429688 27.609375 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 122.414062 258.101562 L 122.414062 254.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.160156 258.101562 L 200.160156 254.613281 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 277.90625 258.101562 L 277.90625 254.613281 "/>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-20" x="119.300781" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-21" x="190.816406" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-20" x="197.045312" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-20" x="203.274219" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-22" x="268.5625" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-20" x="274.791406" y="268.921875"/>
|
||||
<use xlink:href="#glyph-0-20" x="281.020313" y="268.921875"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-0" x="215.105469" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-1" x="222.105469" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-2" x="229.891602" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-3" x="237.677734" y="284.929688"/>
|
||||
<use xlink:href="#glyph-1-4" x="245.463867" y="284.929688"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-0" x="17.015625" y="172.820312"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="162.709961"/>
|
||||
<use xlink:href="#glyph-2-2" x="17.015625" y="154.923828"/>
|
||||
<use xlink:href="#glyph-2-3" x="17.015625" y="147.137695"/>
|
||||
<use xlink:href="#glyph-2-4" x="17.015625" y="143.248047"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="135.461914"/>
|
||||
<use xlink:href="#glyph-2-5" x="17.015625" y="127.675781"/>
|
||||
<use xlink:href="#glyph-2-6" x="17.015625" y="123.013672"/>
|
||||
<use xlink:href="#glyph-2-3" x="17.015625" y="115.227539"/>
|
||||
<use xlink:href="#glyph-2-7" x="17.015625" y="111.337891"/>
|
||||
<use xlink:href="#glyph-2-8" x="17.015625" y="104.337891"/>
|
||||
<use xlink:href="#glyph-2-1" x="17.015625" y="96.551758"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 99 KiB |
|
@ -0,0 +1,378 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="280" viewBox="0 0 360 280">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-6">
|
||||
</g>
|
||||
<g id="glyph-0-7">
|
||||
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-8">
|
||||
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-9">
|
||||
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-10">
|
||||
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-11">
|
||||
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-12">
|
||||
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-13">
|
||||
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
|
||||
</g>
|
||||
<g id="glyph-0-14">
|
||||
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-15">
|
||||
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-0-16">
|
||||
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-17">
|
||||
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
|
||||
</g>
|
||||
<g id="glyph-0-18">
|
||||
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-19">
|
||||
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-20">
|
||||
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-21">
|
||||
<path d="M 2.90625 0.21875 C 1.976562 0.21875 1.304688 -0.0351562 0.890625 -0.546875 C 0.472656 -1.054688 0.265625 -1.675781 0.265625 -2.40625 L 1.296875 -2.40625 C 1.335938 -1.894531 1.429688 -1.523438 1.578125 -1.296875 C 1.835938 -0.890625 2.300781 -0.6875 2.96875 -0.6875 C 3.476562 -0.6875 3.890625 -0.820312 4.203125 -1.09375 C 4.523438 -1.375 4.6875 -1.734375 4.6875 -2.171875 C 4.6875 -2.710938 4.519531 -3.085938 4.1875 -3.296875 C 3.851562 -3.515625 3.394531 -3.625 2.8125 -3.625 C 2.75 -3.625 2.679688 -3.625 2.609375 -3.625 C 2.546875 -3.625 2.476562 -3.617188 2.40625 -3.609375 L 2.40625 -4.484375 C 2.507812 -4.472656 2.59375 -4.460938 2.65625 -4.453125 C 2.726562 -4.453125 2.804688 -4.453125 2.890625 -4.453125 C 3.253906 -4.453125 3.554688 -4.515625 3.796875 -4.640625 C 4.210938 -4.835938 4.421875 -5.203125 4.421875 -5.734375 C 4.421875 -6.117188 4.28125 -6.414062 4 -6.625 C 3.726562 -6.84375 3.40625 -6.953125 3.03125 -6.953125 C 2.375 -6.953125 1.921875 -6.734375 1.671875 -6.296875 C 1.535156 -6.054688 1.457031 -5.710938 1.4375 -5.265625 L 0.46875 -5.265625 C 0.46875 -5.847656 0.582031 -6.34375 0.8125 -6.75 C 1.21875 -7.476562 1.925781 -7.84375 2.9375 -7.84375 C 3.726562 -7.84375 4.34375 -7.664062 4.78125 -7.3125 C 5.21875 -6.957031 5.4375 -6.441406 5.4375 -5.765625 C 5.4375 -5.285156 5.304688 -4.894531 5.046875 -4.59375 C 4.890625 -4.40625 4.6875 -4.257812 4.4375 -4.15625 C 4.84375 -4.039062 5.160156 -3.820312 5.390625 -3.5 C 5.628906 -3.175781 5.75 -2.78125 5.75 -2.3125 C 5.75 -1.570312 5.5 -0.960938 5 -0.484375 C 4.507812 -0.015625 3.8125 0.21875 2.90625 0.21875 Z M 2.90625 0.21875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-22">
|
||||
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-23">
|
||||
<path d="M 1.390625 -2 C 1.453125 -1.4375 1.710938 -1.046875 2.171875 -0.828125 C 2.398438 -0.722656 2.664062 -0.671875 2.96875 -0.671875 C 3.550781 -0.671875 3.984375 -0.851562 4.265625 -1.21875 C 4.546875 -1.59375 4.6875 -2.007812 4.6875 -2.46875 C 4.6875 -3.007812 4.519531 -3.425781 4.1875 -3.71875 C 3.851562 -4.019531 3.457031 -4.171875 3 -4.171875 C 2.65625 -4.171875 2.359375 -4.101562 2.109375 -3.96875 C 1.867188 -3.84375 1.664062 -3.664062 1.5 -3.4375 L 0.640625 -3.484375 L 1.234375 -7.703125 L 5.3125 -7.703125 L 5.3125 -6.75 L 1.984375 -6.75 L 1.640625 -4.578125 C 1.828125 -4.710938 2.003906 -4.816406 2.171875 -4.890625 C 2.460938 -5.003906 2.796875 -5.0625 3.171875 -5.0625 C 3.890625 -5.0625 4.5 -4.828125 5 -4.359375 C 5.5 -3.898438 5.75 -3.316406 5.75 -2.609375 C 5.75 -1.867188 5.519531 -1.210938 5.0625 -0.640625 C 4.601562 -0.078125 3.875 0.203125 2.875 0.203125 C 2.238281 0.203125 1.675781 0.0234375 1.1875 -0.328125 C 0.695312 -0.691406 0.421875 -1.25 0.359375 -2 Z M 1.390625 -2 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
<path d="M 1.46875 -7.328125 L 2.875 -1.546875 L 4.3125 -7.328125 L 5.6875 -7.328125 L 7.125 -1.59375 L 8.625 -7.328125 L 9.84375 -7.328125 L 7.71875 0 L 6.453125 0 L 4.953125 -5.671875 L 3.515625 0 L 2.234375 0 L 0.125 -7.328125 Z M 1.46875 -7.328125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-1">
|
||||
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-2">
|
||||
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-3">
|
||||
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
|
||||
</g>
|
||||
<g id="glyph-1-4">
|
||||
<path d="M 0.90625 -10.078125 L 2.140625 -10.078125 L 2.140625 -6.328125 C 2.429688 -6.703125 2.691406 -6.960938 2.921875 -7.109375 C 3.316406 -7.367188 3.8125 -7.5 4.40625 -7.5 C 5.46875 -7.5 6.1875 -7.128906 6.5625 -6.390625 C 6.769531 -5.984375 6.875 -5.421875 6.875 -4.703125 L 6.875 0 L 5.609375 0 L 5.609375 -4.609375 C 5.609375 -5.148438 5.539062 -5.546875 5.40625 -5.796875 C 5.175781 -6.203125 4.753906 -6.40625 4.140625 -6.40625 C 3.628906 -6.40625 3.164062 -6.226562 2.75 -5.875 C 2.34375 -5.519531 2.140625 -4.859375 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -10.078125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-5">
|
||||
<path d="M 0.9375 -7.328125 L 2.109375 -7.328125 L 2.109375 -6.0625 C 2.203125 -6.300781 2.4375 -6.597656 2.8125 -6.953125 C 3.1875 -7.304688 3.617188 -7.484375 4.109375 -7.484375 C 4.128906 -7.484375 4.164062 -7.476562 4.21875 -7.46875 C 4.269531 -7.46875 4.363281 -7.460938 4.5 -7.453125 L 4.5 -6.15625 C 4.425781 -6.164062 4.359375 -6.171875 4.296875 -6.171875 C 4.234375 -6.179688 4.164062 -6.1875 4.09375 -6.1875 C 3.476562 -6.1875 3.003906 -5.984375 2.671875 -5.578125 C 2.335938 -5.179688 2.171875 -4.726562 2.171875 -4.21875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -7.328125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-6">
|
||||
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
|
||||
</g>
|
||||
<g id="glyph-1-7">
|
||||
<path d="M 5.46875 -7.328125 L 6.84375 -7.328125 C 6.664062 -6.859375 6.28125 -5.785156 5.6875 -4.109375 C 5.238281 -2.847656 4.863281 -1.820312 4.5625 -1.03125 C 3.851562 0.832031 3.351562 1.96875 3.0625 2.375 C 2.769531 2.789062 2.265625 3 1.546875 3 C 1.378906 3 1.25 2.988281 1.15625 2.96875 C 1.0625 2.957031 0.945312 2.9375 0.8125 2.90625 L 0.8125 1.78125 C 1.019531 1.84375 1.171875 1.878906 1.265625 1.890625 C 1.367188 1.910156 1.457031 1.921875 1.53125 1.921875 C 1.75 1.921875 1.910156 1.878906 2.015625 1.796875 C 2.128906 1.722656 2.222656 1.632812 2.296875 1.53125 C 2.316406 1.488281 2.394531 1.296875 2.53125 0.953125 C 2.675781 0.617188 2.78125 0.375 2.84375 0.21875 L 0.140625 -7.328125 L 1.53125 -7.328125 L 3.5 -1.359375 Z M 3.5 -7.5 Z M 3.5 -7.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-8">
|
||||
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-0">
|
||||
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-1">
|
||||
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2">
|
||||
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-3">
|
||||
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
|
||||
</g>
|
||||
<g id="glyph-2-4">
|
||||
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
|
||||
</g>
|
||||
</g>
|
||||
<clipPath id="clip-0">
|
||||
<path clip-rule="nonzero" d="M 66.609375 0 L 293.390625 0 L 293.390625 280 L 66.609375 280 Z M 66.609375 0 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-1">
|
||||
<path clip-rule="nonzero" d="M 115.171875 76.402344 L 286.414062 76.402344 L 286.414062 247.644531 L 115.171875 247.644531 Z M 115.171875 76.402344 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-2">
|
||||
<path clip-rule="nonzero" d="M 266 158 L 286.414062 158 L 286.414062 167 L 266 167 Z M 266 158 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-3">
|
||||
<path clip-rule="nonzero" d="M 115.171875 157 L 165 157 L 165 167 L 115.171875 167 Z M 115.171875 157 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-4">
|
||||
<path clip-rule="nonzero" d="M 115.171875 76.402344 L 286.414062 76.402344 L 286.414062 247.644531 L 115.171875 247.644531 Z M 115.171875 76.402344 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<rect x="-36" y="-28" width="432" height="336" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
|
||||
<g clip-path="url(#clip-0)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 66.609375 280 L 293.390625 280 L 293.390625 0 L 66.609375 0 Z M 66.609375 280 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-1)">
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 115.171875 247.648438 L 286.414062 247.648438 L 286.414062 76.40625 L 115.171875 76.40625 Z M 115.171875 247.648438 "/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 239.324219 95.289062 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 277.855469 162.023438 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 239.324219 228.761719 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 162.265625 228.761719 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 123.734375 162.023438 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 162.265625 95.289062 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 200.792969 162.023438 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 149.902344 L 201.5625 149.925781 L 202.328125 150 L 203.089844 150.121094 L 203.839844 150.289062 L 204.578125 150.507812 L 205.300781 150.769531 L 206.003906 151.078125 L 206.6875 151.429688 L 207.347656 151.824219 L 207.984375 152.261719 L 208.585938 152.738281 L 209.160156 153.25 L 209.699219 153.800781 L 210.203125 154.378906 L 210.667969 154.992188 L 211.097656 155.632812 L 211.480469 156.300781 L 211.820312 156.988281 L 212.121094 157.699219 L 212.371094 158.425781 L 212.574219 159.167969 L 212.734375 159.917969 L 212.84375 160.679688 L 212.902344 161.449219 L 212.917969 162.21875 L 212.878906 162.984375 L 212.792969 163.75 L 212.660156 164.507812 L 212.480469 165.253906 L 212.25 165.988281 L 211.976562 166.707031 L 211.65625 167.410156 L 211.292969 168.085938 L 210.886719 168.742188 L 210.441406 169.367188 L 209.957031 169.964844 L 209.433594 170.527344 L 208.878906 171.058594 L 208.289062 171.554688 L 207.667969 172.011719 L 207.023438 172.425781 L 206.351562 172.800781 L 205.65625 173.132812 L 204.941406 173.417969 L 204.210938 173.65625 L 203.464844 173.851562 L 202.710938 173.996094 L 201.945312 174.09375 L 201.179688 174.140625 L 200.410156 174.140625 L 199.640625 174.09375 L 198.878906 173.996094 L 198.125 173.851562 L 197.378906 173.65625 L 196.648438 173.417969 L 195.933594 173.132812 L 195.238281 172.800781 L 194.566406 172.425781 L 193.917969 172.011719 L 193.300781 171.554688 L 192.710938 171.058594 L 192.152344 170.527344 L 191.632812 169.964844 L 191.148438 169.367188 L 190.699219 168.742188 L 190.296875 168.085938 L 189.933594 167.410156 L 189.613281 166.707031 L 189.335938 165.988281 L 189.109375 165.253906 L 188.929688 164.507812 L 188.792969 163.75 L 188.710938 162.984375 L 188.671875 162.21875 L 188.683594 161.449219 L 188.746094 160.679688 L 188.855469 159.917969 L 189.011719 159.167969 L 189.21875 158.425781 L 189.46875 157.699219 L 189.765625 156.988281 L 190.109375 156.300781 L 190.492188 155.632812 L 190.917969 154.992188 L 191.386719 154.378906 L 191.886719 153.800781 L 192.429688 153.25 L 193 152.738281 L 193.605469 152.261719 L 194.238281 151.824219 L 194.898438 151.429688 L 195.582031 151.078125 L 196.289062 150.769531 L 197.011719 150.507812 L 197.75 150.289062 L 198.5 150.121094 L 199.257812 150 L 200.027344 149.925781 L 200.792969 149.902344 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 137.777344 L 202.332031 137.828125 L 203.863281 137.972656 L 205.382812 138.214844 L 206.882812 138.554688 L 208.359375 138.988281 L 209.804688 139.515625 L 211.214844 140.132812 L 212.582031 140.835938 L 213.902344 141.628906 L 215.171875 142.5 L 216.378906 143.449219 L 217.527344 144.476562 L 218.605469 145.574219 L 219.613281 146.734375 L 220.546875 147.960938 L 221.398438 149.242188 L 222.167969 150.574219 L 222.851562 151.953125 L 223.445312 153.371094 L 223.949219 154.824219 L 224.359375 156.308594 L 224.671875 157.816406 L 224.890625 159.335938 L 225.015625 160.871094 L 225.039062 162.410156 L 224.964844 163.945312 L 224.792969 165.476562 L 224.527344 166.992188 L 224.164062 168.484375 L 223.707031 169.957031 L 223.160156 171.394531 L 222.519531 172.792969 L 221.792969 174.148438 L 220.980469 175.457031 L 220.089844 176.710938 L 219.117188 177.902344 L 218.074219 179.035156 L 216.960938 180.09375 L 215.78125 181.085938 L 214.542969 181.996094 L 213.25 182.828125 L 211.90625 183.578125 L 210.515625 184.238281 L 209.085938 184.808594 L 207.625 185.289062 L 206.136719 185.675781 L 204.625 185.96875 L 203.097656 186.160156 L 201.5625 186.257812 L 200.023438 186.257812 L 198.488281 186.160156 L 196.964844 185.96875 L 195.453125 185.675781 L 193.964844 185.289062 L 192.5 184.808594 L 191.074219 184.238281 L 189.683594 183.578125 L 188.339844 182.828125 L 187.046875 181.996094 L 185.804688 181.085938 L 184.628906 180.09375 L 183.515625 179.035156 L 182.46875 177.902344 L 181.5 176.710938 L 180.605469 175.457031 L 179.796875 174.148438 L 179.070312 172.792969 L 178.429688 171.394531 L 177.882812 169.957031 L 177.425781 168.484375 L 177.0625 166.992188 L 176.792969 165.476562 L 176.625 163.945312 L 176.550781 162.410156 L 176.574219 160.871094 L 176.695312 159.335938 L 176.914062 157.816406 L 177.230469 156.308594 L 177.640625 154.824219 L 178.144531 153.371094 L 178.738281 151.953125 L 179.421875 150.574219 L 180.191406 149.242188 L 181.042969 147.960938 L 181.976562 146.734375 L 182.984375 145.574219 L 184.0625 144.476562 L 185.207031 143.449219 L 186.417969 142.5 L 187.683594 141.628906 L 189.003906 140.835938 L 190.375 140.132812 L 191.78125 139.515625 L 193.230469 138.988281 L 194.703125 138.554688 L 196.207031 138.214844 L 197.726562 137.972656 L 199.257812 137.828125 L 200.792969 137.777344 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 125.65625 L 203.101562 125.726562 L 205.398438 125.945312 L 207.675781 126.3125 L 209.929688 126.820312 L 212.144531 127.46875 L 214.3125 128.261719 L 216.425781 129.183594 L 218.476562 130.242188 L 220.457031 131.429688 L 222.359375 132.738281 L 224.171875 134.164062 L 225.894531 135.703125 L 227.511719 137.347656 L 229.023438 139.089844 L 230.421875 140.929688 L 231.699219 142.847656 L 232.851562 144.847656 L 233.878906 146.917969 L 234.769531 149.042969 L 235.523438 151.226562 L 236.140625 153.449219 L 236.613281 155.710938 L 236.941406 157.992188 L 237.125 160.292969 L 237.160156 162.601562 L 237.050781 164.90625 L 236.792969 167.199219 L 236.394531 169.472656 L 235.851562 171.714844 L 235.164062 173.921875 L 234.339844 176.078125 L 233.382812 178.175781 L 232.292969 180.210938 L 231.074219 182.171875 L 229.738281 184.050781 L 228.28125 185.84375 L 226.714844 187.539062 L 225.046875 189.128906 L 223.277344 190.613281 L 221.417969 191.980469 L 219.476562 193.230469 L 217.460938 194.351562 L 215.375 195.34375 L 213.234375 196.203125 L 211.042969 196.921875 L 208.808594 197.5 L 206.539062 197.9375 L 204.25 198.230469 L 201.949219 198.375 L 199.640625 198.375 L 197.335938 198.230469 L 195.046875 197.9375 L 192.78125 197.5 L 190.546875 196.921875 L 188.355469 196.203125 L 186.210938 195.34375 L 184.128906 194.351562 L 182.113281 193.230469 L 180.171875 191.980469 L 178.3125 190.613281 L 176.542969 189.128906 L 174.875 187.539062 L 173.308594 185.84375 L 171.851562 184.050781 L 170.511719 182.171875 L 169.296875 180.210938 L 168.207031 178.175781 L 167.25 176.078125 L 166.425781 173.921875 L 165.738281 171.714844 L 165.195312 169.472656 L 164.792969 167.199219 L 164.539062 164.90625 L 164.429688 162.601562 L 164.464844 160.292969 L 164.648438 157.992188 L 164.976562 155.710938 L 165.449219 153.449219 L 166.0625 151.226562 L 166.820312 149.042969 L 167.710938 146.917969 L 168.734375 144.847656 L 169.890625 142.847656 L 171.167969 140.929688 L 172.566406 139.089844 L 174.078125 137.347656 L 175.695312 135.703125 L 177.414062 134.164062 L 179.230469 132.738281 L 181.132812 131.429688 L 183.109375 130.242188 L 185.164062 129.183594 L 187.277344 128.261719 L 189.445312 127.46875 L 191.660156 126.820312 L 193.910156 126.3125 L 196.191406 125.945312 L 198.488281 125.726562 L 200.792969 125.65625 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 113.53125 L 203.871094 113.628906 L 206.933594 113.921875 L 209.972656 114.40625 L 212.972656 115.085938 L 215.925781 115.953125 L 218.816406 117.003906 L 221.636719 118.238281 L 224.371094 119.648438 L 227.011719 121.230469 L 229.546875 122.972656 L 231.964844 124.875 L 234.257812 126.929688 L 236.417969 129.121094 L 238.433594 131.445312 L 240.296875 133.894531 L 242 136.457031 L 243.539062 139.121094 L 244.90625 141.878906 L 246.09375 144.71875 L 247.101562 147.625 L 247.921875 150.59375 L 248.550781 153.605469 L 248.988281 156.648438 L 249.234375 159.71875 L 249.28125 162.792969 L 249.136719 165.867188 L 248.792969 168.925781 L 248.261719 171.957031 L 247.535156 174.945312 L 246.621094 177.886719 L 245.523438 180.761719 L 244.246094 183.558594 L 242.792969 186.273438 L 241.167969 188.886719 L 239.382812 191.394531 L 237.445312 193.78125 L 235.355469 196.042969 L 233.128906 198.164062 L 230.769531 200.144531 L 228.292969 201.96875 L 225.703125 203.632812 L 223.015625 205.128906 L 220.238281 206.449219 L 217.378906 207.59375 L 214.457031 208.554688 L 211.476562 209.328125 L 208.457031 209.910156 L 205.402344 210.300781 L 202.332031 210.496094 L 199.253906 210.496094 L 196.183594 210.300781 L 193.132812 209.910156 L 190.109375 209.328125 L 187.132812 208.554688 L 184.207031 207.59375 L 181.351562 206.449219 L 178.574219 205.128906 L 175.882812 203.632812 L 173.296875 201.96875 L 170.816406 200.144531 L 168.460938 198.164062 L 166.234375 196.042969 L 164.144531 193.78125 L 162.203125 191.394531 L 160.421875 188.886719 L 158.796875 186.273438 L 157.34375 183.558594 L 156.066406 180.761719 L 154.96875 177.886719 L 154.054688 174.945312 L 153.328125 171.957031 L 152.792969 168.925781 L 152.453125 165.867188 L 152.308594 162.792969 L 152.355469 159.71875 L 152.597656 156.648438 L 153.039062 153.605469 L 153.667969 150.59375 L 154.488281 147.625 L 155.492188 144.71875 L 156.683594 141.878906 L 158.050781 139.121094 L 159.589844 136.457031 L 161.292969 133.894531 L 163.15625 131.445312 L 165.171875 129.121094 L 167.328125 126.929688 L 169.625 124.875 L 172.042969 122.972656 L 174.578125 121.230469 L 177.21875 119.648438 L 179.953125 118.238281 L 182.769531 117.003906 L 185.664062 115.953125 L 188.617188 115.085938 L 191.617188 114.40625 L 194.65625 113.921875 L 197.71875 113.628906 L 200.792969 113.53125 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 101.40625 L 204.640625 101.53125 L 208.46875 101.894531 L 212.265625 102.503906 L 216.019531 103.351562 L 219.710938 104.433594 L 223.324219 105.75 L 226.847656 107.292969 L 230.265625 109.054688 L 233.566406 111.03125 L 236.734375 113.210938 L 239.757812 115.589844 L 242.625 118.152344 L 245.324219 120.894531 L 247.84375 123.800781 L 250.171875 126.863281 L 252.300781 130.066406 L 254.226562 133.398438 L 255.933594 136.84375 L 257.417969 140.390625 L 258.679688 144.027344 L 259.703125 147.734375 L 260.492188 151.5 L 261.039062 155.304688 L 261.34375 159.140625 L 261.402344 162.988281 L 261.222656 166.828125 L 260.792969 170.652344 L 260.125 174.441406 L 259.21875 178.179688 L 258.078125 181.851562 L 256.703125 185.445312 L 255.105469 188.941406 L 253.289062 192.332031 L 251.261719 195.601562 L 249.03125 198.734375 L 246.605469 201.722656 L 243.996094 204.546875 L 241.210938 207.199219 L 238.265625 209.671875 L 235.167969 211.953125 L 231.933594 214.035156 L 228.570312 215.902344 L 225.097656 217.558594 L 221.527344 218.988281 L 217.871094 220.1875 L 214.148438 221.152344 L 210.371094 221.878906 L 206.554688 222.367188 L 202.71875 222.613281 L 198.871094 222.613281 L 195.03125 222.367188 L 191.214844 221.878906 L 187.441406 221.152344 L 183.714844 220.1875 L 180.0625 218.988281 L 176.492188 217.558594 L 173.019531 215.902344 L 169.65625 214.035156 L 166.421875 211.953125 L 163.324219 209.671875 L 160.375 207.199219 L 157.59375 204.546875 L 154.984375 201.722656 L 152.558594 198.734375 L 150.328125 195.601562 L 148.296875 192.332031 L 146.480469 188.941406 L 144.882812 185.445312 L 143.511719 181.851562 L 142.367188 178.179688 L 141.460938 174.441406 L 140.792969 170.652344 L 140.367188 166.828125 L 140.183594 162.988281 L 140.246094 159.140625 L 140.550781 155.304688 L 141.097656 151.5 L 141.886719 147.734375 L 142.910156 144.027344 L 144.167969 140.390625 L 145.65625 136.84375 L 147.363281 133.398438 L 149.285156 130.066406 L 151.417969 126.863281 L 153.746094 123.800781 L 156.265625 120.894531 L 158.964844 118.152344 L 161.832031 115.589844 L 164.855469 113.210938 L 168.023438 111.03125 L 171.324219 109.054688 L 174.742188 107.292969 L 178.265625 105.75 L 181.878906 104.433594 L 185.570312 103.351562 L 189.324219 102.503906 L 193.121094 101.894531 L 196.949219 101.53125 L 200.792969 101.40625 "/>
|
||||
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 84.964844 L 205.683594 85.121094 L 210.550781 85.585938 L 215.378906 86.359375 L 220.148438 87.433594 L 224.839844 88.8125 L 229.433594 90.484375 L 233.914062 92.445312 L 238.261719 94.6875 L 242.457031 97.199219 L 246.484375 99.972656 L 250.328125 102.992188 L 253.972656 106.253906 L 257.402344 109.738281 L 260.605469 113.433594 L 263.566406 117.324219 L 266.273438 121.398438 L 268.71875 125.632812 L 270.890625 130.011719 L 272.78125 134.523438 L 274.378906 139.144531 L 275.683594 143.855469 L 276.683594 148.644531 L 277.378906 153.484375 L 277.765625 158.359375 L 277.84375 163.246094 L 277.613281 168.132812 L 277.070312 172.992188 L 276.21875 177.808594 L 275.066406 182.558594 L 273.617188 187.230469 L 271.871094 191.796875 L 269.839844 196.246094 L 267.53125 200.554688 L 264.953125 204.710938 L 262.117188 208.691406 L 259.03125 212.488281 L 255.714844 216.082031 L 252.175781 219.453125 L 248.429688 222.597656 L 244.492188 225.496094 L 240.378906 228.140625 L 236.105469 230.519531 L 231.691406 232.621094 L 227.148438 234.4375 L 222.503906 235.964844 L 217.769531 237.191406 L 212.96875 238.117188 L 208.121094 238.734375 L 203.238281 239.046875 L 198.347656 239.046875 L 193.46875 238.734375 L 188.617188 238.117188 L 183.816406 237.191406 L 179.085938 235.964844 L 174.4375 234.4375 L 169.898438 232.621094 L 165.484375 230.519531 L 161.210938 228.140625 L 157.097656 225.496094 L 153.160156 222.597656 L 149.414062 219.453125 L 145.875 216.082031 L 142.554688 212.488281 L 139.472656 208.691406 L 136.636719 204.710938 L 134.058594 200.554688 L 131.75 196.246094 L 129.71875 191.796875 L 127.972656 187.230469 L 126.519531 182.558594 L 125.367188 177.808594 L 124.519531 172.992188 L 123.976562 168.132812 L 123.746094 163.246094 L 123.820312 158.359375 L 124.210938 153.484375 L 124.90625 148.644531 L 125.90625 143.855469 L 127.210938 139.144531 L 128.808594 134.523438 L 130.699219 130.011719 L 132.871094 125.632812 L 135.316406 121.398438 L 138.023438 117.324219 L 140.984375 113.433594 L 144.1875 109.738281 L 147.617188 106.253906 L 151.261719 102.992188 L 155.105469 99.972656 L 159.132812 97.199219 L 163.328125 94.6875 L 167.675781 92.445312 L 172.152344 90.484375 L 176.75 88.8125 L 181.441406 87.433594 L 186.210938 86.359375 L 191.039062 85.585938 L 195.90625 85.121094 L 200.792969 84.964844 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 202.488281 129.699219 L 204.824219 129.90625 L 207.140625 130.285156 L 209.425781 130.828125 L 211.660156 131.535156 L 213.839844 132.402344 L 215.953125 133.425781 L 217.984375 134.597656 L 219.925781 135.914062 L 221.765625 137.367188 L 223.496094 138.953125 L 225.109375 140.65625 L 226.59375 142.476562 L 227.941406 144.394531 L 225.855469 145.75 L 223.765625 147.109375 L 221.675781 148.464844 L 219.589844 149.820312 L 217.5 151.175781 L 215.414062 152.53125 L 213.324219 153.886719 L 211.234375 155.246094 L 209.148438 156.601562 L 207.058594 157.957031 L 204.972656 159.3125 L 200.792969 162.023438 L 200.925781 159.539062 L 201.054688 157.050781 L 201.183594 154.566406 L 201.316406 152.078125 L 201.445312 149.59375 L 201.578125 147.105469 L 201.707031 144.617188 L 201.835938 142.132812 L 201.96875 139.644531 L 202.097656 137.160156 L 202.226562 134.671875 L 202.359375 132.1875 Z M 202.488281 129.699219 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 261.824219 130.925781 L 262.875 133.078125 L 263.847656 135.261719 L 264.742188 137.476562 L 265.558594 139.722656 L 266.300781 142 L 266.957031 144.296875 L 267.535156 146.617188 L 268.035156 148.953125 L 268.449219 151.308594 L 268.78125 153.675781 L 269.03125 156.054688 L 269.199219 158.441406 L 269.28125 160.828125 L 269.28125 163.21875 L 269.199219 165.609375 L 269.03125 167.996094 L 268.78125 170.371094 L 268.449219 172.742188 L 268.035156 175.09375 L 267.535156 177.433594 L 266.957031 179.753906 L 266.300781 182.050781 L 265.558594 184.324219 L 264.742188 186.570312 L 263.847656 188.789062 L 262.875 190.972656 L 261.824219 193.121094 L 259.722656 192.050781 L 257.617188 190.976562 L 255.511719 189.90625 L 253.40625 188.832031 L 251.304688 187.761719 L 249.199219 186.6875 L 247.09375 185.617188 L 244.988281 184.542969 L 242.886719 183.472656 L 240.78125 182.398438 L 238.675781 181.328125 L 236.570312 180.253906 L 234.46875 179.183594 L 232.363281 178.109375 L 230.257812 177.039062 L 228.152344 175.964844 L 226.050781 174.894531 L 223.945312 173.820312 L 221.839844 172.75 L 217.628906 170.601562 L 215.527344 169.53125 L 213.421875 168.457031 L 211.316406 167.386719 L 209.210938 166.3125 L 207.109375 165.242188 L 205.003906 164.167969 L 202.898438 163.097656 L 200.792969 162.023438 L 202.898438 160.953125 L 205.003906 159.878906 L 207.109375 158.808594 L 209.210938 157.734375 L 211.316406 156.664062 L 213.421875 155.589844 L 215.527344 154.519531 L 217.628906 153.445312 L 219.734375 152.375 L 221.839844 151.300781 L 223.945312 150.230469 L 226.050781 149.15625 L 228.152344 148.085938 L 230.257812 147.011719 L 232.363281 145.941406 L 234.46875 144.867188 L 236.570312 143.796875 L 238.675781 142.722656 L 240.78125 141.652344 L 242.886719 140.578125 L 244.988281 139.507812 L 247.09375 138.433594 L 249.199219 137.363281 L 251.304688 136.289062 L 253.40625 135.21875 L 255.511719 134.144531 L 257.617188 133.074219 L 259.722656 132 Z M 261.824219 130.925781 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 208.828125 167.242188 L 206.820312 169.46875 L 204.226562 170.964844 L 201.296875 171.589844 L 201.046875 166.808594 L 200.917969 164.417969 L 200.792969 162.023438 L 202.800781 163.328125 L 204.8125 164.632812 Z M 208.828125 167.242188 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 199.796875 181.03125 L 197.253906 180.726562 L 194.777344 180.082031 L 192.40625 179.113281 L 190.191406 177.832031 L 188.164062 176.265625 L 186.367188 174.441406 L 184.832031 172.390625 L 186.828125 171.09375 L 188.820312 169.800781 L 192.8125 167.207031 L 194.808594 165.914062 L 198.800781 163.320312 L 200.792969 162.023438 L 200.667969 164.402344 L 200.546875 166.777344 L 200.296875 171.527344 L 200.171875 173.90625 Z M 199.796875 181.03125 "/>
|
||||
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 167.199219 179.140625 L 166.191406 177 L 165.320312 174.796875 L 164.585938 172.542969 L 164 170.25 L 163.554688 167.921875 L 163.257812 165.574219 L 163.109375 163.210938 L 163.109375 160.839844 L 163.257812 158.476562 L 163.554688 156.125 L 164 153.800781 L 164.585938 151.507812 L 165.320312 149.253906 L 166.191406 147.050781 L 167.199219 144.90625 L 169.300781 145.976562 L 171.398438 147.046875 L 173.5 148.117188 L 175.597656 149.1875 L 177.699219 150.257812 L 179.796875 151.328125 L 181.898438 152.394531 L 183.996094 153.464844 L 186.097656 154.535156 L 188.195312 155.605469 L 190.296875 156.675781 L 192.394531 157.746094 L 194.496094 158.816406 L 196.59375 159.886719 L 198.695312 160.957031 L 200.792969 162.023438 L 198.695312 163.09375 L 196.59375 164.164062 L 194.496094 165.234375 L 192.394531 166.304688 L 190.296875 167.375 L 188.195312 168.445312 L 186.097656 169.515625 L 183.996094 170.582031 L 181.898438 171.652344 L 179.796875 172.722656 L 177.699219 173.792969 L 175.597656 174.863281 L 173.5 175.933594 L 171.398438 177.003906 L 169.300781 178.074219 Z |