summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile14
-rw-r--r--alg/alg-1.tex76
-rw-r--r--calc/sol0113.tex (renamed from sol0113.tex)0
-rw-r--r--calc/sol0120.tex (renamed from sol0120.tex)0
-rw-r--r--calc/sol0127.tex (renamed from sol0127.tex)0
-rw-r--r--calc/sol0203.tex (renamed from sol0203.tex)0
-rw-r--r--calc/sol0210.tex (renamed from sol0210.tex)0
-rw-r--r--cat.pdfbin0 -> 27160 bytes
-rw-r--r--cat.svg706
-rw-r--r--dm/dm-14.tex (renamed from dm-14.tex)0
-rw-r--r--dm/dm-15.tex (renamed from dm-15.tex)0
-rw-r--r--dm/dm-16.tex (renamed from dm-16.tex)0
-rw-r--r--dm/dm-17.tex (renamed from dm-17.tex)0
-rw-r--r--dm/dm-18.tex (renamed from dm-18.tex)0
-rw-r--r--dm/dm-19.tex (renamed from dm-19.tex)2
-rw-r--r--intro.sty94
-rw-r--r--intro.tex59
l---------last.tex1
-rw-r--r--mathshit.sty12
19 files changed, 897 insertions, 67 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..3b7b246
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+MV ?=mv
+RM ?=rm -rf
+RMRECURSIVE ?=$(RM) -r
+
+
+all:
+ true
+
+clean:
+ $(MV) cat.pdf cat.pdf.bak
+ $(RM) *.log *.synctex.gz *.pdf
+ $(MV) cat.pdf.bak cat.pdf
+ $(RMRECURSIVE) $(shell fd -I '[a-f0-9]{32}')
+
diff --git a/alg/alg-1.tex b/alg/alg-1.tex
new file mode 100644
index 0000000..a9906b8
--- /dev/null
+++ b/alg/alg-1.tex
@@ -0,0 +1,76 @@
+\documentclass[11pt]{article}
+\usepackage[x11names, svgnames, rgb]{xcolor}
+\usepackage{../intro}
+\usepackage{cancel}
+
+\lhead{\color{gray} \small \textit{Шарафатдинов Камиль 192}}
+\rhead{\color{gray} \small \textit{алг-1}}
+
+\title{Алгебра 1}
+
+% -- Here bet dragons --
+\begin{document}
+\maketitle
+\drawcat{50pt}
+\clearpage
+
+\dmquestion{1}
+
+ Докажем, что если $\ord(g) = m$, то
+ \[
+ n \divby m \Leftrightarrow g^n = e
+ \]
+
+ \begin{itemize}[leftmargin=1in]
+ \item [$\Rightarrow$] \leavevmode \\
+
+ \[
+ g^n = \br{g^m}^{\frac n m} = e^{\frac n m} = e
+ \]
+
+ \item [$\Leftarrow$] \leavevmode \\
+
+ Пусть это не так и $\exists\ n \ : \ g^n = e$, но $n$ не делится на $m$. Тогда
+ \[
+ n = mq + r, \ \ 0 \leqslant r < m
+ \]
+ \[
+ e = g^n = g^{mq + r} = g^{mq} g^r = e^q g^r = g^r
+ \]
+
+ Но так как $r < m$, значит, $\ord(g) = r < m$. Противоречие.
+ \end{itemize}
+
+ Тогда понятно, что $\ord(g^k) = \frac{\text{НОК}(m, k)}{k}$
+
+\dmquestion{2}
+
+ Пусть $G = \cycle{g}$ и надо доказать, что подгруппа $H \subseteq G$ - циклическая.
+ Неформально, я хочу показать, что $H$ порождается $g^{\gcd(\{d \ | \ g^d \in H\})}$.
+
+ Введем новую операцию для удобства
+ \[
+ \deg(x) \coloneqq \min \{d \ | \ x = g^d, d \geqslant 0\}
+ \]
+
+ Возьмем какой-то элемент $h_0 \in H$ так, что $h_0 \neq e$.
+ Построим последовательность $\{h_i\}$ хитрым образом, докажем, что она конечна и последний ее элемент $h_n$ порождает $H$.
+
+ Пусть $\cycle{h_i} \neq H$ (иначе $H = \cycle{h_i}$ и все доказано), тогда возьмем какой-нибудь элемент $h$ из $H$, но не из $\cycle{h_i}$.
+
+ Так как уравнение
+ \[
+ x \deg(h) + y \deg(h_i) = \gcd(\deg(h), \deg(h_i))
+ \]
+ всегда имеет решение $(x, y)$ в целых числах, то $g^{\gcd(\deg(h),\ \deg(h_i))}$ обязан лежать в $H$.
+
+ Тогда пусть по построению $h_{i + 1} = g^{\gcd(\deg(h),\ \deg(h_i))}$. Заметим, что $\cycle{h_{i + 1}} \in H$, поскольку $H$ - группа.
+
+ Очевидно, что $\gcd(\deg(h), \ \deg(h_i)) \leqslant \deg(h_i)$. Но так как $h \notin \cycle{h_i}$, то $\deg(h)\ \cancel{\divby}\deg(h_i)$, а значит $\gcd(\deg(h), \ \deg(h_i)) < \deg(h_i)$.
+
+ Значит, $h_i > h_{i + 1}$, поэтому $|\{h_n\}| < \infty$. Значит, в какой-то момент перестанет выполняться предположение о том, что $\cycle{h_i} \neq H$, что и требовалось.
+
+\dmquestion{4}
+
+
+\end{document}
diff --git a/sol0113.tex b/calc/sol0113.tex
index 06ac8d6..06ac8d6 100644
--- a/sol0113.tex
+++ b/calc/sol0113.tex
diff --git a/sol0120.tex b/calc/sol0120.tex
index f073973..f073973 100644
--- a/sol0120.tex
+++ b/calc/sol0120.tex
diff --git a/sol0127.tex b/calc/sol0127.tex
index 1098687..1098687 100644
--- a/sol0127.tex
+++ b/calc/sol0127.tex
diff --git a/sol0203.tex b/calc/sol0203.tex
index f568637..f568637 100644
--- a/sol0203.tex
+++ b/calc/sol0203.tex
diff --git a/sol0210.tex b/calc/sol0210.tex
index bb4ad94..bb4ad94 100644
--- a/sol0210.tex
+++ b/calc/sol0210.tex
diff --git a/cat.pdf b/cat.pdf
new file mode 100644
index 0000000..1b58542
--- /dev/null
+++ b/cat.pdf
Binary files differ
diff --git a/cat.svg b/cat.svg
new file mode 100644
index 0000000..5284eba
--- /dev/null
+++ b/cat.svg
@@ -0,0 +1,706 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
+ <!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
+ <!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/">
+ <!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
+ <!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/">
+ <!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/">
+ <!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/">
+ <!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/">
+ <!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/">
+]>
+<svg version="1.1" xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;"
+ xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 750 750"
+ enable-background="new 0 0 750 750" xml:space="preserve">
+<metadata>
+ <sfw xmlns="&ns_sfw;">
+ <slices></slices>
+ <sliceSourceBounds bottomLeftOrigin="true" height="12757.679" width="14247.625" x="-7111.093" y="-4713.29">
+ </sliceSourceBounds>
+ </sfw>
+</metadata>
+<g id="FILL-BACKGROUND">
+ <rect fill="#FFFFFF" width="750" height="750"/>
+</g>
+<g id="N-DIMENSIONS">
+</g>
+<g id="N-TEXT">
+</g>
+<g id="AG-DIAGRAM">
+</g>
+<g id="AG-DETAILS">
+ <g id="POLYLINE_1765_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M198.287,413.994c0.544,1.973,0.125,4.156-0.868,5.919c-1.383,2.458-3.768,3.684-6.355,4.519c-0.744,0.24-1.497,0.451-2.246,0.674
+ c-0.41,0.122-1.5,0.28-1.698,0.702c-0.369,0.784,2.619,1.347,3.167,1.466c2.806,0.611,5.767,0.911,8.63,0.57
+ c5.553-0.661,10.146-4.404,10.32-10.27c0.087-2.929-1.057-5.784-3.243-7.754c-2.199-1.981-5.21-3.041-8.062-3.659
+ c-1.036-0.225-6.793-1.39-6.815,0.458c-0.012,0.979,1.782,2.01,2.475,2.534c1.206,0.913,2.534,1.786,3.567,2.903
+ C197.681,412.62,198.068,413.255,198.287,413.994z"/>
+ </g>
+ <g id="POLYLINE_1764_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M603.575,332.259c-1.644,6.986-1.971,14.157-0.675,21.231c0.358,1.955,0.845,3.878,1.41,5.782"/>
+ </g>
+ <g id="POLYLINE_1763_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M599.574,329.798c-5.487,5.096-9.281,11.657-10.288,19.125c-0.245,1.818-0.338,3.656-0.297,5.49"/>
+ </g>
+ <g id="POLYLINE_1762_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M599.664,333.296c-1.126,4.099-1.863,8.281-2.064,12.531c-0.187,3.942,0.09,7.901,0.771,11.787
+ c0.383,2.186,0.904,4.342,1.528,6.472"/>
+ </g>
+ <g id="POLYLINE_1761_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M611.338,341.798c2.251,2.553,3.809,5.736,4.131,9.146c0.087,0.923,0.09,1.853,0.025,2.777"/>
+ </g>
+ <g id="POLYLINE_1760_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M612.11,339.213c2.27,1.781,4.188,3.971,5.635,6.468"/>
+ </g>
+ <g id="POLYLINE_1759_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M209.565,169.598c-2.83,1.47-5.868,2.518-9.057,2.8c-1.705,0.151-3.416,0.116-5.125,0.097c-0.918-0.01-3.248-0.341-3.402,0.983
+ c-0.144,1.242,1.141,2.672,1.862,3.559c0.944,1.163,1.994,2.27,3.159,3.213c2.782,2.251,6.126,2.743,9.352,1.097
+ c3.822-1.951,4.657-5.931,3.808-9.854"/>
+ </g>
+ <g id="POLYLINE_1758_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M203.323,156.382c1.247,3.63,0.404,8.523-3.038,10.688c-3.147,1.979-7.486,1.341-10.807,0.178
+ c-2.15-0.753-4.108-1.972-5.124-4.092c-0.888-1.854-1.08-4.003-0.88-6.031c0.45-4.556,3.158-9.311,8.257-9.164
+ c4.435,0.128,8.902,3.139,10.959,6.986C202.937,155.409,203.15,155.888,203.323,156.382z"/>
+ </g>
+ <g id="POLYLINE_1757_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M193.44,192.364c2.774-0.913,5.552-1.799,8.165-3.122c2.402-1.217,4.761-2.626,7.437-3.152c1.294-0.254,2.617-0.33,3.933-0.327"/>
+ </g>
+ <g id="POLYLINE_1756_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M193.177,197.969c1.558,4.272,6.132,9.259,11.143,8.271c4.934-0.973,8.049-6.51,8.94-11.079c0.605-3.104,0.425-6.327-0.286-9.397"
+ />
+ </g>
+ <g id="POLYLINE_1755_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M356.22,428.607c-1.931-1.954-4.709-2.482-7.36-2.483c-2.973-0.002-6.005,0.524-8.858,1.338c-2.508,0.715-5.057,1.734-7.067,3.437
+ c-2.696,2.284-3.358,5.524-2.465,8.867c1.365,5.109,5.501,9.922,10.45,11.844c2.118,0.823,4.476,1.06,6.568,0.023
+ c2.998-1.486,5.18-4.613,7.32-7.084c1.871-2.16,3.594-4.562,3.925-7.477c0.249-2.191-0.137-4.522-1.138-6.492
+ C357.231,429.863,356.778,429.188,356.22,428.607z"/>
+ </g>
+ <g id="POLYLINE_1754_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M358.709,407.177c-1.418,3.434-4.718,5.901-8.086,7.251c-3.327,1.334-6.842,1.472-10.23,0.306
+ c-3.829-1.318-7.481-3.578-10.901-5.717c-3.301-2.065-6.492-4.516-8.936-7.574c-1.963-2.457-3.378-5.467-2.177-8.597
+ c1.437-3.742,5.203-6.496,8.709-8.139c3.229-1.514,6.804-2.149,10.352-1.723c3.674,0.442,7.143,1.941,10.22,3.959
+ c3.332,2.185,6.337,4.993,8.595,8.286c1.922,2.805,3.452,6.253,3.026,9.728C359.252,405.189,358.948,407.177,358.709,407.177z"/>
+ </g>
+ <g id="POLYLINE_1753_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M308.735,388.107c-1.245,1.628-4.101-0.089-5.368-0.858c-2.088-1.269-4.022-2.882-5.574-4.771c-0.843-1.026-1.581-2.131-2.4-3.175
+ c-0.798-1.019-1.7-1.948-2.521-2.948c-0.605-0.737-1.437-1.699-1.458-2.711c-0.025-1.215,1.349-1.87,2.305-2.244
+ c4.842-1.889,9.769-0.877,14.679,0.02c2.677,0.489,5.407,0.592,8.081,1.084c0.918,0.169,2.024,0.361,2.773,0.958
+ c0.958,0.763,0.472,1.806-0.153,2.623c-1.874,2.451-4.764,3.044-7.29,4.506c-2.45,1.418-2.25,3.605-2.626,6.083
+ C309.107,387.176,309.002,387.667,308.735,388.107z"/>
+ </g>
+ <g id="POLYLINE_1752_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M285.447,385.22c-0.836-4.693-4.958-10.18-10.195-7.852c-5.674,2.522-8.69,8.809-11.546,13.918
+ c-1.379,2.467-2.661,5.177-1.484,7.973c1.087,2.581,3.315,4.604,5.144,6.65c1.76,1.97,4.42,6.228,7.581,5.32
+ c3.007-0.864,5.218-4.342,6.464-7.029c1.382-2.982,1.858-6.229,2.678-9.384c0.683-2.629,1.6-5.272,1.517-8.025
+ C285.59,386.264,285.537,385.739,285.447,385.22z"/>
+ </g>
+ <g id="POLYLINE_1751_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M355.874,372.613c-4.305,3.169-11.059,0.747-15.564-0.732c-2.37-0.778-4.701-1.642-6.849-2.929
+ c-1.185-0.71-2.331-1.509-3.376-2.414c-0.855-0.741-1.933-1.707-2.193-2.865c-0.547-2.43,3.667-3.61,5.355-4.181
+ c2.722-0.92,5.502-1.621,8.343-2.055c2.98-0.455,6.026-0.811,9.04-0.909c2.446-0.08,5.601-0.087,7.543,1.66
+ c1.775,1.596,1.615,4.434,1.353,6.599c-0.27,2.239-0.913,4.576-2.274,6.41C356.858,371.729,356.401,372.21,355.874,372.613z"/>
+ </g>
+ <g id="POLYLINE_1750_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M318.021,362.621c-3.041,3.822-9.802,3.025-13.518,0.75c-2.188-1.339-3.925-3.285-5.989-4.796
+ c-2.262-1.657-4.839-2.681-7.365-3.855c-0.98-0.455-2.62-1.046-3.14-2.069c-0.585-1.149,1.202-1.934,2.009-2.305
+ c2.426-1.115,5.148-1.702,7.809-1.809c2.776-0.112,5.527,0.332,8.289,0.527c2.512,0.178,5.098-0.006,7.562,0.6
+ c2.461,0.606,4.198,2.232,5.066,4.606c0.795,2.173,0.948,4.775,0.069,6.948C318.612,361.718,318.351,362.194,318.021,362.621z"/>
+ </g>
+ <g id="POLYLINE_1749_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M223.563,521.604c-0.183,1.761-2.477,3.215-3.794,4.116c-1.514,1.036-3.154,1.962-4.881,2.593
+ c-1.428,0.522-3.081,0.888-4.556,0.333c-1.667-0.627-2.791-2.222-3.714-3.664c-1.018-1.591-1.963-3.25-2.803-4.942
+ c-0.451-0.908-1.972-3.468-0.919-4.329c0.989-0.808,3.45,0.323,4.489,0.661c1.894,0.616,3.781,1.257,5.717,1.729
+ c2.081,0.507,4.198,0.846,6.295,1.279C220.497,519.609,223.632,520.016,223.563,521.604z"/>
+ </g>
+ <g id="POLYLINE_1748_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M217.864,512.432c-1.137,1.688-3.447-0.548-4.394-1.382c-1.617-1.424-3.111-2.984-4.761-4.371
+ c-1.52-1.278-3.126-2.221-5.055-2.735c-2.33-0.621-4.469-1.237-6.413-2.746c-1.429-1.109-3.565-3.278-1.717-4.958
+ c1.383-1.257,3.7-1.73,5.514-1.521c2.038,0.234,3.67,1.503,5.172,2.807c1.612,1.399,3.226,2.662,5.062,3.757
+ c3.605,2.151,7.692,4.44,7.128,9.296C218.327,511.215,218.194,511.877,217.864,512.432z"/>
+ </g>
+ <g id="POLYLINE_1747_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M213.86,494.509c-0.368,0.917,1.41,2.489,1.953,3.037c1.08,1.09,2.291,2.104,3.64,2.844c2.068,1.135,4.692,1.166,6.514,2.737
+ c1.086,0.937,1.864,2.19,2.992,3.082c1.028,0.813,2.273,1.026,3.55,1.08c1.232,0.052,2.467,0.005,3.694,0.148
+ c1.195,0.139,2.357,0.463,3.539,0.677c1.169,0.212,2.666,0.428,3.582-0.518c0.685-0.707,0.857-1.848,0.882-2.791
+ c0.02-0.724-0.014-2.437-1.008-2.548c-0.867-0.097-1.84,0.949-2.675,1.167c-2.081,0.544-4.166-0.905-6.171-1.253
+ c-1.123-0.195-2.284-0.262-3.378-0.602c-1.132-0.351-1.985-1.064-2.83-1.873c-0.909-0.87-1.774-1.723-3.002-2.11
+ c-1.044-0.329-2.151-0.414-3.219-0.636c-2.35-0.489-4.47-1.635-6.749-2.339C214.856,494.512,214.153,494.22,213.86,494.509z"/>
+ </g>
+ <g id="POLYLINE_1746_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M239.001,491.46c-0.167,0.988-2.906,0.611-3.651,0.537c-1.266-0.126-2.531-0.37-3.742-0.764c-1.459-0.476-2.711-1.255-3.883-2.237
+ c-1.128-0.944-2.177-1.94-3.643-2.312c-1.6-0.406-3.287-0.285-4.886-0.702c-1.674-0.435-2.79-1.557-3.824-2.887
+ c-1.095-1.409-2.15-3.243-3.945-3.822c-1.566-0.506-3.3-0.184-4.914-0.256c-3.061-0.137-5.736-1.852-7.289-4.514
+ c-0.313-0.536-0.816-1.46-0.482-2.107c0.279-0.542,1.008-0.607,1.548-0.634c1.6-0.08,3.242,0.281,4.822,0.472
+ c2.807,0.339,5.777,0.359,8.463,1.337c3.157,1.149,5.44,3.834,8.517,5.158c2.865,1.233,6.558,1.414,8.542,4.108
+ c0.986,1.339,1.661,2.871,2.78,4.119c1.168,1.302,2.686,2.199,4.123,3.167C237.961,490.409,238.931,490.891,239.001,491.46z"/>
+ </g>
+ <g id="POLYLINE_1745_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M259.634,483.011c-0.466,0.396-1.436,0.177-2.002,0.125c-0.656-0.06-1.31-0.142-1.962-0.23c-1.741-0.234-3.479-0.493-5.219-0.731
+ c-2.728-0.373-5.647-0.288-8.286-1.123c-2.715-0.859-4.644-3.15-6.314-5.341c-1.757-2.307-3.462-4.686-4.983-7.156
+ c-1.552-2.52-2.716-5.209-4.028-7.854c-1.093-2.204-2.435-4.737-4.74-5.872c-2.48-1.221-5.625-0.6-8.256-0.398
+ c-2.216,0.17-4.786,0.405-6.854-0.593c-1.087-0.524-1.852-1.436-2.17-2.6c-0.258-0.946-0.467-2.66,0.351-3.415
+ c0.444-0.409,1.084-0.287,1.633-0.252c0.864,0.056,1.709,0.015,2.535-0.28c0.527-0.189,1.336-0.539,0.744-1.117
+ c-0.419-0.41-1.19-0.619-1.706-0.856c-2.351-1.082-4.805-3.28-5.517-5.852c-0.255-0.919-0.472-2.411,0.604-2.888
+ c1.128-0.5,2.679,0.153,3.756,0.568c5.297,2.041,9.914,5.312,14.189,8.983c2.368,2.033,4.708,4.107,7.008,6.216
+ c1.919,1.759,3.768,3.645,5.175,5.849c1.537,2.407,2.539,5.101,3.863,7.622c1.219,2.321,2.781,4.42,4.631,6.276
+ c3.984,3.996,9.057,6.162,14.026,8.655c0.66,0.331,1.318,0.668,1.961,1.03C258.46,481.996,259.61,482.481,259.634,483.011z"/>
+ </g>
+ <g id="POLYLINE_1744_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M266.661,473.66c-0.686,0.493-1.769,0.07-2.476-0.187c-1.04-0.378-2.036-0.888-2.987-1.451c-1.754-1.037-3.277-2.347-4.666-3.832
+ c-3.034-3.243-6.316-6.489-8.701-10.262c-2.014-3.185-3.333-6.891-3.262-10.691c0.04-2.131,0.324-4.24-0.16-6.345
+ c-0.371-1.613-1.168-3.8-2.982-4.212c-1.963-0.445-4.167,0.508-6.163,0.506c-0.941-0.001-5.649-0.195-4.585-2.086
+ c0.877-1.559,3.373-2.468,4.963-3.085c2.059-0.8,4.29-1.327,6.511-1.197c1.893,0.111,3.776,0.749,5.117,2.136
+ c1.518,1.569,2.173,3.812,2.498,5.919c0.604,3.912-0.283,7.933,0.638,11.804c1.012,4.251,3.72,7.95,7.107,10.634
+ c3.595,2.849,7.139,5.641,8.943,10.029C266.695,471.921,267.217,473.108,266.661,473.66z"/>
+ </g>
+ <g id="POLYLINE_1743_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M246.524,401.476c1.326-0.992,3.295-0.323,4.65,0.296c1.815,0.828,3.588,2.11,4.574,3.882c0.778,1.399,0.969,3.004,0.945,4.581
+ c-0.035,2.308-0.344,4.624-0.543,6.921c-0.189,2.186-0.065,8.918-3.664,8.213c-2.233-0.438-4.377-2.585-5.242-4.617
+ c-0.824-1.935-0.621-4.053-0.686-6.101c-0.064-2.036-0.506-4.033-0.795-6.044c-0.274-1.906-0.654-4.21,0.052-6.065
+ C245.973,402.131,246.19,401.768,246.524,401.476z"/>
+ </g>
+ <g id="POLYLINE_1742_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M240.682,375.317c1.275-0.771,2.904-1.137,4.377-0.819c1.967,0.425,2.872,2.238,3.222,4.08c0.698,3.664-0.589,7.191-0.641,10.838
+ c-0.02,1.368,0.467,3.336-0.173,4.62c-0.688,1.381-2.834-0.103-3.649-0.634c-2.933-1.913-5.146-4.36-5.923-7.843
+ C237.129,382.118,237.369,377.401,240.682,375.317z"/>
+ </g>
+ <g id="POLYLINE_1741_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M263.872,370.213c-0.524,1.045-0.905,2.193-1.599,3.145c-0.964,1.323-2.501,1.707-4.087,1.535
+ c-1.372-0.148-3.056-0.719-3.741-2.027c-0.636-1.214-0.183-2.701,0.384-3.854c1.241-2.521,3.478-4.644,6.194-5.455
+ c2.634-0.786,5.499-0.518,8.208-0.487c2.557,0.029,5.093-0.204,7.644-0.325c2.117-0.1,5.37-0.374,6.921,1.436
+ c1.26,1.471,0.792,4.146-0.202,5.64c-1.573,2.366-4.584,0.253-6.37-0.777c-3.556-2.052-8.84-4.821-12.116-0.785
+ C264.622,368.859,264.22,369.525,263.872,370.213z"/>
+ </g>
+ <g id="POLYLINE_1740_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M276.913,464.735c-0.759,0.572-3.111-1.16-3.812-1.585c-1.084-0.656-2.138-1.365-3.153-2.123c-2.032-1.515-3.93-3.27-5.032-5.594
+ c-2.191-4.62-1.679-10.011-3.943-14.646c-1.264-2.587-3.032-4.908-4.259-7.508c-0.191-0.404-0.701-1.308-0.113-1.576
+ c0.395-0.18,1.104,0.198,1.454,0.358c1.123,0.513,2.19,1.242,3.1,2.074c2.353,2.15,2.803,4.982,3.363,7.951
+ c0.478,2.532,1.394,4.947,2.41,7.306c1.111,2.578,2.202,5.245,3.77,7.586c1.55,2.314,3.57,4.24,5.348,6.369
+ C276.354,463.718,276.89,464.226,276.913,464.735z"/>
+ </g>
+ <g id="POLYLINE_1739_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M278.481,453.139c-1.123,0.49-3.162-0.996-4.019-1.574c-1.365-0.92-2.62-2.056-3.333-3.564c-1.227-2.593-0.797-5.669-1.304-8.433
+ c-0.505-2.751-1.463-5.441-2.733-7.931c-1.195-2.344-2.766-4.23-4.489-6.197c-1.91-2.18-2.987-5.057-2.385-7.979
+ c0.872-4.233,5.331-0.508,6.777,1.348c1.978,2.538,2.011,5.68,2.796,8.667c0.754,2.87,1.945,5.631,2.434,8.569
+ c0.44,2.643,0.385,5.336,1.272,7.896c1,2.885,3.026,5.125,4.571,7.707C278.272,451.992,278.824,452.747,278.481,453.139z"/>
+ </g>
+ <g id="POLYLINE_1738_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M318.03,421.056c-0.42,1.005-2.043,1.231-2.978,1.363c-0.893,0.126-1.803,0.158-2.703,0.102c-1.969-0.123-3.728-0.807-5.468-1.695
+ c-1.108-0.565-2.22-1.232-3.447-1.505c-1.439-0.32-2.8,0.158-4.158,0.587c-2.1,0.664-4.093,1.023-6.249,0.417
+ c-1.836-0.517-4.478-1.678-5.124-3.635c-0.677-2.05,2.208-3.355,3.674-3.944c4.268-1.717,9.421-2.373,13.745-0.534
+ c2.378,1.011,4.54,2.52,6.731,3.869c1.815,1.118,4.158,2.169,5.551,3.837C317.863,420.225,318.153,420.632,318.03,421.056z"/>
+ </g>
+ <g id="POLYLINE_1737_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M300.019,403.768c-0.297,1.024,2.389,0.298,2.86,0.154c0.844-0.258,1.668-0.601,2.436-1.037c1.75-0.993,3.175-2.664,2.725-4.795
+ c-0.547-2.593-3.447-3.52-5.804-3.149c-1.068,0.168-2.215,0.569-3.064,1.259c-1.085,0.881-0.366,1.556,0.582,2.143
+ c0.793,0.491,2.604,1.198,2.513,2.365C302.166,401.992,300.565,402.71,300.019,403.768z"/>
+ </g>
+ <g id="POLYLINE_1736_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M276.991,428.474c-1.411,0.474-1.197,2.807-1.045,3.986c0.177,1.372,0.572,2.817,1.367,3.964c0.941,1.358,2.439,2.027,3.77,2.922
+ c1.433,0.964,2.514,2.272,3.474,3.691c1.006,1.486,1.846,3.069,2.769,4.605c0.237,0.395,1.006,1.856,1.221,0.794
+ c0.14-0.691-0.048-1.57-0.143-2.258c-0.478-3.471-1.326-7.137-2.828-10.317c-0.903-1.912-2.222-3.481-3.842-4.823
+ c-0.76-0.629-1.548-1.241-2.384-1.767C278.707,428.867,277.796,428.282,276.991,428.474z"/>
+ </g>
+ <g id="POLYLINE_1735_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M395.43,365.991c-1.654,0.452-1.694,3.183-1.806,4.534c-0.182,2.187-0.198,4.428-0.718,6.572
+ c-1.078,4.438-5.171,6.012-8.873,7.859c-1.774,0.885-3.463,1.92-4.953,3.235c-1.745,1.541-3.686,3.717-3.763,6.187
+ c-0.07,2.266,1.606,4.188,3.053,5.744c1.407,1.514,2.925,2.926,4.26,4.506c2.708,3.205,4.116,7.191,3.643,11.403
+ c-0.227,2.021-0.873,3.983-1.912,5.732c-1.079,1.814-2.506,3.384-3.757,5.076c-1.057,1.43-1.979,2.967-2.407,4.708
+ c-0.508,2.068-0.446,4.237-0.477,6.35c-0.025,1.779-0.027,3.659-0.682,5.342c-0.743,1.911-2.472,3.063-4.189,4.037
+ c-3.507,1.989-6.769,3.951-9.588,6.882c-1.297,1.348-2.63,2.875-3.35,4.625c-0.269,0.654-0.518,1.488-0.139,2.15
+ c0.493,0.86,1.697,1.001,2.592,1.032c3.692,0.13,7.588-1.428,10.814-3.071c3.599-1.832,6.922-4.295,9.025-7.801
+ c1.075-1.792,1.874-4.008,3.517-5.376c1.478-1.231,3.493-1.176,5.303-1.384c1.812-0.208,3.448-0.78,4.788-2.067
+ c1.4-1.344,2.282-3.148,2.878-4.973c1.344-4.113,1.498-8.628,1.274-12.917c-0.218-4.168-1.006-8.297-2.781-12.098
+ c-1.718-3.68-4.443-6.74-6.301-10.335c-1.872-3.622-1.723-7.237,0.14-10.846c1.965-3.806,5.049-6.777,7.935-9.873
+ c1.3-1.395,2.612-2.896,3.418-4.641c1.189-2.572,0.495-5.072-1.27-7.175C399.952,368.034,397.504,365.539,395.43,365.991z"/>
+ </g>
+ <g id="POLYLINE_1734_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M431.813,457.164c-2.138,1.434-5.009,1.477-7.474,1.787c-2.404,0.302-4.861,0.715-6.771,2.323
+ c-4.22,3.552-4.631,9.814-6.63,14.591c-0.413,0.986-1.018,2.435-2.151,2.767c-1.174,0.344-2.327-0.75-3.047-1.536
+ c-1.619-1.767-2.875-4.203-3.168-6.6c-0.699-5.71,4.634-9.792,8.719-12.777c2.42-1.768,4.926-3.42,7.309-5.238
+ c2.126-1.622,4.255-3.422,5.679-5.718c3.065-4.941,1.252-11.468,0.716-16.85c-0.284-2.854-0.5-5.776-0.168-8.636
+ c0.248-2.135,0.913-5.122,3.47-5.46c2.418-0.32,5.009,1.218,6.856,2.605c1.923,1.444,3.692,3.314,4.504,5.619
+ c1.631,4.627-0.831,9.723-2.31,14.042c-0.86,2.512-1.483,5.047-1.85,7.676c-0.39,2.794-0.509,5.771-1.532,8.43
+ C433.516,455.361,432.845,456.423,431.813,457.164z"/>
+ </g>
+ <g id="POLYLINE_1733_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M447.317,395.433c-0.478,3.187-1.008,7.111-3.338,9.549c-2.036,2.13-5.118,1.6-7.479,0.333c-3.103-1.664-4.771-4.521-4.123-8.023
+ c0.634-3.424,2.665-6.442,4.548-9.295c0.949-1.437,1.932-2.863,2.685-4.417c0.747-1.541,1.151-3.182,1.551-4.838
+ c0.794-3.29,1.843-6.239,4.077-8.844c1.942-2.263,4.451-4.558,7.23-5.715c0.51-0.213,1.29-0.54,1.836-0.281
+ c0.66,0.313,0.54,1.241,0.448,1.831c-0.25,1.612-0.909,3.184-1.509,4.691c-1.477,3.704-3.132,7.356-4.088,11.241
+ c-0.915,3.718-1.131,7.533-1.533,11.328C447.535,393.808,447.426,394.62,447.317,395.433z"/>
+ </g>
+ <g id="POLYLINE_1732_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M420.512,369.807c-0.67,0.724,0.127,2.053,0.472,2.761c0.451,0.925,0.953,1.824,1.404,2.749c0.765,1.568,1.33,3.169,1.106,4.938
+ c-0.25,1.97-1.18,3.806-1.715,5.704c-0.555,1.968-0.91,4.009-1.111,6.043c-0.079,0.807-0.29,1.892-0.061,2.682
+ c0.305,1.054,1.097-0.906,1.284-1.314c0.904-1.967,1.707-3.979,2.655-5.926c0.868-1.782,1.915-3.436,3.002-5.09
+ c1.069-1.626,2.371-3.398,2.314-5.437c-0.108-3.872-4.613-7.179-8.268-7.329C421.218,369.573,420.835,369.589,420.512,369.807z"/>
+ </g>
+ <g id="POLYLINE_1731_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M453.106,466.218c-1.854,1.378-9.891,4.193-9.654-0.353c0.105-2.012,1.305-4.008,2.245-5.733c1.319-2.421,2.688-4.819,3.734-7.375
+ c1.986-4.855,2.569-10.082,3.315-15.232c0.68-4.696,2.024-9.435,1.841-14.208c-0.094-2.441-0.726-4.792-1.08-7.198
+ c-0.267-1.811-0.462-4.049,0.885-5.508c2.408-2.609,9.125-2.643,10.987,0.655c0.96,1.7,0.62,3.881,0.087,5.658
+ c-0.648,2.164-1.757,4.137-3.054,5.974c-1.445,2.047-3.394,4.104-3.867,6.647c-0.371,1.993,0.234,4.04,0.74,5.951
+ c0.607,2.289,1.264,4.57,1.039,6.964c-0.244,2.599-1.276,5.039-2.161,7.468c-0.843,2.313-1.457,4.608-1.728,7.058
+ c-0.247,2.235-0.339,4.609-1.304,6.683C454.663,464.673,453.984,465.54,453.106,466.218z"/>
+ </g>
+ <g id="POLYLINE_1730_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M474.536,431.081c-1.514,1.228-3.07,2.642-4.857,3.468c-0.739,0.342-1.619,0.536-1.753-0.513
+ c-0.124-0.969,0.256-2.062,0.561-2.969c0.555-1.652,1.312-3.266,2.309-4.698c1.162-1.668,2.679-3.04,3.977-4.596
+ c1.418-1.7,2.904-3.781,2.901-6.09c-0.002-1.907-0.95-3.685-1.912-5.275c-1.06-1.753-2.284-3.419-3.173-5.27
+ c-0.771-1.605-1.076-3.302-1.364-5.045c-0.271-1.639-0.592-3.267-1.333-4.768c-0.896-1.814-2.347-3.23-3.644-4.751
+ c-0.538-0.631-1.332-1.444-1.422-2.312c-0.092-0.886,0.816-1.252,1.533-1.437c1.676-0.434,3.736-0.304,5.271,0.529
+ c3.524,1.913,3.722,7.023,4.699,10.419c1.215,4.222,3.329,7.964,5.529,11.733c1.801,3.086,3.589,6.469,2.497,10.128
+ c-1.147,3.843-4.472,6.863-7.402,9.408C476.158,429.734,475.347,430.407,474.536,431.081z"/>
+ </g>
+ <g id="POLYLINE_1729_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M564.029,557.048c1.033,0.634,2.69-0.816,3.505-1.321c1.196-0.74,2.404-1.391,3.828-1.516c1.564-0.137,3.094,0.294,4.652,0.285
+ c1.672-0.01,3.077-0.807,4.175-2.023c1.976-2.19,2.567-4.957,1.753-7.746c-0.7-2.398-2.065-4.795-1.533-7.373
+ c0.274-1.325,1.029-2.481,1.776-3.586c0.535-0.79,2.153-2.504,1.846-3.584c-0.355-1.25-2.96-0.702-3.813-0.507
+ c-1.527,0.35-3.076,1.019-4.077,2.269c-3.263,4.078,0.491,9.556-1.535,13.998c-0.539,1.182-1.382,2.272-2.513,2.938
+ c-1.241,0.73-2.716,0.827-4.108,1.032c-1.502,0.221-3.074,0.615-3.863,2.037c-0.58,1.046-0.791,2.39-0.678,3.573
+ C563.495,556.062,563.603,556.676,564.029,557.048z"/>
+ </g>
+ <g id="POLYLINE_1728_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M536.005,533.727c1.681-0.137,3.308-0.633,4.057-2.254c0.618-1.338,0.741-3.062,2.322-3.629c2.357-0.846,5.294,0.343,7.685,0.486
+ c2.476,0.148,4.886-0.514,6.955-1.879c2.593-1.712,4.11-4.201,5.869-6.666c1.771-2.481,4.3-4.34,7.431-4.517
+ c1.215-0.069,2.531,0.211,2.808,1.575c0.245,1.206-0.176,2.553-0.558,3.687c-1.794,5.329-5.453,9.63-10.519,12.117
+ c-2.906,1.427-6.06,2.281-9.145,3.223c-2.986,0.911-5.878,2.029-8.749,3.252c-0.689,0.294-1.376,0.594-2.063,0.891"/>
+ </g>
+ <g id="POLYLINE_1727_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M521.181,513.089c1.227,2.836,3.688,5.366,6.789,6.02c3.222,0.68,6.471-1.058,9.44-2.054c3.122-1.047,6.306-1.959,9.32-3.298
+ c2.878-1.279,5.509-3.047,8.394-4.31c3.257-1.427,6.699-1.777,10.226-1.65"/>
+ </g>
+ <g id="POLYLINE_1726_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M562.328,504.131c-3.598-1.333-7.59-1.857-11.409-1.417c-1.883,0.217-3.732,0.708-5.421,1.582
+ c-1.685,0.871-3.201,2.038-4.917,2.853c-1.453,0.69-3.014,1.094-4.573,1.461c-2.247,0.53-4.406,1.16-6.603,1.87
+ c-1.464,0.473-2.962,0.845-4.501,0.952c-1.791,0.125-4.179,0.013-3.687,2.539c0.365,1.877,2.313,3.134,3.893,3.928
+ c1.372,0.689,2.851,1.148,4.386,1.255c0.366,0.025,0.732,0.032,1.099,0.021"/>
+ </g>
+ <g id="POLYLINE_1725_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M552.575,495.023c-1.018,0.899-2.736,1.14-4.035,1.157c-1.65,0.022-3.248-0.409-4.858-0.707c-3.198-0.591-6.456-0.404-9.684-0.259
+ c-3.224,0.144-6.707,0.037-9.691,1.451c-3.144,1.49-5.388,4.888-9.245,3.923c-1.563-0.391-3.045-1.058-4.595-1.498
+ c-0.768-0.218-1.549-0.383-2.322-0.577c-0.42-0.106-1.654-0.271-1.191-0.848c0.333-0.416,1.381-0.585,1.864-0.733
+ c0.931-0.286,1.869-0.549,2.801-0.835c1.338-0.41,2.651-0.888,3.886-1.552c1.436-0.771,2.697-1.797,4.059-2.683
+ c1.356-0.882,2.839-1.546,4.362-2.083c2.964-1.045,6.162-1.727,9.31-1.791c3.165-0.065,6.256,0.673,9.253,1.631
+ c1.659,0.53,3.303,1.108,4.934,1.717c1.512,0.565,3.15,1.139,4.478,2.077C552.404,493.769,553.155,494.395,552.575,495.023z"/>
+ </g>
+ <g id="POLYLINE_1724_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M402.181,508.501c2.553,0.573,5.194,0.951,7.586,2.066c2.584,1.204,4.432,3.4,6.83,4.877c1.086,0.669,2.343,1.146,3.615,0.753
+ c1.685-0.521,2.735-1.534,4.628-1.054c1.355,0.343,2.545,1.151,3.69,1.922c0.948,0.638,2.444,2.046,3.675,1.977
+ c1.192-0.067,1.176-2.223,1.307-3.053c0.193-1.22,0.467-2.393,1.27-3.365c0.924-1.121,2.373-1.899,2.873-3.33
+ c0.345-0.989,0.225-2.109-0.059-3.099c-0.639-2.224-2.331-4.512-4.868-4.323c-1.247,0.093-2.43,0.569-3.647,0.822
+ c-1.393,0.29-2.82,0.284-4.221,0.056c-2.95-0.481-5.678-1.818-8.44-2.893c-2.93-1.14-5.987-1.795-9.039-2.514
+ c-0.607-0.143-1.212-0.293-1.816-0.449"/>
+ </g>
+ <g id="POLYLINE_1723_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M412.355,487.047c1.155,0.759,3.135,0.852,4.479,1.13c1.928,0.398,3.857,0.788,5.779,1.216c3.03,0.675,6.104,1.44,8.713,3.196
+ c1.312,0.883,2.423,2.135,3.855,2.823c1.518,0.729,2.96,0.049,4.258-0.834c1.39-0.946,2.635-2.096,4.199-2.759
+ c1.529-0.648,3.2-0.845,4.827-1.102c1.779-0.281,3.554-0.569,5.317-0.942c0.802-0.169,1.602-0.349,2.394-0.559
+ c0.65-0.172,1.775-0.334,2.273-0.805c0.64-0.605-0.681-0.719-1.128-0.788c-0.777-0.121-1.563-0.191-2.347-0.256
+ c-1.522-0.127-3.055-0.19-4.579-0.073c-2.563,0.196-4.857,1.018-7.037,2.364c-1.427,0.881-2.908,1.926-4.607,2.174
+ c-1.796,0.263-3.578-0.518-5.192-1.212c-3.055-1.313-6.011-2.321-9.302-2.873c-3.308-0.554-6.702-0.93-10.059-0.945
+ C413.921,486.801,412.417,486.689,412.355,487.047z"/>
+ </g>
+ <g id="POLYLINE_1722_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M483.806,400.407c1.186,0.603,2.52,0.262,3.756,0.028c1.556-0.295,3.073-0.327,4.616,0.082c3.446,0.913,6.258,3.356,8.96,5.558
+ c5.32,4.335,11.206,7.536,17.64,9.923c0.627,0.233,3.419,1.518,3.91,0.779c0.566-0.852-2.378-3.17-2.952-3.679
+ c-2.487-2.203-5.199-4.156-8.08-5.809c-2.885-1.655-6.032-2.919-8.72-4.9c-2.576-1.898-4.63-4.391-7.438-5.991
+ c-2.743-1.562-6.029-2.316-9.181-2.186c-1.255,0.052-2.767,0.223-3.771,1.061c-1.145,0.955-0.869,2.452-0.2,3.611
+ C482.699,399.497,483.183,400.058,483.806,400.407z"/>
+ </g>
+ <g id="POLYLINE_1721_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M485.399,481.612c-1.073,1.226-2.818-0.417-3.669-1.147c-1.392-1.195-2.736-2.436-4.161-3.594
+ c-2.481-2.016-5.337-3.932-7.009-6.732c-1.688-2.826-1.977-6.37-1.856-9.59c0.061-1.623,0.181-3.239-0.091-4.851
+ c-0.271-1.605-0.889-3.12-1.335-4.679c-0.342-1.196-0.825-3.074,1.011-3.018c1.385,0.042,2.823,0.81,3.987,1.516
+ c2.59,1.572,4.917,4.042,4.57,7.282c-0.347,3.244-3.322,6.437-1.711,9.724c0.738,1.505,1.935,2.755,2.9,4.112
+ c1.005,1.413,1.826,3,3.03,4.262c1.112,1.166,2.328,1.567,3.837,1.04c1.054-0.368,2.495-1.327,3.656-0.838
+ c1.465,0.617,1.926,3.389,1.573,4.747c-0.505,1.941-2.191-0.158-3.316-0.016C486.028,479.928,485.784,481.065,485.399,481.612z"/>
+ </g>
+ <g id="POLYLINE_1720_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M513.983,483.524c0.931,2.038-7.295,3.747-8.494,4.004c-1.492,0.319-3.02,0.607-4.552,0.567c-1.628-0.042-3.224-0.463-4.768-0.952
+ c-1.739-0.551-3.597-1.182-5.13-2.192c-0.729-0.481-1.33-1.124-0.218-1.534c0.79-0.291,1.681-0.359,2.512-0.454
+ c1.844-0.21,3.698-0.324,5.535-0.6c1.828-0.275,3.637-0.696,5.478-0.882c1.586-0.16,3.172-0.09,4.742,0.178
+ C510.455,481.893,513.152,482.222,513.983,483.524z"/>
+ </g>
+ <g id="POLYLINE_1719_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M518.294,479.343c2.613,0.683,5.221,1.453,7.907,1.797c2.685,0.344,5.307,0.011,7.993-0.113c2.01-0.093,4.078,0.007,5.897,0.953
+ c2.554,1.327,4.392,3.894,7.161,4.832c2.1,0.712,4.321-0.074,6.222-1.002"/>
+ </g>
+ <g id="POLYLINE_1718_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M518.294,479.343c4.247-1.194,8.506-2.386,12.495-4.306c4.019-1.934,8.012-4.515,12.615-4.652
+ c2.918-0.087,5.362,1.175,7.252,3.372"/>
+ </g>
+ <g id="POLYLINE_1717_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M532.755,457.93c-0.193,4.302-6.607,2.459-9.114,1.774c-4.015-1.097-7.937-2.572-11.871-3.922
+ c-0.829-0.285-1.66-0.564-2.488-0.854c-0.666-0.233-2.078-0.491-2.513-1.094c0.744-0.332,2.092-0.011,2.891,0.037
+ c1.1,0.067,2.2,0.137,3.302,0.17c1.983,0.06,3.976,0.044,5.95-0.179c1.927-0.217,3.745-0.724,5.569-1.366
+ c1.747-0.615,4.08-1.737,5.779-0.453C531.896,453.281,532.795,455.942,532.755,457.93z"/>
+ </g>
+ <g id="POLYLINE_1716_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M489.277,442.306c-0.79,0.542-2.418-0.363-3.129-0.747c-1.084-0.585-2.109-1.379-2.628-2.528
+ c-0.899-1.987-0.081-4.283,0.808-6.118c1.309-2.703,3.096-5.144,4.584-7.746c0.683-1.193,1.293-2.422,1.817-3.693
+ c0.582-1.412,1.088-2.912,1.979-4.167c2.939-4.14,10.292-0.6,10.597,3.89c0.171,2.51-1.395,4.954-3.258,6.503
+ c-0.939,0.781-2.039,1.405-3.232,1.695c-1.548,0.376-3.135,0.139-4.705,0.128c-1.609-0.012-3.073,0.39-4.112,1.69
+ c-0.721,0.902-1.142,2.029-1.285,3.169c-0.3,2.384,0.738,4.305,1.938,6.273C488.898,441.061,489.503,441.793,489.277,442.306z"/>
+ </g>
+ <g id="POLYLINE_1715_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M503.52,340.061c-0.194-1.303-1.47-2.729-2.755-3.036c-1.511-0.361-2.436,1.248-2.972,2.401c-1.448,3.116-2.068,6.611-3.161,9.86
+ c-1.199,3.563-2.723,7-4.001,10.533c-1.157,3.198-1.92,6.488-1.536,9.907c0.326,2.904,1.37,5.709,2.755,8.267
+ c0.656,1.212,1.692,3.417,3.112,3.844c1.507,0.453,1.568-2.781,1.612-3.62c0.342-6.444-2.601-12.752-0.937-19.17
+ c0.78-3.01,2.444-5.721,3.075-8.777c0.318-1.539,0.4-3.154,1.05-4.607c0.715-1.598,2.178-2.515,3.18-3.896
+ C503.306,341.265,503.584,340.698,503.52,340.061z"/>
+ </g>
+ <g id="POLYLINE_1714_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M540.139,420.342c-0.804,0.455-2.848-1.524-3.439-2.007c-1.014-0.827-1.991-1.702-2.924-2.619c-1.934-1.9-3.572-4.018-4.996-6.323
+ c-1.591-2.574-3.082-5.069-5.413-7.058c-2.1-1.792-4.51-3.158-6.893-4.53c-1.451-0.835-2.916-1.652-4.341-2.532
+ c-1.131-0.699-2.478-1.438-3.311-2.501c-1.205-1.539,1.257-1.859,2.327-1.935c1.31-0.092,2.634,0.036,3.886,0.439
+ c2.694,0.866,4.779,2.888,6.679,4.9c2.158,2.285,4.216,4.661,6.208,7.091c2.052,2.503,4.015,5.069,5.954,7.66
+ c1.875,2.506,3.858,4.979,5.51,7.641C539.668,419.026,540.249,419.765,540.139,420.342z"/>
+ </g>
+ <g id="POLYLINE_1713_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M537.752,376.691c-0.186,0.68,1.176,1.901,1.538,2.374c0.654,0.856,1.264,1.762,1.683,2.759c0.824,1.963,0.368,3.867,0.339,5.91
+ c-0.037,2.58,3.083-0.267,3.737-1.125c1.634-2.145,1.213-4.911-0.583-6.804c-0.971-1.023-2.224-1.784-3.496-2.373
+ C540.254,377.101,538.544,376.187,537.752,376.691z"/>
+ </g>
+ <g id="POLYLINE_1712_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M571.389,318.805c0.602-0.285,0.115,2.478,0.023,2.895c-0.249,1.123-0.59,2.232-1.034,3.293c-0.43,1.029-0.96,2.062-1.729,2.883
+ c-0.946,1.01-2.192,1.517-3.464,1.981c-1.172,0.427-2.304,0.858-3.119,1.85c-0.839,1.02-1.34,2.273-2.068,3.369
+ c-1.36,2.045-3.324,3.438-5.501,4.507c-2.247,1.103-4.648,2.038-7.072,2.667c-0.213,0.055-1.447,0.446-1.463,0.087
+ c-0.015-0.328,1.171-0.907,1.418-1.061c1.311-0.815,2.649-1.588,3.971-2.386c1.995-1.204,4.072-2.451,5.716-4.126
+ c1.808-1.841,2.243-3.975,3.025-6.334c0.735-2.218,2.294-3.722,4.547-4.397c0.931-0.279,1.909-0.403,2.812-0.772
+ c1.301-0.531,2.103-1.57,2.825-2.735C570.624,319.962,570.916,319.277,571.389,318.805z"/>
+ </g>
+ <g id="POLYLINE_1711_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M589.397,327.773c-0.432,0.69-1.319,1.229-1.945,1.743c-0.693,0.569-1.389,1.132-2.067,1.719
+ c-1.252,1.085-2.448,2.233-3.474,3.537c-2.054,2.611-3.375,6.192-6.562,7.649c-1.524,0.697-3.19,1.026-4.782,1.523
+ c-1.503,0.469-2.836,1.131-4.128,2.034c-2.538,1.775-4.793,3.463-7.996,3.638c-3.033,0.165-6.588-0.325-9.376-1.59
+ c-0.774-0.351-1.225-0.829-0.139-1.017c0.689-0.119,1.404-0.123,2.101-0.138c1.828-0.038,3.658,0.025,5.487,0.034
+ c1.369,0.007,2.78-0.008,4.104-0.395c1.387-0.405,2.499-1.284,3.587-2.201c1.297-1.092,2.568-2.172,4.154-2.821
+ c1.513-0.618,3.143-0.912,4.637-1.58c2.804-1.254,4.251-4.346,6.488-6.33c2.305-2.045,5.023-3.734,7.781-5.094
+ C587.564,328.34,589.233,327.423,589.397,327.773z"/>
+ </g>
+ <g id="POLYLINE_1710_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M568.928,362.407c0.291-1.32-5.027-2.187-5.901-2.352c-1.898-0.358-3.879-0.508-5.685,0.317c-1.315,0.602-2.421,1.604-3.383,2.667
+ c-0.392,0.433-2.179,2.394-0.615,2.212c1.284-0.149,2.58-0.795,3.797-1.186c1.111-0.357,2.242-0.622,3.413-0.637
+ c1.332-0.017,2.65,0.253,3.983,0.22c0.775-0.019,1.548-0.123,2.303-0.297C567.459,363.208,568.587,363.026,568.928,362.407z"/>
+ </g>
+ <g id="POLYLINE_1709_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M233.58,362.554c-4.968-0.095-9.935,0.023-14.904-0.063c-2.027-0.035-11.771,0.267-8.775,4.284c1.639,2.197,4.24,2.027,6.604,1.26
+ c1.888-0.612,3.677-1.277,5.664-1.481c2.437-0.251,4.899-0.099,7.342-0.232c2.403-0.131,4.796-0.469,7.158-0.921
+ c1.036-0.198,2.069-0.422,3.085-0.705c0.475-0.133,2.787-0.708,2.065-1.324c-0.616-0.524-2.108-0.46-2.884-0.533
+ c-1.201-0.113-2.406-0.174-3.611-0.225C234.744,362.589,234.162,362.572,233.58,362.554z"/>
+ </g>
+ <g id="POLYLINE_1708_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M227.251,417.561c0.133-2.439-2.454-5.306-4.677-6c-2.417-0.754-3.94,1.868-4.637,3.779c-0.869,2.38-0.59,4.92-1.206,7.348
+ c-0.118,0.464-0.565,1.336-0.398,1.813c0.197,0.564,0.834,0.203,1.22,0.01c1.245-0.62,2.38-1.512,3.534-2.277
+ c1.199-0.795,2.453-1.465,3.712-2.158C225.816,419.516,227.108,418.846,227.251,417.561z"/>
+ </g>
+ <g id="POLYLINE_1707_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M200.537,535.86c-1.377-0.422-2.679-1.094-4.075-1.452c-0.539-0.138-1.178-0.263-1.033,0.486c0.116,0.596,0.717,1.237,1.112,1.671
+ c1.068,1.173,2.359,1.793,3.892,2.11c1.288,0.266,2.532,0.451,3.478,1.45c0.973,1.027,1.522,2.495,2.689,3.337
+ c1.114,0.804,2.347,0.255,3.367-0.452c0.738-0.512,1.414-1.141,1.974-1.843c0.261-0.326,0.946-1.122,0.783-1.613
+ c-0.283-0.853-2.892-0.11-3.602-0.096c-1.6,0.032-2.691-0.754-3.892-1.73c-0.676-0.55-1.328-0.992-2.173-1.242
+ C202.869,536.432,200.537,536.002,200.537,535.86z"/>
+ </g>
+ <g id="POLYLINE_1706_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M171.418,533.854c-1.95,0.325-3.787,0.522-5.62,1.298c-0.916,0.388-2.001,0.939-2.998,0.524c-1.01-0.421-1.599-1.501-2.641-1.883
+ c-0.784-0.287-1.72-0.064-2.365,0.449c-0.971,0.771-0.261,1.606,0.548,2.146c1.689,1.128,3.673,1.475,5.642,1.075
+ c2.425-0.492,4.795-1.404,7.194-2.026"/>
+ </g>
+ <g id="POLYLINE_1705_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M326.346,457.742c-1.56,3.835-6.81,5.182-10.544,4.468c-3.527-0.674-7.111-2.758-9.836-5.048c-1.605-1.349-3.086-3.211-1.61-5.185
+ c1.236-1.652,3.359-2.654,5.214-3.424c3.629-1.507,8.664-3.132,12.323-0.924c2.846,1.718,5.219,5.569,4.745,8.976
+ C326.584,456.994,326.488,457.376,326.346,457.742z"/>
+ </g>
+ <g id="POLYLINE_1704_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M370.921,479.4c-1.359-1.007-1.21-3.868-3.284-3.87c-1.825-0.001-3.645,1.331-5.323,1.928c-1.261,0.449-3.828,1.397-5.058,0.397
+ c-1.301-1.058,0.392-3.631,1.069-4.578c1.039-1.456,2.392-2.437,3.937-3.296c1.683-0.936,3.155-2.131,4.792-3.131
+ c1.905-1.164,3.908-1.207,5.857-0.035c1.679,1.009,3.024,2.647,3.592,4.53c0.516,1.712,0.344,3.571-0.552,5.127
+ c-0.784,1.362-2.397,3.036-4.09,3.139C371.53,479.632,371.206,479.579,370.921,479.4z"/>
+ </g>
+ <g id="POLYLINE_1703_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M209.013,212.613c-1.499-1.045-4.005,0.007-5.533,0.511c-2.125,0.7-4.218,1.45-6.4,1.955c-2.104,0.487-4.396,0.797-6.347,1.781
+ c-1.828,0.922-2.683,2.521-2.715,4.527c-0.062,3.854,2.205,8.295,6.145,9.303c4.158,1.064,8.897-0.879,11.541-4.121
+ c1.598-1.959,2.693-4.355,3.436-6.759c0.563-1.818,1.151-4.065,0.619-5.961C209.623,213.362,209.4,212.946,209.013,212.613z"/>
+ </g>
+ <g id="POLYLINE_1702_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M175.58,497.985c-0.082,2.605-4.389,2.179-6.186,2.23c-1.576,0.045-3.153,0.117-4.73,0.128c-1.057,0.007-2.426,0.067-3.343-0.534
+ c-0.938-0.616-0.743-1.786-0.302-2.66c0.734-1.453,1.59-0.734,2.495,0.104c1.964,1.817,3.991,0.878,6.077-0.28
+ c1.201-0.666,2.853-1.901,4.303-1.667C175.074,495.497,175.566,496.933,175.58,497.985z"/>
+ </g>
+ <g id="POLYLINE_1701_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M343.331,467.975c2.152-1.16,4.789-2.952,4.799-5.683c0.007-1.71-1-3.675-2.42-4.634c-3.411-2.302-6.849,3.471-8.064,5.842
+ c-1.704,3.324-3.036,7.462-0.1,10.516c1.335,1.388,3.108,2.427,4.898,3.108c1.13,0.43,3.783,1.316,4.445-0.272
+ c0.424-1.016-0.195-2.482-0.885-3.224c-0.77-0.829-1.895-0.849-2.916-1.154c-0.896-0.267-1.848-0.843-2.267-1.719
+ c-0.445-0.931,0.285-1.531,1.035-1.985C342.334,468.48,342.839,468.236,343.331,467.975z"/>
+ </g>
+ <g id="POLYLINE_1700_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M414.953,535.727c-1.254-1.844-3.892-1.44-5.805-1.816c-1.731-0.34-3.541-1.465-5.219-0.351c-0.575,0.382-1.752,1.395-1.517,2.211
+ c0.248,0.859,1.923,0.866,2.614,0.942c2.38,0.262,4.586,0.681,6.885,1.358c0.843,0.248,2.491,0.992,3.297,0.4
+ C415.995,537.891,415.339,536.362,414.953,535.727z"/>
+ </g>
+ <g id="POLYLINE_1699_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M429.757,536.479c-1.511-0.715-2.82-1.754-4.094-2.823c-1.378-1.157-3.092-2.346-3.841-4.045c-0.473-1.074-0.32-4.314,1.503-4.279
+ c1.463,0.028,2.747,2.801,3.452,3.783c1.187,1.655,2.623,3.129,3.694,4.866"/>
+ </g>
+ <g id="POLYLINE_1698_">
+ <path fill="none" stroke="#FB8604" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M539.095,358.245c-0.444,1.118-2.145,1.266-3.105,1.7c-1.046,0.473-1.874,1.253-2.654,2.077c-0.747,0.789-1.6,2.027-2.73,2.289
+ c-1.039,0.241-1.965-0.619-2.559-1.366c-1.398-1.757-1.504-3.669,0.407-5.048c1.79-1.291,4.1-2.521,6.257-3.049
+ c1.115-0.273,2.355-0.299,3.271,0.493C538.723,355.983,539.378,357.247,539.095,358.245z"/>
+ </g>
+</g>
+<g id="AG-PEOPLE">
+</g>
+<g id="AG-DETAIL">
+</g>
+<g id="AG-ANIMALS">
+ <g id="POLYLINE_1694_">
+
+ <path fill="none" stroke="#FB8604" stroke-width="2.75" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M181.297,516.287c-3.056,2.713-5.714,5.959-7.478,9.662c-1.972,4.138-2.697,8.726-3.021,13.26
+ c-0.331,4.619-0.205,9.364-1.385,13.878c-1.113,4.259-4.075,7.477-5.844,11.428c-1.462,3.265-2.853,8.693-0.357,11.823
+ c1.383,1.735,3.917,1.897,5.95,2.192c1.93,0.281,3.851,0.605,5.613,1.481c2.085,1.036,4.042,2.798,4.564,5.154
+ c0.421,1.896-0.188,3.964-1.302,5.518c-2.79,3.889-8.467,2.91-12.585,2.777c-4.131-0.134-8.875,1.032-12.828-0.581
+ c-4.448-1.815-6.761-7.432-7.942-11.734c-1.367-4.979-1.473-10.224-1.068-15.342c0.36-4.554,1.036-9.09,1.883-13.578
+ c1.205-6.388,2.411-12.776,3.616-19.164c0.854-4.526,1.639-9.066,2.418-13.606c0.877-5.116,1.719-10.243,2.31-15.401
+ c0.608-5.313,0.767-10.624,0.987-15.963c0.183-4.435,0.634-9.362,3.345-13.06c2.745-3.745,7.287-5.855,11.446-7.614
+ c4.327-1.83,8.915-3.341,12.867-5.94c1.914-1.259,3.638-2.809,4.887-4.745c1.138-1.763,1.889-3.754,2.526-5.743
+ c0.749-2.341,1.352-4.724,1.966-7.103"/>
+ </g>
+ <g id="POLYLINE_1275_">
+
+ <path fill="none" stroke="#FB8604" stroke-width="2.75" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M539.821,325.486c-4.513,0.219-9.188-0.104-13.283-2.183c-3.472-1.763-6.18-4.724-8.328-7.919
+ c-2.36-3.51-4.171-7.418-5.421-11.455c-1.326-4.28-1.751-8.603-1.811-13.062c-0.06-4.405-0.698-9.018,0.092-13.393
+ c0.417-2.305,1.585-4.142,4.137-3.136c2.119,0.835,3.983,2.474,5.59,4.05c3.175,3.114,5.331,6.955,7.939,10.513
+ c1.22,1.665,2.598,3.266,4.359,4.378c1.864,1.178,4.05,1.65,6.231,1.743c4.021,0.172,7.811-1.026,11.617-2.158
+ c3.765-1.12,7.505-1.753,11.443-1.539c4.294,0.234,8.551,1.287,12.497,2.988c3.365,1.451,6.522,3.395,9.272,5.822
+ c3.402,3.005,6.106,6.722,9.647,9.579c3.275,2.642,7.001,4.206,10.726,6.07c1.828,0.915,3.518,2.042,4.803,3.659
+ c1.156,1.455,1.977,3.154,2.559,4.912c1.109,3.347,1.361,6.948,1.003,10.443c-0.367,3.578-1.369,7.097-2.926,10.338
+ c-1.502,3.126-3.54,6.036-6.142,8.344c-2.721,2.414-5.947,3.856-9.483,4.637c-4.232,0.935-8.605,1.097-12.807,2.182
+ c-3.637,0.939-6.847,2.781-9.727,5.167c-3.45,2.858-6.417,6.276-9.34,9.655c-2.907,3.361-5.684,6.844-8.264,10.462
+ c-2.562,3.593-4.926,7.336-6.973,11.248c-1.969,3.762-3.637,7.688-4.873,11.753c-1.256,4.129-2.031,8.391-2.281,12.7
+ c-0.26,4.494,0.005,9.012,0.606,13.469c0.581,4.308,1.475,8.578,2.573,12.782c1.22,4.675,2.62,9.298,3.98,13.934
+ c1.269,4.321,2.578,8.629,3.666,13c1.119,4.497,1.907,9.076,3.145,13.544c1.079,3.895,2.588,7.583,4.713,11.028
+ c2.197,3.562,4.861,6.81,7.627,9.941c3.145,3.561,6.436,6.99,9.547,10.581c2.855,3.296,5.49,6.787,7.977,10.367
+ c2.423,3.488,4.718,7.073,6.891,10.721c2.546,4.275,4.981,8.628,7.701,12.796c2.387,3.657,5.022,7.163,7.963,10.394
+ c2.726,2.996,5.86,6.066,9.689,7.586c3.916,1.553,8.155,1.054,12.263,1.286c4.139,0.233,8.59,1.27,11.66,4.236
+ c2.672,2.582,4.029,6.654,3.646,10.334c-0.211,2.034-1.086,3.867-2.919,4.915c-1.795,1.026-3.976,1.269-6.006,1.367
+ c-4.467,0.216-8.946-0.289-13.416-0.276c-4.467,0.013-8.98,0.341-13.431-0.173c-4.054-0.468-7.697-1.825-10.92-4.345
+ c-3.574-2.794-6.518-6.302-9.755-9.458c-3.288-3.205-6.779-6.193-10.081-9.384c-3.229-3.121-6.03-6.656-9.306-9.725
+ c-3.237-3.033-7.055-5.335-10.764-7.729c-3.61-2.331-6.996-4.905-10.177-7.798c-3.504-3.187-6.775-6.617-10.06-10.026
+ c-3.053-3.168-6.025-6.424-8.933-9.726c-3.161-3.589-6.234-7.257-9.431-10.814c-2.865-3.187-5.897-6.243-9.247-8.924
+ c-3.537-2.83-7.332-5.293-11.199-7.645c-3.729-2.268-7.529-4.46-11.467-6.348c-3.791-1.817-7.744-3.39-11.859-4.29
+ c-4.461-0.976-8.855-1.996-13.401-2.517c-4.417-0.507-8.849-0.821-13.283-1.127c-5.051-0.349-10.102-0.679-15.156-0.988
+ c-4.341-0.265-8.685-0.489-13.035-0.512c-4.505-0.024-8.999,0.211-13.458,0.876c-4.386,0.655-8.85,1.484-13.096,2.766
+ c-2.07,0.625-4.111,1.214-6.274,1.405c-2.298,0.203-4.61,0.052-6.885-0.311c-4.572-0.729-8.965-2.255-13.449-3.36
+ c-4.244-1.046-8.585-1.723-12.925-2.223c-4.628-0.533-9.268-0.955-13.894-1.501c-3.825-0.452-7.645-0.933-11.454-1.508
+ c-6.238-0.942-12.476-1.885-18.715-2.827c-4.121-0.623-8.239-1.238-12.368-1.798c-4.25-0.577-8.527-1.094-12.821-1.146
+ c-4.093-0.05-8.233,0.332-12.169,1.502c-3.437,1.021-6.617,2.68-9.197,5.193c-3.004,2.926-5.198,6.584-7.514,10.045
+ c-2.393,3.576-5.162,6.891-7.457,10.533c-2.385,3.785-3.99,8.255-7.736,10.97c-3.299,2.391-7.598,3.536-10.262,6.758
+ c-1.523,1.842-2.428,4.134-3.469,6.259c-0.909,1.856-2.071,3.508-3.267,5.187c-1.137,1.597-2.264,3.241-2.791,5.154
+ c-0.394,1.429-0.477,2.929-0.385,4.403c0.27,4.307,1.86,8.497,3.666,12.372c1.976,4.241,4.218,8.342,6.112,12.623
+ c1.715,3.877,3.519,7.901,6.877,10.654c1.469,1.204,3.134,1.974,5.02,2.224c1.968,0.262,3.963,0.092,5.941,0.162
+ c4.225,0.15,8.062,2.013,10.476,5.57c1.149,1.693,1.911,3.81,1.423,5.863c-0.423,1.778-1.691,3.324-3.189,4.324
+ c-3.442,2.298-8.467,1.637-12.387,1.651c-4.795,0.018-9.599,0.104-14.393-0.032c-3.958-0.112-8-0.515-11.349-2.817
+ c-3.576-2.458-6.019-6.287-8.109-10.006c-2.4-4.27-4.628-8.636-6.976-12.935c-2.106-3.857-4.269-7.691-6.449-11.506
+ c-2.257-3.95-4.601-7.845-7.107-11.643c-2.593-3.929-5.336-7.832-7.145-12.204c-1.534-3.707-2.188-7.664-1.981-11.669
+ c0.217-4.204,1.385-8.248,3.159-12.051c1.939-4.158,4.476-8.003,6.83-11.929c2.138-3.566,4.277-7.3,5.392-11.333
+ c1.124-4.065,1.038-8.377,0.702-12.546c-0.361-4.484-1.041-8.944-1.827-13.372c-0.788-4.444-1.65-8.88-2.608-13.291
+ c-1.029-4.735-2.015-9.489-3.178-14.194c-1.094-4.428-2.662-8.718-4.014-13.07c-1.306-4.203-2.36-8.452-2.618-12.86
+ c-0.251-4.297,0.101-8.598,0.483-12.876c0.427-4.777,0.836-9.531,1.043-14.324c0.198-4.579,0.345-9.225,1.597-13.665
+ c0.596-2.113,1.462-4.116,2.614-5.985c1.038-1.685,2.286-3.304,3.001-5.165c0.55-1.432,0.507-2.711,0.069-4.156
+ c-0.576-1.899-1.144-3.8-1.739-5.693c-1.601-5.098-3.235-10.188-4.804-15.296c-1.314-4.279-2.535-8.591-3.613-12.936
+ c-1.089-4.39-2.043-8.81-2.751-13.279c-0.721-4.551-1.208-9.14-1.47-13.741c-0.262-4.609-0.307-9.236-0.113-13.849
+ c0.201-4.782,0.624-9.548,1.271-14.291c0.63-4.617,1.489-9.198,2.474-13.751c0.981-4.532,2.157-9.022,3.419-13.483
+ c1.353-4.784,2.877-9.519,4.355-14.266c1.277-4.102,2.473-8.232,3.377-12.434c0.937-4.354,1.542-8.779,1.649-13.235
+ c0.102-4.282-0.231-8.59-1.133-12.781c-0.86-3.992-2.266-7.81-4.237-11.387c-2.016-3.657-4.402-7.169-5.694-11.174
+ c-0.683-2.117-1.057-4.441-0.4-6.614c0.639-2.115,2.225-4.021,4.201-5.015c4.088-2.057,8.826,1.106,11.888,3.706
+ c3.065,2.602,5.463,5.881,7.372,9.402c2.142,3.951,3.761,8.198,4.992,12.515c1.197,4.197,2.007,8.501,2.501,12.836
+ c0.506,4.446,0.68,8.929,0.576,13.401c-0.103,4.435-0.458,8.866-1.043,13.264c-0.613,4.614-1.404,9.202-2.371,13.754
+ c-0.958,4.513-2.049,8.993-3.153,13.473c-1.124,4.559-2.303,9.107-3.203,13.717c-0.833,4.268-1.478,8.576-1.695,12.923
+ c-0.225,4.486,0.012,8.993,0.633,13.441c0.629,4.507,1.64,8.96,2.989,13.305c1.396,4.495,3.148,8.877,5.229,13.099
+ c1.925,3.903,4.124,7.667,6.541,11.285c2.372,3.55,4.917,7.027,7.754,10.221c2.579,2.904,5.491,5.63,8.958,7.441
+ c3.667,1.915,7.79,2.444,11.877,2.538c4.61,0.106,9.223-0.273,13.831-0.001c4.216,0.249,8.414,0.908,12.545,1.77
+ c4.916,1.026,9.821,2.146,14.772,2.991c4.318,0.737,8.672,1.286,13.03,1.731c5.571,0.569,11.148,1.089,16.722,1.634
+ c4.082,0.399,8.149,0.884,12.207,1.481c4.114,0.604,8.198,1.371,12.289,2.114c5.234,0.951,10.464,1.93,15.703,2.853
+ c4.312,0.759,8.639,1.451,12.977,2.046c3.724,0.511,7.452,0.989,11.185,1.426c6.294,0.736,12.588,1.471,18.883,2.207
+ c3.891,0.455,7.792,0.86,11.676,1.37c4.439,0.583,8.884,1.157,13.303,1.884c4.973,0.818,9.941,1.699,14.93,2.415
+ c4.214,0.605,8.472,1.024,12.734,0.995c4.201-0.029,8.4-0.483,12.502-1.398c4.124-0.92,8.154-2.3,11.949-4.16
+ c3.773-1.848,7.34-4.186,10.365-7.113c2.989-2.893,5.235-6.345,6.988-10.103c2.053-4.403,3.547-9.066,5.2-13.626
+ c1.42-3.917,3.253-7.552,5.306-11.169c2.15-3.787,4.155-7.619,5.118-11.901c0.751-3.338,0.85-6.756,0.834-10.164"/>
+ </g>
+ <g id="POLYLINE_1274_">
+
+ <path fill="none" stroke="#FB8604" stroke-width="2.75" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M466.679,485.156c-3.862,2.184-7.322,4.984-10.449,8.12c-3.562,3.573-6.8,7.488-10.138,11.267
+ c-2.889,3.271-5.754,6.577-8.137,10.243c-2.392,3.679-4.061,7.699-5.378,11.872c-1.388,4.398-2.304,8.97-3.993,13.268
+ c-0.769,1.957-1.745,3.846-3.066,5.491c-1.518,1.89-3.495,3.32-5.324,4.886c-1.741,1.491-3.297,3.184-3.861,5.457
+ c-0.455,1.836-0.392,3.768-0.293,5.641c0.13,2.474,0.246,4.922,0.26,7.399c0.011,1.891,0.017,4.217,1.965,5.168
+ c1.905,0.931,4.226,0.816,6.253,1.355c1.953,0.519,3.679,1.602,5.019,3.115c2.903,3.276,3.639,8.046,0.469,11.397
+ c-3.406,3.6-8.088,3.721-12.688,3.692c-3.283-0.021-6.566-0.041-9.848-0.062c-1.984-0.012-3.998,0.024-5.956-0.336
+ c-4.6-0.845-6.764-4.953-7.649-9.185c-0.401-1.92-0.531-3.883-0.574-5.841c-0.068-3.075-0.137-6.151-0.205-9.226
+ c-0.093-4.204-0.043-8.365,0.598-12.531c0.711-4.622,1.935-9.14,3.021-13.682c1.138-4.759,2.059-9.554,2.777-14.395
+ c0.689-4.65,1.082-9.336,1.726-13.991c0.605-4.37,1.5-8.646,2.913-12.83c1.402-4.153,2.743-8.288,2.362-12.732
+ c-0.172-2.006-0.644-3.982-1.287-5.886"/>
+ </g>
+</g>
+<g id="AG-OUTLINE">
+ <g id="POLYLINE_1272_">
+
+ <path fill="none" stroke="#FB8604" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
+ M197.633,149.947c-1.994-1.252-3.845-2.688-6.113-3.428c-2.911-0.951-5.739-0.186-7.772,2.097
+ c-3.548,3.985-1.906,9.311,0.193,13.569c2.176,4.415,5.041,8.415,6.731,13.07c1.617,4.454,2.436,9.171,2.687,13.893
+ c0.266,4.99-0.135,9.996-1.016,14.91c-0.861,4.802-2.147,9.53-3.596,14.185c-1.717,5.517-3.474,11.022-5.042,16.584
+ c-1.415,5.016-2.66,10.086-3.694,15.194c-1.042,5.142-1.893,10.329-2.434,15.55c-0.556,5.36-0.834,10.74-0.808,16.129
+ c0.025,5.338,0.352,10.672,0.987,15.972c0.609,5.084,1.521,10.125,2.671,15.113c1.196,5.188,2.641,10.312,4.168,15.411
+ c1.654,5.526,3.448,11.013,5.176,16.517c0.638,2.032,1.386,4.073,1.861,6.147c0.387,1.692-0.264,3.344-1.077,4.805
+ c-1.237,2.222-2.801,4.224-3.81,6.574c-0.994,2.316-1.579,4.784-1.946,7.271c-0.769,5.204-0.658,10.494-1.041,15.732
+ c-0.386,5.284-1.089,10.548-1.249,15.848c-0.137,4.533,0.256,8.987,1.376,13.387c0.627,2.463,1.406,4.881,2.191,7.297
+ c0.297,0.913,0.593,1.826,0.89,2.738c0.085,0.262,0.251,0.584,0.279,0.858c0.03,0.294-0.02,0.16-0.053,0.369
+ c-0.05,0.319-0.197,0.207,0.07,0.53c0.178,0.215,0.272,0.187,0.409,0.443c0.291,0.549,0.403,1.303,0.58,1.908
+ c0.661,2.263,1.205,4.544,1.721,6.844c0.415,1.847,0.83,3.694,1.245,5.541c0.199,0.886,0.674,2.028,0.632,2.939
+ c-0.034,0.746-0.411,1.598-0.599,2.322c-0.137,0.528-0.279,1.055-0.424,1.582c-0.342,1.241-0.702,2.478-1.111,3.699
+ c-0.686,2.046-1.511,4.079-2.788,5.834c-2.654,3.649-6.917,5.722-10.968,7.427c-4.548,1.915-9.355,3.525-13.49,6.279
+ c-2.121,1.413-4.023,3.176-5.239,5.442c-1.05,1.959-1.604,4.145-1.937,6.33c-0.796,5.232-0.553,10.585-0.945,15.854
+ c-0.372,5.014-1.036,10.017-1.858,14.976c-0.958,5.777-1.97,11.543-2.994,17.309c-0.984,5.541-2.083,11.064-3.127,16.594
+ c-0.87,4.609-1.749,9.212-2.318,13.871c-0.64,5.229-0.974,10.565-0.186,15.798c0.716,4.758,2.385,10.081,5.842,13.598
+ c3.491,3.551,8.453,2.758,12.972,2.609c2.447-0.08,4.883,0.133,7.329,0.153c2.071,0.017,4.312-0.094,6.138-1.18
+ c1.826-1.086,3.007-3.158,3.273-5.242c0.274-2.149-0.673-4.129-2.248-5.566c-1.589-1.448-3.596-2.283-5.679-2.714
+ c-2.229-0.462-4.743-0.408-6.821-1.428c-3.972-1.95-2.863-8.106-1.717-11.424c1.456-4.217,4.703-7.506,6.095-11.743
+ c1.464-4.457,1.397-9.28,1.669-13.91c0.292-4.973,0.959-10.042,3.152-14.573c1.769-3.656,4.398-6.864,7.426-9.552
+ c-0.645,3.153-0.806,6.415-0.382,9.608c0.473,3.558,1.767,6.899,3.465,10.044c1.964,3.639,4.397,6.995,6.623,10.472
+ c2.126,3.32,4.155,6.703,6.096,10.135c2.108,3.725,4.224,7.449,6.279,11.203c2.139,3.908,4.195,7.862,6.331,11.773
+ c1.762,3.226,3.673,6.471,6.276,9.1c2.694,2.721,5.913,4.161,9.665,4.642c3.591,0.46,7.279,0.363,10.892,0.349
+ c4.562-0.017,9.137,0.077,13.697-0.062c3.602-0.109,7.323-1.149,9.071-4.609c1.782-3.527-0.503-7.404-3.198-9.721
+ c-2.936-2.525-6.31-3.079-10.059-3.064c-1.727,0.007-3.489,0.06-5.181-0.341c-1.657-0.393-3.113-1.284-4.374-2.411
+ c-2.808-2.512-4.506-5.923-6.007-9.316c-1.767-3.995-3.737-7.86-5.674-11.774c-1.738-3.512-3.288-7.174-4.087-11.025
+ c-0.61-2.943-0.792-6.135,0.444-8.948c0.812-1.848,2.085-3.466,3.249-5.099c0.958-1.345,1.779-2.745,2.498-4.231
+ c0.923-1.907,1.761-3.922,3.069-5.608c1.105-1.425,2.574-2.47,4.119-3.371c3.582-2.091,7.201-3.566,9.671-7.079
+ c2.2-3.129,3.736-6.669,5.93-9.814c2.311-3.313,4.775-6.503,7.018-9.865c1.977-2.963,3.922-5.997,6.494-8.49
+ c2.296-2.226,5.073-3.786,8.092-4.811c3.406-1.156,7.018-1.674,10.604-1.807c3.888-0.145,7.774,0.181,11.634,0.629
+ c3.324,0.385,6.642,0.845,9.951,1.345c5.399,0.816,10.798,1.631,16.197,2.447c3.716,0.561,7.428,1.159,11.15,1.683
+ c3.879,0.546,7.772,1.037,11.669,1.443c4.452,0.464,8.913,0.876,13.351,1.462c3.943,0.521,7.866,1.198,11.72,2.186
+ c4.035,1.034,8.007,2.355,12.12,3.063c3.935,0.677,7.903,0.655,11.756-0.458c3.911-1.13,7.807-2.055,11.813-2.8
+ c0.476-0.089,1.122-0.306,1.61-0.282c0.397,0.02,0.218-0.095,0.415,0.273c0.107,0.199,0.152,0.476,0.216,0.692
+ c0.265,0.887,0.489,1.786,0.661,2.696c0.315,1.663,0.44,3.357,0.346,5.048c-0.2,3.584-1.422,6.946-2.558,10.315
+ c-1.251,3.708-2.059,7.53-2.623,11.398c-0.609,4.174-0.988,8.382-1.527,12.566c-0.521,4.049-1.209,8.081-2.042,12.077
+ c-0.857,4.112-1.946,8.171-2.891,12.262c-0.845,3.658-1.515,7.372-1.746,11.123c-0.272,4.423-0.016,8.883,0.079,13.307
+ c0.077,3.586,0.003,7.232,0.994,10.713c1.049,3.685,3.165,6.969,7.149,7.749c1.701,0.333,3.454,0.348,5.181,0.359
+ c2.717,0.017,5.435,0.034,8.152,0.051c3.69,0.023,7.753,0.451,11.253-0.954c3.88-1.559,6.95-5.144,5.999-9.489
+ c-0.765-3.495-3.519-6.539-6.936-7.604c-1.596-0.497-3.27-0.611-4.902-0.937c-2.057-0.411-3.366-1.305-3.678-3.439
+ c-0.274-1.877-0.089-3.808-0.163-5.698c-0.079-2.007-0.286-4.01-0.291-6.02c-0.004-1.525,0.107-3.089,0.64-4.531
+ c0.705-1.907,2.196-3.363,3.717-4.65c1.811-1.534,3.746-2.962,5.235-4.831c1.086-1.364,1.938-2.898,2.632-4.494
+ c1.576-3.625,2.426-7.543,3.517-11.328c1.062-3.684,2.248-7.354,3.965-10.791c1.758-3.518,4.08-6.711,6.569-9.742
+ c2.856-3.476,5.913-6.793,8.889-10.165c2.437-2.761,4.878-5.514,7.632-7.968c1.416-1.262,2.899-2.448,4.453-3.534
+ c0.767-0.536,1.552-1.048,2.352-1.533c0.303-0.184,0.774-0.584,1.122-0.642c0.404-0.068,1.085,0.2,1.503,0.281
+ c3.711,0.727,7.491,1.514,11.077,2.73c3.761,1.275,7.381,2.953,10.879,4.826c3.539,1.895,7.009,3.937,10.405,6.077
+ c3.333,2.101,6.591,4.328,9.619,6.853c2.982,2.486,5.709,5.262,8.306,8.143c3.045,3.379,5.987,6.853,8.968,10.289
+ c2.596,2.993,5.298,5.894,8.006,8.784c2.711,2.893,5.468,5.76,8.311,8.524c2.879,2.8,5.848,5.509,9.083,7.896
+ c3.277,2.418,6.821,4.441,10.163,6.765c2.993,2.081,5.617,4.481,8.081,7.162c2.794,3.04,5.591,6.009,8.625,8.813
+ c2.975,2.75,6.021,5.427,8.868,8.312c2.901,2.939,5.661,6.104,8.992,8.576c2.869,2.13,6.115,3.341,9.645,3.832
+ c4.196,0.584,8.486,0.339,12.705,0.277c3.865-0.057,7.711,0.199,11.573,0.289c3.475,0.081,8.475,0.268,10.897-2.731
+ c2.059-2.55,1.557-6.612,0.507-9.466c-1.293-3.514-4.021-5.989-7.49-7.306c-3.722-1.413-7.636-1.408-11.555-1.465
+ c-3.584-0.052-7.013-0.512-10.123-2.418c-3.219-1.973-5.914-4.762-8.371-7.598c-2.57-2.967-4.909-6.131-7.04-9.426
+ c-2.478-3.832-4.732-7.807-7.057-11.732c-1.887-3.188-3.86-6.326-5.922-9.403c-2.172-3.241-4.459-6.41-6.903-9.453
+ c-2.576-3.208-5.352-6.235-8.121-9.275c-2.758-3.028-5.541-6.03-8.06-9.264c-2.405-3.088-4.572-6.401-6.138-9.999
+ c-1.382-3.176-2.3-6.547-3.047-9.922c-0.942-4.257-1.842-8.521-2.975-12.732c-1.155-4.294-2.461-8.549-3.71-12.816
+ c-1.148-3.921-2.321-7.829-3.33-11.787c-0.983-3.854-1.783-7.759-2.336-11.698c-0.564-4.016-0.842-8.081-0.727-12.136
+ c0.11-3.881,0.626-7.741,1.561-11.51c0.907-3.658,2.185-7.216,3.732-10.651c1.614-3.585,3.524-7.034,5.631-10.351
+ c2.177-3.427,4.556-6.716,7.065-9.907c2.494-3.173,5.134-6.228,7.841-9.22c2.515-2.779,5.191-5.481,8.29-7.614
+ c2.812-1.935,5.893-3.157,9.235-3.822c3.789-0.754,7.669-0.983,11.434-1.872c3.259-0.769,6.242-2.131,8.79-4.323
+ c2.531-2.178,4.543-4.929,6.057-7.894c1.654-3.24,2.74-6.782,3.184-10.393c0.445-3.623,0.245-7.37-0.872-10.859
+ c-1.11-3.468-3.146-6.38-6.355-8.194c-3.263-1.844-6.774-3.073-9.885-5.214c-3.127-2.153-5.621-4.935-8.21-7.683
+ c-2.512-2.666-5.179-5.064-8.333-6.952c-3.095-1.853-6.479-3.236-9.974-4.121c-3.498-0.886-7.138-1.283-10.743-1.027
+ c-3.9,0.277-7.511,1.589-11.252,2.615c-3.066,0.841-6.262,1.346-9.439,0.919c-4.185-0.563-7.013-3.151-9.372-6.466
+ c-2.29-3.218-4.283-6.634-7.048-9.486c-1.787-1.843-7.567-7.551-9.639-3.529c-0.82,1.591-0.877,3.604-0.935,5.359
+ c-0.063,1.919,0.003,3.837,0.067,5.755c0.133,4.027,0.349,8.085,0.145,12.112c-0.186,3.69-0.894,7.283-2.285,10.715
+ c-1.481,3.652-3.623,6.962-5.478,10.424c-1.849,3.452-3.166,7.099-4.497,10.771c-1.396,3.849-2.697,7.746-4.492,11.433
+ c-1.624,3.337-3.684,6.415-6.324,9.035c-2.652,2.631-5.741,4.79-9.023,6.56c-3.356,1.811-6.935,3.217-10.604,4.251
+ c-3.675,1.035-7.458,1.69-11.265,1.976c-3.64,0.274-7.298,0.207-10.932-0.118c-3.595-0.321-7.165-0.852-10.726-1.437
+ c-4.581-0.754-9.157-1.546-13.749-2.225c-3.514-0.52-7.036-1.026-10.563-1.438c-4.548-0.532-9.097-1.063-13.645-1.595
+ c-5.485-0.641-10.971-1.282-16.456-1.923c-3.422-0.4-6.836-0.86-10.252-1.308c-3.891-0.51-7.767-1.136-11.635-1.794
+ c-3.934-0.669-7.855-1.405-11.781-2.118c-4.339-0.788-8.673-1.622-13.021-2.366c-4.009-0.686-8.04-1.277-12.08-1.745
+ c-4.372-0.506-8.757-0.892-13.137-1.32c-3.997-0.391-8.001-0.739-11.989-1.212c-4.207-0.499-8.404-1.074-12.567-1.867
+ c-4.202-0.801-8.372-1.765-12.566-2.606c-3.935-0.789-7.917-1.418-11.925-1.664c-4.166-0.255-8.337,0.019-12.506,0.008
+ c-3.757-0.01-7.603-0.242-11.155-1.57c-3.171-1.186-5.941-3.228-8.381-5.541c-2.73-2.588-5.091-5.549-7.328-8.565
+ c-2.272-3.064-4.397-6.238-6.333-9.525c-2.077-3.525-3.935-7.179-5.536-10.944c-1.63-3.834-2.992-7.783-4.067-11.809
+ c-1.06-3.974-1.841-8.025-2.293-12.113c-0.441-3.988-0.562-8.01-0.32-12.016c0.226-3.74,0.751-7.459,1.453-11.138
+ c0.743-3.891,1.67-7.734,2.618-11.579c1.035-4.196,2.096-8.388,3.053-12.603c0.937-4.131,1.784-8.285,2.468-12.466
+ c0.664-4.056,1.194-8.135,1.51-12.234c0.153-1.979,0.26-3.961,0.311-5.945c0.054-2.062-0.058-4.138,0.092-6.193
+ c0.152-2.079-0.008-4.178-0.413-6.221c-0.37-1.863-0.525-3.769-0.833-5.646c-0.63-3.836-1.532-7.629-2.746-11.322
+ c-1.261-3.836-2.842-7.612-4.89-11.097c-0.441-0.751-1.01-1.469-1.395-2.244c-0.425-0.855-0.751-1.699-1.308-2.491
+ c-0.555-0.789-1.208-1.508-1.929-2.149c-0.371-0.33-0.761-0.639-1.167-0.925C198.621,150.544,197.962,149.947,197.633,149.947z"/>
+ </g>
+</g>
+</svg>
diff --git a/dm-14.tex b/dm/dm-14.tex
index 313e693..313e693 100644
--- a/dm-14.tex
+++ b/dm/dm-14.tex
diff --git a/dm-15.tex b/dm/dm-15.tex
index db0de91..db0de91 100644
--- a/dm-15.tex
+++ b/dm/dm-15.tex
diff --git a/dm-16.tex b/dm/dm-16.tex
index 054f0a2..054f0a2 100644
--- a/dm-16.tex
+++ b/dm/dm-16.tex
diff --git a/dm-17.tex b/dm/dm-17.tex
index 8d5e101..8d5e101 100644
--- a/dm-17.tex
+++ b/dm/dm-17.tex
diff --git a/dm-18.tex b/dm/dm-18.tex
index e764814..e764814 100644
--- a/dm-18.tex
+++ b/dm/dm-18.tex
diff --git a/dm-19.tex b/dm/dm-19.tex
index 12aa975..6d77d4b 100644
--- a/dm-19.tex
+++ b/dm/dm-19.tex
@@ -26,7 +26,7 @@
что каждые две отличаются не более чем на 1.
Пусть мы умеем, запросив значение в этих числах, понимать в какой части
(или в каких двух подряд идущих частях) лежит максимум.
- Тогда за 2 хода мы умеем уменьшать рассматриваемый массив в $\dfrac{3}{2}$ раза, а значит, мы сведем задачу к поиску максимума на массиве из менее чем трех элементов, а значит, решим задачу за менее чем $4\log_3 n$ ходов.
+ Тогда за 2 хода мы умеем уменьшать рассматриваемый массив в $\frac{3}{2}$ раза, а значит, мы сведем задачу к поиску максимума на массиве из менее чем трех элементов, а значит, решим задачу за менее чем $4\log_3 n$ ходов.
\dmquestion{2}
diff --git a/intro.sty b/intro.sty
new file mode 100644
index 0000000..2c9efac
--- /dev/null
+++ b/intro.sty
@@ -0,0 +1,94 @@
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{intro}[2020/04/04 Math tasks intro]
+
+\usepackage[no-math]{fontspec}
+\setmainfont{Gentium Plus}
+\setmonofont{Inconsolata LGC}
+\newfontfamily\slab{Roboto Slab}
+\newfontfamily\roboto{Roboto}
+
+\setlength\headheight{13.6pt}
+
+\usepackage{
+ amsmath, amssymb, mathtools, relsize,
+ graphicx, xcolor,
+ fancyhdr,
+ hyperref,
+ enumerate,
+ framed,
+ lastpage
+}
+\usepackage{datetime2}
+\usepackage[shortlabels]{enumitem}
+\usepackage{mathshit}
+
+
+\flushbottom
+
+\renewcommand{\baselinestretch}{1.1}
+
+\usepackage{geometry}
+\geometry{
+ b5paper,
+ left=0.4in, right=0.4in,
+ top=0.5in, bottom=0.6in,
+ headsep=.1in
+}
+
+\newcommand{\question}[2]{
+ \def\FrameCommand{
+ \fboxsep=\FrameSep\fcolorbox{gray}{white}
+ }
+ \MakeFramed{
+ \advance\hsize-\width \FrameRestore
+ }
+ \noindent {\small \roboto \textbf{#1}}
+ #2
+ \endMakeFramed
+}
+
+\newcommand{\dmquestion}[1]{
+ \begin{center}
+ {
+ \color{darkgray}
+ \framebox[3em]{
+ \color{black}
+ \texttt{#1}
+ }
+ }
+ \end{center}
+}
+
+\setlength\FrameSep{0.75em}
+\setlength\OuterFrameSep{\partopsep}
+
+\hypersetup{colorlinks=true, linkcolor=magenta}
+
+% -- Left/right header text and footer (to appear on every page) --
+\pagestyle{fancy}
+\renewcommand{\footrulewidth}{0pt}
+\renewcommand{\headrulewidth}{0pt}
+
+% clear first page
+\fancypagestyle{plain}
+{
+ \fancyhf{}
+ \renewcommand{\headrulewidth}{0pt}
+ \renewcommand{\footrulewidth}{0pt}
+}
+
+\cfoot{}
+\rfoot{\footnotesize \texttt{\thepage}}
+
+\author{Шарафатдинов Камиль \and БПМИ192}
+\date{билд \qquad \small\texttt{\DTMnow+0300}}
+
+\setlength{\leftskip}{24pt}
+\setlength{\rightskip}{24pt}
+
+% simplified inkscape svg insertion
+\newcommand{\drawcat}[1]{
+ \begin{figure}
+ \includegraphics[width=#1,page=1]{cat.pdf}
+ \end{figure}
+}
diff --git a/intro.tex b/intro.tex
deleted file mode 100644
index 2281906..0000000
--- a/intro.tex
+++ /dev/null
@@ -1,59 +0,0 @@
-\usepackage[sfdefault,condensed,scaled=0.9]{roboto}
-%\usepackage[T2A]{fontenc}
-%\usepackage{inconsolata}
-%\setmonofont[Scale=0.9]{Inconsolata}
-
-\setlength\headheight{13.6pt}
-
-\usepackage{
- amsmath, amssymb, mathtools, relsize,
- graphicx, xcolor,
- fancyhdr, hyperref, enumerate
-}
-\usepackage[shortlabels]{enumitem}
-\usepackage{mathshit}
-
-\flushbottom
-
-\renewcommand{\baselinestretch}{1.1}
-
-\usepackage{geometry}
-\geometry{
- b5paper,
- left=0.4in, right=0.4in,
- top=0.5in, bottom=0.6in,
- headsep=.1in
-}
-
-\newenvironment{cframed}[1][gray]
-{
- \def\FrameCommand{
- \fboxsep=\FrameSep\fcolorbox{#1}{white}
- }
- \MakeFramed{
- \advance\hsize-\width \FrameRestore
- }
-}
-{\endMakeFramed}
-
-\newcommand{\question}[2]{
- \bigskip\bigskip
- \begin{cframed}
- \noindent \textbf{#1}
- #2
- \end{cframed}
-}
-
-
-\setlength\FrameSep{0.75em}
-\setlength\OuterFrameSep{\partopsep}
-
-\hypersetup{colorlinks=true, linkcolor=magenta}
-
-% -- Left/right header text and footer (to appear on every page) --
-\pagestyle{fancy}
-\renewcommand{\footrulewidth}{0.4pt}
-\renewcommand{\headrulewidth}{0.4pt}
-
-\cfoot{}
-\rfoot{\thepage}
diff --git a/last.tex b/last.tex
new file mode 120000
index 0000000..d90caf2
--- /dev/null
+++ b/last.tex
@@ -0,0 +1 @@
+alg/alg-1.tex \ No newline at end of file
diff --git a/mathshit.sty b/mathshit.sty
index 5a9cd02..b4ca786 100644
--- a/mathshit.sty
+++ b/mathshit.sty
@@ -1,11 +1,13 @@
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{mathshit}[2020/04/04 Math Shit]
-\RequirePackage{framed}
-
\DeclareMathOperator{\dif}{d \!}
+\DeclareMathOperator{\ord}{ord}
+\DeclareMathOperator{\lcm}{lcm}
+
\newcommand{\norm}[1]{\left\lVert#1\right\rVert}
\newcommand{\dist}[2]{\norm{#1 - #2}}
+\newcommand{\cycle}[1]{\langle #1 \rangle}
\makeatletter
\newenvironment{sqcases}{%
@@ -22,11 +24,7 @@
\makeatother
\DeclareRobustCommand{\divby}{%
- \mathrel{\vbox{\baselineskip.65ex\lineskiplimit0pt\hbox{.}\hbox{.}\hbox{.}}}%
-}
-
-\newcommand{\dmquestion}[1]{
- \begin{center} \textbf{#1} \end{center}
+ \mathrel{\vbox{\baselineskip.5ex\lineskiplimit0pt\hbox{$.$}\hbox{$.$}\hbox{$.$}}}%
}
\newcommand{\br}[1]{\left( #1 \right)}