<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="zh-CN"><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://cpuritan.cn/feed.xml" rel="self" type="application/atom+xml" /><link href="https://cpuritan.cn/" rel="alternate" type="text/html" hreflang="zh-CN" /><updated>2026-04-04T15:38:40+08:00</updated><id>https://cpuritan.cn/feed.xml</id><title type="html">Cpuritan</title><subtitle>Cpuritan 的个人主页与博客</subtitle><author><name>Cpuritan</name><email>contact@cpuritan.cn</email></author><entry><title type="html">你好，世界：我的个人博客上线了</title><link href="https://cpuritan.cn/blog/2026/04/03/hello/" rel="alternate" type="text/html" title="你好，世界：我的个人博客上线了" /><published>2026-04-03T14:30:00+08:00</published><updated>2026-04-03T14:30:00+08:00</updated><id>https://cpuritan.cn/blog/2026/04/03/hello</id><content type="html" xml:base="https://cpuritan.cn/blog/2026/04/03/hello/"><![CDATA[<!-- AUTO-GENERATED: blog-pipeline source=content/blog/hello.md -->

<p>这是我在 <code class="language-plaintext highlighter-rouge">cpuritan.cn</code> 发布的第一篇文章。</p>

<p>接下来我会在这里持续更新：</p>

<ul>
  <li>学习笔记与论文阅读</li>
  <li>项目复盘与方法总结</li>
  <li>对技术和工程实践的思考</li>
</ul>

<p>如果你也关注这些方向，欢迎常来看看。</p>]]></content><author><name>Cpuritan</name><email>contact@cpuritan.cn</email></author><category term="blog" /><summary type="html"><![CDATA[]]></summary></entry><entry><title type="html">Smart Predict, then Optimize</title><link href="https://cpuritan.cn/blog/2024/11/15/reading-smart-predict-then-optimize/" rel="alternate" type="text/html" title="Smart Predict, then Optimize" /><published>2024-11-15T14:30:00+08:00</published><updated>2024-11-15T14:30:00+08:00</updated><id>https://cpuritan.cn/blog/2024/11/15/reading-smart-predict-then-optimize</id><content type="html" xml:base="https://cpuritan.cn/blog/2024/11/15/reading-smart-predict-then-optimize/"><![CDATA[<!-- AUTO-GENERATED: blog-pipeline source=content/blog/reading-smart-predict-then-optimize.md -->

<h2 id="background">Background</h2>

<p>在现实世界的优化应用中，机器学习与优化方法的结合已经成为决策分析的重要方法论。本文就是要讨论数据驱动下，带有不确定参数的优化问题。这种问题常通过“Predict, then Optimize”的范式来解决在涉及预测再优化问题中，机器学习方法的目的是最小化预测误差，并不关注如何将预测结果用于下游的优化问题中?</p>
<h2 id="符号说明">符号说明</h2>

<p>(w\in \mathbb{R}^{d})决策变量?S\in\mathbb{R}^{d}$表示可行域；
(p)表示特征向量(x)的维度；(n)表示训练样本数量?(W^{<em>}(c):=argmin_{w\in S}{c^{T}w })表示优化问题的最优解集合~解集?(w^{</em>}(c))表示朢优解，使?w^{*}(c) \in W(c)$?</p>
<h2 id="predict-then-optimize-framework">Predict, then Optimize Framework</h2>

<p>(SPO)架构的主旨在于，生成朢小化决策误差而非预测误差的预测模型转化为数学表述，决策研究的目标?
[
\min\limits_{w\in S}\mathbb{E}<em>{c\sim D</em>{x}}[c^{T}w|x]=\min\limits_{w\in S}\mathbb{E}<em>{c\sim D</em>{x}}[c|x]^{T}w
]</p>

<p>给定特征(x)的实例下?D_{x}( ?c) 的条件分布，优化问题目标函数的期望等于基?\hat{c}( (即表示为)\mathbb{E}<em>{c\sim D</em>{x}}[c|x]$)解决的优化问题的确定性版本的目标函数期望值?</p>
<ol>
  <li>给定名义优化问题?</li>
</ol>

<p>[
\begin{aligned}
P(c):\quad z^{*}(c):= \min\limits_{w}c^Tw<br />
s.t.\quad w\in S
\end{aligned}
]</p>

<ol>
  <li>训练数据形式((x_{1},c_{1}),\cdots,(x_{n},c_{n}))</li>
  <li>成本向量(c) 预测模型(f) 使得(\hat{c}:=f(x))并定义一个类(\cal{H})?f \in \cal{H}$</li>
  <li>定义损失函数(\cal{l}(\hat{c},c))衡量成本向量预测值与真实成本向量的误差?即求解优化问题确定最佳预测模?f^{*}$根据经验风险朢小化原则，需要满足：</li>
</ol>

<p>[
\min\limits_{f \in \cal{H}}\frac{1}{n}\sum\limits_{i=1}^{n}l(f(x_{i}),c_{i})
]</p>

<p>[
w^{<em>}(f^{</em>}(x))
]</p>

<p>[
\min\limits_{B}\frac{1}{n}\sum\limits_{i=1}^{n}||Bx_i-c_{i}||^{2}
]</p>

<p>[
w^{<em>}(B^{</em>}x)
]</p>

<ul>
  <li>给定真实成本向量 (c),  朢可能的决策是 (w^<em>(c)) 得到 (c^T w^</em>(c))</li>
  <li>给定预测的成本向?(\hat{c}), 做出的决策是 (w^<em>(\hat{c}))得到 (c^T w^</em>(\hat{c}))</li>
  <li>SPO损失函数定义为：</li>
</ul>

<p>[
\ell^{w^{<em>}}_{\mathrm{SPO}}(\hat{c}, c):=c^T w^</em>(\hat{c})-c^T w^*(c)
]</p>

<ul>
  <li>Alternate definition with no oracle dependence is also given, we break ties with worst-case (this avoids predicting 0 all for everything)</li>
</ul>

<h2 id="spo损失函数">SPO损失函数</h2>

<p>(SPO)损失函数：衡量由于成本向量预测不精确而做出次优决策时产生的超额成本?
[
\ell_{\mathrm{SPO}}(\hat{c}, c):=max_{w \in W^{<em>}(\hat{c})} {c^Tw}-z^</em>(c)
]</p>

<p>根据(PO)范式?SPOloss(计算流程?- 给定成本向量预测?\hat{c})?- 求解(P(\hat{c}))得到决策(w^{<em>}(\hat{c}))?- 计算(SPO loss:=c^{T}w^{</em>}(\hat{c})-z^{<em>}(c))?
但由?SPO(损失函数在计算过程中，可能的非凸性和不连续，提出)SPO+(损失函数作为)SPO(的凸替代?SPO+)的几点质如下?- (\ell_{\mathrm{SPO}}(\hat{c}, c) \leq \ell_{\mathrm{SPO}+}(\hat{c}, c))?- (\ell_{\mathrm{SPO}+}(\hat{c}, c))是关?(\hat{c}) 的凸函数?- 给定(\hat{c})?\ell_{\mathrm{SPO}+}(\cdot)( ?\hat{c})处的次梯度为 (2\left(w^</em>(c)-\right.) (\left.w^*(2 \hat{c}-c)\right) \in \partial \ell_{\mathrm{SPO}+}(\hat{c}, c))</p>

<h3 id="spo计算">SPO+计算</h3>

<p>求解SPO+ERM问题的方法：1. 基于对偶理论的凸优化方法?. 基于梯度下降?假设可行域为丢个多面体区域 (S={w: A w \geq b})，正则化(SPO+ERM)问题等价?
[
\begin{aligned}</p>

<p>\min <em>{B, p} &amp; \frac{1}{n} \sum</em>{i=1}^n\left[-b^T p_i+2\left(w^<em>\left(c_i\right) x_i^T\right) \bullet B-z^</em>\left(c_i\right)\right]+\lambda \Omega(B) \</p>

<p>&amp; \text { s.t. } A^T p_i=2 B x_i-c_i \quad \text { for all } i \in{1, \ldots, n} \</p>

<p>&amp; p_i \in \mathbb{R}^{m, p_i \geq 0 \quad \text { for all } i \in{1, \ldots, n}}\</p>

<p>&amp; B \in \mathbb{R}^{d \times p}</p>

<p>\end{aligned}
]</p>

<p>[
\ell_{\mathrm{SPO}}(\hat{c}, c)=\max _{w \in W^<em>(\dot{c})}\left{c^T w-\alpha \hat{c}^T w\right}+\alpha z^</em>(\hat{c})-z^*(c)
]</p>

<p>16
Elmachtoub and Grigns: Smart -Prodiet, then Optimize”
since (z^<em>(\hat{c})=\hat{c}^T w) for all (w \in W^</em>(\hat{c})). Clearly, replacing the constraint (w \in W^*(\hat{c})) with (w \in S) in (il) results in an upper bound. Since this is true for all values of (\alpha), then</p>

<p>[
\ell_{\mathrm{SPO}}(\hat{c}, c) \leq \inf _\alpha\left{\max _{w \in S}\left{c^T w-\alpha \hat{c}^T w\right}+\alpha z^<em>(\hat{c})\right}-z^</em>(c) .
]</p>

<p>In fact, one can show that inequality (? is actually an equality using duality theory, and moreover, the optimal value of (\alpha) tends to (\infty). Intuitively, one can see that as (\alpha) gets large, then the term (c^T w) in the inner maximization objective becomes negligible and the solution tends to (w^<em>(\alpha \hat{c})=w^</em>(\hat{c})). Thus, as (\alpha) tends to (\infty), the inner maximization over (S) can be replaced with maximization over (W^*(\hat{c})), which recovers (5i). We formalize this equivalence in Proposition below.</p>

<p>Proposition 2 (Dual Representation of SPO Loss). For any cost vector prediction (\hat{c} \in \mathbb{R}^d) and realized cost vector (c \in \mathbb{R}^d), the function (\alpha \mapsto \max _{w \in S}\left{c^T w-\alpha \hat{c}^T w\right}+\alpha z^*(\hat{c})) is monotone decreasing on (\mathbb{R}), and the true SPO loss function may be expressed as</p>

<p>[
\ell_{\mathrm{SPO}}(\hat{c}, c)=\lim _{\alpha \rightarrow \infty}\left{\max _{w \in \mathcal{S}}\left{c^T w-\alpha \hat{c}^T w\right}+\alpha z^<em>(\hat{c})\right}-z^</em>(c) .
]</p>

<p>Using Proposition we shall now revist the SPO ERM problem (? which can be written as</p>

<p>[
\begin{aligned}
&amp; \min <em>{f \in \mathcal{H}} \frac{1}{n} \sum</em>{i=1}^n \lim <em>{i_i \rightarrow \infty}\left{\max _{w \in S}\left{c_i^T w-\alpha_i f\left(x_i\right)^T w\right}+\alpha_i z^*\left(f\left(x_i\right)\right)\right}-z^*\left(c_i\right) <br />
= &amp; \min _{f \in \mathcal{H}} \frac{1}{n} \sum</em>{i=1}^n \lim <em>{i_i \rightarrow \infty}\left{\max _{w \in \mathcal{S}}\left{c_i^T w-\alpha_i f\left(x_i\right)^T w\right}+\alpha_i f\left(x_i\right)^T w^*\left(\alpha_i f\left(x_i\right)\right)\right}-z^*\left(c_i\right) <br />
= &amp; \min _{f \in \mathcal{H}} \frac{1}{n} \lim _{a \rightarrow \infty}\left{\sum</em>{i=1}^n \max <em>{w \in S}\left{c_i^T w-\alpha f\left(x_i\right)^T w\right}+\alpha f\left(x_i\right)^T w^*\left(\alpha f\left(x_i\right)\right)-z^*\left(c_i\right)\right} <br />
\leq &amp; \min _{f \in \mathcal{H}} \frac{1}{n} \sum</em>{i=1}^n \max <em>{w \in S}\left{c_i^T w-2 f\left(x_i\right)^T w\right}+2 f\left(x_i\right)^T w^*\left(2 f\left(x_i\right)\right)-z^*\left(c_i\right) <br />
\leq &amp; \min _{f \in \mathcal{H}} \frac{1}{n} \sum</em>{i=1}^n \max _{w \in S}\left{c_i^T w-2 f\left(x_i\right)^T w\right}+2 f\left(x_i\right)^T w^<em>\left(c_i\right)-z^</em>\left(c_i\right) .
\end{aligned}
]</p>

<p>第一个等式来自以下事实：对于任何 (\alpha_i&gt;0, \mathrm{z}^<em>\left(\alpha_i \mathrm{f}(\mathrm{x}\right.) (i))=\alpha_i \mathrm{Z}^</em>\left(\mathrm{f}\left(\mathrm{x}<em>i\right)\right)) 。第二个等式来自以下观察：所?(\alpha_i) 个变量都趋向于相同的值，因此我们可以用一个变量替换它们，我们称之?(\alpha) 。第丢个不等式来自命题 2 ，具体来? ?(6) 中设?(\alpha=2) 会导?SPO 损失的上限（我们将在下文中重新讨论这个特定的选择）最后，第二个不等式来自以下事实? (\mathrm{w}^*\left(\mathrm{c}_i\right)) ?(\mathrm{P}\left(2 \mathrm{f}\left(\mathrm{x}_i\right)\right)) 的可行解??）中的加数表达式正是我们扢说的 SPO+ 损失函数 ，我们在定义 3 中对其进行了正式陈述?
定义 3 (SPO+ Loss)。给定成本向量预?c 和实际成本向?(\mathrm{c}, \mathrm{SPO}+) 损失定义?
[
\left.\ell</em>{\mathrm{SPO}+}(\hat{c}, \mathrm{c}\right) :=\max _{w \in S}\left{\mathrm{c}^T \mathrm{w}-2 \hat{\mathrm{c}}^T \mathrm{w}\right}+2 \hat{\mathbf{c}}^T \mathrm{w}^<em>(\mathrm{c})-\mathrm{z}^</em>(\mathrm{c})
]</p>

<p>回想丢下， (\xi_S(\cdot)) ?S 的支持函数，?\xi_S(\mathrm{c}):=\max( )w \in S\left{c^T \mathbf{w}\right}$
使用此符? SPO+ 损失可以等效地表示为 $\ell_{\mathrm{SPO}+}(\hat{\mathrm{c}}, \mathrm{c})=\xi_{\mathrm{s}}(\mathrm{c}-2 \hat{\mathrm{c}})+2 \hat{\mathrm{c}}^T \mathrm{w}^<em>(\mathrm{c})-\mathrm{z}^</em>(\mathrm{c}) ?</p>

<p>凸代?SPO+ 损失函数推导的最后一?(9) 涉及使用丢阶展弢式近似凹 (非凸) 函数 (z^<em>(\cdot)) 。也就是说，我们
应用边界 (\mathrm{z}^</em>\left(2 \mathrm{f}\left(\mathrm{x}<em>i\right)\right)=2 \mathrm{z}^*\left(\mathrm{f}\left(\mathrm{x}_i\right)\right) \leq 2 \mathrm{f}\left(\mathrm{x}_i\right)^T \mathrm{w}^*\left(\mathrm{c}_i\right))
这可以看作是基于?(\mathrm{c}_i) (处计算的超梯度对 (\mathrm{z}^*\left(\mathrm{f}\left(\mathrm{x}_i\right)\right)) 的一阶近似，?(\mathrm{w}^*\left(\mathrm{c}_i\right) \in \partial \mathrm{z}^*\left(\mathrm{c}_i\right)) )。请注意，如?(\mathrm{f}\left(\mathrm{x}_i\right)=\mathrm{c}_i)?(\ell</em>{\mathrm{SPO}}\left(\mathrm{f}\left(\mathrm{x}<em>i\right), \mathrm{c}_i\right)=\ell</em>{\mathrm{SPO}+}\left(\mathrm{f}\left(\mathrm{x}_i\right), \mathrm{c}_i\right)=0), 这意味着当最小化 SPO+ ? 直观地讲, 我们试图?(\mathrm{f}\left(\mathrm{x}_i\right)) 接近 (\mathrm{c}_i)</p>

<p>因此，人们可能期?(\mathrm{w}^*\left(\mathrm{c}<em>i\right)) ?(\mathrm{P}\left(2 \mathrm{f}\left(\mathrm{x}</em>{\mathrm{i}}\right)\right)) 的近乎最优解，因此，不等?(9) 将是丢个合理的近似值事实上?4 节在某些假设下提供了丢致属性，这些假设表明, 如果预测模型在足够大的数据集上进行训? 则预?(\mathrm{f}\left(\mathrm{x}_i\right)) 确实合理接近 (\mathrm{c}_i) 的预期?
更正式地，我们让 D 表示 ((\mathrm{x}, \mathrm{c})) 的分布，?((\mathrm{x}, \mathrm{c}) \sim) D, 并虑真实 SPO 风险（贝叶斯风险）最小化问题的体版本:</p>

<p>[
\min <em>f \mathbb{E}</em>{(x, c) \sim \mathcal{D}}\left[\ell_{\mathrm{SPO}}(f(x), c)\right],
]</p>

<p>以及 SPO+ 风险朢小化问题的人口版?</p>

<p>[
\min <em>f \mathbb{E}</em>{(x, c) \sim \mathcal{D}}\left[\ell_{\mathrm{SPO}+}(f(x), c)\right]
]</p>

<p>注意这里我们?(\mathrm{f}(\cdot)) 没有任何限制，这意味睢 H 由任何将特征映射到成本向量的可测函数组成?定义4（费希尔丢致）。如?(\arg <em>{\min }^f \mathrm{E}</em>{(x, c) \sim \mathcal{D}}[\ell(\mathrm{f}(\mathrm{x}), \mathrm{c})]) ( (\ell) 的贝叶斯风险的最小化器集? 也最小化 (11)，则损失函数 (\ell(,),$) 被认为与 SPO 损失具有费希尔一致?</p>

<p>为了直观理解，我们让 (\mathrm{f}<em>{\mathrm{SPO}}^*) ?(\mathrm{f}</em>{\mathrm{SPO}+}^<em>) 分别表示 (11)?(12) 的任意最优解。从 (1) 可以看出?(\mathrm{f}_{\mathrm{SPO}}^</em>(\mathrm{x})) 的理想就?(E[c \mid x]) 。事实上, 只要 (P(E[c \mid x])) 的最优解以概?1 唯一（在 (x \in X) 的分布上），即几乎肯定唯丢，那?(\mathrm{E}[\mathrm{c} \mid \mathrm{x}]) 确实?(11) 的最小化器（参见命题 5）此?, 任何几乎肯定等于 (\mathrm{E}[\mathrm{c} \mid \mathrm{x}]) 的函数也?(11) 的最小化器在定理1? 我们表明, 在假?1 ? SPO+ 人口风险 (12) 的任何最小化器都必须几乎肯定满足 (\mathrm{f}_{\mathrm{SPO}+}^*(\mathrm{x}) ()=\mathrm{E}[\mathrm{c} \mid \mathrm{x}]) ，因此也朢小化?SPO 风险?1）之，在假设 1 ? SPO+ 损失?SPO 损失?Fisher 丢致的?</p>
<h1 id="spo-pricing">SPO #Pricing</h1>]]></content><author><name>Cpuritan</name><email>contact@cpuritan.cn</email></author><category term="blog" /><summary type="html"><![CDATA[]]></summary></entry><entry><title type="html">Analytics for an Online Retailer Demand Forecasting and Price Optimization</title><link href="https://cpuritan.cn/blog/2024/11/03/reading-analytics-for-an-online-retailer-demand-forecasting-and-price-optimization/" rel="alternate" type="text/html" title="Analytics for an Online Retailer Demand Forecasting and Price Optimization" /><published>2024-11-03T14:30:00+08:00</published><updated>2024-11-03T14:30:00+08:00</updated><id>https://cpuritan.cn/blog/2024/11/03/reading-analytics-for-an-online-retailer-demand-forecasting-and-price-optimization</id><content type="html" xml:base="https://cpuritan.cn/blog/2024/11/03/reading-analytics-for-an-online-retailer-demand-forecasting-and-price-optimization/"><![CDATA[<!-- AUTO-GENERATED: blog-pipeline source=content/blog/reading-analytics-for-an-online-retailer-demand-forecasting-and-price-optimization.md -->

<h2 id="background">Background</h2>

<p>零售商如何利用丰富的数据优化日常定价决策。针对首次亮相的商品，很大比例的商品在销售期结束前就已售罄，因此可能可以继续提高商品定价；另丢方面，许多首次亮相的商品在销售期结束时的锢售量还不到库存量的一半，这表明价格可能过高?</p>
<h2 id="oriented">Oriented</h2>

<p>主要挑战：首次曝光商品的 霢求预??定价?<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 503.67693778252027 222.0499242146809" width="503.67693778252027" height="222.0499242146809">
  <!-- svg-source:excalidraw --></svg></p>

<defs>
    <style class="style-fonts">
      @font-face {
        font-family: Excalifont;
        src: url(data:font/woff2;base64,d09GMgABAAAAAAHwAA0AAAAABBAAAAGhAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGx4cNAZgADQRCAoALAsGAAE2AiQDCAQgBYMYByAbUwPIrgpscEcPjAqbbfFGeKx5Kz5EU3R4bDzUL93bvX8JXUVSmorE9SJxvRjNeBQOYXEOHSway/n/P+buVKO/qf2JJVWsT8RCwUokBQ4hUxIh0zx2kOoSixA6//37cw+I33LHb5EcSZbiLwn1l1CELdAXC7/Ia2HUcht7no7PES0JadRRYMAoA87WTvMJYgUaIDBgDsM3u00398MKuofDeAnda/+0gQ7Y6yWfIrW+/EzgUNU4x/xDBFjZOqq08QNClf+f6uoSTsInxFsCk8RIVOjgCel8k6AoApMN3NH0cADRkCBBwaAYFwg+3u9CxZ9YxvsDevfuFsDP16+mlcs86JMgeJ5qrXFd4uBUWQ2UIgTSN4QgEQJrAGg7xhNFAl79NkLHN9KIL1S6XlHMGqC2wm7dMgu23Qz1rcxNbG2cBDwYmzpb6Tt4MXZwNLe1QSKCwvXjrIqVu52ZIxIVxBC3KIZJ8px7SJ61Fz2qaMtGEnnLBb26c3cwNzVzQtyGPAgTxsSQgTtKV44c9F0FkZyVFcrjcfBYND7qYmwkiAc0qxEAAA==);
          }
    </style>

  </defs>
<rect x="0" y="0" width="503.67693778252027" height="222.0499242146809" fill="#ffffff"></rect>
<g stroke-linecap="round" transform="translate(10 104.0440586697735) rotate(0 69.56038725471228 26.199996948242188)"><path d="M13.1 0 C56.75 -0.84, 101.69 -1.55, 126.02 0 M13.1 0 C38.26 -1.76, 62.03 -1.87, 126.02 0 M126.02 0 C134.25 1.75, 139.24 5.01, 139.12 13.1 M126.02 0 C136.58 0.31, 139.26 4.06, 139.12 13.1 M139.12 13.1 C138.25 20.07, 140.42 28.84, 139.12 39.3 M139.12 13.1 C138.69 18.33, 139.45 24.62, 139.12 39.3 M139.12 39.3 C138.23 49.95, 136.74 53.24, 126.02 52.4 M139.12 39.3 C139.31 48.43, 136.36 52.39, 126.02 52.4 M126.02 52.4 C87.67 54.45, 47.79 54.69, 13.1 52.4 M126.02 52.4 C94.23 52.39, 62.49 51.15, 13.1 52.4 M13.1 52.4 C2.79 51.96, -0.27 47.1, 0 39.3 M13.1 52.4 C3.66 53.64, 2.13 47.35, 0 39.3 M0 39.3 C1.4 29.17, 0.99 21.44, 0 13.1 M0 39.3 C-0.6 33.11, 0.44 25.07, 0 13.1 M0 13.1 C-0.38 5.99, 5.66 -1.29, 13.1 0 M0 13.1 C0.04 4.63, 4.57 -2.23, 13.1 0" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g>
<g transform="translate(16.660393358227907 110.2440556180157) rotate(0 62.899993896484375 20)"><text x="62.899993896484375" y="14.096" font-family="Excalifont, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">首次曝光商品?/text&gt;<text x="62.899993896484375" y="34.096000000000004" font-family="Excalifont, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">霢求预??定价</text>&lt;/g&gt;<g stroke-linecap="round" transform="translate(184.21027823662172 61.46661885579431) rotate(0 54.39999389648437 16)"><path d="M8 0 C29.59 -0.58, 54.82 -0.05, 100.8 0 M8 0 C35.6 1.11, 62.56 0.72, 100.8 0 M100.8 0 C107.27 -1.63, 108.36 2.22, 108.8 8 M100.8 0 C106.35 -0.61, 108.61 0.6, 108.8 8 M108.8 8 C110.31 13.56, 107.52 18.26, 108.8 24 M108.8 8 C107.98 13.48, 109.23 18.85, 108.8 24 M108.8 24 C106.9 28.7, 104.14 31.23, 100.8 32 M108.8 24 C109.33 29.24, 105.02 33.45, 100.8 32 M100.8 32 C72.5 31.17, 46.53 32.46, 8 32 M100.8 32 C80.3 30.3, 60.68 30.78, 8 32 M8 32 C1.68 33.02, 1.54 30.62, 0 24 M8 32 C0.88 31.76, -0.11 30.86, 0 24 M0 24 C-0.26 19.11, -0.66 11.47, 0 8 M0 24 C-0.33 20.16, 0.83 16.43, 0 8 M0 8 C-1.74 4.38, 1.45 0.12, 8 0 M0 8 C1.14 3.33, 4.29 0.04, 8 0" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(190.6102721331061 67.46661885579431) rotate(0 48 10)"><text x="48" y="14.096" font-family="Excalifont, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">霢求预测模?/text&gt;&lt;/g&gt;<g stroke-linecap="round" transform="translate(183.94360546643944 175.86661783854169) rotate(0 54.39999389648437 16)"><path d="M8 0 C29.43 1.51, 49.04 -0.43, 100.8 0 M8 0 C29.05 0.13, 52.05 0.8, 100.8 0 M100.8 0 C106.25 -0.8, 109.35 3.07, 108.8 8 M100.8 0 C106.62 -0.14, 107.5 4.94, 108.8 8 M108.8 8 C109.68 13.57, 108.54 20.22, 108.8 24 M108.8 8 C108.34 11.9, 109.21 15.09, 108.8 24 M108.8 24 C108.58 29.52, 106.69 32.95, 100.8 32 M108.8 24 C108.46 28.67, 107 33.78, 100.8 32 M100.8 32 C66.73 31.07, 32.74 32.97, 8 32 M100.8 32 C72.29 32.24, 42.41 31.82, 8 32 M8 32 C3.14 32.61, -0.91 28.19, 0 24 M8 32 C4.08 32.8, -0.02 28.71, 0 24 M0 24 C-0.71 17.9, -0.14 15.9, 0 8 M0 24 C0.29 19.16, -0.36 14.83, 0 8 M0 8 C0.32 1.7, 4.59 1.25, 8 0 M0 8 C1.69 4.19, 3.63 -0.24, 8 0" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(189.8435993629238 181.86661783854169) rotate(0 48.5 10)"><text x="48.5" y="14.096" font-family="Excalifont, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">定价优化模型</text></g><g stroke-linecap="round"><g transform="translate(150.6102721331061 119.86414226713418) rotate(0 16 -20.399087573940335)"><path d="M0 0 C7.98 -10.37, 15.97 -20.66, 32 -40.8 M0 0 C12.43 -16.12, 24.6 -31.78, 32 -40.8" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(150.6102721331061 119.86414226713418) rotate(0 16 -20.399087573940335)"><path d="M23.95 -17.13 C26.1 -23.22, 28.2 -29.29, 32 -40.8 M23.95 -17.13 C27.16 -26.61, 30.14 -35.7, 32 -40.8" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(150.6102721331061 119.86414226713418) rotate(0 16 -20.399087573940335)"><path d="M10.62 -27.84 C16.07 -31.34, 21.45 -34.78, 32 -40.8 M10.62 -27.84 C18.92 -33.25, 27.01 -38.23, 32 -40.8" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round"><g transform="translate(150.12077450942456 144.51415250032915) rotate(0 16.111404797355092 21.73330203364185)"><path d="M0 0 C11.53 13.58, 20.82 29.88, 32.22 43.47 M0 0 C8.45 12.1, 17.14 23.41, 32.22 43.47" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(150.12077450942456 144.51415250032915) rotate(0 16.111404797355092 21.73330203364185)"><path d="M11.26 29.85 C19.1 33.5, 24.66 39.91, 32.22 43.47 M11.26 29.85 C16.72 33.81, 22.34 36.99, 32.22 43.47" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(150.12077450942456 144.51415250032915) rotate(0 16.111404797355092 21.73330203364185)"><path d="M24.91 19.56 C28.21 26.56, 29.26 36.38, 32.22 43.47 M24.91 19.56 C26.63 26.32, 28.52 32.31, 32.22 43.47" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(331.67689709241597 10) rotate(0 78.06666056315103 17.999992370605497)"><path d="M9 0 C61.63 -2.91, 113.2 0.09, 147.13 0 M9 0 C44.08 0.71, 76.74 1.81, 147.13 0 M147.13 0 C152.96 1.1, 157.44 3.52, 156.13 9 M147.13 0 C152.29 -0.54, 157.93 5.2, 156.13 9 M156.13 9 C157.09 15.88, 157.24 19.36, 156.13 27 M156.13 9 C156.43 13.63, 156.77 16.41, 156.13 27 M156.13 27 C157.38 32.24, 154.81 36.57, 147.13 36 M156.13 27 C157.78 31.17, 153.12 34.68, 147.13 36 M147.13 36 C100.14 36.48, 57.21 33.94, 9 36 M147.13 36 C113.89 34.24, 79.6 34.4, 9 36 M9 36 C2.1 35.57, 1.61 31.22, 0 27 M9 36 C3.28 37.14, -0.8 30.84, 0 27 M0 27 C1.86 20.9, 1.41 16.92, 0 9 M0 27 C0.46 21.07, -0.56 17.83, 0 9 M0 9 C-0.29 1.82, 3.34 1.52, 9 0 M0 9 C-1.25 3.66, 2.72 -2.08, 9 0" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(336.743557655567 17.99999237060547) rotate(0 73 10)"><text x="73" y="14.096" font-family="Excalifont, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">估算缺货的销售损?/text&gt;&lt;/g&gt;<g stroke-linecap="round" transform="translate(328.8769398170254 103.73331197102863) rotate(0 82.39999898274743 15.999997456868527)"><path d="M8 0 C65.74 0.18, 122.95 -2.4, 156.8 0 M8 0 C64.03 -0.03, 117.73 0.61, 156.8 0 M156.8 0 C160.24 0.13, 163.73 2.7, 164.8 8 M156.8 0 C161.81 1.4, 163.44 3.15, 164.8 8 M164.8 8 C163.09 11.83, 163.24 15.31, 164.8 24 M164.8 8 C164.79 11.71, 165.35 16.46, 164.8 24 M164.8 24 C163.68 28.76, 160.63 30.39, 156.8 32 M164.8 24 C164.52 30.99, 160.59 29.92, 156.8 32 M156.8 32 C126.02 32.68, 93.68 33.07, 8 32 M156.8 32 C106.62 34.19, 59.05 32.51, 8 32 M8 32 C3.17 32.47, -1.01 31.29, 0 24 M8 32 C4.9 29.73, -1.37 29.77, 0 24 M0 24 C-1.27 19.16, -0.31 15.28, 0 8 M0 24 C-0.57 17.71, -0.33 11.76, 0 8 M0 8 C-0.82 4.04, 3.41 0.97, 8 0 M0 8 C-1.53 3.18, 4.58 0.86, 8 0" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(338.77693879977284 109.73330942789715) rotate(0 72.5 10)"><text x="72.5" y="14.096" font-family="Excalifont, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">回归树预测未来需?/text&gt;&lt;/g&gt;<g stroke-linecap="round"><g transform="translate(294.01026602959047 69.76609718710557) rotate(0 18.333315531412758 -21.178145552641013)"><path d="M0 0 C12.6 -14.41, 24.91 -29.95, 36.67 -42.36 M0 0 C10.96 -13.21, 22.09 -25.73, 36.67 -42.36" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(294.01026602959047 69.76609718710557) rotate(0 18.333315531412758 -21.178145552641013)"><path d="M27.59 -19.06 C30.47 -26.86, 33.06 -35.68, 36.67 -42.36 M27.59 -19.06 C30.05 -26.48, 32.71 -33.15, 36.67 -42.36" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(294.01026602959047 69.76609718710557) rotate(0 18.333315531412758 -21.178145552641013)"><path d="M14.74 -30.34 C22.14 -34.12, 29.26 -38.97, 36.67 -42.36 M14.74 -30.34 C21.13 -34.26, 27.74 -37.47, 36.67 -42.36" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round"><g transform="translate(294.01026602959047 82.22944335260604) rotate(0 16.933336893717478 19.53846277993094)"><path d="M0 0 C8.86 11.41, 18.9 21.11, 33.87 39.08 M0 0 C9.97 11.49, 20.39 23.43, 33.87 39.08" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(294.01026602959047 82.22944335260604) rotate(0 16.933336893717478 19.53846277993094)"><path d="M12.04 26.89 C17.64 30.83, 24.35 33.09, 33.87 39.08 M12.04 26.89 C18.25 30.27, 25.05 34.11, 33.87 39.08" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(294.01026602959047 82.22944335260604) rotate(0 16.933336893717478 19.53846277993094)"><path d="M24.98 15.71 C26.97 22.71, 30.1 28.06, 33.87 39.08 M24.98 15.71 C27.34 22.47, 30.24 29.67, 33.87 39.08" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round"><g transform="translate(432.6332092388477 46.999984741210994) rotate(0 0.6552108294533809 27.19166183471674)"><path d="M0 0 C0.16 18.87, 0.37 34.36, 1.31 54.38 M0 0 C1.43 20.04, 1.79 42, 1.31 54.38" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(432.6332092388477 46.999984741210994) rotate(0 0.6552108294533809 27.19166183471674)"><path d="M-6.89 30.77 C-4.65 39.99, -2.28 45.81, 1.31 54.38 M-6.89 30.77 C-2.92 39.02, 0.09 49.14, 1.31 54.38" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(432.6332092388477 46.999984741210994) rotate(0 0.6552108294533809 27.19166183471674)"><path d="M10.21 31.02 C7.08 40.11, 4.07 45.85, 1.31 54.38 M10.21 31.02 C7.6 39.08, 4.03 49.11, 1.31 54.38" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(363.5436268287441 174.0499699910481) rotate(0 54.399993896484375 18.999977111816406)"><path d="M9.5 0 C40.49 -1.29, 70.52 2.58, 99.3 0 M9.5 0 C39.05 -0.42, 67.24 0.67, 99.3 0 M99.3 0 C104.06 -1.6, 107.94 2.84, 108.8 9.5 M99.3 0 C106.38 -1.94, 110.1 3.38, 108.8 9.5 M108.8 9.5 C107.28 15.78, 108.94 21.1, 108.8 28.5 M108.8 9.5 C108.78 14.89, 109.6 18.41, 108.8 28.5 M108.8 28.5 C107.41 34.76, 105.12 37.15, 99.3 38 M108.8 28.5 C109.81 32.71, 107.68 37.46, 99.3 38 M99.3 38 C71.84 38.46, 45.95 39.71, 9.5 38 M99.3 38 C78.12 36.87, 58.91 37.57, 9.5 38 M9.5 38 C3.29 37.67, 0.85 34.75, 0 28.5 M9.5 38 C3.15 35.73, -0.94 35.36, 0 28.5 M0 28.5 C-0.56 25.66, -0.19 20.64, 0 9.5 M0 28.5 C0.93 22.26, 0.38 16.9, 0 9.5 M0 9.5 C-0.87 1.36, 4.36 0, 9.5 0 M0 9.5 C-0.34 1.4, 1.74 1.3, 9.5 0" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(369.44362072522847 183.0499471028645) rotate(0 48.5 10)"><text x="48.5" y="14.096" font-family="Excalifont, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">整数规划模型</text></g><g stroke-linecap="round"><g transform="translate(293.94363089775453 191.1079882630787) rotate(0 34.29999796549479 0.007059825289445598)"><path d="M0 0 C25.63 -0.83, 48.17 0.03, 68.6 0.01 M0 0 C24.53 0.67, 46.92 -0.31, 68.6 0.01" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(293.94363089775453 191.1079882630787) rotate(0 34.29999796549479 0.007059825289445598)"><path d="M45.1 8.54 C54.97 5.17, 61.77 3.05, 68.6 0.01 M45.1 8.54 C54.03 5.99, 60.84 2.06, 68.6 0.01" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(293.94363089775453 191.1079882630787) rotate(0 34.29999796549479 0.007059825289445598)"><path d="M45.12 -8.56 C55.02 -5.97, 61.81 -2.12, 68.6 0.01 M45.12 -8.56 C54.08 -5.2, 60.89 -3.22, 68.6 0.01" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round"><g transform="translate(435.2769438860358 138.71663157145179) rotate(0 0 17.333335876464844)"><path d="M0 0 C0.49 12.18, 0.98 21.6, 0 34.67 M0 0 C-0.44 11.99, 0.25 25.41, 0 34.67" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(435.2769438860358 138.71663157145179) rotate(0 0 17.333335876464844)"><path d="M-5.88 18.36 C-3.56 24.46, -1.22 28.16, 0 34.67 M-5.88 18.36 C-4.16 23.83, -1.45 30.51, 0 34.67" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(435.2769438860358 138.71663157145179) rotate(0 0 17.333335876464844)"><path d="M5.98 18.4 C4.45 24.49, 2.94 28.18, 0 34.67 M5.98 18.4 C3.42 23.8, 1.86 30.46, 0 34.67" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g></g><mask></mask>&lt;/svg&gt;

### 霢求预测模?
\(\cal{I}\)  表示锢售商品所有款式的集合?i$ 表示特定的款式；
\(\cal{S}(i)\) 表示与款?i\(相关联的扢有尺码的集合?s \in \cal{S}_{i}\)表示特定的尺码；
\((i,s) \in \cal{I} \times \cal{S}(i)\) 可以表示丢个独特的商品，简?is\(?\)u_{i}$ 表示特定款式的需求；
\(C_{is}\)表示特定款式下每个尺码的库存?C_{i}=\sum\limits_{s \in S(i)}C_{is}$表示总库存；
\(d_{is}=\min \{C_{is},u_{is}\}\) 表示特定款式下每个尺码销售量?d_{i}=\sum\limits_{s\in S(i)}d_{is}$指整个款式销售量?
### 霢求预测模型框?
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 449.5999336242676 190.33443641662598" width="449.5999336242676" height="190.33443641662598">
  <!-- svg-source:excalidraw -->
  
  <defs>
    <style class="style-fonts">
      @font-face {
        font-family: Excalifont;
        src: url(data:font/woff2;base64,d09GMgABAAAAAAiUAA4AAAAADjAAAAhBAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGhYbgT4cNAZgAHQRCAqRXI0yCxoAATYCJAMwBCAFgxgHIBv3ClGUb1KE7OdB2SbPWRtJ8nrSqHPCXzxJwVJHOOd9tGp4EPMaFLxIME8Hk05cjYf83ft3TMkCRZOsi5quCGZsShNik6EM7uQJUwS1KZ0qrdJdpwebw0oBYWPbhSnXuddhlcdK64MgYWGAoSioz/+9qv+FfkJjH9+CCeEGHPNmjGXfMmjNthjsAKpWS6Vpe3L1lwtYcqjF/66IfWnKp034PGkBAiAiACxkCALIA+ArwqQg5vScYnDce3ZqC45HJ64NON71XezgiAAA742Bi+tkBx5QFAiYHYSHHPmXAdiUIFHI9v85ltmV5P+bprfmXoBPIR0gGIX7GsDh3rgkQoQhVwp8myeaiShGE4A0FTEKKwtmq3sDtEGEX1tYRehI82rJgwPA6JPd/o0CMu1A3RiA+S8F32mCzHaBxQSHygwiU0SoC8o2fDojmVmhYvWadNVnU5sZSXc4Xf4G65gDNttkmSWmGh9COuhX4InQOjGJgPpE+AMrQDC5sI0IL43GXTfjp6Xvr6+Ce6e+ZF/tYIj9RavV6mKTNbSGf10/y9eGlhS/SA0SgOUPlp+4NxBoSBdaabyS7Wo3ahobzPUMKc8VPb1pHf+cti5kAHG229rY7qzEroTf66tz44XkoXzdlmVF1q/KC6AaIKg4F6yz3J+TFRcqii8jDbFRKxHF7uslNoQRSq6N5mxZV0MXxg8r8fmYIUYgaDLPPrB9Jbr27FktrfE1zMVcd7L6ICmRqNqMMzEbQzOjAvBNQ4tPBpMzP0usvGVjfn3lur43N6cMTbYdlsxKWjHtoqYQsTSGXQVjGU3n+qtp1arxIR/jybx91BrCHW8dXqdy/EJjRKDGwqwAznQEhBC6cSuEUBdOh1m1ywCkw7nAUlRPcH2gnmMoifpAwPy1QyeWTy1pjc/5WHddRU9rNN05TU0CCQGe1qJNS5KmaiGSoSaxQOOiQNoJNVec5AxjlnqmOu5J1+5yvCbrLHUpgC6k202MwMF55wZj/FCErGoUVXXlKHXLrd6DnKjFOR4+F5wPK9oZhqwkL6ZpZSbO4nKtzAfsHmynou1LF6DZ+EH9YEQZIXvZHImhCYik+axW11uijO1q54qsa9NS4knJs6hj9gyb7M4nnnbJQg7QptGs52Y9+O7cSywORYdZGsNWf8+/fn2mEFzQ4do1oHaaUD1PXYUTMJ9ddiun2WwvGA6OX5HpDs3zELNYN+sXow+eN8hWkdVvpSJHIvPkQ5jPyCGoAAwLveepS2U9MC0t92Au60I+1YVhQQWdalzsaicVbzHPenqwnetO0rQ5vZ7nWLV7/0ap3ZEMyBBBUA3hf7mgQmpSCrrOGcEPcd3zXk8kL632L/MttXrVHp4j7tq84w4mp8srNwhGzquN8hoxkk27/6kf+UZ/42/1TbProTgbvRKsJ/V5nqPS+/iTLqi72EuVGKlPLHB1wt+N2RS+QVaHOvRWyx7WGK9daj/76m1fjLhCnKe0Gk6Be2vwcVEsZLYfeTuHNV3ZhG2wdizcvJki5V1/VbQSpGMCLe+QhX8Egeeitfpuir/rJFz8w8SM8JGMKGDTC9M99Ttrb1oeXLpZd/SRwa1JPkbq1T39be/5AltKhCKdpcmC8KzSxmGVdmfaHLMHGVJQBWFUZtqzfPhFe6BP4V2NvvOsmbV2zkn/pXQ/+m+6+6U4NXPhn3ih96rQvgF3gqIMCuXHhDIR304sxcjsaIZRqj/jq+sFXXnrMctuZPZQSTuzhveEf33kVls2afW0kgM9K4JZS/RNZ+mazT9fjYgQ3jKSA6myYSlWS7J5pgIhxjaAlPmncbDRwRTJoTxSSZwMkVSFWc2yfNSvo+v/QaOWJrn8avCfXqStovUkNxRf0EFGdhBkoIdZRCCV7u7GQzNlHRZ2EC0VKUn9Yz35ii6FCzwBf9YiXNffY7fsKByiHht0PmNb38hn1QEoIG1nUJPHxAxpPi1vmRV3pqpynDZP61GpGyvJJ34DOTSsSD/sFbVSY/A1dSw2Vsuvoz5cBt6DjsoiIieXbe5AtDjCMkX4yVvrflIFyTQ/f3CvPNHDLL8UnMZ70lSYpilPIavBknZ8KHSaHgXWTtTGyy3XS18fWurspM9yfR1Nq9q9c7DbpZbMw8ejlnTY6q79XhqUPFW9ELPwi7lIUE0XK70vbfMW9vZRZZSYDt3gu2xsuP3AFK8sEx2Ia7WjWbMkxBfvYPMOv7XRcHHpahhY/z1dtlFbnS6NE+Svd/zHRYV9tm42DEnr3tLHQnRVrTtw8W6Bvq53bK61I9MPbokoOsEw8kV/TleIpfTu6cYs2TQsOnLFRB1KE7JiKuSb0iN8oAVnQjAv74TQwvMNfof5LnuybM5ZfnFn19I4UbdY4h4a6BNHJIstn/4oymHk0U5iX4Esnueg64e1JYoFU9W8anJdinYVc+0KxWO1nLtqiBI5IhZzKedrKYpVPCzP1yizbnp+XSn0hU1NRl2tNOkrT4i/AAB42DPADADwaNHr3v+HfG/iFREPADzYAPf3N1YrntD3Z/Y38WBRNkBamQCA9RAWP94tRSCOB5CV5YBCDz5RDf7hDyi8ILwEQv6/Ufk6UGYYvIweddMq4FDFryRtXVIiKvuUGIkNSlyAYUqClwYlKYUXKOO9AdL00KheWy1s2rPrIlghTitdtVWvkxKcTjpredbJCBciTOQTWZ4zPXXQrNjvkkhEAH4midg5lv/kepjpyfZvVsQiT+KgaWP+U5iQ76DnE7Swgs0LwY8Bf+QjhMWIKnY36IkZiiY2U6+7ECNv0FZsZIYHOzfAgXDoZnQ0CYEjY///IQEA);
          }
    </style>

  </defs>
  <rect x="0" y="0" width="449.5999336242676" height="190.33443641662598" fill="#ffffff"></rect><g stroke-linecap="round" transform="translate(30.40625 130.51874923706055) rotate(0 64.59999084472656 20.200004577636715)"><path d="M10.1 0 C32.34 -0.16, 56.3 0.19, 119.1 0 M10.1 0 C47.48 0.69, 84.55 0.42, 119.1 0 M119.1 0 C124.45 -1.08, 130.5 5.08, 129.2 10.1 M119.1 0 C125.39 -0.96, 128.14 4.9, 129.2 10.1 M129.2 10.1 C130.57 15.6, 130.24 19.34, 129.2 30.3 M129.2 10.1 C128.88 18.41, 130.05 25.91, 129.2 30.3 M129.2 30.3 C128.85 36.47, 127.4 39.6, 119.1 40.4 M129.2 30.3 C128.4 35.66, 125.79 39.36, 119.1 40.4 M119.1 40.4 C77.35 39.29, 37.51 39.14, 10.1 40.4 M119.1 40.4 C87.77 40.68, 57.65 39.9, 10.1 40.4 M10.1 40.4 C4.03 39.58, 1.34 37.07, 0 30.3 M10.1 40.4 C3.6 40.2, -0.34 37.57, 0 30.3 M0 30.3 C0.34 26.58, 0.78 21.9, 0 10.1 M0 30.3 C0 23.72, -0.7 16.72, 0 10.1 M0 10.1 C1.77 4.13, 4.47 -0.21, 10.1 0 M0 10.1 C-1.78 2.85, 4.92 1.41, 10.1 0" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(44.006248474121094 139.18753051757812) rotate(0 52.889976501464844 12.5)"><text x="0" y="17.619999999999997" font-family="Excalifont, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Data | d&lt;u</text></g><g stroke-linecap="round" transform="translate(163.20623016357422 129.58749389648438) rotate(0 26.600006103515625 20.00000762939453)"><path d="M10 0 C23.29 -0.88, 31.25 1.28, 43.2 0 M10 0 C18.94 0.2, 29.79 -0.44, 43.2 0 M43.2 0 C50.46 -1.01, 52.12 4.64, 53.2 10 M43.2 0 C48.7 1.29, 51.15 5.61, 53.2 10 M53.2 10 C54.99 13.77, 54.67 21.33, 53.2 30 M53.2 10 C52.79 16.95, 53.96 21.39, 53.2 30 M53.2 30 C54.85 38.47, 50.98 41.34, 43.2 40 M53.2 30 C53.37 37.88, 51.58 39.45, 43.2 40 M43.2 40 C37.9 39.58, 31.12 39.18, 10 40 M43.2 40 C37.11 40.46, 28.67 39.66, 10 40 M10 40 C3.51 41.92, 0.51 37.63, 0 30 M10 40 C5.25 39.45, 1.71 38.36, 0 30 M0 30 C-0.64 21.18, 0.14 17.18, 0 10 M0 30 C-1 25.76, -0.37 21.97, 0 10 M0 10 C-0.66 4.34, 1.74 1.05, 10 0 M0 10 C-2.01 4.93, 5.13 1.66, 10 0" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(184.30623626708984 137.0875015258789) rotate(0 5.5 12.5)"><text x="5.5" y="17.619999999999997" font-family="Excalifont, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">u</text></g><g stroke-linecap="round" transform="translate(158.80626678466797 10) rotate(0 42.00001525878906 15)"><path d="M7.5 0 C26.78 -1.67, 47.97 -1.25, 76.5 0 M7.5 0 C31.51 0.41, 54.09 0.17, 76.5 0 M76.5 0 C81.02 -1.94, 83.36 3.4, 84 7.5 M76.5 0 C81.43 -1.49, 84.38 3.79, 84 7.5 M84 7.5 C84.99 10.79, 84.5 13, 84 22.5 M84 7.5 C84.58 11.66, 83.46 15, 84 22.5 M84 22.5 C83.16 27.09, 80.86 28.93, 76.5 30 M84 22.5 C83.41 25.35, 82.83 32.19, 76.5 30 M76.5 30 C57.29 31.34, 38.38 30.6, 7.5 30 M76.5 30 C59.82 29.03, 44.01 28.57, 7.5 30 M7.5 30 C2.99 31.14, 1.51 26.22, 0 22.5 M7.5 30 C3.43 29.71, 0.94 29.53, 0 22.5 M0 22.5 C-1.02 18.33, -0.52 14.61, 0 7.5 M0 22.5 C0.63 18.56, -0.12 12.69, 0 7.5 M0 7.5 C-1.41 1.38, 2.09 -1.65, 7.5 0 M0 7.5 C1.35 1.11, 3.42 0.39, 7.5 0" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(168.30628204345703 15) rotate(0 32.5 10)"><text x="32.5" y="14.096" font-family="Excalifont, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">霢求曲?/text&gt;&lt;/g&gt;<g stroke-linecap="round" transform="translate(10 60.734384536743164) rotate(0 110.39999008178711 59.800025939941406)"><path d="M29.9 0 C76.26 0.47, 124.7 0.51, 190.9 0 M190.9 0 C212.63 -0.74, 222.15 11.57, 220.8 29.9 M220.8 29.9 C221 52.66, 219.86 74.05, 220.8 89.7 M220.8 89.7 C219.23 111.07, 212.6 118.93, 190.9 119.6 M190.9 119.6 C125.24 120.75, 63.3 120.92, 29.9 119.6 M29.9 119.6 C11.94 120.14, 0.71 108.83, 0 89.7 M0 89.7 C1.17 67.89, 0.9 46.64, 0 29.9 M0 29.9 C-0.09 9.69, 11.89 0.74, 29.9 0" stroke="#1971c2" stroke-width="2.5" fill="none" stroke-dasharray="8 10"></path></g><g stroke-linecap="round"><g transform="translate(232.59996795654297 118.39760225691684) rotate(0 28.999967575073242 -0.6622179585226249)"><path d="M0.74 0.43 C10.35 -0.12, 47.82 -1.92, 57.31 -2.26 M-0.33 -0.39 C9.7 -0.3, 50.14 -1.21, 59.66 -1.21" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(232.59996795654297 118.39760225691684) rotate(0 28.999967575073242 -0.6622179585226249)"><path d="M36.27 7.64 C43.26 3.94, 47.34 2.18, 59.66 -1.21 M36.27 7.64 C42.21 4.72, 49.76 3.75, 59.66 -1.21" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(232.59996795654297 118.39760225691684) rotate(0 28.999967575073242 -0.6622179585226249)"><path d="M36.06 -9.46 C43.26 -8.52, 47.4 -5.64, 59.66 -1.21 M36.06 -9.46 C42.12 -7.58, 49.73 -3.77, 59.66 -1.21" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(291.59990310668945 101.24221134185791) rotate(0 30.000015258789062 18.200004577636715)"><path d="M9.1 0 C16.51 0.96, 25.76 -1.3, 50.9 0 M9.1 0 C24.92 -0.71, 40.95 0.77, 50.9 0 M50.9 0 C58.63 0.06, 60.29 3.03, 60 9.1 M50.9 0 C55.85 -0.13, 59.01 3.58, 60 9.1 M60 9.1 C61.41 14.91, 59.11 23.21, 60 27.3 M60 9.1 C60.36 15.12, 59.14 20, 60 27.3 M60 27.3 C61.99 33.4, 56.6 35.99, 50.9 36.4 M60 27.3 C59.03 34.34, 58.26 38.2, 50.9 36.4 M50.9 36.4 C42.84 38.14, 33.36 37, 9.1 36.4 M50.9 36.4 C42.93 36.07, 32.93 37.51, 9.1 36.4 M9.1 36.4 C2.04 34.59, 0.7 32.71, 0 27.3 M9.1 36.4 C2.43 34.79, 1.13 34.55, 0 27.3 M0 27.3 C1.85 21.12, 1.58 14.77, 0 9.1 M0 27.3 C-0.51 22.65, 0.48 16.6, 0 9.1 M0 9.1 C0.3 1.8, 2.26 0.69, 9.1 0 M0 9.1 C-1 3.7, 3.61 1.16, 9.1 0" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(304.7399253845215 106.94221591949463) rotate(0 16.85999298095703 12.5)"><text x="16.85999298095703" y="17.619999999999997" font-family="Excalifont, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">RT</text></g><g stroke-linecap="round"><g transform="translate(352.3998603820801 118.32737754962207) rotate(0 25.100067138671875 -0.9889580040418622)"><path d="M-0.87 0.37 C7.18 0.18, 40.84 -0.89, 49.39 -1.09 M0.88 -0.47 C9.21 -1, 43.53 -2.4, 51.67 -2.75" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(352.3998603820801 118.32737754962207) rotate(0 25.100067138671875 -0.9889580040418622)"><path d="M28.56 6.78 C38.27 1.85, 48.22 -0.2, 51.67 -2.75 M28.56 6.78 C38.21 3.42, 46.64 -0.76, 51.67 -2.75" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(352.3998603820801 118.32737754962207) rotate(0 25.100067138671875 -0.9889580040418622)"><path d="M27.84 -10.3 C37.84 -8.51, 48.07 -3.84, 51.67 -2.75 M27.84 -10.3 C37.93 -6.9, 46.65 -4.31, 51.67 -2.75" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(403.5999946594238 100.84220218658447) rotate(0 17.999969482421875 17.5)"><path d="M8.75 0 C11.84 0.66, 16.13 0.16, 27.25 0 M8.75 0 C12.81 0.75, 17.38 -0.77, 27.25 0 M27.25 0 C33.75 0.7, 37.29 1.76, 36 8.75 M27.25 0 C33.71 -0.5, 35.33 2.75, 36 8.75 M36 8.75 C37.53 14.93, 36.9 21.46, 36 26.25 M36 8.75 C35.53 14.32, 35.92 18.34, 36 26.25 M36 26.25 C35.68 30.31, 34.24 33.54, 27.25 35 M36 26.25 C36.31 34.29, 34.62 33.13, 27.25 35 M27.25 35 C20.1 36.69, 15.3 34.37, 8.75 35 M27.25 35 C22.46 35.67, 18.65 34.25, 8.75 35 M8.75 35 C3.23 36.13, 1.43 31.9, 0 26.25 M8.75 35 C3.64 35.85, -0.78 33.46, 0 26.25 M0 26.25 C0.42 20.23, 0.71 15.59, 0 8.75 M0 26.25 C-1.02 20.1, -0.29 15.01, 0 8.75 M0 8.75 C1.42 1.29, 4.03 0.88, 8.75 0 M0 8.75 C0.03 3.17, 1.1 -0.9, 8.75 0" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(416.0999641418457 105.84220218658447) rotate(0 5.5 12.5)"><text x="5.5" y="17.619999999999997" font-family="Excalifont, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">u</text></g><g transform="translate(416.32347100630227 111.55249908047332) rotate(0 1.5438575075383767 -1.263160036321267)" stroke="none"><path fill="#1e1e1e" d="M -0.91,-0.91 Q -0.91,-0.91 0.60,-2.16 2.12,-3.42 2.30,-3.53 2.48,-3.65 2.68,-3.70 2.89,-3.75 3.10,-3.73 3.31,-3.71 3.51,-3.63 3.70,-3.54 3.86,-3.40 4.02,-3.26 4.12,-3.07 4.22,-2.89 4.26,-2.68 4.30,-2.47 4.27,-2.26 4.24,-2.05 4.15,-1.86 4.05,-1.67 3.90,-1.52 3.75,-1.37 3.56,-1.28 3.37,-1.19 3.16,-1.16 2.95,-1.13 2.74,-1.17 2.54,-1.21 2.35,-1.32 2.17,-1.42 2.03,-1.58 1.89,-1.74 1.80,-1.93 1.72,-2.13 1.70,-2.34 1.69,-2.55 1.74,-2.76 1.79,-2.96 1.91,-3.14 2.02,-3.32 2.19,-3.45 2.35,-3.58 2.55,-3.66 2.75,-3.73 2.96,-3.73 3.17,-3.74 3.38,-3.67 3.58,-3.61 3.75,-3.49 3.92,-3.36 4.04,-3.19 4.17,-3.02 4.23,-2.82 4.29,-2.61 4.28,-2.40 4.28,-2.19 4.20,-1.99 4.13,-1.79 4.00,-1.63 3.86,-1.46 3.86,-1.46 3.86,-1.46 2.39,-0.27 0.91,0.91 0.79,1.00 0.66,1.10 0.52,1.16 0.38,1.23 0.23,1.26 0.07,1.28 -0.07,1.27 -0.23,1.26 -0.38,1.22 -0.52,1.17 -0.66,1.09 -0.79,1.01 -0.90,0.90 -1.01,0.79 -1.09,0.66 -1.17,0.52 -1.22,0.38 -1.26,0.23 -1.27,0.07 -1.28,-0.07 -1.26,-0.23 -1.23,-0.38 -1.16,-0.52 -1.10,-0.66 -1.00,-0.79 -0.91,-0.91 -0.91,-0.91 L -0.91,-0.91 Z"></path></g><g transform="translate(420.4918712855649 107.82622783595579) rotate(0 2.947376987390342 1.6842169510690752)" stroke="none"><path fill="#1e1e1e" d="M -0.47,-1.19 Q -0.47,-1.19 -0.05,-1.38 0.37,-1.56 1.25,-1.45 2.13,-1.33 2.85,-0.76 3.58,-0.18 4.05,0.08 4.53,0.36 5.72,1.54 6.91,2.72 7.06,2.93 7.21,3.13 7.29,3.38 7.36,3.62 7.36,3.88 7.35,4.13 7.26,4.37 7.18,4.61 7.02,4.81 6.86,5.01 6.64,5.15 6.43,5.28 6.18,5.35 5.93,5.41 5.68,5.39 5.42,5.37 5.19,5.27 4.96,5.17 4.77,5.00 4.58,4.83 4.45,4.61 4.32,4.38 4.27,4.13 4.23,3.88 4.26,3.63 4.29,3.38 4.41,3.15 4.52,2.92 4.70,2.74 4.88,2.56 5.11,2.44 5.34,2.33 5.59,2.30 5.84,2.26 6.09,2.31 6.34,2.36 6.56,2.48 6.79,2.61 6.96,2.80 7.13,2.99 7.23,3.22 7.33,3.45 7.35,3.71 7.37,3.96 7.31,4.21 7.25,4.46 7.11,4.67 6.98,4.89 6.78,5.05 6.58,5.21 6.34,5.30 6.10,5.39 5.85,5.39 5.59,5.40 5.35,5.33 5.10,5.25 4.90,5.10 4.69,4.95 4.69,4.95 4.69,4.95 3.37,3.55 2.05,2.15 1.64,1.53 1.24,0.92 0.86,1.05 0.47,1.19 0.32,1.23 0.17,1.27 0.02,1.27 -0.13,1.28 -0.28,1.24 -0.43,1.21 -0.57,1.14 -0.71,1.07 -0.83,0.97 -0.94,0.87 -1.03,0.74 -1.12,0.61 -1.18,0.47 -1.24,0.33 -1.26,0.17 -1.28,0.02 -1.27,-0.13 -1.25,-0.28 -1.20,-0.43 -1.15,-0.57 -1.06,-0.70 -0.97,-0.83 -0.86,-0.94 -0.75,-1.04 -0.61,-1.12 -0.47,-1.19 -0.47,-1.19 L -0.47,-1.19 Z"></path></g><g stroke-linecap="round" transform="translate(30.600034713745117 76.50784969329834) rotate(0 64.59999084472656 20.20000457763672)"><path d="M10.1 0 C44.05 -1.15, 78.17 2.39, 119.1 0 M10.1 0 C40 0.21, 69.33 -1.12, 119.1 0 M119.1 0 C125.85 -1.69, 130.31 2.5, 129.2 10.1 M119.1 0 C124.19 1.36, 128.27 2.8, 129.2 10.1 M129.2 10.1 C130.04 16.44, 127.4 20.07, 129.2 30.3 M129.2 10.1 C129.56 17.64, 129.05 23.8, 129.2 30.3 M129.2 30.3 C129.37 38.62, 125.6 40.62, 119.1 40.4 M129.2 30.3 C127.3 36.56, 124.42 39.27, 119.1 40.4 M119.1 40.4 C95.67 40.98, 70.56 39.98, 10.1 40.4 M119.1 40.4 C81.58 40.64, 41.72 39.02, 10.1 40.4 M10.1 40.4 C5.33 41.21, -0.28 38.51, 0 30.3 M10.1 40.4 C4.24 41.32, 2.06 37.8, 0 30.3 M0 30.3 C0.6 23.76, 0.29 17.94, 0 10.1 M0 30.3 C0.7 24.12, -0.79 17.12, 0 10.1 M0 10.1 C-0.45 2.66, 1.38 0.68, 10.1 0 M0 10.1 C1.16 5.49, 4.31 1.69, 10.1 0" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(44.600027084350586 85.17663097381592) rotate(0 52.889976501464844 12.5)"><text x="0" y="17.619999999999997" font-family="Excalifont, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Data | d=u</text></g><g stroke-linecap="round"><g transform="translate(90.39998817443848 75.04221439361572) rotate(0 34.19999694824219 -19.400001525878906)"><path d="M0 0 C2.86 -0.9, 5.44 -2.56, 9.6 -4.8 M0 0 C3.93 -1.98, 6.98 -3.51, 9.6 -4.8 M9.6 -4.8 C23.97 -12.17, 33.4 -19.5, 68.4 -38.8 M9.6 -4.8 C29.8 -16.1, 48.73 -27.66, 68.4 -38.8" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(90.39998817443848 75.04221439361572) rotate(0 34.19999694824219 -19.400001525878906)"><path d="M52.32 -19.66 C57.22 -24.09, 61.54 -29.94, 68.4 -38.8 M52.32 -19.66 C59.07 -27.09, 64.1 -33.68, 68.4 -38.8" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(90.39998817443848 75.04221439361572) rotate(0 34.19999694824219 -19.400001525878906)"><path d="M43.78 -34.47 C50.89 -34.96, 57.53 -36.8, 68.4 -38.8 M43.78 -34.47 C53.52 -36.44, 61.69 -37.6, 68.4 -38.8" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round"><g transform="translate(212.4000186920166 41.842217445373535) rotate(0 -8.4000244140625 43.800025939941406)"><path d="M0 0 C-2.89 18.07, -9.8 35.69, -16.8 87.6 M0 0 C-3.72 20.38, -6.52 38.94, -16.8 87.6" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(212.4000186920166 41.842217445373535) rotate(0 -8.4000244140625 43.800025939941406)"><path d="M-20.48 62.87 C-18.51 68.05, -21.18 72.64, -16.8 87.6 M-20.48 62.87 C-19.67 68.98, -17.85 73.34, -16.8 87.6" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(212.4000186920166 41.842217445373535) rotate(0 -8.4000244140625 43.800025939941406)"><path d="M-3.72 66.29 C-5.2 70.65, -11.34 74.53, -16.8 87.6 M-3.72 66.29 C-6.71 71.68, -8.67 75.27, -16.8 87.6" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g></g><mask></mask>&lt;/svg&gt;

### 霢求预测模型的数据

**数据类型**：商?锢售数??折扣百分?（售价；建议零售价）?竞品相对价格*；促锢活动*弢始时?；活?持续时间*?初始库存*?品牌*?尺寸*?颜色*?等级*?
### 估计过去锢售款式的霢?
思想：使用未售罄商品的销售数据（?u_{is} = d_{is}$）来估计已售罄商品（提前卖完）的丢失锢?**霢求曲?*（Appendix B?--&gt; 估计 过去商品 在销售期?的真实需?--&gt;作为回归树模型的输入

* 基于朢小方差的层次聚类，依?*每小时销售比例数? 分层聚类 划分为几条需求曲线；
* 构树状图，可视化不同霢求曲线的相似性和差异性，并决定合适的聚类数量?* 霢求曲线反映类似商品在锢售期间的动规律（锢售数量的比例），可以估计商品的需求；

### 预测新款式的霢求和锢?
思想：利?历史数据的特??霢?给每个部分建立回归模型，预测未来首次曝光的款式需求；（Appendix C?
回归树过拟合：交叉验证；限制叶结点数量；装袋?
## 价格优化模型

前提：预先确定采购和分类决策下（确定霢求）

\(N\) 表示给定子类和事件中的样式集合，\(N = |N |\) 表示样式数；
\(\cal{M}\) 表示每种款式?可能价格集合*?M = |M|$ 表示可能价格数；
\(k\) 代表扢有竞争款式的价格总和?\(\cal{K}\) 表示 \(k\) 的可能集合；
\(D_{i,j,k}\) 表示当竞争款式的价格总和?\(k\) 时第 \(i\) 种款式和?\(j\) 种可能价格的*锢??\(x_{i,j}\) ?-1变量?x_{i,j}=1\(表示指定款式 \)i\( 的价格为 \)p_j$ ?
1. 设置每种款式?可能价格集合*，包含上界下界增量；
2. 确定竞争款式的价格和 \(k\) ；以?\(k\) 的所有可能集?\cal{K}$ ?
价格优化转化为整数规划问?IP_{k}$?
\[
\begin{aligned}
\max &amp;\sum\limits_{i \in \cal{N}}\sum\limits_{j \in \cal{M}}p_{j}\mathbb{E}[D_{i,j,k}|p_{j},k]x_{i,j}\\
\text{ st. }&amp;\sum\limits_{j\in \cal{M}}x_{i,j}=1 \quad,\forall i \in \cal{N}\\
&amp;\sum\limits_{i \in \cal{N}}\sum\limits_{j \in \cal{M}}p_{j}x_{i,j}=k\\
&amp;x_{i,j} \in \{0, 1\} \quad,\forall i\in\cal{N},j \in \cal{M}

\end{aligned}
\]


* 目标函数表示朢大化期望收益?* 第一组约束条?保证每种款式只分配一个价格；
* 第二个约束条?要求扢有款式的价格总和必须等于 \(k\) ?
我们可以将目标中?\(\mathbb{E}[D_{i,j,k}|p_{j,k}]\)替换?霢求预测模?中的预测值对扢?k\in \cal{K}\(求解\)IP_{k}\(选择目标值最大的?max_{k}(IP_{k})\) ；但求解该问题的时间代价过高，本文虑对该算法的改进?
### 算法改进

基于定理1?LP\(约束算法可以求得整数规划\)IP$的最优解?
* 遍历\(k\)的所有可能：

&gt;求解线规划最优解\(z^{*}_{LP_{k}}\)?&gt;计算*整数规划朢优解的下?\(LB_{k}=z^{*}_{LP_{k}}-\max\limits_{i\in\cal{N}}\{\max\limits_{j\in\cal{N}}\{p_{j}\tilde{D}_{i,j,k}\}-\min\limits_{j\in\cal{M}}\{p_{j}\tilde{D}_{i,j,k}\}\}\);

* 将所有可?k\(? 根据目标函数?z^{*}_{LP_{k}}\)降序顺序 进行排序?* 计算朢优目标的下界\(LB=\max\limits_{k\in\cal{K}}\{LB_{k}\}\)?\hat{k}=arg\max\limits_{k\in\cal{K}}\{LB_{k}\}\(?* 遍历\)l=1···K$:

&gt;求解\(IP_{K_{l}}\)?&gt;若整数规划最优?z^{*}_{IP_{k}}\gt LB\(则更?\hat{k}=k_{l}\)?LB=z^{*}_{IP_{k}}$;
&gt;?LB\ge z^{*}_{LP_{k_{l+1}}}\(? \)l=K$迭代停止；否则继续；

箢单理解：
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 553.9231235981763 257.5069574402319" width="553.9231235981763" height="257.5069574402319">
  <!-- svg-source:excalidraw -->
  
  <defs>
    <style class="style-fonts">

    </style>
    
  </defs>
  <rect x="0" y="0" width="553.9231235981763" height="257.5069574402319" fill="#ffffff"></rect><g stroke-linecap="round"><g transform="translate(185.44192023074396 246.63033246974476) rotate(0 -0.7597345070964394 -109.13982666060707)"><path d="M0 0 C-0.31 -44.42, -0.62 -88.85, -1.52 -218.28 M0 0 C-0.43 -62.23, -0.87 -124.47, -1.52 -218.28" stroke="#1e1e1e" stroke-width="1" fill="none"></path></g><g transform="translate(185.44192023074396 246.63033246974476) rotate(0 -0.7597345070964394 -109.13982666060707)"><path d="M7.19 -194.85 C5.42 -199.62, 3.65 -204.39, -1.52 -218.28 M7.19 -194.85 C4.71 -201.53, 2.23 -208.21, -1.52 -218.28" stroke="#1e1e1e" stroke-width="1" fill="none"></path></g><g transform="translate(185.44192023074396 246.63033246974476) rotate(0 -0.7597345070964394 -109.13982666060707)"><path d="M-9.91 -194.73 C-8.2 -199.52, -6.49 -204.31, -1.52 -218.28 M-9.91 -194.73 C-7.52 -201.44, -5.12 -208.16, -1.52 -218.28" stroke="#1e1e1e" stroke-width="1" fill="none"></path></g></g><mask></mask><g stroke-linecap="round"><g transform="translate(185.03280360887697 247.50695744023187) rotate(0 168.80875205043492 -0.0292315333380202)"><path d="M0 0 C113.63 -0.02, 227.26 -0.04, 337.62 -0.06 M0 0 C68.57 -0.01, 137.14 -0.02, 337.62 -0.06" stroke="#1e1e1e" stroke-width="1" fill="none"></path></g><g transform="translate(185.03280360887697 247.50695744023187) rotate(0 168.80875205043492 -0.0292315333380202)"><path d="M314.13 8.5 C322.03 5.62, 329.94 2.74, 337.62 -0.06 M314.13 8.5 C318.9 6.76, 323.67 5.02, 337.62 -0.06" stroke="#1e1e1e" stroke-width="1" fill="none"></path></g><g transform="translate(185.03280360887697 247.50695744023187) rotate(0 168.80875205043492 -0.0292315333380202)"><path d="M314.12 -8.6 C322.03 -5.73, 329.94 -2.85, 337.62 -0.06 M314.12 -8.6 C318.9 -6.87, 323.67 -5.13, 337.62 -0.06" stroke="#1e1e1e" stroke-width="1" fill="none"></path></g></g><mask></mask><g transform="translate(259.3121808434489 160.19509611174612) rotate(0 89.03587973612164 -46.72410914345687)" stroke="none"><path fill="#1e1e1e" d="M -0.55,-0.51 Q -0.55,-0.51 0.40,-1.63 1.36,-2.75 2.17,-3.89 2.98,-5.03 3.73,-6.24 4.48,-7.45 5.21,-8.69 5.94,-9.92 6.78,-11.15 7.63,-12.38 8.60,-13.59 9.57,-14.80 10.70,-16.16 11.83,-17.51 13.11,-19.07 14.39,-20.63 15.87,-22.30 17.35,-23.97 18.79,-25.56 20.22,-27.14 21.56,-28.53 22.90,-29.93 24.10,-31.14 25.31,-32.36 26.51,-33.55 27.71,-34.75 29.04,-36.05 30.38,-37.35 31.90,-38.82 33.43,-40.30 35.15,-41.96 36.87,-43.63 38.57,-45.33 40.27,-47.02 41.84,-48.57 43.40,-50.12 44.81,-51.49 46.21,-52.86 47.38,-54.00 48.54,-55.14 49.65,-56.12 50.75,-57.11 51.84,-58.05 52.93,-58.99 54.06,-59.98 55.19,-60.96 56.43,-61.99 57.68,-63.03 58.99,-64.13 60.30,-65.24 61.52,-66.39 62.75,-67.54 63.90,-68.73 65.04,-69.91 66.12,-71.06 67.20,-72.20 68.10,-73.22 69.00,-74.23 69.92,-75.17 70.83,-76.10 71.84,-76.94 72.86,-77.78 73.93,-78.49 74.99,-79.20 76.03,-79.83 77.07,-80.46 78.16,-81.09 79.24,-81.71 80.29,-82.30 81.35,-82.89 82.33,-83.42 83.32,-83.96 84.27,-84.49 85.22,-85.02 86.08,-85.52 86.94,-86.02 87.69,-86.48 88.44,-86.94 89.09,-87.39 89.73,-87.84 90.40,-88.28 91.07,-88.72 91.75,-89.18 92.43,-89.63 93.21,-90.11 93.99,-90.58 94.83,-91.03 95.68,-91.48 96.51,-91.87 97.34,-92.25 98.20,-92.59 99.06,-92.93 99.98,-93.21 100.91,-93.49 101.86,-93.70 102.82,-93.91 103.66,-94.06 104.50,-94.22 105.23,-94.32 105.96,-94.41 106.59,-94.49 107.22,-94.56 107.83,-94.59 108.43,-94.63 108.98,-94.64 109.52,-94.66 110.06,-94.67 110.59,-94.68 111.14,-94.68 111.69,-94.69 112.63,-94.71 113.57,-94.72 114.56,-94.52 115.55,-94.32 116.45,-93.92 117.35,-93.52 118.17,-93.09 119.00,-92.66 119.49,-92.34 119.98,-92.02 120.51,-91.71 121.03,-91.40 121.62,-91.13 122.22,-90.85 122.89,-90.57 123.57,-90.28 124.30,-89.89 125.04,-89.50 125.71,-89.07 126.39,-88.63 126.99,-88.18 127.58,-87.72 128.13,-87.28 128.68,-86.84 129.25,-86.39 129.81,-85.94 130.34,-85.51 130.86,-85.07 131.37,-84.64 131.88,-84.20 132.43,-83.70 132.97,-83.20 133.56,-82.67 134.15,-82.13 134.73,-81.69 135.31,-81.26 135.91,-80.81 136.51,-80.36 137.08,-79.96 137.65,-79.56 138.25,-79.09 138.84,-78.63 139.45,-78.06 140.05,-77.49 140.64,-76.89 141.22,-76.29 141.81,-75.71 142.40,-75.12 143.03,-74.58 143.66,-74.04 144.34,-73.41 145.02,-72.78 145.73,-72.03 146.44,-71.28 147.16,-70.38 147.89,-69.48 148.57,-68.56 149.26,-67.63 149.90,-66.74 150.54,-65.85 151.15,-65.00 151.76,-64.16 152.32,-63.37 152.87,-62.59 153.35,-61.93 153.82,-61.28 154.24,-60.72 154.66,-60.16 155.06,-59.64 155.46,-59.12 155.84,-58.64 156.22,-58.16 156.58,-57.69 156.94,-57.22 157.25,-56.73 157.56,-56.24 158.11,-55.37 158.66,-54.50 159.08,-53.94 159.49,-53.39 160.03,-52.76 160.57,-52.13 160.92,-51.65 161.27,-51.18 161.64,-50.71 162.00,-50.23 162.41,-49.76 162.82,-49.28 163.27,-48.72 163.73,-48.16 164.24,-47.58 164.76,-47.00 165.29,-46.42 165.82,-45.84 166.35,-45.24 166.87,-44.64 167.36,-44.09 167.85,-43.54 168.33,-42.90 168.81,-42.27 169.31,-41.59 169.81,-40.91 170.29,-40.26 170.77,-39.61 171.22,-39.06 171.67,-38.52 172.08,-38.07 172.49,-37.62 172.88,-37.17 173.28,-36.72 173.68,-36.27 174.08,-35.81 174.49,-35.30 174.89,-34.78 175.24,-34.30 175.58,-33.82 175.88,-33.37 176.18,-32.92 176.47,-32.45 176.75,-31.97 177.02,-31.46 177.28,-30.95 177.70,-30.18 178.12,-29.40 178.35,-29.54 178.58,-29.68 178.61,-29.61 178.64,-29.54 178.66,-29.46 178.67,-29.38 178.66,-29.30 178.66,-29.23 178.63,-29.15 178.61,-29.08 178.57,-29.01 178.53,-28.94 178.47,-28.89 178.41,-28.83 178.34,-28.79 178.28,-28.75 178.20,-28.73 178.12,-28.70 178.05,-28.70 177.97,-28.70 177.89,-28.71 177.81,-28.73 177.74,-28.76 177.67,-28.79 177.61,-28.84 177.54,-28.89 177.50,-28.95 177.45,-29.02 177.43,-29.32 177.42,-29.62 177.48,-29.71 177.54,-29.80 177.62,-29.87 177.70,-29.93 177.80,-29.96 177.90,-30.00 178.01,-30.00 178.12,-30.00 178.22,-29.97 178.32,-29.93 178.40,-29.87 178.49,-29.80 178.55,-29.72 178.61,-29.63 178.64,-29.53 178.67,-29.42 178.66,-29.32 178.66,-29.21 178.62,-29.11 178.58,-29.01 178.51,-28.93 178.44,-28.85 178.35,-28.80 178.26,-28.74 178.16,-28.72 178.05,-28.70 177.95,-28.71 177.84,-28.72 177.74,-28.76 177.65,-28.81 177.57,-28.88 177.49,-28.95 177.44,-29.05 177.39,-29.14 177.37,-29.24 177.36,-29.35 177.37,-29.45 177.39,-29.56 177.44,-29.65 177.49,-29.75 177.57,-29.82 177.64,-29.89 177.74,-29.94 177.84,-29.98 177.94,-30.00 178.05,-30.01 178.15,-29.98 178.25,-29.96 178.35,-29.91 178.44,-29.85 178.51,-29.77 178.57,-29.69 178.61,-29.59 178.65,-29.49 178.66,-29.39 178.67,-29.28 178.62,-29.48 178.58,-29.68 178.61,-29.61 178.64,-29.54 178.66,-29.46 178.67,-29.38 178.66,-29.30 178.66,-29.23 178.63,-29.15 178.61,-29.08 178.57,-29.01 178.53,-28.94 178.47,-28.89 178.41,-28.83 178.34,-28.79 178.28,-28.75 178.20,-28.73 178.13,-28.70 178.05,-28.70 177.97,-28.70 177.89,-28.71 177.81,-28.73 177.74,-28.76 177.67,-28.79 177.61,-28.84 177.54,-28.89 177.50,-28.95 177.45,-29.02 176.37,-28.40 175.29,-27.78 174.84,-28.62 174.39,-29.45 173.94,-30.28 173.48,-31.10 172.90,-31.94 172.31,-32.78 171.98,-33.23 171.64,-33.67 171.24,-34.13 170.84,-34.58 170.47,-35.02 170.09,-35.45 169.62,-35.96 169.16,-36.47 168.66,-37.09 168.17,-37.71 167.70,-38.36 167.22,-39.02 166.74,-39.68 166.26,-40.34 165.86,-40.88 165.45,-41.42 164.96,-41.98 164.47,-42.53 163.97,-43.11 163.46,-43.68 162.91,-44.29 162.35,-44.90 161.81,-45.53 161.27,-46.15 160.82,-46.70 160.38,-47.25 159.94,-47.80 159.49,-48.34 159.11,-48.86 158.74,-49.37 158.20,-50.11 157.67,-50.85 157.13,-51.51 156.60,-52.17 156.09,-52.97 155.59,-53.77 155.07,-54.59 154.56,-55.41 154.22,-55.86 153.88,-56.32 153.49,-56.82 153.09,-57.33 152.69,-57.86 152.29,-58.40 151.87,-58.98 151.44,-59.56 150.95,-60.24 150.46,-60.92 149.93,-61.69 149.40,-62.47 148.80,-63.32 148.20,-64.17 147.57,-65.05 146.94,-65.93 146.30,-66.81 145.66,-67.70 145.01,-68.51 144.36,-69.33 143.73,-70.01 143.10,-70.69 142.44,-71.28 141.79,-71.88 141.10,-72.49 140.40,-73.09 139.78,-73.70 139.16,-74.31 138.63,-74.86 138.10,-75.41 137.59,-75.89 137.07,-76.38 136.54,-76.80 136.00,-77.23 135.40,-77.65 134.81,-78.07 134.18,-78.54 133.55,-79.01 132.89,-79.53 132.23,-80.06 131.64,-80.61 131.05,-81.17 130.57,-81.64 130.08,-82.11 129.59,-82.54 129.09,-82.97 128.60,-83.39 128.11,-83.81 127.54,-84.27 126.98,-84.73 126.46,-85.15 125.93,-85.58 125.42,-85.97 124.92,-86.36 124.34,-86.74 123.77,-87.11 123.13,-87.45 122.50,-87.79 121.78,-88.10 121.06,-88.41 120.35,-88.75 119.64,-89.09 118.66,-89.72 117.67,-90.34 116.93,-90.73 116.18,-91.12 115.48,-91.44 114.78,-91.77 114.14,-91.92 113.51,-92.07 112.60,-92.07 111.70,-92.07 110.64,-92.07 109.59,-92.07 108.56,-92.03 107.53,-91.99 106.92,-91.91 106.32,-91.84 105.64,-91.74 104.97,-91.64 104.16,-91.50 103.36,-91.36 102.50,-91.18 101.63,-91.01 100.81,-90.77 100.00,-90.54 99.20,-90.23 98.41,-89.92 97.64,-89.57 96.88,-89.22 96.10,-88.81 95.32,-88.39 94.58,-87.95 93.84,-87.50 93.16,-87.05 92.47,-86.60 91.83,-86.17 91.18,-85.74 90.48,-85.26 89.78,-84.77 89.01,-84.29 88.23,-83.81 87.35,-83.29 86.46,-82.77 85.50,-82.24 84.54,-81.71 83.56,-81.19 82.59,-80.66 81.55,-80.08 80.51,-79.51 79.45,-78.90 78.40,-78.29 77.40,-77.68 76.40,-77.07 75.43,-76.44 74.47,-75.80 73.55,-75.07 72.63,-74.33 71.75,-73.45 70.88,-72.56 69.95,-71.53 69.02,-70.49 67.93,-69.33 66.84,-68.17 65.65,-66.95 64.46,-65.72 63.19,-64.52 61.91,-63.32 60.59,-62.21 59.27,-61.10 58.05,-60.09 56.82,-59.08 55.69,-58.10 54.55,-57.11 53.47,-56.19 52.40,-55.26 51.33,-54.31 50.27,-53.36 49.09,-52.23 47.92,-51.10 46.52,-49.74 45.11,-48.39 43.55,-46.85 41.98,-45.30 40.27,-43.60 38.56,-41.89 36.83,-40.23 35.11,-38.56 33.58,-37.09 32.06,-35.61 30.73,-34.33 29.39,-33.04 28.19,-31.86 26.99,-30.68 25.79,-29.49 24.59,-28.29 23.26,-26.94 21.94,-25.58 20.51,-24.01 19.08,-22.44 17.62,-20.80 16.16,-19.17 14.86,-17.61 13.56,-16.04 12.43,-14.72 11.30,-13.39 10.35,-12.25 9.39,-11.12 8.55,-9.98 7.72,-8.84 6.93,-7.60 6.15,-6.36 5.33,-5.14 4.50,-3.91 3.58,-2.72 2.66,-1.54 1.61,-0.51 0.55,0.51 0.48,0.57 0.41,0.63 0.33,0.67 0.24,0.71 0.15,0.73 0.07,0.75 -0.02,0.75 -0.11,0.75 -0.20,0.72 -0.28,0.70 -0.36,0.65 -0.44,0.61 -0.51,0.55 -0.58,0.48 -0.63,0.41 -0.68,0.33 -0.71,0.24 -0.74,0.16 -0.75,0.06 -0.75,-0.02 -0.74,-0.11 -0.73,-0.20 -0.69,-0.28 -0.66,-0.37 -0.60,-0.44 -0.55,-0.51 -0.55,-0.51 L -0.55,-0.51 Z"></path></g><g transform="translate(241.25369218343297 229.39000571353995) rotate(0 67.67545842258167 -45.75981632542698)" stroke="none"><path fill="#1e1e1e" d="M -0.57,-0.33 Q -0.57,-0.33 -0.09,-1.41 0.39,-2.50 1.00,-3.44 1.62,-4.38 2.29,-5.21 2.96,-6.05 3.62,-6.83 4.28,-7.61 4.95,-8.41 5.61,-9.20 6.38,-10.11 7.15,-11.01 8.04,-12.00 8.92,-13.00 9.93,-14.24 10.94,-15.48 12.06,-16.87 13.18,-18.27 14.22,-19.59 15.27,-20.92 16.14,-22.10 17.01,-23.27 17.77,-24.30 18.53,-25.32 19.22,-26.16 19.92,-26.99 20.73,-27.81 21.54,-28.63 22.39,-29.48 23.24,-30.32 24.22,-31.23 25.19,-32.14 26.24,-33.18 27.29,-34.22 28.46,-35.49 29.63,-36.75 30.81,-38.13 31.99,-39.50 33.12,-40.80 34.25,-42.09 35.19,-43.17 36.12,-44.24 36.87,-45.11 37.62,-45.98 38.22,-46.70 38.82,-47.41 39.44,-48.06 40.06,-48.71 40.74,-49.34 41.41,-49.98 42.11,-50.64 42.80,-51.30 43.52,-51.98 44.23,-52.67 44.96,-53.36 45.68,-54.05 46.43,-54.75 47.19,-55.46 48.05,-56.23 48.91,-57.01 49.83,-57.91 50.74,-58.82 51.68,-59.83 52.61,-60.85 53.44,-61.79 54.28,-62.74 55.03,-63.63 55.79,-64.52 56.51,-65.37 57.24,-66.22 57.94,-67.02 58.64,-67.83 59.28,-68.54 59.91,-69.25 60.54,-69.89 61.16,-70.54 61.82,-71.12 62.48,-71.70 63.11,-72.23 63.75,-72.75 64.32,-73.29 64.90,-73.82 65.51,-74.39 66.12,-74.95 66.69,-75.47 67.25,-75.99 67.80,-76.47 68.36,-76.95 68.96,-77.50 69.57,-78.04 70.35,-78.66 71.13,-79.27 71.87,-79.90 72.61,-80.52 73.26,-81.11 73.92,-81.71 74.53,-82.24 75.15,-82.78 75.76,-83.31 76.37,-83.84 76.99,-84.38 77.62,-84.93 78.18,-85.43 78.75,-85.93 79.26,-86.34 79.77,-86.76 80.20,-87.08 80.64,-87.40 81.39,-87.84 82.14,-88.28 82.89,-88.71 83.64,-89.14 84.52,-89.52 85.40,-89.91 86.42,-90.18 87.45,-90.46 87.96,-90.64 88.46,-90.81 89.04,-90.99 89.62,-91.17 90.16,-91.30 90.70,-91.44 91.79,-91.63 92.87,-91.81 93.53,-91.93 94.20,-92.05 94.82,-92.20 95.45,-92.34 96.03,-92.45 96.61,-92.56 97.51,-92.66 98.41,-92.76 99.16,-92.78 99.91,-92.80 100.55,-92.83 101.18,-92.85 101.79,-92.84 102.41,-92.82 103.02,-92.72 103.63,-92.62 104.18,-92.44 104.72,-92.25 105.26,-91.96 105.80,-91.67 106.29,-91.38 106.79,-91.09 107.40,-90.60 108.02,-90.11 108.70,-89.53 109.37,-88.96 109.78,-88.58 110.19,-88.21 110.95,-87.39 111.71,-86.57 112.29,-85.57 112.88,-84.58 113.16,-84.12 113.45,-83.66 114.07,-82.85 114.68,-82.04 115.02,-81.62 115.37,-81.21 115.74,-80.72 116.11,-80.22 116.48,-79.75 116.86,-79.28 117.20,-78.88 117.55,-78.47 117.90,-78.05 118.26,-77.62 118.61,-77.19 118.96,-76.75 119.33,-76.28 119.71,-75.80 120.06,-75.36 120.42,-74.91 121.09,-74.21 121.77,-73.50 122.47,-72.71 123.17,-71.91 123.48,-71.47 123.79,-71.04 124.11,-70.57 124.43,-70.10 124.73,-69.54 125.03,-68.98 125.27,-68.42 125.51,-67.87 125.73,-67.27 125.95,-66.67 126.19,-66.00 126.42,-65.32 126.66,-64.53 126.90,-63.74 127.13,-62.86 127.36,-61.98 127.59,-61.24 127.83,-60.50 128.02,-59.75 128.22,-59.00 128.37,-58.36 128.52,-57.72 128.83,-56.91 129.14,-56.11 129.55,-55.38 129.96,-54.66 130.19,-54.16 130.43,-53.65 130.77,-52.82 131.12,-51.99 131.51,-51.23 131.90,-50.48 132.16,-50.00 132.41,-49.52 132.73,-48.92 133.05,-48.33 133.39,-47.63 133.72,-46.93 134.04,-46.28 134.36,-45.63 134.87,-44.22 135.37,-42.80 135.47,-42.76 135.57,-42.72 135.65,-42.65 135.74,-42.59 135.79,-42.50 135.85,-42.41 135.87,-42.30 135.90,-42.20 135.89,-42.09 135.88,-41.99 135.83,-41.89 135.79,-41.79 135.72,-41.71 135.65,-41.64 135.55,-41.59 135.46,-41.53 135.36,-41.51 135.25,-41.50 135.15,-41.51 135.04,-41.53 134.95,-41.58 134.85,-41.62 134.78,-41.70 134.70,-41.78 134.66,-41.87 134.61,-41.97 134.60,-42.07 134.59,-42.18 134.61,-42.28 134.63,-42.39 134.68,-42.48 134.73,-42.57 134.81,-42.64 134.89,-42.71 134.99,-42.75 135.09,-42.79 135.20,-42.80 135.30,-42.81 135.41,-42.78 135.51,-42.75 135.60,-42.69 135.69,-42.64 135.75,-42.55 135.82,-42.47 135.85,-42.37 135.89,-42.27 135.89,-42.16 135.89,-42.06 135.86,-41.96 135.83,-41.85 135.76,-41.77 135.70,-41.68 135.61,-41.62 135.53,-41.56 135.42,-41.53 135.32,-41.50 135.22,-41.51 135.11,-41.51 135.11,-41.51 135.11,-41.51 133.25,-43.25 131.39,-45.00 131.06,-45.67 130.74,-46.34 130.44,-46.95 130.14,-47.55 129.84,-48.10 129.54,-48.66 129.13,-49.41 128.72,-50.15 128.38,-50.88 128.03,-51.61 127.71,-52.35 127.39,-53.10 126.89,-54.00 126.39,-54.91 126.18,-55.41 125.97,-55.91 125.79,-56.47 125.61,-57.03 125.47,-57.64 125.32,-58.24 125.14,-58.93 124.97,-59.61 124.72,-60.43 124.47,-61.25 124.26,-62.07 124.06,-62.89 123.84,-63.63 123.63,-64.37 123.41,-65.02 123.20,-65.66 123.01,-66.19 122.81,-66.72 122.40,-67.59 121.99,-68.46 121.44,-69.26 120.89,-70.07 120.29,-70.75 119.69,-71.43 119.31,-71.82 118.93,-72.20 118.53,-72.65 118.13,-73.10 117.77,-73.55 117.41,-74.01 117.05,-74.47 116.70,-74.93 116.03,-75.76 115.36,-76.59 114.98,-77.04 114.59,-77.48 114.19,-77.98 113.80,-78.48 113.46,-78.93 113.13,-79.37 112.76,-79.83 112.38,-80.28 112.05,-80.72 111.72,-81.16 111.35,-81.67 110.99,-82.18 110.66,-82.74 110.34,-83.30 109.91,-84.08 109.48,-84.86 108.89,-85.51 108.30,-86.16 107.55,-86.82 106.80,-87.48 106.27,-87.96 105.73,-88.44 105.09,-88.87 104.46,-89.30 103.80,-89.64 103.14,-89.97 102.47,-90.07 101.80,-90.16 101.22,-90.15 100.65,-90.13 99.95,-90.11 99.26,-90.09 98.59,-90.07 97.92,-90.04 96.98,-89.91 96.04,-89.77 95.35,-89.61 94.66,-89.45 93.96,-89.33 93.27,-89.21 92.72,-89.12 92.17,-89.04 91.27,-88.86 90.36,-88.69 89.83,-88.53 89.30,-88.38 88.18,-88.05 87.06,-87.71 86.35,-87.49 85.63,-87.27 84.86,-86.88 84.08,-86.49 83.40,-86.12 82.73,-85.75 82.03,-85.28 81.34,-84.81 80.87,-84.43 80.39,-84.05 79.81,-83.55 79.24,-83.05 78.61,-82.51 77.97,-81.97 77.36,-81.45 76.75,-80.93 76.16,-80.41 75.56,-79.89 74.87,-79.27 74.18,-78.65 73.40,-78.01 72.63,-77.36 71.91,-76.80 71.19,-76.24 70.57,-75.68 69.94,-75.12 69.41,-74.66 68.88,-74.20 68.33,-73.70 67.78,-73.19 67.17,-72.61 66.56,-72.03 65.94,-71.45 65.32,-70.87 64.72,-70.36 64.11,-69.85 63.52,-69.33 62.93,-68.81 62.34,-68.21 61.75,-67.61 61.13,-66.91 60.50,-66.21 59.81,-65.41 59.12,-64.62 58.39,-63.77 57.67,-62.92 56.90,-62.02 56.14,-61.11 55.29,-60.14 54.44,-59.17 53.47,-58.11 52.50,-57.05 51.54,-56.10 50.59,-55.14 49.75,-54.38 48.90,-53.63 48.16,-52.93 47.42,-52.24 46.70,-51.54 45.98,-50.84 45.26,-50.16 44.54,-49.47 43.84,-48.80 43.14,-48.13 42.50,-47.55 41.87,-46.96 41.30,-46.38 40.74,-45.81 40.13,-45.08 39.52,-44.35 38.77,-43.47 38.01,-42.59 37.08,-41.52 36.15,-40.44 35.02,-39.15 33.89,-37.86 32.68,-36.46 31.47,-35.05 30.26,-33.75 29.04,-32.44 27.96,-31.38 26.88,-30.32 25.92,-29.44 24.96,-28.56 24.12,-27.74 23.27,-26.91 22.52,-26.17 21.78,-25.43 21.13,-24.66 20.47,-23.88 19.71,-22.86 18.94,-21.83 18.05,-20.63 17.15,-19.43 16.09,-18.10 15.03,-16.77 13.90,-15.38 12.77,-13.98 11.71,-12.71 10.66,-11.43 9.77,-10.46 8.88,-9.49 8.09,-8.61 7.30,-7.74 6.60,-6.95 5.89,-6.17 5.21,-5.44 4.53,-4.72 3.86,-3.99 3.20,-3.27 2.58,-2.43 1.96,-1.59 1.26,-0.63 0.57,0.33 0.52,0.39 0.48,0.46 0.41,0.51 0.35,0.56 0.28,0.59 0.21,0.63 0.13,0.64 0.05,0.66 -0.02,0.66 -0.10,0.65 -0.18,0.63 -0.25,0.61 -0.32,0.57 -0.39,0.53 -0.45,0.47 -0.51,0.42 -0.55,0.35 -0.60,0.28 -0.62,0.21 -0.65,0.13 -0.65,0.05 -0.66,-0.02 -0.65,-0.10 -0.64,-0.18 -0.60,-0.25 -0.57,-0.33 -0.57,-0.33 L -0.57,-0.33 Z"></path></g><g transform="translate(448.487856608527 116.65607374587444) rotate(0 0.555185113653323 13.17859717315207)" stroke="none"><path fill="#1e1e1e" d="M 0.67,-0.17 Q 0.67,-0.17 1.03,1.06 1.40,2.29 1.59,4.26 1.79,6.23 1.82,9.07 1.85,11.91 1.72,14.96 1.59,18.01 1.47,20.19 1.35,22.38 1.06,24.02 0.76,25.67 0.74,25.78 0.71,25.88 0.66,25.97 0.60,26.06 0.52,26.13 0.44,26.19 0.34,26.23 0.24,26.27 0.13,26.27 0.02,26.27 -0.07,26.24 -0.17,26.21 -0.26,26.15 -0.34,26.09 -0.41,26.00 -0.47,25.92 -0.50,25.82 -0.53,25.71 -0.53,25.61 -0.53,25.50 -0.49,25.40 -0.45,25.30 -0.39,25.22 -0.32,25.14 -0.23,25.08 -0.14,25.02 -0.04,25.00 0.05,24.97 0.16,24.98 0.26,24.99 0.36,25.03 0.46,25.07 0.54,25.14 0.62,25.21 0.67,25.30 0.72,25.39 0.75,25.50 0.77,25.60 0.75,25.71 0.74,25.81 0.69,25.91 0.64,26.00 0.57,26.08 0.49,26.15 0.40,26.20 0.30,26.25 0.20,26.26 0.09,26.28 -0.00,26.26 -0.10,26.24 -0.20,26.19 -0.29,26.14 -0.36,26.06 -0.43,25.98 -0.47,25.88 -0.52,25.78 -0.53,25.68 -0.54,25.57 -0.54,25.57 -0.54,25.57 -0.58,23.92 -0.62,22.26 -0.47,20.09 -0.33,17.92 -0.16,14.92 -0.00,11.92 0.01,9.14 0.02,6.36 -0.04,4.52 -0.12,2.68 -0.39,1.42 -0.67,0.17 -0.68,0.08 -0.69,0.00 -0.68,-0.07 -0.67,-0.15 -0.64,-0.23 -0.61,-0.31 -0.56,-0.38 -0.52,-0.45 -0.46,-0.51 -0.39,-0.56 -0.32,-0.60 -0.25,-0.64 -0.17,-0.66 -0.09,-0.68 -0.00,-0.68 0.07,-0.68 0.15,-0.66 0.23,-0.64 0.31,-0.61 0.38,-0.57 0.45,-0.51 0.51,-0.46 0.56,-0.39 0.60,-0.32 0.64,-0.24 0.67,-0.17 0.67,-0.17 L 0.67,-0.17 Z"></path></g><g transform="translate(458.8320383942654 126.35739365292625) rotate(0 -4.383124852434804 7.772734270992146)" stroke="none"><path fill="#1e1e1e" d="M 0.65,0.31 Q 0.65,0.31 0.33,1.02 0.01,1.74 -0.47,2.43 -0.97,3.13 -1.66,3.83 -2.34,4.52 -3.18,5.08 -4.02,5.63 -4.80,6.01 -5.59,6.38 -6.21,6.57 -6.83,6.75 -7.56,6.89 -8.29,7.03 -7.52,7.61 -6.76,8.19 -6.33,8.74 -5.90,9.29 -5.44,9.90 -4.99,10.51 -4.52,11.13 -4.05,11.74 -3.58,12.23 -3.12,12.73 -1.63,13.81 -0.13,14.90 -0.04,14.95 0.05,15.00 0.12,15.08 0.19,15.16 0.23,15.25 0.28,15.35 0.29,15.46 0.30,15.56 0.27,15.67 0.25,15.77 0.19,15.86 0.14,15.95 0.06,16.02 -0.02,16.09 -0.11,16.12 -0.21,16.16 -0.32,16.17 -0.43,16.17 -0.53,16.14 -0.63,16.11 -0.72,16.05 -0.80,15.99 -0.87,15.91 -0.93,15.82 -0.96,15.72 -1.00,15.62 -0.99,15.51 -0.99,15.41 -0.96,15.31 -0.92,15.20 -0.86,15.12 -0.79,15.04 -0.70,14.98 -0.62,14.92 -0.51,14.89 -0.41,14.87 -0.30,14.87 -0.20,14.88 -0.10,14.92 -0.00,14.96 0.07,15.03 0.15,15.10 0.20,15.19 0.26,15.28 0.28,15.39 0.30,15.49 0.29,15.60 0.27,15.70 0.23,15.80 0.18,15.89 0.11,15.97 0.03,16.05 -0.05,16.10 -0.14,16.14 -0.25,16.16 -0.35,16.18 -0.46,16.16 -0.56,16.14 -0.56,16.14 -0.56,16.14 -2.59,15.11 -4.61,14.08 -5.12,13.50 -5.63,12.92 -6.10,12.27 -6.56,11.62 -6.97,11.00 -7.38,10.37 -7.79,9.77 -8.20,9.16 -8.56,8.59 -8.93,8.01 -9.15,7.09 -9.37,6.17 -8.73,5.79 -8.08,5.41 -7.17,5.19 -6.26,4.96 -5.57,4.64 -4.88,4.31 -4.16,3.85 -3.44,3.40 -2.83,2.81 -2.21,2.22 -1.78,1.65 -1.35,1.08 -1.00,0.38 -0.65,-0.31 -0.60,-0.38 -0.56,-0.46 -0.49,-0.52 -0.43,-0.58 -0.35,-0.62 -0.28,-0.66 -0.19,-0.69 -0.11,-0.71 -0.02,-0.72 0.05,-0.72 0.14,-0.70 0.23,-0.68 0.31,-0.65 0.38,-0.61 0.45,-0.55 0.52,-0.50 0.57,-0.43 0.63,-0.36 0.66,-0.28 0.69,-0.20 0.71,-0.11 0.72,-0.02 0.71,0.05 0.71,0.14 0.68,0.22 0.65,0.31 0.65,0.31 L 0.65,0.31 Z"></path></g><g transform="translate(463.91643468712067 137.57820040915158) rotate(0 -0.14608632676714706 4.4123385507921284)" stroke="none"><path fill="#1e1e1e" d="M 0.74,-0.02 Q 0.74,-0.02 0.82,1.58 0.90,3.20 0.94,4.26 0.97,5.31 0.54,7.22 0.11,9.13 0.04,9.21 -0.03,9.28 -0.13,9.33 -0.22,9.37 -0.33,9.38 -0.43,9.39 -0.54,9.37 -0.64,9.35 -0.73,9.30 -0.82,9.24 -0.89,9.16 -0.96,9.08 -1.00,8.98 -1.04,8.88 -1.05,8.78 -1.05,8.67 -1.03,8.57 -1.00,8.47 -0.94,8.38 -0.88,8.29 -0.80,8.22 -0.71,8.16 -0.61,8.13 -0.51,8.09 -0.40,8.09 -0.30,8.09 -0.20,8.12 -0.10,8.16 -0.01,8.22 0.06,8.29 0.12,8.37 0.18,8.46 0.21,8.56 0.24,8.67 0.24,8.77 0.23,8.88 0.19,8.98 0.15,9.08 0.08,9.16 0.02,9.24 -0.07,9.29 -0.16,9.35 -0.26,9.37 -0.36,9.39 -0.47,9.38 -0.57,9.37 -0.67,9.33 -0.77,9.28 -0.85,9.21 -0.92,9.14 -0.97,9.04 -1.02,8.95 -1.04,8.85 -1.06,8.74 -1.04,8.64 -1.02,8.53 -0.98,8.44 -0.93,8.34 -0.93,8.34 -0.93,8.34 -0.81,6.85 -0.69,5.35 -0.69,4.30 -0.70,3.25 -0.72,1.63 -0.74,0.02 -0.73,-0.06 -0.72,-0.15 -0.69,-0.24 -0.66,-0.32 -0.62,-0.40 -0.57,-0.47 -0.50,-0.53 -0.44,-0.59 -0.36,-0.64 -0.28,-0.68 -0.19,-0.71 -0.11,-0.73 -0.02,-0.73 0.06,-0.74 0.15,-0.72 0.24,-0.70 0.32,-0.66 0.40,-0.62 0.47,-0.56 0.54,-0.51 0.59,-0.43 0.64,-0.36 0.68,-0.28 0.71,-0.20 0.72,-0.11 0.74,-0.02 0.74,-0.02 L 0.74,-0.02 Z"></path></g><g transform="translate(415.5852065169087 190.52633435857956) rotate(0 1.4610416174782586 13.879895366043456)" stroke="none"><path fill="#1e1e1e" d="M 0.21,-0.65 Q 0.21,-0.65 1.00,-0.48 1.78,-0.31 2.56,0.29 3.33,0.89 3.50,1.76 3.67,2.62 3.72,4.21 3.78,5.81 3.82,8.30 3.86,10.80 3.89,13.49 3.92,16.18 3.89,18.56 3.87,20.94 3.55,24.04 3.23,27.13 3.22,27.21 3.21,27.28 3.18,27.36 3.15,27.43 3.10,27.50 3.05,27.56 2.99,27.61 2.93,27.66 2.86,27.70 2.79,27.73 2.71,27.75 2.64,27.77 2.56,27.77 2.48,27.76 2.40,27.74 2.33,27.72 2.26,27.69 2.19,27.65 2.13,27.59 2.07,27.54 2.03,27.47 1.98,27.41 1.96,27.33 1.93,27.26 1.92,27.18 1.91,27.10 2.01,27.34 2.11,27.59 2.05,27.50 1.99,27.42 1.95,27.31 1.92,27.21 1.92,27.11 1.92,27.00 1.96,26.90 1.99,26.80 2.06,26.72 2.12,26.63 2.21,26.57 2.30,26.52 2.40,26.49 2.51,26.46 2.61,26.47 2.72,26.47 2.82,26.51 2.92,26.56 3.00,26.62 3.08,26.69 3.13,26.79 3.18,26.88 3.21,26.98 3.23,27.09 3.21,27.19 3.20,27.30 3.16,27.39 3.11,27.49 3.04,27.56 2.96,27.64 2.87,27.69 2.77,27.74 2.67,27.75 2.56,27.77 2.46,27.75 2.35,27.73 2.26,27.68 2.17,27.63 2.10,27.55 2.02,27.48 1.98,27.38 1.94,27.28 1.93,27.18 1.92,27.07 1.94,26.97 1.96,26.86 2.02,26.77 2.08,26.68 2.16,26.62 2.24,26.55 2.34,26.51 2.44,26.47 2.54,26.47 2.65,26.46 2.75,26.49 2.85,26.52 3.04,26.82 3.23,27.13 3.22,27.21 3.21,27.28 3.18,27.36 3.15,27.43 3.10,27.50 3.05,27.56 2.99,27.61 2.93,27.66 2.86,27.70 2.79,27.73 2.71,27.75 2.64,27.77 2.56,27.77 2.48,27.76 2.40,27.74 2.33,27.72 2.26,27.69 2.19,27.65 2.13,27.59 2.07,27.54 2.03,27.47 1.98,27.41 1.96,27.33 1.93,27.26 1.92,27.18 1.91,27.10 1.83,24.00 1.76,20.90 1.83,18.54 1.90,16.19 1.92,13.50 1.93,10.81 1.94,8.33 1.95,5.85 1.93,4.34 1.91,2.84 1.57,2.08 1.23,1.32 0.50,0.98 -0.21,0.65 -0.29,0.61 -0.36,0.58 -0.43,0.53 -0.49,0.47 -0.54,0.41 -0.59,0.34 -0.62,0.26 -0.66,0.19 -0.67,0.11 -0.68,0.02 -0.68,-0.05 -0.67,-0.13 -0.64,-0.21 -0.62,-0.29 -0.57,-0.36 -0.53,-0.43 -0.47,-0.49 -0.41,-0.55 -0.34,-0.59 -0.27,-0.63 -0.19,-0.65 -0.11,-0.68 -0.02,-0.68 0.05,-0.68 0.13,-0.67 0.21,-0.65 0.21,-0.65 L 0.21,-0.65 Z"></path></g><g transform="translate(425.461826449085 204.26012556287515) rotate(0 -1.08115652894935 5.814952771555795)" stroke="none"><path fill="#1e1e1e" d="M 0.44,0.65 Q 0.44,0.65 -0.52,1.42 -1.49,2.20 -2.44,2.95 -3.38,3.70 -4.21,4.31 -5.05,4.93 -5.64,5.29 -6.22,5.65 -6.77,5.88 -7.31,6.11 -7.42,6.14 -7.52,6.17 -7.63,6.18 -7.74,6.19 -7.85,6.17 -7.95,6.15 -8.06,6.11 -8.16,6.06 -8.24,6.00 -8.33,5.93 -8.40,5.84 -8.47,5.76 -8.51,5.66 -8.56,5.56 -8.58,5.45 -8.60,5.34 -8.60,5.23 -8.59,5.13 -8.56,5.02 -8.53,4.91 -8.47,4.82 -8.42,4.73 -8.34,4.65 -8.26,4.57 -8.17,4.51 -8.08,4.45 -7.43,4.39 -6.79,4.33 -6.14,4.41 -5.49,4.49 -4.57,4.92 -3.64,5.36 -2.59,5.98 -1.53,6.61 -0.43,7.31 0.65,8.00 1.57,8.59 2.49,9.18 4.11,10.06 5.74,10.93 5.83,10.98 5.93,11.02 6.01,11.09 6.09,11.17 6.14,11.26 6.19,11.35 6.21,11.46 6.22,11.56 6.21,11.67 6.19,11.77 6.14,11.87 6.09,11.96 6.02,12.03 5.94,12.11 5.85,12.15 5.75,12.20 5.64,12.21 5.54,12.22 5.43,12.20 5.33,12.18 5.24,12.13 5.15,12.07 5.08,11.99 5.01,11.91 4.97,11.81 4.93,11.71 4.92,11.61 4.91,11.50 4.94,11.40 4.97,11.30 5.03,11.21 5.09,11.12 5.17,11.06 5.26,10.99 5.36,10.96 5.46,10.92 5.56,10.92 5.67,10.92 5.77,10.95 5.87,10.98 5.96,11.05 6.04,11.11 6.10,11.20 6.16,11.29 6.19,11.39 6.22,11.49 6.22,11.60 6.21,11.70 6.17,11.80 6.13,11.90 6.07,11.98 6.00,12.06 5.91,12.12 5.82,12.18 5.71,12.20 5.61,12.22 5.50,12.21 5.40,12.20 5.40,12.20 5.40,12.20 3.38,11.54 1.36,10.89 0.46,10.28 -0.43,9.66 -1.48,8.95 -2.53,8.24 -3.51,7.62 -4.49,7.00 -5.13,6.63 -5.77,6.25 -6.54,6.18 -7.31,6.11 -7.42,6.14 -7.52,6.17 -7.63,6.18 -7.74,6.19 -7.85,6.17 -7.95,6.15 -8.06,6.11 -8.16,6.06 -8.24,6.00 -8.33,5.93 -8.40,5.84 -8.47,5.76 -8.51,5.66 -8.56,5.56 -8.58,5.45 -8.60,5.34 -8.60,5.23 -8.59,5.13 -8.56,5.02 -8.53,4.92 -8.47,4.82 -8.42,4.73 -8.34,4.65 -8.26,4.57 -8.17,4.51 -8.08,4.45 -7.65,4.26 -7.22,4.07 -6.71,3.73 -6.20,3.40 -5.40,2.79 -4.60,2.17 -3.60,1.36 -2.60,0.55 -1.52,-0.05 -0.44,-0.65 -0.35,-0.70 -0.27,-0.74 -0.17,-0.76 -0.08,-0.78 0.00,-0.78 0.10,-0.78 0.19,-0.76 0.29,-0.73 0.37,-0.69 0.45,-0.64 0.52,-0.58 0.60,-0.51 0.65,-0.43 0.70,-0.36 0.74,-0.27 0.77,-0.18 0.78,-0.08 0.79,0.00 0.78,0.10 0.76,0.19 0.73,0.28 0.69,0.37 0.64,0.45 0.58,0.53 0.51,0.59 0.44,0.65 0.44,0.65 L 0.44,0.65 Z"></path></g><g transform="translate(434.16964875724 211.2731253267708) rotate(0 2.512984448070341 4.9675414994260905)" stroke="none"><path fill="#1e1e1e" d="M 0.53,-0.52 Q 0.53,-0.52 1.31,0.26 2.09,1.05 2.64,1.95 3.20,2.86 3.49,3.67 3.78,4.48 3.91,5.27 4.05,6.06 3.82,6.90 3.60,7.75 3.04,8.45 2.48,9.14 1.76,9.61 1.04,10.08 0.50,10.30 -0.03,10.52 -0.61,10.65 -1.19,10.77 -1.66,10.04 -2.13,9.31 -1.42,8.82 -0.70,8.34 -0.04,8.26 0.61,8.18 1.29,8.14 1.98,8.09 3.96,8.25 5.94,8.40 6.04,8.42 6.15,8.43 6.24,8.48 6.33,8.53 6.41,8.61 6.48,8.68 6.53,8.78 6.57,8.88 6.58,8.98 6.60,9.09 6.58,9.19 6.55,9.30 6.50,9.39 6.45,9.48 6.37,9.55 6.28,9.62 6.19,9.66 6.09,9.70 5.98,9.70 5.88,9.71 5.77,9.68 5.67,9.66 5.58,9.60 5.49,9.54 5.43,9.45 5.36,9.37 5.33,9.27 5.29,9.17 5.29,9.06 5.29,8.96 5.33,8.86 5.36,8.76 5.42,8.67 5.49,8.58 5.57,8.52 5.66,8.46 5.76,8.43 5.86,8.41 5.97,8.41 6.08,8.42 6.18,8.45 6.28,8.49 6.36,8.56 6.44,8.63 6.49,8.72 6.55,8.81 6.57,8.91 6.60,9.02 6.59,9.12 6.58,9.23 6.53,9.32 6.49,9.42 6.42,9.50 6.34,9.58 6.25,9.63 6.16,9.68 6.05,9.70 5.95,9.71 5.95,9.71 5.95,9.71 4.02,9.92 2.10,10.13 1.44,10.15 0.78,10.18 0.14,10.25 -0.49,10.31 -0.83,9.61 -1.17,8.92 -0.53,8.72 0.09,8.53 0.61,8.23 1.13,7.94 1.72,7.08 2.31,6.23 2.24,5.61 2.17,5.00 1.98,4.32 1.80,3.65 1.40,2.88 0.99,2.10 0.23,1.31 -0.53,0.52 -0.58,0.44 -0.64,0.37 -0.67,0.29 -0.71,0.21 -0.72,0.12 -0.74,0.03 -0.73,-0.05 -0.72,-0.14 -0.70,-0.22 -0.67,-0.31 -0.62,-0.38 -0.58,-0.46 -0.51,-0.52 -0.45,-0.59 -0.37,-0.63 -0.29,-0.68 -0.21,-0.70 -0.12,-0.73 -0.03,-0.73 0.05,-0.74 0.14,-0.72 0.22,-0.70 0.31,-0.66 0.39,-0.63 0.46,-0.57 0.53,-0.51 0.53,-0.51 L 0.53,-0.52 Z"></path></g><g transform="translate(365.7929010592572 61.72090892869164) rotate(0 3.2142915584521745 4.1201302272964995)" stroke="none"><path fill="#e03131" d="M 0.61,-0.41 Q 0.61,-0.41 1.30,0.53 1.98,1.49 2.57,2.34 3.15,3.18 3.70,4.00 4.26,4.81 4.75,5.52 5.23,6.24 6.00,5.63 6.77,5.02 6.82,5.09 6.86,5.15 6.89,5.22 6.92,5.30 6.93,5.38 6.95,5.45 6.94,5.53 6.93,5.61 6.90,5.69 6.88,5.76 6.83,5.83 6.79,5.89 6.73,5.95 6.67,6.00 6.61,6.04 6.54,6.08 6.46,6.10 6.38,6.12 6.30,6.12 6.22,6.12 6.15,6.11 6.07,6.09 6.00,6.05 5.93,6.02 5.87,5.97 5.81,5.92 5.74,5.57 5.68,5.23 5.73,5.14 5.78,5.05 5.87,4.98 5.95,4.91 6.04,4.87 6.14,4.83 6.25,4.82 6.35,4.82 6.46,4.84 6.56,4.87 6.65,4.93 6.74,4.99 6.80,5.07 6.87,5.16 6.90,5.26 6.94,5.36 6.94,5.46 6.94,5.57 6.91,5.67 6.87,5.77 6.81,5.86 6.75,5.94 6.66,6.00 6.57,6.06 6.47,6.09 6.37,6.12 6.26,6.12 6.15,6.11 6.05,6.07 5.96,6.04 5.87,5.97 5.79,5.90 5.74,5.81 5.68,5.72 5.66,5.61 5.63,5.51 5.64,5.41 5.65,5.30 5.70,5.20 5.74,5.11 5.81,5.03 5.89,4.95 5.98,4.90 6.07,4.85 6.18,4.83 6.28,4.81 6.39,4.83 6.49,4.85 6.59,4.89 6.68,4.94 6.76,5.02 6.83,5.10 6.87,5.19 6.92,5.29 6.93,5.39 6.95,5.50 6.86,5.26 6.77,5.02 6.82,5.09 6.86,5.15 6.89,5.22 6.92,5.30 6.93,5.38 6.95,5.45 6.94,5.53 6.93,5.61 6.90,5.69 6.88,5.76 6.83,5.83 6.79,5.89 6.73,5.95 6.67,6.00 6.61,6.04 6.54,6.08 6.46,6.10 6.38,6.12 6.30,6.12 6.22,6.12 6.15,6.11 6.07,6.09 6.00,6.05 5.93,6.02 5.87,5.97 5.81,5.92 5.26,7.02 4.71,8.13 4.28,7.65 3.84,7.18 3.36,6.46 2.88,5.74 2.33,4.93 1.79,4.11 1.21,3.25 0.63,2.40 0.00,1.41 -0.61,0.41 -0.65,0.33 -0.69,0.25 -0.71,0.16 -0.73,0.08 -0.73,-0.00 -0.73,-0.09 -0.71,-0.18 -0.69,-0.27 -0.64,-0.35 -0.60,-0.42 -0.54,-0.49 -0.48,-0.56 -0.41,-0.61 -0.33,-0.66 -0.25,-0.69 -0.16,-0.72 -0.07,-0.73 0.00,-0.74 0.09,-0.73 0.18,-0.71 0.27,-0.68 0.35,-0.65 0.42,-0.60 0.49,-0.55 0.55,-0.48 0.61,-0.41 0.61,-0.41 L 0.61,-0.41 Z"></path></g><g transform="translate(372.7474377564769 61.31181014180561) rotate(0 -3.331164186862054 4.587674245877906)" stroke="none"><path fill="#e03131" d="M 0.57,0.37 Q 0.57,0.37 -0.19,1.70 -0.95,3.03 -1.85,4.16 -2.75,5.29 -4.35,7.30 -5.96,9.30 -6.03,9.38 -6.10,9.46 -6.20,9.51 -6.29,9.56 -6.39,9.58 -6.50,9.60 -6.60,9.59 -6.71,9.57 -6.80,9.52 -6.90,9.48 -6.97,9.40 -7.05,9.33 -7.09,9.23 -7.14,9.13 -7.15,9.03 -7.17,8.92 -7.15,8.82 -7.13,8.72 -7.07,8.62 -7.02,8.53 -6.94,8.46 -6.86,8.39 -6.76,8.35 -6.67,8.31 -6.56,8.30 -6.45,8.29 -6.35,8.32 -6.25,8.34 -6.16,8.40 -6.07,8.46 -6.00,8.54 -5.94,8.62 -5.90,8.72 -5.87,8.82 -5.86,8.93 -5.86,9.04 -5.89,9.14 -5.92,9.24 -5.99,9.33 -6.05,9.41 -6.14,9.47 -6.22,9.53 -6.32,9.57 -6.43,9.60 -6.53,9.59 -6.64,9.59 -6.74,9.55 -6.84,9.51 -6.92,9.45 -7.00,9.38 -7.06,9.29 -7.12,9.20 -7.14,9.10 -7.17,8.99 -7.16,8.89 -7.15,8.78 -7.11,8.69 -7.06,8.59 -7.06,8.59 -7.06,8.59 -5.59,6.39 -4.11,4.20 -3.26,3.13 -2.40,2.07 -1.48,0.84 -0.57,-0.37 -0.52,-0.44 -0.46,-0.50 -0.40,-0.55 -0.33,-0.60 -0.25,-0.63 -0.17,-0.66 -0.09,-0.67 -0.01,-0.68 0.06,-0.68 0.15,-0.67 0.22,-0.64 0.30,-0.61 0.37,-0.57 0.44,-0.52 0.50,-0.46 0.55,-0.40 0.59,-0.33 0.63,-0.25 0.66,-0.17 0.68,-0.09 0.68,-0.01 0.68,0.06 0.66,0.14 0.65,0.23 0.61,0.30 0.57,0.37 0.57,0.37 L 0.57,0.37 Z"></path></g><g transform="translate(362.1110476472427 31.681861170373622) rotate(0 6.165588491766044 6.019493247508535)" stroke="none"><path fill="#e03131" d="M 0,-0.77 Q 0,-0.77 0.87,-0.91 1.74,-1.04 2.75,-1.04 3.76,-1.04 4.80,-1.00 5.83,-0.96 6.70,-0.87 7.57,-0.78 8.17,-0.71 8.77,-0.64 9.34,-0.61 9.92,-0.58 10.46,-0.45 10.99,-0.32 11.26,0.35 11.53,1.03 11.33,1.54 11.13,2.06 10.72,2.58 10.31,3.10 9.78,3.63 9.25,4.17 8.68,4.64 8.12,5.12 7.57,5.57 7.02,6.02 6.44,6.55 5.87,7.08 5.37,7.67 4.87,8.25 4.51,8.74 4.15,9.23 3.66,9.75 3.17,10.28 2.69,10.63 2.22,10.99 1.75,11.37 1.29,11.76 0.82,11.97 0.34,12.18 0.23,12.22 0.12,12.26 0.01,12.27 -0.10,12.28 -0.22,12.27 -0.33,12.25 -0.44,12.20 -0.55,12.16 -0.64,12.09 -0.74,12.02 -0.81,11.93 -0.89,11.84 -0.94,11.74 -0.99,11.63 -1.02,11.52 -1.04,11.40 -1.04,11.28 -1.04,11.17 -1.01,11.05 -0.97,10.94 -0.92,10.84 -0.86,10.74 -0.78,10.65 -0.70,10.57 -0.60,10.50 -0.50,10.44 0.08,10.41 0.67,10.39 1.96,10.43 3.24,10.47 4.20,10.53 5.16,10.60 6.09,10.68 7.02,10.77 7.81,10.84 8.61,10.91 9.23,10.94 9.85,10.97 11.19,10.42 12.52,9.86 12.60,9.87 12.68,9.88 12.75,9.91 12.83,9.94 12.89,9.99 12.96,10.03 13.01,10.09 13.06,10.15 13.09,10.23 13.13,10.30 13.15,10.37 13.16,10.45 13.16,10.53 13.16,10.61 13.14,10.69 13.12,10.76 13.08,10.83 13.04,10.90 12.99,10.96 12.93,11.02 12.87,11.06 12.80,11.10 12.73,11.13 12.65,11.16 12.57,11.16 12.49,11.17 12.18,10.76 11.87,10.35 11.92,10.25 11.96,10.15 12.03,10.08 12.11,10.00 12.20,9.95 12.29,9.90 12.40,9.88 12.50,9.86 12.61,9.87 12.71,9.89 12.81,9.94 12.90,9.99 12.97,10.06 13.05,10.14 13.09,10.23 13.14,10.33 13.15,10.44 13.17,10.54 13.14,10.65 13.12,10.75 13.07,10.84 13.02,10.93 12.94,11.00 12.86,11.07 12.76,11.11 12.66,11.15 12.55,11.16 12.45,11.17 12.34,11.14 12.24,11.11 12.15,11.06 12.06,11.00 12.00,10.91 11.93,10.83 11.90,10.73 11.86,10.63 11.86,10.52 11.86,10.42 11.89,10.32 11.93,10.21 11.99,10.13 12.05,10.04 12.14,9.98 12.23,9.92 12.33,9.89 12.43,9.86 12.54,9.87 12.64,9.87 12.74,9.91 12.84,9.95 12.92,10.02 13.00,10.08 13.06,10.17 13.12,10.26 13.14,10.37 13.16,10.47 12.84,10.16 12.52,9.86 12.60,9.87 12.68,9.88 12.75,9.91 12.83,9.94 12.89,9.99 12.96,10.03 13.01,10.09 13.06,10.15 13.09,10.23 13.13,10.30 13.15,10.37 13.16,10.45 13.16,10.53 13.16,10.61 13.14,10.69 13.12,10.76 13.08,10.83 13.04,10.90 12.99,10.96 12.93,11.02 12.87,11.06 12.80,11.10 12.73,11.13 12.65,11.16 12.57,11.16 12.49,11.17 11.66,12.10 10.83,13.03 10.29,13.02 9.76,13.01 9.09,12.98 8.43,12.96 7.64,12.90 6.84,12.84 5.92,12.76 5.01,12.69 4.07,12.62 3.14,12.55 2.39,12.51 1.64,12.47 0.99,12.33 0.34,12.18 0.23,12.22 0.12,12.26 0.01,12.27 -0.10,12.28 -0.22,12.27 -0.33,12.25 -0.44,12.20 -0.55,12.16 -0.64,12.09 -0.74,12.02 -0.81,11.93 -0.89,11.84 -0.94,11.74 -0.99,11.63 -1.02,11.52 -1.04,11.40 -1.04,11.28 -1.04,11.17 -1.01,11.05 -0.97,10.94 -0.92,10.84 -0.86,10.74 -0.78,10.65 -0.70,10.57 -0.60,10.50 -0.50,10.44 -0.01,10.18 0.48,9.92 0.94,9.47 1.40,9.02 1.87,8.47 2.35,7.92 2.75,7.35 3.15,6.79 3.73,6.10 4.31,5.41 4.94,4.82 5.57,4.24 6.11,3.80 6.65,3.37 7.15,2.96 7.65,2.55 8.13,2.09 8.60,1.64 9.21,1.56 9.81,1.48 9.17,1.43 8.53,1.37 7.95,1.31 7.37,1.24 6.57,1.17 5.76,1.09 4.76,1.07 3.76,1.04 2.75,1.04 1.74,1.04 0.87,0.91 0,0.77 -0.09,0.76 -0.18,0.75 -0.27,0.72 -0.36,0.68 -0.43,0.63 -0.51,0.58 -0.57,0.51 -0.63,0.44 -0.68,0.35 -0.72,0.27 -0.74,0.18 -0.77,0.09 -0.77,-0.00 -0.77,-0.09 -0.74,-0.18 -0.72,-0.27 -0.68,-0.35 -0.63,-0.44 -0.57,-0.51 -0.51,-0.58 -0.43,-0.63 -0.36,-0.68 -0.27,-0.72 -0.18,-0.75 -0.09,-0.76 0.00,-0.77 0.00,-0.77 L 0,-0.77 Z"></path></g><g transform="translate(375.3773126679376 21.62990554311159) rotate(0 1.314937455730444 1.519477931683241)" stroke="none"><path fill="#e03131" d="M 0.68,-0.49 Q 0.68,-0.49 1.76,0.91 2.83,2.33 2.90,2.41 2.96,2.50 3.00,2.60 3.03,2.70 3.03,2.80 3.03,2.91 2.99,3.01 2.96,3.11 2.89,3.19 2.83,3.28 2.74,3.34 2.65,3.40 2.55,3.43 2.45,3.45 2.34,3.45 2.24,3.44 2.14,3.40 2.04,3.36 1.96,3.29 1.88,3.22 1.82,3.13 1.77,3.04 1.75,2.94 1.72,2.83 1.74,2.73 1.75,2.62 1.79,2.53 1.84,2.43 1.91,2.35 1.99,2.28 2.08,2.23 2.17,2.18 2.28,2.16 2.38,2.14 2.49,2.16 2.59,2.18 2.69,2.23 2.78,2.28 2.85,2.36 2.93,2.43 2.97,2.53 3.01,2.63 3.02,2.73 3.04,2.84 3.01,2.94 2.99,3.05 2.93,3.14 2.88,3.23 2.80,3.30 2.72,3.36 2.62,3.40 2.52,3.44 2.41,3.45 2.31,3.45 2.20,3.42 2.10,3.40 2.01,3.34 1.93,3.28 1.93,3.28 1.93,3.28 0.62,1.89 -0.68,0.49 -0.73,0.41 -0.78,0.32 -0.81,0.22 -0.83,0.12 -0.84,0.02 -0.84,-0.07 -0.82,-0.17 -0.79,-0.27 -0.75,-0.37 -0.70,-0.46 -0.64,-0.54 -0.57,-0.61 -0.49,-0.67 -0.41,-0.73 -0.31,-0.77 -0.22,-0.81 -0.12,-0.83 -0.02,-0.84 0.07,-0.83 0.18,-0.82 0.27,-0.79 0.37,-0.76 0.45,-0.70 0.54,-0.64 0.61,-0.57 0.68,-0.49 0.68,-0.49 L 0.68,-0.49 Z"></path></g><g transform="translate(378.59160422638985 22.21432219010285) rotate(0 -1.811713007649871 2.9805195491614995)" stroke="none"><path fill="#e03131" d="M 0.78,0.19 Q 0.78,0.19 0.59,1.13 0.39,2.07 0.01,2.90 -0.36,3.74 -1.74,5.08 -3.13,6.43 -3.23,6.48 -3.32,6.53 -3.43,6.54 -3.53,6.56 -3.63,6.54 -3.74,6.52 -3.83,6.47 -3.93,6.42 -4.00,6.35 -4.07,6.27 -4.12,6.17 -4.16,6.08 -4.17,5.97 -4.18,5.87 -4.16,5.76 -4.14,5.66 -4.08,5.57 -4.03,5.48 -3.95,5.41 -3.87,5.34 -3.77,5.30 -3.67,5.26 -3.56,5.26 -3.46,5.25 -3.36,5.28 -3.25,5.31 -3.17,5.37 -3.08,5.43 -3.01,5.51 -2.95,5.60 -2.91,5.70 -2.88,5.80 -2.88,5.90 -2.88,6.01 -2.92,6.11 -2.95,6.21 -3.01,6.30 -3.08,6.38 -3.17,6.44 -3.25,6.50 -3.36,6.53 -3.46,6.56 -3.57,6.55 -3.67,6.54 -3.77,6.50 -3.87,6.46 -3.95,6.40 -4.03,6.33 -4.08,6.24 -4.14,6.14 -4.16,6.04 -4.19,5.94 -4.17,5.83 -4.16,5.73 -4.12,5.63 -4.07,5.53 -4.00,5.46 -3.93,5.38 -3.93,5.38 -3.93,5.38 -2.92,4.22 -1.92,3.06 -1.63,2.34 -1.33,1.62 -1.06,0.71 -0.78,-0.19 -0.74,-0.29 -0.71,-0.38 -0.65,-0.46 -0.60,-0.54 -0.52,-0.60 -0.45,-0.66 -0.36,-0.71 -0.28,-0.75 -0.18,-0.78 -0.09,-0.80 0.00,-0.80 0.10,-0.80 0.19,-0.77 0.29,-0.75 0.37,-0.70 0.46,-0.66 0.53,-0.59 0.60,-0.53 0.66,-0.45 0.71,-0.37 0.75,-0.27 0.78,-0.18 0.79,-0.09 0.80,0.00 0.79,0.10 0.78,0.19 0.78,0.19 L 0.78,0.19 Z"></path></g><g transform="translate(374.09158891056444 28.233806520121107) rotate(0 2.4545392163751103 -1.5487005475308706)" stroke="none"><path fill="#e03131" d="M -0.42,-0.56 Q -0.42,-0.56 0.34,-1.25 1.11,-1.94 2.68,-2.58 4.25,-3.22 4.30,-3.31 4.36,-3.41 4.44,-3.48 4.52,-3.55 4.62,-3.59 4.71,-3.63 4.82,-3.64 4.93,-3.64 5.03,-3.62 5.13,-3.59 5.22,-3.53 5.31,-3.47 5.37,-3.39 5.44,-3.31 5.48,-3.21 5.51,-3.11 5.51,-3.00 5.51,-2.89 5.48,-2.79 5.45,-2.69 5.39,-2.60 5.32,-2.52 5.24,-2.46 5.15,-2.40 5.05,-2.37 4.95,-2.34 4.84,-2.34 4.73,-2.35 4.63,-2.38 4.53,-2.42 4.45,-2.49 4.37,-2.56 4.31,-2.65 4.26,-2.74 4.23,-2.84 4.21,-2.94 4.22,-3.05 4.23,-3.15 4.27,-3.25 4.32,-3.35 4.39,-3.43 4.46,-3.51 4.55,-3.56 4.65,-3.61 4.75,-3.63 4.85,-3.65 4.96,-3.63 5.06,-3.61 5.16,-3.57 5.25,-3.52 5.33,-3.44 5.40,-3.37 5.45,-3.27 5.49,-3.17 5.51,-3.07 5.52,-2.96 5.50,-2.86 5.48,-2.76 5.48,-2.76 5.48,-2.76 3.82,-1.65 2.17,-0.54 1.30,0.01 0.42,0.56 0.35,0.60 0.27,0.65 0.19,0.67 0.11,0.69 0.02,0.70 -0.05,0.70 -0.13,0.68 -0.22,0.67 -0.30,0.63 -0.37,0.60 -0.44,0.54 -0.51,0.49 -0.56,0.42 -0.61,0.35 -0.64,0.27 -0.68,0.19 -0.69,0.11 -0.70,0.03 -0.70,-0.05 -0.69,-0.14 -0.66,-0.22 -0.64,-0.30 -0.59,-0.37 -0.55,-0.44 -0.48,-0.50 -0.42,-0.56 -0.42,-0.56 L -0.42,-0.56 Z"></path></g><g transform="translate(377.77340665261744 21.10391629283481) rotate(0 -1.5487005475308138 4.909105185221279)" stroke="none"><path fill="#e03131" d="M 0.67,0.02 Q 0.67,0.02 0.74,1.58 0.81,3.15 0.80,4.45 0.79,5.74 0.79,6.73 0.78,7.71 0.78,8.34 0.78,8.96 0.74,9.36 0.71,9.77 0.70,9.88 0.68,9.98 0.64,10.08 0.60,10.18 0.54,10.27 0.48,10.36 0.40,10.43 0.32,10.50 0.23,10.55 0.13,10.60 0.03,10.62 -0.07,10.65 -0.17,10.65 -0.28,10.65 -0.39,10.62 -0.49,10.60 -0.58,10.55 -0.68,10.50 -0.76,10.42 -0.84,10.35 -0.90,10.26 -0.96,10.18 -1.00,10.08 -1.03,9.98 -1.05,9.87 -1.06,9.76 -1.00,8.93 -0.93,8.09 -1.71,8.80 -2.48,9.50 -2.56,9.58 -2.63,9.65 -2.73,9.70 -2.82,9.75 -2.93,9.76 -3.03,9.77 -3.14,9.75 -3.24,9.73 -3.33,9.68 -3.42,9.63 -3.50,9.55 -3.57,9.47 -3.61,9.37 -3.65,9.28 -3.66,9.17 -3.67,9.06 -3.64,8.96 -3.62,8.86 -3.56,8.77 -3.50,8.68 -3.42,8.61 -3.34,8.55 -3.24,8.51 -3.14,8.47 -3.03,8.47 -2.92,8.47 -2.82,8.50 -2.72,8.53 -2.63,8.59 -2.55,8.65 -2.49,8.74 -2.42,8.83 -2.39,8.93 -2.36,9.03 -2.37,9.14 -2.37,9.24 -2.40,9.34 -2.44,9.44 -2.51,9.52 -2.57,9.61 -2.66,9.66 -2.75,9.72 -2.86,9.75 -2.96,9.77 -3.07,9.76 -3.17,9.76 -3.27,9.71 -3.37,9.67 -3.45,9.60 -3.53,9.53 -3.58,9.44 -3.63,9.34 -3.65,9.24 -3.67,9.14 -3.65,9.03 -3.64,8.92 -3.59,8.83 -3.55,8.73 -3.55,8.73 -3.55,8.73 -2.08,7.47 -0.62,6.21 -0.08,6.61 0.46,7.01 0.52,7.55 0.58,8.09 0.65,8.93 0.71,9.77 0.70,9.88 0.68,9.98 0.64,10.08 0.61,10.18 0.54,10.27 0.48,10.36 0.40,10.43 0.32,10.50 0.23,10.55 0.13,10.60 0.03,10.62 -0.07,10.65 -0.17,10.65 -0.28,10.65 -0.39,10.62 -0.49,10.60 -0.58,10.55 -0.68,10.50 -0.76,10.42 -0.84,10.35 -0.90,10.26 -0.96,10.18 -1.00,10.08 -1.03,9.98 -1.05,9.87 -1.06,9.76 -1.09,9.35 -1.12,8.95 -1.11,8.32 -1.11,7.70 -1.09,6.70 -1.08,5.71 -1.04,4.40 -1.01,3.09 -0.84,1.53 -0.67,-0.02 -0.66,-0.10 -0.65,-0.18 -0.62,-0.25 -0.58,-0.33 -0.54,-0.40 -0.49,-0.46 -0.42,-0.51 -0.36,-0.57 -0.29,-0.60 -0.21,-0.64 -0.13,-0.65 -0.05,-0.67 0.02,-0.67 0.10,-0.67 0.18,-0.64 0.26,-0.62 0.33,-0.58 0.40,-0.54 0.46,-0.48 0.52,-0.43 0.56,-0.36 0.61,-0.29 0.63,-0.21 0.66,-0.14 0.67,-0.05 0.67,0.02 0.67,0.02 L 0.67,0.02 Z"></path></g><g transform="translate(378.06561497611307 27.53249940973933) rotate(0 1.577932080868834 1.1103969797776472)" stroke="none"><path fill="#e03131" d="M 0.45,-0.65 Q 0.45,-0.65 1.91,0.45 3.38,1.56 3.45,1.64 3.52,1.72 3.57,1.81 3.61,1.91 3.62,2.02 3.63,2.12 3.61,2.22 3.59,2.33 3.53,2.42 3.48,2.51 3.40,2.58 3.32,2.65 3.22,2.69 3.12,2.73 3.01,2.73 2.91,2.74 2.80,2.71 2.70,2.68 2.61,2.62 2.53,2.56 2.46,2.48 2.40,2.39 2.36,2.29 2.33,2.19 2.33,2.08 2.33,1.98 2.37,1.88 2.40,1.78 2.46,1.69 2.53,1.61 2.62,1.55 2.70,1.49 2.81,1.46 2.91,1.43 3.02,1.44 3.12,1.44 3.22,1.48 3.32,1.52 3.40,1.59 3.48,1.66 3.53,1.75 3.59,1.84 3.61,1.95 3.63,2.05 3.62,2.16 3.61,2.26 3.57,2.36 3.52,2.45 3.45,2.53 3.38,2.61 3.28,2.66 3.19,2.71 3.08,2.72 2.98,2.74 2.87,2.72 2.77,2.71 2.67,2.66 2.58,2.61 2.58,2.61 2.58,2.61 1.06,1.63 -0.45,0.65 -0.52,0.58 -0.59,0.52 -0.64,0.44 -0.70,0.36 -0.73,0.27 -0.77,0.18 -0.78,0.09 -0.79,-0.00 -0.78,-0.09 -0.77,-0.19 -0.73,-0.28 -0.70,-0.37 -0.64,-0.44 -0.59,-0.52 -0.52,-0.59 -0.45,-0.65 -0.36,-0.69 -0.28,-0.74 -0.18,-0.76 -0.09,-0.78 0.00,-0.78 0.09,-0.78 0.18,-0.76 0.28,-0.74 0.36,-0.69 0.45,-0.65 0.45,-0.65 L 0.45,-0.65 Z"></path></g><g transform="translate(378.47471376299933 37.40915501187692) rotate(0 2.4253255180177575 3.9448123671912754)" stroke="none"><path fill="#e03131" d="M 0.69,-0.04 Q 0.69,-0.04 0.78,1.06 0.88,2.17 0.92,3.12 0.96,4.07 0.98,4.88 1.01,5.69 1.02,6.25 1.03,6.82 0.98,7.25 0.93,7.68 0.92,7.77 0.91,7.85 0.88,7.93 0.85,8.01 0.80,8.08 0.76,8.15 0.69,8.21 0.63,8.26 0.56,8.30 0.48,8.34 0.40,8.36 0.32,8.38 0.23,8.38 0.15,8.38 0.07,8.37 -0.01,8.35 -0.08,8.31 -0.16,8.27 -0.22,8.21 -0.28,8.16 -0.33,8.09 -0.38,8.02 -0.41,7.94 -0.44,7.86 -0.45,7.78 -0.46,7.69 -0.47,7.84 -0.48,7.98 -0.52,7.90 -0.56,7.82 -0.58,7.73 -0.60,7.65 -0.60,7.56 -0.60,7.47 -0.57,7.39 -0.55,7.30 -0.51,7.22 -0.47,7.15 -0.41,7.08 -0.35,7.02 -0.27,6.97 -0.20,6.92 -0.12,6.89 -0.03,6.86 0.05,6.85 0.13,6.84 0.22,6.85 0.31,6.86 0.39,6.90 0.47,6.93 0.54,6.98 0.62,7.03 0.67,7.10 0.73,7.17 2.62,6.97 4.50,6.78 4.61,6.79 4.72,6.80 4.81,6.85 4.91,6.89 4.99,6.96 5.07,7.03 5.12,7.12 5.17,7.22 5.19,7.32 5.21,7.43 5.19,7.53 5.18,7.64 5.13,7.73 5.08,7.83 5.01,7.90 4.93,7.98 4.84,8.02 4.74,8.07 4.63,8.08 4.53,8.09 4.42,8.07 4.32,8.05 4.23,8.00 4.14,7.95 4.07,7.87 4.00,7.79 3.95,7.69 3.91,7.59 3.91,7.49 3.90,7.38 3.92,7.28 3.95,7.17 4.01,7.08 4.07,7.00 4.15,6.93 4.23,6.86 4.33,6.83 4.43,6.79 4.54,6.79 4.65,6.79 4.75,6.82 4.85,6.85 4.93,6.92 5.02,6.98 5.08,7.07 5.14,7.15 5.17,7.25 5.20,7.36 5.20,7.46 5.20,7.57 5.16,7.67 5.12,7.77 5.05,7.85 4.99,7.93 4.90,7.99 4.81,8.04 4.70,8.07 4.60,8.09 4.60,8.09 4.60,8.09 2.78,8.23 0.97,8.36 0.24,8.17 -0.48,7.98 -0.52,7.90 -0.56,7.82 -0.58,7.73 -0.60,7.65 -0.60,7.56 -0.60,7.47 -0.57,7.39 -0.55,7.30 -0.51,7.22 -0.47,7.15 -0.41,7.08 -0.35,7.02 -0.27,6.97 -0.20,6.92 -0.12,6.89 -0.03,6.86 0.05,6.85 0.13,6.84 0.22,6.85 0.31,6.86 0.39,6.90 0.47,6.93 0.54,6.98 0.62,7.03 0.67,7.10 0.73,7.17 0.83,7.42 0.93,7.68 0.92,7.77 0.91,7.85 0.88,7.93 0.85,8.01 0.80,8.08 0.76,8.15 0.69,8.21 0.63,8.26 0.56,8.30 0.48,8.34 0.40,8.36 0.32,8.38 0.23,8.38 0.15,8.38 0.07,8.37 -0.01,8.35 -0.08,8.31 -0.16,8.27 -0.22,8.21 -0.28,8.16 -0.33,8.09 -0.38,8.02 -0.41,7.94 -0.44,7.86 -0.45,7.78 -0.46,7.69 -0.52,7.26 -0.57,6.83 -0.57,6.27 -0.57,5.72 -0.58,4.92 -0.58,4.12 -0.59,3.19 -0.61,2.26 -0.65,1.15 -0.69,0.04 -0.68,-0.04 -0.68,-0.12 -0.65,-0.20 -0.63,-0.28 -0.58,-0.35 -0.54,-0.42 -0.48,-0.48 -0.42,-0.54 -0.35,-0.58 -0.28,-0.63 -0.20,-0.65 -0.12,-0.68 -0.04,-0.68 0.04,-0.69 0.12,-0.67 0.20,-0.66 0.28,-0.62 0.35,-0.59 0.42,-0.54 0.48,-0.48 0.54,-0.42 0.59,-0.35 0.62,-0.28 0.66,-0.20 0.67,-0.12 0.69,-0.04 0.69,-0.04 L 0.69,-0.04 Z"></path></g><g transform="translate(386.4812289607724 36.82473836488566) rotate(0 0 4.412338550792015)" stroke="none"><path fill="#e03131" d="M 0.68,0 Q 0.68,0 0.77,1.46 0.85,2.92 0.87,4.11 0.89,5.30 0.77,7.02 0.65,8.75 0.63,8.85 0.62,8.96 0.57,9.05 0.52,9.14 0.44,9.22 0.36,9.29 0.27,9.33 0.17,9.38 0.07,9.39 -0.03,9.40 -0.13,9.38 -0.24,9.36 -0.33,9.30 -0.42,9.25 -0.49,9.17 -0.56,9.08 -0.60,8.99 -0.64,8.89 -0.64,8.78 -0.65,8.68 -0.62,8.57 -0.59,8.47 -0.53,8.38 -0.47,8.29 -0.39,8.23 -0.30,8.17 -0.20,8.13 -0.10,8.10 0.00,8.10 0.10,8.10 0.20,8.13 0.30,8.17 0.39,8.23 0.47,8.29 0.53,8.38 0.59,8.47 0.62,8.57 0.65,8.68 0.64,8.78 0.64,8.89 0.60,8.99 0.56,9.08 0.49,9.17 0.42,9.25 0.33,9.30 0.24,9.36 0.13,9.38 0.03,9.40 -0.07,9.39 -0.17,9.38 -0.27,9.33 -0.36,9.29 -0.44,9.22 -0.52,9.14 -0.57,9.05 -0.62,8.96 -0.63,8.85 -0.65,8.75 -0.65,8.75 -0.65,8.75 -0.77,7.02 -0.89,5.30 -0.87,4.11 -0.85,2.92 -0.77,1.46 -0.68,0 -0.67,-0.08 -0.66,-0.16 -0.64,-0.24 -0.61,-0.32 -0.56,-0.38 -0.51,-0.45 -0.45,-0.51 -0.39,-0.56 -0.31,-0.60 -0.24,-0.64 -0.16,-0.66 -0.08,-0.68 0.00,-0.68 0.08,-0.68 0.16,-0.66 0.24,-0.64 0.31,-0.60 0.39,-0.56 0.45,-0.51 0.51,-0.45 0.56,-0.38 0.61,-0.32 0.64,-0.24 0.66,-0.16 0.67,-0.08 0.68,0.00 0.68,0.00 L 0.68,0 Z"></path></g><g transform="translate(385.6630313870001 35.42212414412188) rotate(0 2.9805284666517764 2.0162445661122774)" stroke="none"><path fill="#e03131" d="M 0,-0.70 Q 0,-0.70 0.82,-0.72 1.64,-0.74 2.39,-0.70 3.13,-0.66 3.80,-0.55 4.46,-0.45 5.25,-0.13 6.03,0.17 6.26,0.69 6.49,1.20 6.27,1.75 6.05,2.31 4.20,3.43 2.35,4.55 2.25,4.58 2.15,4.62 2.04,4.62 1.93,4.62 1.83,4.58 1.73,4.55 1.65,4.49 1.56,4.42 1.50,4.34 1.44,4.25 1.41,4.15 1.38,4.05 1.39,3.94 1.39,3.83 1.43,3.73 1.47,3.64 1.53,3.55 1.60,3.47 1.69,3.42 1.78,3.36 1.89,3.34 1.99,3.31 2.10,3.32 2.20,3.33 2.30,3.38 2.40,3.42 2.47,3.49 2.55,3.57 2.60,3.66 2.65,3.75 2.67,3.86 2.69,3.96 2.67,4.07 2.66,4.17 2.61,4.27 2.56,4.36 2.48,4.43 2.41,4.51 2.31,4.55 2.21,4.60 2.11,4.61 2.00,4.62 1.90,4.60 1.80,4.58 1.70,4.53 1.61,4.47 1.54,4.39 1.47,4.31 1.43,4.21 1.39,4.12 1.39,4.01 1.38,3.90 1.41,3.80 1.43,3.70 1.49,3.61 1.55,3.52 1.64,3.46 1.72,3.39 1.72,3.39 1.72,3.39 2.96,2.23 4.20,1.07 3.61,0.97 3.03,0.86 2.33,0.80 1.64,0.74 0.82,0.72 0,0.70 -0.08,0.69 -0.16,0.68 -0.24,0.65 -0.32,0.62 -0.39,0.57 -0.46,0.52 -0.52,0.46 -0.57,0.39 -0.61,0.32 -0.65,0.24 -0.67,0.16 -0.69,0.08 -0.69,-0.00 -0.69,-0.08 -0.67,-0.16 -0.65,-0.24 -0.61,-0.32 -0.57,-0.39 -0.52,-0.46 -0.46,-0.52 -0.39,-0.57 -0.32,-0.62 -0.24,-0.65 -0.16,-0.68 -0.08,-0.69 0.00,-0.70 0.00,-0.70 L 0,-0.70 Z"></path></g><g transform="translate(392.38382282740014 41.50007154081595) rotate(0 -0.23376309180042654 4.879873651883258)" stroke="none"><path fill="#e03131" d="M 0.68,0 Q 0.68,0 0.73,0.99 0.79,1.98 0.79,3.09 0.79,4.21 0.77,5.13 0.75,6.05 0.47,7.84 0.20,9.64 0.17,9.74 0.14,9.84 0.09,9.93 0.03,10.02 -0.04,10.09 -0.13,10.15 -0.23,10.19 -0.32,10.23 -0.43,10.23 -0.54,10.23 -0.64,10.20 -0.74,10.17 -0.83,10.11 -0.91,10.05 -0.97,9.96 -1.04,9.87 -1.07,9.77 -1.10,9.67 -1.10,9.56 -1.09,9.46 -1.06,9.36 -1.02,9.26 -0.95,9.18 -0.89,9.09 -0.80,9.04 -0.71,8.98 -0.60,8.95 -0.50,8.93 -0.40,8.94 -0.29,8.94 -0.19,8.99 -0.09,9.03 -0.02,9.10 0.05,9.17 0.11,9.26 0.16,9.36 0.18,9.46 0.20,9.56 0.18,9.67 0.17,9.77 0.12,9.87 0.07,9.97 0.00,10.04 -0.07,10.12 -0.16,10.16 -0.26,10.21 -0.36,10.22 -0.47,10.24 -0.57,10.22 -0.68,10.20 -0.77,10.15 -0.86,10.09 -0.93,10.01 -1.00,9.94 -1.04,9.84 -1.09,9.74 -1.09,9.63 -1.10,9.53 -1.10,9.53 -1.10,9.53 -1.04,7.75 -0.98,5.98 -0.92,5.08 -0.86,4.19 -0.83,3.08 -0.79,1.98 -0.73,0.99 -0.68,0 -0.67,-0.08 -0.66,-0.16 -0.63,-0.24 -0.60,-0.31 -0.55,-0.38 -0.51,-0.45 -0.44,-0.50 -0.38,-0.56 -0.31,-0.59 -0.24,-0.63 -0.16,-0.65 -0.08,-0.67 0.00,-0.67 0.08,-0.67 0.16,-0.65 0.24,-0.63 0.31,-0.59 0.38,-0.56 0.44,-0.50 0.51,-0.45 0.55,-0.38 0.60,-0.31 0.63,-0.24 0.66,-0.16 0.67,-0.08 0.68,0.00 0.68,0.00 L 0.68,0 Z"></path></g><g transform="translate(396.6500572164444 42.31825127960769) rotate(0 -1.3441511540877968 4.032471297243887)" stroke="none"><path fill="#e03131" d="M 0.58,0.41 Q 0.58,0.41 0.25,1.06 -0.07,1.72 -0.48,2.28 -0.90,2.85 -1.26,3.32 -1.63,3.79 -2.10,4.28 -2.57,4.77 -2.17,5.19 -1.76,5.61 -0.45,6.50 0.86,7.39 0.96,7.43 1.05,7.48 1.13,7.56 1.20,7.64 1.25,7.73 1.29,7.83 1.30,7.93 1.32,8.04 1.29,8.14 1.27,8.25 1.22,8.34 1.16,8.43 1.08,8.50 1.00,8.57 0.90,8.61 0.81,8.65 0.70,8.66 0.59,8.66 0.49,8.64 0.39,8.61 0.30,8.55 0.21,8.49 0.15,8.41 0.08,8.32 0.05,8.22 0.01,8.12 0.01,8.02 0.01,7.91 0.04,7.81 0.08,7.71 0.14,7.62 0.20,7.54 0.29,7.48 0.38,7.42 0.48,7.39 0.58,7.36 0.69,7.36 0.79,7.37 0.89,7.41 0.99,7.44 1.07,7.51 1.16,7.58 1.21,7.67 1.27,7.76 1.29,7.86 1.31,7.97 1.30,8.07 1.29,8.18 1.25,8.28 1.21,8.37 1.13,8.45 1.06,8.53 0.97,8.58 0.87,8.63 0.77,8.65 0.67,8.67 0.56,8.65 0.46,8.63 0.46,8.63 0.46,8.63 -1.26,7.65 -2.98,6.66 -3.57,5.92 -4.16,5.19 -4.02,4.40 -3.88,3.61 -3.51,3.12 -3.14,2.64 -2.78,2.17 -2.43,1.70 -2.01,1.16 -1.60,0.63 -1.09,0.10 -0.58,-0.41 -0.52,-0.47 -0.46,-0.54 -0.39,-0.58 -0.32,-0.63 -0.24,-0.66 -0.15,-0.69 -0.07,-0.70 0.01,-0.71 0.09,-0.70 0.18,-0.69 0.26,-0.65 0.34,-0.62 0.41,-0.57 0.48,-0.52 0.53,-0.46 0.59,-0.39 0.63,-0.31 0.67,-0.24 0.69,-0.15 0.70,-0.07 0.70,0.01 0.70,0.09 0.68,0.18 0.66,0.26 0.62,0.33 0.58,0.41 0.58,0.41 L 0.58,0.41 Z"></path></g><g transform="translate(399.80592137818195 48.688389164816726) rotate(0 0 2.7759790732087595)" stroke="none"><path fill="#e03131" d="M 0.70,0 Q 0.70,0 0.68,2.49 0.65,4.98 0.63,5.09 0.62,5.19 0.57,5.28 0.52,5.38 0.44,5.45 0.36,5.52 0.27,5.57 0.17,5.61 0.07,5.63 -0.03,5.64 -0.13,5.61 -0.24,5.59 -0.33,5.54 -0.42,5.48 -0.49,5.40 -0.56,5.32 -0.60,5.22 -0.64,5.12 -0.64,5.02 -0.65,4.91 -0.62,4.81 -0.59,4.71 -0.53,4.62 -0.47,4.53 -0.39,4.47 -0.30,4.40 -0.20,4.37 -0.10,4.33 0.00,4.33 0.10,4.33 0.20,4.37 0.30,4.40 0.39,4.47 0.47,4.53 0.53,4.62 0.59,4.71 0.62,4.81 0.65,4.91 0.64,5.02 0.64,5.12 0.60,5.22 0.56,5.32 0.49,5.40 0.42,5.48 0.33,5.54 0.24,5.59 0.13,5.61 0.03,5.64 -0.07,5.63 -0.17,5.61 -0.27,5.57 -0.36,5.52 -0.44,5.45 -0.52,5.38 -0.57,5.28 -0.62,5.19 -0.63,5.09 -0.65,4.98 -0.65,4.98 -0.65,4.98 -0.68,2.49 -0.70,0 -0.69,-0.08 -0.68,-0.16 -0.65,-0.24 -0.62,-0.32 -0.57,-0.39 -0.52,-0.46 -0.46,-0.52 -0.40,-0.58 -0.32,-0.61 -0.25,-0.65 -0.16,-0.67 -0.08,-0.70 0.00,-0.70 0.08,-0.70 0.16,-0.67 0.25,-0.65 0.32,-0.61 0.40,-0.58 0.46,-0.52 0.52,-0.46 0.57,-0.39 0.62,-0.32 0.65,-0.24 0.68,-0.16 0.69,-0.08 0.70,0.00 0.70,0.00 L 0.70,0 Z"></path></g><g transform="translate(337.09802229000707 134.48076364412896) rotate(0 2.2792213562699715 3.448054650252516)" stroke="none"><path fill="#e03131" d="M 0.64,-0.30 Q 0.64,-0.30 1.15,0.72 1.66,1.75 2.11,2.62 2.55,3.48 3.68,4.85 4.81,6.22 4.89,6.29 4.97,6.36 5.02,6.45 5.08,6.54 5.10,6.64 5.13,6.75 5.11,6.85 5.10,6.96 5.06,7.05 5.01,7.15 4.94,7.23 4.87,7.30 4.77,7.35 4.68,7.40 4.58,7.42 4.47,7.44 4.37,7.42 4.26,7.41 4.17,7.36 4.07,7.31 4.00,7.23 3.93,7.15 3.88,7.06 3.84,6.96 3.83,6.85 3.81,6.75 3.84,6.64 3.86,6.54 3.91,6.45 3.97,6.36 4.05,6.29 4.13,6.22 4.23,6.18 4.33,6.14 4.43,6.14 4.54,6.13 4.64,6.16 4.74,6.19 4.83,6.25 4.92,6.30 4.98,6.39 5.05,6.47 5.08,6.57 5.12,6.67 5.12,6.78 5.12,6.89 5.08,6.99 5.05,7.09 4.99,7.17 4.92,7.26 4.83,7.32 4.75,7.38 4.64,7.41 4.54,7.44 4.44,7.43 4.33,7.42 4.23,7.39 4.13,7.35 4.13,7.35 4.13,7.35 2.61,5.77 1.09,4.19 0.68,3.30 0.28,2.40 -0.18,1.35 -0.64,0.30 -0.67,0.22 -0.69,0.13 -0.70,0.05 -0.71,-0.03 -0.69,-0.11 -0.68,-0.20 -0.65,-0.28 -0.61,-0.36 -0.56,-0.42 -0.51,-0.49 -0.44,-0.55 -0.37,-0.60 -0.30,-0.64 -0.22,-0.67 -0.13,-0.69 -0.05,-0.71 0.03,-0.70 0.11,-0.70 0.20,-0.67 0.28,-0.65 0.35,-0.61 0.43,-0.56 0.49,-0.50 0.55,-0.44 0.60,-0.37 0.64,-0.30 0.64,-0.30 L 0.64,-0.30 Z"></path></g><g transform="translate(341.3057936123754 134.36387318073844) rotate(0 -2.103885661184165 3.9448123671912754)" stroke="none"><path fill="#e03131" d="M 0.64,0.17 Q 0.64,0.17 0.38,1.28 0.12,2.39 -0.35,3.29 -0.83,4.18 -1.35,4.88 -1.88,5.57 -2.77,6.69 -3.66,7.80 -3.71,7.85 -3.77,7.91 -3.84,7.95 -3.91,7.99 -3.98,8.02 -4.06,8.04 -4.14,8.04 -4.21,8.05 -4.29,8.04 -4.37,8.02 -4.44,7.99 -4.52,7.96 -4.58,7.91 -4.64,7.86 -4.69,7.80 -4.74,7.74 -4.77,7.66 -4.80,7.59 -4.82,7.51 -4.83,7.44 -4.83,7.36 -4.82,7.28 -4.80,7.20 -4.78,7.13 -4.74,7.06 -4.70,6.99 -4.75,7.29 -4.81,7.59 -4.82,7.48 -4.83,7.38 -4.81,7.27 -4.79,7.17 -4.74,7.07 -4.69,6.98 -4.61,6.91 -4.53,6.84 -4.43,6.80 -4.34,6.76 -4.23,6.75 -4.12,6.74 -4.02,6.77 -3.92,6.79 -3.83,6.85 -3.74,6.91 -3.67,6.99 -3.61,7.07 -3.57,7.17 -3.53,7.27 -3.53,7.38 -3.53,7.48 -3.56,7.58 -3.59,7.69 -3.65,7.77 -3.71,7.86 -3.80,7.92 -3.89,7.98 -3.99,8.01 -4.09,8.04 -4.20,8.04 -4.30,8.04 -4.40,8.00 -4.50,7.97 -4.58,7.90 -4.67,7.83 -4.72,7.74 -4.78,7.65 -4.81,7.55 -4.83,7.45 -4.82,7.34 -4.81,7.24 -4.77,7.14 -4.73,7.04 -4.66,6.96 -4.59,6.88 -4.50,6.83 -4.40,6.78 -4.30,6.76 -4.19,6.74 -4.09,6.75 -3.98,6.77 -3.89,6.81 -3.79,6.86 -3.72,6.94 -3.64,7.01 -3.65,7.40 -3.66,7.80 -3.71,7.85 -3.77,7.91 -3.84,7.95 -3.91,7.99 -3.98,8.02 -4.06,8.04 -4.14,8.04 -4.21,8.05 -4.29,8.04 -4.37,8.02 -4.44,7.99 -4.52,7.96 -4.58,7.91 -4.64,7.86 -4.69,7.80 -4.74,7.74 -4.77,7.66 -4.80,7.59 -4.82,7.51 -4.83,7.44 -4.83,7.36 -4.82,7.28 -4.80,7.20 -4.78,7.13 -4.74,7.06 -4.70,6.99 -3.94,5.77 -3.18,4.56 -2.70,3.97 -2.22,3.37 -1.78,2.67 -1.33,1.97 -0.99,0.89 -0.64,-0.17 -0.61,-0.25 -0.58,-0.33 -0.53,-0.39 -0.49,-0.46 -0.42,-0.51 -0.36,-0.56 -0.29,-0.60 -0.22,-0.63 -0.14,-0.65 -0.06,-0.67 0.01,-0.66 0.10,-0.66 0.17,-0.64 0.25,-0.62 0.32,-0.58 0.39,-0.54 0.45,-0.48 0.51,-0.43 0.56,-0.36 0.60,-0.29 0.63,-0.21 0.65,-0.14 0.66,-0.06 0.67,0.01 0.66,0.09 0.64,0.17 0.64,0.17 L 0.64,0.17 Z"></path></g><g transform="translate(358.1954489784087 122.09112359392088) rotate(0 3.6233903453383505 5.464299216364907)" stroke="none"><path fill="#e03131" d="M 0.05,-0.67 Q 0.05,-0.67 0.88,-0.64 1.70,-0.61 2.47,-0.55 3.24,-0.49 3.93,-0.41 4.63,-0.33 5.47,-0.21 6.32,-0.09 7.01,0.19 7.69,0.48 7.52,1.39 7.35,2.29 6.58,3.14 5.80,4.00 5.20,4.68 4.59,5.35 4.02,6.03 3.44,6.70 3.02,7.15 2.59,7.60 2.05,8.34 1.52,9.07 1.20,9.64 0.89,10.20 0.58,10.67 0.27,11.14 0.11,11.29 -0.05,11.44 -0.12,11.49 -0.20,11.53 -0.28,11.57 -0.37,11.60 -0.46,11.60 -0.55,11.61 -0.64,11.60 -0.73,11.59 -0.81,11.55 -0.90,11.52 -0.97,11.46 -1.05,11.41 -1.10,11.34 -1.16,11.27 -1.20,11.19 -1.24,11.11 -1.26,11.02 -1.28,10.93 -1.28,10.84 -1.28,10.75 -1.25,10.66 -1.23,10.58 -1.19,10.50 -1.14,10.42 -1.08,10.35 -1.02,10.28 -0.45,10.22 0.10,10.16 1.35,10.16 2.59,10.17 3.40,10.18 4.22,10.19 5.66,10.19 7.11,10.19 7.13,10.08 7.15,9.98 7.20,9.89 7.25,9.80 7.33,9.72 7.41,9.65 7.51,9.61 7.60,9.57 7.71,9.56 7.82,9.55 7.92,9.58 8.02,9.60 8.11,9.66 8.20,9.72 8.27,9.80 8.33,9.88 8.37,9.98 8.41,10.08 8.41,10.19 8.41,10.29 8.38,10.39 8.35,10.50 8.29,10.58 8.23,10.67 8.14,10.73 8.06,10.79 7.96,10.82 7.85,10.86 7.75,10.85 7.64,10.85 7.54,10.81 7.44,10.78 7.36,10.71 7.28,10.64 7.22,10.56 7.16,10.47 7.14,10.36 7.11,10.26 7.12,10.15 7.13,10.05 7.17,9.95 7.21,9.85 7.28,9.77 7.35,9.69 7.44,9.64 7.54,9.59 7.64,9.57 7.74,9.55 7.85,9.56 7.96,9.58 8.05,9.62 8.15,9.67 8.22,9.75 8.30,9.82 8.34,9.92 8.39,10.01 8.41,10.12 8.42,10.22 8.42,10.22 8.42,10.22 6.32,10.94 4.22,11.65 3.40,11.66 2.58,11.67 1.84,11.67 1.10,11.68 0.52,11.56 -0.05,11.44 -0.12,11.49 -0.20,11.53 -0.28,11.57 -0.37,11.60 -0.46,11.60 -0.55,11.61 -0.64,11.60 -0.73,11.59 -0.81,11.55 -0.90,11.52 -0.97,11.46 -1.05,11.41 -1.10,11.34 -1.16,11.27 -1.20,11.19 -1.24,11.11 -1.26,11.02 -1.28,10.93 -1.28,10.84 -1.28,10.75 -1.25,10.66 -1.23,10.58 -1.19,10.50 -1.14,10.42 -1.08,10.35 -1.02,10.28 -0.89,10.08 -0.76,9.87 -0.54,9.37 -0.32,8.87 0.17,8.06 0.67,7.25 0.99,6.83 1.32,6.40 1.72,5.98 2.12,5.56 2.72,4.88 3.31,4.19 3.94,3.51 4.57,2.83 5.35,2.09 6.13,1.36 5.29,1.25 4.46,1.15 3.79,1.08 3.12,1.01 2.35,0.94 1.58,0.88 0.76,0.77 -0.05,0.67 -0.13,0.65 -0.21,0.64 -0.28,0.60 -0.36,0.57 -0.42,0.52 -0.48,0.46 -0.53,0.40 -0.58,0.33 -0.61,0.26 -0.65,0.18 -0.66,0.10 -0.67,0.02 -0.67,-0.05 -0.66,-0.13 -0.63,-0.21 -0.61,-0.29 -0.56,-0.36 -0.52,-0.42 -0.46,-0.48 -0.40,-0.54 -0.33,-0.58 -0.26,-0.62 -0.18,-0.64 -0.10,-0.66 -0.02,-0.67 0.05,-0.67 0.05,-0.67 L 0.05,-0.67 Z"></path></g><g transform="translate(369.12404741113835 118.00020706498185) rotate(0 2.3084350546272674 1.9870308677549247)" stroke="none"><path fill="#e03131" d="M 0.23,-0.64 Q 0.23,-0.64 0.90,-0.46 1.57,-0.27 2.43,-0.16 3.29,-0.04 2.73,0.50 2.18,1.05 1.74,1.40 1.30,1.76 0.85,2.17 0.39,2.58 0.32,2.70 0.25,2.82 0.19,2.88 0.13,2.95 0.06,2.99 -0.01,3.03 -0.09,3.06 -0.17,3.09 -0.26,3.09 -0.34,3.10 -0.43,3.08 -0.51,3.07 -0.59,3.03 -0.67,3.00 -0.74,2.94 -0.80,2.89 -0.86,2.82 -0.91,2.75 -0.95,2.68 -0.98,2.60 -1.00,2.51 -1.01,2.43 -1.01,2.34 -1.00,2.26 -0.98,2.17 -0.95,2.09 -0.91,2.02 -0.86,1.95 -0.32,1.88 0.21,1.82 0.89,1.81 1.58,1.81 1.98,1.43 2.38,1.04 2.43,0.47 2.47,-0.09 2.49,-0.17 2.51,-0.25 2.55,-0.32 2.58,-0.39 2.64,-0.45 2.69,-0.51 2.75,-0.56 2.82,-0.61 2.89,-0.64 2.97,-0.67 3.05,-0.68 3.13,-0.69 3.21,-0.68 3.29,-0.67 3.36,-0.64 3.44,-0.61 3.51,-0.57 3.57,-0.52 3.63,-0.46 3.68,-0.41 3.72,-0.33 3.76,-0.26 3.78,-0.19 3.80,-0.11 3.80,-0.03 3.80,0.04 3.81,0.92 3.81,1.79 3.75,2.63 3.70,3.46 3.54,4.08 3.38,4.69 2.77,4.98 2.17,5.27 1.47,4.91 0.77,4.55 0.53,4.42 0.28,4.30 0.21,4.24 0.13,4.18 0.07,4.10 0.02,4.02 -0.01,3.93 -0.05,3.85 -0.06,3.75 -0.08,3.66 -0.07,3.56 -0.06,3.46 -0.03,3.37 -0.00,3.28 0.04,3.20 0.09,3.12 0.16,3.05 0.23,2.99 0.32,2.94 0.40,2.89 0.49,2.87 0.58,2.84 0.68,2.84 0.78,2.83 0.87,2.85 0.97,2.87 1.05,2.91 1.14,2.95 2.90,2.36 4.66,1.76 4.76,1.75 4.87,1.73 4.97,1.74 5.08,1.76 5.17,1.81 5.27,1.86 5.34,1.94 5.41,2.01 5.46,2.11 5.50,2.20 5.52,2.31 5.53,2.42 5.51,2.52 5.48,2.62 5.43,2.71 5.37,2.81 5.29,2.88 5.21,2.94 5.11,2.98 5.02,3.02 4.91,3.03 4.80,3.04 4.70,3.01 4.60,2.98 4.51,2.92 4.42,2.86 4.36,2.78 4.29,2.69 4.26,2.59 4.22,2.49 4.22,2.39 4.22,2.28 4.26,2.18 4.29,2.08 4.35,1.99 4.42,1.91 4.51,1.85 4.59,1.79 4.69,1.76 4.80,1.73 4.90,1.74 5.01,1.74 5.11,1.78 5.21,1.82 5.29,1.89 5.37,1.96 5.43,2.05 5.48,2.14 5.50,2.24 5.53,2.34 5.52,2.45 5.51,2.56 5.46,2.65 5.42,2.75 5.34,2.83 5.27,2.90 5.18,2.95 5.08,3.01 5.08,3.01 5.08,3.00 3.27,3.55 1.46,4.10 0.87,4.20 0.28,4.30 0.21,4.24 0.13,4.18 0.07,4.10 0.02,4.02 -0.01,3.94 -0.05,3.85 -0.06,3.75 -0.08,3.66 -0.07,3.56 -0.06,3.46 -0.03,3.37 -0.00,3.28 0.04,3.20 0.09,3.12 0.16,3.05 0.23,2.99 0.32,2.94 0.40,2.89 0.49,2.87 0.58,2.84 0.68,2.84 0.78,2.83 0.87,2.85 0.97,2.87 1.05,2.91 1.14,2.95 1.69,3.14 2.24,3.33 2.33,2.54 2.42,1.74 2.45,0.82 2.47,-0.09 2.49,-0.17 2.51,-0.25 2.55,-0.32 2.58,-0.39 2.64,-0.45 2.69,-0.51 2.75,-0.56 2.82,-0.61 2.89,-0.64 2.97,-0.67 3.05,-0.68 3.13,-0.69 3.21,-0.68 3.29,-0.67 3.36,-0.64 3.44,-0.61 3.51,-0.57 3.57,-0.52 3.63,-0.46 3.68,-0.41 3.72,-0.33 3.76,-0.26 3.78,-0.19 3.80,-0.11 3.80,-0.03 3.80,0.04 3.77,0.33 3.74,0.61 3.68,1.22 3.62,1.83 3.30,2.26 2.98,2.69 2.30,2.96 1.61,3.23 0.93,3.03 0.25,2.82 0.19,2.88 0.13,2.95 0.06,2.99 -0.01,3.03 -0.09,3.06 -0.17,3.09 -0.26,3.09 -0.34,3.10 -0.43,3.08 -0.51,3.07 -0.59,3.03 -0.67,3.00 -0.74,2.94 -0.80,2.89 -0.86,2.82 -0.91,2.75 -0.95,2.68 -0.98,2.60 -1.00,2.51 -1.01,2.43 -1.01,2.34 -1.00,2.26 -0.98,2.17 -0.95,2.09 -0.91,2.02 -0.86,1.95 -0.79,1.82 -0.72,1.70 -0.15,1.17 0.41,0.64 0.89,0.25 1.38,-0.12 2.00,-0.53 2.62,-0.93 3.23,-1.06 3.84,-1.19 4.33,-0.49 4.81,0.19 4.35,0.82 3.88,1.44 3.07,1.45 2.26,1.46 1.65,1.34 1.04,1.21 0.40,0.93 -0.23,0.64 -0.30,0.61 -0.38,0.57 -0.44,0.52 -0.50,0.46 -0.55,0.39 -0.60,0.33 -0.63,0.25 -0.66,0.17 -0.67,0.09 -0.68,0.01 -0.68,-0.07 -0.67,-0.15 -0.64,-0.23 -0.61,-0.30 -0.57,-0.37 -0.52,-0.44 -0.46,-0.50 -0.40,-0.56 -0.32,-0.60 -0.25,-0.64 -0.17,-0.66 -0.09,-0.68 -0.01,-0.68 0.07,-0.68 0.15,-0.66 0.23,-0.64 0.23,-0.64 L 0.23,-0.64 Z"></path></g><g transform="translate(374.3837972340602 124.72099850538189) rotate(0 1.4610237824975343 2.892869536599278)" stroke="none"><path fill="#e03131" d="M 0.67,0 Q 0.67,0 0.69,0.85 0.70,1.71 0.72,2.48 0.73,3.24 0.74,3.84 0.75,4.43 0.75,5.01 0.74,5.58 0.73,5.67 0.72,5.76 0.69,5.84 0.66,5.93 0.61,6.00 0.55,6.07 0.49,6.13 0.42,6.19 0.34,6.23 0.26,6.28 0.17,6.30 0.09,6.32 -0.00,6.32 -0.09,6.32 -0.17,6.30 -0.26,6.28 -0.34,6.23 -0.42,6.19 -0.49,6.13 -0.55,6.07 -0.61,6.00 -0.66,5.92 -0.69,5.84 -0.72,5.76 -0.73,5.67 -0.74,5.58 -0.20,5.62 0.34,5.67 1.75,5.39 3.17,5.12 3.27,5.15 3.37,5.18 3.46,5.24 3.55,5.30 3.61,5.38 3.67,5.47 3.71,5.57 3.74,5.67 3.74,5.78 3.74,5.88 3.71,5.98 3.67,6.08 3.61,6.17 3.54,6.25 3.46,6.31 3.37,6.37 3.26,6.40 3.16,6.43 3.06,6.42 2.95,6.42 2.85,6.38 2.75,6.34 2.67,6.27 2.59,6.20 2.54,6.11 2.48,6.02 2.46,5.91 2.44,5.81 2.45,5.70 2.46,5.60 2.51,5.50 2.55,5.40 2.62,5.33 2.70,5.25 2.79,5.20 2.88,5.15 2.99,5.13 3.09,5.12 3.20,5.14 3.30,5.15 3.40,5.20 3.49,5.25 3.56,5.33 3.64,5.41 3.68,5.50 3.73,5.60 3.74,5.71 3.75,5.81 3.73,5.92 3.70,6.02 3.65,6.11 3.59,6.20 3.51,6.27 3.43,6.34 3.33,6.38 3.23,6.42 3.13,6.42 3.02,6.43 3.02,6.43 3.02,6.43 1.49,6.43 -0.03,6.42 -0.49,5.97 -0.96,5.52 -0.68,5.06 -0.39,4.59 0.17,5.09 0.74,5.58 0.73,5.67 0.72,5.76 0.69,5.84 0.66,5.92 0.61,6.00 0.55,6.07 0.49,6.13 0.42,6.19 0.34,6.23 0.26,6.28 0.17,6.30 0.09,6.32 0.00,6.32 -0.09,6.32 -0.17,6.30 -0.26,6.28 -0.34,6.23 -0.42,6.19 -0.49,6.13 -0.55,6.07 -0.61,6.00 -0.66,5.93 -0.69,5.84 -0.72,5.76 -0.73,5.67 -0.74,5.58 -0.75,5.01 -0.75,4.43 -0.74,3.84 -0.73,3.24 -0.72,2.48 -0.70,1.71 -0.69,0.85 -0.67,0 -0.66,-0.08 -0.65,-0.16 -0.62,-0.23 -0.60,-0.31 -0.55,-0.38 -0.50,-0.44 -0.44,-0.50 -0.38,-0.55 -0.31,-0.59 -0.24,-0.63 -0.16,-0.65 -0.08,-0.67 0.00,-0.67 0.08,-0.67 0.16,-0.65 0.24,-0.63 0.31,-0.59 0.38,-0.55 0.44,-0.50 0.50,-0.44 0.55,-0.38 0.60,-0.31 0.62,-0.23 0.65,-0.16 0.66,-0.08 0.67,0.00 0.67,0.00 L 0.67,0 Z"></path></g><g transform="translate(379.5850839903059 124.25347232178115) rotate(0 0 4.003257598886535)" stroke="none"><path fill="#e03131" d="M 0.67,0 Q 0.67,0 0.69,1.00 0.72,2.01 0.74,2.91 0.76,3.81 0.71,5.84 0.65,7.87 0.63,7.98 0.62,8.08 0.57,8.18 0.52,8.27 0.44,8.34 0.36,8.42 0.27,8.46 0.17,8.51 0.07,8.52 -0.03,8.53 -0.13,8.51 -0.24,8.48 -0.33,8.43 -0.42,8.37 -0.49,8.29 -0.56,8.21 -0.60,8.11 -0.64,8.01 -0.64,7.91 -0.65,7.80 -0.62,7.70 -0.59,7.60 -0.53,7.51 -0.47,7.42 -0.39,7.36 -0.30,7.29 -0.20,7.26 -0.10,7.22 0.00,7.22 0.10,7.22 0.20,7.26 0.30,7.29 0.39,7.36 0.47,7.42 0.53,7.51 0.59,7.60 0.62,7.70 0.65,7.80 0.64,7.91 0.64,8.01 0.60,8.11 0.56,8.21 0.49,8.29 0.42,8.37 0.33,8.43 0.24,8.48 0.13,8.51 0.03,8.53 -0.07,8.52 -0.17,8.51 -0.27,8.46 -0.36,8.42 -0.44,8.34 -0.52,8.27 -0.57,8.18 -0.62,8.08 -0.63,7.98 -0.65,7.87 -0.65,7.87 -0.65,7.87 -0.71,5.84 -0.76,3.81 -0.74,2.91 -0.72,2.01 -0.69,1.00 -0.67,0 -0.66,-0.08 -0.65,-0.16 -0.62,-0.23 -0.59,-0.31 -0.54,-0.37 -0.50,-0.44 -0.44,-0.49 -0.38,-0.55 -0.30,-0.58 -0.23,-0.62 -0.15,-0.64 -0.08,-0.66 0.00,-0.66 0.08,-0.66 0.15,-0.64 0.23,-0.62 0.30,-0.58 0.38,-0.55 0.44,-0.49 0.50,-0.44 0.54,-0.37 0.59,-0.31 0.62,-0.23 0.65,-0.16 0.66,-0.08 0.67,0.00 0.67,0.00 L 0.67,0 Z"></path></g><g transform="translate(379.81886491708696 122.44175931413133) rotate(0 2.1039034961648895 2.5714475147462963)" stroke="none"><path fill="#e03131" d="M 0.27,-0.65 Q 0.27,-0.65 0.84,-0.56 1.42,-0.46 1.98,-0.14 2.54,0.17 2.96,0.52 3.38,0.88 3.93,1.26 4.48,1.64 4.68,2.17 4.89,2.71 4.84,3.43 4.80,4.15 3.12,4.93 1.44,5.71 1.34,5.74 1.23,5.77 1.13,5.76 1.02,5.76 0.92,5.72 0.82,5.69 0.74,5.62 0.66,5.55 0.60,5.46 0.54,5.37 0.52,5.27 0.49,5.17 0.50,5.06 0.51,4.96 0.55,4.86 0.60,4.76 0.67,4.68 0.74,4.60 0.83,4.55 0.92,4.50 1.03,4.48 1.13,4.46 1.24,4.48 1.34,4.49 1.44,4.54 1.53,4.59 1.61,4.66 1.68,4.74 1.73,4.83 1.78,4.93 1.79,5.03 1.80,5.14 1.78,5.24 1.76,5.35 1.71,5.44 1.66,5.53 1.58,5.60 1.50,5.67 1.40,5.71 1.30,5.75 1.20,5.76 1.09,5.77 0.99,5.75 0.89,5.72 0.80,5.66 0.71,5.60 0.64,5.52 0.58,5.44 0.54,5.34 0.50,5.24 0.50,5.13 0.50,5.03 0.53,4.92 0.56,4.82 0.62,4.74 0.69,4.65 0.77,4.59 0.86,4.53 0.86,4.53 0.86,4.53 2.16,4.06 3.47,3.60 3.21,3.09 2.96,2.58 2.31,2.24 1.66,1.91 1.16,1.62 0.66,1.34 0.19,0.99 -0.27,0.65 -0.34,0.61 -0.42,0.56 -0.48,0.51 -0.54,0.45 -0.59,0.37 -0.63,0.30 -0.66,0.22 -0.69,0.14 -0.70,0.06 -0.70,-0.02 -0.69,-0.10 -0.68,-0.19 -0.64,-0.27 -0.61,-0.35 -0.56,-0.41 -0.51,-0.48 -0.44,-0.54 -0.38,-0.59 -0.30,-0.63 -0.22,-0.67 -0.14,-0.68 -0.06,-0.70 0.02,-0.70 0.10,-0.70 0.19,-0.67 0.27,-0.65 0.27,-0.65 L 0.27,-0.65 Z"></path></g><g transform="translate(385.07861474000873 127.23398295345214) rotate(0 -0.2337630918003697 3.5357314152857953)" stroke="none"><path fill="#e03131" d="M 0.70,0.01 Q 0.70,0.01 0.74,1.21 0.77,2.40 0.50,4.68 0.24,6.95 0.23,7.06 0.21,7.17 0.16,7.26 0.12,7.36 0.04,7.43 -0.02,7.51 -0.12,7.55 -0.21,7.60 -0.32,7.62 -0.42,7.63 -0.53,7.61 -0.63,7.59 -0.72,7.54 -0.82,7.49 -0.89,7.41 -0.96,7.33 -1.00,7.23 -1.04,7.14 -1.05,7.03 -1.06,6.92 -1.04,6.82 -1.01,6.72 -0.95,6.63 -0.90,6.54 -0.81,6.47 -0.73,6.40 -0.63,6.37 -0.53,6.33 -0.43,6.33 -0.32,6.32 -0.22,6.35 -0.12,6.39 -0.03,6.45 0.05,6.51 0.11,6.60 0.17,6.68 0.20,6.78 0.23,6.88 0.23,6.99 0.23,7.10 0.19,7.20 0.16,7.30 0.09,7.38 0.02,7.46 -0.06,7.52 -0.15,7.58 -0.25,7.60 -0.35,7.63 -0.46,7.62 -0.56,7.61 -0.66,7.57 -0.76,7.53 -0.84,7.46 -0.92,7.39 -0.97,7.30 -1.02,7.20 -1.04,7.10 -1.06,7.00 -1.06,7.00 -1.06,7.00 -0.98,4.68 -0.90,2.36 -0.80,1.17 -0.70,-0.01 -0.69,-0.10 -0.68,-0.18 -0.65,-0.26 -0.61,-0.34 -0.56,-0.41 -0.51,-0.48 -0.45,-0.53 -0.38,-0.59 -0.30,-0.63 -0.23,-0.66 -0.14,-0.68 -0.06,-0.70 0.01,-0.70 0.10,-0.70 0.18,-0.67 0.27,-0.65 0.34,-0.61 0.41,-0.57 0.48,-0.51 0.54,-0.45 0.59,-0.38 0.63,-0.31 0.66,-0.23 0.69,-0.15 0.70,-0.06 0.70,0.02 0.70,0.01 L 0.70,0.01 Z"></path></g><g transform="translate(388.17601583507036 128.40281624743488) rotate(0 -0.6720577420630889 3.2727367901474054)" stroke="none"><path fill="#e03131" d="M 0.53,0.46 Q 0.53,0.46 0.00,1.18 -0.53,1.90 -1.10,2.48 -1.67,3.05 -0.07,4.50 1.52,5.95 1.59,6.02 1.67,6.09 1.72,6.19 1.77,6.28 1.79,6.39 1.80,6.49 1.78,6.60 1.77,6.70 1.72,6.79 1.67,6.89 1.59,6.96 1.51,7.03 1.42,7.08 1.32,7.12 1.21,7.13 1.11,7.14 1.00,7.12 0.90,7.10 0.81,7.04 0.72,6.99 0.65,6.91 0.58,6.83 0.54,6.73 0.50,6.63 0.50,6.52 0.49,6.42 0.52,6.31 0.55,6.21 0.61,6.12 0.67,6.04 0.76,5.97 0.84,5.91 0.94,5.87 1.04,5.84 1.15,5.84 1.25,5.84 1.35,5.87 1.46,5.91 1.54,5.97 1.62,6.04 1.68,6.13 1.74,6.21 1.77,6.32 1.80,6.42 1.79,6.53 1.79,6.63 1.75,6.73 1.71,6.83 1.64,6.91 1.57,6.99 1.48,7.04 1.39,7.10 1.28,7.12 1.18,7.14 1.07,7.13 0.97,7.12 0.87,7.08 0.78,7.03 0.78,7.03 0.78,7.03 -0.97,5.60 -2.73,4.17 -3.05,3.44 -3.37,2.71 -3.08,2.22 -2.80,1.73 -2.31,1.25 -1.82,0.78 -1.17,0.15 -0.53,-0.46 -0.46,-0.52 -0.40,-0.58 -0.33,-0.62 -0.25,-0.66 -0.17,-0.68 -0.08,-0.70 -0.00,-0.70 0.08,-0.70 0.16,-0.68 0.24,-0.66 0.32,-0.62 0.39,-0.58 0.46,-0.52 0.52,-0.47 0.57,-0.40 0.62,-0.33 0.65,-0.25 0.68,-0.17 0.69,-0.08 0.70,-0.00 0.69,0.08 0.68,0.16 0.65,0.24 0.62,0.32 0.58,0.39 0.53,0.46 0.53,0.46 L 0.53,0.46 Z"></path></g><g transform="translate(391.50719785691314 133.31193035014644) rotate(0 2.0454582644695734 2.1038856611841084)" stroke="none"><path fill="#e03131" d="M -0.05,-0.68 Q -0.05,-0.68 0.57,-0.81 1.21,-0.94 2.07,-0.67 2.94,-0.39 3.07,0.52 3.20,1.43 2.65,2.18 2.11,2.94 1.63,3.38 1.14,3.82 0.74,4.18 0.34,4.55 0.08,4.75 -0.16,4.95 -0.27,4.97 -0.38,5.00 -0.49,5.00 -0.60,5.00 -0.71,4.97 -0.82,4.94 -0.92,4.88 -1.02,4.83 -1.11,4.75 -1.19,4.68 -1.26,4.58 -1.32,4.49 -1.36,4.38 -1.40,4.28 -1.41,4.16 -1.42,4.05 -1.41,3.94 -1.39,3.83 -1.35,3.72 -1.31,3.62 -1.24,3.52 -1.18,3.43 -1.09,3.36 -1.01,3.28 -0.91,3.23 -0.80,3.18 -0.12,3.14 0.55,3.10 2.60,3.43 4.66,3.76 4.75,3.80 4.85,3.84 4.93,3.91 5.01,3.98 5.06,4.07 5.12,4.16 5.14,4.27 5.16,4.37 5.15,4.48 5.13,4.58 5.09,4.68 5.04,4.77 4.97,4.85 4.89,4.93 4.80,4.97 4.70,5.02 4.60,5.04 4.49,5.05 4.39,5.04 4.29,5.02 4.19,4.97 4.10,4.91 4.03,4.84 3.96,4.76 3.91,4.66 3.87,4.56 3.86,4.46 3.85,4.35 3.87,4.25 3.90,4.15 3.95,4.06 4.01,3.96 4.09,3.90 4.17,3.83 4.27,3.79 4.37,3.75 4.48,3.75 4.59,3.75 4.69,3.78 4.79,3.81 4.88,3.87 4.96,3.93 5.03,4.01 5.09,4.10 5.12,4.20 5.15,4.30 5.15,4.41 5.15,4.51 5.12,4.61 5.08,4.71 5.01,4.80 4.95,4.88 4.86,4.94 4.77,5.00 4.67,5.02 4.57,5.05 4.46,5.04 4.35,5.04 4.35,5.04 4.35,5.04 2.09,4.99 -0.16,4.95 -0.27,4.97 -0.38,5.00 -0.49,5.00 -0.60,5.00 -0.71,4.97 -0.82,4.94 -0.92,4.88 -1.02,4.83 -1.11,4.75 -1.19,4.68 -1.26,4.58 -1.32,4.49 -1.36,4.38 -1.40,4.28 -1.41,4.16 -1.42,4.05 -1.41,3.94 -1.39,3.83 -1.35,3.72 -1.31,3.62 -1.24,3.52 -1.18,3.43 -1.09,3.36 -1.01,3.28 -0.91,3.23 -0.80,3.18 -0.80,3.27 -0.79,3.36 -0.39,2.95 0.00,2.54 0.48,2.17 0.96,1.79 1.15,1.27 1.34,0.74 0.69,0.71 0.05,0.68 -0.02,0.68 -0.11,0.68 -0.19,0.65 -0.27,0.63 -0.34,0.59 -0.41,0.55 -0.47,0.49 -0.53,0.43 -0.57,0.36 -0.62,0.29 -0.64,0.21 -0.67,0.13 -0.68,0.05 -0.68,-0.02 -0.67,-0.11 -0.66,-0.19 -0.62,-0.26 -0.59,-0.34 -0.54,-0.41 -0.49,-0.47 -0.43,-0.53 -0.36,-0.58 -0.29,-0.61 -0.21,-0.65 -0.13,-0.67 -0.05,-0.68 -0.05,-0.68 L -0.05,-0.68 Z"></path></g><g stroke-linecap="round" transform="translate(164.92885668439158 66.10394460622365) rotate(0 169.45161392912152 15.253278053469103)"><path d="M7.63 0 C87.02 0, 166.42 0, 331.28 0 M7.63 0 C74.89 0, 142.16 0, 331.28 0 M331.28 0 C336.36 0, 338.9 2.54, 338.9 7.63 M331.28 0 C336.36 0, 338.9 2.54, 338.9 7.63 M338.9 7.63 C338.9 11.8, 338.9 15.97, 338.9 22.88 M338.9 7.63 C338.9 11.5, 338.9 15.38, 338.9 22.88 M338.9 22.88 C338.9 27.96, 336.36 30.51, 331.28 30.51 M338.9 22.88 C338.9 27.96, 336.36 30.51, 331.28 30.51 M331.28 30.51 C257.12 30.51, 182.96 30.51, 7.63 30.51 M331.28 30.51 C228.53 30.51, 125.78 30.51, 7.63 30.51 M7.63 30.51 C2.54 30.51, 0 27.96, 0 22.88 M7.63 30.51 C2.54 30.51, 0 27.96, 0 22.88 M0 22.88 C0 17.9, 0 12.93, 0 7.63 M0 22.88 C0 18.43, 0 13.99, 0 7.63 M0 7.63 C0 2.54, 2.54 0, 7.63 0 M0 7.63 C0 2.54, 2.54 0, 7.63 0" stroke="#f08c00" stroke-width="0.5" fill="none"></path></g><g stroke-linecap="round" transform="translate(133.8670262888964 137.05226466381714) rotate(0 169.45161392912152 15.253278053469103)"><path d="M7.63 0 C135.35 0, 263.08 0, 331.28 0 M7.63 0 C107.03 0, 206.44 0, 331.28 0 M331.28 0 C336.36 0, 338.9 2.54, 338.9 7.63 M331.28 0 C336.36 0, 338.9 2.54, 338.9 7.63 M338.9 7.63 C338.9 12.49, 338.9 17.35, 338.9 22.88 M338.9 7.63 C338.9 13.2, 338.9 18.78, 338.9 22.88 M338.9 22.88 C338.9 27.96, 336.36 30.51, 331.28 30.51 M338.9 22.88 C338.9 27.96, 336.36 30.51, 331.28 30.51 M331.28 30.51 C263.03 30.51, 194.79 30.51, 7.63 30.51 M331.28 30.51 C230.93 30.51, 130.58 30.51, 7.63 30.51 M7.63 30.51 C2.54 30.51, 0 27.96, 0 22.88 M7.63 30.51 C2.54 30.51, 0 27.96, 0 22.88 M0 22.88 C0 18.33, 0 13.78, 0 7.63 M0 22.88 C0 17.96, 0 13.04, 0 7.63 M0 7.63 C0 2.54, 2.54 0, 7.63 0 M0 7.63 C0 2.54, 2.54 0, 7.63 0" stroke="#f08c00" stroke-width="0.5" fill="none"></path></g><g transform="translate(141.6106538714152 78.49365599635416) rotate(0 3.6233725103576546 6.574687278652277)" stroke="none"><path fill="#e03131" d="M 0.67,-0.02 Q 0.67,-0.02 0.74,0.72 0.82,1.47 0.85,2.60 0.87,3.72 0.89,5.12 0.91,6.52 0.92,7.85 0.94,9.19 0.94,10.15 0.94,11.11 0.91,11.67 0.87,12.24 0.73,12.80 0.59,13.35 0.13,13.64 -0.32,13.92 -0.57,13.92 -0.82,13.93 -0.91,13.92 -1.01,13.91 -1.10,13.89 -1.19,13.86 -1.27,13.81 -1.35,13.76 -1.42,13.69 -1.48,13.63 -1.53,13.54 -1.58,13.46 -1.61,13.37 -1.64,13.28 -1.64,13.19 -1.65,13.09 -1.63,13.00 -1.61,12.91 -1.57,12.82 -1.54,12.73 -1.48,12.66 -1.42,12.59 -1.34,12.53 -1.27,12.47 -1.18,12.43 -1.10,12.39 -1.00,12.38 -0.91,12.36 0.08,12.33 1.08,12.31 1.79,12.29 2.51,12.28 3.16,12.27 3.82,12.26 5.74,12.09 7.66,11.92 7.76,11.89 7.86,11.85 7.96,11.85 8.07,11.85 8.17,11.88 8.27,11.91 8.36,11.98 8.44,12.04 8.50,12.13 8.56,12.22 8.59,12.32 8.62,12.42 8.62,12.53 8.61,12.63 8.57,12.73 8.54,12.83 8.47,12.91 8.40,12.99 8.31,13.05 8.22,13.11 8.11,13.13 8.01,13.15 7.91,13.14 7.80,13.13 7.70,13.09 7.61,13.04 7.53,12.97 7.45,12.90 7.40,12.81 7.35,12.71 7.33,12.61 7.31,12.50 7.33,12.40 7.34,12.29 7.39,12.20 7.44,12.11 7.52,12.03 7.59,11.96 7.69,11.91 7.79,11.87 7.89,11.85 8.00,11.84 8.10,11.86 8.21,11.89 8.30,11.94 8.39,11.99 8.46,12.07 8.53,12.15 8.57,12.25 8.61,12.35 8.62,12.46 8.62,12.56 8.60,12.66 8.57,12.77 8.51,12.86 8.45,12.94 8.37,13.01 8.28,13.07 8.28,13.07 8.28,13.07 6.05,13.55 3.82,14.03 3.16,14.02 2.50,14.01 1.79,14.00 1.08,13.98 0.12,13.95 -0.82,13.93 -0.91,13.92 -1.01,13.91 -1.10,13.89 -1.19,13.86 -1.27,13.81 -1.35,13.76 -1.42,13.69 -1.48,13.63 -1.53,13.54 -1.58,13.46 -1.61,13.37 -1.64,13.28 -1.64,13.19 -1.65,13.09 -1.63,13.00 -1.61,12.91 -1.57,12.82 -1.54,12.74 -1.48,12.66 -1.42,12.59 -1.34,12.53 -1.27,12.47 -1.18,12.43 -1.10,12.39 -1.00,12.38 -0.91,12.36 -0.92,12.49 -0.93,12.62 -0.85,11.85 -0.78,11.08 -0.75,10.13 -0.72,9.19 -0.70,7.86 -0.69,6.53 -0.69,5.13 -0.68,3.74 -0.68,2.64 -0.69,1.54 -0.68,0.78 -0.67,0.02 -0.66,-0.05 -0.66,-0.13 -0.63,-0.20 -0.60,-0.28 -0.56,-0.35 -0.52,-0.42 -0.46,-0.48 -0.40,-0.53 -0.33,-0.57 -0.26,-0.61 -0.18,-0.64 -0.11,-0.66 -0.02,-0.66 0.05,-0.67 0.13,-0.65 0.21,-0.64 0.28,-0.60 0.35,-0.57 0.42,-0.51 0.48,-0.46 0.53,-0.40 0.58,-0.33 0.61,-0.26 0.64,-0.19 0.65,-0.10 0.67,-0.02 0.67,-0.02 L 0.67,-0.02 Z"></path></g><g transform="translate(153.5327499030417 76.44819773188465) rotate(0 -1.4318279191209626 7.042213462253017)" stroke="none"><path fill="#e03131" d="M 0.66,0.13 Q 0.66,0.13 -0.04,4.07 -0.75,8.01 -1.09,9.77 -1.43,11.54 -1.38,12.47 -1.33,13.41 -1.24,13.46 -1.14,13.51 -1.07,13.58 -0.99,13.66 -0.94,13.75 -0.90,13.84 -0.88,13.95 -0.87,14.06 -0.89,14.16 -0.91,14.26 -0.96,14.36 -1.01,14.45 -1.09,14.52 -1.17,14.59 -1.26,14.64 -1.36,14.68 -1.47,14.69 -1.57,14.70 -1.68,14.67 -1.78,14.65 -1.87,14.59 -1.96,14.53 -2.03,14.45 -2.09,14.37 -2.13,14.27 -2.17,14.17 -2.17,14.06 -2.17,13.96 -2.14,13.86 -2.11,13.75 -2.05,13.67 -1.99,13.58 -1.90,13.52 -1.82,13.46 -1.72,13.42 -1.62,13.39 -1.51,13.39 -1.40,13.40 -1.30,13.43 -1.20,13.47 -1.12,13.53 -1.04,13.60 -0.98,13.69 -0.92,13.78 -0.90,13.88 -0.87,13.98 -0.88,14.09 -0.89,14.20 -0.93,14.29 -0.97,14.39 -1.04,14.47 -1.11,14.55 -1.20,14.60 -1.29,14.66 -1.40,14.68 -1.50,14.70 -1.61,14.68 -1.71,14.67 -1.71,14.67 -1.71,14.67 -2.48,12.92 -3.26,11.17 -2.89,9.41 -2.53,7.64 -1.59,3.75 -0.66,-0.13 -0.63,-0.21 -0.61,-0.29 -0.56,-0.36 -0.52,-0.43 -0.46,-0.48 -0.40,-0.54 -0.33,-0.58 -0.26,-0.62 -0.18,-0.64 -0.10,-0.66 -0.02,-0.67 0.05,-0.67 0.13,-0.65 0.21,-0.64 0.29,-0.60 0.36,-0.57 0.42,-0.51 0.49,-0.46 0.54,-0.40 0.58,-0.33 0.62,-0.26 0.65,-0.18 0.66,-0.10 0.67,-0.02 0.67,0.05 0.66,0.13 0.66,0.13 L 0.66,0.13 Z"></path></g><g transform="translate(155.8704164910069 75.80535368817891) rotate(0 1.1103880622873419 7.012999763895664)" stroke="none"><path fill="#e03131" d="M 0.28,-0.63 Q 0.28,-0.63 1.47,-0.13 2.65,0.37 3.30,1.10 3.96,1.84 4.08,2.77 4.20,3.69 3.76,4.62 3.32,5.55 2.49,6.33 1.65,7.12 0.75,7.67 -0.15,8.23 -0.72,8.54 -1.30,8.85 -1.60,9.01 -1.90,9.18 -2.00,9.21 -2.09,9.24 -2.19,9.25 -2.29,9.26 -2.39,9.25 -2.48,9.23 -2.58,9.20 -2.67,9.16 -2.75,9.10 -2.83,9.04 -2.89,8.97 -2.96,8.89 -3.00,8.80 -3.05,8.72 -3.07,8.62 -3.09,8.52 -3.09,8.42 -3.09,8.32 -3.06,8.23 -3.04,8.13 -2.99,8.04 -2.94,7.96 -2.87,7.88 -2.81,7.81 -2.72,7.76 -2.64,7.70 -1.73,7.24 -0.82,6.79 -0.24,6.68 0.32,6.56 0.89,6.61 1.47,6.65 2.00,6.87 2.53,7.09 3.30,7.60 4.07,8.11 4.59,8.71 5.10,9.31 5.30,9.98 5.49,10.65 5.48,11.33 5.47,12.01 4.87,12.88 4.27,13.75 3.71,14.02 3.15,14.29 2.47,14.44 1.80,14.59 0.08,14.63 -1.63,14.66 -1.74,14.66 -1.84,14.65 -1.94,14.62 -2.04,14.58 -2.12,14.51 -2.21,14.44 -2.26,14.35 -2.32,14.26 -2.34,14.16 -2.37,14.06 -2.36,13.95 -2.35,13.85 -2.31,13.75 -2.26,13.65 -2.19,13.57 -2.12,13.49 -2.03,13.44 -1.94,13.39 -1.83,13.37 -1.73,13.35 -1.62,13.37 -1.52,13.38 -1.42,13.43 -1.33,13.48 -1.25,13.55 -1.18,13.63 -1.13,13.73 -1.08,13.82 -1.07,13.93 -1.06,14.03 -1.08,14.14 -1.10,14.24 -1.15,14.33 -1.20,14.42 -1.28,14.49 -1.36,14.56 -1.46,14.61 -1.56,14.65 -1.67,14.66 -1.77,14.66 -1.87,14.64 -1.98,14.61 -2.07,14.55 -2.16,14.49 -2.22,14.41 -2.29,14.33 -2.32,14.23 -2.36,14.13 -2.36,14.02 -2.36,13.92 -2.33,13.81 -2.30,13.71 -2.24,13.63 -2.17,13.54 -2.09,13.48 -2.00,13.42 -1.90,13.39 -1.80,13.36 -1.80,13.36 -1.80,13.36 0.32,12.90 2.44,12.44 2.96,12.23 3.48,12.02 3.67,11.45 3.86,10.87 3.70,10.37 3.53,9.86 3.02,9.43 2.52,9.00 1.90,8.65 1.28,8.29 0.50,8.33 -0.27,8.37 -1.08,8.77 -1.90,9.18 -2.00,9.21 -2.09,9.24 -2.19,9.25 -2.29,9.26 -2.39,9.25 -2.48,9.23 -2.58,9.20 -2.67,9.16 -2.75,9.10 -2.83,9.04 -2.89,8.97 -2.96,8.89 -3.00,8.80 -3.05,8.72 -3.07,8.62 -3.09,8.52 -3.09,8.42 -3.09,8.32 -3.06,8.23 -3.04,8.13 -2.99,8.04 -2.94,7.96 -2.87,7.88 -2.81,7.81 -2.72,7.76 -2.64,7.70 -2.35,7.57 -2.06,7.44 -1.52,7.15 -0.97,6.86 -0.19,6.39 0.58,5.93 1.26,5.35 1.94,4.76 2.32,3.71 2.71,2.66 2.34,2.18 1.98,1.71 0.84,1.17 -0.28,0.63 -0.35,0.58 -0.42,0.54 -0.48,0.48 -0.54,0.42 -0.58,0.35 -0.63,0.28 -0.65,0.20 -0.68,0.12 -0.68,0.04 -0.69,-0.04 -0.67,-0.12 -0.66,-0.20 -0.62,-0.28 -0.59,-0.35 -0.54,-0.42 -0.49,-0.49 -0.42,-0.54 -0.35,-0.59 -0.28,-0.62 -0.20,-0.66 -0.12,-0.67 -0.04,-0.69 0.04,-0.68 0.12,-0.68 0.20,-0.65 0.28,-0.63 0.28,-0.63 L 0.28,-0.63 Z"></path></g><g transform="translate(163.52626029860846 83.98718674605698) rotate(0 0.00001783498069585221 3.535731415285909)" stroke="none"><path fill="#e03131" d="M 0.71,0 Q 0.71,0 0.74,1.14 0.76,2.28 0.76,3.23 0.76,4.17 0.56,5.29 0.36,6.40 0.46,6.44 0.56,6.47 0.64,6.54 0.72,6.61 0.78,6.70 0.84,6.79 0.86,6.89 0.89,6.99 0.88,7.10 0.87,7.21 0.83,7.30 0.79,7.40 0.71,7.48 0.64,7.56 0.55,7.61 0.46,7.66 0.35,7.68 0.25,7.70 0.14,7.69 0.04,7.67 -0.05,7.62 -0.14,7.58 -0.22,7.50 -0.29,7.43 -0.34,7.33 -0.38,7.23 -0.40,7.13 -0.41,7.02 -0.39,6.92 -0.37,6.82 -0.32,6.72 -0.27,6.63 -0.19,6.56 -0.11,6.49 -0.01,6.45 0.08,6.41 0.18,6.40 0.29,6.39 0.39,6.42 0.50,6.44 0.59,6.50 0.67,6.56 0.74,6.64 0.81,6.72 0.84,6.82 0.88,6.92 0.88,7.03 0.88,7.14 0.85,7.24 0.82,7.34 0.76,7.43 0.70,7.51 0.61,7.57 0.52,7.63 0.42,7.66 0.32,7.70 0.21,7.69 0.11,7.69 0.11,7.69 0.11,7.69 -0.35,5.92 -0.82,4.14 -0.79,3.21 -0.76,2.28 -0.74,1.14 -0.71,0 -0.70,-0.08 -0.69,-0.17 -0.66,-0.25 -0.63,-0.33 -0.58,-0.40 -0.53,-0.47 -0.47,-0.53 -0.40,-0.59 -0.33,-0.63 -0.25,-0.67 -0.17,-0.69 -0.08,-0.71 0.00,-0.71 0.08,-0.71 0.17,-0.69 0.25,-0.67 0.33,-0.63 0.40,-0.59 0.47,-0.53 0.53,-0.47 0.58,-0.40 0.63,-0.33 0.66,-0.25 0.69,-0.17 0.70,-0.08 0.71,0.00 0.71,0.00 L 0.71,0 Z"></path></g><g transform="translate(168.55226486471054 84.1625046061622) rotate(0 -2.3376665879652307 2.8051927715659986)" stroke="none"><path fill="#e03131" d="M 0.46,0.56 Q 0.46,0.56 -0.37,1.29 -1.21,2.02 -1.83,2.63 -2.45,3.23 -2.88,3.64 -3.30,4.04 -1.75,4.48 -0.20,4.93 -0.11,4.97 -0.01,5.02 0.05,5.10 0.13,5.17 0.17,5.27 0.22,5.36 0.24,5.47 0.25,5.57 0.23,5.68 0.21,5.78 0.16,5.87 0.11,5.97 0.03,6.04 -0.04,6.11 -0.14,6.15 -0.24,6.19 -0.34,6.20 -0.45,6.21 -0.55,6.18 -0.66,6.16 -0.75,6.10 -0.83,6.04 -0.90,5.96 -0.97,5.88 -1.00,5.78 -1.04,5.68 -1.04,5.57 -1.05,5.46 -1.02,5.36 -0.98,5.26 -0.92,5.18 -0.86,5.09 -0.77,5.03 -0.69,4.97 -0.59,4.93 -0.48,4.90 -0.38,4.91 -0.27,4.91 -0.17,4.95 -0.07,4.98 0.00,5.05 0.08,5.12 0.14,5.21 0.20,5.30 0.22,5.40 0.25,5.50 0.24,5.61 0.23,5.71 0.19,5.81 0.15,5.91 0.08,5.99 0.00,6.07 -0.08,6.12 -0.17,6.17 -0.27,6.19 -0.38,6.21 -0.48,6.20 -0.59,6.18 -0.59,6.18 -0.59,6.18 -2.50,5.76 -4.40,5.34 -4.80,4.68 -5.20,4.02 -4.81,3.43 -4.42,2.84 -4.00,2.45 -3.57,2.06 -2.89,1.43 -2.21,0.80 -1.34,0.11 -0.46,-0.56 -0.39,-0.61 -0.31,-0.66 -0.23,-0.69 -0.14,-0.71 -0.06,-0.72 0.02,-0.73 0.11,-0.71 0.20,-0.70 0.28,-0.67 0.36,-0.63 0.43,-0.58 0.50,-0.53 0.56,-0.46 0.61,-0.39 0.65,-0.31 0.69,-0.23 0.71,-0.14 0.73,-0.06 0.72,0.02 0.72,0.11 0.70,0.19 0.67,0.28 0.63,0.36 0.58,0.43 0.52,0.50 0.46,0.56 0.46,0.56 L 0.46,0.56 Z"></path></g><g transform="translate(151.1366202484005 146.16909658395502) rotate(0 3.0681963141946653 7.714289039296887)" stroke="none"><path fill="#e03131" d="M 0.67,-0.00 Q 0.67,-0.00 0.73,1.21 0.79,2.44 0.81,4.00 0.83,5.57 0.81,7.14 0.79,8.70 0.78,9.88 0.78,11.06 0.76,11.78 0.74,12.51 0.69,13.08 0.64,13.66 0.51,14.22 0.39,14.78 0.93,14.60 1.48,14.42 2.48,14.44 3.48,14.47 4.90,14.59 6.32,14.71 6.43,14.69 6.53,14.67 6.64,14.69 6.74,14.70 6.84,14.75 6.93,14.80 7.01,14.87 7.08,14.95 7.13,15.05 7.17,15.14 7.18,15.25 7.20,15.35 7.18,15.46 7.15,15.56 7.10,15.65 7.05,15.74 6.97,15.81 6.89,15.88 6.79,15.93 6.69,15.97 6.59,15.97 6.48,15.98 6.38,15.95 6.27,15.93 6.19,15.87 6.10,15.81 6.03,15.73 5.97,15.64 5.93,15.54 5.89,15.44 5.89,15.34 5.89,15.23 5.92,15.13 5.96,15.03 6.02,14.94 6.08,14.86 6.17,14.80 6.26,14.74 6.36,14.71 6.46,14.68 6.57,14.68 6.67,14.68 6.77,14.72 6.87,14.76 6.95,14.83 7.04,14.89 7.09,14.99 7.15,15.08 7.17,15.18 7.20,15.28 7.19,15.39 7.18,15.49 7.13,15.59 7.09,15.69 7.02,15.77 6.95,15.84 6.85,15.90 6.76,15.95 6.76,15.95 6.76,15.95 4.61,16.04 2.46,16.13 1.91,16.12 1.36,16.11 0.57,16.04 -0.20,15.96 -0.61,15.37 -1.01,14.78 -0.92,14.24 -0.83,13.70 -0.87,13.08 -0.91,12.46 -0.88,11.75 -0.86,11.04 -0.84,9.85 -0.82,8.67 -0.78,7.12 -0.74,5.58 -0.73,4.02 -0.73,2.46 -0.70,1.23 -0.67,0.00 -0.66,-0.07 -0.65,-0.15 -0.62,-0.22 -0.60,-0.30 -0.55,-0.37 -0.51,-0.43 -0.45,-0.49 -0.39,-0.54 -0.31,-0.58 -0.24,-0.62 -0.16,-0.64 -0.09,-0.66 -0.00,-0.66 0.07,-0.66 0.15,-0.65 0.23,-0.63 0.30,-0.59 0.37,-0.55 0.43,-0.50 0.49,-0.45 0.54,-0.38 0.59,-0.32 0.62,-0.24 0.65,-0.17 0.66,-0.08 0.67,-0.00 0.67,-0.00 L 0.67,-0.00 Z"></path></g><g transform="translate(163.0002888833124 145.1755811500775) rotate(0 -0.7013071103818334 7.422098550781925)" stroke="none"><path fill="#e03131" d="M 0.66,0.06 Q 0.66,0.06 0.53,1.58 0.39,3.09 0.23,4.83 0.07,6.57 -0.06,8.23 -0.19,9.89 -0.29,10.97 -0.39,12.06 -0.43,12.59 -0.46,13.13 -0.08,13.12 0.30,13.12 0.28,13.20 0.27,13.28 0.23,13.35 0.20,13.42 0.15,13.49 0.10,13.55 0.04,13.60 -0.01,13.65 -0.08,13.68 -0.16,13.71 -0.23,13.72 -0.31,13.74 -0.39,13.73 -0.47,13.73 -0.54,13.70 -0.62,13.68 -0.69,13.64 -0.76,13.60 -0.81,13.54 -0.87,13.49 -0.91,13.42 -0.95,13.35 -0.97,13.28 -1.00,13.20 -1.00,13.12 -1.00,13.04 -0.94,12.86 -0.87,12.68 -0.79,12.61 -0.71,12.54 -0.62,12.49 -0.52,12.45 -0.41,12.44 -0.31,12.43 -0.20,12.45 -0.10,12.48 -0.01,12.53 0.07,12.59 0.14,12.67 0.21,12.75 0.24,12.85 0.28,12.95 0.29,13.05 0.29,13.16 0.26,13.26 0.23,13.36 0.17,13.45 0.11,13.54 0.03,13.60 -0.05,13.67 -0.15,13.70 -0.25,13.73 -0.36,13.73 -0.46,13.73 -0.56,13.69 -0.66,13.66 -0.75,13.59 -0.83,13.53 -0.89,13.44 -0.95,13.35 -0.98,13.25 -1.00,13.15 -1.00,13.04 -0.99,12.94 -0.95,12.84 -0.91,12.74 -0.84,12.66 -0.77,12.58 -0.68,12.52 -0.59,12.47 -0.48,12.45 -0.38,12.43 -0.27,12.44 -0.17,12.45 -0.07,12.50 0.01,12.54 0.09,12.62 0.17,12.69 0.22,12.78 0.26,12.88 0.28,12.98 0.30,13.09 0.28,13.19 0.26,13.30 0.28,13.21 0.30,13.12 0.28,13.20 0.27,13.28 0.23,13.35 0.20,13.42 0.15,13.49 0.10,13.55 0.04,13.60 -0.01,13.65 -0.08,13.68 -0.16,13.71 -0.23,13.72 -0.31,13.74 -0.39,13.73 -0.47,13.73 -0.54,13.70 -0.62,13.68 -0.69,13.64 -0.76,13.60 -0.81,13.54 -0.87,13.49 -0.91,13.42 -0.95,13.35 -0.97,13.28 -1.00,13.20 -1.00,13.12 -1.00,13.04 -1.59,13.00 -2.18,12.97 -2.12,12.42 -2.06,11.87 -1.91,10.80 -1.77,9.74 -1.59,8.07 -1.40,6.41 -1.20,4.68 -1.00,2.95 -0.83,1.44 -0.66,-0.06 -0.65,-0.14 -0.63,-0.22 -0.59,-0.29 -0.56,-0.37 -0.50,-0.43 -0.45,-0.49 -0.39,-0.54 -0.32,-0.58 -0.24,-0.61 -0.17,-0.64 -0.09,-0.66 -0.01,-0.67 0.06,-0.66 0.14,-0.65 0.22,-0.62 0.29,-0.60 0.36,-0.55 0.43,-0.51 0.49,-0.45 0.54,-0.39 0.58,-0.32 0.62,-0.25 0.64,-0.17 0.66,-0.09 0.66,-0.01 0.66,0.06 0.66,0.06 L 0.66,0.06 Z"></path></g><g transform="translate(163.4093876701986 146.28598704734554) rotate(0 2.688302308175423 6.866877767167239)" stroke="none"><path fill="#e03131" d="M -0.09,-0.66 Q -0.09,-0.66 0.70,-0.82 1.50,-0.98 2.47,-0.91 3.45,-0.84 3.88,-0.21 4.32,0.41 4.43,1.16 4.53,1.91 4.53,2.47 4.52,3.03 4.39,3.63 4.27,4.24 4.03,4.75 3.80,5.27 3.18,5.86 2.56,6.45 2.01,6.58 1.45,6.71 1.00,6.27 0.56,5.83 0.96,5.22 1.37,4.62 2.09,4.56 2.81,4.51 3.67,5.14 4.52,5.77 4.86,6.28 5.20,6.79 5.51,7.38 5.81,7.96 6.04,8.56 6.26,9.16 6.51,10.07 6.76,10.98 6.85,11.53 6.93,12.08 6.82,12.80 6.70,13.52 6.04,14.07 5.38,14.63 4.57,14.89 3.77,15.15 1.48,14.68 -0.79,14.20 -0.88,14.14 -0.97,14.09 -1.04,14.01 -1.11,13.93 -1.15,13.83 -1.19,13.73 -1.19,13.62 -1.20,13.52 -1.17,13.41 -1.14,13.31 -1.08,13.22 -1.02,13.14 -0.94,13.07 -0.85,13.01 -0.75,12.98 -0.65,12.94 -0.54,12.94 -0.44,12.94 -0.34,12.98 -0.24,13.01 -0.15,13.08 -0.07,13.14 -0.01,13.23 0.04,13.32 0.07,13.42 0.10,13.52 0.09,13.63 0.08,13.73 0.04,13.83 0.00,13.93 -0.05,14.01 -0.12,14.09 -0.21,14.15 -0.31,14.20 -0.41,14.22 -0.51,14.25 -0.62,14.23 -0.72,14.22 -0.82,14.18 -0.92,14.13 -0.99,14.06 -1.07,13.99 -1.12,13.89 -1.17,13.80 -1.19,13.69 -1.20,13.59 -1.19,13.48 -1.17,13.38 -1.12,13.28 -1.07,13.19 -0.99,13.12 -0.91,13.05 -0.82,13.00 -0.72,12.96 -0.61,12.95 -0.51,12.93 -0.40,12.96 -0.30,12.98 -0.30,12.98 -0.30,12.98 1.20,12.96 2.72,12.93 3.28,12.89 3.84,12.85 4.40,12.74 4.97,12.63 4.97,11.96 4.96,11.30 4.77,10.53 4.59,9.77 4.41,9.26 4.23,8.76 3.73,7.83 3.23,6.91 2.63,6.47 2.02,6.03 1.93,5.43 1.83,4.82 2.18,4.31 2.53,3.81 2.69,2.92 2.85,2.04 2.85,1.27 2.85,0.49 2.29,0.50 1.72,0.51 0.90,0.58 0.09,0.66 0.01,0.66 -0.06,0.66 -0.14,0.64 -0.22,0.63 -0.29,0.59 -0.36,0.55 -0.42,0.50 -0.48,0.45 -0.53,0.39 -0.58,0.32 -0.61,0.25 -0.64,0.17 -0.65,0.09 -0.66,0.01 -0.66,-0.06 -0.65,-0.14 -0.62,-0.22 -0.59,-0.29 -0.55,-0.36 -0.51,-0.43 -0.45,-0.48 -0.39,-0.54 -0.32,-0.58 -0.25,-0.61 -0.17,-0.64 -0.09,-0.66 -0.09,-0.66 L -0.09,-0.66 Z"></path></g><g transform="translate(171.88342905157253 155.28598200903502) rotate(0 0.0876589300525552 4.120148062277053)" stroke="none"><path fill="#e03131" d="M 0.73,0 Q 0.73,0 0.77,1.68 0.82,3.36 0.78,5.63 0.74,7.91 0.77,8.01 0.80,8.11 0.80,8.22 0.79,8.33 0.76,8.43 0.72,8.52 0.65,8.61 0.58,8.69 0.49,8.74 0.40,8.80 0.30,8.83 0.20,8.85 0.09,8.84 -0.01,8.83 -0.10,8.79 -0.20,8.74 -0.28,8.67 -0.36,8.60 -0.41,8.51 -0.46,8.41 -0.48,8.31 -0.50,8.20 -0.48,8.10 -0.46,7.99 -0.42,7.90 -0.37,7.81 -0.29,7.73 -0.22,7.66 -0.12,7.61 -0.02,7.56 0.07,7.55 0.18,7.54 0.28,7.56 0.38,7.58 0.48,7.63 0.57,7.69 0.64,7.77 0.71,7.85 0.75,7.95 0.79,8.04 0.80,8.15 0.80,8.26 0.78,8.36 0.75,8.46 0.69,8.55 0.63,8.64 0.55,8.70 0.47,8.77 0.37,8.81 0.27,8.84 0.16,8.84 0.05,8.84 -0.04,8.81 -0.14,8.78 -0.22,8.72 -0.31,8.65 -0.37,8.57 -0.43,8.48 -0.43,8.48 -0.43,8.48 -0.62,5.92 -0.82,3.36 -0.77,1.68 -0.73,0 -0.72,-0.08 -0.71,-0.17 -0.68,-0.25 -0.65,-0.34 -0.59,-0.41 -0.54,-0.48 -0.48,-0.54 -0.41,-0.60 -0.33,-0.64 -0.26,-0.68 -0.17,-0.70 -0.08,-0.72 0.00,-0.72 0.08,-0.72 0.17,-0.70 0.26,-0.68 0.33,-0.64 0.41,-0.60 0.48,-0.54 0.54,-0.48 0.59,-0.41 0.65,-0.34 0.68,-0.25 0.71,-0.17 0.72,-0.08 0.73,0.00 0.73,0.00 L 0.73,0 Z"></path></g><g transform="translate(175.38992893352037 156.8054866931891) rotate(0 -0.8474112721296763 2.6590886098181272)" stroke="none"><path fill="#e03131" d="M 0.55,0.47 Q 0.55,0.47 -0.00,1.18 -0.56,1.90 -0.91,2.30 -1.27,2.70 -1.69,3.10 -2.12,3.50 -0.43,4.07 1.24,4.63 1.34,4.67 1.44,4.71 1.52,4.78 1.60,4.85 1.66,4.94 1.72,5.03 1.74,5.13 1.76,5.24 1.75,5.34 1.74,5.45 1.69,5.55 1.65,5.64 1.58,5.72 1.51,5.80 1.41,5.85 1.32,5.90 1.21,5.91 1.11,5.93 1.00,5.92 0.90,5.90 0.80,5.85 0.71,5.80 0.64,5.72 0.56,5.65 0.52,5.55 0.47,5.45 0.46,5.35 0.45,5.24 0.47,5.14 0.50,5.03 0.55,4.94 0.60,4.85 0.68,4.78 0.77,4.71 0.86,4.67 0.96,4.63 1.07,4.63 1.17,4.62 1.28,4.65 1.38,4.68 1.47,4.74 1.56,4.80 1.62,4.88 1.69,4.97 1.72,5.07 1.75,5.17 1.75,5.27 1.75,5.38 1.72,5.48 1.69,5.58 1.62,5.67 1.56,5.75 1.47,5.81 1.38,5.87 1.28,5.90 1.18,5.93 1.07,5.92 0.97,5.92 0.97,5.92 0.97,5.92 -0.74,5.31 -2.45,4.70 -2.92,4.32 -3.38,3.93 -3.59,3.26 -3.79,2.60 -3.30,2.27 -2.82,1.95 -2.30,1.40 -1.79,0.85 -1.17,0.18 -0.55,-0.47 -0.49,-0.53 -0.42,-0.59 -0.35,-0.63 -0.27,-0.68 -0.18,-0.70 -0.10,-0.72 -0.01,-0.72 0.07,-0.73 0.16,-0.71 0.24,-0.69 0.32,-0.65 0.40,-0.61 0.47,-0.55 0.54,-0.49 0.59,-0.42 0.64,-0.35 0.67,-0.27 0.70,-0.18 0.72,-0.10 0.73,-0.01 0.72,0.07 0.71,0.16 0.68,0.24 0.65,0.32 0.60,0.40 0.55,0.47 0.55,0.47 L 0.55,0.47 Z"></path></g><g transform="translate(177.96134077830533 161.01325801555754) rotate(0 1.8117130076498427 1.8409267060070533)" stroke="none"><path fill="#e03131" d="M 0.17,-0.75 Q 0.17,-0.75 0.69,-0.65 1.22,-0.54 1.91,-0.21 2.61,0.11 2.96,0.67 3.31,1.23 2.91,2.00 2.51,2.77 1.93,3.07 1.35,3.38 0.84,3.60 0.33,3.82 -0.24,4.07 -0.83,4.32 -0.90,4.34 -0.97,4.36 -1.07,4.37 -1.17,4.38 -1.27,4.37 -1.37,4.36 -1.47,4.32 -1.56,4.29 -1.65,4.23 -1.73,4.17 -1.80,4.10 -1.87,4.02 -1.91,3.93 -1.96,3.84 -1.99,3.74 -2.01,3.64 -2.01,3.54 -2.01,3.44 -1.99,3.34 -1.96,3.24 -1.92,3.15 -1.87,3.06 -1.80,2.99 -1.73,2.91 -1.65,2.85 -1.57,2.79 -1.47,2.76 -1.38,2.72 -0.70,2.68 -0.02,2.65 0.62,2.64 1.27,2.64 3.02,2.86 4.77,3.08 4.87,3.10 4.98,3.11 5.07,3.16 5.17,3.22 5.24,3.29 5.31,3.37 5.35,3.47 5.40,3.56 5.41,3.67 5.42,3.78 5.39,3.88 5.37,3.98 5.31,4.07 5.26,4.16 5.18,4.23 5.10,4.30 5.00,4.34 4.90,4.38 4.79,4.38 4.68,4.39 4.58,4.36 4.48,4.33 4.39,4.27 4.31,4.21 4.24,4.12 4.18,4.04 4.15,3.93 4.11,3.83 4.11,3.73 4.12,3.62 4.15,3.52 4.19,3.42 4.25,3.34 4.32,3.25 4.41,3.19 4.49,3.13 4.60,3.11 4.70,3.08 4.80,3.09 4.91,3.09 5.01,3.13 5.11,3.17 5.19,3.24 5.27,3.31 5.32,3.41 5.38,3.50 5.40,3.60 5.42,3.71 5.41,3.81 5.39,3.92 5.35,4.01 5.30,4.11 5.23,4.18 5.15,4.26 5.06,4.31 4.97,4.36 4.86,4.37 4.76,4.39 4.76,4.39 4.76,4.39 2.69,4.43 0.62,4.47 -0.17,4.42 -0.97,4.36 -1.07,4.37 -1.17,4.38 -1.27,4.37 -1.37,4.36 -1.47,4.32 -1.56,4.29 -1.65,4.23 -1.73,4.17 -1.80,4.10 -1.87,4.02 -1.91,3.93 -1.96,3.84 -1.99,3.74 -2.01,3.64 -2.01,3.54 -2.01,3.44 -1.99,3.34 -1.96,3.24 -1.92,3.15 -1.87,3.06 -1.80,2.99 -1.73,2.91 -1.65,2.85 -1.57,2.79 -1.47,2.76 -1.38,2.72 -0.98,2.55 -0.58,2.38 0.06,2.11 0.71,1.83 1.27,1.65 1.82,1.48 1.34,1.25 0.86,1.01 0.34,0.88 -0.17,0.75 -0.25,0.72 -0.34,0.69 -0.42,0.64 -0.50,0.59 -0.56,0.52 -0.63,0.45 -0.67,0.37 -0.72,0.28 -0.74,0.19 -0.76,0.10 -0.77,0.01 -0.77,-0.07 -0.75,-0.16 -0.73,-0.26 -0.68,-0.34 -0.64,-0.42 -0.58,-0.49 -0.52,-0.57 -0.45,-0.62 -0.37,-0.68 -0.28,-0.71 -0.20,-0.74 -0.10,-0.76 -0.01,-0.77 0.07,-0.76 0.17,-0.75 0.17,-0.75 L 0.17,-0.75 Z"></path></g><g transform="translate(182.69513702091172 165.3379554712776) rotate(0 2.5714296797656004 2.04545826446963)" stroke="none"><path fill="#e03131" d="M 0.39,-0.55 Q 0.39,-0.55 1.06,-0.24 1.73,0.05 2.25,0.51 2.76,0.97 3.92,2.20 5.07,3.43 5.17,3.45 5.28,3.47 5.37,3.52 5.46,3.57 5.53,3.65 5.60,3.73 5.64,3.83 5.69,3.93 5.70,4.03 5.70,4.14 5.68,4.24 5.65,4.34 5.59,4.43 5.54,4.52 5.45,4.59 5.37,4.66 5.27,4.69 5.17,4.73 5.07,4.73 4.96,4.73 4.86,4.70 4.76,4.67 4.67,4.61 4.58,4.55 4.52,4.46 4.46,4.37 4.43,4.27 4.40,4.17 4.40,4.06 4.40,3.96 4.44,3.86 4.48,3.76 4.54,3.68 4.61,3.59 4.70,3.54 4.79,3.48 4.89,3.45 5.00,3.43 5.10,3.44 5.21,3.45 5.31,3.49 5.40,3.53 5.48,3.60 5.56,3.67 5.61,3.77 5.67,3.86 5.69,3.96 5.71,4.07 5.69,4.17 5.68,4.28 5.63,4.37 5.58,4.47 5.51,4.54 5.43,4.62 5.34,4.66 5.24,4.71 5.14,4.73 5.03,4.74 5.03,4.74 5.03,4.74 3.21,3.58 1.39,2.42 1.00,2.02 0.61,1.62 0.11,1.08 -0.39,0.55 -0.45,0.49 -0.51,0.44 -0.56,0.37 -0.60,0.30 -0.63,0.22 -0.66,0.15 -0.67,0.07 -0.67,-0.01 -0.66,-0.09 -0.65,-0.17 -0.62,-0.24 -0.59,-0.32 -0.54,-0.39 -0.50,-0.45 -0.43,-0.51 -0.37,-0.56 -0.30,-0.60 -0.23,-0.63 -0.15,-0.65 -0.07,-0.67 0.01,-0.67 0.09,-0.67 0.17,-0.65 0.25,-0.63 0.32,-0.59 0.39,-0.55 0.39,-0.55 L 0.39,-0.55 Z"></path></g><g transform="translate(188.77304874764445 163.81848645708487) rotate(0 -3.4480546502525726 3.0974010950616275)" stroke="none"><path fill="#e03131" d="M 0.54,0.62 Q 0.54,0.62 -0.12,1.24 -0.79,1.87 -1.33,2.40 -1.87,2.93 -2.48,3.47 -3.10,4.02 -4.70,5.26 -6.31,6.50 -6.38,6.58 -6.45,6.66 -6.55,6.71 -6.64,6.76 -6.75,6.78 -6.85,6.80 -6.95,6.79 -7.06,6.77 -7.15,6.72 -7.25,6.68 -7.32,6.60 -7.40,6.53 -7.45,6.43 -7.49,6.33 -7.51,6.23 -7.52,6.12 -7.50,6.02 -7.48,5.92 -7.42,5.82 -7.37,5.73 -7.29,5.66 -7.21,5.59 -7.11,5.55 -7.02,5.51 -6.91,5.50 -6.80,5.49 -6.70,5.52 -6.60,5.54 -6.51,5.60 -6.42,5.66 -6.35,5.74 -6.29,5.83 -6.25,5.93 -6.22,6.03 -6.21,6.13 -6.21,6.24 -6.24,6.34 -6.28,6.44 -6.34,6.53 -6.40,6.61 -6.49,6.68 -6.58,6.74 -6.68,6.77 -6.78,6.80 -6.88,6.79 -6.99,6.79 -7.09,6.75 -7.19,6.72 -7.27,6.65 -7.35,6.58 -7.41,6.49 -7.47,6.40 -7.49,6.30 -7.52,6.19 -7.51,6.09 -7.50,5.98 -7.46,5.89 -7.41,5.79 -7.41,5.79 -7.41,5.79 -5.87,4.19 -4.33,2.60 -3.73,2.09 -3.12,1.59 -2.54,1.06 -1.96,0.54 -1.25,-0.03 -0.54,-0.62 -0.46,-0.67 -0.38,-0.73 -0.28,-0.76 -0.19,-0.80 -0.09,-0.81 0.00,-0.82 0.10,-0.81 0.20,-0.80 0.29,-0.76 0.38,-0.72 0.46,-0.67 0.55,-0.61 0.61,-0.54 0.68,-0.46 0.72,-0.37 0.77,-0.28 0.79,-0.19 0.82,-0.09 0.81,0.00 0.81,0.10 0.79,0.19 0.77,0.29 0.72,0.38 0.67,0.47 0.61,0.54 0.54,0.62 0.54,0.62 L 0.54,0.62 Z"></path></g><g transform="translate(171.2405493379053 85.03909390668764) rotate(0 -0.0876589300525552 2.8344243049040188)" stroke="none"><path fill="#e03131" d="M 0.67,0.05 Q 0.67,0.05 0.70,0.63 0.73,1.21 0.72,1.75 0.72,2.29 0.64,3.86 0.56,5.43 0.56,5.53 0.57,5.64 0.54,5.74 0.51,5.84 0.46,5.93 0.40,6.02 0.31,6.09 0.23,6.15 0.13,6.19 0.03,6.22 -0.07,6.22 -0.18,6.22 -0.28,6.19 -0.38,6.16 -0.46,6.09 -0.55,6.03 -0.61,5.94 -0.67,5.85 -0.70,5.75 -0.73,5.65 -0.72,5.54 -0.72,5.44 -0.68,5.34 -0.64,5.24 -0.57,5.16 -0.50,5.08 -0.41,5.02 -0.32,4.97 -0.22,4.94 -0.11,4.92 -0.01,4.93 0.09,4.94 0.18,4.98 0.28,5.03 0.36,5.10 0.44,5.17 0.49,5.27 0.54,5.36 0.55,5.46 0.57,5.57 0.56,5.67 0.54,5.78 0.49,5.87 0.44,5.97 0.37,6.04 0.29,6.11 0.19,6.16 0.10,6.20 -0.00,6.22 -0.10,6.23 -0.21,6.21 -0.31,6.19 -0.40,6.13 -0.50,6.08 -0.56,6.00 -0.63,5.92 -0.67,5.82 -0.71,5.72 -0.71,5.72 -0.71,5.72 -0.86,3.97 -1.01,2.23 -0.97,1.65 -0.93,1.06 -0.80,0.50 -0.67,-0.05 -0.65,-0.13 -0.64,-0.21 -0.60,-0.29 -0.57,-0.36 -0.51,-0.42 -0.46,-0.49 -0.40,-0.54 -0.33,-0.58 -0.25,-0.62 -0.18,-0.65 -0.10,-0.66 -0.02,-0.67 0.05,-0.67 0.14,-0.66 0.21,-0.63 0.29,-0.61 0.36,-0.56 0.43,-0.52 0.48,-0.46 0.54,-0.40 0.58,-0.33 0.62,-0.26 0.64,-0.18 0.67,-0.10 0.67,-0.02 0.67,0.05 0.67,0.05 L 0.67,0.05 Z"></path></g><g transform="translate(182.169147770635 94.85732211211075) rotate(0 2.1331171945221286 2.8344064699232376)" stroke="none"><path fill="#e03131" d="M 0.05,0.69 Q 0.05,0.69 -0.13,0.85 -0.32,1.01 -0.44,1.00 -0.55,1.00 -0.67,0.97 -0.78,0.93 -0.88,0.87 -0.99,0.82 -1.07,0.73 -1.16,0.65 -1.22,0.55 -1.28,0.45 -1.32,0.34 -1.36,0.23 -1.37,0.11 -1.38,-0.00 -1.36,-0.12 -1.34,-0.23 -1.30,-0.34 -1.25,-0.45 -1.18,-0.55 -1.11,-0.64 -1.02,-0.72 -0.93,-0.79 -0.82,-0.84 -0.71,-0.89 -0.60,-0.92 -0.48,-0.94 0.08,-0.36 0.65,0.21 1.05,0.89 1.46,1.58 1.69,2.13 1.92,2.69 2.28,3.33 2.64,3.98 4.04,4.53 5.44,5.08 5.47,5.15 5.51,5.22 5.52,5.30 5.54,5.38 5.54,5.45 5.53,5.53 5.51,5.61 5.49,5.69 5.45,5.75 5.41,5.82 5.35,5.88 5.30,5.94 5.23,5.98 5.16,6.02 5.09,6.05 5.01,6.07 4.94,6.08 4.86,6.08 4.78,6.07 4.70,6.06 4.63,6.03 4.55,6.00 4.49,5.95 4.43,5.90 4.38,5.84 4.33,5.78 4.51,5.29 4.70,4.80 4.80,4.78 4.91,4.77 5.01,4.79 5.11,4.81 5.21,4.87 5.30,4.92 5.37,5.00 5.44,5.08 5.48,5.18 5.52,5.27 5.53,5.38 5.54,5.49 5.51,5.59 5.49,5.69 5.43,5.78 5.37,5.87 5.29,5.94 5.20,6.00 5.10,6.04 5.00,6.07 4.90,6.08 4.79,6.08 4.69,6.05 4.59,6.01 4.50,5.95 4.42,5.89 4.35,5.80 4.29,5.71 4.26,5.61 4.23,5.51 4.24,5.40 4.24,5.30 4.28,5.20 4.31,5.10 4.38,5.02 4.45,4.94 4.54,4.88 4.63,4.82 4.73,4.80 4.84,4.77 4.94,4.78 5.05,4.79 5.14,4.83 5.24,4.88 5.32,4.95 5.40,5.02 5.45,5.11 5.50,5.21 5.52,5.31 5.54,5.41 5.53,5.52 5.51,5.62 5.46,5.72 5.41,5.81 5.34,5.89 5.26,5.96 5.35,5.52 5.44,5.08 5.47,5.15 5.51,5.22 5.52,5.30 5.54,5.38 5.54,5.45 5.53,5.53 5.51,5.61 5.49,5.69 5.45,5.75 5.41,5.82 5.35,5.88 5.30,5.94 5.23,5.98 5.16,6.02 5.09,6.05 5.01,6.07 4.94,6.08 4.86,6.08 4.78,6.07 4.70,6.06 4.63,6.03 4.55,6.00 4.49,5.95 4.43,5.90 4.38,5.84 4.33,5.78 2.75,5.72 1.17,5.67 0.78,5.02 0.38,4.36 0.02,3.45 -0.32,2.53 -0.32,1.77 -0.32,1.01 -0.43,1.00 -0.55,1.00 -0.67,0.97 -0.78,0.93 -0.88,0.87 -0.99,0.82 -1.07,0.73 -1.16,0.65 -1.22,0.55 -1.28,0.45 -1.32,0.34 -1.36,0.23 -1.37,0.11 -1.38,-0.00 -1.36,-0.12 -1.34,-0.23 -1.30,-0.34 -1.25,-0.45 -1.18,-0.55 -1.11,-0.64 -1.02,-0.72 -0.93,-0.79 -0.82,-0.84 -0.71,-0.89 -0.60,-0.92 -0.48,-0.94 -0.27,-0.81 -0.05,-0.69 0.02,-0.68 0.10,-0.68 0.19,-0.66 0.27,-0.63 0.34,-0.59 0.41,-0.55 0.47,-0.49 0.53,-0.44 0.58,-0.36 0.62,-0.29 0.65,-0.21 0.67,-0.14 0.68,-0.05 0.69,0.02 0.68,0.10 0.66,0.19 0.63,0.26 0.60,0.34 0.55,0.41 0.50,0.47 0.43,0.53 0.37,0.58 0.29,0.62 0.22,0.65 0.13,0.67 0.05,0.69 0.05,0.69 L 0.05,0.69 Z"></path></g><g transform="translate(188.94840227771095 93.68848881812801) rotate(0 -4.733778407625721 3.535713580305128)" stroke="none"><path fill="#e03131" d="M 0.50,0.59 Q 0.50,0.59 -0.16,1.27 -0.83,1.94 -1.57,2.67 -2.31,3.40 -3.18,4.17 -4.04,4.93 -4.92,5.56 -5.81,6.18 -7.32,6.89 -8.83,7.59 -8.90,7.63 -8.97,7.66 -9.04,7.68 -9.12,7.70 -9.20,7.70 -9.28,7.70 -9.35,7.68 -9.43,7.66 -9.50,7.63 -9.57,7.59 -9.63,7.54 -9.69,7.48 -9.73,7.42 -9.78,7.35 -9.81,7.28 -9.83,7.21 -9.84,7.13 -9.85,7.05 -9.84,6.97 -9.83,6.89 -9.81,6.82 -9.78,6.74 -9.73,6.68 -9.69,6.61 -9.63,6.56 -9.57,6.51 -9.13,6.57 -8.69,6.63 -8.64,6.72 -8.58,6.81 -8.56,6.92 -8.54,7.02 -8.55,7.13 -8.57,7.23 -8.61,7.33 -8.66,7.43 -8.73,7.50 -8.81,7.58 -8.90,7.63 -8.99,7.67 -9.10,7.69 -9.20,7.71 -9.31,7.69 -9.41,7.67 -9.51,7.62 -9.60,7.57 -9.67,7.49 -9.74,7.41 -9.79,7.32 -9.83,7.22 -9.84,7.11 -9.85,7.01 -9.83,6.90 -9.80,6.80 -9.75,6.71 -9.69,6.62 -9.61,6.55 -9.53,6.48 -9.43,6.45 -9.33,6.41 -9.22,6.40 -9.12,6.40 -9.02,6.43 -8.91,6.46 -8.83,6.52 -8.74,6.58 -8.68,6.66 -8.61,6.75 -8.58,6.85 -8.55,6.95 -8.55,7.06 -8.55,7.16 -8.59,7.26 -8.62,7.36 -8.69,7.45 -8.75,7.53 -8.84,7.59 -8.93,7.65 -9.03,7.68 -9.13,7.70 -9.24,7.70 -9.35,7.69 -9.44,7.65 -9.54,7.61 -9.18,7.60 -8.83,7.59 -8.90,7.63 -8.97,7.66 -9.04,7.68 -9.12,7.70 -9.20,7.70 -9.28,7.70 -9.35,7.68 -9.43,7.66 -9.50,7.63 -9.57,7.59 -9.63,7.54 -9.69,7.48 -9.73,7.42 -9.78,7.35 -9.81,7.28 -9.83,7.21 -9.84,7.13 -9.85,7.05 -9.84,6.97 -9.83,6.89 -9.81,6.82 -9.78,6.74 -9.73,6.68 -9.69,6.61 -9.63,6.56 -9.57,6.51 -8.27,5.49 -6.98,4.48 -6.17,3.94 -5.36,3.40 -4.52,2.69 -3.68,1.98 -2.86,1.23 -2.05,0.47 -1.28,-0.06 -0.50,-0.59 -0.42,-0.65 -0.34,-0.70 -0.25,-0.73 -0.16,-0.76 -0.07,-0.77 0.02,-0.78 0.11,-0.76 0.20,-0.75 0.29,-0.71 0.38,-0.68 0.45,-0.62 0.53,-0.57 0.59,-0.49 0.65,-0.42 0.69,-0.34 0.73,-0.25 0.75,-0.16 0.77,-0.07 0.77,0.02 0.77,0.11 0.74,0.20 0.72,0.29 0.67,0.37 0.63,0.46 0.56,0.53 0.50,0.59 0.50,0.59 L 0.50,0.59 Z"></path></g><g stroke-linecap="round"><g transform="translate(88.95474608046365 97.545624420286) rotate(0 227.4841887588563 -0.3214398568336492)"><path d="M0 0 C75.83 -0.11, 379.14 -0.54, 454.97 -0.64 M0 0 C75.83 -0.11, 379.14 -0.54, 454.97 -0.64" stroke="#1971c2" stroke-width="0.5" fill="none"></path></g></g><mask></mask><g transform="translate(81.18195830452953 85.97418194385045) rotate(0 6.1948200251039935 9.642874675356552)" stroke="none"><path fill="#1971c2" d="M 0.68,-0.06 Q 0.68,-0.06 0.77,0.75 0.85,1.57 0.92,2.59 0.98,3.61 1.02,5.32 1.06,7.02 1.10,8.76 1.14,10.50 1.16,12.08 1.19,13.67 1.18,15.02 1.18,16.37 1.12,17.21 1.07,18.06 0.99,18.66 0.90,19.25 0.44,19.59 -0.01,19.92 -0.62,19.83 -1.23,19.74 -1.33,19.08 -1.43,18.42 -1.01,18.04 -0.59,17.66 0.05,17.47 0.70,17.28 1.46,17.20 2.21,17.11 3.15,17.03 4.09,16.95 5.14,16.85 6.19,16.76 7.15,16.65 8.11,16.55 8.92,16.46 9.74,16.37 11.17,16.16 12.59,15.95 12.67,15.88 12.75,15.81 12.85,15.77 12.95,15.73 13.05,15.72 13.16,15.71 13.26,15.74 13.37,15.76 13.46,15.82 13.54,15.88 13.61,15.96 13.68,16.04 13.71,16.14 13.75,16.24 13.75,16.35 13.75,16.46 13.72,16.56 13.69,16.66 13.63,16.74 13.57,16.83 13.48,16.89 13.39,16.95 13.29,16.98 13.19,17.01 13.08,17.01 12.98,17.01 12.88,16.97 12.78,16.93 12.70,16.87 12.61,16.80 12.56,16.71 12.50,16.62 12.47,16.52 12.45,16.41 12.46,16.31 12.47,16.20 12.51,16.10 12.55,16.01 12.62,15.93 12.70,15.85 12.79,15.80 12.88,15.75 12.99,15.73 13.09,15.71 13.19,15.72 13.30,15.74 13.39,15.78 13.49,15.83 13.56,15.91 13.64,15.98 13.69,16.08 13.73,16.17 13.75,16.28 13.76,16.39 13.74,16.49 13.72,16.59 13.67,16.69 13.61,16.78 13.61,16.78 13.61,16.78 11.77,17.41 9.94,18.04 9.12,18.14 8.30,18.25 7.33,18.36 6.35,18.48 5.30,18.59 4.24,18.70 3.32,18.78 2.39,18.86 1.76,18.92 1.12,18.98 0.56,18.96 0.01,18.94 -0.27,18.45 -0.55,17.95 -0.50,17.15 -0.44,16.35 -0.42,15.01 -0.40,13.68 -0.40,12.10 -0.40,10.52 -0.41,8.78 -0.43,7.04 -0.43,5.36 -0.44,3.69 -0.48,2.70 -0.52,1.71 -0.60,0.89 -0.68,0.06 -0.68,-0.01 -0.68,-0.09 -0.65,-0.17 -0.63,-0.25 -0.59,-0.32 -0.55,-0.40 -0.50,-0.46 -0.44,-0.52 -0.37,-0.56 -0.30,-0.61 -0.22,-0.64 -0.15,-0.66 -0.06,-0.67 0.01,-0.68 0.09,-0.67 0.17,-0.66 0.25,-0.63 0.33,-0.60 0.39,-0.55 0.46,-0.50 0.51,-0.44 0.57,-0.37 0.60,-0.30 0.64,-0.23 0.66,-0.15 0.68,-0.06 0.68,-0.06 L 0.68,-0.06 Z"></path></g><g transform="translate(100.05860886835646 84.39624986298168) rotate(0 -0.7012981928914996 9.496770513608794)" stroke="none"><path fill="#1971c2" d="M 0.66,0.06 Q 0.66,0.06 0.47,2.70 0.27,5.35 0.11,7.59 -0.03,9.83 -0.15,11.49 -0.27,13.16 -0.34,14.38 -0.40,15.59 -0.35,16.96 -0.30,18.33 -0.20,18.37 -0.10,18.40 -0.02,18.47 0.06,18.53 0.12,18.62 0.17,18.71 0.20,18.81 0.23,18.92 0.22,19.02 0.21,19.13 0.17,19.23 0.13,19.32 0.06,19.40 -0.00,19.48 -0.09,19.54 -0.19,19.59 -0.29,19.61 -0.39,19.63 -0.50,19.62 -0.60,19.60 -0.70,19.56 -0.80,19.51 -0.87,19.44 -0.95,19.36 -1.00,19.27 -1.04,19.17 -1.06,19.07 -1.07,18.96 -1.06,18.86 -1.04,18.75 -0.98,18.66 -0.93,18.57 -0.85,18.50 -0.78,18.43 -0.68,18.38 -0.58,18.34 -0.48,18.33 -0.37,18.32 -0.27,18.35 -0.16,18.37 -0.07,18.43 0.01,18.48 0.07,18.56 0.14,18.65 0.18,18.75 0.22,18.85 0.22,18.95 0.22,19.06 0.19,19.16 0.16,19.26 0.10,19.35 0.04,19.44 -0.03,19.50 -0.12,19.56 -0.22,19.59 -0.32,19.63 -0.43,19.62 -0.54,19.62 -0.54,19.62 -0.54,19.62 -1.35,17.55 -2.17,15.48 -2.08,14.25 -1.99,13.01 -1.83,11.36 -1.66,9.70 -1.47,7.45 -1.28,5.20 -0.97,2.56 -0.66,-0.06 -0.65,-0.14 -0.63,-0.22 -0.59,-0.29 -0.56,-0.36 -0.50,-0.42 -0.45,-0.49 -0.39,-0.53 -0.32,-0.58 -0.25,-0.61 -0.17,-0.64 -0.09,-0.65 -0.01,-0.67 0.06,-0.66 0.14,-0.65 0.22,-0.62 0.29,-0.60 0.36,-0.55 0.43,-0.51 0.48,-0.45 0.54,-0.39 0.58,-0.32 0.62,-0.25 0.64,-0.17 0.66,-0.09 0.66,-0.01 0.66,0.06 0.66,0.06 L 0.66,0.06 Z"></path></g><g transform="translate(100.46770765524263 87.66896881814841) rotate(0 6.048706945865831 5.551975981398186)" stroke="none"><path fill="#1971c2" d="M -0.71,-0.20 Q -0.71,-0.20 -0.40,-1.36 -0.08,-2.53 0.58,-3.30 1.25,-4.07 2.08,-4.47 2.90,-4.86 3.78,-5.01 4.66,-5.15 5.57,-4.99 6.48,-4.83 7.25,-4.42 8.02,-4.01 8.51,-3.42 9.00,-2.83 9.22,-2.06 9.44,-1.30 9.30,-0.20 9.16,0.90 8.70,2.03 8.24,3.17 7.73,4.04 7.22,4.92 6.68,5.50 6.14,6.08 5.66,6.39 5.18,6.71 4.66,6.92 4.13,7.13 4.42,6.54 4.70,5.95 5.60,5.59 6.51,5.24 7.41,5.47 8.31,5.70 9.20,6.17 10.09,6.65 10.81,7.17 11.54,7.69 12.06,8.14 12.58,8.60 12.96,9.14 13.34,9.68 13.58,10.22 13.83,10.76 13.94,11.41 14.05,12.05 13.75,12.80 13.44,13.55 12.74,14.18 12.03,14.81 11.16,15.26 10.30,15.71 9.40,15.99 8.51,16.26 7.64,16.41 6.77,16.56 5.97,16.63 5.17,16.69 4.35,16.74 3.54,16.78 2.75,16.81 1.97,16.84 0.62,16.43 -0.71,16.02 -0.79,16.01 -0.87,16.00 -0.95,15.97 -1.02,15.94 -1.09,15.90 -1.15,15.86 -1.20,15.80 -1.26,15.74 -1.30,15.67 -1.33,15.60 -1.35,15.52 -1.37,15.45 -1.37,15.37 -1.37,15.29 -1.36,15.21 -1.34,15.13 -1.30,15.06 -1.27,14.99 -1.21,14.93 -1.16,14.87 -1.10,14.83 -1.03,14.78 -0.96,14.75 -0.89,14.72 -0.81,14.71 -0.73,14.70 -0.96,14.80 -1.19,14.90 -1.11,14.84 -1.02,14.77 -0.92,14.74 -0.82,14.71 -0.71,14.71 -0.61,14.71 -0.51,14.75 -0.41,14.78 -0.32,14.85 -0.24,14.91 -0.18,15.00 -0.12,15.09 -0.09,15.20 -0.07,15.30 -0.08,15.40 -0.08,15.51 -0.12,15.61 -0.16,15.71 -0.23,15.79 -0.30,15.87 -0.40,15.92 -0.49,15.97 -0.59,15.99 -0.70,16.02 -0.80,16.00 -0.91,15.99 -1.00,15.94 -1.10,15.90 -1.17,15.82 -1.25,15.75 -1.30,15.65 -1.35,15.56 -1.36,15.45 -1.38,15.35 -1.36,15.24 -1.34,15.14 -1.29,15.05 -1.24,14.95 -1.16,14.88 -1.08,14.81 -0.98,14.77 -0.89,14.72 -0.78,14.71 -0.68,14.70 -0.57,14.73 -0.47,14.75 -0.38,14.81 -0.29,14.87 -0.22,14.95 -0.15,15.03 -0.12,15.13 -0.08,15.23 -0.07,15.33 -0.07,15.44 -0.10,15.54 -0.13,15.64 -0.42,15.83 -0.71,16.02 -0.79,16.01 -0.87,16.00 -0.95,15.97 -1.02,15.94 -1.09,15.90 -1.15,15.86 -1.20,15.80 -1.26,15.74 -1.30,15.67 -1.33,15.60 -1.35,15.52 -1.37,15.45 -1.37,15.37 -1.37,15.29 -1.36,15.21 -1.34,15.13 -1.30,15.06 -1.27,14.99 -1.21,14.93 -1.16,14.87 -1.10,14.83 -1.03,14.78 -0.96,14.75 -0.89,14.72 -0.81,14.71 -0.73,14.70 0.60,14.52 1.94,14.33 2.71,14.35 3.47,14.36 4.25,14.36 5.02,14.37 5.74,14.33 6.46,14.30 7.19,14.23 7.93,14.15 8.66,13.98 9.40,13.81 10.09,13.51 10.78,13.22 11.27,12.90 11.76,12.57 11.94,12.03 12.11,11.48 11.72,10.75 11.33,10.01 10.88,9.62 10.43,9.22 9.81,8.78 9.18,8.33 8.49,7.96 7.80,7.58 7.12,7.39 6.44,7.21 5.29,7.21 4.13,7.21 3.39,6.80 2.64,6.38 3.20,5.72 3.75,5.07 4.24,4.86 4.73,4.66 5.15,4.28 5.56,3.90 6.03,3.16 6.49,2.42 6.92,1.49 7.35,0.56 7.55,-0.19 7.75,-0.94 7.44,-1.73 7.13,-2.52 6.62,-2.81 6.10,-3.11 5.48,-3.26 4.86,-3.41 4.20,-3.34 3.54,-3.27 2.96,-3.09 2.37,-2.90 1.87,-2.46 1.36,-2.03 1.04,-0.91 0.71,0.20 0.68,0.28 0.64,0.36 0.59,0.43 0.54,0.50 0.47,0.56 0.40,0.62 0.32,0.66 0.24,0.70 0.15,0.72 0.06,0.74 -0.02,0.73 -0.11,0.73 -0.19,0.71 -0.28,0.68 -0.36,0.64 -0.44,0.59 -0.50,0.53 -0.57,0.47 -0.62,0.40 -0.66,0.32 -0.69,0.24 -0.72,0.15 -0.73,0.06 -0.74,-0.02 -0.72,-0.11 -0.71,-0.20 -0.71,-0.20 L -0.71,-0.20 Z"></path></g><g transform="translate(86.0326093405651 110.1105823305993) rotate(0 -3.5064998819478177 6.720791440400035)" stroke="none"><path fill="#1971c2" d="M 0.70,0.15 Q 0.70,0.15 0.38,1.90 0.07,3.65 -0.50,5.25 -1.08,6.86 -1.84,8.23 -2.59,9.61 -4.50,11.69 -6.40,13.78 -6.48,13.85 -6.56,13.92 -6.66,13.96 -6.76,14.00 -6.86,14.00 -6.97,14.01 -7.07,13.98 -7.17,13.95 -7.26,13.89 -7.35,13.83 -7.41,13.75 -7.48,13.66 -7.51,13.56 -7.54,13.46 -7.54,13.35 -7.54,13.25 -7.51,13.15 -7.48,13.05 -7.41,12.96 -7.35,12.88 -7.26,12.82 -7.17,12.76 -7.07,12.73 -6.97,12.70 -6.86,12.71 -6.75,12.71 -6.66,12.75 -6.56,12.79 -6.48,12.86 -6.39,12.93 -6.34,13.02 -6.29,13.11 -6.26,13.22 -6.24,13.32 -6.25,13.43 -6.26,13.53 -6.31,13.63 -6.35,13.72 -6.43,13.80 -6.50,13.88 -6.59,13.93 -6.69,13.98 -6.79,13.99 -6.90,14.01 -7.00,13.99 -7.11,13.98 -7.20,13.93 -7.30,13.88 -7.37,13.80 -7.44,13.72 -7.49,13.62 -7.53,13.53 -7.54,13.42 -7.55,13.32 -7.53,13.21 -7.51,13.11 -7.45,13.02 -7.40,12.93 -7.40,12.93 -7.40,12.93 -5.89,10.74 -4.38,8.55 -3.62,7.35 -2.86,6.15 -2.24,4.71 -1.61,3.27 -1.16,1.55 -0.70,-0.15 -0.67,-0.23 -0.64,-0.31 -0.59,-0.39 -0.54,-0.46 -0.48,-0.52 -0.42,-0.58 -0.34,-0.62 -0.26,-0.66 -0.18,-0.68 -0.10,-0.71 -0.01,-0.71 0.07,-0.71 0.15,-0.69 0.23,-0.67 0.31,-0.63 0.39,-0.59 0.46,-0.54 0.52,-0.48 0.57,-0.41 0.62,-0.34 0.66,-0.26 0.69,-0.18 0.70,-0.10 0.71,-0.01 0.70,0.07 0.70,0.15 0.70,0.15 L 0.70,0.15 Z"></path></g><g transform="translate(77.50012272749589 120.33787365294711) rotate(0 3.8571623546291107 3.3311641868619972)" stroke="none"><path fill="#1971c2" d="M 0.69,-0.12 Q 0.69,-0.12 0.86,0.52 1.04,1.16 1.13,1.86 1.22,2.55 1.21,3.20 1.21,3.84 1.12,4.56 1.03,5.29 0.93,5.83 0.83,6.37 0.83,6.49 0.82,6.61 0.81,6.70 0.80,6.80 0.76,6.90 0.72,6.99 0.67,7.07 0.61,7.15 0.53,7.22 0.46,7.28 0.37,7.33 0.28,7.37 0.18,7.40 0.09,7.42 -0.00,7.42 -0.10,7.42 -0.20,7.39 -0.30,7.37 -0.38,7.32 -0.47,7.27 -0.55,7.20 -0.62,7.14 -0.68,7.06 -0.73,6.97 -0.77,6.88 -0.80,6.79 -0.81,6.69 -0.82,6.59 -0.25,5.85 0.32,5.11 0.83,4.67 1.34,4.24 2.00,3.74 2.65,3.24 3.34,2.78 4.04,2.31 5.74,1.79 7.43,1.27 7.53,1.24 7.63,1.21 7.74,1.21 7.85,1.21 7.95,1.24 8.05,1.28 8.13,1.34 8.22,1.41 8.27,1.50 8.33,1.59 8.36,1.69 8.39,1.79 8.38,1.90 8.37,2.00 8.33,2.10 8.29,2.20 8.22,2.28 8.15,2.36 8.06,2.41 7.97,2.47 7.87,2.49 7.76,2.51 7.66,2.50 7.55,2.49 7.45,2.44 7.36,2.39 7.28,2.32 7.21,2.25 7.16,2.15 7.11,2.06 7.09,1.95 7.08,1.85 7.10,1.74 7.11,1.64 7.16,1.54 7.22,1.45 7.29,1.38 7.37,1.31 7.47,1.26 7.57,1.22 7.67,1.21 7.78,1.20 7.88,1.22 7.98,1.25 8.07,1.30 8.16,1.36 8.23,1.44 8.30,1.52 8.34,1.62 8.38,1.72 8.38,1.83 8.39,1.93 8.36,2.04 8.33,2.14 8.27,2.22 8.20,2.31 8.12,2.37 8.03,2.44 8.03,2.44 8.03,2.44 6.55,3.13 5.06,3.82 4.41,4.27 3.76,4.72 3.14,5.18 2.52,5.65 1.67,6.13 0.82,6.61 0.81,6.70 0.80,6.80 0.76,6.90 0.72,6.99 0.67,7.07 0.61,7.15 0.53,7.22 0.46,7.28 0.37,7.33 0.28,7.37 0.18,7.40 0.09,7.42 -0.00,7.42 -0.10,7.42 -0.20,7.39 -0.30,7.37 -0.38,7.32 -0.47,7.27 -0.55,7.20 -0.62,7.14 -0.68,7.06 -0.73,6.97 -0.77,6.88 -0.80,6.79 -0.81,6.69 -0.82,6.59 -0.82,6.30 -0.83,6.01 -0.76,5.28 -0.70,4.55 -0.59,3.63 -0.48,2.72 -0.53,2.09 -0.57,1.45 -0.63,0.78 -0.69,0.12 -0.69,0.03 -0.70,-0.04 -0.68,-0.12 -0.66,-0.21 -0.63,-0.28 -0.59,-0.36 -0.54,-0.43 -0.49,-0.49 -0.42,-0.54 -0.36,-0.60 -0.28,-0.63 -0.20,-0.67 -0.12,-0.68 -0.03,-0.70 0.04,-0.69 0.12,-0.68 0.20,-0.66 0.29,-0.63 0.36,-0.59 0.43,-0.55 0.49,-0.49 0.55,-0.43 0.59,-0.35 0.64,-0.28 0.66,-0.20 0.69,-0.12 0.69,-0.12 L 0.69,-0.12 Z"></path></g><g transform="translate(14.616905779215926 141.5521908047392) rotate(0 1.1103880622873419 7.626647944224942)" stroke="none"><path fill="#1971c2" d="M -0.69,-0.09 Q -0.69,-0.09 -0.62,-0.60 -0.56,-1.11 -0.22,-1.56 0.10,-2.01 0.62,-1.86 1.15,-1.70 1.35,-1.09 1.54,-0.48 1.64,0.66 1.75,1.81 1.86,3.29 1.97,4.77 2.07,6.16 2.17,7.54 2.26,8.70 2.34,9.86 2.40,10.89 2.45,11.93 2.48,12.91 2.51,13.89 2.52,14.64 2.53,15.38 2.72,15.13 2.91,14.89 2.90,14.97 2.90,15.04 2.87,15.12 2.85,15.19 2.80,15.26 2.76,15.33 2.70,15.38 2.65,15.44 2.58,15.48 2.51,15.52 2.43,15.54 2.36,15.56 2.28,15.57 2.20,15.57 2.12,15.55 2.05,15.54 1.97,15.50 1.90,15.47 1.84,15.42 1.78,15.37 1.73,15.31 1.68,15.24 1.65,15.17 1.62,15.10 1.61,15.02 1.60,14.94 1.63,14.79 1.66,14.63 1.72,14.55 1.78,14.46 1.86,14.40 1.95,14.33 2.05,14.30 2.15,14.27 2.26,14.27 2.36,14.27 2.46,14.30 2.56,14.34 2.65,14.40 2.73,14.47 2.79,14.55 2.85,14.64 2.88,14.75 2.91,14.85 2.90,14.95 2.89,15.06 2.85,15.16 2.81,15.26 2.74,15.34 2.67,15.42 2.58,15.47 2.49,15.53 2.39,15.55 2.28,15.57 2.18,15.56 2.07,15.55 1.98,15.50 1.88,15.45 1.80,15.38 1.73,15.31 1.68,15.21 1.63,15.12 1.61,15.01 1.60,14.91 1.61,14.80 1.63,14.70 1.68,14.61 1.73,14.51 1.81,14.44 1.89,14.37 1.98,14.32 2.08,14.28 2.19,14.27 2.29,14.26 2.40,14.28 2.50,14.31 2.59,14.36 2.68,14.42 2.75,14.50 2.82,14.58 2.86,14.68 2.89,14.78 2.90,14.88 2.90,14.99 2.91,14.94 2.91,14.89 2.90,14.97 2.90,15.04 2.87,15.12 2.85,15.19 2.80,15.26 2.76,15.33 2.70,15.38 2.65,15.44 2.58,15.48 2.51,15.52 2.43,15.54 2.36,15.56 2.28,15.57 2.20,15.57 2.12,15.55 2.05,15.54 1.97,15.50 1.90,15.47 1.84,15.42 1.78,15.37 1.73,15.31 1.68,15.24 1.65,15.17 1.62,15.10 1.61,15.02 1.60,14.94 1.12,15.20 0.64,15.47 0.59,14.71 0.53,13.96 0.49,12.99 0.45,12.01 0.42,10.99 0.38,9.96 0.34,8.80 0.30,7.64 0.26,6.25 0.23,4.87 0.17,3.39 0.12,1.92 0.47,0.50 0.82,-0.90 0.76,-0.40 0.69,0.09 0.67,0.17 0.65,0.25 0.61,0.33 0.57,0.40 0.51,0.47 0.46,0.53 0.39,0.58 0.32,0.62 0.24,0.65 0.16,0.68 0.07,0.69 -0.00,0.70 -0.09,0.69 -0.17,0.68 -0.25,0.65 -0.33,0.62 -0.40,0.57 -0.47,0.52 -0.52,0.45 -0.58,0.39 -0.62,0.31 -0.66,0.24 -0.68,0.15 -0.70,0.07 -0.70,-0.00 -0.69,-0.09 -0.69,-0.09 L -0.69,-0.09 Z"></path></g><g transform="translate(21.74677817152144 143.4807586058182) rotate(0 1.870140404364406 4.879882569373535)" stroke="none"><path fill="#1971c2" d="M 0.55,0.41 Q 0.55,0.41 -0.03,1.19 -0.61,1.97 -1.12,2.60 -1.64,3.23 -2.03,3.62 -2.42,4.01 -1.60,4.46 -0.78,4.92 -0.12,5.23 0.54,5.55 1.37,6.03 2.20,6.52 2.98,6.98 3.77,7.45 4.38,7.82 4.99,8.19 5.47,8.63 5.95,9.08 5.85,7.33 5.74,5.57 5.82,5.56 5.90,5.54 5.98,5.55 6.06,5.55 6.13,5.58 6.21,5.60 6.28,5.64 6.34,5.68 6.40,5.73 6.46,5.79 6.50,5.86 6.54,5.93 6.56,6.00 6.59,6.08 6.59,6.15 6.60,6.23 6.58,6.31 6.57,6.39 6.54,6.46 6.51,6.53 6.46,6.60 6.41,6.66 6.35,6.71 6.29,6.76 6.21,6.79 6.14,6.82 5.71,6.51 5.29,6.20 5.30,6.10 5.32,5.99 5.37,5.90 5.42,5.80 5.49,5.73 5.57,5.66 5.67,5.61 5.76,5.57 5.87,5.56 5.97,5.54 6.08,5.57 6.18,5.59 6.27,5.64 6.36,5.70 6.43,5.78 6.50,5.86 6.54,5.96 6.58,6.05 6.59,6.16 6.60,6.27 6.57,6.37 6.54,6.47 6.48,6.56 6.42,6.65 6.34,6.71 6.25,6.78 6.15,6.81 6.05,6.85 5.95,6.85 5.84,6.85 5.74,6.81 5.64,6.78 5.55,6.72 5.47,6.65 5.41,6.57 5.35,6.48 5.32,6.38 5.29,6.27 5.30,6.17 5.30,6.06 5.34,5.96 5.38,5.86 5.45,5.78 5.51,5.70 5.61,5.65 5.70,5.59 5.80,5.57 5.90,5.54 6.01,5.55 6.11,5.57 6.21,5.61 6.31,5.65 6.39,5.73 6.46,5.80 6.51,5.89 6.56,5.99 6.15,5.78 5.74,5.57 5.82,5.56 5.90,5.54 5.98,5.55 6.06,5.55 6.13,5.58 6.21,5.60 6.28,5.64 6.34,5.68 6.40,5.73 6.46,5.79 6.50,5.86 6.54,5.93 6.56,6.00 6.59,6.08 6.59,6.15 6.60,6.23 6.58,6.31 6.57,6.39 6.54,6.46 6.51,6.53 6.46,6.60 6.41,6.66 6.35,6.71 6.29,6.76 6.21,6.79 6.14,6.82 6.73,7.98 7.32,9.14 6.39,9.70 5.46,10.25 4.75,10.01 4.05,9.76 3.43,9.40 2.81,9.03 2.04,8.56 1.27,8.09 0.51,7.62 -0.25,7.16 -0.90,6.83 -1.54,6.50 -2.05,6.24 -2.56,5.98 -3.35,5.40 -4.14,4.81 -3.99,3.96 -3.83,3.12 -3.30,2.68 -2.78,2.24 -2.26,1.68 -1.74,1.11 -1.14,0.34 -0.55,-0.41 -0.49,-0.47 -0.43,-0.53 -0.36,-0.58 -0.29,-0.62 -0.21,-0.65 -0.13,-0.67 -0.05,-0.68 0.03,-0.69 0.11,-0.67 0.19,-0.66 0.27,-0.63 0.34,-0.59 0.41,-0.54 0.48,-0.49 0.53,-0.43 0.58,-0.36 0.62,-0.29 0.65,-0.21 0.67,-0.13 0.69,-0.05 0.68,0.03 0.68,0.11 0.65,0.19 0.63,0.27 0.59,0.34 0.55,0.41 0.55,0.41 L 0.55,0.41 Z"></path></g><g transform="translate(10 140.14961225393677) rotate(0 6.39936941854711 -5.698062308165163)" stroke="none"><path fill="#1971c2" d="M -0.77,-0.47 Q -0.77,-0.47 -0.05,-1.55 0.66,-2.63 1.56,-3.91 2.46,-5.20 3.48,-6.41 4.50,-7.61 5.41,-8.57 6.31,-9.53 7.00,-10.16 7.68,-10.80 8.09,-11.15 8.50,-11.51 9.40,-11.66 10.30,-11.81 10.70,-11.37 11.11,-10.93 12.07,-9.69 13.02,-8.46 13.10,-8.39 13.18,-8.32 13.23,-8.23 13.28,-8.13 13.31,-8.03 13.33,-7.93 13.31,-7.82 13.30,-7.72 13.25,-7.62 13.21,-7.52 13.13,-7.45 13.06,-7.37 12.96,-7.33 12.87,-7.28 12.76,-7.26 12.66,-7.25 12.55,-7.27 12.45,-7.29 12.36,-7.34 12.26,-7.39 12.19,-7.47 12.12,-7.55 12.08,-7.64 12.03,-7.74 12.02,-7.85 12.02,-7.95 12.04,-8.06 12.07,-8.16 12.12,-8.25 12.18,-8.34 12.26,-8.41 12.34,-8.47 12.44,-8.51 12.54,-8.55 12.65,-8.55 12.75,-8.56 12.86,-8.52 12.96,-8.49 13.04,-8.43 13.13,-8.37 13.19,-8.29 13.26,-8.20 13.29,-8.10 13.32,-8.00 13.32,-7.89 13.32,-7.78 13.28,-7.68 13.24,-7.58 13.18,-7.50 13.11,-7.42 13.02,-7.36 12.93,-7.30 12.83,-7.28 12.73,-7.25 12.62,-7.26 12.52,-7.27 12.42,-7.31 12.32,-7.35 12.32,-7.35 12.32,-7.35 11.08,-8.89 9.83,-10.43 9.32,-10.00 8.81,-9.58 8.16,-8.98 7.51,-8.38 6.63,-7.47 5.74,-6.55 4.76,-5.41 3.78,-4.27 2.90,-3.04 2.02,-1.80 1.40,-0.66 0.77,0.47 0.71,0.55 0.64,0.64 0.55,0.71 0.46,0.77 0.36,0.82 0.26,0.86 0.16,0.88 0.05,0.90 -0.05,0.90 -0.16,0.89 -0.26,0.86 -0.37,0.82 -0.46,0.77 -0.56,0.71 -0.63,0.63 -0.71,0.56 -0.77,0.46 -0.83,0.37 -0.86,0.26 -0.89,0.16 -0.90,0.05 -0.90,-0.05 -0.88,-0.16 -0.86,-0.27 -0.82,-0.37 -0.77,-0.47 -0.77,-0.47 L -0.77,-0.47 Z"></path></g><g transform="translate(37.409155011876805 143.65611213588477) rotate(0 2.775979073208731 -0.4383124852435003)" stroke="none"><path fill="#1971c2" d="M -0.09,-0.83 Q -0.09,-0.83 0.94,-0.98 1.98,-1.12 3.47,-1.32 4.97,-1.51 5.05,-1.51 5.13,-1.51 5.21,-1.49 5.28,-1.47 5.35,-1.44 5.42,-1.40 5.48,-1.35 5.54,-1.29 5.58,-1.23 5.63,-1.16 5.66,-1.09 5.68,-1.01 5.69,-0.93 5.70,-0.86 5.69,-0.78 5.68,-0.70 5.65,-0.62 5.62,-0.55 5.58,-0.49 5.53,-0.42 5.47,-0.37 5.41,-0.32 5.34,-0.28 5.27,-0.25 5.20,-0.23 5.12,-0.21 4.86,-0.29 4.60,-0.38 4.54,-0.46 4.47,-0.54 4.44,-0.64 4.40,-0.74 4.40,-0.85 4.39,-0.95 4.43,-1.06 4.46,-1.16 4.52,-1.24 4.58,-1.33 4.67,-1.39 4.76,-1.45 4.86,-1.48 4.96,-1.51 5.07,-1.51 5.17,-1.51 5.27,-1.47 5.37,-1.43 5.45,-1.36 5.54,-1.30 5.59,-1.21 5.65,-1.12 5.67,-1.01 5.70,-0.91 5.69,-0.80 5.68,-0.70 5.64,-0.60 5.60,-0.50 5.52,-0.43 5.45,-0.35 5.36,-0.30 5.27,-0.24 5.16,-0.22 5.06,-0.20 4.95,-0.22 4.85,-0.23 4.75,-0.28 4.66,-0.33 4.58,-0.41 4.51,-0.48 4.46,-0.58 4.42,-0.67 4.40,-0.78 4.39,-0.88 4.41,-0.99 4.43,-1.09 4.48,-1.18 4.54,-1.28 4.62,-1.35 4.69,-1.42 4.79,-1.46 4.89,-1.50 5.00,-1.51 5.10,-1.52 5.21,-1.49 5.31,-1.46 5.14,-1.49 4.97,-1.51 5.05,-1.51 5.13,-1.51 5.21,-1.49 5.28,-1.47 5.35,-1.44 5.42,-1.40 5.48,-1.35 5.54,-1.29 5.58,-1.23 5.63,-1.16 5.66,-1.09 5.68,-1.01 5.69,-0.93 5.70,-0.86 5.69,-0.78 5.68,-0.70 5.65,-0.62 5.62,-0.55 5.58,-0.49 5.53,-0.42 5.47,-0.37 5.41,-0.32 5.34,-0.28 5.27,-0.25 5.20,-0.23 5.12,-0.21 3.65,0.22 2.18,0.65 1.13,0.74 0.09,0.83 -0.00,0.83 -0.10,0.83 -0.20,0.81 -0.30,0.78 -0.39,0.73 -0.48,0.68 -0.55,0.62 -0.63,0.55 -0.69,0.46 -0.74,0.38 -0.78,0.28 -0.81,0.19 -0.83,0.09 -0.84,-0.00 -0.82,-0.10 -0.81,-0.20 -0.77,-0.30 -0.74,-0.39 -0.68,-0.48 -0.62,-0.56 -0.54,-0.63 -0.47,-0.69 -0.38,-0.74 -0.29,-0.79 -0.19,-0.81 -0.09,-0.83 -0.09,-0.83 L -0.09,-0.83 Z"></path></g><g transform="translate(37.23381931679103 149.5587060025125) rotate(0 3.33118202184275 -2.250007657912761)" stroke="none"><path fill="#1971c2" d="M -0.56,-0.56 Q -0.56,-0.56 -0.11,-1.06 0.33,-1.57 1.03,-1.94 1.72,-2.31 2.42,-2.50 3.11,-2.68 3.70,-2.76 4.29,-2.83 5.34,-3.63 6.38,-4.43 6.42,-4.53 6.46,-4.63 6.53,-4.71 6.60,-4.79 6.69,-4.84 6.78,-4.89 6.89,-4.92 6.99,-4.94 7.10,-4.92 7.20,-4.91 7.30,-4.86 7.39,-4.81 7.47,-4.74 7.55,-4.67 7.59,-4.57 7.64,-4.48 7.66,-4.37 7.67,-4.27 7.65,-4.16 7.63,-4.06 7.58,-3.96 7.53,-3.87 7.45,-3.80 7.37,-3.73 7.27,-3.69 7.18,-3.64 7.07,-3.63 6.96,-3.62 6.86,-3.65 6.76,-3.68 6.67,-3.73 6.58,-3.79 6.51,-3.87 6.44,-3.95 6.41,-4.05 6.37,-4.15 6.37,-4.26 6.36,-4.36 6.39,-4.47 6.42,-4.57 6.49,-4.65 6.55,-4.74 6.63,-4.80 6.72,-4.87 6.82,-4.90 6.92,-4.93 7.03,-4.93 7.13,-4.93 7.23,-4.89 7.33,-4.85 7.42,-4.79 7.50,-4.72 7.56,-4.63 7.62,-4.54 7.64,-4.44 7.67,-4.34 7.66,-4.23 7.65,-4.12 7.65,-4.12 7.65,-4.12 5.58,-2.50 3.52,-0.88 2.53,-0.59 1.54,-0.30 1.05,0.12 0.56,0.56 0.48,0.62 0.41,0.68 0.32,0.72 0.23,0.76 0.14,0.78 0.04,0.79 -0.04,0.79 -0.14,0.78 -0.23,0.75 -0.32,0.72 -0.41,0.67 -0.49,0.62 -0.56,0.56 -0.62,0.49 -0.67,0.41 -0.72,0.32 -0.75,0.23 -0.78,0.14 -0.79,0.04 -0.79,-0.04 -0.78,-0.14 -0.76,-0.23 -0.72,-0.32 -0.68,-0.41 -0.62,-0.48 -0.56,-0.56 -0.56,-0.56 L -0.56,-0.56 Z"></path></g><g transform="translate(61.6040006303208 132.43530537965944) rotate(0 -0.05844523169527349 8.649359241479033)" stroke="none"><path fill="#1971c2" d="M 0.89,0.02 Q 0.89,0.02 0.84,2.12 0.78,4.22 0.77,6.21 0.75,8.21 0.76,10.01 0.77,11.82 0.68,14.34 0.59,16.85 0.63,16.95 0.66,17.05 0.66,17.16 0.66,17.27 0.62,17.37 0.59,17.47 0.52,17.55 0.46,17.64 0.37,17.69 0.28,17.75 0.18,17.78 0.08,17.81 -0.02,17.80 -0.13,17.79 -0.22,17.75 -0.32,17.71 -0.40,17.64 -0.48,17.57 -0.54,17.48 -0.59,17.39 -0.61,17.29 -0.63,17.18 -0.62,17.08 -0.61,16.97 -0.56,16.88 -0.52,16.78 -0.44,16.70 -0.37,16.63 -0.28,16.58 -0.18,16.53 -0.08,16.51 0.02,16.50 0.12,16.52 0.23,16.53 0.32,16.58 0.41,16.64 0.49,16.71 0.56,16.79 0.60,16.89 0.65,16.98 0.66,17.09 0.67,17.20 0.64,17.30 0.62,17.40 0.56,17.49 0.51,17.58 0.43,17.65 0.34,17.72 0.25,17.76 0.15,17.80 0.04,17.80 -0.06,17.81 -0.16,17.78 -0.26,17.75 -0.35,17.69 -0.43,17.63 -0.50,17.54 -0.56,17.46 -0.56,17.46 -0.56,17.46 -0.83,14.63 -1.10,11.81 -1.07,10.00 -1.04,8.19 -1.01,6.18 -0.99,4.17 -0.94,2.07 -0.89,-0.02 -0.87,-0.12 -0.86,-0.23 -0.82,-0.33 -0.77,-0.43 -0.71,-0.52 -0.65,-0.60 -0.57,-0.67 -0.48,-0.74 -0.39,-0.79 -0.29,-0.84 -0.19,-0.86 -0.08,-0.88 0.02,-0.88 0.12,-0.88 0.23,-0.85 0.33,-0.82 0.43,-0.77 0.52,-0.72 0.60,-0.64 0.68,-0.57 0.74,-0.48 0.79,-0.39 0.83,-0.29 0.87,-0.19 0.88,-0.08 0.89,0.02 0.89,0.02 L 0.89,0.02 Z"></path></g><g transform="translate(65.51958146417414 140.3833575107567) rotate(0 2.2207939595553654 2.3376665879651455)" stroke="none"><path fill="#1971c2" d="M 0.50,0.57 Q 0.50,0.57 -0.03,1.14 -0.57,1.72 -0.98,2.06 -1.39,2.40 -0.84,2.49 -0.29,2.58 0.47,2.85 1.23,3.13 2.09,3.40 2.95,3.67 4.91,4.03 6.86,4.39 6.97,4.41 7.07,4.44 7.16,4.50 7.25,4.56 7.32,4.64 7.38,4.72 7.42,4.82 7.45,4.92 7.46,5.03 7.46,5.13 7.43,5.24 7.39,5.34 7.33,5.42 7.27,5.51 7.18,5.57 7.10,5.63 6.99,5.66 6.89,5.69 6.79,5.69 6.68,5.69 6.58,5.65 6.48,5.61 6.40,5.54 6.32,5.48 6.26,5.39 6.20,5.30 6.18,5.19 6.15,5.09 6.16,4.98 6.17,4.88 6.21,4.78 6.26,4.68 6.33,4.61 6.40,4.53 6.49,4.48 6.58,4.42 6.69,4.40 6.79,4.38 6.90,4.40 7.00,4.41 7.10,4.46 7.19,4.51 7.27,4.59 7.34,4.66 7.39,4.76 7.44,4.85 7.45,4.96 7.46,5.06 7.44,5.17 7.42,5.27 7.37,5.36 7.32,5.46 7.24,5.53 7.16,5.60 7.06,5.64 6.96,5.68 6.86,5.69 6.75,5.70 6.75,5.70 6.75,5.70 4.59,5.60 2.43,5.50 1.49,5.26 0.54,5.02 -0.25,4.72 -1.05,4.43 -1.64,4.17 -2.22,3.92 -2.86,3.32 -3.50,2.73 -3.25,2.08 -3.00,1.44 -2.39,0.90 -1.77,0.36 -1.14,-0.10 -0.50,-0.57 -0.43,-0.62 -0.35,-0.67 -0.26,-0.71 -0.18,-0.74 -0.09,-0.75 0.00,-0.76 0.09,-0.75 0.18,-0.74 0.26,-0.71 0.35,-0.67 0.43,-0.62 0.50,-0.57 0.56,-0.50 0.62,-0.43 0.67,-0.35 0.71,-0.27 0.73,-0.18 0.75,-0.09 0.75,0.00 0.75,0.09 0.73,0.18 0.71,0.27 0.67,0.35 0.62,0.43 0.56,0.50 0.50,0.57 0.50,0.57 L 0.50,0.57 Z"></path></g><g transform="translate(79.60402622366075 142.77948716539777) rotate(0 0.20454939344308798 6.779218837114627)" stroke="none"><path fill="#1971c2" d="M 0.95,-0.01 Q 0.95,-0.01 0.98,1.24 1.01,2.50 1.00,4.37 0.98,6.24 1.01,9.58 1.03,12.92 1.01,13.03 1.00,13.14 0.96,13.23 0.91,13.33 0.84,13.41 0.77,13.48 0.68,13.53 0.58,13.58 0.48,13.60 0.37,13.62 0.27,13.60 0.16,13.58 0.07,13.54 -0.02,13.49 -0.09,13.41 -0.16,13.33 -0.21,13.24 -0.25,13.14 -0.26,13.03 -0.28,12.93 -0.25,12.82 -0.23,12.72 -0.18,12.63 -0.12,12.54 -0.04,12.47 0.03,12.40 0.13,12.36 0.23,12.32 0.33,12.31 0.44,12.31 0.54,12.34 0.64,12.37 0.73,12.42 0.82,12.48 0.89,12.57 0.95,12.65 0.98,12.75 1.02,12.85 1.02,12.96 1.02,13.07 0.98,13.17 0.95,13.27 0.89,13.35 0.82,13.44 0.74,13.50 0.65,13.56 0.55,13.59 0.44,13.61 0.34,13.61 0.23,13.60 0.13,13.56 0.03,13.53 -0.04,13.46 -0.12,13.39 -0.17,13.30 -0.23,13.21 -0.25,13.10 -0.28,13.00 -0.28,13.00 -0.28,13.00 -0.58,9.62 -0.89,6.24 -0.91,4.39 -0.94,2.53 -0.94,1.27 -0.95,0.01 -0.94,-0.10 -0.93,-0.21 -0.89,-0.32 -0.85,-0.43 -0.78,-0.52 -0.72,-0.62 -0.63,-0.70 -0.55,-0.77 -0.45,-0.83 -0.35,-0.88 -0.23,-0.91 -0.12,-0.94 -0.01,-0.94 0.10,-0.94 0.21,-0.92 0.32,-0.89 0.42,-0.84 0.53,-0.79 0.61,-0.71 0.70,-0.64 0.77,-0.54 0.83,-0.45 0.88,-0.34 0.92,-0.24 0.93,-0.12 0.95,-0.01 0.95,-0.01 L 0.95,-0.01 Z"></path></g><g transform="translate(440.5397688074683 10.642861878686517) rotate(0 3.5649272786624238 0)" stroke="none"><path fill="#1e1e1e" d="M 0,-0.83 Q 0,-0.83 1.41,-0.78 2.82,-0.73 4.87,-0.69 6.91,-0.65 7.02,-0.63 7.12,-0.62 7.22,-0.57 7.31,-0.52 7.38,-0.44 7.46,-0.36 7.50,-0.27 7.55,-0.17 7.56,-0.07 7.57,0.03 7.55,0.13 7.52,0.24 7.47,0.33 7.41,0.42 7.33,0.49 7.25,0.56 7.15,0.60 7.05,0.64 6.95,0.64 6.84,0.65 6.74,0.62 6.64,0.59 6.55,0.53 6.46,0.47 6.40,0.39 6.33,0.30 6.30,0.20 6.27,0.10 6.27,-0.00 6.27,-0.10 6.30,-0.20 6.33,-0.30 6.40,-0.39 6.46,-0.47 6.55,-0.53 6.64,-0.59 6.74,-0.62 6.84,-0.65 6.95,-0.64 7.05,-0.64 7.15,-0.60 7.25,-0.56 7.33,-0.49 7.41,-0.42 7.47,-0.33 7.52,-0.24 7.55,-0.13 7.57,-0.03 7.56,0.07 7.55,0.17 7.50,0.27 7.46,0.36 7.38,0.44 7.31,0.52 7.22,0.57 7.12,0.62 7.02,0.63 6.91,0.65 6.91,0.65 6.91,0.65 4.87,0.69 2.82,0.73 1.41,0.78 0,0.83 -0.10,0.82 -0.20,0.81 -0.29,0.77 -0.38,0.74 -0.47,0.68 -0.55,0.62 -0.62,0.55 -0.68,0.47 -0.73,0.38 -0.78,0.29 -0.80,0.19 -0.83,0.10 -0.83,-0.00 -0.83,-0.10 -0.80,-0.19 -0.78,-0.29 -0.73,-0.38 -0.68,-0.47 -0.62,-0.55 -0.55,-0.62 -0.47,-0.68 -0.38,-0.74 -0.29,-0.77 -0.20,-0.81 -0.10,-0.82 0.00,-0.83 0.00,-0.83 L 0,-0.83 Z"></path></g><g transform="translate(443.2280711156437 10.701307110381777) rotate(0 2.425325518017871 11.980541263321811)" stroke="none"><path fill="#1e1e1e" d="M 0.78,0.09 Q 0.78,0.09 0.63,1.29 0.48,2.48 0.39,3.73 0.29,4.98 0.21,6.21 0.13,7.45 0.07,9.13 0.01,10.81 -0.06,12.45 -0.13,14.10 -0.24,15.36 -0.34,16.63 -0.40,17.44 -0.46,18.26 -0.57,19.09 -0.67,19.92 -0.75,20.72 -0.84,21.52 -1.33,21.97 -1.81,22.43 -1.45,21.91 -1.10,21.38 -0.28,21.38 0.53,21.37 1.52,21.38 2.51,21.39 4.89,22.31 7.27,23.24 7.35,23.31 7.43,23.38 7.48,23.47 7.54,23.56 7.56,23.66 7.58,23.77 7.57,23.87 7.56,23.98 7.51,24.07 7.47,24.17 7.39,24.25 7.32,24.32 7.23,24.37 7.13,24.42 7.03,24.44 6.92,24.46 6.82,24.44 6.71,24.42 6.62,24.37 6.53,24.32 6.45,24.24 6.38,24.17 6.34,24.07 6.29,23.97 6.28,23.87 6.27,23.76 6.29,23.66 6.32,23.55 6.37,23.46 6.43,23.37 6.51,23.30 6.59,23.24 6.69,23.20 6.79,23.16 6.89,23.15 7.00,23.15 7.10,23.18 7.20,23.21 7.29,23.27 7.38,23.33 7.44,23.41 7.51,23.50 7.54,23.60 7.57,23.70 7.57,23.80 7.57,23.91 7.54,24.01 7.50,24.11 7.44,24.19 7.38,24.28 7.29,24.34 7.20,24.40 7.10,24.43 6.99,24.45 6.89,24.45 6.78,24.44 6.68,24.40 6.59,24.36 6.59,24.36 6.59,24.36 4.54,23.80 2.50,23.24 1.51,23.25 0.52,23.25 -0.31,23.24 -1.15,23.22 -1.73,23.17 -2.32,23.13 -2.73,22.55 -3.14,21.97 -2.71,21.46 -2.28,20.95 -2.29,20.39 -2.31,19.84 -2.29,18.98 -2.27,18.12 -2.21,17.30 -2.15,16.48 -2.04,15.24 -1.94,14.00 -1.84,12.36 -1.74,10.72 -1.63,9.03 -1.53,7.34 -1.44,6.08 -1.35,4.83 -1.22,3.56 -1.09,2.28 -0.94,1.09 -0.78,-0.09 -0.76,-0.19 -0.74,-0.28 -0.69,-0.36 -0.65,-0.45 -0.58,-0.52 -0.52,-0.59 -0.44,-0.65 -0.36,-0.70 -0.27,-0.73 -0.18,-0.77 -0.09,-0.78 0.00,-0.79 0.09,-0.78 0.19,-0.76 0.28,-0.73 0.37,-0.70 0.45,-0.64 0.52,-0.59 0.59,-0.51 0.65,-0.44 0.69,-0.36 0.74,-0.27 0.76,-0.18 0.78,-0.09 0.78,0.00 0.78,0.09 0.78,0.09 L 0.78,0.09 Z"></path></g><g transform="translate(457.8969503571023 12.513002283051037) rotate(0 -0.2922439934570207 9.730533605409164)" stroke="none"><path fill="#1e1e1e" d="M 0.67,-0.01 Q 0.67,-0.01 0.73,1.30 0.79,2.63 0.80,4.79 0.80,6.94 0.68,9.44 0.56,11.93 0.46,13.83 0.36,15.73 0.16,17.50 -0.03,19.27 -0.06,19.38 -0.08,19.48 -0.14,19.57 -0.19,19.66 -0.27,19.73 -0.35,19.80 -0.45,19.84 -0.55,19.88 -0.66,19.88 -0.76,19.89 -0.87,19.86 -0.97,19.83 -1.06,19.77 -1.14,19.71 -1.21,19.62 -1.27,19.54 -1.31,19.44 -1.34,19.34 -1.34,19.23 -1.34,19.12 -1.30,19.02 -1.27,18.92 -1.20,18.84 -1.14,18.76 -1.05,18.70 -0.96,18.64 -0.86,18.61 -0.76,18.58 -0.65,18.59 -0.55,18.59 -0.45,18.63 -0.35,18.67 -0.27,18.74 -0.19,18.81 -0.13,18.90 -0.08,18.99 -0.06,19.10 -0.03,19.20 -0.05,19.31 -0.06,19.41 -0.10,19.51 -0.15,19.61 -0.22,19.68 -0.30,19.76 -0.39,19.81 -0.48,19.86 -0.59,19.87 -0.69,19.89 -0.80,19.87 -0.90,19.86 -1.00,19.81 -1.09,19.75 -1.16,19.68 -1.24,19.60 -1.28,19.50 -1.32,19.41 -1.33,19.30 -1.35,19.20 -1.35,19.20 -1.35,19.20 -1.36,17.40 -1.38,15.61 -1.23,13.72 -1.07,11.84 -0.91,9.38 -0.75,6.93 -0.70,4.80 -0.65,2.67 -0.66,1.34 -0.67,0.01 -0.66,-0.06 -0.65,-0.14 -0.63,-0.22 -0.60,-0.29 -0.56,-0.36 -0.51,-0.43 -0.45,-0.49 -0.39,-0.54 -0.32,-0.58 -0.25,-0.62 -0.17,-0.64 -0.09,-0.66 -0.01,-0.67 0.06,-0.67 0.14,-0.65 0.22,-0.63 0.29,-0.60 0.36,-0.56 0.43,-0.51 0.49,-0.46 0.54,-0.39 0.59,-0.32 0.62,-0.25 0.65,-0.17 0.66,-0.09 0.67,-0.01 0.67,-0.01 L 0.67,-0.01 Z"></path></g><g transform="translate(463.0982727833095 14.909114102711555) rotate(0 -2.980546301632444 6.662346208704776)" stroke="none"><path fill="#1e1e1e" d="M 0.74,0.48 Q 0.74,0.48 -0.00,1.63 -0.75,2.78 -1.50,3.73 -2.24,4.68 -2.93,5.53 -3.62,6.37 -4.02,6.91 -4.42,7.45 -3.91,7.87 -3.39,8.28 -2.74,8.89 -2.09,9.49 -0.90,11.08 0.28,12.67 0.34,12.76 0.40,12.84 0.43,12.95 0.46,13.05 0.45,13.15 0.45,13.26 0.41,13.36 0.37,13.46 0.31,13.54 0.24,13.62 0.15,13.68 0.06,13.73 -0.04,13.76 -0.14,13.78 -0.25,13.77 -0.35,13.76 -0.45,13.72 -0.55,13.67 -0.62,13.60 -0.70,13.53 -0.75,13.44 -0.80,13.34 -0.82,13.24 -0.84,13.13 -0.82,13.03 -0.81,12.92 -0.76,12.83 -0.71,12.73 -0.63,12.66 -0.56,12.59 -0.46,12.54 -0.37,12.49 -0.26,12.48 -0.15,12.47 -0.05,12.49 0.04,12.51 0.14,12.57 0.23,12.62 0.30,12.70 0.37,12.78 0.41,12.88 0.45,12.98 0.45,13.08 0.46,13.19 0.43,13.29 0.41,13.40 0.35,13.48 0.29,13.57 0.20,13.64 0.12,13.70 0.02,13.74 -0.07,13.77 -0.18,13.77 -0.28,13.77 -0.38,13.74 -0.48,13.71 -0.57,13.65 -0.65,13.58 -0.65,13.58 -0.65,13.58 -2.12,12.30 -3.59,11.01 -4.10,10.47 -4.62,9.93 -5.10,9.54 -5.58,9.16 -6.04,8.42 -6.49,7.69 -6.16,7.06 -5.83,6.43 -5.42,5.84 -5.01,5.26 -4.34,4.41 -3.67,3.56 -2.97,2.67 -2.27,1.78 -1.50,0.64 -0.74,-0.48 -0.67,-0.57 -0.60,-0.65 -0.51,-0.71 -0.42,-0.77 -0.32,-0.81 -0.22,-0.85 -0.12,-0.87 -0.01,-0.88 0.08,-0.87 0.19,-0.86 0.29,-0.82 0.39,-0.79 0.48,-0.73 0.57,-0.67 0.64,-0.59 0.72,-0.51 0.77,-0.42 0.82,-0.33 0.85,-0.22 0.87,-0.12 0.88,-0.01 0.88,0.08 0.85,0.19 0.83,0.29 0.78,0.39 0.74,0.48 0.74,0.48 L 0.74,0.48 Z"></path></g><g transform="translate(468.1826690761648 23.85068166768633) rotate(0 -0.1168904633905754 4.266243306534534)" stroke="none"><path fill="#1e1e1e" d="M 0.82,0 Q 0.82,0 0.87,1.42 0.91,2.85 0.67,5.58 0.43,8.30 0.41,8.40 0.39,8.51 0.33,8.60 0.28,8.69 0.19,8.76 0.11,8.83 0.01,8.86 -0.07,8.90 -0.18,8.91 -0.29,8.91 -0.39,8.89 -0.49,8.86 -0.58,8.80 -0.67,8.74 -0.73,8.65 -0.79,8.57 -0.83,8.47 -0.86,8.37 -0.86,8.26 -0.86,8.15 -0.83,8.05 -0.79,7.95 -0.73,7.87 -0.66,7.78 -0.58,7.72 -0.49,7.66 -0.38,7.64 -0.28,7.61 -0.18,7.61 -0.07,7.62 0.02,7.66 0.12,7.70 0.20,7.77 0.28,7.84 0.33,7.93 0.39,8.02 0.41,8.12 0.43,8.23 0.42,8.33 0.41,8.44 0.36,8.54 0.32,8.63 0.25,8.71 0.17,8.79 0.08,8.83 -0.01,8.88 -0.11,8.90 -0.22,8.92 -0.32,8.90 -0.43,8.88 -0.52,8.83 -0.61,8.78 -0.69,8.71 -0.76,8.63 -0.80,8.53 -0.85,8.43 -0.86,8.33 -0.87,8.22 -0.87,8.22 -0.87,8.22 -0.89,5.54 -0.91,2.85 -0.87,1.42 -0.82,0 -0.81,-0.09 -0.80,-0.19 -0.76,-0.29 -0.73,-0.38 -0.67,-0.46 -0.61,-0.54 -0.54,-0.61 -0.46,-0.67 -0.38,-0.72 -0.29,-0.77 -0.19,-0.79 -0.09,-0.81 0.00,-0.81 0.09,-0.81 0.19,-0.79 0.29,-0.77 0.38,-0.72 0.46,-0.67 0.54,-0.61 0.61,-0.54 0.67,-0.46 0.73,-0.38 0.76,-0.29 0.80,-0.19 0.81,-0.09 0.82,0.00 0.82,0.00 L 0.82,0 Z"></path></g><g transform="translate(481.5073971635357 32.441613512450886) rotate(0 -1.577932080868834 1.3441511540876263)" stroke="none"><path fill="#1e1e1e" d="M 0.62,0.62 Q 0.62,0.62 -0.89,1.78 -2.41,2.95 -2.50,3.00 -2.60,3.05 -2.70,3.06 -2.81,3.08 -2.91,3.06 -3.02,3.04 -3.11,2.99 -3.20,2.94 -3.28,2.87 -3.35,2.79 -3.39,2.69 -3.44,2.60 -3.45,2.49 -3.46,2.38 -3.44,2.28 -3.41,2.18 -3.36,2.09 -3.30,2.00 -3.22,1.93 -3.14,1.86 -3.04,1.82 -2.94,1.78 -2.84,1.78 -2.73,1.77 -2.63,1.80 -2.53,1.83 -2.44,1.89 -2.35,1.95 -2.29,2.03 -2.22,2.12 -2.19,2.22 -2.16,2.32 -2.16,2.42 -2.16,2.53 -2.19,2.63 -2.23,2.73 -2.29,2.82 -2.36,2.90 -2.44,2.96 -2.53,3.02 -2.63,3.05 -2.74,3.08 -2.84,3.07 -2.95,3.06 -3.05,3.02 -3.15,2.98 -3.23,2.91 -3.31,2.85 -3.36,2.75 -3.42,2.66 -3.44,2.56 -3.46,2.46 -3.45,2.35 -3.44,2.24 -3.39,2.15 -3.35,2.05 -3.27,1.98 -3.20,1.90 -3.20,1.90 -3.20,1.90 -1.91,0.63 -0.62,-0.62 -0.54,-0.69 -0.45,-0.75 -0.36,-0.80 -0.26,-0.84 -0.15,-0.86 -0.05,-0.88 0.05,-0.87 0.16,-0.87 0.26,-0.84 0.36,-0.80 0.45,-0.75 0.54,-0.69 0.62,-0.62 0.69,-0.54 0.75,-0.45 0.80,-0.36 0.84,-0.26 0.87,-0.15 0.87,-0.05 0.88,0.05 0.86,0.15 0.84,0.26 0.80,0.36 0.75,0.45 0.69,0.54 0.62,0.62 0.62,0.62 L 0.62,0.62 Z"></path></g><g transform="translate(495.00740744105025 11.87014040436452) rotate(0 -0.292208323495629 9.847424068799683)" stroke="none"><path fill="#1e1e1e" d="M 0.75,0 Q 0.75,0 0.80,1.05 0.85,2.11 0.79,3.81 0.73,5.50 0.69,7.62 0.65,9.75 0.65,11.67 0.65,13.59 0.64,14.95 0.63,16.31 0.35,17.95 0.08,19.59 0.05,19.70 0.03,19.80 -0.02,19.89 -0.08,19.98 -0.16,20.05 -0.24,20.11 -0.34,20.15 -0.44,20.19 -0.55,20.19 -0.65,20.20 -0.75,20.17 -0.86,20.14 -0.94,20.08 -1.03,20.01 -1.09,19.93 -1.15,19.84 -1.19,19.74 -1.22,19.64 -1.22,19.53 -1.21,19.43 -1.18,19.33 -1.14,19.23 -1.08,19.14 -1.01,19.06 -0.92,19.00 -0.83,18.94 -0.73,18.92 -0.63,18.89 -0.52,18.90 -0.42,18.91 -0.32,18.95 -0.22,18.99 -0.14,19.06 -0.06,19.13 -0.01,19.22 0.04,19.31 0.06,19.42 0.08,19.52 0.06,19.63 0.05,19.73 0.00,19.83 -0.03,19.92 -0.11,20.00 -0.18,20.08 -0.28,20.12 -0.37,20.17 -0.48,20.19 -0.58,20.20 -0.69,20.18 -0.79,20.16 -0.88,20.11 -0.98,20.06 -1.05,19.98 -1.12,19.90 -1.16,19.81 -1.20,19.71 -1.21,19.60 -1.22,19.50 -1.22,19.50 -1.22,19.50 -1.35,17.88 -1.47,16.26 -1.42,14.90 -1.36,13.55 -1.30,11.61 -1.23,9.68 -1.12,7.55 -1.00,5.43 -0.93,3.77 -0.85,2.11 -0.80,1.05 -0.75,0 -0.73,-0.08 -0.72,-0.17 -0.69,-0.26 -0.66,-0.34 -0.61,-0.42 -0.56,-0.49 -0.49,-0.55 -0.42,-0.61 -0.34,-0.65 -0.26,-0.70 -0.17,-0.72 -0.09,-0.74 0.00,-0.74 0.09,-0.74 0.17,-0.72 0.26,-0.70 0.34,-0.65 0.42,-0.61 0.49,-0.55 0.56,-0.49 0.61,-0.42 0.66,-0.34 0.69,-0.26 0.72,-0.17 0.73,-0.08 0.75,0.00 0.75,0.00 L 0.75,0 Z"></path></g><g transform="translate(504.2411476595593 15.727293841503297) rotate(0 -3.740245138767534 6.428583116904292)" stroke="none"><path fill="#1e1e1e" d="M 0.60,0.55 Q 0.60,0.55 -0.95,2.29 -2.51,4.02 -3.53,5.09 -4.56,6.17 -5.08,6.71 -5.60,7.25 -6.03,7.71 -6.47,8.17 -5.79,8.69 -5.10,9.22 -4.51,9.67 -3.92,10.13 -2.40,11.14 -0.87,12.15 -0.78,12.20 -0.69,12.26 -0.62,12.34 -0.55,12.42 -0.50,12.51 -0.46,12.61 -0.45,12.72 -0.45,12.82 -0.47,12.93 -0.50,13.03 -0.56,13.12 -0.61,13.21 -0.70,13.27 -0.78,13.34 -0.88,13.38 -0.98,13.41 -1.08,13.42 -1.19,13.42 -1.29,13.39 -1.39,13.35 -1.48,13.29 -1.57,13.23 -1.63,13.14 -1.69,13.06 -1.72,12.96 -1.75,12.85 -1.75,12.75 -1.75,12.64 -1.71,12.54 -1.67,12.44 -1.60,12.36 -1.54,12.28 -1.45,12.22 -1.36,12.16 -1.26,12.14 -1.15,12.11 -1.05,12.12 -0.94,12.13 -0.84,12.17 -0.75,12.22 -0.67,12.29 -0.59,12.36 -0.54,12.45 -0.48,12.54 -0.46,12.65 -0.44,12.75 -0.46,12.86 -0.47,12.96 -0.52,13.06 -0.57,13.15 -0.64,13.23 -0.72,13.30 -0.81,13.35 -0.91,13.40 -1.01,13.41 -1.12,13.42 -1.22,13.40 -1.33,13.38 -1.33,13.38 -1.33,13.38 -3.34,12.62 -5.35,11.85 -5.98,11.30 -6.61,10.75 -7.12,10.21 -7.63,9.67 -8.00,8.71 -8.38,7.75 -8.06,7.26 -7.73,6.78 -7.31,6.39 -6.88,6.00 -6.36,5.47 -5.84,4.93 -4.82,3.88 -3.80,2.82 -2.20,1.13 -0.60,-0.55 -0.53,-0.62 -0.45,-0.68 -0.36,-0.73 -0.27,-0.77 -0.18,-0.79 -0.08,-0.82 0.01,-0.81 0.11,-0.81 0.21,-0.79 0.30,-0.76 0.39,-0.71 0.48,-0.67 0.55,-0.60 0.62,-0.53 0.68,-0.45 0.73,-0.36 0.77,-0.27 0.80,-0.18 0.81,-0.08 0.82,0.01 0.81,0.11 0.79,0.21 0.76,0.30 0.72,0.39 0.66,0.47 0.60,0.55 0.60,0.55 L 0.60,0.55 Z"></path></g><g transform="translate(507.98142846828813 24.31820785128707) rotate(0 3.2727546251281865 3.1558552442472774)" stroke="none"><path fill="#1e1e1e" d="M 0.49,-0.66 Q 0.49,-0.66 1.34,-0.08 2.19,0.50 2.66,1.34 3.14,2.19 3.08,3.16 3.02,4.12 2.56,4.88 2.10,5.63 1.68,6.04 1.27,6.45 0.84,5.84 0.40,5.24 1.23,5.21 2.06,5.19 4.04,5.42 6.01,5.65 6.12,5.67 6.22,5.68 6.32,5.73 6.41,5.78 6.48,5.86 6.56,5.94 6.60,6.03 6.65,6.13 6.66,6.24 6.67,6.34 6.65,6.45 6.62,6.55 6.57,6.64 6.51,6.73 6.43,6.80 6.35,6.87 6.25,6.91 6.15,6.95 6.05,6.95 5.94,6.96 5.84,6.93 5.74,6.90 5.65,6.84 5.56,6.78 5.50,6.70 5.43,6.61 5.40,6.51 5.36,6.41 5.36,6.30 5.37,6.20 5.40,6.10 5.43,6.00 5.50,5.91 5.56,5.83 5.65,5.77 5.74,5.71 5.84,5.68 5.94,5.65 6.05,5.66 6.16,5.66 6.25,5.70 6.35,5.74 6.43,5.81 6.51,5.88 6.57,5.97 6.62,6.06 6.65,6.17 6.67,6.27 6.66,6.38 6.65,6.48 6.60,6.58 6.56,6.68 6.48,6.75 6.41,6.83 6.31,6.88 6.22,6.93 6.12,6.95 6.01,6.96 6.01,6.96 6.01,6.96 4.01,7.18 2.02,7.39 1.10,7.29 0.18,7.19 0.09,6.17 -0.00,5.15 0.60,4.47 1.20,3.80 1.12,2.86 1.03,1.91 0.26,1.29 -0.49,0.66 -0.57,0.59 -0.64,0.52 -0.69,0.44 -0.75,0.35 -0.78,0.26 -0.81,0.16 -0.82,0.06 -0.83,-0.03 -0.81,-0.13 -0.79,-0.23 -0.75,-0.32 -0.72,-0.41 -0.66,-0.49 -0.60,-0.57 -0.52,-0.63 -0.44,-0.70 -0.35,-0.74 -0.26,-0.78 -0.16,-0.80 -0.06,-0.82 0.03,-0.82 0.13,-0.82 0.22,-0.79 0.32,-0.76 0.41,-0.71 0.49,-0.66 0.49,-0.66 L 0.49,-0.66 Z"></path></g><g transform="translate(518.7347090409128 10.116890463390519) rotate(0 3.681817742052999 13.207810871509423)" stroke="none"><path fill="#1e1e1e" d="M -0.02,-0.85 Q -0.02,-0.85 1.06,-0.95 2.15,-1.05 3.04,-1.07 3.93,-1.10 4.56,-1.11 5.19,-1.12 5.79,-1.08 6.38,-1.05 6.97,-0.77 7.55,-0.49 7.69,0.34 7.83,1.18 7.90,1.81 7.96,2.45 8.05,3.38 8.14,4.32 8.25,5.61 8.36,6.90 8.45,8.38 8.54,9.86 8.58,11.45 8.62,13.03 8.64,14.51 8.66,15.98 8.70,17.38 8.73,18.77 8.75,19.88 8.77,20.98 8.78,21.61 8.80,22.25 8.80,22.86 8.81,23.46 8.80,24.25 8.79,25.04 8.77,25.57 8.76,26.11 8.49,26.74 8.22,27.38 7.22,27.55 6.21,27.73 5.51,27.75 4.81,27.77 2.50,27.40 0.19,27.04 0.09,27.01 -0.00,26.98 -0.09,26.92 -0.18,26.87 -0.25,26.78 -0.31,26.70 -0.35,26.60 -0.38,26.50 -0.38,26.39 -0.38,26.28 -0.35,26.18 -0.32,26.08 -0.26,26.00 -0.19,25.91 -0.11,25.85 -0.02,25.79 0.07,25.76 0.18,25.73 0.28,25.74 0.39,25.74 0.49,25.78 0.59,25.82 0.67,25.88 0.75,25.95 0.81,26.04 0.86,26.13 0.89,26.24 0.91,26.34 0.90,26.45 0.89,26.55 0.85,26.65 0.80,26.74 0.73,26.82 0.66,26.90 0.57,26.95 0.47,27.00 0.37,27.02 0.26,27.04 0.16,27.02 0.05,27.01 -0.03,26.96 -0.13,26.91 -0.20,26.83 -0.27,26.76 -0.32,26.66 -0.37,26.57 -0.38,26.46 -0.39,26.36 -0.37,26.25 -0.35,26.15 -0.29,26.06 -0.24,25.96 -0.16,25.89 -0.08,25.82 0.01,25.78 0.11,25.74 0.21,25.74 0.32,25.73 0.32,25.73 0.32,25.73 2.53,25.48 4.74,25.22 5.64,25.67 6.54,26.11 6.53,25.57 6.52,25.04 6.50,24.25 6.49,23.47 6.49,22.87 6.49,22.27 6.50,21.63 6.50,21.00 6.50,19.90 6.50,18.81 6.49,17.41 6.48,16.00 6.48,14.54 6.47,13.07 6.45,11.52 6.42,9.97 6.36,8.52 6.29,7.06 6.20,5.78 6.11,4.49 6.04,3.57 5.97,2.65 6.15,1.78 6.32,0.92 5.77,0.91 5.21,0.90 4.59,0.90 3.96,0.91 3.09,0.91 2.21,0.91 1.12,0.88 0.02,0.85 -0.07,0.84 -0.17,0.83 -0.27,0.80 -0.37,0.76 -0.45,0.71 -0.54,0.65 -0.61,0.58 -0.68,0.50 -0.73,0.41 -0.78,0.32 -0.81,0.22 -0.84,0.12 -0.84,0.02 -0.84,-0.07 -0.82,-0.17 -0.80,-0.27 -0.76,-0.37 -0.71,-0.46 -0.65,-0.54 -0.58,-0.62 -0.50,-0.68 -0.41,-0.74 -0.32,-0.78 -0.22,-0.82 -0.12,-0.83 -0.02,-0.85 -0.02,-0.85 L -0.02,-0.85 Z"></path></g><g transform="translate(343.0590435533493 73.46765143025209) rotate(0 3.740280808728926 1.8993630202120357)" stroke="none"><path fill="#f08c00" d="M -0.69,0.09 Q -0.69,0.09 -0.88,-0.37 -1.07,-0.84 -1.07,-0.95 -1.08,-1.07 -1.05,-1.18 -1.02,-1.29 -0.97,-1.39 -0.92,-1.50 -0.85,-1.58 -0.77,-1.67 -0.68,-1.74 -0.59,-1.80 -0.48,-1.85 -0.37,-1.89 -0.26,-1.91 -0.14,-1.92 -0.03,-1.91 0.07,-1.90 0.18,-1.86 0.29,-1.82 0.38,-1.76 0.48,-1.69 0.56,-1.61 0.63,-1.52 0.69,-1.42 0.74,-1.32 0.77,-1.21 0.80,-1.10 1.79,-0.58 2.78,-0.07 3.43,0.44 4.08,0.96 4.69,1.49 5.30,2.03 6.72,3.49 8.14,4.94 8.21,5.02 8.27,5.10 8.32,5.20 8.36,5.30 8.36,5.40 8.37,5.51 8.34,5.61 8.31,5.71 8.26,5.80 8.20,5.89 8.11,5.96 8.03,6.02 7.93,6.06 7.83,6.09 7.72,6.09 7.62,6.09 7.51,6.06 7.41,6.03 7.33,5.96 7.24,5.90 7.18,5.81 7.12,5.73 7.09,5.62 7.06,5.52 7.07,5.42 7.07,5.31 7.11,5.21 7.15,5.11 7.22,5.03 7.29,4.95 7.38,4.89 7.47,4.84 7.57,4.81 7.67,4.79 7.78,4.80 7.88,4.81 7.98,4.85 8.08,4.90 8.16,4.97 8.23,5.04 8.29,5.14 8.34,5.23 8.35,5.33 8.37,5.44 8.36,5.54 8.34,5.65 8.29,5.74 8.24,5.84 8.17,5.91 8.09,5.98 7.99,6.03 7.90,6.08 7.79,6.09 7.69,6.10 7.58,6.08 7.48,6.06 7.39,6.00 7.30,5.95 7.30,5.95 7.30,5.95 5.51,4.85 3.73,3.75 3.18,3.22 2.63,2.70 1.98,2.14 1.33,1.57 0.61,0.83 -0.09,0.08 -0.58,-0.37 -1.07,-0.84 -1.07,-0.95 -1.08,-1.07 -1.05,-1.18 -1.02,-1.29 -0.97,-1.39 -0.92,-1.50 -0.85,-1.58 -0.77,-1.67 -0.68,-1.74 -0.59,-1.80 -0.48,-1.85 -0.37,-1.89 -0.26,-1.91 -0.14,-1.92 -0.03,-1.91 0.07,-1.90 0.18,-1.86 0.29,-1.82 0.38,-1.76 0.48,-1.69 0.56,-1.61 0.63,-1.52 0.69,-1.42 0.74,-1.32 0.77,-1.21 0.80,-1.10 0.75,-0.60 0.69,-0.09 0.69,-0.01 0.69,0.07 0.67,0.15 0.65,0.23 0.62,0.31 0.58,0.38 0.52,0.45 0.47,0.51 0.40,0.56 0.33,0.61 0.25,0.64 0.17,0.67 0.09,0.68 0.01,0.70 -0.07,0.69 -0.15,0.68 -0.23,0.65 -0.31,0.62 -0.38,0.57 -0.45,0.53 -0.51,0.47 -0.57,0.40 -0.61,0.33 -0.65,0.25 -0.67,0.17 -0.69,0.09 -0.69,0.09 L -0.69,0.09 Z"></path></g><g transform="translate(350.83181349430276 70.07804201169483) rotate(0 -4.061702830581851 5.318186137126531)" stroke="none"><path fill="#f08c00" d="M 0.56,0.37 Q 0.56,0.37 -0.00,1.52 -0.56,2.68 -1.43,3.79 -2.30,4.90 -3.11,5.83 -3.92,6.75 -4.50,7.43 -5.08,8.11 -6.32,9.55 -7.57,10.98 -7.63,11.04 -7.69,11.09 -7.76,11.13 -7.83,11.16 -7.90,11.18 -7.98,11.20 -8.06,11.20 -8.14,11.20 -8.21,11.19 -8.29,11.17 -8.36,11.13 -8.43,11.10 -8.49,11.04 -8.55,10.99 -8.60,10.93 -8.64,10.86 -8.67,10.79 -8.70,10.72 -8.71,10.64 -8.72,10.56 -8.71,10.48 -8.70,10.40 -8.68,10.33 -8.65,10.25 -8.61,10.19 -8.56,10.12 -8.61,10.19 -8.65,10.26 -8.59,10.17 -8.53,10.09 -8.44,10.03 -8.36,9.96 -8.26,9.93 -8.15,9.90 -8.05,9.90 -7.94,9.91 -7.84,9.94 -7.74,9.98 -7.66,10.05 -7.58,10.11 -7.52,10.20 -7.46,10.29 -7.44,10.40 -7.41,10.50 -7.42,10.60 -7.43,10.71 -7.47,10.81 -7.51,10.91 -7.58,10.98 -7.65,11.06 -7.75,11.12 -7.84,11.17 -7.94,11.19 -8.05,11.21 -8.15,11.19 -8.26,11.18 -8.35,11.13 -8.45,11.09 -8.52,11.01 -8.60,10.94 -8.65,10.84 -8.69,10.74 -8.71,10.64 -8.72,10.53 -8.70,10.43 -8.68,10.33 -8.63,10.23 -8.58,10.14 -8.50,10.07 -8.42,10.00 -8.32,9.96 -8.22,9.91 -8.12,9.91 -8.01,9.90 -7.91,9.92 -7.81,9.95 -7.72,10.01 -7.63,10.06 -7.56,10.15 -7.49,10.23 -7.46,10.33 -7.42,10.43 -7.42,10.53 -7.41,10.64 -7.49,10.81 -7.57,10.98 -7.63,11.04 -7.69,11.09 -7.76,11.13 -7.83,11.16 -7.90,11.18 -7.98,11.20 -8.06,11.20 -8.14,11.20 -8.21,11.19 -8.29,11.17 -8.36,11.13 -8.43,11.10 -8.49,11.04 -8.55,10.99 -8.60,10.93 -8.64,10.86 -8.67,10.79 -8.70,10.72 -8.71,10.64 -8.72,10.56 -8.71,10.48 -8.70,10.40 -8.68,10.33 -8.65,10.25 -8.61,10.19 -8.56,10.12 -7.64,8.41 -6.72,6.69 -6.12,6.01 -5.51,5.33 -4.72,4.47 -3.93,3.61 -3.09,2.58 -2.25,1.55 -1.40,0.58 -0.56,-0.37 -0.50,-0.43 -0.45,-0.49 -0.38,-0.54 -0.32,-0.59 -0.24,-0.62 -0.17,-0.65 -0.09,-0.66 -0.01,-0.67 0.06,-0.66 0.15,-0.65 0.22,-0.62 0.30,-0.60 0.37,-0.55 0.43,-0.51 0.49,-0.45 0.54,-0.39 0.58,-0.32 0.62,-0.24 0.64,-0.17 0.66,-0.09 0.66,-0.01 0.67,0.07 0.65,0.14 0.63,0.22 0.59,0.30 0.56,0.37 0.56,0.37 L 0.56,0.37 Z"></path></g><g transform="translate(310.5654922486172 61.6040006303208) rotate(0 5.727276006522544 6.9545545322004045)" stroke="none"><path fill="#f08c00" d="M 0.01,-0.70 Q 0.01,-0.70 1.08,-0.82 2.16,-0.94 2.98,-1.07 3.81,-1.19 4.62,-1.33 5.44,-1.47 6.15,-1.59 6.86,-1.70 7.64,-1.80 8.43,-1.89 9.26,-1.53 10.09,-1.16 10.09,-0.30 10.10,0.55 9.74,1.65 9.38,2.75 8.93,4.03 8.49,5.31 8.03,6.57 7.58,7.82 7.16,8.84 6.75,9.85 6.43,10.54 6.11,11.23 5.71,12.04 5.32,12.85 4.97,13.33 4.62,13.81 4.03,14.19 3.44,14.57 2.71,14.88 1.97,15.19 1.53,15.42 1.08,15.65 0.95,15.67 0.81,15.70 0.68,15.68 0.54,15.67 0.42,15.63 0.29,15.58 0.17,15.51 0.06,15.44 -0.02,15.34 -0.11,15.24 -0.18,15.12 -0.25,15.00 -0.28,14.87 -0.32,14.74 -0.32,14.61 -0.33,14.48 -0.30,14.34 -0.27,14.21 -0.21,14.09 -0.15,13.97 -0.07,13.86 0.01,13.76 0.12,13.68 0.23,13.60 0.35,13.55 0.48,13.50 1.34,13.56 2.20,13.63 2.75,13.63 3.31,13.63 3.90,13.62 4.50,13.61 5.10,13.59 5.71,13.56 6.31,13.47 6.91,13.38 7.55,13.27 8.19,13.16 9.80,13.21 11.41,13.25 11.51,13.26 11.62,13.28 11.71,13.33 11.81,13.37 11.88,13.45 11.96,13.52 12.00,13.62 12.05,13.71 12.07,13.82 12.08,13.92 12.06,14.03 12.04,14.13 11.99,14.23 11.93,14.32 11.85,14.39 11.77,14.46 11.68,14.50 11.58,14.54 11.47,14.55 11.37,14.56 11.26,14.53 11.16,14.51 11.07,14.45 10.98,14.39 10.92,14.31 10.85,14.23 10.81,14.13 10.78,14.03 10.78,13.92 10.77,13.81 10.80,13.71 10.84,13.61 10.90,13.53 10.96,13.44 11.05,13.38 11.13,13.32 11.23,13.28 11.34,13.25 11.44,13.26 11.55,13.26 11.65,13.30 11.75,13.33 11.83,13.40 11.91,13.47 11.97,13.56 12.03,13.65 12.05,13.75 12.08,13.85 12.07,13.96 12.06,14.07 12.02,14.16 11.98,14.26 11.90,14.34 11.83,14.42 11.74,14.47 11.65,14.52 11.54,14.54 11.44,14.56 11.44,14.56 11.44,14.56 10.01,15.05 8.57,15.54 7.90,15.64 7.23,15.75 6.50,15.84 5.76,15.93 5.12,15.93 4.48,15.93 3.87,15.92 3.27,15.90 2.17,15.78 1.08,15.65 0.95,15.67 0.81,15.70 0.68,15.68 0.54,15.67 0.42,15.63 0.29,15.58 0.17,15.51 0.06,15.44 -0.02,15.34 -0.11,15.24 -0.18,15.12 -0.25,15.01 -0.28,14.88 -0.32,14.75 -0.32,14.61 -0.33,14.48 -0.30,14.34 -0.27,14.21 -0.21,14.09 -0.15,13.97 -0.07,13.86 0.01,13.76 0.12,13.68 0.23,13.60 0.35,13.55 0.48,13.50 0.30,13.64 0.13,13.78 0.64,13.45 1.15,13.12 1.71,12.85 2.28,12.57 2.65,12.17 3.02,11.76 3.41,10.96 3.80,10.16 4.10,9.51 4.40,8.86 4.81,7.91 5.22,6.95 5.69,5.72 6.15,4.49 6.60,3.23 7.06,1.96 7.85,1.09 8.63,0.22 7.90,0.30 7.17,0.38 6.47,0.48 5.76,0.57 4.91,0.70 4.06,0.82 3.10,0.92 2.13,1.01 1.06,0.85 -0.01,0.70 -0.09,0.69 -0.17,0.67 -0.25,0.64 -0.33,0.61 -0.40,0.56 -0.47,0.51 -0.52,0.45 -0.58,0.38 -0.62,0.31 -0.65,0.23 -0.67,0.15 -0.69,0.07 -0.69,-0.01 -0.69,-0.09 -0.67,-0.17 -0.65,-0.25 -0.61,-0.33 -0.57,-0.40 -0.51,-0.46 -0.45,-0.53 -0.38,-0.57 -0.31,-0.62 -0.23,-0.65 -0.15,-0.68 -0.07,-0.69 0.01,-0.70 0.01,-0.70 L 0.01,-0.70 Z"></path></g><g transform="translate(319.2733145567722 55.233862745111765) rotate(0 1.8409088710264712 0.8474023546392573)" stroke="none"><path fill="#f08c00" d="M 0.47,-0.68 Q 0.47,-0.68 2.10,0.17 3.72,1.03 3.82,1.07 3.92,1.10 4.00,1.17 4.09,1.24 4.14,1.33 4.20,1.42 4.22,1.52 4.25,1.62 4.24,1.73 4.23,1.84 4.19,1.93 4.15,2.03 4.08,2.11 4.00,2.19 3.91,2.24 3.82,2.29 3.71,2.31 3.61,2.33 3.50,2.32 3.40,2.30 3.30,2.25 3.21,2.21 3.13,2.13 3.06,2.05 3.01,1.96 2.97,1.86 2.95,1.76 2.94,1.65 2.96,1.55 2.98,1.44 3.03,1.35 3.09,1.26 3.17,1.19 3.24,1.12 3.34,1.08 3.44,1.04 3.55,1.03 3.65,1.02 3.75,1.05 3.86,1.07 3.95,1.13 4.04,1.19 4.10,1.27 4.17,1.35 4.20,1.45 4.24,1.55 4.24,1.66 4.25,1.77 4.21,1.87 4.18,1.97 4.12,2.05 4.06,2.14 3.97,2.20 3.88,2.26 3.78,2.29 3.68,2.32 3.57,2.32 3.47,2.32 3.47,2.32 3.47,2.32 1.49,1.50 -0.47,0.68 -0.55,0.61 -0.62,0.54 -0.68,0.46 -0.73,0.38 -0.77,0.28 -0.80,0.19 -0.81,0.09 -0.83,-0.00 -0.81,-0.10 -0.80,-0.20 -0.77,-0.29 -0.73,-0.38 -0.67,-0.47 -0.61,-0.55 -0.54,-0.62 -0.46,-0.68 -0.38,-0.73 -0.29,-0.77 -0.19,-0.80 -0.09,-0.82 0.00,-0.82 0.10,-0.82 0.20,-0.80 0.29,-0.77 0.38,-0.72 0.47,-0.68 0.47,-0.68 L 0.47,-0.68 Z"></path></g><g transform="translate(322.0785073283382 54.707873494834985) rotate(0 -1.0227291322347867 1.5194868491735178)" stroke="none"><path fill="#f08c00" d="M 0.60,0.30 Q 0.60,0.30 -0.42,1.84 -1.46,3.37 -1.54,3.44 -1.63,3.50 -1.73,3.53 -1.83,3.57 -1.93,3.57 -2.04,3.57 -2.14,3.53 -2.24,3.50 -2.33,3.43 -2.41,3.37 -2.47,3.28 -2.53,3.19 -2.56,3.09 -2.58,2.99 -2.58,2.88 -2.57,2.77 -2.53,2.68 -2.49,2.58 -2.42,2.50 -2.35,2.42 -2.26,2.36 -2.17,2.31 -2.07,2.29 -1.96,2.26 -1.86,2.28 -1.75,2.29 -1.66,2.33 -1.56,2.38 -1.48,2.45 -1.41,2.53 -1.36,2.62 -1.31,2.71 -1.29,2.82 -1.27,2.92 -1.29,3.03 -1.31,3.13 -1.36,3.23 -1.41,3.32 -1.49,3.39 -1.57,3.47 -1.66,3.51 -1.76,3.55 -1.86,3.56 -1.97,3.57 -2.07,3.55 -2.18,3.53 -2.27,3.47 -2.36,3.42 -2.43,3.34 -2.50,3.25 -2.53,3.16 -2.57,3.06 -2.58,2.95 -2.58,2.84 -2.55,2.74 -2.52,2.64 -2.46,2.55 -2.40,2.46 -2.40,2.46 -2.40,2.47 -1.50,1.08 -0.60,-0.30 -0.55,-0.37 -0.51,-0.43 -0.45,-0.49 -0.39,-0.54 -0.32,-0.58 -0.25,-0.62 -0.17,-0.64 -0.09,-0.66 -0.01,-0.67 0.06,-0.67 0.14,-0.65 0.22,-0.63 0.30,-0.59 0.37,-0.56 0.43,-0.51 0.49,-0.45 0.54,-0.39 0.59,-0.32 0.62,-0.25 0.65,-0.17 0.66,-0.09 0.67,-0.01 0.66,0.06 0.65,0.14 0.63,0.22 0.60,0.30 0.60,0.30 L 0.60,0.30 Z"></path></g><g transform="translate(317.40317415240776 56.98711268608554) rotate(0 2.7759790732087026 -0.6720844945341469)" stroke="none"><path fill="#f08c00" d="M -0.16,-0.65 Q -0.16,-0.65 0.88,-0.96 1.92,-1.27 3.12,-1.62 4.32,-1.97 4.40,-1.98 4.48,-1.99 4.56,-1.98 4.64,-1.97 4.71,-1.95 4.78,-1.92 4.85,-1.87 4.91,-1.83 4.97,-1.77 5.02,-1.71 5.06,-1.64 5.09,-1.57 5.11,-1.50 5.13,-1.42 5.13,-1.34 5.13,-1.26 5.12,-1.18 5.10,-1.11 5.06,-1.04 5.03,-0.97 4.97,-0.91 4.92,-0.85 4.86,-0.80 4.79,-0.76 4.72,-0.73 4.64,-0.70 4.45,-0.71 4.26,-0.72 4.17,-0.77 4.07,-0.82 4.00,-0.90 3.93,-0.98 3.89,-1.08 3.85,-1.18 3.84,-1.28 3.83,-1.39 3.85,-1.49 3.88,-1.59 3.94,-1.68 3.99,-1.77 4.08,-1.84 4.16,-1.91 4.26,-1.94 4.36,-1.98 4.46,-1.98 4.57,-1.99 4.67,-1.96 4.77,-1.92 4.86,-1.86 4.95,-1.80 5.01,-1.71 5.07,-1.63 5.10,-1.53 5.13,-1.43 5.13,-1.32 5.13,-1.21 5.09,-1.11 5.05,-1.01 4.99,-0.93 4.92,-0.85 4.83,-0.79 4.74,-0.73 4.64,-0.71 4.54,-0.68 4.43,-0.69 4.33,-0.70 4.23,-0.74 4.13,-0.78 4.05,-0.85 3.97,-0.92 3.92,-1.01 3.87,-1.11 3.85,-1.21 3.83,-1.32 3.84,-1.42 3.85,-1.53 3.90,-1.62 3.95,-1.72 4.02,-1.79 4.10,-1.87 4.19,-1.92 4.29,-1.96 4.39,-1.98 4.50,-1.99 4.41,-1.98 4.32,-1.97 4.40,-1.98 4.48,-1.99 4.56,-1.98 4.64,-1.97 4.71,-1.95 4.78,-1.92 4.85,-1.87 4.91,-1.83 4.97,-1.77 5.02,-1.71 5.06,-1.64 5.09,-1.57 5.11,-1.50 5.13,-1.42 5.13,-1.34 5.13,-1.26 5.12,-1.18 5.10,-1.11 5.06,-1.04 5.03,-0.97 4.97,-0.91 4.92,-0.85 4.86,-0.80 4.79,-0.76 4.72,-0.73 4.64,-0.70 3.47,-0.25 2.30,0.20 1.23,0.42 0.16,0.65 0.08,0.66 0.00,0.67 -0.07,0.66 -0.15,0.65 -0.23,0.62 -0.30,0.59 -0.37,0.55 -0.44,0.50 -0.49,0.44 -0.55,0.38 -0.58,0.31 -0.62,0.24 -0.64,0.16 -0.66,0.08 -0.66,0.00 -0.66,-0.07 -0.64,-0.15 -0.63,-0.23 -0.59,-0.30 -0.55,-0.37 -0.50,-0.43 -0.44,-0.50 -0.38,-0.54 -0.31,-0.59 -0.24,-0.62 -0.16,-0.65 -0.16,-0.65 L -0.16,-0.65 Z"></path></g><g transform="translate(319.0395336299912 52.72086046206073) rotate(0 0.964283900539499 2.5714385972559057)" stroke="none"><path fill="#f08c00" d="M 0.60,-0.29 Q 0.60,-0.29 0.93,0.35 1.25,1.01 1.89,2.93 2.52,4.85 2.54,4.96 2.55,5.06 2.53,5.17 2.51,5.27 2.46,5.36 2.41,5.46 2.33,5.53 2.25,5.60 2.15,5.64 2.06,5.68 1.95,5.69 1.84,5.70 1.74,5.68 1.64,5.65 1.55,5.59 1.46,5.54 1.39,5.45 1.32,5.37 1.29,5.27 1.25,5.17 1.25,5.07 1.24,4.96 1.27,4.86 1.31,4.76 1.37,4.67 1.43,4.58 1.52,4.52 1.60,4.46 1.70,4.43 1.80,4.40 1.91,4.40 2.02,4.40 2.12,4.44 2.22,4.47 2.30,4.54 2.38,4.61 2.44,4.70 2.50,4.78 2.52,4.89 2.55,4.99 2.54,5.10 2.53,5.20 2.49,5.30 2.45,5.40 2.38,5.48 2.31,5.56 2.22,5.61 2.12,5.66 2.02,5.68 1.92,5.70 1.81,5.69 1.70,5.67 1.61,5.63 1.51,5.58 1.44,5.51 1.36,5.43 1.32,5.34 1.27,5.24 1.27,5.24 1.27,5.24 0.64,3.42 0.02,1.61 -0.29,0.95 -0.60,0.29 -0.63,0.21 -0.65,0.14 -0.66,0.06 -0.67,-0.02 -0.66,-0.10 -0.64,-0.18 -0.61,-0.25 -0.58,-0.33 -0.53,-0.39 -0.49,-0.46 -0.42,-0.51 -0.36,-0.56 -0.29,-0.60 -0.21,-0.63 -0.14,-0.65 -0.06,-0.67 0.02,-0.66 0.10,-0.66 0.17,-0.64 0.25,-0.62 0.32,-0.58 0.39,-0.54 0.45,-0.48 0.51,-0.43 0.56,-0.36 0.60,-0.29 0.60,-0.29 L 0.60,-0.29 Z"></path></g><g transform="translate(321.5525180780615 69.55207059639861) rotate(0 1.3733826874257034 2.0746719628268693)" stroke="none"><path fill="#f08c00" d="M -0.34,-0.58 Q -0.34,-0.58 0.12,-0.90 0.59,-1.22 1.13,-1.55 1.67,-1.88 2.30,-1.88 2.93,-1.88 3.15,-1.36 3.38,-0.83 3.42,0.04 3.47,0.92 3.43,3.24 3.40,5.57 3.38,5.67 3.36,5.78 3.31,5.87 3.26,5.97 3.19,6.04 3.11,6.11 3.01,6.16 2.92,6.20 2.81,6.21 2.71,6.22 2.60,6.20 2.50,6.18 2.41,6.12 2.32,6.07 2.25,5.99 2.18,5.91 2.14,5.81 2.10,5.71 2.09,5.60 2.09,5.50 2.12,5.39 2.15,5.29 2.21,5.20 2.27,5.12 2.35,5.05 2.43,4.99 2.53,4.95 2.64,4.92 2.74,4.92 2.85,4.92 2.95,4.95 3.05,4.99 3.13,5.05 3.22,5.12 3.28,5.20 3.34,5.29 3.37,5.39 3.39,5.50 3.39,5.60 3.38,5.71 3.34,5.81 3.30,5.91 3.24,5.99 3.17,6.07 3.08,6.12 2.98,6.18 2.88,6.20 2.78,6.22 2.67,6.21 2.57,6.20 2.47,6.16 2.37,6.11 2.30,6.04 2.22,5.97 2.17,5.87 2.12,5.78 2.10,5.67 2.09,5.57 2.09,5.57 2.09,5.57 2.01,3.28 1.94,0.99 2.21,0.18 2.49,-0.62 1.92,-0.27 1.35,0.08 0.85,0.33 0.34,0.58 0.26,0.61 0.19,0.65 0.11,0.66 0.03,0.67 -0.04,0.67 -0.13,0.66 -0.20,0.64 -0.28,0.61 -0.35,0.57 -0.42,0.52 -0.48,0.47 -0.54,0.41 -0.58,0.34 -0.62,0.27 -0.64,0.19 -0.67,0.11 -0.67,0.03 -0.67,-0.05 -0.66,-0.13 -0.64,-0.21 -0.61,-0.28 -0.57,-0.35 -0.52,-0.42 -0.47,-0.48 -0.40,-0.53 -0.34,-0.58 -0.34,-0.58 L -0.34,-0.58 Z"></path></g><g transform="translate(322.83824183543464 76.27284420181809) rotate(0 2.308452889607935 -0.08765893005261205)" stroke="none"><path fill="#f08c00" d="M 0,-0.67 Q 0,-0.67 0.68,-0.69 1.37,-0.71 2.91,-0.76 4.45,-0.81 4.56,-0.80 4.66,-0.79 4.76,-0.75 4.86,-0.71 4.94,-0.64 5.01,-0.57 5.07,-0.47 5.12,-0.38 5.14,-0.28 5.16,-0.17 5.14,-0.07 5.13,0.03 5.08,0.12 5.03,0.22 4.96,0.29 4.88,0.37 4.79,0.41 4.69,0.46 4.59,0.48 4.48,0.49 4.38,0.47 4.27,0.45 4.18,0.40 4.09,0.34 4.02,0.27 3.95,0.19 3.91,0.09 3.86,-0.00 3.86,-0.11 3.85,-0.21 3.87,-0.31 3.90,-0.42 3.96,-0.51 4.01,-0.60 4.10,-0.66 4.18,-0.73 4.28,-0.77 4.38,-0.80 4.49,-0.80 4.59,-0.81 4.69,-0.78 4.79,-0.74 4.88,-0.68 4.97,-0.62 5.03,-0.53 5.09,-0.45 5.12,-0.35 5.15,-0.24 5.15,-0.14 5.15,-0.03 5.11,0.06 5.07,0.16 5.01,0.24 4.94,0.32 4.85,0.38 4.76,0.44 4.66,0.46 4.55,0.49 4.55,0.49 4.55,0.49 2.96,0.60 1.37,0.71 0.68,0.69 0,0.67 -0.08,0.66 -0.16,0.66 -0.23,0.63 -0.31,0.60 -0.38,0.55 -0.45,0.50 -0.50,0.44 -0.55,0.38 -0.59,0.31 -0.63,0.24 -0.65,0.16 -0.67,0.08 -0.67,-0.00 -0.67,-0.08 -0.65,-0.16 -0.63,-0.24 -0.59,-0.31 -0.55,-0.38 -0.50,-0.44 -0.45,-0.50 -0.38,-0.55 -0.31,-0.60 -0.23,-0.63 -0.16,-0.66 -0.08,-0.66 0.00,-0.67 0.00,-0.67 L 0,-0.67 Z"></path></g><g transform="translate(328.21488212174694 65.63647192756457) rotate(0 0.555185113653323 5.610394460622501)" stroke="none"><path fill="#f08c00" d="M 0.67,0 Q 0.67,0 0.67,1.07 0.68,2.15 0.69,3.34 0.69,4.54 0.71,5.72 0.73,6.90 0.75,7.92 0.77,8.94 1.20,10.09 1.64,11.23 1.63,11.31 1.62,11.39 1.59,11.46 1.56,11.53 1.52,11.60 1.47,11.66 1.42,11.72 1.36,11.77 1.29,11.81 1.22,11.84 1.14,11.86 1.06,11.88 0.98,11.88 0.90,11.88 0.83,11.86 0.75,11.84 0.68,11.81 0.61,11.77 0.55,11.72 0.49,11.66 0.45,11.60 0.40,11.53 0.37,11.46 0.35,11.39 0.34,11.31 0.33,11.23 0.73,10.91 1.13,10.59 1.23,10.63 1.32,10.67 1.40,10.74 1.48,10.81 1.54,10.90 1.59,10.99 1.62,11.09 1.64,11.20 1.63,11.30 1.61,11.41 1.57,11.50 1.52,11.60 1.45,11.68 1.38,11.75 1.28,11.80 1.19,11.85 1.09,11.87 0.98,11.89 0.88,11.87 0.77,11.85 0.68,11.80 0.58,11.75 0.51,11.67 0.44,11.59 0.39,11.50 0.35,11.40 0.34,11.30 0.33,11.19 0.35,11.09 0.37,10.98 0.43,10.89 0.48,10.80 0.57,10.73 0.65,10.66 0.75,10.63 0.84,10.59 0.95,10.58 1.06,10.58 1.16,10.60 1.26,10.63 1.35,10.69 1.44,10.75 1.50,10.84 1.56,10.92 1.60,11.02 1.63,11.13 1.63,11.23 1.63,11.34 1.60,11.44 1.56,11.54 1.50,11.62 1.43,11.71 1.34,11.77 1.26,11.83 1.15,11.85 1.05,11.88 1.35,11.56 1.64,11.23 1.63,11.31 1.62,11.39 1.59,11.46 1.56,11.53 1.52,11.60 1.47,11.66 1.42,11.72 1.36,11.77 1.29,11.81 1.22,11.84 1.14,11.86 1.06,11.88 0.98,11.88 0.90,11.88 0.83,11.86 0.75,11.84 0.68,11.81 0.61,11.77 0.55,11.72 0.49,11.66 0.45,11.60 0.40,11.53 0.37,11.46 0.35,11.39 0.34,11.31 0.33,11.23 -0.22,10.09 -0.77,8.94 -0.75,7.92 -0.73,6.90 -0.71,5.72 -0.69,4.54 -0.69,3.34 -0.68,2.15 -0.67,1.07 -0.67,0 -0.66,-0.08 -0.65,-0.16 -0.62,-0.23 -0.59,-0.31 -0.54,-0.37 -0.50,-0.44 -0.44,-0.49 -0.38,-0.55 -0.30,-0.58 -0.23,-0.62 -0.15,-0.64 -0.08,-0.66 0.00,-0.66 0.08,-0.66 0.15,-0.64 0.23,-0.62 0.30,-0.58 0.38,-0.55 0.44,-0.49 0.50,-0.44 0.54,-0.37 0.59,-0.31 0.62,-0.23 0.65,-0.16 0.66,-0.08 0.67,0.00 0.67,0.00 L 0.67,0 Z"></path></g><g transform="translate(328.7408357020623 65.2858183723738) rotate(0 1.4318279191209626 3.8863760529864066)" stroke="none"><path fill="#f08c00" d="M 0.14,-0.65 Q 0.14,-0.65 0.88,-0.48 1.62,-0.31 2.22,-0.09 2.82,0.12 3.28,0.46 3.74,0.81 4.02,1.26 4.31,1.71 4.44,2.31 4.56,2.90 4.48,3.61 4.40,4.32 3.97,5.05 3.54,5.78 2.94,6.44 2.34,7.10 0.93,7.27 -0.47,7.44 -0.53,7.49 -0.59,7.54 -0.66,7.57 -0.73,7.60 -0.81,7.62 -0.89,7.64 -0.96,7.63 -1.04,7.63 -1.12,7.61 -1.20,7.59 -1.26,7.55 -1.33,7.51 -1.39,7.45 -1.45,7.40 -1.49,7.33 -1.53,7.26 -1.56,7.19 -1.58,7.11 -1.59,7.04 -1.60,6.96 -1.58,6.88 -1.57,6.80 -1.54,6.73 -1.51,6.65 -1.46,6.59 -1.41,6.53 -1.48,6.62 -1.54,6.71 -1.48,6.62 -1.42,6.53 -1.33,6.47 -1.25,6.40 -1.15,6.37 -1.05,6.33 -0.94,6.33 -0.84,6.33 -0.73,6.37 -0.63,6.40 -0.55,6.46 -0.46,6.53 -0.40,6.62 -0.34,6.70 -0.32,6.81 -0.29,6.91 -0.29,7.01 -0.30,7.12 -0.34,7.22 -0.38,7.32 -0.44,7.40 -0.51,7.48 -0.60,7.54 -0.69,7.59 -0.80,7.61 -0.90,7.64 -1.01,7.63 -1.11,7.62 -1.21,7.57 -1.31,7.53 -1.38,7.45 -1.46,7.38 -1.51,7.29 -1.56,7.19 -1.58,7.09 -1.60,6.98 -1.58,6.88 -1.56,6.77 -1.51,6.68 -1.46,6.59 -1.39,6.51 -1.31,6.44 -1.21,6.39 -1.12,6.35 -1.01,6.34 -0.91,6.33 -0.80,6.35 -0.70,6.37 -0.61,6.43 -0.52,6.48 -0.45,6.56 -0.38,6.64 -0.34,6.74 -0.30,6.84 -0.29,6.94 -0.29,7.05 -0.38,7.24 -0.47,7.44 -0.53,7.49 -0.59,7.54 -0.66,7.57 -0.73,7.60 -0.81,7.62 -0.89,7.64 -0.96,7.63 -1.04,7.63 -1.12,7.61 -1.20,7.59 -1.26,7.55 -1.33,7.51 -1.39,7.45 -1.45,7.40 -1.49,7.33 -1.53,7.26 -1.56,7.19 -1.58,7.11 -1.59,7.04 -1.60,6.96 -1.58,6.88 -1.57,6.80 -1.54,6.73 -1.51,6.65 -1.46,6.59 -1.41,6.53 -0.04,6.31 1.32,6.10 1.85,5.57 2.39,5.04 2.73,4.56 3.08,4.09 3.11,3.22 3.13,2.36 2.73,1.86 2.33,1.37 1.83,1.18 1.32,0.99 0.58,0.82 -0.14,0.65 -0.22,0.62 -0.30,0.60 -0.36,0.55 -0.43,0.51 -0.49,0.45 -0.54,0.39 -0.58,0.32 -0.62,0.25 -0.64,0.17 -0.66,0.09 -0.66,0.01 -0.67,-0.06 -0.65,-0.14 -0.63,-0.22 -0.59,-0.30 -0.56,-0.37 -0.50,-0.43 -0.45,-0.49 -0.38,-0.54 -0.32,-0.59 -0.24,-0.62 -0.17,-0.65 -0.09,-0.66 -0.01,-0.67 0.06,-0.66 0.14,-0.65 0.14,-0.65 L 0.14,-0.65 Z"></path></g><g transform="translate(334.81878309875646 67.79882065542483) rotate(0 0.0876589300525552 4.207798074839275)" stroke="none"><path fill="#f08c00" d="M 0.67,0 Q 0.67,0 0.67,1.64 0.68,3.29 0.64,5.43 0.61,7.57 0.67,7.66 0.73,7.74 0.76,7.85 0.79,7.95 0.79,8.05 0.78,8.16 0.74,8.26 0.71,8.36 0.64,8.44 0.57,8.52 0.48,8.58 0.39,8.63 0.29,8.66 0.18,8.68 0.08,8.67 -0.02,8.66 -0.12,8.62 -0.21,8.58 -0.29,8.50 -0.37,8.43 -0.42,8.34 -0.47,8.24 -0.49,8.14 -0.51,8.04 -0.49,7.93 -0.48,7.83 -0.43,7.73 -0.38,7.64 -0.30,7.56 -0.23,7.49 -0.13,7.44 -0.03,7.40 0.06,7.38 0.17,7.37 0.27,7.39 0.37,7.41 0.47,7.47 0.56,7.52 0.63,7.60 0.70,7.68 0.74,7.78 0.78,7.88 0.79,7.98 0.79,8.09 0.77,8.19 0.74,8.30 0.68,8.38 0.62,8.47 0.54,8.54 0.45,8.60 0.35,8.64 0.25,8.67 0.15,8.68 0.04,8.68 -0.05,8.64 -0.15,8.61 -0.24,8.55 -0.32,8.48 -0.32,8.48 -0.32,8.49 -0.50,5.89 -0.68,3.29 -0.67,1.64 -0.67,0 -0.66,-0.08 -0.65,-0.16 -0.62,-0.23 -0.59,-0.31 -0.55,-0.38 -0.50,-0.44 -0.44,-0.50 -0.38,-0.55 -0.31,-0.59 -0.23,-0.63 -0.16,-0.65 -0.08,-0.67 0.00,-0.67 0.08,-0.67 0.16,-0.65 0.23,-0.63 0.31,-0.59 0.38,-0.55 0.44,-0.50 0.50,-0.44 0.55,-0.38 0.59,-0.31 0.62,-0.23 0.65,-0.16 0.66,-0.08 0.67,0.00 0.67,0.00 L 0.67,0 Z"></path></g><g transform="translate(336.39671517962523 69.14297180951257) rotate(0 -0.6428618786865741 2.571429679765629)" stroke="none"><path fill="#f08c00" d="M 0.58,0.32 Q 0.58,0.32 0.26,0.89 -0.04,1.47 -0.44,2.09 -0.84,2.72 0.00,3.68 0.85,4.65 0.90,4.74 0.96,4.83 0.98,4.93 1.01,5.03 1.00,5.14 0.99,5.24 0.95,5.34 0.91,5.44 0.83,5.52 0.76,5.60 0.67,5.65 0.58,5.70 0.47,5.72 0.37,5.74 0.26,5.72 0.16,5.71 0.06,5.66 -0.02,5.61 -0.10,5.54 -0.17,5.46 -0.22,5.37 -0.26,5.27 -0.28,5.17 -0.29,5.06 -0.27,4.96 -0.25,4.85 -0.20,4.76 -0.15,4.67 -0.07,4.60 0.00,4.53 0.10,4.49 0.20,4.44 0.31,4.44 0.41,4.43 0.51,4.45 0.62,4.48 0.71,4.54 0.80,4.60 0.86,4.68 0.93,4.76 0.96,4.86 1.00,4.96 1.00,5.07 1.00,5.17 0.97,5.28 0.94,5.38 0.88,5.46 0.82,5.55 0.73,5.61 0.64,5.67 0.54,5.70 0.44,5.73 0.33,5.73 0.23,5.73 0.13,5.69 0.03,5.65 -0.04,5.58 -0.13,5.52 -0.13,5.52 -0.13,5.52 -1.21,4.27 -2.30,3.03 -2.14,2.50 -1.97,1.98 -1.60,1.39 -1.22,0.81 -0.90,0.24 -0.58,-0.32 -0.53,-0.39 -0.49,-0.45 -0.42,-0.50 -0.36,-0.56 -0.29,-0.59 -0.22,-0.63 -0.14,-0.65 -0.06,-0.66 0.01,-0.66 0.09,-0.66 0.17,-0.64 0.25,-0.62 0.32,-0.58 0.39,-0.54 0.45,-0.48 0.51,-0.43 0.55,-0.36 0.60,-0.29 0.62,-0.21 0.65,-0.14 0.66,-0.06 0.67,0.01 0.65,0.09 0.64,0.17 0.61,0.25 0.58,0.32 0.58,0.32 L 0.58,0.32 Z"></path></g><g transform="translate(337.9161841938181 72.24037290457409) rotate(0 0.0876589300525552 2.1039124136551663)" stroke="none"><path fill="#f08c00" d="M 0.66,-0.03 Q 0.66,-0.03 0.74,1.86 0.81,3.76 0.80,3.86 0.79,3.97 0.74,4.06 0.69,4.16 0.62,4.23 0.54,4.31 0.45,4.36 0.35,4.40 0.25,4.42 0.14,4.43 0.04,4.41 -0.06,4.39 -0.15,4.34 -0.24,4.29 -0.31,4.21 -0.38,4.13 -0.43,4.04 -0.47,3.94 -0.48,3.83 -0.49,3.73 -0.46,3.62 -0.44,3.52 -0.38,3.43 -0.32,3.34 -0.24,3.27 -0.16,3.21 -0.06,3.17 0.03,3.13 0.14,3.13 0.24,3.13 0.34,3.16 0.45,3.19 0.53,3.25 0.62,3.31 0.68,3.40 0.74,3.48 0.78,3.58 0.81,3.69 0.80,3.79 0.80,3.90 0.77,4.00 0.73,4.10 0.66,4.18 0.60,4.26 0.51,4.32 0.42,4.38 0.32,4.40 0.21,4.43 0.11,4.42 0.00,4.41 -0.09,4.37 -0.18,4.33 -0.26,4.26 -0.34,4.19 -0.40,4.10 -0.45,4.01 -0.47,3.90 -0.49,3.80 -0.49,3.80 -0.49,3.80 -0.57,1.91 -0.66,0.03 -0.65,-0.04 -0.65,-0.12 -0.62,-0.20 -0.60,-0.27 -0.56,-0.34 -0.52,-0.41 -0.46,-0.47 -0.40,-0.52 -0.33,-0.56 -0.26,-0.60 -0.19,-0.63 -0.11,-0.65 -0.03,-0.66 0.04,-0.66 0.12,-0.64 0.20,-0.63 0.27,-0.60 0.34,-0.56 0.41,-0.51 0.47,-0.46 0.52,-0.40 0.57,-0.34 0.60,-0.26 0.63,-0.19 0.65,-0.11 0.66,-0.03 0.66,-0.03 L 0.66,-0.03 Z"></path></g><g stroke-linecap="round"><g transform="translate(284.149852670618 78.20141200289709) rotate(0 89.62027854813223 -0.3506357202103345)"><path d="M0 0 C29.87 -0.12, 149.37 -0.58, 179.24 -0.7 M0 0 C29.87 -0.12, 149.37 -0.58, 179.24 -0.7" stroke="#1971c2" stroke-width="0.5" fill="none"></path></g></g><mask></mask></svg>

## 实现及结果分?
探讨了定价的价格区间选择?
* 下限：确保利润的前提下，市场朢低价格；
* 上限?\min\{(1-朢低discount)MSRP,\quad \max\{下限+15,下限*1.15\}\}$

进探讨如下两个问题：

* 实施模型推荐的价格上涨会导致锢售量的减少吗?* 推荐的价格上涨对收入有何影响?**实验设计**：依据价格，划分类别；划?处理??对照组；
 首先保证 处理?对照?内的款式相似：中位数预测锢量率、中位数价格、中位数折扣、中位数竞品价格?  **Q**：中位数是么得到的？基于每个时间？序数？
   **A**?Sell-Through* = 某个时间段内售出商品数量 / 该商品的库存数量
 --&gt;对每个指标进行`Mood's`中位数检?
### 估计价格对销量的影响

方法：`Wilcoxon秩和棢验`--&gt;测试指标：销量库存比\(\frac{d_{i}}{C_{i}}\)(序数)
 \(F_{s}\)：给定传统价格（对照）的款式?\frac{d_{i}}{C_{i}}\(分布? \)G_{s}\(：给价格增加（处理）的款式的\)\frac{d_{i}}{C_{i}}$分布? **H0**是提高价格对*锢售量比率*分布没有影响，即**H0：Gs = Fs**
 **HA**提高价格会降?锢售量比率*，即**HA：Gs &lt; Fs**

### 估计价格对收入的影响

方法：`Wilcoxon秩和棢验`--&gt;测试指标：可用收入的百分?\frac{p^{*}d_{i}}{p_{L}C_{i}}$
*注：\(p_{L}\)指的是Legacy Price”对照组的价格基?

* 确定价格上涨是否会导?可获得收入百分比的增加？
 假设 4：可获得的收入百分比的分布函数在，除地点参数可能存在差异外，治疗组和对照组的可用收入百分比分布函数完全相同我们使?双样?Kolmogorov-Smirnov 棢验法*来检验假?4 是否成立? --&gt;对于 A、C、D 类，假设 4 ?\(\alpha = 0.1\)的显著水平上成立?\alpha = 0.05\(时B类成立，\)\alpha = 0.01$?E 类成立；
  * **Result**：提高最低价款式（A类款式）的价格确实会对销售量产生负面影响。提高较贵款式的价格则不会对于大多数价位，测试结果表明，根据模型建议提高价格不会降低锢售量?
* 并量化涨价对收入百分比的影响? \(F_{r}\)：对照组款式可用收入百分比的分布? \(G_{r}\)：处理组款式可用收入百分比的分布? **H0**是提高价格，扢赚取的可用收入百分比会增加一个常数，?H_{0}：G_{r}(x) = F_{r}(x- \Delta) \quad$
 \(H_{A}：G_{r}(x) \neq F_{r}(x- \Delta) \quad\)
 进行Wilcoxon 秩和棢验，以估计价格上涨的效果。检验来估计处理组效果的 90% ?95% 置信区间?  * **Result**：对?A 类，我们预计当价格按照模型的建议提高时，收入可能会减少，故单位价格的增加并不能弥补销售量的减少?对于 B、C 、D类，我们预计提高价格会使收入增加?11-14%?E 类的收入增幅朢大，但区间要宽得多?总体而言，我们预计收入会增加 9.7%，相关的 90% 置信区间?[2.3%, 17.8%]?
</text></g></svg></text></g></text></g></text></g></text></g>]]></content><author><name>Cpuritan</name><email>contact@cpuritan.cn</email></author><category term="blog" /><summary type="html"><![CDATA[]]></summary></entry><entry><title type="html">Robust Vehicle Pre-Allocation with Uncertain Covariates</title><link href="https://cpuritan.cn/blog/2024/10/15/reading-robust-vehicle-pre-allocation-with-uncertain-covariates/" rel="alternate" type="text/html" title="Robust Vehicle Pre-Allocation with Uncertain Covariates" /><published>2024-10-15T14:30:00+08:00</published><updated>2024-10-15T14:30:00+08:00</updated><id>https://cpuritan.cn/blog/2024/10/15/reading-robust-vehicle-pre-allocation-with-uncertain-covariates</id><content type="html" xml:base="https://cpuritan.cn/blog/2024/10/15/reading-robust-vehicle-pre-allocation-with-uncertain-covariates/"><![CDATA[<!-- AUTO-GENERATED: blog-pipeline source=content/blog/reading-robust-vehicle-pre-allocation-with-uncertain-covariates.md -->

<h2 id="background">Background</h2>

<p>针对新加坡一家出租车运营商，如何分配闲置车辆以满足未来需求的不确定？在新加坡这样的城市环境中，出租车运营商需要有效地管理其车辆资源，以应对高峰时段的霢求波动和空间分布不均的问题出租车时空分布不均，在市中心等繁忙区域常出现供大于求，而城市周边区域则会面临供应不足的现象。与此同时，出租车需求还受到其他不确定因素的影响，例如天气等。论文旨在过分布鲁棒优化方法，结合协变量信息（如天气）来构建丢个能够处理需求不确定性的车辆预分配模型，从提高运营商的运营效率和盈利能力?</p>
<h2 id="characters">Characters</h2>

<p>(S_i) 供应节点 (i) 的闲置车辆数量，(i \in [N])
(\tilde{z} = (\tilde{z_{j}})) 霢求向量，(j \in [M])
(\tilde{v} \in \mathbb{R^I}) 与需求相关的不确定协变量向量
(r_j) 分配车辆到需求节?(j) 成功拉客时运营商的收?(w_{ij}) 分配车辆从供应节?(i) 到需求节?(j)  的成?(x_{ij}) 分配车辆从供应节?(i) 到需求节?(j)  的数?霢求和协变量联合分?(\tilde{z},\tilde{v}) \in \mathbb{R^M} \times \mathbb{R^I}$
总成?\sum\limits_{j\in[M]} \sum\limits_{i\in[N]} w_{ij} x_{ij}( ；收?\sum\limits_{j\in[M]} r_{j} (\tilde{z_{j}}  \wedge \sum\limits_{i\in[N]} x_{ij}))</p>

<h2 id="so-model">SO Model</h2>

<p>如果对于运营商言 ((\tilde{z},\tilde{v})) ?<em>联合分布信息是明确已?</em>的，?\mathbb{Q} \in \mathcal{P_{0}(\mathbb{R^{M}} \times \mathbb{R^{I}}})$ ，则车辆分配问题可以指定为以下随机运输问题：</p>

<p>[
\begin{align}
&amp;\mathop{max}\limits_{x_{ij} \geq 0} -\sum\limits_{j\in[M]} \sum\limits_{i\in[N]} w_{ij} x_{ij} + \mathbb{E}<em>\mathbb{Q}\left[\sum\limits</em>{j\in[M]} r_{j} \left(\tilde{z_{j}}  \wedge \sum\limits_{i\in[N]} x_{ij}\right)\right] \tag{1}<br />
&amp;s.t.\sum\limits_{j\in[M]}x_{ij}\leq S_{i} \quad,\forall i\in [N]
\end{align}
]</p>

<p>?\mathbb{P} = \Pi_{\tilde{z}} \mathbb{Q}( 表示?)\tilde{z}( ?)\mathbb{Q}( 的边缘分布，?(1))中的目标函数独立于不确定协变量向?\tilde{v}$，则可以等价如下?
[
\begin{align}
&amp;\mathop{max}\limits_{x_{ij} \geq 0} -\sum\limits_{j\in[M]} \sum\limits_{i\in[N]} w_{ij} x_{ij} + \mathbb{E}<em>\mathbb{P}\left[\sum\limits</em>{j\in[M]} r_{j} \left(\tilde{z_{j}}  \wedge \sum\limits_{i\in[N]} x_{ij}\right)\right] \tag{2}<br />
&amp;s.t.\sum\limits_{j\in[M]}x_{ij}\leq S_{i} \quad,\forall i\in [N]
\end{align}
]</p>

<p>但以上模型在边际分布(\mathbb{P})未知时将不再成立。随机运输问题是基于(\mathbb{Q})?\mathbb{P}(完全已知的假设来求解问题)(1)$。然而，在实践中，此类信息需要从历史数据中估计一种常用的方法是样本平均近似（SAA）?
若有(T)个需求和协变量的历史数据样本(\mathcal{T} = {(\hat{z}<em>{1},\hat{v}</em>{1}),(\hat{z}<em>{2},\hat{v}</em>{2}),…,(\hat{z}<em>{T},\hat{v}</em>{T})})，采?SAA 方法使用经验分布来近似分布Q，其中每个样?(\hat{z}<em>{t},\hat{v}</em>{t})(具有相等的概?\frac{1}{T})则问?(1)$?*近似**如下?
[
\begin{align}
&amp; \Pi^{\mathrm{SAA}}=\max <em>{x</em>{i j} \geq 0}-\sum_{j \in[M]} \sum_{i \in[N]} w_{i j} x_{i j}+\frac{1}{T} \sum_{t \in[T]} \sum_{j \in[M]} r_j\left(\hat{z}<em>{j t} \wedge \sum</em>{i \in[N]} x_{i j}\right) \tag{3}<br />
&amp; \text { s.t. } \quad \sum_{j \in[M]} x_{i j} \leq S_i, \forall i \in[N] \text {, }
\end{align}
]</p>

<p>其中(\hat{z}<em>{j t})表示霢求变?\hat{z}</em>{t}(的第)j$个分量，上述 SAA 近似公式可以重构成一个线性规划问题来解决，线性规划模型如下：</p>

<p>[
\begin{align}
\Pi^{\mathrm{SAA}} &amp; =\max <em>{x</em>{i j} \geq 0, y_{j t}}\left{-\sum_{j \in[M]} \sum_{i \in[N]} w_{i j} x_{i j}+\frac{1}{T} \sum_{j \in[M]} \sum_{t \in[T]} r_j y_{j t}\right}<br />
\text { s.t. } &amp; \sum_{j \in[M]} x_{i j} \leq S_i, \forall i \in[N] \tag{3*}<br />
&amp; y_{j t} \leq \hat{z}<em>{j t}, \forall j \in[M], t \in[T] <br />
&amp; y</em>{j t} \leq \sum_{i \in[N]} x_{i j}, \forall j \in[M], t \in[T]
\end{align}
]</p>

<p>因此，从操作者的角度来看，真实分布是不确定的，仅属于丢组共享一致的部分分布信息的分布为了解决我们问题中的分布不确定性，我们采用分布鲁棒优化框架，并将协变量信息纳入创新的场景不确定性集</p>

<h2 id="dro-model">DRO Model</h2>

<p>不同于随即优化模型，分布鲁棒框架假设真实分布((\tilde{z},\tilde{v}): \mathbb{Q}\in\mathcal{P}<em>{0}(\mathbb{R}^{M}\times\mathbb{R}^{I}))在一个不确定集合(\mathbb{F}\subseteq\mathcal{P}</em>{0}(\mathbb{R}^{M}\times\mathbb{R}^{I})) ，这个不确定集合(\mathbb{F})是由数据的部分分布信息估计得到的。使?\Pi_{\tilde{z}}\mathbb{F}(表示集合 )\mathbb{F}( 中所有分布的)\tilde{z}(的边缘分布在DRO框架下，运营商意图最大化 )\mathbb{F}$ 中所有可能分布下朢坏情?的期望利润，如下?
[
\begin{align}
\max\limits_{x_{i j}\ge0} &amp; -\sum\limits_{j\in[M]}\sum\limits_{i\in[N]}w_{i j}x_{i j}+\inf\limits_{\mathbb{Q\in F}}\mathbb{E_{Q}}\left[\sum\limits_{j\in [M]}r_{j}(\tilde{z}<em>{j}\wedge\sum\limits</em>{i\in[N]}x_{i j}) \right]\tag{4}<br />
\text{s.t.}&amp;\sum\limits_{j\in[M]}x_{i j} \leq S_{i}\text{ , }\forall i\in [N]
\end{align}
]</p>

<p>方程((4))的解及其样本外能都取决于模糊集F?</p>
<h3 id="41-含协变量的场景不确定性集">4.1 含协变量的场景不确定性集?</h3>
<p>由于模糊?\mathbb{F}$对于模型的解有决定作用，引入丢种情景化的模糊集，该模糊集结合了不确定需求和不确定协变量的分布信息后续说明协变量信息的价值以及如何基于历史数据估计情景化的模糊集?
为了利用协变量信息，本文?(\tilde{v}) 扢有可能的实现划分?L(种情景：)\Omega_{l}, l\in[L](其中 )\Omega_{l}\bigcap\Omega_{k}=\emptyset(对于扢有的 )l, k \in [L]( ?l\neq k)，并?\bigcup_{l\in[L]}\Omega_{l}=\Omega(。令)p_{l}( 表示?l)种情景发生的概率。结合所有情景与霢求的边际矩信息，我们构建了以下基于情景的模糊集：</p>

<p>[
\begin{align}
&amp;\mathbb{F}=\left{\mathbb{Q}\subseteq\mathcal{P}<em>{0}(\mathbb{R}^{M}\times\mathbb{R}^{I})\begin{array}{|l}
(\tilde{\mathbf{z}}, \tilde{\mathbf{v}}) \sim \mathbb{Q} &amp; <br />
\mathbb{E}</em>{\mathbb{Q}}\left(\tilde{\mathbf{z}} \mid \tilde{\mathbf{v}} \in \Omega_l\right)=\boldsymbol{\mu}<em>l, &amp; \forall l \in[L] <br />
\mathbb{E}</em>{\mathbb{Q}}\left(\left(\tilde{z_{j l}}-\mu_{j l}\right)^2 \mid \tilde{\mathbf{v}} \in \Omega_l\right) \leq \sigma_{j l}^2, &amp; \forall l \in[L], j \in[M] <br />
\mathbb{Q}\left(\tilde{\mathbf{v}} \in \Omega_l\right)=p_l, &amp; \forall l \in[L] <br />
\mathbb{Q}\left(\tilde{\mathbf{z}} \in \mathcal{Z}_l \mid \tilde{\mathbf{v}} \in \Omega_l\right)=1, &amp; \forall l \in[L]
\end{array}\right}
\end{align}
]</p>

<p>其中((\tilde{\mathbf{z}}, \tilde{\mathbf{v}}) \sim \mathbb{Q})表示联合霢求和协变量服从于真实分布?\mathbb{E}_{\mathbb{Q}}\left(\tilde{\mathbf{z}} \mid \tilde{\mathbf{v}} \in \Omega_l\right)=\boldsymbol{\mu}_l(表示情景)l(?)\tilde{v}( 属于该情景时霢求的<strong>均?*?)\mathbb{E}<em>{\mathbb{Q}}\left(\left(\tilde{z</em>{j l}}-\mu_{j l}\right)^2 \mid \tilde{\mathbf{v}} \in \Omega_l\right) \leq \sigma_{j l}^2(表示每个情景)l(?\tilde{v})属于该情景时霢求的</strong>方差**的上限；(\mathbb{Q}\left(\tilde{\mathbf{v}} \in \Omega_l\right)=p_l)指定了每个情?l(的概率；)\mathcal{Z}_l=\left[\underline{\mathbf{z}}_l, \overline{\mathbf{z}}_l\right]$明确每个情景中需求可取的朢大最小?</p>
<h3 id="42-协变量的价">4.2 协变量的价?</h3>
<p><strong>举例</strong> ：虑?(\tilde{z}) ?(\tilde{v}) 都是丢维的情况，记?((\tilde{z}, \tilde{v}))。假设潜在的真实模型如下?\tilde{v}( 服从伯努利分布，其中 )\mathbb{Q}(\tilde{v} = 1) = 1/2(。在给定 )\tilde{v}( 的条件下，我们有 )\mathbb{Q}(\tilde{z} = z_1|\tilde{v} = 1) = 1(?\mathbb{Q}(\tilde{z} = z_0|\tilde{v} = 0) = 1)，其?(z_0 \leq z_1)。可以将 (\tilde{v} = 1) 解释为天气下雨的事件。相应地?\mathbb{Q}(\tilde{z} = z_1|\tilde{v} = 1) = 1( 表明在下雨天丢定将看到高需?)z_1(。进丢步假设，我们已知 )\tilde{v}( 的分布，但无法知?)\tilde{z}( 的分布，仅在给定 )\tilde{v}( 的实现后，才知道 )\tilde{z}( 的确切均值和方差?*不利用协变量信息**，我们可以用 )\tilde{z}( 的均值和方差来表示不确定性集)\mathbb{\hat{F}}$为：</p>

<p>[
\hat{\mathbb{F}}=\left{\begin{array}{l|l}
\mathbb{Q} \in \mathcal{P}<em>0(\mathbb{R} \times \mathbb{R}) &amp; \begin{array}{l}
(\tilde{z}, \tilde{v}) \sim \mathbb{Q} <br />
\mathbb{E}</em>{\mathbb{Q}}(\tilde{z})=\frac{z_1+z_0}{2} <br />
\mathbb{E}_{\mathbb{Q}}\left(\tilde{z}-\frac{z_1+z_0}{2}\right)^2 \leq\left(\frac{z_1-z_0}{2}\right)^2 <br />
\mathbb{Q}(\tilde{z} \in \mathbb{R})=1
\end{array}
\end{array}\right}
]</p>

<p>当虑协变?\tilde{v}$ 则可以写出如下模糊集?
[
\overline{\mathbb{F}}=\left{\begin{array}{l|l}
\mathbb{Q} \in \mathcal{P}<em>0(\mathbb{R} \times \mathbb{R}) &amp; \begin{array}{l}
(\tilde{z}, \tilde{v}) \sim \mathbb{Q} <br />
\mathbb{E}</em>{\mathbb{Q}}(\tilde{z} \mid \tilde{v}=i)=z_i, \text { for } i=0,1 <br />
\mathbb{E}_{\mathbb{Q}}\left(\left(\tilde{z}-z_i\right)^2 \mid \tilde{v}=i\right) \leq 0, \text { for } i=0,1 <br />
\mathbb{Q}(\tilde{v}=i)=\frac{1}{2}, \text { for } i=0,1 <br />
\mathbb{Q}(\tilde{z} \in \mathbb{R} \mid \tilde{v}=i)=1, \text { for } i=0,1
\end{array}
\end{array}\right}
]</p>

<table>
  <tbody>
    <tr>
      <td>?\overline{\mathbb{F}}(中第丢和第二个约束可以得出霢?\tilde{v})的均值和方差?\overline{\mathbb{F}}(中仅包含丢个真实分布，?)\mathbb{Q}(\tilde{z} = z_1</td>
      <td>\tilde{v} = 1) = 1/2 ，\mathbb{Q}(\tilde{z} = z_1</td>
      <td>\tilde{v} = 1) = 1/2( 。上述例子表明，协变量可以帮助我们获得一个较为不保守的模糊集合?Proposition 1可以证明)\Pi^{SDR}\geq \Pi^{MMM}$</td>
    </tr>
  </tbody>
</table>

<h3 id="43-模糊overlinemathbbf-的估">4.3 模糊?(\overline{\mathbb{F}}) 的估?</h3>
<p>对于给定的场景数 (L) 而言，估算模糊集 (\overline{\mathbb{F}}) 的关键在于使得该场景?(\tilde{z}) 具有朢小方差为了实现该目的，本章节使用丢种直观且广泛使用的非参数方法，回归树。虑本文探讨的问题中霢求向?(\tilde{z}) 是独立的(M)维向量，因此采用多变量回归树<strong>MRT</strong>。回归树迭代的将样本空间丢分为二，每一个叶结点代表丢个子集， 每一个子?(l) 可以表示?\mathcal{K_{l}}={t|\hat{v}<em>{t}\in \Omega</em>{l}}(?*MRT<strong>将分区的不纯度定义为)E^{MRT}=\sum\limits_{l\in[L]}\sum\limits_{t\in\mathcal{K}<em>{l}}|\hat{z}</em>{t}-\mu_{l}|<em>{2}^{2}( 其中)\mu</em>{l}=\frac{1}{|\mathcal{K}<em>{l}|}\sum\limits</em>{t\in\mathcal{K}<em>{l} }\hat{z}</em>{t}(  ?*MRT</strong>通过选择不同的叶结点朢小化)E^{MRT}$?
[
\begin{align}
\min_{Tree \ with \ L \ Leaf \ Nodes}\sum\limits_{l\in[L]}\sum\limits_{t\in\mathcal{K}<em>{l}}(\hat{z}</em>{t}-\mu_{l})^{2}\tag{5}
\end{align}
]</p>

<p>通过<strong>MRT</strong>，可以过叶节点的大小估计场景 (l) 的概?p_{l}$如下?
[
\hat{p}_l=\frac{|\mathcal{K}_l|}{T}
]</p>

<p>进场?(l) 下需求的均?\mu_{l}(和方?\sigma_{j l}^{2})可以估计如下?
[
\hat{\mu}<em>{l}=\frac{1}{|\mathcal{K}</em>{l}|} \sum\limits_{t\in\mathcal{K}<em>l}\hat{z}</em>{t}\quad\quad\sigma_{j l}^{2}=\sum\limits_{t\in\mathcal{K}<em>l}(\hat{z}</em>{jt}-\hat{\mu}_{jl})^{2}
]</p>

<p>上述的估计仍满足上述Proposition 1
虽然回归树并非是唯一划分场景的方法，还存在其他的无监督聚类方法，但是我们发现其他的无监督聚类方法并未利用协变量我们在以下例子中展示了在某些情况下，利用协变量信息?<em>回归?</em>可以提供比仅基于因变量进行聚类的无监督聚类方?<em>更准?</em>的情景分类?
?2 考虑丢个一维的情况，有((\tilde{z} , \tilde{v}))服从分布$\mathcal{Q}(\tilde{v}=1)=1/2
[
\mathcal{Q}(\tilde{v}=2)=1/2(对于霢?\tilde{z})有如下表扢示的概率?
]</p>

<p>\begin{array}{c|c|c}
\hline
\tilde{z} &amp; \tilde{v} &amp; \mathbb{Q}(\tilde{z} \mid \tilde{v}) <br />
\hline \hline
1 &amp; &amp; 2 / 3 <br />
3 &amp; 1 &amp; 1 / 3 <br />
\hline
2 &amp; &amp; 1 / 3 <br />
4 &amp; 2 &amp; 2 / 3 <br />
\hline</p>

<p>\end{array}</p>

<p>[
假设我们从这个分布中获得?个样?((\tilde{z} , \tilde{v}))?1, 1), (1, 1), (3, 1), (2, 2), (4, 2), ?(4, 2)。对?L = 2，使用回归树，{(1, 1), (1, 1), (3, 1)} 被识别为情景 1，概率为 0.5，?{(2, 2), (4, 2), (4, 2)} 被识别为情景 2，概率也?0.5。相比之下，使用忽略协变量信息的 K-means 聚类，只利用 (\tilde{z}) 的数据点，即 1, 1, 2, 3, 4 , 4。因此，?K-means 聚类中当 K = 2 时，{1, 1, 2} 被聚类为情景 1，概率为 0.5，?{3, 4, 4} 被聚类为情景 2，概率也?0.5?回归树方法还具有良好的可解释性，展示了分区与协变量之间的联系。这种可解释性还赋予了场景化的模糊集在结合预测信息方面的灵活性，例如，协变量落入场景 (l) 的概率?</p>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>from sklearn.tree import DecisionTreeRegressor
from sklearn.tree import plot_tree

regr = DecisionTreeRegressor(max_leaf_nodes=4,          # 朢大叶结点数量
                             min_samples_leaf=3)        # 每个结点朢小样本数
regr.fit(precip, demand)
mu, index, counts = np.unique(regr.predict(precip), 
                              axis=0,
                              return_inverse=True,
                              return_counts=True)       # conditional mean
w = counts/precip.shape[0]                              # 场景权重         
phi = np.array([demand.values[index==i].var(axis=0)
                for i in range(len(counts))])           # conditional variance
d_ub = np.array([demand.values[index==i].max(axis=0)
                for i in range(len(counts))])           # upper bound of each scenario
d_lb = np.array([demand.values[index==i].min(axis=0)
                for i in range(len(counts))])           # lower bound of each scenario

plt.figure(figsize=(20, 10))                            # 回归树可视化
plot_tree(regr, rounded=True, feature_names=demand.columns, fontsize=13)
plt.show()
</code></pre></div></div>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code># 可视化不同场景下不同地区的需求分布情?fig = plt.figure(figsize=(10, 4))
gs = fig.add_gridspec(1, 4, hspace=0, wspace=0)
axes = gs.subplots(sharey='row')
for i in range(4):
    each_demand = demand.values[index==i]
    axes[i].boxplot(each_demand, 
                    vert=False, flierprops={'markersize': 4})
    axes[i].set_yticks(list(range(1, 11)), 
                       ['Region{0}'.format(i) for i in range(1, 11)], 
                       fontsize=11)
    axes[i].set_xlabel('Demand', fontsize=12)
    axes[i].set_title('Sample size: {0}'.format(each_demand.shape[0]), 
                      fontsize=13)
axes[3].set_ylim(10.5, 0.5)
plt.show()
</code></pre></div></div>

<p>基于由场景均值和方差定义的模糊集𝐹，分布鲁棒模型的实现如下</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>from rsome import dro                         # import the dro module
from rsome import square                      # import the element-wise square function
from rsome import E                           # import the notion of expectation
from rsome import eco_solver as eco           # import the ECOS interface

S = len(w)                                    # number of scenarios
model = dro.Model(S)                          # create a DRO model with S scenarios

d = model.rvar(J)                             # random demand as the variable d
u = model.rvar(J)                             # auxiliary random variable u
fset = model.ambiguity()                      # create an ambiguity set
for s in range(S):                            # for each scenario:
    fset[s].exptset(E(d) == mu[s],            # specify the expectation set of d and u
                    E(u) &lt;= phi[s])
    fset[s].suppset(d &gt;= d_lb[s],             # specify the support of d and u
                    d &lt;= d_ub[s],
                    square(d - mu[s]) &lt;= u)
pr = model.p                                  # an array of scenario probabilities
fset.probset(pr == w)                         # w as scenario weights

x = model.dvar((I, J))                        # here-and-now decision x
y = model.dvar(J)                             # wait-and-see decision y
y.adapt(d)                                    # y affinely adapts to d
y.adapt(u)                                    # y affinely adapts to u
for s in range(S):                            # for each scenario:
    y.adapt(s)                                # affine adaptation of y is different

model.minsup(((c-r)*x).sum() + E(r@y), fset)  # minimize the worst-case objective
model.st(y &gt;= x.sum(axis=0) - d, y &gt;= 0)      # robust constraints
model.st(x &gt;= 0, x.sum(axis=0) &lt;= q)          # deterministic constraints

model.solve(eco)                              # solve the model by ECOS
status = model.solution.status                # return the solution status
time = model.solution.time                    # return the solution time
objval = model.get()                          # get the optimal objective value
x_sol = x.get()                               # get the optimal solution
</code></pre></div></div>

<h2 id="解决方案">解决方案</h2>

<h3 id="线规则近">线规则近?</h3>
<p>]</p>

<p>\begin{aligned}
\hat{\Pi}=\max <em>{\substack{\left.x</em>{i j}, \gamma_l <br />
\boldsymbol{\alpha}, \boldsymbol{\delta}<em>l, y_j^{\prime} \cdot \cdot\right)}} &amp; \left{\sum</em>{j \in[M]} \sum_{i \in[N]}\left(r_j-w_{i j}\right) x_{i j}-\sum_{l \in[L]} \alpha_l-\sum_{l \in[L]}\left(\boldsymbol{\delta}<em>l^{\prime} \boldsymbol{\mu}_l+\sum</em>{j \in[M]} \gamma_{j l} \sigma_{j l}^2\right)\right} <br />
\text { s.t. } &amp; \sum_{j \in[M]} x_{i j} \leq S_i, \forall i \in[N] <br />
&amp; \alpha_l+\boldsymbol{\delta}<em>l^{\prime} \mathbf{z}+\gamma_l^{\prime} \mathbf{u} \geq p_l \sum</em>{j \in[M]} r_j y_j^l(\mathbf{z}, \mathbf{u}), \forall(\mathbf{z}, \mathbf{u}) \in \mathcal{W}<em>l, l \in[L] <br />
&amp; y_j^l(\mathbf{z}, \mathbf{u}) \geq \sum</em>{i \in[N]} x_{i j}-z_{j l}, \forall(\mathbf{z}, \mathbf{u}) \in \mathcal{W}<em>l, j \in[M], l \in[L] <br />
&amp; y_j^l(\mathbf{z}, \mathbf{u}) \geq 0, \forall(\mathbf{z}, \mathbf{u}) \in \mathcal{W}_l, j \in[M], l \in[L] <br />
&amp; \mathbf{y}(\cdot) \in \mathcal{L} <br />
&amp; x</em>{i j} \in \mathbb{R}<em>{+}, \boldsymbol{\alpha} \in \mathbb{R}^L, \boldsymbol{\delta}_l \in \mathbb{R}^M, \boldsymbol{\gamma}_l \in \mathbb{R}</em>{+}^M, \forall l \in[L]
\end{aligned}
$$</p>
<h1 id="robust-optimization">Robust-Optimization</h1>
<h1 id="uncertain-optimize">Uncertain-Optimize</h1>]]></content><author><name>Cpuritan</name><email>contact@cpuritan.cn</email></author><category term="blog" /><summary type="html"><![CDATA[]]></summary></entry></feed>