changeset 13:117794d50054

update
author akahori
date Tue, 19 Feb 2019 21:49:55 +0900
parents 2e843f65ac5f
children 38f2c997bb93
files final_main/bibliography.tex final_main/chapter4/chapter4.tex final_pre/Makefile final_pre/images/chain-fork.graffle final_pre/images/chain-fork.pdf final_pre/images/chain.graffle final_pre/images/kvm.graffle final_pre/images/kvm.pdf final_pre/images/paxos.graffle final_pre/images/paxos.pu final_pre/images/paxos1.pdf final_pre/images/paxos1.pu final_pre/images/paxos1.svg final_pre/images/paxos2.pdf final_pre/images/paxos2.pu final_pre/images/paxos2.svg final_pre/images/paxos3.pdf final_pre/images/paxos3.pu final_pre/images/paxos3.svg final_pre/images/proof-of-work-fork.graffle final_pre/images/proof-of-work-fork.pdf final_pre/images/proof-of-work.graffle final_pre/images/proof-of-work.pdf final_pre/images/ring.pdf final_pre/images/名称未設定3.graffle final_pre/pre.pdf final_pre/pre.tex final_pre/reference.bib slide/images/accept-accepted.pdf slide/images/accept-accepted.svg slide/images/blockchain.graffle slide/images/blockchain.pdf slide/images/blockchain.png slide/images/blockchain.svg slide/images/paxos1.svg slide/images/paxos2.svg slide/images/paxos3.svg slide/images/prepare-promise.pdf slide/images/prepare-promise.svg slide/slide.html slide/slide.md
diffstat 41 files changed, 7683 insertions(+), 46 deletions(-) [+]
line wrap: on
line diff
--- a/final_main/bibliography.tex	Tue Feb 19 15:28:07 2019 +0900
+++ b/final_main/bibliography.tex	Tue Feb 19 21:49:55 2019 +0900
@@ -8,38 +8,38 @@
 %書籍、論文、URLによって若干書き方が異なる。
 %URLを載せる人は参考にした年月日を最後に記入すること。
 
+\bibitem{christie}
+河野 真治. 分散フレームワークChristieと分散木構造データベースJungle, IPSJ SIG Technical Report, May 2018.
 
+\bibitem{christie}
+照屋のぞみ. 分散フレームワークChristieの設計, Master’s thesis, 琉球大学 大学院理工学研究科, 2018.
 
 \bibitem{bitcoin}
 Bitcoin: A Peer-to-Peer Electronic Cash System \\
 \url{https://bitcoin.org/bitcoin.pdf}\\
-(Accessed: 2018/2/15)
+(Accessed: 2019/2/15)
 
 \bibitem{ethereum}
 Ethereum Homestead Documentation \\
 \url{http://www.ethdocs.org/en/latest/}\\
-(Accessed: 2018/2/17)
+(Accessed: 2019/2/17)
 
 
 \bibitem{paxos}
 Paxos made Simple \\
 \url{https://lamport.azurewebsites.net/pubs/paxos-simple.pdf}
-(Accessed: 2018/2/17)
-
-\bibitem{christie}
-照屋のぞみ. 分散フレームワークChristieの設計, Master’s thesis, 琉球大学 大学院理工学研究科, 2018.
-
+(Accessed: 2019/2/17)
 
 \bibitem{torque}
 TORQUE Introduction. \\
 \url{http://docs.adaptivecomputing.com/torque/4-2-8/help.htm#topics/0-intro/introduction.htm\%3FTocPath\%3DWelcome\%7C_____1}\\
-(Accessed: 2018/2/15)
+(Accessed: 2019/2/15)
 
 
 \bibitem{qsub-doc}
 qsub document. \\
 \url{http://docs.adaptivecomputing.com/torque/4-0-2/Content/topics/commands/qsub.htm}\\
-(Accessed: 2018/2/15)
+(Accessed: 2019/2/15)
 
 
 \end{thebibliography}
--- a/final_main/chapter4/chapter4.tex	Tue Feb 19 15:28:07 2019 +0900
+++ b/final_main/chapter4/chapter4.tex	Tue Feb 19 21:49:55 2019 +0900
@@ -65,11 +65,120 @@
 \item ノード間で繋がる前にput操作を行うとデータが送られない.
 \end{itemize}
 
-Take, Peek操作でSuperClassの型を持ったデータを取り出す際にNullPointerExceptionが表示される問題に対しては, DataGearでdataを代入する際にSuperClass, interfacesまで比較するように書き換えた. また, 型の不一致が起こった際は例外を投げるようにした. TopologyNodeにおいて, 実行するCodeGearをputしておき, 参加するノードがすべて揃ったら, そのCodeGearを実行する. しかし, 実際には実行するCodeGearはCodeGearを継承したものである. Christieは, putされたdataのクラスとTakeされるデータのクラスが一致したならば, dataを代入するという処理を行っている. つまり, SuperClass, interfacesの型までは比較をしない. そのため, 型の不一致が起こり, dataの代入をしないため, NullPointerExceptionが表示されていた. 
+Take, Peek操作でSuperClassの型を持ったデータを取り出す際にNullPointerExceptionが表示される問題に対しては, DataGearでdataを代入する際にSuperClass, interfacesまで比較するように書き換えた. また, 型の不一致が起こった際は例外を投げるようにした. その修正後のコードをソースコード\ref{code:datagear}に示す.
+
+\begin{lstlisting}[caption=修正後のDataGearのソースコード,label=code:datagear]
+public class DataGear<T>{
+   
+    ...
+   
+    public void setData(T data) {
+        Class dataClazz = data.getClass();
+
+        if(dataClazz == this.clazz){
+            this.data = data; return;
+        }
+
+        Class dataSuperClazz = dataClazz.getSuperclass();
+        while (dataSuperClazz != null) {
+            if(dataSuperClazz == this.clazz) {
+                this.data = data; return;
+            }
+            dataSuperClazz = dataSuperClazz.getSuperclass();
+        }
+
+        Class<?>[] interfaces = dataClazz.getInterfaces();
+        for (Class<?> interfaze : interfaces) {
+            if(interfaze == this.clazz) {
+                this.data = data; return;
+            }
+        }
+
+        throw new ClassCastException("datagear cannot set class from " + dataClazz.getName() + " to " + clazz.getName());
+
+    }
+
+}
+\end{lstlisting}
+
+TopologyNodeにおいて, 実行するCodeGearをputしておき, 参加するノードがすべて揃ったら, そのCodeGearを実行する. しかし, 実際には実行するCodeGearはCodeGearを継承したものである. Christieは, putされたdataのクラスとTakeされるデータのクラスが一致したならば, dataを代入するという処理を行っている. つまり, SuperClass, interfacesの型までは比較をしない. そのため, 型の不一致が起こり, dataの代入をしないため, NullPointerExceptionが表示されていた. 
+
+
+
+
+ノード間で繋がる前にput操作を行うとデータが送られない問題に対しては, waitを付け加えた. そのコードをソースコード\ref{code:rdg}に示す. この問題は, ノードが繋がる前にputを行うため, 相手のDataGearに書き込みが行われないために起きた. そのため, 相手とDataGearがつながるまでputメソッドをwaitしておき, つながってからput操作を行うように書き換えた.
+
+\begin{lstlisting}[caption=修正後のDataGearのソースコード,label=code:datagear]
+public class RemoteDataGearManager extends DataGearManager{
+    boolean connect = false;
+    Object lock = new Object();
 
-ノード間で繋がる前にput操作を行うとデータが送られない問題に対しては, waitを付け加えた. この問題は, ノードが繋がる前にputを行うため, 相手のDataGearに書き込みが行われないために起きた. そのため, 相手とDataGearがつながるまでputメソッドをwaitしておき, つながってからput操作を行うように書き換えた.
+    public RemoteDataGearManager(final String dgmName, final String address, final int port, CodeGearManager cgm) {
+        this.cgm = cgm;
+        RemoteDataGearManager manager = this;
+        new Thread("Connect-" + dgmName) {
+            public void run() {
+                do {
+                    try {
+                        SocketChannel sc = SocketChannel.open(new InetSocketAddress(address, port));
+                        connection = new Connection(sc.socket(), cgm);
+                        connection.name = dgmName;
+                        connection.socket.setTcpNoDelay(true);
+                        
+                        // add lock
+                        synchronized (lock){
+                            connect = true;
+                            lock.notify();
+                        }
+                    } catch (IOException e) {
+                        try {
+                            Thread.sleep(50);
+                        } catch (InterruptedException e1) {
+                            e1.printStackTrace();
+                        }
+                    }
+                } while (!connect);
+                IncomingTcpConnection in = new IncomingTcpConnection(connection);
+                in.setManager(manager);
+                in.setName(dgmName+"-IncomingTcp");
+                in.setPriority(MAX_PRIORITY);
+                in.start();
+                OutboundTcpConnection out = new OutboundTcpConnection(connection);
+                out.setName(dgmName + "-OutboundTcp");
+                out.setPriority(MAX_PRIORITY);
+                out.start();
+            }
+        }.start();
 
-\section{Christieの良い点, 悪い点}
+    }
+    
+    ...
+
+    @Override
+    public void put(String key, Object data) {
+
+        Command cm = new PutCommand(0, null, key, new DataGear(data));
+        
+        if(!connect) connectWait(); // add wait
+
+        connection.write(cm);
+    }
+    
+    // add method
+    public void connectWait(){
+        synchronized (lock){
+            while(!connect){
+                try {
+                    lock.wait();
+                } catch (InterruptedException e) {
+                }
+            }
+        }
+    }
+}
+\end{lstlisting}
+
+\section{Aliceと比較したChristieの良い点, 悪い点}
 Christieの元となった分散フレームワークAliceと比較し, Christieの良い点, 悪い点をそれぞれ述べる.
 
 良い点としては次のようなことが挙げられる.
@@ -88,6 +197,25 @@
 \item デバッグが難しい. cgm.setupでCodeGearが実行されるが, keyの待ち合わせで止まり, どこで止まっているかわからないことが多かった. 例えば, putするkeyのスペルミスなどでコードの待ち合わせが起こり, CodeGearが実行されず, エラーなども表示されずにwaitすることがあり, どこで止まっているかわからない事があった.
 \end{itemize}
 
+\section{Christieにおけるブロックチェーンの実装の利点と欠点}
+
+Christieにおいてブロック, トランザクション, Paxos, Proof of Workを実装した. 
+その際, Christieで実装した場合の便利な点を述べる.
+
+\begin{itemize}
+\item ブロック, トランザクションを送るのが簡単. ChristieはDataGearという単位でデータを保持する. そのため, ブロックやトランザクションはDataGearに包めばいい.
+\item TopologyManagerでのテストが便利. dotファイルが有れば, TopologyManagerが任意の形でTopologyを作れる. そのため, ノードの配置については理想の環境を作れるため, 理想のテスト環境を作ることができる. 
+\item 機能ごとにファイルが実装できるため, 見通しが良い. ChristieはCbCのgotoと同じように関数が終わるとsetupによって別の関数に移動する. そのため自然に機能ごとにファイルを作るため, 見通しが良くなる.
+\end{itemize}
+
+不便な点を以下に述べる.
+
+\begin{itemize}
+\item デバッグが難しい. 4.4の「Christieの良い点, 悪い点」で述べたが, keyのスペルミスなどが起こると, CodeGearが実行されず, waitされる問題が出る.
+\item Takeの待ち合わせでCGが実行されない. 2つのCGで同じ変数をTakeしようとすると, setupされた時点で変数がロックされる. このとき, 片方のCGはDGがすべて揃っているのに, すべての変数が揃っていないもう片方のCGに同名の変数がロックされ, 実行されない場合がある. 
+\end{itemize}
+
+
 
 
 \newpage
--- a/final_pre/Makefile	Tue Feb 19 15:28:07 2019 +0900
+++ b/final_pre/Makefile	Tue Feb 19 21:49:55 2019 +0900
@@ -1,6 +1,6 @@
 # Created by Daichi Toma on Nov 16, 2011
 
-TARGET=finalPre
+TARGET=pre
 
 LATEX=platex
 BIBTEX=pbibtex
Binary file final_pre/images/chain-fork.graffle has changed
Binary file final_pre/images/chain-fork.pdf has changed
Binary file final_pre/images/chain.graffle has changed
Binary file final_pre/images/kvm.graffle has changed
Binary file final_pre/images/kvm.pdf has changed
Binary file final_pre/images/paxos.graffle has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/final_pre/images/paxos.pu	Tue Feb 19 21:49:55 2019 +0900
@@ -0,0 +1,95 @@
+@startuml
+title Paxos1
+/' ======= style ======= '/
+
+skinparam sequence {
+ArrowColor black
+LifeLineBorderColor black
+
+ParticipantBorderColor black
+ParticipantBackgroundColor white
+ParticipantPadding 20
+}
+
+/' ======= node name ======= '/
+
+/' === proposers === '/
+participant proposer1
+activate proposer1
+participant proposer2
+activate proposer2
+
+/' === acceptors === '/
+participant acceptor1
+activate acceptor1
+participant acceptor2
+activate acceptor2
+participant acceptor3
+activate acceptor3
+
+/' === learners === '/
+participant learner1
+activate learner1
+
+/' ======= uml ======= '/
+
+proposer2 -> acceptor1:Prepare request \n\
+Proposal(8, 2)
+proposer2 -> acceptor2
+proposer2 -> acceptor3
+
+acceptor1 --> proposer2:Promise Success\n\
+Proposal(8, 2)
+acceptor2 --> proposer2:Promise Success\n\
+Proposal(8, 2)
+acceptor3 --> proposer2:Promise Success\n\
+Proposal(8, 2)
+
+proposer1 -> acceptor1:Prepare request \n\
+Proposal(7, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 --> proposer1:Promise Fail\n\
+Proposal(8, 2)
+acceptor2 --> proposer1
+acceptor3 --> proposer1
+
+proposer2 -> acceptor1:Accept request \n\
+Proposal(8, 2)
+proposer2 -> acceptor2
+proposer2 -> acceptor3
+
+acceptor2 --> proposer2:Accept \n\
+Proposal(8, 2)
+acceptor2 --> learner1:accept \n\
+Proposal(8, 2)
+
+proposer1 -> acceptor1:Prepare request \n\
+Proposal(13, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 --> proposer1:Promise Success\n\
+Proposal(13, 1)
+acceptor3 --> proposer1:Promise Success\n\
+Proposal(13, 1)
+
+acceptor1 --> proposer2:Accept Fail\n\
+Proposal(13, 1)
+acceptor3 --> proposer2:Accept Fail\n\
+Proposal(13, 1)
+proposer1 -> acceptor1:accept request \n\
+Proposal(13, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+
+acceptor2 --> proposer1:accept \n\
+Proposal(13, 1)
+acceptor2 --> learner1:accept \n\
+Proposal(13, 1)
+
+
+
+@enduml
\ No newline at end of file
Binary file final_pre/images/paxos1.pdf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/final_pre/images/paxos1.pu	Tue Feb 19 21:49:55 2019 +0900
@@ -0,0 +1,74 @@
+@startuml
+title Paxos 1
+/' ======= style ======= '/
+
+skinparam sequence {
+ArrowColor black
+LifeLineBorderColor black
+
+ParticipantBorderColor black
+ParticipantBackgroundColor white
+ParticipantPadding 20
+}
+
+/' ======= node name ======= '/
+
+/' === proposers === '/
+participant proposer1
+activate proposer1
+participant proposer2
+activate proposer2
+
+/' === acceptors === '/
+participant acceptor1
+activate acceptor1
+participant acceptor2
+activate acceptor2
+participant acceptor3
+activate acceptor3
+
+/' === learners === '/
+participant learner1
+activate learner1
+
+/' ======= uml ======= '/
+
+proposer1 -> acceptor1:Prepare request \n\
+Proposal(7, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 --> proposer1:Promise Success\n\
+Proposal(7, 1)
+acceptor2 --> proposer1
+acceptor3 --> proposer1
+
+proposer2 -> acceptor1:Prepare request \n\
+Proposal(8, 2)
+proposer2 -> acceptor2
+proposer2 -> acceptor3
+
+acceptor1 --> proposer2:Promise Success\n\
+Proposal(8, 2)
+acceptor2 --> proposer2
+acceptor3 --> proposer2
+
+proposer2 -> acceptor1:Accept request \n\
+Proposal(8, 2)
+proposer2 -> acceptor2
+proposer2 -> acceptor3
+
+acceptor1 --> proposer2:Accept \n\
+Proposal(8, 2)
+acceptor1 -> learner1:Accept \n\
+Proposal(8, 2)
+
+acceptor2 --> proposer2:Accept \n\
+Proposal(8, 2)
+acceptor2 -> learner1:Accept \n\
+Proposal(8, 2)
+
+learner1 -> learner1:chosen \n\
+Proposal(8, 2)
+
+@enduml
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/final_pre/images/paxos1.svg	Tue Feb 19 21:49:55 2019 +0900
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentScriptType="application/ecmascript" contentStyleType="text/css" height="728px" preserveAspectRatio="none" style="width:864px;height:728px;" version="1.1" viewBox="0 0 864 728" width="864px" zoomAndPan="magnify"><defs><filter height="300%" id="fc7ra6n53s53c" width="300%" x="-1" y="-1"><feGaussianBlur result="blurOut" stdDeviation="2.0"/><feColorMatrix in="blurOut" result="blurOut2" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .4 0"/><feOffset dx="4.0" dy="4.0" in="blurOut2" result="blurOut3"/><feBlend in="SourceGraphic" in2="blurOut3" mode="normal"/></filter></defs><g><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="56" x="405.5" y="23.5352">Paxos 1</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="68" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="208" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="346" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="482" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="618" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="749" y="78.9766"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="73" x2="73" y1="68.9766" y2="688.1875"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="213" x2="213" y1="68.9766" y2="688.1875"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="351" x2="351" y1="68.9766" y2="688.1875"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="487" x2="487" y1="68.9766" y2="688.1875"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="623" x2="623" y1="68.9766" y2="688.1875"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="754" x2="754" y1="68.9766" y2="688.1875"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="28" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="35" y="54.0234">proposer1</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="28" y="687.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="35" y="707.7227">proposer1</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="168" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="175" y="54.0234">proposer2</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="168" y="687.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="175" y="707.7227">proposer2</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="308" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="315" y="54.0234">acceptor1</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="308" y="687.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="315" y="707.7227">acceptor1</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="444" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="451" y="54.0234">acceptor2</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="444" y="687.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="451" y="707.7227">acceptor2</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="580" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="587" y="54.0234">acceptor3</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="580" y="687.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="587" y="707.7227">acceptor3</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="72" x="716" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="58" x="723" y="54.0234">learner1</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="72" x="716" y="687.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="58" x="723" y="707.7227">learner1</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="68" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="208" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="346" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="482" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="618" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="749" y="78.9766"/><polygon fill="#000000" points="334,111.5977,344,115.5977,334,119.5977,338,115.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="115.5977" y2="115.5977"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="85" y="95.5449">Prepare request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="85" y="110.8555">Proposal(7, 1)</text><polygon fill="#000000" points="470,125.5977,480,129.5977,470,133.5977,474,129.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="129.5977" y2="129.5977"/><polygon fill="#000000" points="606,139.5977,616,143.5977,606,147.5977,610,143.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="143.5977" y2="143.5977"/><polygon fill="#000000" points="89,184.2188,79,188.2188,89,192.2188,85,188.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="345" y1="188.2188" y2="188.2188"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="95" y="168.166">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="95" y="183.4766">Proposal(7, 1)</text><polygon fill="#000000" points="89,198.2188,79,202.2188,89,206.2188,85,202.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="481" y1="202.2188" y2="202.2188"/><polygon fill="#000000" points="89,212.2188,79,216.2188,89,220.2188,85,216.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="617" y1="216.2188" y2="216.2188"/><polygon fill="#000000" points="334,256.8398,344,260.8398,334,264.8398,338,260.8398" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="340" y1="260.8398" y2="260.8398"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="225" y="240.7871">Prepare request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="225" y="256.0977">Proposal(8, 2)</text><polygon fill="#000000" points="470,270.8398,480,274.8398,470,278.8398,474,274.8398" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="476" y1="274.8398" y2="274.8398"/><polygon fill="#000000" points="606,284.8398,616,288.8398,606,292.8398,610,288.8398" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="612" y1="288.8398" y2="288.8398"/><polygon fill="#000000" points="229,329.4609,219,333.4609,229,337.4609,225,333.4609" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="345" y1="333.4609" y2="333.4609"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="235" y="313.4082">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="235" y="328.7188">Proposal(8, 2)</text><polygon fill="#000000" points="229,343.4609,219,347.4609,229,351.4609,225,347.4609" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="481" y1="347.4609" y2="347.4609"/><polygon fill="#000000" points="229,357.4609,219,361.4609,229,365.4609,225,361.4609" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="617" y1="361.4609" y2="361.4609"/><polygon fill="#000000" points="334,402.082,344,406.082,334,410.082,338,406.082" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="340" y1="406.082" y2="406.082"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="225" y="386.0293">Accept request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="225" y="401.3398">Proposal(8, 2)</text><polygon fill="#000000" points="470,416.082,480,420.082,470,424.082,474,420.082" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="476" y1="420.082" y2="420.082"/><polygon fill="#000000" points="606,430.082,616,434.082,606,438.082,610,434.082" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="612" y1="434.082" y2="434.082"/><polygon fill="#000000" points="229,474.7031,219,478.7031,229,482.7031,225,478.7031" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="345" y1="478.7031" y2="478.7031"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="235" y="458.6504">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="235" y="473.9609">Proposal(8, 2)</text><polygon fill="#000000" points="737,519.3242,747,523.3242,737,527.3242,741,523.3242" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="356" x2="743" y1="523.3242" y2="523.3242"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="363" y="503.2715">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="363" y="518.582">Proposal(8, 2)</text><polygon fill="#000000" points="229,563.9453,219,567.9453,229,571.9453,225,567.9453" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="481" y1="567.9453" y2="567.9453"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="235" y="547.8926">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="235" y="563.2031">Proposal(8, 2)</text><polygon fill="#000000" points="737,608.5664,747,612.5664,737,616.5664,741,612.5664" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="492" x2="743" y1="612.5664" y2="612.5664"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="499" y="592.5137">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="499" y="607.8242">Proposal(8, 2)</text><line style="stroke: #000000; stroke-width: 1.0;" x1="759" x2="801" y1="657.1875" y2="657.1875"/><line style="stroke: #000000; stroke-width: 1.0;" x1="801" x2="801" y1="657.1875" y2="670.1875"/><line style="stroke: #000000; stroke-width: 1.0;" x1="760" x2="801" y1="670.1875" y2="670.1875"/><polygon fill="#000000" points="770,666.1875,760,670.1875,770,674.1875,766,670.1875" style="stroke: #000000; stroke-width: 1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="45" x="766" y="637.1348">chosen</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="766" y="652.4453">Proposal(8, 2)</text><!--
+@startuml
+title Paxos 1
+
+skinparam sequence {
+ArrowColor black
+LifeLineBorderColor black
+
+ParticipantBorderColor black
+ParticipantBackgroundColor white
+ParticipantPadding 20
+}
+
+
+participant proposer1
+activate proposer1
+participant proposer2
+activate proposer2
+
+participant acceptor1
+activate acceptor1
+participant acceptor2
+activate acceptor2
+participant acceptor3
+activate acceptor3
+
+participant learner1
+activate learner1
+
+
+proposer1 -> acceptor1:Prepare request \nProposal(7, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 - -> proposer1:Promise Success\nProposal(7, 1)
+acceptor2 - -> proposer1
+acceptor3 - -> proposer1
+
+proposer2 -> acceptor1:Prepare request \nProposal(8, 2)
+proposer2 -> acceptor2
+proposer2 -> acceptor3
+
+acceptor1 - -> proposer2:Promise Success\nProposal(8, 2)
+acceptor2 - -> proposer2
+acceptor3 - -> proposer2
+
+proposer2 -> acceptor1:Accept request \nProposal(8, 2)
+proposer2 -> acceptor2
+proposer2 -> acceptor3
+
+acceptor1 - -> proposer2:Accept \nProposal(8, 2)
+acceptor1 -> learner1:Accept \nProposal(8, 2)
+
+acceptor2 - -> proposer2:Accept \nProposal(8, 2)
+acceptor2 -> learner1:Accept \nProposal(8, 2)
+
+learner1 -> learner1:chosen \nProposal(8, 2)
+
+@enduml
+
+PlantUML version 1.2019.01(Sun Feb 10 00:32:04 JST 2019)
+(GPL source distribution)
+Java Runtime: OpenJDK Runtime Environment
+JVM: OpenJDK 64-Bit Server VM
+Java Version: 11.0.1+13
+Operating System: Mac OS X
+OS Version: 10.13.6
+Default Encoding: UTF-8
+Language: ja
+Country: JP
+--></g></svg>
\ No newline at end of file
Binary file final_pre/images/paxos2.pdf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/final_pre/images/paxos2.pu	Tue Feb 19 21:49:55 2019 +0900
@@ -0,0 +1,116 @@
+@startuml
+title Paxos 2
+/' ======= style ======= '/
+
+skinparam sequence {
+ArrowColor black
+LifeLineBorderColor black
+
+ParticipantBorderColor black
+ParticipantBackgroundColor white
+ParticipantPadding 20
+}
+
+/' ======= node name ======= '/
+
+/' === proposers === '/
+participant proposer1
+activate proposer1
+participant proposer2
+activate proposer2
+
+/' === acceptors === '/
+participant acceptor1
+activate acceptor1
+participant acceptor2
+activate acceptor2
+participant acceptor3
+activate acceptor3
+
+/' === learners === '/
+participant learner1
+activate learner1
+
+/' ======= uml ======= '/
+
+proposer1 -> acceptor1:Prepare request \n\
+Proposal(7, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 --> proposer1:Promise Success\n\
+Proposal(7, 1)
+acceptor2 --> proposer1
+acceptor3 --> proposer1
+
+proposer2 -> acceptor1:Prepare request \n\
+Proposal(8, 2)
+proposer2 -> acceptor2
+proposer2 -> acceptor3
+
+acceptor1 --> proposer2:Promise Success\n\
+Proposal(8, 2)
+acceptor2 --> proposer2
+acceptor3 --> proposer2
+
+proposer1 -> acceptor1:Accept request \n\
+Proposal(7, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+
+
+acceptor1 --> proposer1:Accept Fail\n\
+Proposal(8, 2)
+acceptor2 --> proposer1
+acceptor3 --> proposer1
+
+
+proposer2 -> acceptor2:Accept request \n\
+Proposal(8, 2)
+
+acceptor2 --> proposer2:Accept \n\
+Proposal(8, 2)
+acceptor2 -> learner1:Accept \n\
+Proposal(8, 2)
+
+proposer1 -> acceptor1:Prepare request \n\
+Proposal(13, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor2 --> proposer1:Promise Success\n\
+But Accepted \n\
+Proposal(8, 2)
+acceptor1 --> proposer1:Promise Success\n\
+Proposal(13, 1)
+acceptor3 --> proposer1
+
+proposer2 -> acceptor1:Accept request \n\
+Proposal(8, 2)
+proposer2 -> acceptor3
+
+acceptor1 --> proposer2:Accept Fail\n\
+Proposal(8, 2)
+acceptor3 --> proposer2
+
+proposer1 -> acceptor1:Accept request \n\
+Proposal(13, 2)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 --> proposer2:Accept \n\
+Proposal(13, 2)
+acceptor1 -> learner1:Accept \n\
+Proposal(13, 2)
+
+
+acceptor2 --> proposer2:Accept \n\
+Proposal(13, 2)
+acceptor2 -> learner1:Accept \n\
+Proposal(13, 2)
+
+learner1 -> learner1:chosen \n\
+Proposal(13, 2)
+
+@enduml
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/final_pre/images/paxos2.svg	Tue Feb 19 21:49:55 2019 +0900
@@ -0,0 +1,102 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentScriptType="application/ecmascript" contentStyleType="text/css" height="1316px" preserveAspectRatio="none" style="width:872px;height:1316px;" version="1.1" viewBox="0 0 872 1316" width="872px" zoomAndPan="magnify"><defs><filter height="300%" id="f1ronj4dwj7ktb" width="300%" x="-1" y="-1"><feGaussianBlur result="blurOut" stdDeviation="2.0"/><feColorMatrix in="blurOut" result="blurOut2" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .4 0"/><feOffset dx="4.0" dy="4.0" in="blurOut2" result="blurOut3"/><feBlend in="SourceGraphic" in2="blurOut3" mode="normal"/></filter></defs><g><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="56" x="409.5" y="23.5352">Paxos 2</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="68" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="208" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="346" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="482" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="618" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="749" y="78.9766"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="73" x2="73" y1="68.9766" y2="1275.709"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="213" x2="213" y1="68.9766" y2="1275.709"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="351" x2="351" y1="68.9766" y2="1275.709"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="487" x2="487" y1="68.9766" y2="1275.709"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="623" x2="623" y1="68.9766" y2="1275.709"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="754" x2="754" y1="68.9766" y2="1275.709"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="28" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="35" y="54.0234">proposer1</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="28" y="1274.709"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="35" y="1295.2441">proposer1</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="168" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="175" y="54.0234">proposer2</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="168" y="1274.709"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="175" y="1295.2441">proposer2</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="308" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="315" y="54.0234">acceptor1</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="308" y="1274.709"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="315" y="1295.2441">acceptor1</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="444" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="451" y="54.0234">acceptor2</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="444" y="1274.709"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="451" y="1295.2441">acceptor2</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="580" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="587" y="54.0234">acceptor3</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="580" y="1274.709"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="587" y="1295.2441">acceptor3</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="72" x="716" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="58" x="723" y="54.0234">learner1</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="72" x="716" y="1274.709"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="58" x="723" y="1295.2441">learner1</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="68" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="208" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="346" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="482" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="618" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="749" y="78.9766"/><polygon fill="#000000" points="334,111.5977,344,115.5977,334,119.5977,338,115.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="115.5977" y2="115.5977"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="85" y="95.5449">Prepare request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="85" y="110.8555">Proposal(7, 1)</text><polygon fill="#000000" points="470,125.5977,480,129.5977,470,133.5977,474,129.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="129.5977" y2="129.5977"/><polygon fill="#000000" points="606,139.5977,616,143.5977,606,147.5977,610,143.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="143.5977" y2="143.5977"/><polygon fill="#000000" points="89,184.2188,79,188.2188,89,192.2188,85,188.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="345" y1="188.2188" y2="188.2188"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="95" y="168.166">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="95" y="183.4766">Proposal(7, 1)</text><polygon fill="#000000" points="89,198.2188,79,202.2188,89,206.2188,85,202.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="481" y1="202.2188" y2="202.2188"/><polygon fill="#000000" points="89,212.2188,79,216.2188,89,220.2188,85,216.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="617" y1="216.2188" y2="216.2188"/><polygon fill="#000000" points="334,256.8398,344,260.8398,334,264.8398,338,260.8398" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="340" y1="260.8398" y2="260.8398"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="225" y="240.7871">Prepare request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="225" y="256.0977">Proposal(8, 2)</text><polygon fill="#000000" points="470,270.8398,480,274.8398,470,278.8398,474,274.8398" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="476" y1="274.8398" y2="274.8398"/><polygon fill="#000000" points="606,284.8398,616,288.8398,606,292.8398,610,288.8398" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="612" y1="288.8398" y2="288.8398"/><polygon fill="#000000" points="229,329.4609,219,333.4609,229,337.4609,225,333.4609" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="345" y1="333.4609" y2="333.4609"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="235" y="313.4082">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="235" y="328.7188">Proposal(8, 2)</text><polygon fill="#000000" points="229,343.4609,219,347.4609,229,351.4609,225,347.4609" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="481" y1="347.4609" y2="347.4609"/><polygon fill="#000000" points="229,357.4609,219,361.4609,229,365.4609,225,361.4609" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="617" y1="361.4609" y2="361.4609"/><polygon fill="#000000" points="334,402.082,344,406.082,334,410.082,338,406.082" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="406.082" y2="406.082"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="85" y="386.0293">Accept request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="85" y="401.3398">Proposal(7, 1)</text><polygon fill="#000000" points="470,416.082,480,420.082,470,424.082,474,420.082" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="420.082" y2="420.082"/><polygon fill="#000000" points="606,430.082,616,434.082,606,438.082,610,434.082" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="434.082" y2="434.082"/><polygon fill="#000000" points="89,474.7031,79,478.7031,89,482.7031,85,478.7031" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="345" y1="478.7031" y2="478.7031"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="69" x="95" y="458.6504">Accept Fail</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="95" y="473.9609">Proposal(8, 2)</text><polygon fill="#000000" points="89,488.7031,79,492.7031,89,496.7031,85,492.7031" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="481" y1="492.7031" y2="492.7031"/><polygon fill="#000000" points="89,502.7031,79,506.7031,89,510.7031,85,506.7031" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="617" y1="506.7031" y2="506.7031"/><polygon fill="#000000" points="470,547.3242,480,551.3242,470,555.3242,474,551.3242" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="476" y1="551.3242" y2="551.3242"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="225" y="531.2715">Accept request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="225" y="546.582">Proposal(8, 2)</text><polygon fill="#000000" points="229,591.9453,219,595.9453,229,599.9453,225,595.9453" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="481" y1="595.9453" y2="595.9453"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="235" y="575.8926">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="235" y="591.2031">Proposal(8, 2)</text><polygon fill="#000000" points="737,636.5664,747,640.5664,737,644.5664,741,640.5664" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="492" x2="743" y1="640.5664" y2="640.5664"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="499" y="620.5137">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="499" y="635.8242">Proposal(8, 2)</text><polygon fill="#000000" points="334,681.1875,344,685.1875,334,689.1875,338,685.1875" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="685.1875" y2="685.1875"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="85" y="665.1348">Prepare request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="85" y="680.4453">Proposal(13, 1)</text><polygon fill="#000000" points="470,695.1875,480,699.1875,470,703.1875,474,699.1875" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="699.1875" y2="699.1875"/><polygon fill="#000000" points="606,709.1875,616,713.1875,606,717.1875,610,713.1875" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="713.1875" y2="713.1875"/><polygon fill="#000000" points="89,769.1191,79,773.1191,89,777.1191,85,773.1191" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="481" y1="773.1191" y2="773.1191"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="95" y="737.7559">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="82" x="95" y="753.0664">But Accepted</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="95" y="768.377">Proposal(8, 2)</text><polygon fill="#000000" points="89,813.7402,79,817.7402,89,821.7402,85,817.7402" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="345" y1="817.7402" y2="817.7402"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="95" y="797.6875">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="95" y="812.998">Proposal(13, 1)</text><polygon fill="#000000" points="89,827.7402,79,831.7402,89,835.7402,85,831.7402" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="617" y1="831.7402" y2="831.7402"/><polygon fill="#000000" points="334,872.3613,344,876.3613,334,880.3613,338,876.3613" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="340" y1="876.3613" y2="876.3613"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="225" y="856.3086">Accept request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="225" y="871.6191">Proposal(8, 2)</text><polygon fill="#000000" points="606,886.3613,616,890.3613,606,894.3613,610,890.3613" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="612" y1="890.3613" y2="890.3613"/><polygon fill="#000000" points="229,930.9824,219,934.9824,229,938.9824,225,934.9824" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="345" y1="934.9824" y2="934.9824"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="69" x="235" y="914.9297">Accept Fail</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="235" y="930.2402">Proposal(8, 2)</text><polygon fill="#000000" points="229,944.9824,219,948.9824,229,952.9824,225,948.9824" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="617" y1="948.9824" y2="948.9824"/><polygon fill="#000000" points="334,989.6035,344,993.6035,334,997.6035,338,993.6035" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="993.6035" y2="993.6035"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="85" y="973.5508">Accept request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="85" y="988.8613">Proposal(13, 2)</text><polygon fill="#000000" points="470,1003.6035,480,1007.6035,470,1011.6035,474,1007.6035" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="1007.6035" y2="1007.6035"/><polygon fill="#000000" points="606,1017.6035,616,1021.6035,606,1025.6035,610,1021.6035" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="1021.6035" y2="1021.6035"/><polygon fill="#000000" points="229,1062.2246,219,1066.2246,229,1070.2246,225,1066.2246" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="345" y1="1066.2246" y2="1066.2246"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="235" y="1046.1719">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="235" y="1061.4824">Proposal(13, 2)</text><polygon fill="#000000" points="737,1106.8457,747,1110.8457,737,1114.8457,741,1110.8457" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="356" x2="743" y1="1110.8457" y2="1110.8457"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="363" y="1090.793">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="363" y="1106.1035">Proposal(13, 2)</text><polygon fill="#000000" points="229,1151.4668,219,1155.4668,229,1159.4668,225,1155.4668" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="481" y1="1155.4668" y2="1155.4668"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="235" y="1135.4141">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="235" y="1150.7246">Proposal(13, 2)</text><polygon fill="#000000" points="737,1196.0879,747,1200.0879,737,1204.0879,741,1200.0879" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="492" x2="743" y1="1200.0879" y2="1200.0879"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="499" y="1180.0352">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="499" y="1195.3457">Proposal(13, 2)</text><line style="stroke: #000000; stroke-width: 1.0;" x1="759" x2="801" y1="1244.709" y2="1244.709"/><line style="stroke: #000000; stroke-width: 1.0;" x1="801" x2="801" y1="1244.709" y2="1257.709"/><line style="stroke: #000000; stroke-width: 1.0;" x1="760" x2="801" y1="1257.709" y2="1257.709"/><polygon fill="#000000" points="770,1253.709,760,1257.709,770,1261.709,766,1257.709" style="stroke: #000000; stroke-width: 1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="45" x="766" y="1224.6563">chosen</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="766" y="1239.9668">Proposal(13, 2)</text><!--
+@startuml
+title Paxos 2
+
+skinparam sequence {
+ArrowColor black
+LifeLineBorderColor black
+
+ParticipantBorderColor black
+ParticipantBackgroundColor white
+ParticipantPadding 20
+}
+
+
+participant proposer1
+activate proposer1
+participant proposer2
+activate proposer2
+
+participant acceptor1
+activate acceptor1
+participant acceptor2
+activate acceptor2
+participant acceptor3
+activate acceptor3
+
+participant learner1
+activate learner1
+
+
+proposer1 -> acceptor1:Prepare request \nProposal(7, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 - -> proposer1:Promise Success\nProposal(7, 1)
+acceptor2 - -> proposer1
+acceptor3 - -> proposer1
+
+proposer2 -> acceptor1:Prepare request \nProposal(8, 2)
+proposer2 -> acceptor2
+proposer2 -> acceptor3
+
+acceptor1 - -> proposer2:Promise Success\nProposal(8, 2)
+acceptor2 - -> proposer2
+acceptor3 - -> proposer2
+
+proposer1 -> acceptor1:Accept request \nProposal(7, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+
+
+acceptor1 - -> proposer1:Accept Fail\nProposal(8, 2)
+acceptor2 - -> proposer1
+acceptor3 - -> proposer1
+
+
+proposer2 -> acceptor2:Accept request \nProposal(8, 2)
+
+acceptor2 - -> proposer2:Accept \nProposal(8, 2)
+acceptor2 -> learner1:Accept \nProposal(8, 2)
+
+proposer1 -> acceptor1:Prepare request \nProposal(13, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor2 - -> proposer1:Promise Success\nBut Accepted \nProposal(8, 2)
+acceptor1 - -> proposer1:Promise Success\nProposal(13, 1)
+acceptor3 - -> proposer1
+
+proposer2 -> acceptor1:Accept request \nProposal(8, 2)
+proposer2 -> acceptor3
+
+acceptor1 - -> proposer2:Accept Fail\nProposal(8, 2)
+acceptor3 - -> proposer2
+
+proposer1 -> acceptor1:Accept request \nProposal(13, 2)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 - -> proposer2:Accept \nProposal(13, 2)
+acceptor1 -> learner1:Accept \nProposal(13, 2)
+
+
+acceptor2 - -> proposer2:Accept \nProposal(13, 2)
+acceptor2 -> learner1:Accept \nProposal(13, 2)
+
+learner1 -> learner1:chosen \nProposal(13, 2)
+
+@enduml
+
+PlantUML version 1.2019.01(Sun Feb 10 00:32:04 JST 2019)
+(GPL source distribution)
+Java Runtime: OpenJDK Runtime Environment
+JVM: OpenJDK 64-Bit Server VM
+Java Version: 11.0.1+13
+Operating System: Mac OS X
+OS Version: 10.13.6
+Default Encoding: UTF-8
+Language: ja
+Country: JP
+--></g></svg>
\ No newline at end of file
Binary file final_pre/images/paxos3.pdf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/final_pre/images/paxos3.pu	Tue Feb 19 21:49:55 2019 +0900
@@ -0,0 +1,112 @@
+@startuml
+title Paxos 3
+/' ======= style ======= '/
+
+skinparam sequence {
+ArrowColor black
+LifeLineBorderColor black
+
+ParticipantBorderColor black
+ParticipantBackgroundColor white
+ParticipantPadding 20
+}
+
+/' ======= node name ======= '/
+
+/' === proposers === '/
+participant proposer1
+activate proposer1
+participant proposer2
+activate proposer2
+
+/' === acceptors === '/
+participant acceptor1
+activate acceptor1
+participant acceptor2
+activate acceptor2
+participant acceptor3
+activate acceptor3
+
+/' === learners === '/
+participant learner1
+activate learner1
+
+/' ======= uml ======= '/
+
+proposer1 -> acceptor1:Prepare request \n\
+Proposal(7, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 --> proposer1:Promise Success\n\
+Proposal(7, 1)
+acceptor2 --> proposer1
+acceptor3 --> proposer1
+
+proposer1 -> acceptor3:Accept Request \n\
+Proposal(7, 1)
+acceptor3 --> proposer1: Accept \n\
+Proposal(7,1)
+acceptor3 -> learner1:Accept \n\
+Proposal(7, 1)
+
+
+proposer2 -> acceptor1:Prepare request \n\
+Proposal(8, 2)
+proposer2 -> acceptor2
+proposer2 -> acceptor3
+
+acceptor1 --> proposer2:Promise Success\n\
+Proposal(8, 2)
+acceptor2 --> proposer2
+acceptor3 --> proposer2:Promise Success \n\
+But Accepted \n\
+Proposal(7, 1)
+
+proposer1 -> acceptor1:Accept request \n\
+Proposal(7, 1)
+proposer1 -> acceptor2
+
+acceptor1 --> proposer1:Accept Fail\n\
+Promised \n\
+Proposal(8, 2)
+acceptor2 --> proposer1
+
+
+proposer1 -> acceptor1:Prepare request \n\
+Proposal(13, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 --> proposer1:Promise Success\n\
+Proposal(13, 1)
+acceptor2 --> proposer1
+acceptor3 --> proposer1
+
+
+proposer1 -> acceptor1:Accept request \n\
+Proposal(13, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 --> proposer1:Accept \n\
+Proposal(13, 1)
+acceptor1 -> learner1:Accept \n\
+Proposal(13, 1)
+
+acceptor2 --> proposer1:Accept \n\
+Proposal(13, 1)
+acceptor2 -> learner1:Accept \n\
+Proposal(13, 1)
+
+
+
+acceptor3 --> proposer1:Accept \n\
+Proposal(13, 1)
+acceptor3 -> learner1:Accept \n\
+Proposal(13, 1)
+
+learner1 -> learner1:chosen \n\
+Proposal(13, 1)
+
+@enduml
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/final_pre/images/paxos3.svg	Tue Feb 19 21:49:55 2019 +0900
@@ -0,0 +1,97 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentScriptType="application/ecmascript" contentStyleType="text/css" height="1275px" preserveAspectRatio="none" style="width:872px;height:1275px;" version="1.1" viewBox="0 0 872 1275" width="872px" zoomAndPan="magnify"><defs><filter height="300%" id="f1jrqdh23d0xyz" width="300%" x="-1" y="-1"><feGaussianBlur result="blurOut" stdDeviation="2.0"/><feColorMatrix in="blurOut" result="blurOut2" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .4 0"/><feOffset dx="4.0" dy="4.0" in="blurOut2" result="blurOut3"/><feBlend in="SourceGraphic" in2="blurOut3" mode="normal"/></filter></defs><g><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="56" x="409.5" y="23.5352">Paxos 3</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="68" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="208" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="346" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="482" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="618" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="749" y="78.9766"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="73" x2="73" y1="68.9766" y2="1235.0195"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="213" x2="213" y1="68.9766" y2="1235.0195"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="351" x2="351" y1="68.9766" y2="1235.0195"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="487" x2="487" y1="68.9766" y2="1235.0195"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="623" x2="623" y1="68.9766" y2="1235.0195"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="754" x2="754" y1="68.9766" y2="1235.0195"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="28" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="35" y="54.0234">proposer1</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="28" y="1234.0195"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="35" y="1254.5547">proposer1</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="168" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="175" y="54.0234">proposer2</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="168" y="1234.0195"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="175" y="1254.5547">proposer2</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="308" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="315" y="54.0234">acceptor1</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="308" y="1234.0195"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="315" y="1254.5547">acceptor1</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="444" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="451" y="54.0234">acceptor2</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="444" y="1234.0195"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="451" y="1254.5547">acceptor2</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="580" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="587" y="54.0234">acceptor3</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="580" y="1234.0195"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="587" y="1254.5547">acceptor3</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="72" x="716" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="58" x="723" y="54.0234">learner1</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="72" x="716" y="1234.0195"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="58" x="723" y="1254.5547">learner1</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="68" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="208" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="346" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="482" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="618" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="749" y="78.9766"/><polygon fill="#000000" points="334,111.5977,344,115.5977,334,119.5977,338,115.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="115.5977" y2="115.5977"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="85" y="95.5449">Prepare request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="85" y="110.8555">Proposal(7, 1)</text><polygon fill="#000000" points="470,125.5977,480,129.5977,470,133.5977,474,129.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="129.5977" y2="129.5977"/><polygon fill="#000000" points="606,139.5977,616,143.5977,606,147.5977,610,143.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="143.5977" y2="143.5977"/><polygon fill="#000000" points="89,184.2188,79,188.2188,89,192.2188,85,188.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="345" y1="188.2188" y2="188.2188"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="95" y="168.166">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="95" y="183.4766">Proposal(7, 1)</text><polygon fill="#000000" points="89,198.2188,79,202.2188,89,206.2188,85,202.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="481" y1="202.2188" y2="202.2188"/><polygon fill="#000000" points="89,212.2188,79,216.2188,89,220.2188,85,216.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="617" y1="216.2188" y2="216.2188"/><polygon fill="#000000" points="606,256.8398,616,260.8398,606,264.8398,610,260.8398" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="260.8398" y2="260.8398"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="85" y="240.7871">Accept Request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="85" y="256.0977">Proposal(7, 1)</text><polygon fill="#000000" points="89,301.4609,79,305.4609,89,309.4609,85,305.4609" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="617" y1="305.4609" y2="305.4609"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="95" y="285.4082">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="82" x="95" y="300.7188">Proposal(7,1)</text><polygon fill="#000000" points="737,346.082,747,350.082,737,354.082,741,350.082" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="628" x2="743" y1="350.082" y2="350.082"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="635" y="330.0293">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="635" y="345.3398">Proposal(7, 1)</text><polygon fill="#000000" points="334,390.7031,344,394.7031,334,398.7031,338,394.7031" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="340" y1="394.7031" y2="394.7031"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="225" y="374.6504">Prepare request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="225" y="389.9609">Proposal(8, 2)</text><polygon fill="#000000" points="470,404.7031,480,408.7031,470,412.7031,474,408.7031" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="476" y1="408.7031" y2="408.7031"/><polygon fill="#000000" points="606,418.7031,616,422.7031,606,426.7031,610,422.7031" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="612" y1="422.7031" y2="422.7031"/><polygon fill="#000000" points="229,463.3242,219,467.3242,229,471.3242,225,467.3242" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="345" y1="467.3242" y2="467.3242"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="235" y="447.2715">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="235" y="462.582">Proposal(8, 2)</text><polygon fill="#000000" points="229,477.3242,219,481.3242,229,485.3242,225,481.3242" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="481" y1="481.3242" y2="481.3242"/><polygon fill="#000000" points="229,537.2559,219,541.2559,229,545.2559,225,541.2559" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="617" y1="541.2559" y2="541.2559"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="235" y="505.8926">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="82" x="235" y="521.2031">But Accepted</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="235" y="536.5137">Proposal(7, 1)</text><polygon fill="#000000" points="334,581.877,344,585.877,334,589.877,338,585.877" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="585.877" y2="585.877"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="85" y="565.8242">Accept request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="85" y="581.1348">Proposal(7, 1)</text><polygon fill="#000000" points="470,595.877,480,599.877,470,603.877,474,599.877" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="599.877" y2="599.877"/><polygon fill="#000000" points="89,655.8086,79,659.8086,89,663.8086,85,659.8086" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="345" y1="659.8086" y2="659.8086"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="69" x="95" y="624.4453">Accept Fail</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="58" x="95" y="639.7559">Promised</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="95" y="655.0664">Proposal(8, 2)</text><polygon fill="#000000" points="89,669.8086,79,673.8086,89,677.8086,85,673.8086" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="481" y1="673.8086" y2="673.8086"/><polygon fill="#000000" points="334,714.4297,344,718.4297,334,722.4297,338,718.4297" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="718.4297" y2="718.4297"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="85" y="698.377">Prepare request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="85" y="713.6875">Proposal(13, 1)</text><polygon fill="#000000" points="470,728.4297,480,732.4297,470,736.4297,474,732.4297" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="732.4297" y2="732.4297"/><polygon fill="#000000" points="606,742.4297,616,746.4297,606,750.4297,610,746.4297" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="746.4297" y2="746.4297"/><polygon fill="#000000" points="89,787.0508,79,791.0508,89,795.0508,85,791.0508" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="345" y1="791.0508" y2="791.0508"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="95" y="770.998">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="95" y="786.3086">Proposal(13, 1)</text><polygon fill="#000000" points="89,801.0508,79,805.0508,89,809.0508,85,805.0508" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="481" y1="805.0508" y2="805.0508"/><polygon fill="#000000" points="89,815.0508,79,819.0508,89,823.0508,85,819.0508" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="617" y1="819.0508" y2="819.0508"/><polygon fill="#000000" points="334,859.6719,344,863.6719,334,867.6719,338,863.6719" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="863.6719" y2="863.6719"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="85" y="843.6191">Accept request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="85" y="858.9297">Proposal(13, 1)</text><polygon fill="#000000" points="470,873.6719,480,877.6719,470,881.6719,474,877.6719" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="877.6719" y2="877.6719"/><polygon fill="#000000" points="606,887.6719,616,891.6719,606,895.6719,610,891.6719" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="891.6719" y2="891.6719"/><polygon fill="#000000" points="89,932.293,79,936.293,89,940.293,85,936.293" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="345" y1="936.293" y2="936.293"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="95" y="916.2402">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="95" y="931.5508">Proposal(13, 1)</text><polygon fill="#000000" points="737,976.9141,747,980.9141,737,984.9141,741,980.9141" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="356" x2="743" y1="980.9141" y2="980.9141"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="363" y="960.8613">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="363" y="976.1719">Proposal(13, 1)</text><polygon fill="#000000" points="89,1021.5352,79,1025.5352,89,1029.5352,85,1025.5352" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="481" y1="1025.5352" y2="1025.5352"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="95" y="1005.4824">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="95" y="1020.793">Proposal(13, 1)</text><polygon fill="#000000" points="737,1066.1563,747,1070.1563,737,1074.1563,741,1070.1563" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="492" x2="743" y1="1070.1563" y2="1070.1563"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="499" y="1050.1035">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="499" y="1065.4141">Proposal(13, 1)</text><polygon fill="#000000" points="89,1110.7773,79,1114.7773,89,1118.7773,85,1114.7773" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="617" y1="1114.7773" y2="1114.7773"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="95" y="1094.7246">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="95" y="1110.0352">Proposal(13, 1)</text><polygon fill="#000000" points="737,1155.3984,747,1159.3984,737,1163.3984,741,1159.3984" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="628" x2="743" y1="1159.3984" y2="1159.3984"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="635" y="1139.3457">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="635" y="1154.6563">Proposal(13, 1)</text><line style="stroke: #000000; stroke-width: 1.0;" x1="759" x2="801" y1="1204.0195" y2="1204.0195"/><line style="stroke: #000000; stroke-width: 1.0;" x1="801" x2="801" y1="1204.0195" y2="1217.0195"/><line style="stroke: #000000; stroke-width: 1.0;" x1="760" x2="801" y1="1217.0195" y2="1217.0195"/><polygon fill="#000000" points="770,1213.0195,760,1217.0195,770,1221.0195,766,1217.0195" style="stroke: #000000; stroke-width: 1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="45" x="766" y="1183.9668">chosen</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="766" y="1199.2773">Proposal(13, 1)</text><!--
+@startuml
+title Paxos 3
+
+skinparam sequence {
+ArrowColor black
+LifeLineBorderColor black
+
+ParticipantBorderColor black
+ParticipantBackgroundColor white
+ParticipantPadding 20
+}
+
+
+participant proposer1
+activate proposer1
+participant proposer2
+activate proposer2
+
+participant acceptor1
+activate acceptor1
+participant acceptor2
+activate acceptor2
+participant acceptor3
+activate acceptor3
+
+participant learner1
+activate learner1
+
+
+proposer1 -> acceptor1:Prepare request \nProposal(7, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 - -> proposer1:Promise Success\nProposal(7, 1)
+acceptor2 - -> proposer1
+acceptor3 - -> proposer1
+
+proposer1 -> acceptor3:Accept Request \nProposal(7, 1)
+acceptor3 - -> proposer1: Accept \nProposal(7,1)
+acceptor3 -> learner1:Accept \nProposal(7, 1)
+
+
+proposer2 -> acceptor1:Prepare request \nProposal(8, 2)
+proposer2 -> acceptor2
+proposer2 -> acceptor3
+
+acceptor1 - -> proposer2:Promise Success\nProposal(8, 2)
+acceptor2 - -> proposer2
+acceptor3 - -> proposer2:Promise Success \nBut Accepted \nProposal(7, 1)
+
+proposer1 -> acceptor1:Accept request \nProposal(7, 1)
+proposer1 -> acceptor2
+
+acceptor1 - -> proposer1:Accept Fail\nPromised \nProposal(8, 2)
+acceptor2 - -> proposer1
+
+
+proposer1 -> acceptor1:Prepare request \nProposal(13, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 - -> proposer1:Promise Success\nProposal(13, 1)
+acceptor2 - -> proposer1
+acceptor3 - -> proposer1
+
+
+proposer1 -> acceptor1:Accept request \nProposal(13, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 - -> proposer1:Accept \nProposal(13, 1)
+acceptor1 -> learner1:Accept \nProposal(13, 1)
+
+acceptor2 - -> proposer1:Accept \nProposal(13, 1)
+acceptor2 -> learner1:Accept \nProposal(13, 1)
+
+
+
+acceptor3 - -> proposer1:Accept \nProposal(13, 1)
+acceptor3 -> learner1:Accept \nProposal(13, 1)
+
+learner1 -> learner1:chosen \nProposal(13, 1)
+
+@enduml
+
+PlantUML version 1.2019.01(Sun Feb 10 00:32:04 JST 2019)
+(GPL source distribution)
+Java Runtime: OpenJDK Runtime Environment
+JVM: OpenJDK 64-Bit Server VM
+Java Version: 11.0.1+13
+Operating System: Mac OS X
+OS Version: 10.13.6
+Default Encoding: UTF-8
+Language: ja
+Country: JP
+--></g></svg>
\ No newline at end of file
Binary file final_pre/images/proof-of-work-fork.graffle has changed
Binary file final_pre/images/proof-of-work-fork.pdf has changed
Binary file final_pre/images/proof-of-work.graffle has changed
Binary file final_pre/images/proof-of-work.pdf has changed
Binary file final_pre/images/ring.pdf has changed
Binary file final_pre/images/名称未設定3.graffle has changed
Binary file final_pre/pre.pdf has changed
--- a/final_pre/pre.tex	Tue Feb 19 15:28:07 2019 +0900
+++ b/final_pre/pre.tex	Tue Feb 19 21:49:55 2019 +0900
@@ -3,6 +3,7 @@
 \usepackage{picins}
 \usepackage{fancyhdr}
 \usepackage{abstract}
+\usepackage{here}
 \usepackage{url}
 %\pagestyle{fancy}
 \lhead{\parpic{\includegraphics[height=1zw,keepaspectratio,bb=0 0 251 246]{pic/emblem-bitmap.pdf}}琉球大学主催 工学部情報工学科 卒業研究発表会}
@@ -23,14 +24,13 @@
 \renewcommand{\abstractname}{Abstract}
 \begin{document}
 \title{Blockchain implements in Christie}
-%\title{Supporting NAT in Screen Sharing System TreeVNC}
 \author{155753A 氏名 {赤堀}{貴一} 指導教員 : 河野 真治}
 \date{}
 \twocolumn [
 \maketitle
 \begin{onecolabstract}
 
-Data corruption and inconsistency in computers causes severe problem. Therefore, detect corruption and inconsistency by Blockchain. The Blockchain is a distributed system.  It is possible to compare between hash value and data which is correct. Even if there are incorrect operation and tampering, data are possible to recover with Blockchain.
+Data corruption and inconsistency in computers causes severe problem. Therefore, we detect corruption and inconsistency by Blockchain. The Blockchain is a distributed system.  It is possible to compare between hash value and data which is correct. Even if there are incorrect operation and tampering, data are possible to recover with Blockchain.
 
 We are developing Christie and GearsOS. Christie is a distributed framework and GearsOS is a Operating System. GearsOS Filesystem will refer to Christie. if implementing block chain in Christie and implementing it in GearsOS, makes it possible to detect data corruption and inconsistency in the GearsOS file system. In addition, it is possible to configure decentralized distributed network between Gears OS. if it does not configure, data is protected. So, our purpose can be achieved.
 
@@ -40,14 +40,13 @@
 
 \section{研究目的}
 
-コンピュータにおいてデータの破損や不整合は深刻な異常を引き起こす原因となる. そのため, 破損, 不整合を検知するためにブロックチェーン技術を用いたい.  ブロックチェーンは分散ネットワーク技術であり, データの破損や不整合をハッシュ値によって比較できる. そして, 誤操作や改ざんがあった場合でも, ブロックチェーンを用いることでデータの追跡が行える. 
+ブロックチェーンとは分散型台帳技術とも呼ばれ, 複数のトランザクションをまとめたブロックをHashでつなげたものを, システムに参加しているすべてのノードが保持できる技術である. 
 
-当研究室では分散フレームワークとしてChristieを開発しており, これはGearsOSにファイルシステムに組み込む予定がある. そのため, Christieにブロックチェーンを実装し, GearsOSに組み込むことにより, GearsOSのファイルシステムにおいてデータの破損, 不整合を検知できる. また, GearsOS同士による分散ファイルシステムを構成することができ, 非中央的にデータの分散ができるようになる. もし分散システムを構成しない場合でもデータの整合性保持は行え, 上記の目的は達成できる.
+当研究室では分散フレームワークとしてChristieを開発している. これはGearsOSにファイルシステムに組み込む予定がある. そのため, Christieにブロックチェーンを実装し, GearsOSに組み込むことにより, GearsOSのファイルシステムにおいてデータの不整合を検知できる. また, GearsOS同士による分散ファイルシステムを構成することができ, 非中央的にデータの分散ができるようになる. もし分散システムを構成しない場合でもデータの整合性保持は行え, 上記の目的は達成できる.
 
 本研究では, Christieにブロックチェーンを実装し, 実際に学科のPCクラスタ上の分散環境で動かす.
 
 \section{ブロックチェーン}
-ブロックチェーンとは分散型台帳技術とも呼ばれ, 複数のトランザクションをまとめたブロックをつなげたものを, システムに参加しているすべてのノードが参照できる技術である. 
 ブロックチェーンを実装することは次のようなメリットが有る.
 
 \begin{itemize}
@@ -65,7 +64,7 @@
 
 ブロックは図\ref{fig:chain}のようにhashでつながっている. 一つのブロックが変更されれば, その後に連なるブロックも整合性が保たれないため, これによってデータの整合性保持が行える.
 
-\begin{figure}[h]
+\begin{figure}[H]
 \centering
   \fbox{
    \includegraphics[scale=0.3]{./images/chain.pdf}
@@ -75,7 +74,7 @@
 \end{figure}
 
 
-トランザクション, ブロックともにノード間で伝搬され, ノードごとに検証される. そして検証を終え, 不正なトランザクション, ブロックであれば破棄する. 検証に通った場合は, トランザクションはTransaction PoolにTransactionを貯めておき, ブロックはブロックチェーンに取り組まれ, また検証したノードからトランザクション, ブロックがブロードキャストされる. ノード間はP2Pで通信が行われている.
+トランザクション, ブロックともにノード間で伝搬され, ノードごとに検証される. そして検証を終え, 不正なトランザクション, ブロックであれば破棄する. 検証に通った場合は, トランザクションはTransaction PoolにTransactionを貯めておき, ブロックはブロックチェーンに取り組まれ, 検証したノードからトランザクション, ブロックがブロードキャストされる. ノード間はP2Pで通信が行われている.
 
 同時に異なるノードで複数のブロックができることを, forkという. これによってブロックチェーンの分岐が起こる. 
 ブロックチェーンの分岐を収束させるにはコンセンサスアルゴリズムを使用する.
@@ -83,8 +82,63 @@
 \section{コンセンサスアルゴリズム}
 コンセンサスアルゴリズムとは, 一意の値を分散環境上で決めるためのアルゴリズムである.
 
-今回は分散アルゴリズムとしてPaxosを実装した.
+今回は分散アルゴリズムとしてPaxosを実装した. 
+
+Paxosは3つの役割のノードがある.
+
+\begin{description}
+\item[proposer] 値を提案するノード.
+\item[acceptor] 値を決めるノード.
+\item[learner] acceptorから値を集計し, 過半数以上のacceptorが持っている値を決める.
+\end{description}
+
+Paxosのアルゴリズムに入る前に, 定義された用語を説明する. 以下にその用語の定義を示す.\begin{description}
+\item[提案] 提案は, 異なる提案ごとにユニークな提案番号と値からなる. 提案番号とは, 異なる提案を見分けるための識別子であり, 単調増加する. 値は一意に決まってほしいデータである.
+\item[値(提案)がacceptされる] acceptorによって値(提案)が決まること. 
+\item[値(提案)が選択(chosen)される] 過半数以上のacceptorによって, 値(提案)がacceptされた場合, それを値(提案)が選択されたと言う.
+\end{description}
+
+
+Paxosのアルゴリズムは2フェーズある. 
+
+1つ目のフェーズ, prepare-promiseは次のような手順で動作する. 
+\begin{enumerate}
+\item proposerは提案番号nを設定した提案を過半数以上のacceptorに送る. これをprepareリクエストという. 
+\item acceptorはprepareリクエストが来たら次の動作をする. 
+\begin{enumerate}
+\item もし, 以前に送られたprepareリクエストの提案番号より, 今送られてきたprepareリクエストの提案番号のほうが大きければ, それ以下の提案番号の提案を拒否するという約束を返す. この状態をPromiseしたという.
+\item もし, 値がすでにacceptされていれば, accpetされた提案を返す. 
+\end{enumerate}
 
+\end{enumerate}
+
+2つ目のフェーズ, accept-acceptedは次のような手順で動作する. 
+\begin{enumerate}
+\item proposerは過半数のacceptorから返信が来たならば, 次の提案をacceptorに送る. これをacceptリクエストという.
+\begin{enumerate}
+\item もし, 約束のみが返ってきているならば, 任意の値vをprepareリクエストで送った提案に設定する.
+\item もし, acceptされた提案が返ってきたら, その中で最大の提案番号を持つ提案の値v'をprepareリクエストで送った提案の値として設定する.
+\end{enumerate}
+
+\item acceptorはacceptリクエストが来た場合, Promiseした提案よりもacceptリクエストで提案された提案番号が低ければ, その提案を拒否する. それ以外の場合はacceptする.
+\end{enumerate}
+
+
+このアルゴリズムによって, 各accptorごとに値が一意に決まる. 値を集計, 選択するのはLearnerの役割である. Learnerが値を集計する方法には2つの方法がある.
+
+\begin{enumerate}
+\item Acceptorによって値がacceptされた時に, 各Learnerに送信される. ただし, Message通信量が, $Acceptorの数 \times Learnerの数$になる.
+\item 1つのLearnerが各Learnerに選択された値を送信する. 1の方法に比べてMessage通信量が少なくなる($Acceptorの数 + Learnerの数$になる)代わりに, そのLearnerが故障した場合は各LearnerがMessageを受け取れない.
+\end{enumerate}
+
+2つの方法はメッセージ通信量と耐障害性のトレードオフになっていることがわかる.
+
+Paxosでコンセンサスを取ることは, Proof of Workと比較して次のようなメリットがある.
+
+\begin{itemize}
+\item CPUのリソースを消費しない
+\item Transactionの確定に時間がかからない.
+\end{itemize}
 
 \section{Christie}
 
@@ -103,10 +157,60 @@
 
 CGはCGMによって実行されるが, 実行するにはCGに必要なDGが全て揃う必要がある. もしDGが全て揃わない場合, CGMはずっとlistenし, データが揃うまで実行を待つ.
 
+\section{Christieでのブロックチェーンの実装}
+Christieでブロックチェーンのブロック, トランザクション, Paxosを実装した. 
+
+その際の, Christieの便利な点を述べる.
+
+\begin{itemize}
+\item ブロック, トランザクションを送るのが簡単. ChristieはDataGearという単位でデータを保持する. そのため, ブロックやトランザクションはDataGearに包めばいい.
+\item TopologyManagerでのテストが便利. dotファイルが有れば, TopologyManagerが任意の形でTopologyを作れる. そのため, ノードの配置については理想の環境を作れるため, 理想のテスト環境を作ることができる. 
+\item ソースコードの機能ごとにファイルが実装できるため, 見通しが良い. ChristieはCbCのgotoと同じように関数が終わるとsetupによって別の関数に移動する. そのため自然に機能ごとにファイルを作るため, 見通しが良くなる.
+\end{itemize}
+
+不便な点を以下に述べる.
+
+\begin{itemize}
+\item デバッグが難しい. DGでのkeyのスペルミスなどが起こると, CodeGearが実行されず, waitされる問題が出る.
+\item TakeFrom, PeekFromの使い方が難しい. TakeFrom, PeekFromは引数でDGM nameを指定する. しかし, DGMの名前を静的に与えるよりも, 動的に与えたい場合が多かった.
+\item Takeの待ち合わせでCGが実行されない. 2つのCGで同じ変数をTakeしようとすると, setupされた時点で変数がロックされる. このとき, 片方のCGはDGがすべて揃っているのに, すべての変数が揃っていないもう片方のCGに同名の変数がロックされ, 実行されない場合がある. 
+\end{itemize}
+
+
+
+
+\section{実験, 評価}
+ブロックチェーンにおいて, 分散環境上でテストしなければいけないのはコンセンサスアルゴリズムである. そのため, Paxosを実装し, 琉球大学のPCクラスタ上で動かした. 
+
+今回は単純化のために, 整数でコンセンサスを取る. ノードはproposerが2つ, acceptorが3つ, learnerが1つという構成で実験する.
+
+Paxosの実験は3回行った. Paxosにはlog4j2を実装しており, logを取るようにしている. そのため, そのlogから値が一意に決まるまでを調べた. 1つの実験の結果を図\ref{fig:paxos2}に示す. 
+
+\begin{figure}[h]
+\centering
+  \fbox{
+   \includegraphics[scale=0.45]{./images/paxos2.pdf}
+  }
+\caption{実験の結果1}
+\label{fig:paxos2}
+\end{figure}
+
+実際にLearnerの値が一意に決まっていることがわかる.
+
+
 
 \section{まとめ}
 
 
+本研究ではブロックチェーンと, 分散環境上で値を一意に決めるコンセンサスアルゴリズムを述べ, Christieという分散フレームワークで実際にPaxosを作り, PCクラスタ上で動かした. その結果, コンセンサスの結果として一意のデータが取り出せることがわかった. 
+
+まだPCクラスタ上ではブロックチェーンを動かすことができない. しかし, Block, Transaction, Hash生成, 署名のためのクラスはいずれも作られている. Transactionにおいてはまだファイルのデータを入れる機能は実装していないが, これらを組み合わせれば簡易的なブロックチェーンが作れる. そのため, あとはPaxosとこれらのクラスをどのようにつなげるかが問題となる.
+また, Proof of Workを行うクラスも作られている. そのため, ブロックチェーンが実装できた場合, このクラスを用いてPaxosと速度比較も行える.
+
+今後の課題としては, Paxosによるブロックチェーンを作り, 分散クラスタ上でファイルのやり取りができるかを見る. その際にどの程度スケーラビリティがあるのか, Proof of Workと比較し, どの程度速度が違うのかを見ていきたい.
+
+
+
 \nocite{*}
 \bibliographystyle{junsrt}
 \bibliography{reference}
--- a/final_pre/reference.bib	Tue Feb 19 15:28:07 2019 +0900
+++ b/final_pre/reference.bib	Tue Feb 19 21:49:55 2019 +0900
@@ -43,6 +43,21 @@
 	Read = {0},
 	Title = {Paxos Made Simple},
 	Year = {2001}}
+	
+@manual{bitcoin,
+      title  = "Bitcoin: A Peer-to-Peer Electronic Cash System",
+      author = "Satoshi Nakamoto",
+      url    = "https://bitcoin.org/bitcoin.pdf",
+      year   = "Accessed: 2019/2/15"
+    }
+    
+@manual{ethereum,
+      title  = "Ethereum Homestead Documentation",
+      author = "",
+      url    = "http://www.ethdocs.org/en/latest/",
+      year   = "Accessed: 2019/2/17"
+    }
+   
 
 @comment{BibDesk Static Groups{
 <?xml version="1.0" encoding="UTF-8"?>
Binary file slide/images/accept-accepted.pdf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/slide/images/accept-accepted.svg	Tue Feb 19 21:49:55 2019 +0900
@@ -0,0 +1,3048 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   viewBox="0 0 1122.4 793.59998"
+   height="793.59998"
+   width="1122.4"
+   xml:space="preserve"
+   id="svg2"
+   version="1.1"><metadata
+     id="metadata8"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+     id="defs6"><clipPath
+       id="clipPath20"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path18"
+         d="m 9,82.16287 h 823.8 v 430.8743 H 9 Z" /></clipPath></defs><g
+     transform="matrix(1.3333333,0,0,-1.3333333,0,793.6)"
+     id="g10"><g
+       id="g12" /><g
+       id="g14"><g
+         clip-path="url(#clipPath20)"
+         id="g16"><path
+           id="path22"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="M 4.25643,513.0371 H 1242.328 V 71.09454 H 4.25643 Z" /><path
+           id="path24"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 204.8869,205.4585 c 10.9399,-10.9398 10.9399,-28.6767 0,-39.6166 -10.9398,-10.9399 -28.6768,-10.9399 -39.6166,0 -10.9399,10.9399 -10.9399,28.6768 0,39.6166 10.9398,10.9399 28.6768,10.9399 39.6166,0" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g26"><path
+             id="path28"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 253.7715,389.047 c 13.8375,13.8375 13.8375,36.2724 0,50.1099 -13.8375,13.8375 -36.2724,13.8375 -50.1099,0 -13.8375,-13.8375 -13.8375,-36.2724 0,-50.1099 13.8375,-13.8375 36.2724,-13.8375 50.1099,0" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,185.0786,185.6502)"
+           id="g30"><g
+             id="text34"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.875,3.860001)"
+             aria-label="proposer1"><path
+               id="path712"
+               style=""
+               d="m 0.67,-5.17 v 7.14 h 0.85 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 Q 5.27,-4.1 4.97,-4.47 4.68,-4.85 4.23,-5.07 3.79,-5.29 3.19,-5.29 2.65,-5.29 2.2,-5.09 1.75,-4.9 1.54,-4.47 H 1.52 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 Q 2.06,-0.96 1.86,-1.23 1.67,-1.5 1.58,-1.85 1.49,-2.21 1.49,-2.59 q 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path714"
+               style=""
+               d="M 6.5399998,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path716"
+               style=""
+               d="m 10.34,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9000001,0 q 0,0.57 0.16,1.06 0.16,0.49 0.4800001,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.3200001,0.36 -0.4800001,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path718"
+               style=""
+               d="m 15.49,-5.17 v 7.14 h 0.85 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 h -0.02 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path720"
+               style=""
+               d="m 22.01,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path722"
+               style=""
+               d="M 27.65,-1.63 H 26.8 q 0.02,0.48 0.2,0.82 0.18,0.33 0.48,0.54 0.3,0.2 0.69,0.29 0.39,0.09 0.82,0.09 0.39,0 0.78,-0.08 0.4,-0.07 0.71,-0.26 0.32,-0.19 0.51,-0.5 0.2,-0.31 0.2,-0.78 0,-0.37 -0.15,-0.62 -0.14,-0.25 -0.38,-0.41 -0.23,-0.17 -0.54,-0.27 -0.3,-0.1 -0.62,-0.17 -0.3,-0.07 -0.6,-0.13 -0.3,-0.07 -0.54,-0.16 -0.24,-0.1 -0.4,-0.24 -0.15,-0.15 -0.15,-0.37 0,-0.2 0.1,-0.32 0.1,-0.13 0.26,-0.2 0.16,-0.08 0.35,-0.11 0.2,-0.03 0.39,-0.03 0.21,0 0.41,0.05 0.21,0.04 0.38,0.14 0.17,0.1 0.28,0.27 0.11,0.16 0.13,0.41 h 0.85 q -0.03,-0.47 -0.2,-0.78 -0.17,-0.32 -0.46,-0.5 -0.28,-0.19 -0.65,-0.26 -0.37,-0.08 -0.81,-0.08 -0.34,0 -0.69,0.09 -0.34,0.08 -0.62,0.26 -0.27,0.17 -0.45,0.45 -0.17,0.28 -0.17,0.67 0,0.5 0.25,0.78 0.25,0.28 0.62,0.44 0.38,0.15 0.82,0.24 0.44,0.08 0.81,0.19 0.38,0.1 0.63,0.27 0.25,0.17 0.25,0.5 0,0.24 -0.12,0.4 -0.12,0.15 -0.31,0.23 -0.18,0.08 -0.4,0.11 -0.22,0.03 -0.42,0.03 -0.26,0 -0.51,-0.05 -0.24,-0.05 -0.44,-0.16 -0.19,-0.12 -0.31,-0.31 -0.12,-0.2 -0.13,-0.48 z" /><path
+               id="path724"
+               style=""
+               d="m 35.72,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 H 35.7 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path726"
+               style=""
+               d="M 37.470001,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path728"
+               style=""
+               d="m 43.749999,0 v -7.09 h -0.65 q -0.07,0.4 -0.26,0.66 -0.19,0.26 -0.47,0.41 -0.27,0.15 -0.61,0.21 -0.34,0.05 -0.7,0.05 v 0.68 h 1.84 V 0 Z" /></g></g><path
+           id="path36"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 329.9907,266.7921 c 10.94,-10.9399 10.94,-28.6768 0,-39.6166 -10.9397,-10.9399 -28.6767,-10.9399 -39.6165,0 -10.94,10.9398 -10.94,28.6767 0,39.6166 10.9398,10.9399 28.6768,10.9399 39.6165,0" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g38"><path
+             id="path40"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 412.0116,311.468 c 13.8376,13.8375 13.8376,36.2724 0,50.1099 -13.8374,13.8375 -36.2724,13.8375 -50.1098,0 -13.8376,-13.8375 -13.8376,-36.2724 0,-50.1099 13.8374,-13.8375 36.2724,-13.8375 50.1098,0" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,310.1825,246.9838)"
+           id="g42"><g
+             id="text46"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor1"><path
+               id="path731"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path733"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path735"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path737"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path739"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path741"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path743"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path745"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path747"
+               style=""
+               d="m 43.190001,0 v -7.09 h -0.65 q -0.07,0.4 -0.26,0.66 -0.19,0.26 -0.47,0.41 -0.27,0.15 -0.61,0.21 -0.34,0.05 -0.7,0.05 v 0.68 h 1.84 V 0 Z" /></g></g><path
+           id="path48"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 329.9907,205.163 c 10.94,-10.9398 10.94,-28.6768 0,-39.6166 -10.9397,-10.9399 -28.6767,-10.9399 -39.6165,0 -10.94,10.9398 -10.94,28.6768 0,39.6166 10.9398,10.9399 28.6768,10.9399 39.6165,0" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g50"><path
+             id="path52"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 412.0116,389.4208 c 13.8376,13.8374 13.8376,36.2724 0,50.1098 -13.8374,13.8376 -36.2724,13.8376 -50.1098,0 -13.8376,-13.8374 -13.8376,-36.2724 0,-50.1098 13.8374,-13.8376 36.2724,-13.8376 50.1098,0" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,310.1825,185.3547)"
+           id="g54"><g
+             id="text58"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor2"><path
+               id="path750"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path752"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path754"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path756"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path758"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path760"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path762"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path764"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path766"
+               style=""
+               d="m 40.070001,-4.58 h 0.85 q -0.01,-0.32 0.06,-0.63 0.08,-0.32 0.25,-0.57 0.17,-0.25 0.43,-0.4 0.27,-0.16 0.64,-0.16 0.28,0 0.53,0.09 0.25,0.09 0.43,0.26 0.19,0.17 0.3,0.41 0.11,0.23 0.11,0.52 0,0.37 -0.12,0.65 -0.11,0.28 -0.34,0.52 -0.22,0.24 -0.56,0.48 -0.34,0.23 -0.79,0.51 -0.37,0.22 -0.71,0.47 -0.34,0.25 -0.61,0.58 -0.27,0.33 -0.45,0.78 -0.17,0.44 -0.22,1.07 h 4.63 v -0.75 h -3.64 q 0.06,-0.33 0.25,-0.58 0.2,-0.26 0.47,-0.48 0.28,-0.22 0.61,-0.41 0.33,-0.2 0.66,-0.4 0.33,-0.21 0.64,-0.44 0.31,-0.23 0.55,-0.51 0.24,-0.29 0.38,-0.65 0.15,-0.36 0.15,-0.83 0,-0.5 -0.18,-0.88 -0.17,-0.38 -0.47,-0.63 -0.3,-0.26 -0.71,-0.39 -0.4,-0.14 -0.86,-0.14 -0.56,0 -1,0.19 -0.44,0.19 -0.74,0.53 -0.29,0.33 -0.43,0.79 -0.14,0.46 -0.11,1 z" /></g></g><path
+           id="path60"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 329.9907,143.534 c 10.94,-10.9398 10.94,-28.6768 0,-39.6166 -10.9397,-10.93992 -28.6767,-10.93992 -39.6165,0 -10.94,10.9398 -10.94,28.6768 0,39.6166 10.9398,10.9399 28.6768,10.9399 39.6165,0" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g62"><path
+             id="path64"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 412.0116,467.3735 c 13.8376,13.8375 13.8376,36.2724 0,50.1099 -13.8374,13.8375 -36.2724,13.8375 -50.1098,0 -13.8376,-13.8375 -13.8376,-36.2724 0,-50.1099 13.8374,-13.8375 36.2724,-13.8375 50.1098,0" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,310.1825,123.7257)"
+           id="g66"><g
+             id="text70"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor3"><path
+               id="path769"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path771"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path773"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path775"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path777"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path779"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path781"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path783"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path785"
+               style=""
+               d="m 41.810001,-4.05 v 0.72 q 0.24,-0.03 0.51,-0.03 0.32,0 0.59,0.09 0.28,0.08 0.48,0.26 0.2,0.17 0.32,0.43 0.12,0.25 0.12,0.58 0,0.32 -0.13,0.58 -0.12,0.25 -0.33,0.43 -0.21,0.17 -0.49,0.27 -0.28,0.09 -0.59,0.09 -0.73,0 -1.11,-0.43 -0.38,-0.44 -0.4,-1.13 h -0.85 q -0.01,0.55 0.15,0.98 0.17,0.43 0.48,0.73 0.31,0.29 0.75,0.44 0.44,0.15 0.98,0.15 0.5,0 0.94,-0.13 0.45,-0.14 0.78,-0.41 0.33,-0.27 0.52,-0.67 0.2,-0.41 0.2,-0.94 0,-0.64 -0.32,-1.11 -0.31,-0.47 -0.96,-0.61 v -0.02 q 0.42,-0.19 0.7,-0.56 0.28,-0.37 0.28,-0.85 0,-0.49 -0.17,-0.85 -0.16,-0.36 -0.45,-0.59 -0.29,-0.23 -0.69,-0.34 -0.39,-0.12 -0.85,-0.12 -0.53,0 -0.94,0.17 -0.4,0.17 -0.67,0.47 -0.27,0.3 -0.42,0.72 -0.14,0.42 -0.16,0.93 h 0.85 q 0,-0.31 0.08,-0.59 0.08,-0.28 0.24,-0.49 0.17,-0.21 0.42,-0.33 0.26,-0.13 0.6,-0.13 0.54,0 0.9,0.29 0.36,0.28 0.36,0.85 0,0.28 -0.11,0.5 -0.11,0.22 -0.3,0.37 -0.18,0.14 -0.43,0.22 -0.24,0.07 -0.51,0.07 h -0.18 q -0.05,0 -0.1,0 -0.04,0 -0.09,-0.01 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g72"><path
+             id="path74"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 260.1167,398.706 86.6043,-42.1295 m -86.492,41.9784 86.0294,-41.8786" /></g><path
+           id="path76"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 283.6739,233.9876 -6.7231,-0.6545 2.0881,-4.2593 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g78"><path
+             id="path80"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 353.4268,352.9614 -8.5038,0.8279 2.6412,5.3874 z" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g82"><path
+             id="path84"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 263.3207,414.1861 78.5674,-0.041 m -78.4424,-0.1045 77.9584,-0.129" /></g><path
+           id="path86"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 280.6672,185.4245 -6.3192,2.3867 -0.0112,-4.7436 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g88"><path
+             id="path90"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 349.6237,414.3875 -7.9929,-3.0189 -0.0142,6 z" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g92"><path
+             id="path94"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 260.0897,429.6312 87.157,43.1308 m -87.0268,-43.2664 86.6387,42.8453" /></g><path
+           id="path96"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 283.7235,136.8225 -4.6162,4.9314 -2.1044,-4.2513 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g98"><path
+             id="path100"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 353.4895,475.8627 -5.8389,-6.2376 -2.6617,5.3773 z" /></g><path
+           id="path102"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 568.4424,200.856 c 10.94,-10.9398 10.94,-28.6768 0,-39.6166 -10.9398,-10.9399 -28.6768,-10.9399 -39.6165,0 -10.94,10.9398 -10.94,28.6768 0,39.6166 10.9397,10.9399 28.6767,10.9399 39.6165,0" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g104"><path
+             id="path106"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 713.622,394.8686 c 13.8376,13.8374 13.8376,36.2724 0,50.1098 -13.8374,13.8376 -36.2724,13.8376 -50.1098,0 -13.8376,-13.8374 -13.8376,-36.2724 0,-50.1098 13.8374,-13.8376 36.2724,-13.8376 50.1098,0" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,548.6341,181.0477)"
+           id="g108"><g
+             id="text112"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.875,3.860001)"
+             aria-label="proposer1"><path
+               id="path788"
+               style=""
+               d="m 0.67,-5.17 v 7.14 h 0.85 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 Q 5.27,-4.1 4.97,-4.47 4.68,-4.85 4.23,-5.07 3.79,-5.29 3.19,-5.29 2.65,-5.29 2.2,-5.09 1.75,-4.9 1.54,-4.47 H 1.52 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 Q 2.06,-0.96 1.86,-1.23 1.67,-1.5 1.58,-1.85 1.49,-2.21 1.49,-2.59 q 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path790"
+               style=""
+               d="M 6.5399998,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path792"
+               style=""
+               d="m 10.34,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9000001,0 q 0,0.57 0.16,1.06 0.16,0.49 0.4800001,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.3200001,0.36 -0.4800001,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path794"
+               style=""
+               d="m 15.49,-5.17 v 7.14 h 0.85 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 h -0.02 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path796"
+               style=""
+               d="m 22.01,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path798"
+               style=""
+               d="M 27.65,-1.63 H 26.8 q 0.02,0.48 0.2,0.82 0.18,0.33 0.48,0.54 0.3,0.2 0.69,0.29 0.39,0.09 0.82,0.09 0.39,0 0.78,-0.08 0.4,-0.07 0.71,-0.26 0.32,-0.19 0.51,-0.5 0.2,-0.31 0.2,-0.78 0,-0.37 -0.15,-0.62 -0.14,-0.25 -0.38,-0.41 -0.23,-0.17 -0.54,-0.27 -0.3,-0.1 -0.62,-0.17 -0.3,-0.07 -0.6,-0.13 -0.3,-0.07 -0.54,-0.16 -0.24,-0.1 -0.4,-0.24 -0.15,-0.15 -0.15,-0.37 0,-0.2 0.1,-0.32 0.1,-0.13 0.26,-0.2 0.16,-0.08 0.35,-0.11 0.2,-0.03 0.39,-0.03 0.21,0 0.41,0.05 0.21,0.04 0.38,0.14 0.17,0.1 0.28,0.27 0.11,0.16 0.13,0.41 h 0.85 q -0.03,-0.47 -0.2,-0.78 -0.17,-0.32 -0.46,-0.5 -0.28,-0.19 -0.65,-0.26 -0.37,-0.08 -0.81,-0.08 -0.34,0 -0.69,0.09 -0.34,0.08 -0.62,0.26 -0.27,0.17 -0.45,0.45 -0.17,0.28 -0.17,0.67 0,0.5 0.25,0.78 0.25,0.28 0.62,0.44 0.38,0.15 0.82,0.24 0.44,0.08 0.81,0.19 0.38,0.1 0.63,0.27 0.25,0.17 0.25,0.5 0,0.24 -0.12,0.4 -0.12,0.15 -0.31,0.23 -0.18,0.08 -0.4,0.11 -0.22,0.03 -0.42,0.03 -0.26,0 -0.51,-0.05 -0.24,-0.05 -0.44,-0.16 -0.19,-0.12 -0.31,-0.31 -0.12,-0.2 -0.13,-0.48 z" /><path
+               id="path800"
+               style=""
+               d="m 35.72,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 H 35.7 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path802"
+               style=""
+               d="M 37.470001,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path804"
+               style=""
+               d="m 43.749999,0 v -7.09 h -0.65 q -0.07,0.4 -0.26,0.66 -0.19,0.26 -0.47,0.41 -0.27,0.15 -0.61,0.21 -0.34,0.05 -0.7,0.05 v 0.68 h 1.84 V 0 Z" /></g></g><path
+           id="path114"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 672.6516,262.4851 c 10.9399,-10.9399 10.9399,-28.6768 0,-39.6166 -10.9398,-10.9399 -28.6768,-10.9399 -39.6166,0 -10.9399,10.9398 -10.9399,28.6767 0,39.6166 10.9398,10.9399 28.6768,10.9399 39.6166,0" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g116"><path
+             id="path118"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 845.4331,316.9158 c 13.8375,13.8375 13.8375,36.2724 0,50.1099 -13.8375,13.8375 -36.2724,13.8375 -50.1099,0 -13.8375,-13.8375 -13.8375,-36.2724 0,-50.1099 13.8375,-13.8375 36.2724,-13.8375 50.1099,0" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,652.8433,242.6768)"
+           id="g120"><g
+             id="text124"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor1"><path
+               id="path807"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path809"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path811"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path813"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path815"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path817"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path819"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path821"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path823"
+               style=""
+               d="m 43.190001,0 v -7.09 h -0.65 q -0.07,0.4 -0.26,0.66 -0.19,0.26 -0.47,0.41 -0.27,0.15 -0.61,0.21 -0.34,0.05 -0.7,0.05 v 0.68 h 1.84 V 0 Z" /></g></g><path
+           id="path126"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 672.6516,200.856 c 10.9399,-10.9398 10.9399,-28.6768 0,-39.6166 -10.9398,-10.9399 -28.6768,-10.9399 -39.6166,0 -10.9399,10.9398 -10.9399,28.6768 0,39.6166 10.9398,10.9399 28.6768,10.9399 39.6166,0" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g128"><path
+             id="path130"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 845.4331,394.8686 c 13.8375,13.8374 13.8375,36.2724 0,50.1098 -13.8375,13.8376 -36.2724,13.8376 -50.1099,0 -13.8375,-13.8374 -13.8375,-36.2724 0,-50.1098 13.8375,-13.8376 36.2724,-13.8376 50.1099,0" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,652.8433,181.0477)"
+           id="g132"><g
+             id="text136"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor2"><path
+               id="path826"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path828"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path830"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path832"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path834"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path836"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path838"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path840"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path842"
+               style=""
+               d="m 40.070001,-4.58 h 0.85 q -0.01,-0.32 0.06,-0.63 0.08,-0.32 0.25,-0.57 0.17,-0.25 0.43,-0.4 0.27,-0.16 0.64,-0.16 0.28,0 0.53,0.09 0.25,0.09 0.43,0.26 0.19,0.17 0.3,0.41 0.11,0.23 0.11,0.52 0,0.37 -0.12,0.65 -0.11,0.28 -0.34,0.52 -0.22,0.24 -0.56,0.48 -0.34,0.23 -0.79,0.51 -0.37,0.22 -0.71,0.47 -0.34,0.25 -0.61,0.58 -0.27,0.33 -0.45,0.78 -0.17,0.44 -0.22,1.07 h 4.63 v -0.75 h -3.64 q 0.06,-0.33 0.25,-0.58 0.2,-0.26 0.47,-0.48 0.28,-0.22 0.61,-0.41 0.33,-0.2 0.66,-0.4 0.33,-0.21 0.64,-0.44 0.31,-0.23 0.55,-0.51 0.24,-0.29 0.38,-0.65 0.15,-0.36 0.15,-0.83 0,-0.5 -0.18,-0.88 -0.17,-0.38 -0.47,-0.63 -0.3,-0.26 -0.71,-0.39 -0.4,-0.14 -0.86,-0.14 -0.56,0 -1,0.19 -0.44,0.19 -0.74,0.53 -0.29,0.33 -0.43,0.79 -0.14,0.46 -0.11,1 z" /></g></g><path
+           id="path138"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 672.6516,139.227 c 10.9399,-10.9399 10.9399,-28.6768 0,-39.61664 -10.9398,-10.93989 -28.6768,-10.93989 -39.6166,0 -10.9399,10.93984 -10.9399,28.67674 0,39.61664 10.9398,10.9399 28.6768,10.9399 39.6166,0" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g140"><path
+             id="path142"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 845.4331,472.8213 c 13.8375,13.8375 13.8375,36.2724 0,50.1099 -13.8375,13.8375 -36.2724,13.8375 -50.1099,0 -13.8375,-13.8375 -13.8375,-36.2724 0,-50.1099 13.8375,-13.8375 36.2724,-13.8375 50.1099,0" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,652.8433,119.4187)"
+           id="g144"><g
+             id="text148"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor3"><path
+               id="path845"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path847"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path849"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path851"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path853"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path855"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path857"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path859"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path861"
+               style=""
+               d="m 41.810001,-4.05 v 0.72 q 0.24,-0.03 0.51,-0.03 0.32,0 0.59,0.09 0.28,0.08 0.48,0.26 0.2,0.17 0.32,0.43 0.12,0.25 0.12,0.58 0,0.32 -0.13,0.58 -0.12,0.25 -0.33,0.43 -0.21,0.17 -0.49,0.27 -0.28,0.09 -0.59,0.09 -0.73,0 -1.11,-0.43 -0.38,-0.44 -0.4,-1.13 h -0.85 q -0.01,0.55 0.15,0.98 0.17,0.43 0.48,0.73 0.31,0.29 0.75,0.44 0.44,0.15 0.98,0.15 0.5,0 0.94,-0.13 0.45,-0.14 0.78,-0.41 0.33,-0.27 0.52,-0.67 0.2,-0.41 0.2,-0.94 0,-0.64 -0.32,-1.11 -0.31,-0.47 -0.96,-0.61 v -0.02 q 0.42,-0.19 0.7,-0.56 0.28,-0.37 0.28,-0.85 0,-0.49 -0.17,-0.85 -0.16,-0.36 -0.45,-0.59 -0.29,-0.23 -0.69,-0.34 -0.39,-0.12 -0.85,-0.12 -0.53,0 -0.94,0.17 -0.4,0.17 -0.67,0.47 -0.27,0.3 -0.42,0.72 -0.14,0.42 -0.16,0.93 h 0.85 q 0,-0.31 0.08,-0.59 0.08,-0.28 0.24,-0.49 0.17,-0.21 0.42,-0.33 0.26,-0.13 0.6,-0.13 0.54,0 0.9,0.29 0.36,0.28 0.36,0.85 0,0.28 -0.11,0.5 -0.11,0.22 -0.3,0.37 -0.18,0.14 -0.43,0.22 -0.24,0.07 -0.51,0.07 h -0.18 q -0.05,0 -0.1,0 -0.04,0 -0.09,-0.01 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g150"><path
+             id="path152"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 790.6682,359.5473 -63.733,37.1945 m 63.8596,-37.3167 -63.43,37.0441" /></g><path
+           id="path154"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 574.045,196.0757 6.6514,1.178 -2.4147,4.0831 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g156"><path
+             id="path158"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 720.7086,400.9151 8.4131,-1.4901 -3.0543,-5.1645 z" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g160"><path
+             id="path162"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 785.313,419.9233 -51.9978,0.0247 m 52.1229,-0.0796 -51.6515,0.0785" /></g><path
+           id="path164"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 578.1495,181.0477 6.3248,-2.3718 v 4.7436 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g166"><path
+             id="path168"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 725.9002,419.9235 8,3 v -6 z" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g170"><path
+             id="path172"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 790.359,480.12 -63.1805,-36.9754 m 63.2995,36.8606 -62.917,-36.7224" /></g><path
+           id="path174"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 574.045,166.0198 4.2367,-5.2611 2.4147,4.083 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g176"><path
+             id="path178"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 720.7086,438.9319 5.3588,6.6546 3.0543,-5.1645 z" /></g><path
+           id="path180"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 204.4262,403.1285 c 10.9399,-10.9398 10.9399,-28.6768 0,-39.6166 -10.9398,-10.9399 -28.6767,-10.9399 -39.6166,0 -10.9399,10.9398 -10.9399,28.6768 0,39.6166 10.9399,10.9399 28.6768,10.9399 39.6166,0" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g182"><path
+             id="path184"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 253.1888,139.0202 c 13.8375,13.8374 13.8375,36.2724 0,50.1098 -13.8375,13.8376 -36.2724,13.8376 -50.1099,0 -13.8375,-13.8374 -13.8375,-36.2724 0,-50.1098 13.8375,-13.8376 36.2724,-13.8376 50.1099,0" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,184.618,383.3202)"
+           id="g186"><g
+             id="text190"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.875,3.860001)"
+             aria-label="proposer1"><path
+               id="path864"
+               style=""
+               d="m 0.67,-5.17 v 7.14 h 0.85 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 Q 5.27,-4.1 4.97,-4.47 4.68,-4.85 4.23,-5.07 3.79,-5.29 3.19,-5.29 2.65,-5.29 2.2,-5.09 1.75,-4.9 1.54,-4.47 H 1.52 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 Q 2.06,-0.96 1.86,-1.23 1.67,-1.5 1.58,-1.85 1.49,-2.21 1.49,-2.59 q 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path866"
+               style=""
+               d="M 6.5399998,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path868"
+               style=""
+               d="m 10.34,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9000001,0 q 0,0.57 0.16,1.06 0.16,0.49 0.4800001,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.3200001,0.36 -0.4800001,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path870"
+               style=""
+               d="m 15.49,-5.17 v 7.14 h 0.85 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 h -0.02 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path872"
+               style=""
+               d="m 22.01,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path874"
+               style=""
+               d="M 27.65,-1.63 H 26.8 q 0.02,0.48 0.2,0.82 0.18,0.33 0.48,0.54 0.3,0.2 0.69,0.29 0.39,0.09 0.82,0.09 0.39,0 0.78,-0.08 0.4,-0.07 0.71,-0.26 0.32,-0.19 0.51,-0.5 0.2,-0.31 0.2,-0.78 0,-0.37 -0.15,-0.62 -0.14,-0.25 -0.38,-0.41 -0.23,-0.17 -0.54,-0.27 -0.3,-0.1 -0.62,-0.17 -0.3,-0.07 -0.6,-0.13 -0.3,-0.07 -0.54,-0.16 -0.24,-0.1 -0.4,-0.24 -0.15,-0.15 -0.15,-0.37 0,-0.2 0.1,-0.32 0.1,-0.13 0.26,-0.2 0.16,-0.08 0.35,-0.11 0.2,-0.03 0.39,-0.03 0.21,0 0.41,0.05 0.21,0.04 0.38,0.14 0.17,0.1 0.28,0.27 0.11,0.16 0.13,0.41 h 0.85 q -0.03,-0.47 -0.2,-0.78 -0.17,-0.32 -0.46,-0.5 -0.28,-0.19 -0.65,-0.26 -0.37,-0.08 -0.81,-0.08 -0.34,0 -0.69,0.09 -0.34,0.08 -0.62,0.26 -0.27,0.17 -0.45,0.45 -0.17,0.28 -0.17,0.67 0,0.5 0.25,0.78 0.25,0.28 0.62,0.44 0.38,0.15 0.82,0.24 0.44,0.08 0.81,0.19 0.38,0.1 0.63,0.27 0.25,0.17 0.25,0.5 0,0.24 -0.12,0.4 -0.12,0.15 -0.31,0.23 -0.18,0.08 -0.4,0.11 -0.22,0.03 -0.42,0.03 -0.26,0 -0.51,-0.05 -0.24,-0.05 -0.44,-0.16 -0.19,-0.12 -0.31,-0.31 -0.12,-0.2 -0.13,-0.48 z" /><path
+               id="path876"
+               style=""
+               d="m 35.72,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 H 35.7 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path878"
+               style=""
+               d="M 37.470001,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path880"
+               style=""
+               d="m 43.749999,0 v -7.09 h -0.65 q -0.07,0.4 -0.26,0.66 -0.19,0.26 -0.47,0.41 -0.27,0.15 -0.61,0.21 -0.34,0.05 -0.7,0.05 v 0.68 h 1.84 V 0 Z" /></g></g><path
+           id="path192"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 329.9907,464.7576 c 10.94,-10.9399 10.94,-28.6768 0,-39.6167 -10.9397,-10.9398 -28.6767,-10.9398 -39.6165,0 -10.94,10.9399 -10.94,28.6768 0,39.6167 10.9398,10.9398 28.6768,10.9398 39.6165,0" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g194"><path
+             id="path196"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 412.0116,61.0674 c 13.8376,13.83747 13.8376,36.27241 0,50.1099 -13.8374,13.8375 -36.2724,13.8375 -50.1098,0 -13.8376,-13.83749 -13.8376,-36.27243 0,-50.1099 13.8374,-13.83753 36.2724,-13.83753 50.1098,0" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,310.1825,444.9493)"
+           id="g198"><g
+             id="text202"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor1"><path
+               id="path883"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path885"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path887"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path889"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path891"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path893"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path895"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path897"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path899"
+               style=""
+               d="m 43.190001,0 v -7.09 h -0.65 q -0.07,0.4 -0.26,0.66 -0.19,0.26 -0.47,0.41 -0.27,0.15 -0.61,0.21 -0.34,0.05 -0.7,0.05 v 0.68 h 1.84 V 0 Z" /></g></g><path
+           id="path204"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 329.9907,403.1285 c 10.94,-10.9398 10.94,-28.6768 0,-39.6166 -10.9397,-10.9399 -28.6767,-10.9399 -39.6165,0 -10.94,10.9398 -10.94,28.6768 0,39.6166 10.9398,10.9399 28.6768,10.9399 39.6165,0" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g206"><path
+             id="path208"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 412.0116,139.0202 c 13.8376,13.8374 13.8376,36.2724 0,50.1098 -13.8374,13.8376 -36.2724,13.8376 -50.1098,0 -13.8376,-13.8374 -13.8376,-36.2724 0,-50.1098 13.8374,-13.8376 36.2724,-13.8376 50.1098,0" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,310.1825,383.3202)"
+           id="g210"><g
+             id="text214"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor2"><path
+               id="path902"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path904"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path906"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path908"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path910"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path912"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path914"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path916"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path918"
+               style=""
+               d="m 40.070001,-4.58 h 0.85 q -0.01,-0.32 0.06,-0.63 0.08,-0.32 0.25,-0.57 0.17,-0.25 0.43,-0.4 0.27,-0.16 0.64,-0.16 0.28,0 0.53,0.09 0.25,0.09 0.43,0.26 0.19,0.17 0.3,0.41 0.11,0.23 0.11,0.52 0,0.37 -0.12,0.65 -0.11,0.28 -0.34,0.52 -0.22,0.24 -0.56,0.48 -0.34,0.23 -0.79,0.51 -0.37,0.22 -0.71,0.47 -0.34,0.25 -0.61,0.58 -0.27,0.33 -0.45,0.78 -0.17,0.44 -0.22,1.07 h 4.63 v -0.75 h -3.64 q 0.06,-0.33 0.25,-0.58 0.2,-0.26 0.47,-0.48 0.28,-0.22 0.61,-0.41 0.33,-0.2 0.66,-0.4 0.33,-0.21 0.64,-0.44 0.31,-0.23 0.55,-0.51 0.24,-0.29 0.38,-0.65 0.15,-0.36 0.15,-0.83 0,-0.5 -0.18,-0.88 -0.17,-0.38 -0.47,-0.63 -0.3,-0.26 -0.71,-0.39 -0.4,-0.14 -0.86,-0.14 -0.56,0 -1,0.19 -0.44,0.19 -0.74,0.53 -0.29,0.33 -0.43,0.79 -0.14,0.46 -0.11,1 z" /></g></g><path
+           id="path216"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 329.9907,341.4995 c 10.94,-10.9399 10.94,-28.6768 0,-39.6167 -10.9397,-10.9398 -28.6767,-10.9398 -39.6165,0 -10.94,10.9399 -10.94,28.6768 0,39.6167 10.9398,10.9398 28.6768,10.9398 39.6165,0" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g218"><path
+             id="path220"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 412.0116,216.9729 c 13.8376,13.8375 13.8376,36.2724 0,50.1099 -13.8374,13.8375 -36.2724,13.8375 -50.1098,0 -13.8376,-13.8375 -13.8376,-36.2724 0,-50.1099 13.8374,-13.8375 36.2724,-13.8375 50.1098,0" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,310.1825,321.6911)"
+           id="g222"><g
+             id="text226"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor3"><path
+               id="path921"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path923"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path925"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path927"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path929"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path931"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path933"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path935"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path937"
+               style=""
+               d="m 41.810001,-4.05 v 0.72 q 0.24,-0.03 0.51,-0.03 0.32,0 0.59,0.09 0.28,0.08 0.48,0.26 0.2,0.17 0.32,0.43 0.12,0.25 0.12,0.58 0,0.32 -0.13,0.58 -0.12,0.25 -0.33,0.43 -0.21,0.17 -0.49,0.27 -0.28,0.09 -0.59,0.09 -0.73,0 -1.11,-0.43 -0.38,-0.44 -0.4,-1.13 h -0.85 q -0.01,0.55 0.15,0.98 0.17,0.43 0.48,0.73 0.31,0.29 0.75,0.44 0.44,0.15 0.98,0.15 0.5,0 0.94,-0.13 0.45,-0.14 0.78,-0.41 0.33,-0.27 0.52,-0.67 0.2,-0.41 0.2,-0.94 0,-0.64 -0.32,-1.11 -0.31,-0.47 -0.96,-0.61 v -0.02 q 0.42,-0.19 0.7,-0.56 0.28,-0.37 0.28,-0.85 0,-0.49 -0.17,-0.85 -0.16,-0.36 -0.45,-0.59 -0.29,-0.23 -0.69,-0.34 -0.39,-0.12 -0.85,-0.12 -0.53,0 -0.94,0.17 -0.4,0.17 -0.67,0.47 -0.27,0.3 -0.42,0.72 -0.14,0.42 -0.16,0.93 h 0.85 q 0,-0.31 0.08,-0.59 0.08,-0.28 0.24,-0.49 0.17,-0.21 0.42,-0.33 0.26,-0.13 0.6,-0.13 0.54,0 0.9,0.29 0.36,0.28 0.36,0.85 0,0.28 -0.11,0.5 -0.11,0.22 -0.3,0.37 -0.18,0.14 -0.43,0.22 -0.24,0.07 -0.51,0.07 h -0.18 q -0.05,0 -0.1,0 -0.04,0 -0.09,-0.01 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g228"><path
+             id="path230"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 259.5068,148.6773 86.8577,-42.7457 m -86.7779,42.5289 86.62,-42.585" /></g><path
+           id="path232"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 283.6797,431.9412 -6.7228,-0.6575 2.09,-4.2583 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g234"><path
+             id="path236"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 353.4341,102.5758 -8.5034,0.8317 2.6436,5.3862 z" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g238"><path
+             id="path240"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 263.2683,164.0764 78.3584,-0.3414 m -78.2336,0.1808 78.0828,-0.3947" /></g><path
+           id="path242"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 280.6671,383.3202 -6.3248,2.3718 v -4.7436 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g244"><path
+             id="path246"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 349.6236,164.0751 -8,-3 v 6 z" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g248"><path
+             id="path250"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 259.1875,179.3117 86.9022,43.2222 m -86.7354,-43.4311 86.6739,43.0827" /></g><path
+           id="path252"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 283.6797,334.6992 -4.6328,4.9158 -2.09,-4.2583 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g254"><path
+             id="path256"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 353.4341,225.5744 -5.8598,-6.2179 -2.6436,5.3862 z" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,363.3234,449.9053)"
+           id="g258"><g
+             id="text262"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.236,3.832001)"
+             aria-label="promise: n"><path
+               id="path940"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path942"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path944"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path946"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path948"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path950"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path952"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path954"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path956"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,365.6485,439.8003)"
+           id="g264"><g
+             id="text268"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.008,3.832001)"
+             aria-label="accept: null"><path
+               id="path959"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path961"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path963"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path965"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path967"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path969"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path971"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path973"
+               style=""
+               d="M 44.112002,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path975"
+               style=""
+               d="m 55.919999,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path977"
+               style=""
+               d="M 57.516,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path979"
+               style=""
+               d="M 60.180001,-8.568 V 0 h 1.02 v -8.568 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,363.3234,388.2762)"
+           id="g270"><g
+             id="text274"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.236,3.832001)"
+             aria-label="promise: n"><path
+               id="path982"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path984"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path986"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path988"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path990"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path992"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path994"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path996"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path998"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,365.6485,378.1712)"
+           id="g276"><g
+             id="text280"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.008,3.832001)"
+             aria-label="accept: null"><path
+               id="path1001"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1003"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1005"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1007"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1009"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1011"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1013"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1015"
+               style=""
+               d="M 44.112002,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1017"
+               style=""
+               d="m 55.919999,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path1019"
+               style=""
+               d="M 57.516,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1021"
+               style=""
+               d="M 60.180001,-8.568 V 0 h 1.02 v -8.568 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,363.3234,326.6471)"
+           id="g282"><g
+             id="text286"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.236,3.832001)"
+             aria-label="promise: n"><path
+               id="path1024"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1026"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1028"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1030"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1032"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1034"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1036"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1038"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1040"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,363.3234,316.5421)"
+           id="g288"><g
+             id="text292"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-26.34,3.832001)"
+             aria-label="accept: v’"><path
+               id="path1043"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1045"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1047"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1049"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1051"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1053"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1055"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1057"
+               style=""
+               d="m 46.908002,0 2.268,-6.204 h -1.068 l -1.692,5.172 h -0.024 l -1.74,-5.172 h -1.14 l 2.304,6.204 z" /><path
+               id="path1059"
+               style=""
+               d="m 50.340002,-8.568 v 1.332 h 0.708 q 0,0.204 -0.036,0.42 -0.024,0.204 -0.108,0.372 -0.084,0.168 -0.216,0.276 -0.132,0.096 -0.336,0.096 v 0.6 q 0.348,0 0.588,-0.144 0.252,-0.144 0.408,-0.384 0.168,-0.24 0.24,-0.552 0.084,-0.324 0.084,-0.684 v -1.332 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,241.4069,432.0231)"
+           id="g294"><g
+             id="text298"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-38.226,3.832001)"
+             aria-label="Proposal(n, v’)"><path
+               id="path1062"
+               style=""
+               d="m 2.076,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z M 0.936,-8.568 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path1064"
+               style=""
+               d="M 8.508,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 9.468 v -1.308 z" /><path
+               id="path1066"
+               style=""
+               d="m 13.068,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 17.628,-4.968 17.244,-5.4 16.86,-5.844 16.296,-6.096 15.744,-6.348 15,-6.348 q -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1068"
+               style=""
+               d="m 19.248,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1070"
+               style=""
+               d="m 27.071999,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1072"
+               style=""
+               d="m 33.840002,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1074"
+               style=""
+               d="m 44.712002,-0.024 q -0.264,0.156 -0.732,0.156 -0.396,0 -0.636,-0.216 -0.228,-0.228 -0.228,-0.732 -0.42,0.504 -0.984,0.732 -0.552,0.216 -1.2,0.216 -0.42,0 -0.804,-0.096 -0.372,-0.096 -0.648,-0.3 -0.276,-0.204 -0.444,-0.528 -0.156,-0.336 -0.156,-0.804 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 -0.12,-0.204 -0.324,-0.312 -0.192,-0.108 -0.444,-0.144 -0.24,-0.036 -0.48,-0.036 -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 0.228,-0.216 0.336,-0.456 0.108,-0.252 0.108,-0.468 z" /><path
+               id="path1076"
+               style=""
+               d="M 45.719998,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1078"
+               style=""
+               d="m 50.004,2.364 h 0.78 Q 49.932,0.984 49.56,-0.372 49.2,-1.728 49.2,-3.24 q 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path1080"
+               style=""
+               d="M 51.432001,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1082"
+               style=""
+               d="M 58.331999,-1.332 V 0 h 0.708 q 0.012,0.144 -0.024,0.312 -0.024,0.168 -0.108,0.324 -0.084,0.168 -0.228,0.3 -0.132,0.144 -0.336,0.216 v 0.6 q 0.696,-0.204 1.008,-0.696 0.312,-0.492 0.312,-1.176 v -1.212 z" /><path
+               id="path1084"
+               style=""
+               d="m 67.572003,0 2.268,-6.204 h -1.068 l -1.692,5.172 h -0.024 l -1.74,-5.172 h -1.14 l 2.304,6.204 z" /><path
+               id="path1086"
+               style=""
+               d="m 71.004003,-8.568 v 1.332 h 0.708 q 0,0.204 -0.036,0.42 -0.024,0.204 -0.108,0.372 -0.084,0.168 -0.216,0.276 -0.132,0.096 -0.336,0.096 v 0.6 q 0.348,0 0.588,-0.144 0.252,-0.144 0.408,-0.384 0.168,-0.24 0.24,-0.552 0.084,-0.324 0.084,-0.684 v -1.332 z" /><path
+               id="path1088"
+               style=""
+               d="m 73.236002,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,231.5152,334.6172)"
+           id="g300"><g
+             id="text304"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-38.226,3.832001)"
+             aria-label="Proposal(n, v’)"><path
+               id="path1091"
+               style=""
+               d="m 2.076,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z M 0.936,-8.568 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path1093"
+               style=""
+               d="M 8.508,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 9.468 v -1.308 z" /><path
+               id="path1095"
+               style=""
+               d="m 13.068,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 17.628,-4.968 17.244,-5.4 16.86,-5.844 16.296,-6.096 15.744,-6.348 15,-6.348 q -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1097"
+               style=""
+               d="m 19.248,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1099"
+               style=""
+               d="m 27.071999,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1101"
+               style=""
+               d="m 33.840002,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1103"
+               style=""
+               d="m 44.712002,-0.024 q -0.264,0.156 -0.732,0.156 -0.396,0 -0.636,-0.216 -0.228,-0.228 -0.228,-0.732 -0.42,0.504 -0.984,0.732 -0.552,0.216 -1.2,0.216 -0.42,0 -0.804,-0.096 -0.372,-0.096 -0.648,-0.3 -0.276,-0.204 -0.444,-0.528 -0.156,-0.336 -0.156,-0.804 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 -0.12,-0.204 -0.324,-0.312 -0.192,-0.108 -0.444,-0.144 -0.24,-0.036 -0.48,-0.036 -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 0.228,-0.216 0.336,-0.456 0.108,-0.252 0.108,-0.468 z" /><path
+               id="path1105"
+               style=""
+               d="M 45.719998,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1107"
+               style=""
+               d="m 50.004,2.364 h 0.78 Q 49.932,0.984 49.56,-0.372 49.2,-1.728 49.2,-3.24 q 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path1109"
+               style=""
+               d="M 51.432001,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1111"
+               style=""
+               d="M 58.331999,-1.332 V 0 h 0.708 q 0.012,0.144 -0.024,0.312 -0.024,0.168 -0.108,0.324 -0.084,0.168 -0.228,0.3 -0.132,0.144 -0.336,0.216 v 0.6 q 0.696,-0.204 1.008,-0.696 0.312,-0.492 0.312,-1.176 v -1.212 z" /><path
+               id="path1113"
+               style=""
+               d="m 67.572003,0 2.268,-6.204 h -1.068 l -1.692,5.172 h -0.024 l -1.74,-5.172 h -1.14 l 2.304,6.204 z" /><path
+               id="path1115"
+               style=""
+               d="m 71.004003,-8.568 v 1.332 h 0.708 q 0,0.204 -0.036,0.42 -0.024,0.204 -0.108,0.372 -0.084,0.168 -0.216,0.276 -0.132,0.096 -0.336,0.096 v 0.6 q 0.348,0 0.588,-0.144 0.252,-0.144 0.408,-0.384 0.168,-0.24 0.24,-0.552 0.084,-0.324 0.084,-0.684 v -1.332 z" /><path
+               id="path1117"
+               style=""
+               d="m 73.236002,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,247.022,393.2459)"
+           id="g306"><g
+             id="text310"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-38.226,3.832001)"
+             aria-label="Proposal(n, v’)"><path
+               id="path1120"
+               style=""
+               d="m 2.076,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z M 0.936,-8.568 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path1122"
+               style=""
+               d="M 8.508,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 9.468 v -1.308 z" /><path
+               id="path1124"
+               style=""
+               d="m 13.068,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 17.628,-4.968 17.244,-5.4 16.86,-5.844 16.296,-6.096 15.744,-6.348 15,-6.348 q -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1126"
+               style=""
+               d="m 19.248,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1128"
+               style=""
+               d="m 27.071999,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1130"
+               style=""
+               d="m 33.840002,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1132"
+               style=""
+               d="m 44.712002,-0.024 q -0.264,0.156 -0.732,0.156 -0.396,0 -0.636,-0.216 -0.228,-0.228 -0.228,-0.732 -0.42,0.504 -0.984,0.732 -0.552,0.216 -1.2,0.216 -0.42,0 -0.804,-0.096 -0.372,-0.096 -0.648,-0.3 -0.276,-0.204 -0.444,-0.528 -0.156,-0.336 -0.156,-0.804 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 -0.12,-0.204 -0.324,-0.312 -0.192,-0.108 -0.444,-0.144 -0.24,-0.036 -0.48,-0.036 -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 0.228,-0.216 0.336,-0.456 0.108,-0.252 0.108,-0.468 z" /><path
+               id="path1134"
+               style=""
+               d="M 45.719998,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1136"
+               style=""
+               d="m 50.004,2.364 h 0.78 Q 49.932,0.984 49.56,-0.372 49.2,-1.728 49.2,-3.24 q 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path1138"
+               style=""
+               d="M 51.432001,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1140"
+               style=""
+               d="M 58.331999,-1.332 V 0 h 0.708 q 0.012,0.144 -0.024,0.312 -0.024,0.168 -0.108,0.324 -0.084,0.168 -0.228,0.3 -0.132,0.144 -0.336,0.216 v 0.6 q 0.696,-0.204 1.008,-0.696 0.312,-0.492 0.312,-1.176 v -1.212 z" /><path
+               id="path1142"
+               style=""
+               d="m 67.572003,0 2.268,-6.204 h -1.068 l -1.692,5.172 h -0.024 l -1.74,-5.172 h -1.14 l 2.304,6.204 z" /><path
+               id="path1144"
+               style=""
+               d="m 71.004003,-8.568 v 1.332 h 0.708 q 0,0.204 -0.036,0.42 -0.024,0.204 -0.108,0.372 -0.084,0.168 -0.216,0.276 -0.132,0.096 -0.336,0.096 v 0.6 q 0.348,0 0.588,-0.144 0.252,-0.144 0.408,-0.384 0.168,-0.24 0.24,-0.552 0.084,-0.324 0.084,-0.684 v -1.332 z" /><path
+               id="path1146"
+               style=""
+               d="m 73.236002,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,712.085,245.5873)"
+           id="g312"><g
+             id="text316"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.236,3.832001)"
+             aria-label="promise: n"><path
+               id="path1149"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1151"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1153"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1155"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1157"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1159"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1161"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1163"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1165"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,714.41,235.4823)"
+           id="g318"><g
+             id="text322"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-24.672,3.832001)"
+             aria-label="accept: v"><path
+               id="path1168"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1170"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1172"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1174"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1176"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1178"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1180"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1182"
+               style=""
+               d="m 46.908002,0 2.268,-6.204 h -1.068 l -1.692,5.172 h -0.024 l -1.74,-5.172 h -1.14 l 2.304,6.204 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,712.085,183.9582)"
+           id="g324"><g
+             id="text328"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.236,3.832001)"
+             aria-label="promise: n"><path
+               id="path1185"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1187"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1189"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1191"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1193"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1195"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1197"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1199"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1201"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,714.41,173.8532)"
+           id="g330"><g
+             id="text334"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-24.672,3.832001)"
+             aria-label="accept: v"><path
+               id="path1204"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1206"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1208"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1210"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1212"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1214"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1216"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1218"
+               style=""
+               d="m 46.908002,0 2.268,-6.204 h -1.068 l -1.692,5.172 h -0.024 l -1.74,-5.172 h -1.14 l 2.304,6.204 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,712.085,122.3292)"
+           id="g336"><g
+             id="text340"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.236,3.832001)"
+             aria-label="promise: n"><path
+               id="path1221"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1223"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1225"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1227"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1229"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1231"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1233"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1235"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1237"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,712.085,112.2242)"
+           id="g342"><g
+             id="text346"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-24.672,3.832001)"
+             aria-label="accept: v"><path
+               id="path1240"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1242"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1244"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1246"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1248"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1250"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1252"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1254"
+               style=""
+               d="m 46.908002,0 2.268,-6.204 h -1.068 l -1.692,5.172 h -0.024 l -1.74,-5.172 h -1.14 l 2.304,6.204 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,596.3378,227.173)"
+           id="g348"><g
+             id="text352"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-25.11,3.832001)"
+             aria-label="Accept(v)"><path
+               id="path1257"
+               style=""
+               d="M 2.412,-3.54 3.864,-7.536 H 3.888 L 5.316,-3.54 Z M 3.264,-8.568 -0.072,0 h 1.164 l 0.96,-2.58 H 5.676 L 6.612,0 h 1.26 L 4.524,-8.568 Z" /><path
+               id="path1259"
+               style=""
+               d="m 12.756,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 9.924,-1.14 9.708,-1.452 9.492,-1.776 9.384,-2.184 9.288,-2.592 9.288,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1261"
+               style=""
+               d="m 19.2,-4.212 h 1.056 Q 20.196,-4.764 19.968,-5.16 19.74,-5.568 19.38,-5.832 19.032,-6.096 18.564,-6.216 18.108,-6.348 17.58,-6.348 q -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1263"
+               style=""
+               d="m 25.74,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 H 26.82 Q 26.844,-3.36 26.712,-3.984 26.592,-4.608 26.256,-5.136 25.932,-5.664 25.38,-6 q -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1265"
+               style=""
+               d="m 27.912,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 29.58,-1.152 29.34,-1.476 29.112,-1.8 29.004,-2.22 q -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1267"
+               style=""
+               d="m 36.407999,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1269"
+               style=""
+               d="m 40.452002,2.364 h 0.78 q -0.852,-1.38 -1.224,-2.736 -0.36,-1.356 -0.36,-2.868 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path1271"
+               style=""
+               d="m 44.676,0 2.268,-6.204 h -1.068 l -1.692,5.172 H 44.16 L 42.42,-6.204 H 41.28 L 43.584,0 Z" /><path
+               id="path1273"
+               style=""
+               d="m 47.004,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,114.1554,442.8454)"
+           id="g354"><g
+             id="text358"
+             style="font-variant:normal;font-weight:normal;font-size:16px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-74.688,-3.447998)"
+             aria-label="retry prepare request "><path
+               id="path1276"
+               style=""
+               d="M 0.976,-8.272 V 0 h 1.36 v -3.68 q 0,-0.8 0.16,-1.408 0.16,-0.624 0.512,-1.056 Q 3.36,-6.576 3.936,-6.8 4.512,-7.024 5.328,-7.024 v -1.44 q -1.104,-0.032 -1.824,0.448 -0.72,0.48 -1.216,1.488 H 2.256 v -1.744 z" /><path
+               id="path1278"
+               style=""
+               d="M 11.808,-4.928 H 7.056 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 Q 7.968,-1.456 7.648,-1.824 7.328,-2.208 7.184,-2.688 7.04,-3.184 7.056,-3.728 h 6.192 Q 13.28,-4.48 13.104,-5.312 12.944,-6.144 12.496,-6.848 12.064,-7.552 11.328,-8 q -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path1280"
+               style=""
+               d="m 16.544,-8.272 v -2.48 h -1.36 v 2.48 h -1.408 v 1.2 h 1.408 v 5.264 q 0,0.576 0.112,0.928 0.112,0.352 0.336,0.544 0.24,0.192 0.608,0.272 Q 16.624,0 17.152,0 h 1.04 v -1.2 h -0.624 q -0.32,0 -0.528,-0.016 -0.192,-0.032 -0.304,-0.112 -0.112,-0.08 -0.16,-0.224 -0.032,-0.144 -0.032,-0.384 v -5.136 h 1.648 v -1.2 z" /><path
+               id="path1282"
+               style=""
+               d="M 19.648001,-8.272 V 0 h 1.36 v -3.68 q 0,-0.8 0.16,-1.408 0.16,-0.624 0.512,-1.056 0.352,-0.432 0.928,-0.656 0.576,-0.224 1.392,-0.224 v -1.44 q -1.104,-0.032 -1.824,0.448 -0.72,0.48 -1.216,1.488 h -0.032 v -1.744 z" /><path
+               id="path1284"
+               style=""
+               d="m 28.272,1.104 q -0.24,0.608 -0.48,1.024 -0.224,0.416 -0.512,0.672 -0.272,0.272 -0.624,0.384 -0.336,0.128 -0.784,0.128 -0.24,0 -0.48,-0.032 -0.24,-0.032 -0.464,-0.112 V 1.92 q 0.176,0.08 0.4,0.128 0.24,0.064 0.4,0.064 0.416,0 0.688,-0.208 0.288,-0.192 0.432,-0.56 l 0.56,-1.392 -3.28,-8.224 h 1.536 l 2.416,6.768 h 0.032 l 2.32,-6.768 h 1.44 z" /><path
+               id="path1286"
+               style=""
+               d="M 37.520002,-8.272 V 3.152 h 1.36 v -4.256 h 0.032 q 0.224,0.368 0.544,0.624 0.336,0.24 0.704,0.384 0.368,0.144 0.736,0.208 0.384,0.064 0.688,0.064 0.944,0 1.648,-0.336 0.72,-0.336 1.184,-0.912 0.48,-0.592 0.704,-1.376 0.24,-0.784 0.24,-1.664 0,-0.88 -0.24,-1.664 -0.24,-0.784 -0.72,-1.376 -0.464,-0.608 -1.184,-0.96 -0.704,-0.352 -1.664,-0.352 -0.864,0 -1.584,0.32 -0.72,0.304 -1.056,0.992 h -0.032 v -1.12 z m 6.4,4.064 q 0,0.608 -0.128,1.184 -0.128,0.576 -0.416,1.024 -0.288,0.448 -0.768,0.72 -0.464,0.272 -1.168,0.272 -0.704,0 -1.2,-0.256 -0.496,-0.272 -0.816,-0.704 -0.304,-0.432 -0.448,-0.992 -0.144,-0.576 -0.144,-1.184 0,-0.576 0.128,-1.136 0.144,-0.56 0.448,-0.992 0.304,-0.448 0.784,-0.72 0.48,-0.272 1.168,-0.272 0.656,0 1.136,0.256 0.496,0.256 0.8,0.688 0.32,0.432 0.464,0.992 0.16,0.544 0.16,1.12 z" /><path
+               id="path1288"
+               style=""
+               d="M 46.912001,-8.272 V 0 h 1.36 v -3.68 q 0,-0.8 0.16,-1.408 0.16,-0.624 0.512,-1.056 0.352,-0.432 0.928,-0.656 0.576,-0.224 1.392,-0.224 v -1.44 q -1.104,-0.032 -1.824,0.448 -0.72,0.48 -1.216,1.488 h -0.032 v -1.744 z" /><path
+               id="path1290"
+               style=""
+               d="m 57.744002,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 -0.496,-0.224 -0.816,-0.592 -0.32,-0.384 -0.464,-0.864 -0.144,-0.496 -0.128,-1.04 h 6.192 q 0.032,-0.752 -0.144,-1.584 -0.16,-0.832 -0.608,-1.536 -0.432,-0.704 -1.168,-1.152 -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path1292"
+               style=""
+               d="M 60.640001,-8.272 V 3.152 h 1.36 v -4.256 h 0.032 q 0.224,0.368 0.544,0.624 0.336,0.24 0.704,0.384 0.368,0.144 0.736,0.208 0.384,0.064 0.688,0.064 0.944,0 1.648,-0.336 0.72,-0.336 1.184,-0.912 0.48,-0.592 0.704,-1.376 0.24,-0.784 0.24,-1.664 0,-0.88 -0.24,-1.664 -0.24,-0.784 -0.72,-1.376 -0.464,-0.608 -1.184,-0.96 -0.704,-0.352 -1.664,-0.352 -0.864,0 -1.584,0.32 -0.72,0.304 -1.056,0.992 h -0.032 v -1.12 z m 6.4,4.064 q 0,0.608 -0.128,1.184 -0.128,0.576 -0.416,1.024 -0.288,0.448 -0.768,0.72 -0.464,0.272 -1.168,0.272 -0.704,0 -1.2,-0.256 -0.496,-0.272 -0.816,-0.704 -0.304,-0.432 -0.448,-0.992 -0.144,-0.576 -0.144,-1.184 0,-0.576 0.128,-1.136 0.144,-0.56 0.448,-0.992 0.304,-0.448 0.784,-0.72 0.48,-0.272 1.168,-0.272 0.656,0 1.136,0.256 0.496,0.256 0.8,0.688 0.32,0.432 0.464,0.992 0.16,0.544 0.16,1.12 z" /><path
+               id="path1294"
+               style=""
+               d="m 77.408,-0.032 q -0.352,0.208 -0.976,0.208 -0.528,0 -0.848,-0.288 -0.304,-0.304 -0.304,-0.976 -0.56,0.672 -1.312,0.976 -0.736,0.288 -1.6,0.288 -0.56,0 -1.072,-0.128 -0.496,-0.128 -0.864,-0.4 -0.368,-0.272 -0.592,-0.704 -0.208,-0.448 -0.208,-1.072 0,-0.704 0.24,-1.152 0.24,-0.448 0.624,-0.72 0.4,-0.288 0.896,-0.432 0.512,-0.144 1.04,-0.24 0.56,-0.112 1.056,-0.16 0.512,-0.064 0.896,-0.16 0.384,-0.112 0.608,-0.304 0.224,-0.208 0.224,-0.592 0,-0.448 -0.176,-0.72 -0.16,-0.272 -0.432,-0.416 -0.256,-0.144 -0.592,-0.192 -0.32,-0.048 -0.64,-0.048 -0.864,0 -1.44,0.336 -0.576,0.32 -0.624,1.232 h -1.36 q 0.032,-0.768 0.32,-1.296 0.288,-0.528 0.768,-0.848 0.48,-0.336 1.088,-0.48 0.624,-0.144 1.328,-0.144 0.56,0 1.104,0.08 0.56,0.08 1.008,0.336 0.448,0.24 0.72,0.688 0.272,0.448 0.272,1.168 v 4.256 q 0,0.48 0.048,0.704 0.064,0.224 0.384,0.224 0.176,0 0.416,-0.08 z M 75.2,-4.272 q -0.256,0.192 -0.672,0.288 -0.416,0.08 -0.88,0.144 -0.448,0.048 -0.912,0.128 -0.464,0.064 -0.832,0.224 -0.368,0.16 -0.608,0.464 -0.224,0.288 -0.224,0.8 0,0.336 0.128,0.576 0.144,0.224 0.352,0.368 0.224,0.144 0.512,0.208 0.288,0.064 0.608,0.064 0.672,0 1.152,-0.176 0.48,-0.192 0.784,-0.464 0.304,-0.288 0.448,-0.608 Q 75.2,-2.592 75.2,-2.88 Z" /><path
+               id="path1296"
+               style=""
+               d="M 78.624003,-8.272 V 0 h 1.36 v -3.68 q 0,-0.8 0.16,-1.408 0.16,-0.624 0.512,-1.056 0.352,-0.432 0.928,-0.656 0.576,-0.224 1.392,-0.224 v -1.44 q -1.104,-0.032 -1.824,0.448 -0.72,0.48 -1.216,1.488 h -0.032 v -1.744 z" /><path
+               id="path1298"
+               style=""
+               d="m 89.456004,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 -0.496,-0.224 -0.816,-0.592 -0.32,-0.384 -0.464,-0.864 -0.144,-0.496 -0.128,-1.04 h 6.192 q 0.032,-0.752 -0.144,-1.584 -0.16,-0.832 -0.608,-1.536 -0.432,-0.704 -1.168,-1.152 -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path1300"
+               style=""
+               d="M 96.703997,-8.272 V 0 h 1.36 v -3.68 q 0,-0.8 0.16,-1.408 0.16,-0.624 0.512,-1.056 0.352,-0.432 0.928,-0.656 Q 100.24,-7.024 101.056,-7.024 v -1.44 q -1.104003,-0.032 -1.824003,0.448 -0.72,0.48 -1.216,1.488 h -0.032 v -1.744 z" /><path
+               id="path1302"
+               style=""
+               d="m 107.536,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 -0.496,-0.224 -0.816,-0.592 -0.32,-0.384 -0.464,-0.864 -0.144,-0.496 -0.128,-1.04 h 6.192 q 0.032,-0.752 -0.144,-1.584 -0.16,-0.832 -0.608,-1.536 -0.432,-0.704 -1.168,-1.152 -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path1304"
+               style=""
+               d="m 111.376,-4.064 q 0,-0.608 0.128,-1.184 0.128,-0.576 0.416,-1.024 0.288,-0.448 0.768,-0.72 0.48,-0.272 1.168,-0.272 0.704,0 1.2,0.272 0.496,0.256 0.8,0.688 0.32,0.432 0.464,1.008 0.144,0.56 0.144,1.168 0,0.576 -0.144,1.136 -0.128,0.56 -0.432,1.008 -0.304,0.432 -0.784,0.704 -0.48,0.272 -1.168,0.272 -0.656,0 -1.152,-0.256 -0.48,-0.256 -0.8,-0.688 -0.304,-0.432 -0.464,-0.976 -0.144,-0.56 -0.144,-1.136 z m 6.4,7.216 V -8.272 h -1.36 v 1.104 h -0.032 q -0.224,-0.368 -0.56,-0.608 -0.32,-0.256 -0.688,-0.4 -0.368,-0.16 -0.736,-0.224 -0.368,-0.064 -0.688,-0.064 -0.944,0 -1.664,0.352 -0.704,0.336 -1.184,0.928 -0.464,0.576 -0.704,1.36 -0.224,0.784 -0.224,1.664 0,0.88 0.24,1.664 0.24,0.784 0.704,1.376 0.48,0.592 1.184,0.944 0.72,0.352 1.68,0.352 0.864,0 1.584,-0.304 0.72,-0.304 1.056,-0.992 h 0.032 v 4.272 z" /><path
+               id="path1306"
+               style=""
+               d="m 126.72,0 v -8.272 h -1.36 V -3.6 q 0,0.56 -0.16,1.04 -0.144,0.464 -0.448,0.816 -0.304,0.352 -0.768,0.544 -0.448,0.192 -1.072,0.192 -0.784,0 -1.232,-0.448 -0.448,-0.448 -0.448,-1.216 v -5.6 h -1.36 v 5.44 q 0,0.672 0.128,1.232 0.144,0.544 0.48,0.944 0.336,0.4 0.88,0.624 0.544,0.208 1.36,0.208 0.912,0 1.584,-0.352 0.672,-0.368 1.104,-1.136 h 0.032 V 0 Z" /><path
+               id="path1308"
+               style=""
+               d="m 134.512,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 -0.496,-0.224 -0.816,-0.592 -0.32,-0.384 -0.464,-0.864 -0.144,-0.496 -0.128,-1.04 h 6.192 q 0.032,-0.752 -0.144,-1.584 -0.16,-0.832 -0.608,-1.536 -0.432,-0.704 -1.168,-1.152 -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path1310"
+               style=""
+               d="m 138.192,-2.608 h -1.36 q 0.032,0.768 0.32,1.312 0.288,0.528 0.768,0.864 0.48,0.32 1.104,0.464 0.624,0.144 1.312,0.144 0.624,0 1.248,-0.128 0.64,-0.112 1.136,-0.416 0.512,-0.304 0.816,-0.8 0.32,-0.496 0.32,-1.248 0,-0.592 -0.24,-0.992 -0.224,-0.4 -0.608,-0.656 -0.368,-0.272 -0.864,-0.432 -0.48,-0.16 -0.992,-0.272 -0.48,-0.112 -0.96,-0.208 -0.48,-0.112 -0.864,-0.256 -0.384,-0.16 -0.64,-0.384 -0.24,-0.24 -0.24,-0.592 0,-0.32 0.16,-0.512 0.16,-0.208 0.416,-0.32 0.256,-0.128 0.56,-0.176 0.32,-0.048 0.624,-0.048 0.336,0 0.656,0.08 0.336,0.064 0.608,0.224 0.272,0.16 0.448,0.432 0.176,0.256 0.208,0.656 h 1.36 q -0.048,-0.752 -0.32,-1.248 -0.272,-0.512 -0.736,-0.8 -0.448,-0.304 -1.04,-0.416 -0.592,-0.128 -1.296,-0.128 -0.544,0 -1.104,0.144 -0.544,0.128 -0.992,0.416 -0.432,0.272 -0.72,0.72 -0.272,0.448 -0.272,1.072 0,0.8 0.4,1.248 0.4,0.448 0.992,0.704 0.608,0.24 1.312,0.384 0.704,0.128 1.296,0.304 0.608,0.16 1.008,0.432 0.4,0.272 0.4,0.8 0,0.384 -0.192,0.64 -0.192,0.24 -0.496,0.368 -0.288,0.128 -0.64,0.176 -0.352,0.048 -0.672,0.048 -0.416,0 -0.816,-0.08 -0.384,-0.08 -0.704,-0.256 -0.304,-0.192 -0.496,-0.496 -0.192,-0.32 -0.208,-0.768 z" /><path
+               id="path1312"
+               style=""
+               d="m 147.248,-8.272 v -2.48 h -1.36 v 2.48 h -1.408 v 1.2 h 1.408 v 5.264 q 0,0.576 0.112,0.928 0.112,0.352 0.336,0.544 0.24,0.192 0.608,0.272 Q 147.328,0 147.856,0 h 1.04 v -1.2 h -0.624 q -0.32,0 -0.528,-0.016 -0.192,-0.032 -0.304,-0.112 -0.112,-0.08 -0.16,-0.224 -0.032,-0.144 -0.032,-0.384 v -5.136 h 1.648 v -1.2 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,114.1554,442.8454)"
+           id="g360"><g
+             id="text364"
+             style="font-variant:normal;font-weight:normal;font-size:16px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-69.424,15)"
+             aria-label="set number n’ ( &gt; n)"><path
+               id="path1315"
+               style=""
+               d="m 1.856,-2.608 h -1.36 q 0.032,0.768 0.32,1.312 0.288,0.528 0.768,0.864 0.48,0.32 1.104,0.464 0.624,0.144 1.312,0.144 0.624,0 1.248,-0.128 0.64,-0.112 1.136,-0.416 0.512,-0.304 0.816,-0.8 0.32,-0.496 0.32,-1.248 0,-0.592 -0.24,-0.992 -0.224,-0.4 -0.608,-0.656 -0.368,-0.272 -0.864,-0.432 -0.48,-0.16 -0.992,-0.272 -0.48,-0.112 -0.96,-0.208 -0.48,-0.112 -0.864,-0.256 -0.384,-0.16 -0.64,-0.384 -0.24,-0.24 -0.24,-0.592 0,-0.32 0.16,-0.512 0.16,-0.208 0.416,-0.32 0.256,-0.128 0.56,-0.176 0.32,-0.048 0.624,-0.048 0.336,0 0.656,0.08 0.336,0.064 0.608,0.224 0.272,0.16 0.448,0.432 0.176,0.256 0.208,0.656 h 1.36 Q 7.104,-6.624 6.832,-7.12 6.56,-7.632 6.096,-7.92 5.648,-8.224 5.056,-8.336 4.464,-8.464 3.76,-8.464 q -0.544,0 -1.104,0.144 -0.544,0.128 -0.992,0.416 -0.432,0.272 -0.72,0.72 -0.272,0.448 -0.272,1.072 0,0.8 0.4,1.248 0.4,0.448 0.992,0.704 0.608,0.24 1.312,0.384 0.704,0.128 1.296,0.304 0.608,0.16 1.008,0.432 0.4,0.272 0.4,0.8 0,0.384 -0.192,0.64 -0.192,0.24 -0.496,0.368 -0.288,0.128 -0.64,0.176 -0.352,0.048 -0.672,0.048 -0.416,0 -0.816,-0.08 Q 2.88,-1.168 2.56,-1.344 2.256,-1.536 2.064,-1.84 1.872,-2.16 1.856,-2.608 Z" /><path
+               id="path1317"
+               style=""
+               d="m 14.768,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 H 14.736 Q 14.56,-1.808 14,-1.408 q -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 -0.496,-0.224 -0.816,-0.592 -0.32,-0.384 -0.464,-0.864 Q 10,-3.184 10.016,-3.728 h 6.192 Q 16.24,-4.48 16.064,-5.312 15.904,-6.144 15.456,-6.848 15.024,-7.552 14.288,-8 q -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path1319"
+               style=""
+               d="m 19.503999,-8.272 v -2.48 h -1.36 v 2.48 h -1.408 v 1.2 h 1.408 v 5.264 q 0,0.576 0.112,0.928 0.112,0.352 0.336,0.544 0.24,0.192 0.608,0.272 0.384,0.064 0.912,0.064 h 1.04 v -1.2 h -0.624 q -0.32,0 -0.528,-0.016 -0.192,-0.032 -0.304,-0.112 -0.112,-0.08 -0.16,-0.224 -0.032,-0.144 -0.032,-0.384 v -5.136 h 1.648 v -1.2 z" /><path
+               id="path1321"
+               style=""
+               d="M 27.104,-8.272 V 0 h 1.36 v -4.672 q 0,-0.56 0.144,-1.024 0.16,-0.48 0.464,-0.832 0.304,-0.352 0.752,-0.544 0.464,-0.192 1.088,-0.192 0.784,0 1.232,0.448 0.448,0.448 0.448,1.216 V 0 h 1.36 v -5.44 q 0,-0.672 -0.144,-1.216 -0.128,-0.56 -0.464,-0.96 -0.336,-0.4 -0.88,-0.624 -0.544,-0.224 -1.36,-0.224 -1.84,0 -2.688,1.504 h -0.032 v -1.312 z" /><path
+               id="path1323"
+               style=""
+               d="m 42.848002,0 v -8.272 h -1.36 V -3.6 q 0,0.56 -0.16,1.04 -0.144,0.464 -0.448,0.816 -0.304,0.352 -0.768,0.544 -0.448,0.192 -1.072,0.192 -0.784,0 -1.232,-0.448 -0.448,-0.448 -0.448,-1.216 v -5.6 h -1.36 v 5.44 q 0,0.672 0.128,1.232 0.144,0.544 0.48,0.944 0.336,0.4 0.88,0.624 0.544,0.208 1.36,0.208 0.912,0 1.584,-0.352 0.672,-0.368 1.104,-1.136 h 0.032 V 0 Z" /><path
+               id="path1325"
+               style=""
+               d="M 44.896002,-8.272 V 0 h 1.36 v -5.152 q 0,-0.24 0.112,-0.592 0.128,-0.368 0.384,-0.704 0.272,-0.336 0.688,-0.576 0.432,-0.24 1.024,-0.24 0.464,0 0.752,0.144 0.304,0.128 0.48,0.384 0.176,0.24 0.24,0.576 0.08,0.336 0.08,0.736 V 0 h 1.36 v -5.152 q 0,-0.96 0.576,-1.536 0.576,-0.576 1.584,-0.576 0.496,0 0.8,0.144 0.32,0.144 0.496,0.4 0.176,0.24 0.24,0.576 0.064,0.336 0.064,0.72 V 0 h 1.36 v -6.064 q 0,-0.64 -0.208,-1.088 -0.192,-0.464 -0.56,-0.752 -0.352,-0.288 -0.864,-0.416 -0.496,-0.144 -1.12,-0.144 -0.816,0 -1.504,0.368 -0.672,0.368 -1.088,1.04 -0.256,-0.768 -0.88,-1.088 -0.624,-0.32 -1.392,-0.32 -1.744,0 -2.672,1.408 h -0.032 v -1.216 z" /><path
+               id="path1327"
+               style=""
+               d="M 58.592,-11.424 V 0 h 1.36 v -1.104 h 0.032 q 0.224,0.368 0.544,0.624 0.336,0.24 0.704,0.384 0.368,0.144 0.736,0.208 0.384,0.064 0.688,0.064 0.944,0 1.648,-0.336 0.72,-0.336 1.184,-0.912 0.48,-0.592 0.704,-1.376 0.24,-0.784 0.24,-1.664 0,-0.88 -0.24,-1.664 -0.24,-0.784 -0.72,-1.376 -0.464,-0.608 -1.184,-0.96 -0.704,-0.352 -1.664,-0.352 -0.864,0 -1.584,0.32 -0.72,0.304 -1.056,0.992 h -0.032 v -4.272 z m 6.4,7.216 q 0,0.608 -0.128,1.184 -0.128,0.576 -0.416,1.024 -0.288,0.448 -0.768,0.72 -0.464,0.272 -1.168,0.272 -0.704,0 -1.2,-0.256 -0.496,-0.272 -0.816,-0.704 -0.304,-0.432 -0.448,-0.992 -0.144,-0.576 -0.144,-1.184 0,-0.576 0.128,-1.136 0.144,-0.56 0.448,-0.992 0.304,-0.448 0.784,-0.72 0.48,-0.272 1.168,-0.272 0.656,0 1.136,0.256 0.496,0.256 0.8,0.688 0.32,0.432 0.464,0.992 0.16,0.544 0.16,1.12 z" /><path
+               id="path1329"
+               style=""
+               d="m 73.776003,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 -0.496,-0.224 -0.816,-0.592 -0.32,-0.384 -0.464,-0.864 -0.144,-0.496 -0.128,-1.04 h 6.192 q 0.032,-0.752 -0.144,-1.584 -0.16,-0.832 -0.608,-1.536 -0.432,-0.704 -1.168,-1.152 -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path1331"
+               style=""
+               d="M 76.575998,-8.272 V 0 h 1.36 v -3.68 q 0,-0.8 0.16,-1.408 0.16,-0.624 0.512,-1.056 0.352,-0.432 0.928,-0.656 0.576,-0.224 1.392,-0.224 v -1.44 q -1.104,-0.032 -1.824,0.448 -0.72,0.48 -1.216,1.488 h -0.032 v -1.744 z" /><path
+               id="path1333"
+               style=""
+               d="M 86.399999,-8.272 V 0 h 1.36 v -4.672 q 0,-0.56 0.144,-1.024 0.16,-0.48 0.464,-0.832 0.304,-0.352 0.752,-0.544 0.464,-0.192 1.088,-0.192 0.784,0 1.232,0.448 0.448,0.448 0.448,1.216 V 0 h 1.36 v -5.44 q 0,-0.672 -0.144,-1.216 -0.128,-0.56 -0.464,-0.96 -0.336,-0.4 -0.88,-0.624 -0.544,-0.224 -1.36,-0.224 -1.84,0 -2.688,1.504 h -0.032 v -1.312 z" /><path
+               id="path1335"
+               style=""
+               d="m 95.600003,-11.424 v 1.776 h 0.944 q 0,0.272 -0.048,0.56 -0.032,0.272 -0.144,0.496 -0.112,0.224 -0.288,0.368 -0.176,0.128 -0.448,0.128 v 0.8 q 0.464,0 0.784,-0.192 0.336,-0.192 0.544,-0.512 0.224,-0.32 0.32,-0.736 0.112,-0.432 0.112,-0.912 v -1.776 z" /><path
+               id="path1337"
+               style=""
+               d="m 106.432,3.152 h 1.04 q -1.136,-1.84 -1.632,-3.648 -0.48,-1.808 -0.48,-3.824 0,-1.968 0.48,-3.76 0.48,-1.792 1.632,-3.616 h -1.04 q -1.248,1.648 -1.888,3.568 -0.624,1.92 -0.624,3.808 0,1.056 0.176,2.016 0.176,0.96 0.496,1.872 0.336,0.912 0.8,1.792 0.464,0.896 1.04,1.792 z" /><path
+               id="path1339"
+               style=""
+               d="m 112.496,-0.96 v 1.072 l 8.128,-3.664 v -0.992 l -8.128,-3.68 v 1.088 l 6.8,3.088 z" /><path
+               id="path1341"
+               style=""
+               d="M 126.832,-8.272 V 0 h 1.36 v -4.672 q 0,-0.56 0.144,-1.024 0.16,-0.48 0.464,-0.832 0.304,-0.352 0.752,-0.544 0.464,-0.192 1.088,-0.192 0.784,0 1.232,0.448 0.448,0.448 0.448,1.216 V 0 h 1.36 v -5.44 q 0,-0.672 -0.144,-1.216 -0.128,-0.56 -0.464,-0.96 -0.336,-0.4 -0.88,-0.624 -0.544,-0.224 -1.36,-0.224 -1.84,0 -2.688,1.504 h -0.032 v -1.312 z" /><path
+               id="path1343"
+               style=""
+               d="m 134.55999,3.152 h 1.024 q 1.248,-1.648 1.872,-3.552 0.64,-1.92 0.64,-3.808 0,-1.056 -0.176,-2.016 -0.176,-0.96 -0.512,-1.872 -0.32,-0.928 -0.784,-1.808 -0.464,-0.896 -1.04,-1.792 h -1.024 q 1.12,1.84 1.6,3.664 0.496,1.808 0.496,3.824 0,1.952 -0.48,3.76 -0.48,1.792 -1.616,3.6 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g366"><path
+             id="path368"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="M 16.37593,280.2055 173.7378,399.9897 M 16.5029,280.0779 173.4621,399.4442" /></g><path
+           id="path370"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 146.167,192.9206 -3.5843,5.7255 -2.8809,-3.7685 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g372"><path
+             id="path374"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 179.4984,404.9058 -4.5336,-7.242 -3.644,4.7667 z" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g376"><path
+             id="path378"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="M 16.74969,278.2409 94.98594,114.7833 M 16.81927,278.0894 94.75999,115.1163" /></g><path
+           id="path380"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 81.87786,427.8315 -4.86636,-4.6848 4.28029,-2.0446 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g382"><path
+             id="path384"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 98.18103,107.7741 -6.15531,5.9256 5.414,2.5862 z" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,103.7871,347.7251)"
+           id="g386"><g
+             id="text390"
+             style="font-variant:normal;font-weight:normal;font-size:14px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-63.651,-3.391998)"
+             aria-label="if majority acceptors "><path
+               id="path1346"
+               style=""
+               d="m 2.156,-8.54 v -1.456 h -1.19 v 1.456 z m -1.19,1.302 V 0 h 1.19 v -7.238 z" /><path
+               id="path1348"
+               style=""
+               d="M 4.494,-6.188 V 0 h 1.19 v -6.188 h 1.4 v -1.05 h -1.4 v -1.008 q 0,-0.476 0.238,-0.644 0.238,-0.168 0.672,-0.168 0.154,0 0.336,0.028 0.182,0.014 0.336,0.07 v -1.036 q -0.168,-0.056 -0.392,-0.084 -0.21,-0.028 -0.378,-0.028 -0.98,0 -1.498,0.462 -0.504,0.448 -0.504,1.33 v 1.078 H 3.276 v 1.05 z" /><path
+               id="path1350"
+               style=""
+               d="M 12.04,-7.238 V 0 h 1.19 v -4.508 q 0,-0.21 0.098,-0.518 0.112,-0.322 0.336,-0.616 0.238,-0.294 0.602,-0.504 0.378,-0.21 0.896,-0.21 0.406,0 0.658,0.126 0.266,0.112 0.42,0.336 0.154,0.21 0.21,0.504 0.07,0.294 0.07,0.644 V 0 h 1.19 v -4.508 q 0,-0.84 0.504,-1.344 0.504,-0.504 1.386,-0.504 0.434,0 0.7,0.126 0.28,0.126 0.434,0.35 0.154,0.21 0.21,0.504 Q 21,-5.082 21,-4.746 V 0 h 1.19 v -5.306 q 0,-0.56 -0.182,-0.952 -0.168,-0.406 -0.49,-0.658 -0.308,-0.252 -0.756,-0.364 -0.434,-0.126 -0.98,-0.126 -0.714,0 -1.316,0.322 -0.588,0.322 -0.952,0.91 -0.224,-0.672 -0.77,-0.952 -0.546,-0.28 -1.218,-0.28 -1.526,0 -2.338,1.232 H 13.16 v -1.064 z" /><path
+               id="path1352"
+               style=""
+               d="m 30.394,-0.028 q -0.308,0.182 -0.854,0.182 -0.462,0 -0.742,-0.252 -0.266,-0.266 -0.266,-0.854 -0.49,0.588 -1.148,0.854 -0.644,0.252 -1.4,0.252 -0.49,0 -0.938,-0.112 -0.434,-0.112 -0.756,-0.35 -0.322,-0.238 -0.518,-0.616 -0.182,-0.392 -0.182,-0.938 0,-0.616 0.21,-1.008 0.21,-0.392 0.546,-0.63 0.35,-0.252 0.784,-0.378 0.448,-0.126 0.91,-0.21 0.49,-0.098 0.924,-0.14 0.448,-0.056 0.784,-0.14 0.336,-0.098 0.532,-0.266 0.196,-0.182 0.196,-0.518 0,-0.392 -0.154,-0.63 -0.14,-0.238 -0.378,-0.364 -0.224,-0.126 -0.518,-0.168 -0.28,-0.042 -0.56,-0.042 -0.756,0 -1.26,0.294 -0.504,0.28 -0.546,1.078 h -1.19 q 0.028,-0.672 0.28,-1.134 0.252,-0.462 0.672,-0.742 0.42,-0.294 0.952,-0.42 0.546,-0.126 1.162,-0.126 0.49,0 0.966,0.07 0.49,0.07 0.882,0.294 0.392,0.21 0.63,0.602 0.238,0.392 0.238,1.022 v 3.724 q 0,0.42 0.042,0.616 0.056,0.196 0.336,0.196 0.154,0 0.364,-0.07 z m -1.932,-3.71 q -0.224,0.168 -0.588,0.252 -0.364,0.07 -0.77,0.126 -0.392,0.042 -0.798,0.112 -0.406,0.056 -0.728,0.196 -0.322,0.14 -0.532,0.406 -0.196,0.252 -0.196,0.7 0,0.294 0.112,0.504 0.126,0.196 0.308,0.322 0.196,0.126 0.448,0.182 0.252,0.056 0.532,0.056 0.588,0 1.008,-0.154 0.42,-0.168 0.686,-0.406 0.266,-0.252 0.392,-0.532 0.126,-0.294 0.126,-0.546 z" /><path
+               id="path1354"
+               style=""
+               d="m 32.76,-8.54 v -1.456 h -1.19 v 1.456 z m 0,9.45 v -8.148 h -1.19 v 7.952 q 0,0.56 -0.14,0.77 -0.14,0.224 -0.532,0.224 h -0.252 q -0.056,0 -0.098,-0.014 -0.056,0 -0.126,-0.014 v 1.022 q 0.28,0.056 0.602,0.056 0.798,0 1.26,-0.448 0.476,-0.434 0.476,-1.4 z" /><path
+               id="path1356"
+               style=""
+               d="m 35.476002,-3.612 q 0,-0.658 0.168,-1.162 0.182,-0.518 0.49,-0.868 0.308,-0.35 0.714,-0.532 0.42,-0.182 0.882,-0.182 0.462,0 0.868,0.182 0.42,0.182 0.728,0.532 0.308,0.35 0.476,0.868 0.182,0.504 0.182,1.162 0,0.658 -0.182,1.176 -0.168,0.504 -0.476,0.854 -0.308,0.336 -0.728,0.518 -0.406,0.182 -0.868,0.182 -0.462,0 -0.882,-0.182 -0.406,-0.182 -0.714,-0.518 -0.308,-0.35 -0.49,-0.854 -0.168,-0.518 -0.168,-1.176 z m -1.26,0 q 0,0.798 0.224,1.484 0.224,0.686 0.672,1.204 0.448,0.504 1.106,0.798 0.658,0.28 1.512,0.28 0.868,0 1.512,-0.28 0.658,-0.294 1.106,-0.798 0.448,-0.518 0.672,-1.204 0.224,-0.686 0.224,-1.484 0,-0.798 -0.224,-1.484 -0.224,-0.7 -0.672,-1.204 -0.448,-0.518 -1.106,-0.812 -0.644,-0.294 -1.512,-0.294 -0.854,0 -1.512,0.294 -0.658,0.294 -1.106,0.812 -0.448,0.504 -0.672,1.204 -0.224,0.686 -0.224,1.484 z" /><path
+               id="path1358"
+               style=""
+               d="M 42.602001,-7.238 V 0 h 1.19 v -3.22 q 0,-0.7 0.14,-1.232 0.14,-0.546 0.448,-0.924 0.308,-0.378 0.812,-0.574 0.504,-0.196 1.218,-0.196 v -1.26 q -0.966,-0.028 -1.596,0.392 -0.63,0.42 -1.064,1.302 h -0.028 v -1.526 z" /><path
+               id="path1360"
+               style=""
+               d="m 48.566,-8.54 v -1.456 h -1.19 v 1.456 z m -1.19,1.302 V 0 h 1.19 v -7.238 z" /><path
+               id="path1362"
+               style=""
+               d="m 52.066002,-7.238 v -2.17 h -1.19 v 2.17 h -1.232 v 1.05 h 1.232 v 4.606 q 0,0.504 0.098,0.812 0.098,0.308 0.294,0.476 0.21,0.168 0.532,0.238 0.336,0.056 0.798,0.056 h 0.91 v -1.05 h -0.546 q -0.28,0 -0.462,-0.014 -0.168,-0.028 -0.266,-0.098 -0.098,-0.07 -0.14,-0.196 -0.028,-0.126 -0.028,-0.336 v -4.494 h 1.442 v -1.05 z" /><path
+               id="path1364"
+               style=""
+               d="m 57.666001,0.966 q -0.21,0.532 -0.42,0.896 -0.196,0.364 -0.448,0.588 -0.238,0.238 -0.546,0.336 -0.294,0.112 -0.686,0.112 -0.21,0 -0.42,-0.028 -0.21,-0.028 -0.406,-0.098 V 1.68 q 0.154,0.07 0.35,0.112 0.21,0.056 0.35,0.056 0.364,0 0.602,-0.182 0.252,-0.168 0.378,-0.49 l 0.49,-1.218 -2.87,-7.196 h 1.344 l 2.114,5.922 h 0.028 l 2.03,-5.922 h 1.26 z" /><path
+               id="path1366"
+               style=""
+               d="m 72.128,-0.028 q -0.308,0.182 -0.854,0.182 -0.462,0 -0.742,-0.252 -0.266,-0.266 -0.266,-0.854 -0.49,0.588 -1.148,0.854 -0.644,0.252 -1.4,0.252 -0.49,0 -0.938,-0.112 -0.434,-0.112 -0.756,-0.35 -0.322,-0.238 -0.518,-0.616 -0.182,-0.392 -0.182,-0.938 0,-0.616 0.21,-1.008 0.21,-0.392 0.546,-0.63 0.35,-0.252 0.784,-0.378 0.448,-0.126 0.91,-0.21 0.49,-0.098 0.924,-0.14 0.448,-0.056 0.784,-0.14 0.336,-0.098 0.532,-0.266 0.196,-0.182 0.196,-0.518 0,-0.392 -0.154,-0.63 -0.14,-0.238 -0.378,-0.364 -0.224,-0.126 -0.518,-0.168 -0.28,-0.042 -0.56,-0.042 -0.756,0 -1.26,0.294 -0.504,0.28 -0.546,1.078 h -1.19 q 0.028,-0.672 0.28,-1.134 0.252,-0.462 0.672,-0.742 0.42,-0.294 0.952,-0.42 0.546,-0.126 1.162,-0.126 0.49,0 0.966,0.07 0.49,0.07 0.882,0.294 0.392,0.21 0.63,0.602 0.238,0.392 0.238,1.022 v 3.724 q 0,0.42 0.042,0.616 0.056,0.196 0.336,0.196 0.154,0 0.364,-0.07 z m -1.932,-3.71 q -0.224,0.168 -0.588,0.252 -0.364,0.07 -0.77,0.126 -0.392,0.042 -0.798,0.112 -0.406,0.056 -0.728,0.196 -0.322,0.14 -0.532,0.406 -0.196,0.252 -0.196,0.7 0,0.294 0.112,0.504 0.126,0.196 0.308,0.322 0.196,0.126 0.448,0.182 0.252,0.056 0.532,0.056 0.588,0 1.008,-0.154 0.42,-0.168 0.686,-0.406 0.266,-0.252 0.392,-0.532 0.126,-0.294 0.126,-0.546 z" /><path
+               id="path1368"
+               style=""
+               d="m 78.147997,-4.914 h 1.232 q -0.07,-0.644 -0.336,-1.106 -0.266,-0.476 -0.686,-0.784 -0.406,-0.308 -0.952,-0.448 -0.532,-0.154 -1.148,-0.154 -0.854,0 -1.498,0.308 -0.644,0.294 -1.078,0.826 -0.42,0.518 -0.63,1.232 -0.21,0.7 -0.21,1.512 0,0.812 0.21,1.498 0.224,0.672 0.644,1.162 0.434,0.49 1.064,0.756 0.644,0.266 1.47,0.266 1.386,0 2.184,-0.728 0.812,-0.728 1.008,-2.072 h -1.218 q -0.112,0.84 -0.616,1.302 -0.49,0.462 -1.372,0.462 -0.56,0 -0.966,-0.224 -0.406,-0.224 -0.658,-0.588 -0.252,-0.378 -0.378,-0.854 -0.112,-0.476 -0.112,-0.98 0,-0.546 0.112,-1.05 0.112,-0.518 0.364,-0.91 0.266,-0.392 0.7,-0.63 0.434,-0.238 1.078,-0.238 0.756,0 1.204,0.378 0.448,0.378 0.588,1.064 z" /><path
+               id="path1370"
+               style=""
+               d="m 85.666003,-4.914 h 1.232 q -0.07,-0.644 -0.336,-1.106 -0.266,-0.476 -0.686,-0.784 -0.406,-0.308 -0.952,-0.448 -0.532,-0.154 -1.148,-0.154 -0.854,0 -1.498,0.308 -0.644,0.294 -1.078,0.826 -0.42,0.518 -0.63,1.232 -0.21,0.7 -0.21,1.512 0,0.812 0.21,1.498 0.224,0.672 0.644,1.162 0.434,0.49 1.064,0.756 0.644,0.266 1.47,0.266 1.386,0 2.184,-0.728 0.812,-0.728 1.008,-2.072 h -1.218 q -0.112,0.84 -0.616,1.302 -0.49,0.462 -1.372,0.462 -0.56,0 -0.966,-0.224 -0.406,-0.224 -0.658,-0.588 -0.252,-0.378 -0.378,-0.854 -0.112,-0.476 -0.112,-0.98 0,-0.546 0.112,-1.05 0.112,-0.518 0.364,-0.91 0.266,-0.392 0.7,-0.63 0.434,-0.238 1.078,-0.238 0.756,0 1.204,0.378 0.448,0.378 0.588,1.064 z" /><path
+               id="path1372"
+               style=""
+               d="m 93.296001,-4.312 h -4.158 q 0.028,-0.42 0.182,-0.784 0.154,-0.378 0.42,-0.658 0.266,-0.28 0.63,-0.434 0.378,-0.168 0.84,-0.168 0.448,0 0.812,0.168 0.378,0.154 0.644,0.434 0.28,0.266 0.434,0.644 0.168,0.378 0.196,0.798 z m 1.148,2.016 h -1.176 q -0.154,0.714 -0.644,1.064 -0.476,0.35 -1.232,0.35 -0.588,0 -1.022,-0.196 -0.434,-0.196 -0.714,-0.518 -0.28,-0.336 -0.406,-0.756 -0.126,-0.434 -0.112,-0.91 h 5.418 q 0.028,-0.658 -0.126,-1.386 -0.14,-0.728 -0.532,-1.344 -0.378,-0.616 -1.022,-1.008 -0.63,-0.406 -1.596,-0.406 -0.742,0 -1.372,0.28 -0.616,0.28 -1.078,0.784 -0.448,0.504 -0.7,1.19 -0.252,0.686 -0.252,1.512 0.028,0.826 0.238,1.526 0.224,0.7 0.658,1.204 0.434,0.504 1.064,0.784 0.644,0.28 1.512,0.28 1.232,0 2.044,-0.616 0.812,-0.616 1.05,-1.834 z" /><path
+               id="path1374"
+               style=""
+               d="m 95.829998,-7.238 v 9.996 h 1.19 v -3.724 h 0.028 q 0.196,0.322 0.476,0.546 0.294,0.21 0.616,0.336 0.322,0.126 0.644,0.182 0.336,0.056 0.602,0.056 0.826002,0 1.442002,-0.294 0.63,-0.294 1.036,-0.798 0.42,-0.518 0.616,-1.204 0.21,-0.686 0.21,-1.456 0,-0.77 -0.21,-1.456 -0.21,-0.686 -0.63,-1.204 -0.406,-0.532 -1.036,-0.84 -0.616,-0.308 -1.456002,-0.308 -0.756,0 -1.386,0.28 -0.63,0.266 -0.924,0.868 h -0.028 v -0.98 z M 101.43,-3.682 q 0,0.532 -0.112,1.036 -0.112,0.504 -0.364,0.896 -0.252,0.392 -0.672,0.63 -0.406002,0.238 -1.022002,0.238 -0.616,0 -1.05,-0.224 -0.434,-0.238 -0.714,-0.616 -0.266,-0.378 -0.392,-0.868 -0.126,-0.504 -0.126,-1.036 0,-0.504 0.112,-0.994 0.126,-0.49 0.392,-0.868 0.266,-0.392 0.686,-0.63 0.42,-0.238 1.022,-0.238 0.574,0 0.994002,0.224 0.434,0.224 0.7,0.602 0.28,0.378 0.406,0.868 0.14,0.476 0.14,0.98 z" /><path
+               id="path1376"
+               style=""
+               d="m 105.742,-7.238 v -2.17 h -1.19 v 2.17 h -1.232 v 1.05 h 1.232 v 4.606 q 0,0.504 0.098,0.812 0.098,0.308 0.294,0.476 0.21,0.168 0.532,0.238 Q 105.812,0 106.274,0 h 0.91 v -1.05 h -0.546 q -0.28,0 -0.462,-0.014 -0.168,-0.028 -0.266,-0.098 -0.098,-0.07 -0.14,-0.196 -0.028,-0.126 -0.028,-0.336 v -4.494 h 1.442 v -1.05 z" /><path
+               id="path1378"
+               style=""
+               d="m 109.368,-3.612 q 0,-0.658 0.168,-1.162 0.182,-0.518 0.49,-0.868 0.308,-0.35 0.714,-0.532 0.42,-0.182 0.882,-0.182 0.462,0 0.868,0.182 0.42,0.182 0.728,0.532 0.308,0.35 0.476,0.868 0.182,0.504 0.182,1.162 0,0.658 -0.182,1.176 -0.168,0.504 -0.476,0.854 -0.308,0.336 -0.728,0.518 -0.406,0.182 -0.868,0.182 -0.462,0 -0.882,-0.182 -0.406,-0.182 -0.714,-0.518 -0.308,-0.35 -0.49,-0.854 -0.168,-0.518 -0.168,-1.176 z m -1.26,0 q 0,0.798 0.224,1.484 0.224,0.686 0.672,1.204 0.448,0.504 1.106,0.798 0.658,0.28 1.512,0.28 0.868,0 1.512,-0.28 0.658,-0.294 1.106,-0.798 0.448,-0.518 0.672,-1.204 0.224,-0.686 0.224,-1.484 0,-0.798 -0.224,-1.484 -0.224,-0.7 -0.672,-1.204 -0.448,-0.518 -1.106,-0.812 -0.644,-0.294 -1.512,-0.294 -0.854,0 -1.512,0.294 -0.658,0.294 -1.106,0.812 -0.448,0.504 -0.672,1.204 -0.224,0.686 -0.224,1.484 z" /><path
+               id="path1380"
+               style=""
+               d="M 116.494,-7.238 V 0 h 1.19 v -3.22 q 0,-0.7 0.14,-1.232 0.14,-0.546 0.448,-0.924 0.308,-0.378 0.812,-0.574 0.504,-0.196 1.218,-0.196 v -1.26 q -0.966,-0.028 -1.596,0.392 -0.63,0.42 -1.064,1.302 h -0.028 v -1.526 z" /><path
+               id="path1382"
+               style=""
+               d="m 121.926,-2.282 h -1.19 q 0.028,0.672 0.28,1.148 0.252,0.462 0.672,0.756 0.42,0.28 0.966,0.406 0.546,0.126 1.148,0.126 0.546,0 1.092,-0.112 0.56,-0.098 0.994,-0.364 0.448,-0.266 0.714,-0.7 0.28,-0.434 0.28,-1.092 0,-0.518 -0.21,-0.868 -0.196,-0.35 -0.532,-0.574 -0.322,-0.238 -0.756,-0.378 -0.42,-0.14 -0.868,-0.238 -0.42,-0.098 -0.84,-0.182 -0.42,-0.098 -0.756,-0.224 -0.336,-0.14 -0.56,-0.336 -0.21,-0.21 -0.21,-0.518 0,-0.28 0.14,-0.448 0.14,-0.182 0.364,-0.28 0.224,-0.112 0.49,-0.154 0.28,-0.042 0.546,-0.042 0.294,0 0.574,0.07 0.294,0.056 0.532,0.196 0.238,0.14 0.392,0.378 0.154,0.224 0.182,0.574 h 1.19 q -0.042,-0.658 -0.28,-1.092 -0.238,-0.448 -0.644,-0.7 -0.392,-0.266 -0.91,-0.364 -0.518,-0.112 -1.134,-0.112 -0.476,0 -0.966,0.126 -0.476,0.112 -0.868,0.364 -0.378,0.238 -0.63,0.63 -0.238,0.392 -0.238,0.938 0,0.7 0.35,1.092 0.35,0.392 0.868,0.616 0.532,0.21 1.148,0.336 0.616,0.112 1.134,0.266 0.532,0.14 0.882,0.378 0.35,0.238 0.35,0.7 0,0.336 -0.168,0.56 -0.168,0.21 -0.434,0.322 -0.252,0.112 -0.56,0.154 -0.308,0.042 -0.588,0.042 -0.364,0 -0.714,-0.07 -0.336,-0.07 -0.616,-0.224 -0.266,-0.168 -0.434,-0.434 -0.168,-0.28 -0.182,-0.672 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,103.7871,347.7251)"
+           id="g392"><g
+             id="text396"
+             style="font-variant:normal;font-weight:normal;font-size:14px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-76.629,13)"
+             aria-label="not Promise or response"><path
+               id="path1385"
+               style=""
+               d="M 0.896,-7.238 V 0 h 1.19 v -4.088 q 0,-0.49 0.126,-0.896 0.14,-0.42 0.406,-0.728 0.266,-0.308 0.658,-0.476 0.406,-0.168 0.952,-0.168 0.686,0 1.078,0.392 0.392,0.392 0.392,1.064 V 0 h 1.19 v -4.76 q 0,-0.588 -0.126,-1.064 -0.112,-0.49 -0.406,-0.84 -0.294,-0.35 -0.77,-0.546 -0.476,-0.196 -1.19,-0.196 -1.61,0 -2.352,1.316 H 2.016 v -1.148 z" /><path
+               id="path1387"
+               style=""
+               d="m 9.5479999,-3.612 q 0,-0.658 0.168,-1.162 0.182,-0.518 0.4900001,-0.868 0.308,-0.35 0.714,-0.532 0.42,-0.182 0.882,-0.182 0.462,0 0.868,0.182 0.42,0.182 0.728,0.532 0.308,0.35 0.476,0.868 0.182,0.504 0.182,1.162 0,0.658 -0.182,1.176 -0.168,0.504 -0.476,0.854 -0.308,0.336 -0.728,0.518 -0.406,0.182 -0.868,0.182 -0.462,0 -0.882,-0.182 -0.406,-0.182 -0.714,-0.518 -0.3080001,-0.35 -0.4900001,-0.854 -0.168,-0.518 -0.168,-1.176 z m -1.26,0 q 0,0.798 0.224,1.484 0.224,0.686 0.672,1.204 0.448,0.504 1.1060001,0.798 0.658,0.28 1.512,0.28 0.868,0 1.512,-0.28 0.658,-0.294 1.106,-0.798 0.448,-0.518 0.672,-1.204 0.224,-0.686 0.224,-1.484 0,-0.798 -0.224,-1.484 -0.224,-0.7 -0.672,-1.204 -0.448,-0.518 -1.106,-0.812 -0.644,-0.294 -1.512,-0.294 -0.854,0 -1.512,0.294 -0.6580001,0.294 -1.1060001,0.812 -0.448,0.504 -0.672,1.204 -0.224,0.686 -0.224,1.484 z" /><path
+               id="path1389"
+               style=""
+               d="m 18.368,-7.238 v -2.17 h -1.19 v 2.17 h -1.232 v 1.05 h 1.232 v 4.606 q 0,0.504 0.098,0.812 0.098,0.308 0.294,0.476 0.21,0.168 0.532,0.238 Q 18.438,0 18.9,0 h 0.91 v -1.05 h -0.546 q -0.28,0 -0.462,-0.014 -0.168,-0.028 -0.266,-0.098 -0.098,-0.07 -0.14,-0.196 -0.028,-0.126 -0.028,-0.336 v -4.494 h 1.442 v -1.05 z" /><path
+               id="path1391"
+               style=""
+               d="m 26.544,-5.208 v -3.668 h 2.604 q 1.134,0 1.652,0.476 0.532,0.462 0.532,1.358 0,0.896 -0.532,1.372 -0.518,0.476 -1.652,0.462 z m -1.33,-4.788 V 0 h 1.33 v -4.088 h 3.052 q 1.512,0.014 2.282,-0.77 0.784,-0.784 0.784,-2.184 0,-1.4 -0.784,-2.17 -0.77,-0.784 -2.282,-0.784 z" /><path
+               id="path1393"
+               style=""
+               d="M 34.048,-7.238 V 0 h 1.19 v -3.22 q 0,-0.7 0.14,-1.232 0.14,-0.546 0.448,-0.924 0.308,-0.378 0.812,-0.574 0.504,-0.196 1.218,-0.196 v -1.26 q -0.966,-0.028 -1.596,0.392 -0.63,0.42 -1.064,1.302 h -0.028 v -1.526 z" /><path
+               id="path1395"
+               style=""
+               d="m 39.368,-3.612 q 0,-0.658 0.168,-1.162 0.182,-0.518 0.49,-0.868 0.308,-0.35 0.714,-0.532 0.42,-0.182 0.882,-0.182 0.462,0 0.868,0.182 0.42,0.182 0.728,0.532 0.308,0.35 0.476,0.868 0.182,0.504 0.182,1.162 0,0.658 -0.182,1.176 -0.168,0.504 -0.476,0.854 -0.308,0.336 -0.728,0.518 -0.406,0.182 -0.868,0.182 -0.462,0 -0.882,-0.182 -0.406,-0.182 -0.714,-0.518 -0.308,-0.35 -0.49,-0.854 -0.168,-0.518 -0.168,-1.176 z m -1.26,0 q 0,0.798 0.224,1.484 0.224,0.686 0.672,1.204 0.448,0.504 1.106,0.798 0.658,0.28 1.512,0.28 0.868,0 1.512,-0.28 0.658,-0.294 1.106,-0.798 0.448,-0.518 0.672,-1.204 0.224,-0.686 0.224,-1.484 0,-0.798 -0.224,-1.484 -0.224,-0.7 -0.672,-1.204 -0.448,-0.518 -1.106,-0.812 -0.644,-0.294 -1.512,-0.294 -0.854,0 -1.512,0.294 -0.658,0.294 -1.106,0.812 -0.448,0.504 -0.672,1.204 -0.224,0.686 -0.224,1.484 z" /><path
+               id="path1397"
+               style=""
+               d="M 46.535999,-7.238 V 0 h 1.19 v -4.508 q 0,-0.21 0.098,-0.518 0.112,-0.322 0.336,-0.616 0.238,-0.294 0.602,-0.504 0.378,-0.21 0.896,-0.21 0.406,0 0.658,0.126 0.266,0.112 0.42,0.336 0.154,0.21 0.21,0.504 0.07,0.294 0.07,0.644 V 0 h 1.19 v -4.508 q 0,-0.84 0.504,-1.344 0.504,-0.504 1.386,-0.504 0.434,0 0.7,0.126 0.28,0.126 0.434,0.35 0.154,0.21 0.21,0.504 0.056,0.294 0.056,0.63 V 0 h 1.19 v -5.306 q 0,-0.56 -0.182,-0.952 -0.168,-0.406 -0.49,-0.658 -0.308,-0.252 -0.756,-0.364 -0.434,-0.126 -0.98,-0.126 -0.714,0 -1.316,0.322 -0.588,0.322 -0.952,0.91 -0.224,-0.672 -0.77,-0.952 -0.546,-0.28 -1.218,-0.28 -1.526,0 -2.338,1.232 h -0.028 v -1.064 z" /><path
+               id="path1399"
+               style=""
+               d="m 59.738001,-8.54 v -1.456 h -1.19 v 1.456 z m -1.19,1.302 V 0 h 1.19 v -7.238 z" /><path
+               id="path1401"
+               style=""
+               d="m 62.313999,-2.282 h -1.19 q 0.028,0.672 0.28,1.148 0.252,0.462 0.672,0.756 0.42,0.28 0.966,0.406 0.546,0.126 1.148,0.126 0.546,0 1.092,-0.112 0.56,-0.098 0.994,-0.364 0.448,-0.266 0.714,-0.7 0.28,-0.434 0.28,-1.092 0,-0.518 -0.21,-0.868 -0.196,-0.35 -0.532,-0.574 -0.322,-0.238 -0.756,-0.378 -0.42,-0.14 -0.868,-0.238 -0.42,-0.098 -0.84,-0.182 -0.42,-0.098 -0.756,-0.224 -0.336,-0.14 -0.56,-0.336 -0.21,-0.21 -0.21,-0.518 0,-0.28 0.14,-0.448 0.14,-0.182 0.364,-0.28 0.224,-0.112 0.49,-0.154 0.28,-0.042 0.546,-0.042 0.294,0 0.574,0.07 0.294,0.056 0.532,0.196 0.238,0.14 0.392,0.378 0.154,0.224 0.182,0.574 h 1.19 q -0.042,-0.658 -0.28,-1.092 -0.238,-0.448 -0.644,-0.7 -0.392,-0.266 -0.91,-0.364 -0.518,-0.112 -1.134,-0.112 -0.476,0 -0.966,0.126 -0.476,0.112 -0.868,0.364 -0.378,0.238 -0.63,0.63 -0.238,0.392 -0.238,0.938 0,0.7 0.35,1.092 0.35,0.392 0.868,0.616 0.532,0.21 1.148,0.336 0.616,0.112 1.134,0.266 0.532,0.14 0.882,0.378 0.35,0.238 0.35,0.7 0,0.336 -0.168,0.56 -0.168,0.21 -0.434,0.322 -0.252,0.112 -0.56,0.154 -0.308,0.042 -0.588,0.042 -0.364,0 -0.714,-0.07 -0.336,-0.07 -0.616,-0.224 -0.266,-0.168 -0.434,-0.434 -0.168,-0.28 -0.182,-0.672 z" /><path
+               id="path1403"
+               style=""
+               d="m 73.612002,-4.312 h -4.158 q 0.028,-0.42 0.182,-0.784 0.154,-0.378 0.42,-0.658 0.266,-0.28 0.63,-0.434 0.378,-0.168 0.84,-0.168 0.448,0 0.812,0.168 0.378,0.154 0.644,0.434 0.28,0.266 0.434,0.644 0.168,0.378 0.196,0.798 z m 1.148,2.016 h -1.176 q -0.154,0.714 -0.644,1.064 -0.476,0.35 -1.232,0.35 -0.588,0 -1.022,-0.196 -0.434,-0.196 -0.714,-0.518 -0.28,-0.336 -0.406,-0.756 -0.126,-0.434 -0.112,-0.91 h 5.418 q 0.028,-0.658 -0.126,-1.386 -0.14,-0.728 -0.532,-1.344 -0.378,-0.616 -1.022,-1.008 -0.63,-0.406 -1.596,-0.406 -0.742,0 -1.372,0.28 -0.616,0.28 -1.078,0.784 -0.448,0.504 -0.7,1.19 -0.252,0.686 -0.252,1.512 0.028,0.826 0.238,1.526 0.224,0.7 0.658,1.204 0.434,0.504 1.064,0.784 0.644,0.28 1.512,0.28 1.232,0 2.044,-0.616 0.812,-0.616 1.05,-1.834 z" /><path
+               id="path1405"
+               style=""
+               d="m 80.863998,-3.612 q 0,-0.658 0.168,-1.162 0.182,-0.518 0.49,-0.868 0.308,-0.35 0.714,-0.532 0.42,-0.182 0.882,-0.182 0.462,0 0.868,0.182 0.42,0.182 0.728,0.532 0.308,0.35 0.476,0.868 0.182,0.504 0.182,1.162 0,0.658 -0.182,1.176 -0.168,0.504 -0.476,0.854 -0.308,0.336 -0.728,0.518 -0.406,0.182 -0.868,0.182 -0.462,0 -0.882,-0.182 -0.406,-0.182 -0.714,-0.518 -0.308,-0.35 -0.49,-0.854 -0.168,-0.518 -0.168,-1.176 z m -1.26,0 q 0,0.798 0.224,1.484 0.224,0.686 0.672,1.204 0.448,0.504 1.106,0.798 0.658,0.28 1.512,0.28 0.868,0 1.512,-0.28 0.658,-0.294 1.106,-0.798 0.448,-0.518 0.672,-1.204 0.224,-0.686 0.224,-1.484 0,-0.798 -0.224,-1.484 -0.224,-0.7 -0.672,-1.204 -0.448,-0.518 -1.106,-0.812 -0.644,-0.294 -1.512,-0.294 -0.854,0 -1.512,0.294 -0.658,0.294 -1.106,0.812 -0.448,0.504 -0.672,1.204 -0.224,0.686 -0.224,1.484 z" /><path
+               id="path1407"
+               style=""
+               d="M 87.990002,-7.238 V 0 h 1.19 v -3.22 q 0,-0.7 0.14,-1.232 0.14,-0.546 0.448,-0.924 0.308,-0.378 0.812,-0.574 0.504,-0.196 1.218,-0.196 v -1.26 q -0.966,-0.028 -1.596,0.392 -0.63,0.42 -1.064,1.302 h -0.028 v -1.526 z" /><path
+               id="path1409"
+               style=""
+               d="M 96.544002,-7.238 V 0 h 1.19 v -3.22 q 0,-0.7 0.14,-1.232 0.14,-0.546 0.448,-0.924 0.308,-0.378 0.812,-0.574 0.504,-0.196 1.217998,-0.196 v -1.26 q -0.965998,-0.028 -1.595998,0.392 -0.63,0.42 -1.064,1.302 h -0.028 v -1.526 z" /><path
+               id="path1411"
+               style=""
+               d="m 106.022,-4.312 h -4.158 q 0.028,-0.42 0.182,-0.784 0.154,-0.378 0.42,-0.658 0.266,-0.28 0.63,-0.434 0.378,-0.168 0.84,-0.168 0.448,0 0.812,0.168 0.378,0.154 0.644,0.434 0.28,0.266 0.434,0.644 0.168,0.378 0.196,0.798 z m 1.148,2.016 h -1.176 q -0.154,0.714 -0.644,1.064 -0.476,0.35 -1.232,0.35 -0.588,0 -1.022,-0.196 -0.434,-0.196 -0.714,-0.518 -0.28,-0.336 -0.406,-0.756 -0.126,-0.434 -0.112,-0.91 h 5.418 q 0.028,-0.658 -0.126,-1.386 -0.14,-0.728 -0.532,-1.344 -0.378,-0.616 -1.022,-1.008 -0.63,-0.406 -1.596,-0.406 -0.742,0 -1.372,0.28 -0.616,0.28 -1.078,0.784 -0.448,0.504 -0.7,1.19 -0.252,0.686 -0.252,1.512 0.028,0.826 0.238,1.526 0.224,0.7 0.658,1.204 0.434,0.504 1.064,0.784 0.644,0.28 1.512,0.28 1.232,0 2.044,-0.616 0.812,-0.616 1.05,-1.834 z" /><path
+               id="path1413"
+               style=""
+               d="m 109.242,-2.282 h -1.19 q 0.028,0.672 0.28,1.148 0.252,0.462 0.672,0.756 0.42,0.28 0.966,0.406 0.546,0.126 1.148,0.126 0.546,0 1.092,-0.112 0.56,-0.098 0.994,-0.364 0.448,-0.266 0.714,-0.7 0.28,-0.434 0.28,-1.092 0,-0.518 -0.21,-0.868 -0.196,-0.35 -0.532,-0.574 -0.322,-0.238 -0.756,-0.378 -0.42,-0.14 -0.868,-0.238 -0.42,-0.098 -0.84,-0.182 -0.42,-0.098 -0.756,-0.224 -0.336,-0.14 -0.56,-0.336 -0.21,-0.21 -0.21,-0.518 0,-0.28 0.14,-0.448 0.14,-0.182 0.364,-0.28 0.224,-0.112 0.49,-0.154 0.28,-0.042 0.546,-0.042 0.294,0 0.574,0.07 0.294,0.056 0.532,0.196 0.238,0.14 0.392,0.378 0.154,0.224 0.182,0.574 h 1.19 q -0.042,-0.658 -0.28,-1.092 -0.238,-0.448 -0.644,-0.7 -0.392,-0.266 -0.91,-0.364 -0.518,-0.112 -1.134,-0.112 -0.476,0 -0.966,0.126 -0.476,0.112 -0.868,0.364 -0.378,0.238 -0.63,0.63 -0.238,0.392 -0.238,0.938 0,0.7 0.35,1.092 0.35,0.392 0.868,0.616 0.532,0.21 1.148,0.336 0.616,0.112 1.134,0.266 0.532,0.14 0.882,0.378 0.35,0.238 0.35,0.7 0,0.336 -0.168,0.56 -0.168,0.21 -0.434,0.322 -0.252,0.112 -0.56,0.154 -0.308,0.042 -0.588,0.042 -0.364,0 -0.714,-0.07 -0.336,-0.07 -0.616,-0.224 -0.266,-0.168 -0.434,-0.434 -0.168,-0.28 -0.182,-0.672 z" /><path
+               id="path1415"
+               style=""
+               d="m 115.556,-7.238 v 9.996 h 1.19 v -3.724 h 0.028 q 0.196,0.322 0.476,0.546 0.294,0.21 0.616,0.336 0.322,0.126 0.644,0.182 0.336,0.056 0.602,0.056 0.826,0 1.442,-0.294 0.63,-0.294 1.036,-0.798 0.42,-0.518 0.616,-1.204 0.21,-0.686 0.21,-1.456 0,-0.77 -0.21,-1.456 -0.21,-0.686 -0.63,-1.204 -0.406,-0.532 -1.036,-0.84 -0.616,-0.308 -1.456,-0.308 -0.756,0 -1.386,0.28 -0.63,0.266 -0.924,0.868 h -0.028 v -0.98 z m 5.6,3.556 q 0,0.532 -0.112,1.036 -0.112,0.504 -0.364,0.896 -0.252,0.392 -0.672,0.63 -0.406,0.238 -1.022,0.238 -0.616,0 -1.05,-0.224 -0.434,-0.238 -0.714,-0.616 -0.266,-0.378 -0.392,-0.868 -0.126,-0.504 -0.126,-1.036 0,-0.504 0.112,-0.994 0.126,-0.49 0.392,-0.868 0.266,-0.392 0.686,-0.63 0.42,-0.238 1.022,-0.238 0.574,0 0.994,0.224 0.434,0.224 0.7,0.602 0.28,0.378 0.406,0.868 0.14,0.476 0.14,0.98 z" /><path
+               id="path1417"
+               style=""
+               d="m 124.684,-3.612 q 0,-0.658 0.168,-1.162 0.182,-0.518 0.49,-0.868 0.308,-0.35 0.714,-0.532 0.42,-0.182 0.882,-0.182 0.462,0 0.868,0.182 0.42,0.182 0.728,0.532 0.308,0.35 0.476,0.868 0.182,0.504 0.182,1.162 0,0.658 -0.182,1.176 -0.168,0.504 -0.476,0.854 -0.308,0.336 -0.728,0.518 -0.406,0.182 -0.868,0.182 -0.462,0 -0.882,-0.182 -0.406,-0.182 -0.714,-0.518 -0.308,-0.35 -0.49,-0.854 -0.168,-0.518 -0.168,-1.176 z m -1.26,0 q 0,0.798 0.224,1.484 0.224,0.686 0.672,1.204 0.448,0.504 1.106,0.798 0.658,0.28 1.512,0.28 0.868,0 1.512,-0.28 0.658,-0.294 1.106,-0.798 0.448,-0.518 0.672,-1.204 0.224,-0.686 0.224,-1.484 0,-0.798 -0.224,-1.484 -0.224,-0.7 -0.672,-1.204 -0.448,-0.518 -1.106,-0.812 -0.644,-0.294 -1.512,-0.294 -0.854,0 -1.512,0.294 -0.658,0.294 -1.106,0.812 -0.448,0.504 -0.672,1.204 -0.224,0.686 -0.224,1.484 z" /><path
+               id="path1419"
+               style=""
+               d="M 131.85199,-7.238 V 0 h 1.19 v -4.088 q 0,-0.49 0.126,-0.896 0.14,-0.42 0.406,-0.728 0.266,-0.308 0.658,-0.476 0.406,-0.168 0.952,-0.168 0.686,0 1.078,0.392 0.392,0.392 0.392,1.064 V 0 h 1.19 v -4.76 q 0,-0.588 -0.126,-1.064 -0.112,-0.49 -0.406,-0.84 -0.294,-0.35 -0.77,-0.546 -0.476,-0.196 -1.19,-0.196 -1.61,0 -2.352,1.316 h -0.028 v -1.148 z" /><path
+               id="path1421"
+               style=""
+               d="m 140.36401,-2.282 h -1.19 q 0.028,0.672 0.28,1.148 0.252,0.462 0.672,0.756 0.42,0.28 0.966,0.406 0.546,0.126 1.148,0.126 0.546,0 1.092,-0.112 0.56,-0.098 0.994,-0.364 0.448,-0.266 0.714,-0.7 0.28,-0.434 0.28,-1.092 0,-0.518 -0.21,-0.868 -0.196,-0.35 -0.532,-0.574 -0.322,-0.238 -0.756,-0.378 -0.42,-0.14 -0.868,-0.238 -0.42,-0.098 -0.84,-0.182 -0.42,-0.098 -0.756,-0.224 -0.336,-0.14 -0.56,-0.336 -0.21,-0.21 -0.21,-0.518 0,-0.28 0.14,-0.448 0.14,-0.182 0.364,-0.28 0.224,-0.112 0.49,-0.154 0.28,-0.042 0.546,-0.042 0.294,0 0.574,0.07 0.294,0.056 0.532,0.196 0.238,0.14 0.392,0.378 0.154,0.224 0.182,0.574 h 1.19 q -0.042,-0.658 -0.28,-1.092 -0.238,-0.448 -0.644,-0.7 -0.392,-0.266 -0.91,-0.364 -0.518,-0.112 -1.134,-0.112 -0.476,0 -0.966,0.126 -0.476,0.112 -0.868,0.364 -0.378,0.238 -0.63,0.63 -0.238,0.392 -0.238,0.938 0,0.7 0.35,1.092 0.35,0.392 0.868,0.616 0.532,0.21 1.148,0.336 0.616,0.112 1.134,0.266 0.532,0.14 0.882,0.378 0.35,0.238 0.35,0.7 0,0.336 -0.168,0.56 -0.168,0.21 -0.434,0.322 -0.252,0.112 -0.56,0.154 -0.308,0.042 -0.588,0.042 -0.364,0 -0.714,-0.07 -0.336,-0.07 -0.616,-0.224 -0.266,-0.168 -0.434,-0.434 -0.168,-0.28 -0.182,-0.672 z" /><path
+               id="path1423"
+               style=""
+               d="m 151.66201,-4.312 h -4.158 q 0.028,-0.42 0.182,-0.784 0.154,-0.378 0.42,-0.658 0.266,-0.28 0.63,-0.434 0.378,-0.168 0.84,-0.168 0.448,0 0.812,0.168 0.378,0.154 0.644,0.434 0.28,0.266 0.434,0.644 0.168,0.378 0.196,0.798 z m 1.148,2.016 h -1.176 q -0.154,0.714 -0.644,1.064 -0.476,0.35 -1.232,0.35 -0.588,0 -1.022,-0.196 -0.434,-0.196 -0.714,-0.518 -0.28,-0.336 -0.406,-0.756 -0.126,-0.434 -0.112,-0.91 h 5.418 q 0.028,-0.658 -0.126,-1.386 -0.14,-0.728 -0.532,-1.344 -0.378,-0.616 -1.022,-1.008 -0.63,-0.406 -1.596,-0.406 -0.742,0 -1.372,0.28 -0.616,0.28 -1.078,0.784 -0.448,0.504 -0.7,1.19 -0.252,0.686 -0.252,1.512 0.028,0.826 0.238,1.526 0.224,0.7 0.658,1.204 0.434,0.504 1.064,0.784 0.644,0.28 1.512,0.28 1.232,0 2.044,-0.616 0.812,-0.616 1.05,-1.834 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g398"><path
+             id="path400"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="M 121.9992,361.9017 211.0217,221.495 m -88.9913,140.2223 88.765,-139.9329" /></g><path
+           id="path402"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 174.5503,343.2316 -5.3923,-4.0684 4.0047,-2.5424 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g404"><path
+             id="path406"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 215.3996,214.782 -6.8205,5.146 5.0654,3.2158 z" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,212.2016,285.67)"
+           id="g408"><g
+             id="text412"
+             style="font-variant:normal;font-weight:normal;font-size:14px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-83.097,4.804001)"
+             aria-label="if acceptor Promise with v’"><path
+               id="path1426"
+               style=""
+               d="m 2.156,-8.54 v -1.456 h -1.19 v 1.456 z m -1.19,1.302 V 0 h 1.19 v -7.238 z" /><path
+               id="path1428"
+               style=""
+               d="M 4.494,-6.188 V 0 h 1.19 v -6.188 h 1.4 v -1.05 h -1.4 v -1.008 q 0,-0.476 0.238,-0.644 0.238,-0.168 0.672,-0.168 0.154,0 0.336,0.028 0.182,0.014 0.336,0.07 v -1.036 q -0.168,-0.056 -0.392,-0.084 -0.21,-0.028 -0.378,-0.028 -0.98,0 -1.498,0.462 -0.504,0.448 -0.504,1.33 v 1.078 H 3.276 v 1.05 z" /><path
+               id="path1430"
+               style=""
+               d="m 18.452,-0.028 q -0.308,0.182 -0.854,0.182 -0.462,0 -0.742,-0.252 -0.266,-0.266 -0.266,-0.854 -0.49,0.588 -1.148,0.854 -0.644,0.252 -1.4,0.252 -0.49,0 -0.938,-0.112 -0.434,-0.112 -0.756,-0.35 -0.322,-0.238 -0.518,-0.616 -0.182,-0.392 -0.182,-0.938 0,-0.616 0.21,-1.008 0.21,-0.392 0.546,-0.63 0.35,-0.252 0.784,-0.378 0.448,-0.126 0.91,-0.21 0.49,-0.098 0.924,-0.14 0.448,-0.056 0.784,-0.14 0.336,-0.098 0.532,-0.266 0.196,-0.182 0.196,-0.518 0,-0.392 -0.154,-0.63 -0.14,-0.238 -0.378,-0.364 -0.224,-0.126 -0.518,-0.168 -0.28,-0.042 -0.56,-0.042 -0.756,0 -1.26,0.294 -0.504,0.28 -0.546,1.078 h -1.19 q 0.028,-0.672 0.28,-1.134 0.252,-0.462 0.672,-0.742 0.42,-0.294 0.952,-0.42 0.546,-0.126 1.162,-0.126 0.49,0 0.966,0.07 0.49,0.07 0.882,0.294 0.392,0.21 0.63,0.602 0.238,0.392 0.238,1.022 v 3.724 q 0,0.42 0.042,0.616 0.056,0.196 0.336,0.196 0.154,0 0.364,-0.07 z m -1.932,-3.71 q -0.224,0.168 -0.588,0.252 -0.364,0.07 -0.77,0.126 -0.392,0.042 -0.798,0.112 -0.406,0.056 -0.728,0.196 -0.322,0.14 -0.532,0.406 -0.196,0.252 -0.196,0.7 0,0.294 0.112,0.504 0.126,0.196 0.308,0.322 0.196,0.126 0.448,0.182 0.252,0.056 0.532,0.056 0.588,0 1.008,-0.154 0.42,-0.168 0.686,-0.406 0.266,-0.252 0.392,-0.532 0.126,-0.294 0.126,-0.546 z" /><path
+               id="path1432"
+               style=""
+               d="m 24.472001,-4.914 h 1.232 q -0.07,-0.644 -0.336,-1.106 -0.266,-0.476 -0.686,-0.784 -0.406,-0.308 -0.952,-0.448 -0.532,-0.154 -1.148,-0.154 -0.854,0 -1.498,0.308 -0.644,0.294 -1.078,0.826 -0.42,0.518 -0.63,1.232 -0.21,0.7 -0.21,1.512 0,0.812 0.21,1.498 0.224,0.672 0.644,1.162 0.434,0.49 1.064,0.756 0.644,0.266 1.47,0.266 1.386,0 2.184,-0.728 0.812,-0.728 1.008,-2.072 h -1.218 q -0.112,0.84 -0.616,1.302 -0.49,0.462 -1.372,0.462 -0.56,0 -0.966,-0.224 -0.406,-0.224 -0.658,-0.588 -0.252,-0.378 -0.378,-0.854 -0.112,-0.476 -0.112,-0.98 0,-0.546 0.112,-1.05 0.112,-0.518 0.364,-0.91 0.266,-0.392 0.7,-0.63 0.434,-0.238 1.078,-0.238 0.756,0 1.204,0.378 0.448,0.378 0.588,1.064 z" /><path
+               id="path1434"
+               style=""
+               d="m 31.99,-4.914 h 1.232 Q 33.152,-5.558 32.886,-6.02 32.62,-6.496 32.2,-6.804 31.794,-7.112 31.248,-7.252 30.716,-7.406 30.1,-7.406 q -0.854,0 -1.498,0.308 -0.644,0.294 -1.078,0.826 -0.42,0.518 -0.63,1.232 -0.21,0.7 -0.21,1.512 0,0.812 0.21,1.498 0.224,0.672 0.644,1.162 0.434,0.49 1.064,0.756 0.644,0.266 1.47,0.266 1.386,0 2.184,-0.728 0.812,-0.728 1.008,-2.072 h -1.218 q -0.112,0.84 -0.616,1.302 -0.49,0.462 -1.372,0.462 -0.56,0 -0.966,-0.224 -0.406,-0.224 -0.658,-0.588 -0.252,-0.378 -0.378,-0.854 -0.112,-0.476 -0.112,-0.98 0,-0.546 0.112,-1.05 0.112,-0.518 0.364,-0.91 0.266,-0.392 0.7,-0.63 0.434,-0.238 1.078,-0.238 0.756,0 1.204,0.378 0.448,0.378 0.588,1.064 z" /><path
+               id="path1436"
+               style=""
+               d="m 39.620002,-4.312 h -4.158 q 0.028,-0.42 0.182,-0.784 0.154,-0.378 0.42,-0.658 0.266,-0.28 0.63,-0.434 0.378,-0.168 0.84,-0.168 0.448,0 0.812,0.168 0.378,0.154 0.644,0.434 0.28,0.266 0.434,0.644 0.168,0.378 0.196,0.798 z m 1.148,2.016 h -1.176 q -0.154,0.714 -0.644,1.064 -0.476,0.35 -1.232,0.35 -0.588,0 -1.022,-0.196 -0.434,-0.196 -0.714,-0.518 -0.28,-0.336 -0.406,-0.756 -0.126,-0.434 -0.112,-0.91 h 5.418 q 0.028,-0.658 -0.126,-1.386 -0.14,-0.728 -0.532,-1.344 -0.378,-0.616 -1.022,-1.008 -0.63,-0.406 -1.596,-0.406 -0.742,0 -1.372,0.28 -0.616,0.28 -1.078,0.784 -0.448,0.504 -0.7,1.19 -0.252,0.686 -0.252,1.512 0.028,0.826 0.238,1.526 0.224,0.7 0.658,1.204 0.434,0.504 1.064,0.784 0.644,0.28 1.512,0.28 1.232,0 2.044,-0.616 0.812,-0.616 1.05,-1.834 z" /><path
+               id="path1438"
+               style=""
+               d="m 42.154,-7.238 v 9.996 h 1.19 v -3.724 h 0.028 q 0.196,0.322 0.476,0.546 0.294,0.21 0.616,0.336 0.322,0.126 0.644,0.182 0.336,0.056 0.602,0.056 0.826,0 1.442,-0.294 0.63,-0.294 1.036,-0.798 0.42,-0.518 0.616,-1.204 0.21,-0.686 0.21,-1.456 0,-0.77 -0.21,-1.456 -0.21,-0.686 -0.63,-1.204 -0.406,-0.532 -1.036,-0.84 -0.616,-0.308 -1.456,-0.308 -0.756,0 -1.386,0.28 -0.63,0.266 -0.924,0.868 h -0.028 v -0.98 z m 5.6,3.556 q 0,0.532 -0.112,1.036 -0.112,0.504 -0.364,0.896 -0.252,0.392 -0.672,0.63 -0.406,0.238 -1.022,0.238 -0.616,0 -1.05,-0.224 Q 44.1,-1.344 43.82,-1.722 43.554,-2.1 43.428,-2.59 q -0.126,-0.504 -0.126,-1.036 0,-0.504 0.112,-0.994 0.126,-0.49 0.392,-0.868 0.266,-0.392 0.686,-0.63 0.42,-0.238 1.022,-0.238 0.574,0 0.994,0.224 0.434,0.224 0.7,0.602 0.28,0.378 0.406,0.868 0.14,0.476 0.14,0.98 z" /><path
+               id="path1440"
+               style=""
+               d="m 52.066002,-7.238 v -2.17 h -1.19 v 2.17 h -1.232 v 1.05 h 1.232 v 4.606 q 0,0.504 0.098,0.812 0.098,0.308 0.294,0.476 0.21,0.168 0.532,0.238 0.336,0.056 0.798,0.056 h 0.91 v -1.05 h -0.546 q -0.28,0 -0.462,-0.014 -0.168,-0.028 -0.266,-0.098 -0.098,-0.07 -0.14,-0.196 -0.028,-0.126 -0.028,-0.336 v -4.494 h 1.442 v -1.05 z" /><path
+               id="path1442"
+               style=""
+               d="m 55.692001,-3.612 q 0,-0.658 0.168,-1.162 0.182,-0.518 0.49,-0.868 0.308,-0.35 0.714,-0.532 0.42,-0.182 0.882,-0.182 0.462,0 0.868,0.182 0.42,0.182 0.728,0.532 0.308,0.35 0.476,0.868 0.182,0.504 0.182,1.162 0,0.658 -0.182,1.176 -0.168,0.504 -0.476,0.854 -0.308,0.336 -0.728,0.518 -0.406,0.182 -0.868,0.182 -0.462,0 -0.882,-0.182 -0.406,-0.182 -0.714,-0.518 -0.308,-0.35 -0.49,-0.854 -0.168,-0.518 -0.168,-1.176 z m -1.26,0 q 0,0.798 0.224,1.484 0.224,0.686 0.672,1.204 0.448,0.504 1.106,0.798 0.658,0.28 1.512,0.28 0.868,0 1.512,-0.28 0.658,-0.294 1.106,-0.798 0.448,-0.518 0.672,-1.204 0.224,-0.686 0.224,-1.484 0,-0.798 -0.224,-1.484 -0.224,-0.7 -0.672,-1.204 -0.448,-0.518 -1.106,-0.812 -0.644,-0.294 -1.512,-0.294 -0.854,0 -1.512,0.294 -0.658,0.294 -1.106,0.812 -0.448,0.504 -0.672,1.204 -0.224,0.686 -0.224,1.484 z" /><path
+               id="path1444"
+               style=""
+               d="M 62.818001,-7.238 V 0 h 1.19 v -3.22 q 0,-0.7 0.14,-1.232 0.14,-0.546 0.448,-0.924 0.308,-0.378 0.812,-0.574 0.504,-0.196 1.218,-0.196 v -1.26 q -0.966,-0.028 -1.596,0.392 -0.63,0.42 -1.064,1.302 h -0.028 v -1.526 z" /><path
+               id="path1446"
+               style=""
+               d="m 72.939998,-5.208 v -3.668 h 2.604 q 1.134,0 1.652,0.476 0.532,0.462 0.532,1.358 0,0.896 -0.532,1.372 -0.518,0.476 -1.652,0.462 z m -1.33,-4.788 V 0 h 1.33 v -4.088 h 3.052 q 1.512,0.014 2.282,-0.77 0.784,-0.784 0.784,-2.184 0,-1.4 -0.784,-2.17 -0.77,-0.784 -2.282,-0.784 z" /><path
+               id="path1448"
+               style=""
+               d="M 80.443996,-7.238 V 0 h 1.19 v -3.22 q 0,-0.7 0.14,-1.232 0.14,-0.546 0.448,-0.924 0.308,-0.378 0.812,-0.574 0.504,-0.196 1.218,-0.196 v -1.26 q -0.966,-0.028 -1.596,0.392 -0.63,0.42 -1.064,1.302 h -0.028 v -1.526 z" /><path
+               id="path1450"
+               style=""
+               d="m 85.764,-3.612 q 0,-0.658 0.168,-1.162 0.182,-0.518 0.49,-0.868 0.308,-0.35 0.714,-0.532 0.42,-0.182 0.882,-0.182 0.462,0 0.868,0.182 0.42,0.182 0.728,0.532 0.308,0.35 0.476,0.868 0.182,0.504 0.182,1.162 0,0.658 -0.182,1.176 -0.168,0.504 -0.476,0.854 -0.308,0.336 -0.728,0.518 -0.406,0.182 -0.868,0.182 -0.462,0 -0.882,-0.182 -0.406,-0.182 -0.714,-0.518 -0.308,-0.35 -0.49,-0.854 -0.168,-0.518 -0.168,-1.176 z m -1.26,0 q 0,0.798 0.224,1.484 0.224,0.686 0.672,1.204 0.448,0.504 1.106,0.798 0.658,0.28 1.512,0.28 0.868,0 1.512,-0.28 0.658,-0.294 1.106,-0.798 0.448,-0.518 0.672,-1.204 0.224,-0.686 0.224,-1.484 0,-0.798 -0.224,-1.484 -0.224,-0.7 -0.672,-1.204 -0.448,-0.518 -1.106,-0.812 -0.644,-0.294 -1.512,-0.294 -0.854,0 -1.512,0.294 -0.658,0.294 -1.106,0.812 -0.448,0.504 -0.672,1.204 -0.224,0.686 -0.224,1.484 z" /><path
+               id="path1452"
+               style=""
+               d="M 92.932003,-7.238 V 0 h 1.19 v -4.508 q 0,-0.21 0.098,-0.518 0.112,-0.322 0.336,-0.616 0.238,-0.294 0.602,-0.504 0.378,-0.21 0.896,-0.21 0.406,0 0.658,0.126 0.266,0.112 0.42,0.336 0.154,0.21 0.21,0.504 0.07,0.294 0.07,0.644 V 0 h 1.19 v -4.508 q 0,-0.84 0.504,-1.344 0.504,-0.504 1.385997,-0.504 0.434,0 0.7,0.126 0.28,0.126 0.434,0.35 0.154,0.21 0.21,0.504 0.056,0.294 0.056,0.63 V 0 h 1.19 v -5.306 q 0,-0.56 -0.182,-0.952 -0.168,-0.406 -0.49,-0.658 -0.308,-0.252 -0.756,-0.364 -0.434,-0.126 -0.98,-0.126 -0.713997,0 -1.315997,0.322 -0.588,0.322 -0.952,0.91 -0.224,-0.672 -0.77,-0.952 -0.546,-0.28 -1.218,-0.28 -1.526,0 -2.338,1.232 h -0.028 v -1.064 z" /><path
+               id="path1454"
+               style=""
+               d="m 106.134,-8.54 v -1.456 h -1.19 v 1.456 z m -1.19,1.302 V 0 h 1.19 v -7.238 z" /><path
+               id="path1456"
+               style=""
+               d="m 108.71,-2.282 h -1.19 q 0.028,0.672 0.28,1.148 0.252,0.462 0.672,0.756 0.42,0.28 0.966,0.406 0.546,0.126 1.148,0.126 0.546,0 1.092,-0.112 0.56,-0.098 0.994,-0.364 0.448,-0.266 0.714,-0.7 0.28,-0.434 0.28,-1.092 0,-0.518 -0.21,-0.868 -0.196,-0.35 -0.532,-0.574 -0.322,-0.238 -0.756,-0.378 -0.42,-0.14 -0.868,-0.238 -0.42,-0.098 -0.84,-0.182 -0.42,-0.098 -0.756,-0.224 -0.336,-0.14 -0.56,-0.336 -0.21,-0.21 -0.21,-0.518 0,-0.28 0.14,-0.448 0.14,-0.182 0.364,-0.28 0.224,-0.112 0.49,-0.154 0.28,-0.042 0.546,-0.042 0.294,0 0.574,0.07 0.294,0.056 0.532,0.196 0.238,0.14 0.392,0.378 0.154,0.224 0.182,0.574 h 1.19 q -0.042,-0.658 -0.28,-1.092 -0.238,-0.448 -0.644,-0.7 -0.392,-0.266 -0.91,-0.364 -0.518,-0.112 -1.134,-0.112 -0.476,0 -0.966,0.126 -0.476,0.112 -0.868,0.364 -0.378,0.238 -0.63,0.63 -0.238,0.392 -0.238,0.938 0,0.7 0.35,1.092 0.35,0.392 0.868,0.616 0.532,0.21 1.148,0.336 0.616,0.112 1.134,0.266 0.532,0.14 0.882,0.378 0.35,0.238 0.35,0.7 0,0.336 -0.168,0.56 -0.168,0.21 -0.434,0.322 -0.252,0.112 -0.56,0.154 -0.308,0.042 -0.588,0.042 -0.364,0 -0.714,-0.07 -0.336,-0.07 -0.616,-0.224 -0.266,-0.168 -0.434,-0.434 -0.168,-0.28 -0.182,-0.672 z" /><path
+               id="path1458"
+               style=""
+               d="m 120.008,-4.312 h -4.158 q 0.028,-0.42 0.182,-0.784 0.154,-0.378 0.42,-0.658 0.266,-0.28 0.63,-0.434 0.378,-0.168 0.84,-0.168 0.448,0 0.812,0.168 0.378,0.154 0.644,0.434 0.28,0.266 0.434,0.644 0.168,0.378 0.196,0.798 z m 1.148,2.016 h -1.176 q -0.154,0.714 -0.644,1.064 -0.476,0.35 -1.232,0.35 -0.588,0 -1.022,-0.196 -0.434,-0.196 -0.714,-0.518 -0.28,-0.336 -0.406,-0.756 -0.126,-0.434 -0.112,-0.91 h 5.418 q 0.028,-0.658 -0.126,-1.386 -0.14,-0.728 -0.532,-1.344 -0.378,-0.616 -1.022,-1.008 -0.63,-0.406 -1.596,-0.406 -0.742,0 -1.372,0.28 -0.616,0.28 -1.078,0.784 -0.448,0.504 -0.7,1.19 -0.252,0.686 -0.252,1.512 0.028,0.826 0.238,1.526 0.224,0.7 0.658,1.204 0.434,0.504 1.064,0.784 0.644,0.28 1.512,0.28 1.232,0 2.044,-0.616 0.812,-0.616 1.05,-1.834 z" /><path
+               id="path1460"
+               style=""
+               d="m 133.56,0 2.31,-7.238 h -1.232 l -1.624,5.922 h -0.028 l -1.512,-5.922 h -1.302 l -1.456,5.922 h -0.028 l -1.638,-5.922 h -1.316 L 128.058,0 h 1.288 l 1.456,-5.754 h 0.028 L 132.3,0 Z" /><path
+               id="path1462"
+               style=""
+               d="m 138.264,-8.54 v -1.456 h -1.19 v 1.456 z m -1.19,1.302 V 0 h 1.19 v -7.238 z" /><path
+               id="path1464"
+               style=""
+               d="m 141.764,-7.238 v -2.17 h -1.19 v 2.17 h -1.232 v 1.05 h 1.232 v 4.606 q 0,0.504 0.098,0.812 0.098,0.308 0.294,0.476 0.21,0.168 0.532,0.238 Q 141.834,0 142.296,0 h 0.91 v -1.05 h -0.546 q -0.28,0 -0.462,-0.014 -0.168,-0.028 -0.266,-0.098 -0.098,-0.07 -0.14,-0.196 -0.028,-0.126 -0.028,-0.336 v -4.494 h 1.442 v -1.05 z" /><path
+               id="path1466"
+               style=""
+               d="M 144.52201,-9.996 V 0 h 1.19 v -4.088 q 0,-0.49 0.126,-0.896 0.14,-0.42 0.406,-0.728 0.266,-0.308 0.658,-0.476 0.406,-0.168 0.952,-0.168 0.686,0 1.078,0.392 0.392,0.392 0.392,1.064 V 0 h 1.19 v -4.76 q 0,-0.588 -0.126,-1.064 -0.112,-0.49 -0.406,-0.84 -0.294,-0.35 -0.77,-0.546 -0.476,-0.196 -1.19,-0.196 -0.322,0 -0.672,0.07 -0.336,0.07 -0.658,0.224 -0.308,0.14 -0.56,0.378 -0.252,0.224 -0.392,0.56 h -0.028 v -3.822 z" /><path
+               id="path1468"
+               style=""
+               d="m 159.46,0 2.646,-7.238 h -1.246 l -1.974,6.034 h -0.028 l -2.03,-6.034 h -1.33 L 158.186,0 Z" /><path
+               id="path1470"
+               style=""
+               d="m 163.464,-9.996 v 1.554 h 0.826 q 0,0.238 -0.042,0.49 -0.028,0.238 -0.126,0.434 -0.098,0.196 -0.252,0.322 -0.154,0.112 -0.392,0.112 v 0.7 q 0.406,0 0.686,-0.168 0.294,-0.168 0.476,-0.448 0.196,-0.28 0.28,-0.644 0.098,-0.378 0.098,-0.798 v -1.554 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,286.8941,493.3345)"
+           id="g414"><g
+             id="text418"
+             style="font-variant:normal;font-weight:normal;font-size:16px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-53.496,5.776001)"
+             aria-label="accept request"><path
+               id="path1473"
+               style=""
+               d="M 8.352,-0.032 Q 8,0.176 7.376,0.176 6.848,0.176 6.528,-0.112 6.224,-0.416 6.224,-1.088 5.664,-0.416 4.912,-0.112 4.176,0.176 3.312,0.176 2.752,0.176 2.24,0.048 1.744,-0.08 1.376,-0.352 1.008,-0.624 0.784,-1.056 0.576,-1.504 0.576,-2.128 q 0,-0.704 0.24,-1.152 0.24,-0.448 0.624,-0.72 0.4,-0.288 0.896,-0.432 0.512,-0.144 1.04,-0.24 0.56,-0.112 1.056,-0.16 0.512,-0.064 0.896,-0.16 0.384,-0.112 0.608,-0.304 0.224,-0.208 0.224,-0.592 0,-0.448 -0.176,-0.72 Q 5.824,-6.88 5.552,-7.024 5.296,-7.168 4.96,-7.216 4.64,-7.264 4.32,-7.264 q -0.864,0 -1.44,0.336 -0.576,0.32 -0.624,1.232 h -1.36 q 0.032,-0.768 0.32,-1.296 0.288,-0.528 0.768,-0.848 0.48,-0.336 1.088,-0.48 0.624,-0.144 1.328,-0.144 0.56,0 1.104,0.08 0.56,0.08 1.008,0.336 0.448,0.24 0.72,0.688 0.272,0.448 0.272,1.168 v 4.256 q 0,0.48 0.048,0.704 0.064,0.224 0.384,0.224 0.176,0 0.416,-0.08 z m -2.208,-4.24 q -0.256,0.192 -0.672,0.288 -0.416,0.08 -0.88,0.144 -0.448,0.048 -0.912,0.128 -0.464,0.064 -0.832,0.224 -0.368,0.16 -0.608,0.464 -0.224,0.288 -0.224,0.8 0,0.336 0.128,0.576 0.144,0.224 0.352,0.368 0.224,0.144 0.512,0.208 0.288,0.064 0.608,0.064 0.672,0 1.152,-0.176 0.48,-0.192 0.784,-0.464 Q 5.856,-1.936 6,-2.256 6.144,-2.592 6.144,-2.88 Z" /><path
+               id="path1475"
+               style=""
+               d="m 15.232,-5.616 h 1.408 q -0.08,-0.736 -0.384,-1.264 -0.304,-0.544 -0.784,-0.896 -0.464,-0.352 -1.088,-0.512 -0.608,-0.176 -1.312,-0.176 -0.976,0 -1.712,0.352 -0.736,0.336 -1.232,0.944 -0.48,0.592 -0.72,1.408 -0.24,0.8 -0.24,1.728 0,0.928 0.24,1.712 0.256,0.768 0.736,1.328 0.496,0.56 1.216,0.864 0.736,0.304 1.68,0.304 1.584,0 2.496,-0.832 0.928,-0.832 1.152,-2.368 h -1.392 q -0.128,0.96 -0.704,1.488 -0.56,0.528 -1.568,0.528 -0.64,0 -1.104,-0.256 -0.464,-0.256 -0.752,-0.672 -0.288,-0.432 -0.432,-0.976 -0.128,-0.544 -0.128,-1.12 0,-0.624 0.128,-1.2 0.128,-0.592 0.416,-1.04 0.304,-0.448 0.8,-0.72 0.496,-0.272 1.232,-0.272 0.864,0 1.376,0.432 0.512,0.432 0.672,1.216 z" /><path
+               id="path1477"
+               style=""
+               d="m 23.824,-5.616 h 1.408 q -0.08,-0.736 -0.384,-1.264 -0.304,-0.544 -0.784,-0.896 -0.464,-0.352 -1.088,-0.512 -0.608,-0.176 -1.312,-0.176 -0.976,0 -1.712,0.352 -0.736,0.336 -1.232,0.944 -0.48,0.592 -0.72,1.408 -0.24,0.8 -0.24,1.728 0,0.928 0.24,1.712 0.256,0.768 0.736,1.328 0.496,0.56 1.216,0.864 0.736,0.304 1.68,0.304 1.584,0 2.496,-0.832 0.928,-0.832 1.152,-2.368 h -1.392 q -0.128,0.96 -0.704,1.488 -0.56,0.528 -1.568,0.528 -0.64,0 -1.104,-0.256 Q 20.048,-1.52 19.76,-1.936 19.472,-2.368 19.328,-2.912 19.2,-3.456 19.2,-4.032 q 0,-0.624 0.128,-1.2 0.128,-0.592 0.416,-1.04 0.304,-0.448 0.8,-0.72 0.496,-0.272 1.232,-0.272 0.864,0 1.376,0.432 0.512,0.432 0.672,1.216 z" /><path
+               id="path1479"
+               style=""
+               d="m 32.543999,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 -0.496,-0.224 -0.816,-0.592 -0.32,-0.384 -0.464,-0.864 -0.144,-0.496 -0.128,-1.04 h 6.192 q 0.032,-0.752 -0.144,-1.584 -0.16,-0.832 -0.608,-1.536 -0.432,-0.704 -1.168,-1.152 -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path1481"
+               style=""
+               d="M 35.44,-8.272 V 3.152 h 1.36 v -4.256 h 0.032 q 0.224,0.368 0.544,0.624 0.336,0.24 0.704,0.384 0.368,0.144 0.736,0.208 0.384,0.064 0.688,0.064 0.944,0 1.648,-0.336 0.72,-0.336 1.184,-0.912 0.48,-0.592 0.704,-1.376 0.24,-0.784 0.24,-1.664 0,-0.88 -0.24,-1.664 -0.24,-0.784 -0.72,-1.376 -0.464,-0.608 -1.184,-0.96 -0.704,-0.352 -1.664,-0.352 -0.864,0 -1.584,0.32 -0.72,0.304 -1.056,0.992 H 36.8 v -1.12 z m 6.4,4.064 q 0,0.608 -0.128,1.184 -0.128,0.576 -0.416,1.024 -0.288,0.448 -0.768,0.72 -0.464,0.272 -1.168,0.272 -0.704,0 -1.2,-0.256 -0.496,-0.272 -0.816,-0.704 -0.304,-0.432 -0.448,-0.992 -0.144,-0.576 -0.144,-1.184 0,-0.576 0.128,-1.136 0.144,-0.56 0.448,-0.992 0.304,-0.448 0.784,-0.72 0.48,-0.272 1.168,-0.272 0.656,0 1.136,0.256 0.496,0.256 0.8,0.688 0.32,0.432 0.464,0.992 0.16,0.544 0.16,1.12 z" /><path
+               id="path1483"
+               style=""
+               d="m 46.767999,-8.272 v -2.48 h -1.36 v 2.48 h -1.408 v 1.2 h 1.408 v 5.264 q 0,0.576 0.112,0.928 0.112,0.352 0.336,0.544 0.24,0.192 0.608,0.272 0.384,0.064 0.912,0.064 h 1.04 v -1.2 h -0.624 q -0.32,0 -0.528,-0.016 -0.192,-0.032 -0.304,-0.112 -0.112,-0.08 -0.16,-0.224 -0.032,-0.144 -0.032,-0.384 v -5.136 h 1.648 v -1.2 z" /><path
+               id="path1485"
+               style=""
+               d="M 54.320002,-8.272 V 0 h 1.36 v -3.68 q 0,-0.8 0.16,-1.408 0.16,-0.624 0.512,-1.056 0.352,-0.432 0.928,-0.656 0.576,-0.224 1.392,-0.224 v -1.44 q -1.104,-0.032 -1.824,0.448 -0.72,0.48 -1.216,1.488 h -0.032 v -1.744 z" /><path
+               id="path1487"
+               style=""
+               d="m 65.151999,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 -0.496,-0.224 -0.816,-0.592 -0.32,-0.384 -0.464,-0.864 -0.144,-0.496 -0.128,-1.04 h 6.192 q 0.032,-0.752 -0.144,-1.584 -0.16,-0.832 -0.608,-1.536 -0.432,-0.704 -1.168,-1.152 -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path1489"
+               style=""
+               d="m 68.991998,-4.064 q 0,-0.608 0.128,-1.184 0.128,-0.576 0.416,-1.024 0.288,-0.448 0.768,-0.72 0.48,-0.272 1.168,-0.272 0.704,0 1.2,0.272 0.496,0.256 0.8,0.688 0.32,0.432 0.464,1.008 0.144,0.56 0.144,1.168 0,0.576 -0.144,1.136 -0.128,0.56 -0.432,1.008 -0.304,0.432 -0.784,0.704 -0.48,0.272 -1.168,0.272 -0.656,0 -1.152,-0.256 -0.48,-0.256 -0.8,-0.688 -0.304,-0.432 -0.464,-0.976 -0.144,-0.56 -0.144,-1.136 z m 6.4,7.216 V -8.272 h -1.36 v 1.104 h -0.032 q -0.224,-0.368 -0.56,-0.608 -0.32,-0.256 -0.688,-0.4 -0.368,-0.16 -0.736,-0.224 -0.368,-0.064 -0.688,-0.064 -0.944,0 -1.664,0.352 -0.704,0.336 -1.184,0.928 -0.464,0.576 -0.704,1.36 -0.224,0.784 -0.224,1.664 0,0.88 0.24,1.664 0.24,0.784 0.704,1.376 0.48,0.592 1.184,0.944 0.72,0.352 1.68,0.352 0.864,0 1.584,-0.304 0.72,-0.304 1.056,-0.992 h 0.032 v 4.272 z" /><path
+               id="path1491"
+               style=""
+               d="m 84.335997,0 v -8.272 h -1.36 V -3.6 q 0,0.56 -0.16,1.04 -0.144,0.464 -0.448,0.816 -0.304,0.352 -0.768,0.544 -0.448,0.192 -1.072,0.192 -0.784,0 -1.232,-0.448 -0.448,-0.448 -0.448,-1.216 v -5.6 h -1.36 v 5.44 q 0,0.672 0.128,1.232 0.144,0.544 0.48,0.944 0.336,0.4 0.88,0.624 0.544,0.208 1.36,0.208 0.912,0 1.584,-0.352 0.672,-0.368 1.104,-1.136 h 0.032 V 0 Z" /><path
+               id="path1493"
+               style=""
+               d="m 92.128001,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 -0.496,-0.224 -0.816,-0.592 -0.32,-0.384 -0.464,-0.864 -0.144,-0.496 -0.128,-1.04 h 6.192 q 0.032,-0.752 -0.144,-1.584 -0.16,-0.832 -0.608,-1.536 -0.432,-0.704 -1.168,-1.152 -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path1495"
+               style=""
+               d="m 95.808003,-2.608 h -1.36 q 0.032,0.768 0.32,1.312 0.288,0.528 0.768,0.864 0.48,0.32 1.104,0.464 0.624,0.144 1.312,0.144 0.624,0 1.248,-0.128 0.64,-0.112 1.135997,-0.416 0.512,-0.304 0.816,-0.8 0.32,-0.496 0.32,-1.248 0,-0.592 -0.24,-0.992 -0.224,-0.4 -0.608,-0.656 -0.368,-0.272 -0.863997,-0.432 -0.48,-0.16 -0.992,-0.272 -0.48,-0.112 -0.96,-0.208 -0.48,-0.112 -0.864,-0.256 -0.384,-0.16 -0.64,-0.384 -0.24,-0.24 -0.24,-0.592 0,-0.32 0.16,-0.512 0.16,-0.208 0.416,-0.32 0.256,-0.128 0.56,-0.176 0.32,-0.048 0.624,-0.048 0.336,0 0.656,0.08 0.336,0.064 0.608,0.224 0.272,0.16 0.448,0.432 0.176,0.256 0.208,0.656 H 101.104 q -0.048,-0.752 -0.32,-1.248 -0.272,-0.512 -0.736,-0.8 -0.447997,-0.304 -1.039997,-0.416 -0.592,-0.128 -1.296,-0.128 -0.544,0 -1.104,0.144 -0.544,0.128 -0.992,0.416 -0.432,0.272 -0.72,0.72 -0.272,0.448 -0.272,1.072 0,0.8 0.4,1.248 0.4,0.448 0.992,0.704 0.608,0.24 1.312,0.384 0.704,0.128 1.296,0.304 0.608,0.16 1.008,0.432 0.399997,0.272 0.399997,0.8 0,0.384 -0.191997,0.64 -0.192,0.24 -0.496,0.368 -0.288,0.128 -0.64,0.176 -0.352,0.048 -0.672,0.048 -0.416,0 -0.816,-0.08 -0.384,-0.08 -0.704,-0.256 -0.304,-0.192 -0.496,-0.496 -0.192,-0.32 -0.208,-0.768 z" /><path
+               id="path1497"
+               style=""
+               d="m 104.864,-8.272 v -2.48 h -1.36 v 2.48 h -1.408 v 1.2 h 1.408 v 5.264 q 0,0.576 0.112,0.928 0.112,0.352 0.336,0.544 0.24,0.192 0.608,0.272 Q 104.944,0 105.472,0 h 1.04 v -1.2 h -0.624 q -0.32,0 -0.528,-0.016 -0.192,-0.032 -0.304,-0.112 -0.112,-0.08 -0.16,-0.224 -0.032,-0.144 -0.032,-0.384 v -5.136 h 1.648 v -1.2 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,159.9757,226.3529)"
+           id="g420"><g
+             id="text424"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-54.006,3.832001)"
+             aria-label="Proposal set value v"><path
+               id="path1500"
+               style=""
+               d="m 2.076,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z M 0.936,-8.568 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path1502"
+               style=""
+               d="M 8.508,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 9.468 v -1.308 z" /><path
+               id="path1504"
+               style=""
+               d="m 13.068,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 17.628,-4.968 17.244,-5.4 16.86,-5.844 16.296,-6.096 15.744,-6.348 15,-6.348 q -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1506"
+               style=""
+               d="m 19.248,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1508"
+               style=""
+               d="m 27.071999,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1510"
+               style=""
+               d="m 33.840002,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1512"
+               style=""
+               d="m 44.712002,-0.024 q -0.264,0.156 -0.732,0.156 -0.396,0 -0.636,-0.216 -0.228,-0.228 -0.228,-0.732 -0.42,0.504 -0.984,0.732 -0.552,0.216 -1.2,0.216 -0.42,0 -0.804,-0.096 -0.372,-0.096 -0.648,-0.3 -0.276,-0.204 -0.444,-0.528 -0.156,-0.336 -0.156,-0.804 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 -0.12,-0.204 -0.324,-0.312 -0.192,-0.108 -0.444,-0.144 -0.24,-0.036 -0.48,-0.036 -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 0.228,-0.216 0.336,-0.456 0.108,-0.252 0.108,-0.468 z" /><path
+               id="path1514"
+               style=""
+               d="M 45.719998,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1516"
+               style=""
+               d="m 52.283998,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1518"
+               style=""
+               d="m 61.967998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1520"
+               style=""
+               d="m 65.519999,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1522"
+               style=""
+               d="m 74.016003,0 2.268,-6.204 h -1.068 l -1.692,5.172 h -0.024 l -1.74,-5.172 h -1.14 l 2.304,6.204 z" /><path
+               id="path1524"
+               style=""
+               d="m 82.716003,-0.024 q -0.264,0.156 -0.732,0.156 -0.396,0 -0.636,-0.216 -0.228,-0.228 -0.228,-0.732 -0.42,0.504 -0.984,0.732 -0.552,0.216 -1.2,0.216 -0.42,0 -0.804,-0.096 -0.372,-0.096 -0.648,-0.3 -0.276,-0.204 -0.444,-0.528 -0.156,-0.336 -0.156,-0.804 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 -0.12,-0.204 -0.324,-0.312 -0.192,-0.108 -0.444,-0.144 -0.24,-0.036 -0.48,-0.036 -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 0.228,-0.216 0.336,-0.456 0.108,-0.252 0.108,-0.468 z" /><path
+               id="path1526"
+               style=""
+               d="M 83.724004,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1528"
+               style=""
+               d="m 91.463998,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path1530"
+               style=""
+               d="m 97.308002,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1532"
+               style=""
+               d="m 105.576,0 2.268,-6.204 h -1.068 l -1.692,5.172 h -0.024 l -1.74,-5.172 h -1.14 L 104.484,0 Z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,240.221,240.2075)"
+           id="g426"><g
+             id="text430"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-36.558,3.832001)"
+             aria-label="Proposal(n, v)"><path
+               id="path1535"
+               style=""
+               d="m 2.076,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z M 0.936,-8.568 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path1537"
+               style=""
+               d="M 8.508,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 9.468 v -1.308 z" /><path
+               id="path1539"
+               style=""
+               d="m 13.068,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 17.628,-4.968 17.244,-5.4 16.86,-5.844 16.296,-6.096 15.744,-6.348 15,-6.348 q -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1541"
+               style=""
+               d="m 19.248,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1543"
+               style=""
+               d="m 27.071999,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1545"
+               style=""
+               d="m 33.840002,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1547"
+               style=""
+               d="m 44.712002,-0.024 q -0.264,0.156 -0.732,0.156 -0.396,0 -0.636,-0.216 -0.228,-0.228 -0.228,-0.732 -0.42,0.504 -0.984,0.732 -0.552,0.216 -1.2,0.216 -0.42,0 -0.804,-0.096 -0.372,-0.096 -0.648,-0.3 -0.276,-0.204 -0.444,-0.528 -0.156,-0.336 -0.156,-0.804 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 -0.12,-0.204 -0.324,-0.312 -0.192,-0.108 -0.444,-0.144 -0.24,-0.036 -0.48,-0.036 -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 0.228,-0.216 0.336,-0.456 0.108,-0.252 0.108,-0.468 z" /><path
+               id="path1549"
+               style=""
+               d="M 45.719998,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1551"
+               style=""
+               d="m 50.004,2.364 h 0.78 Q 49.932,0.984 49.56,-0.372 49.2,-1.728 49.2,-3.24 q 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path1553"
+               style=""
+               d="M 51.432001,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1555"
+               style=""
+               d="M 58.331999,-1.332 V 0 h 0.708 q 0.012,0.144 -0.024,0.312 -0.024,0.168 -0.108,0.324 -0.084,0.168 -0.228,0.3 -0.132,0.144 -0.336,0.216 v 0.6 q 0.696,-0.204 1.008,-0.696 0.312,-0.492 0.312,-1.176 v -1.212 z" /><path
+               id="path1557"
+               style=""
+               d="m 67.572003,0 2.268,-6.204 h -1.068 l -1.692,5.172 h -0.024 l -1.74,-5.172 h -1.14 l 2.304,6.204 z" /><path
+               id="path1559"
+               style=""
+               d="m 69.900003,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,362.1608,252.3317)"
+           id="g432"><g
+             id="text436"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.236,3.832001)"
+             aria-label="promise: n"><path
+               id="path1562"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1564"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1566"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1568"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1570"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1572"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1574"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1576"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1578"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,364.4859,242.2267)"
+           id="g438"><g
+             id="text442"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.008,3.832001)"
+             aria-label="accept: null"><path
+               id="path1581"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1583"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1585"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1587"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1589"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1591"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1593"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1595"
+               style=""
+               d="M 44.112002,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1597"
+               style=""
+               d="m 55.919999,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path1599"
+               style=""
+               d="M 57.516,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1601"
+               style=""
+               d="M 60.180001,-8.568 V 0 h 1.02 v -8.568 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,362.1608,190.7027)"
+           id="g444"><g
+             id="text448"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.236,3.832001)"
+             aria-label="promise: n"><path
+               id="path1604"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1606"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1608"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1610"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1612"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1614"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1616"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1618"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1620"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,364.4859,180.5977)"
+           id="g450"><g
+             id="text454"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.008,3.832001)"
+             aria-label="accept: null"><path
+               id="path1623"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1625"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1627"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1629"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1631"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1633"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1635"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1637"
+               style=""
+               d="M 44.112002,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1639"
+               style=""
+               d="m 55.919999,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path1641"
+               style=""
+               d="M 57.516,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1643"
+               style=""
+               d="M 60.180001,-8.568 V 0 h 1.02 v -8.568 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,362.1608,129.0736)"
+           id="g456"><g
+             id="text460"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.236,3.832001)"
+             aria-label="promise: n"><path
+               id="path1646"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1648"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1650"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1652"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1654"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1656"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1658"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1660"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1662"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,362.1608,118.9686)"
+           id="g462"><g
+             id="text466"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.008,3.832001)"
+             aria-label="accept: null"><path
+               id="path1665"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1667"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1669"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1671"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1673"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1675"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1677"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1679"
+               style=""
+               d="M 44.112002,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1681"
+               style=""
+               d="m 55.919999,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path1683"
+               style=""
+               d="M 57.516,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1685"
+               style=""
+               d="M 60.180001,-8.568 V 0 h 1.02 v -8.568 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,245.8361,192.722)"
+           id="g468"><g
+             id="text472"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-36.558,3.832001)"
+             aria-label="Proposal(n, v)"><path
+               id="path1688"
+               style=""
+               d="m 2.076,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z M 0.936,-8.568 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path1690"
+               style=""
+               d="M 8.508,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 9.468 v -1.308 z" /><path
+               id="path1692"
+               style=""
+               d="m 13.068,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 17.628,-4.968 17.244,-5.4 16.86,-5.844 16.296,-6.096 15.744,-6.348 15,-6.348 q -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1694"
+               style=""
+               d="m 19.248,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1696"
+               style=""
+               d="m 27.071999,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1698"
+               style=""
+               d="m 33.840002,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1700"
+               style=""
+               d="m 44.712002,-0.024 q -0.264,0.156 -0.732,0.156 -0.396,0 -0.636,-0.216 -0.228,-0.228 -0.228,-0.732 -0.42,0.504 -0.984,0.732 -0.552,0.216 -1.2,0.216 -0.42,0 -0.804,-0.096 -0.372,-0.096 -0.648,-0.3 -0.276,-0.204 -0.444,-0.528 -0.156,-0.336 -0.156,-0.804 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 -0.12,-0.204 -0.324,-0.312 -0.192,-0.108 -0.444,-0.144 -0.24,-0.036 -0.48,-0.036 -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 0.228,-0.216 0.336,-0.456 0.108,-0.252 0.108,-0.468 z" /><path
+               id="path1702"
+               style=""
+               d="M 45.719998,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1704"
+               style=""
+               d="m 50.004,2.364 h 0.78 Q 49.932,0.984 49.56,-0.372 49.2,-1.728 49.2,-3.24 q 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path1706"
+               style=""
+               d="M 51.432001,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1708"
+               style=""
+               d="M 58.331999,-1.332 V 0 h 0.708 q 0.012,0.144 -0.024,0.312 -0.024,0.168 -0.108,0.324 -0.084,0.168 -0.228,0.3 -0.132,0.144 -0.336,0.216 v 0.6 q 0.696,-0.204 1.008,-0.696 0.312,-0.492 0.312,-1.176 v -1.212 z" /><path
+               id="path1710"
+               style=""
+               d="m 67.572003,0 2.268,-6.204 h -1.068 l -1.692,5.172 h -0.024 l -1.74,-5.172 h -1.14 l 2.304,6.204 z" /><path
+               id="path1712"
+               style=""
+               d="m 69.900003,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,240.221,131.0929)"
+           id="g474"><g
+             id="text478"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-36.558,3.832001)"
+             aria-label="Proposal(n, v)"><path
+               id="path1715"
+               style=""
+               d="m 2.076,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z M 0.936,-8.568 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path1717"
+               style=""
+               d="M 8.508,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 9.468 v -1.308 z" /><path
+               id="path1719"
+               style=""
+               d="m 13.068,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 17.628,-4.968 17.244,-5.4 16.86,-5.844 16.296,-6.096 15.744,-6.348 15,-6.348 q -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1721"
+               style=""
+               d="m 19.248,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1723"
+               style=""
+               d="m 27.071999,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1725"
+               style=""
+               d="m 33.840002,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1727"
+               style=""
+               d="m 44.712002,-0.024 q -0.264,0.156 -0.732,0.156 -0.396,0 -0.636,-0.216 -0.228,-0.228 -0.228,-0.732 -0.42,0.504 -0.984,0.732 -0.552,0.216 -1.2,0.216 -0.42,0 -0.804,-0.096 -0.372,-0.096 -0.648,-0.3 -0.276,-0.204 -0.444,-0.528 -0.156,-0.336 -0.156,-0.804 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 -0.12,-0.204 -0.324,-0.312 -0.192,-0.108 -0.444,-0.144 -0.24,-0.036 -0.48,-0.036 -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 0.228,-0.216 0.336,-0.456 0.108,-0.252 0.108,-0.468 z" /><path
+               id="path1729"
+               style=""
+               d="M 45.719998,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1731"
+               style=""
+               d="m 50.004,2.364 h 0.78 Q 49.932,0.984 49.56,-0.372 49.2,-1.728 49.2,-3.24 q 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path1733"
+               style=""
+               d="M 51.432001,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1735"
+               style=""
+               d="M 58.331999,-1.332 V 0 h 0.708 q 0.012,0.144 -0.024,0.312 -0.024,0.168 -0.108,0.324 -0.084,0.168 -0.228,0.3 -0.132,0.144 -0.336,0.216 v 0.6 q 0.696,-0.204 1.008,-0.696 0.312,-0.492 0.312,-1.176 v -1.212 z" /><path
+               id="path1737"
+               style=""
+               d="m 67.572003,0 2.268,-6.204 h -1.068 l -1.692,5.172 h -0.024 l -1.74,-5.172 h -1.14 l 2.304,6.204 z" /><path
+               id="path1739"
+               style=""
+               d="m 69.900003,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g480"><path
+             id="path482"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 492.7974,415.6218 143.666,4.9507 m -143.5372,-5.1845 143.2608,4.9409" /></g><path
+           id="path484"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 513.692,180.3136 -6.2392,2.5885 -0.1636,-4.7408 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g486"><path
+             id="path488"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 644.3698,420.8521 -7.8918,-3.2741 -0.2069,5.9964 z" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g490"><path
+             id="path492"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="M 493.447,416.2479 548.2797,219.9413 M 493.5315,416.1116 548.2916,220.1962" /></g><path
+           id="path494"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 439.7083,344.6907 -3.9997,-5.4434 4.5655,-1.2877 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g496"><path
+             id="path498"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 550.7901,212.9364 -5.0591,6.8852 5.7747,1.6288 z" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,498.7277,286.8678)"
+           id="g500"><g
+             id="text504"
+             style="font-variant:normal;font-weight:normal;font-size:14px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-89.502,-3.391998)"
+             aria-label="if overwrite Promised m( &gt; n) "><path
+               id="path1742"
+               style=""
+               d="m 2.156,-8.54 v -1.456 h -1.19 v 1.456 z m -1.19,1.302 V 0 h 1.19 v -7.238 z" /><path
+               id="path1744"
+               style=""
+               d="M 4.494,-6.188 V 0 h 1.19 v -6.188 h 1.4 v -1.05 h -1.4 v -1.008 q 0,-0.476 0.238,-0.644 0.238,-0.168 0.672,-0.168 0.154,0 0.336,0.028 0.182,0.014 0.336,0.07 v -1.036 q -0.168,-0.056 -0.392,-0.084 -0.21,-0.028 -0.378,-0.028 -0.98,0 -1.498,0.462 -0.504,0.448 -0.504,1.33 v 1.078 H 3.276 v 1.05 z" /><path
+               id="path1746"
+               style=""
+               d="m 12.908,-3.612 q 0,-0.658 0.168,-1.162 0.182,-0.518 0.49,-0.868 0.308,-0.35 0.714,-0.532 0.42,-0.182 0.882,-0.182 0.462,0 0.868,0.182 0.42,0.182 0.728,0.532 0.308,0.35 0.476,0.868 0.182,0.504 0.182,1.162 0,0.658 -0.182,1.176 -0.168,0.504 -0.476,0.854 -0.308,0.336 -0.728,0.518 -0.406,0.182 -0.868,0.182 -0.462,0 -0.882,-0.182 -0.406,-0.182 -0.714,-0.518 -0.308,-0.35 -0.49,-0.854 -0.168,-0.518 -0.168,-1.176 z m -1.26,0 q 0,0.798 0.224,1.484 0.224,0.686 0.672,1.204 0.448,0.504 1.106,0.798 0.658,0.28 1.512,0.28 0.868,0 1.512,-0.28 0.658,-0.294 1.106,-0.798 0.448,-0.518 0.672,-1.204 0.224,-0.686 0.224,-1.484 0,-0.798 -0.224,-1.484 -0.224,-0.7 -0.672,-1.204 -0.448,-0.518 -1.106,-0.812 -0.644,-0.294 -1.512,-0.294 -0.854,0 -1.512,0.294 -0.658,0.294 -1.106,0.812 -0.448,0.504 -0.672,1.204 -0.224,0.686 -0.224,1.484 z" /><path
+               id="path1748"
+               style=""
+               d="m 23.338,0 2.646,-7.238 h -1.246 l -1.974,6.034 h -0.028 l -2.03,-6.034 h -1.33 L 22.064,0 Z" /><path
+               id="path1750"
+               style=""
+               d="m 32.102,-4.312 h -4.158 q 0.028,-0.42 0.182,-0.784 0.154,-0.378 0.42,-0.658 0.266,-0.28 0.63,-0.434 0.378,-0.168 0.84,-0.168 0.448,0 0.812,0.168 0.378,0.154 0.644,0.434 0.28,0.266 0.434,0.644 0.168,0.378 0.196,0.798 z m 1.148,2.016 h -1.176 q -0.154,0.714 -0.644,1.064 -0.476,0.35 -1.232,0.35 -0.588,0 -1.022,-0.196 -0.434,-0.196 -0.714,-0.518 -0.28,-0.336 -0.406,-0.756 -0.126,-0.434 -0.112,-0.91 h 5.418 Q 33.39,-3.92 33.236,-4.648 33.096,-5.376 32.704,-5.992 32.326,-6.608 31.682,-7 q -0.63,-0.406 -1.596,-0.406 -0.742,0 -1.372,0.28 -0.616,0.28 -1.078,0.784 -0.448,0.504 -0.7,1.19 -0.252,0.686 -0.252,1.512 0.028,0.826 0.238,1.526 0.224,0.7 0.658,1.204 0.434,0.504 1.064,0.784 0.644,0.28 1.512,0.28 1.232,0 2.044,-0.616 0.812,-0.616 1.05,-1.834 z" /><path
+               id="path1752"
+               style=""
+               d="M 34.552002,-7.238 V 0 h 1.19 v -3.22 q 0,-0.7 0.14,-1.232 0.14,-0.546 0.448,-0.924 0.308,-0.378 0.812,-0.574 0.504,-0.196 1.218,-0.196 v -1.26 q -0.966,-0.028 -1.596,0.392 -0.63,0.42 -1.064,1.302 h -0.028 v -1.526 z" /><path
+               id="path1754"
+               style=""
+               d="m 46.424001,0 2.31,-7.238 h -1.232 l -1.624,5.922 h -0.028 l -1.512,-5.922 h -1.302 l -1.456,5.922 h -0.028 l -1.638,-5.922 h -1.316 l 2.324,7.238 h 1.288 l 1.456,-5.754 h 0.028 l 1.47,5.754 z" /><path
+               id="path1756"
+               style=""
+               d="M 49.826,-7.238 V 0 h 1.19 v -3.22 q 0,-0.7 0.14,-1.232 0.14,-0.546 0.448,-0.924 0.308,-0.378 0.812,-0.574 0.504,-0.196 1.218,-0.196 v -1.26 q -0.966,-0.028 -1.596,0.392 -0.63,0.42 -1.064,1.302 h -0.028 v -1.526 z" /><path
+               id="path1758"
+               style=""
+               d="m 55.789999,-8.54 v -1.456 h -1.19 v 1.456 z m -1.19,1.302 V 0 h 1.19 v -7.238 z" /><path
+               id="path1760"
+               style=""
+               d="m 59.290001,-7.238 v -2.17 h -1.19 v 2.17 h -1.232 v 1.05 h 1.232 v 4.606 q 0,0.504 0.098,0.812 0.098,0.308 0.294,0.476 0.21,0.168 0.532,0.238 0.336,0.056 0.798,0.056 h 0.91 v -1.05 h -0.546 q -0.28,0 -0.462,-0.014 -0.168,-0.028 -0.266,-0.098 -0.098,-0.07 -0.14,-0.196 -0.028,-0.126 -0.028,-0.336 v -4.494 h 1.442 v -1.05 z" /><path
+               id="path1762"
+               style=""
+               d="m 67.074,-4.312 h -4.158 q 0.028,-0.42 0.182,-0.784 0.154,-0.378 0.42,-0.658 0.266,-0.28 0.63,-0.434 0.378,-0.168 0.84,-0.168 0.448,0 0.812,0.168 0.378,0.154 0.644,0.434 0.28,0.266 0.434,0.644 0.168,0.378 0.196,0.798 z m 1.148,2.016 h -1.176 q -0.154,0.714 -0.644,1.064 -0.476,0.35 -1.232,0.35 -0.588,0 -1.022,-0.196 -0.434,-0.196 -0.714,-0.518 -0.28,-0.336 -0.406,-0.756 -0.126,-0.434 -0.112,-0.91 h 5.418 Q 68.362,-3.92 68.208,-4.648 68.068,-5.376 67.676,-5.992 67.298,-6.608 66.654,-7 q -0.63,-0.406 -1.596,-0.406 -0.742,0 -1.372,0.28 -0.616,0.28 -1.078,0.784 -0.448,0.504 -0.7,1.19 -0.252,0.686 -0.252,1.512 0.028,0.826 0.238,1.526 0.224,0.7 0.658,1.204 0.434,0.504 1.064,0.784 0.644,0.28 1.512,0.28 1.232,0 2.044,-0.616 0.812,-0.616 1.05,-1.834 z" /><path
+               id="path1764"
+               style=""
+               d="m 74.983996,-5.208 v -3.668 h 2.604 q 1.134,0 1.652,0.476 0.532,0.462 0.532,1.358 0,0.896 -0.532,1.372 -0.518,0.476 -1.652,0.462 z m -1.33,-4.788 V 0 h 1.33 v -4.088 h 3.052 q 1.512,0.014 2.282,-0.77 0.784,-0.784 0.784,-2.184 0,-1.4 -0.784,-2.17 -0.77,-0.784 -2.282,-0.784 z" /><path
+               id="path1766"
+               style=""
+               d="M 82.488003,-7.238 V 0 h 1.19 v -3.22 q 0,-0.7 0.14,-1.232 0.14,-0.546 0.448,-0.924 0.308,-0.378 0.812,-0.574 0.504,-0.196 1.218,-0.196 v -1.26 q -0.966,-0.028 -1.596,0.392 -0.63,0.42 -1.064,1.302 h -0.028 v -1.526 z" /><path
+               id="path1768"
+               style=""
+               d="m 87.807999,-3.612 q 0,-0.658 0.168,-1.162 0.182,-0.518 0.49,-0.868 0.308,-0.35 0.714,-0.532 0.42,-0.182 0.882,-0.182 0.462,0 0.868,0.182 0.42,0.182 0.728,0.532 0.308,0.35 0.476,0.868 0.182,0.504 0.182,1.162 0,0.658 -0.182,1.176 -0.168,0.504 -0.476,0.854 -0.308,0.336 -0.728,0.518 -0.406,0.182 -0.868,0.182 -0.462,0 -0.882,-0.182 -0.406,-0.182 -0.714,-0.518 -0.308,-0.35 -0.49,-0.854 -0.168,-0.518 -0.168,-1.176 z m -1.26,0 q 0,0.798 0.224,1.484 0.224,0.686 0.672,1.204 0.448,0.504 1.106,0.798 0.658,0.28 1.512,0.28 0.868,0 1.512,-0.28 0.658,-0.294 1.106,-0.798 0.448,-0.518 0.672,-1.204 0.224,-0.686 0.224,-1.484 0,-0.798 -0.224,-1.484 -0.224,-0.7 -0.672,-1.204 -0.448,-0.518 -1.106,-0.812 -0.644,-0.294 -1.512,-0.294 -0.854,0 -1.512,0.294 -0.658,0.294 -1.106,0.812 -0.448,0.504 -0.672,1.204 -0.224,0.686 -0.224,1.484 z" /><path
+               id="path1770"
+               style=""
+               d="M 94.976002,-7.238 V 0 h 1.19 v -4.508 q 0,-0.21 0.098,-0.518 0.112,-0.322 0.336,-0.616 0.238,-0.294 0.602,-0.504 0.378,-0.21 0.896,-0.21 0.406,0 0.658,0.126 0.266,0.112 0.42,0.336 0.154,0.21 0.21,0.504 0.07,0.294 0.07,0.644 V 0 H 100.646 v -4.508 q 0,-0.84 0.504,-1.344 0.504,-0.504 1.386,-0.504 0.434,0 0.7,0.126 0.28,0.126 0.434,0.35 0.154,0.21 0.21,0.504 0.056,0.294 0.056,0.63 V 0 h 1.19 v -5.306 q 0,-0.56 -0.182,-0.952 -0.168,-0.406 -0.49,-0.658 -0.308,-0.252 -0.756,-0.364 -0.434,-0.126 -0.98,-0.126 -0.714,0 -1.316,0.322 -0.588,0.322 -0.952,0.91 -0.224,-0.672 -0.769998,-0.952 -0.546,-0.28 -1.218,-0.28 -1.526,0 -2.338,1.232 h -0.028 v -1.064 z" /><path
+               id="path1772"
+               style=""
+               d="m 108.178,-8.54 v -1.456 h -1.19 v 1.456 z m -1.19,1.302 V 0 h 1.19 v -7.238 z" /><path
+               id="path1774"
+               style=""
+               d="m 110.754,-2.282 h -1.19 q 0.028,0.672 0.28,1.148 0.252,0.462 0.672,0.756 0.42,0.28 0.966,0.406 0.546,0.126 1.148,0.126 0.546,0 1.092,-0.112 0.56,-0.098 0.994,-0.364 0.448,-0.266 0.714,-0.7 0.28,-0.434 0.28,-1.092 0,-0.518 -0.21,-0.868 -0.196,-0.35 -0.532,-0.574 -0.322,-0.238 -0.756,-0.378 -0.42,-0.14 -0.868,-0.238 -0.42,-0.098 -0.84,-0.182 -0.42,-0.098 -0.756,-0.224 -0.336,-0.14 -0.56,-0.336 -0.21,-0.21 -0.21,-0.518 0,-0.28 0.14,-0.448 0.14,-0.182 0.364,-0.28 0.224,-0.112 0.49,-0.154 0.28,-0.042 0.546,-0.042 0.294,0 0.574,0.07 0.294,0.056 0.532,0.196 0.238,0.14 0.392,0.378 0.154,0.224 0.182,0.574 h 1.19 q -0.042,-0.658 -0.28,-1.092 -0.238,-0.448 -0.644,-0.7 -0.392,-0.266 -0.91,-0.364 -0.518,-0.112 -1.134,-0.112 -0.476,0 -0.966,0.126 -0.476,0.112 -0.868,0.364 -0.378,0.238 -0.63,0.63 -0.238,0.392 -0.238,0.938 0,0.7 0.35,1.092 0.35,0.392 0.868,0.616 0.532,0.21 1.148,0.336 0.616,0.112 1.134,0.266 0.532,0.14 0.882,0.378 0.35,0.238 0.35,0.7 0,0.336 -0.168,0.56 -0.168,0.21 -0.434,0.322 -0.252,0.112 -0.56,0.154 -0.308,0.042 -0.588,0.042 -0.364,0 -0.714,-0.07 -0.336,-0.07 -0.616,-0.224 -0.266,-0.168 -0.434,-0.434 -0.168,-0.28 -0.182,-0.672 z" /><path
+               id="path1776"
+               style=""
+               d="m 122.052,-4.312 h -4.158 q 0.028,-0.42 0.182,-0.784 0.154,-0.378 0.42,-0.658 0.266,-0.28 0.63,-0.434 0.378,-0.168 0.84,-0.168 0.448,0 0.812,0.168 0.378,0.154 0.644,0.434 0.28,0.266 0.434,0.644 0.168,0.378 0.196,0.798 z m 1.148,2.016 h -1.176 q -0.154,0.714 -0.644,1.064 -0.476,0.35 -1.232,0.35 -0.588,0 -1.022,-0.196 -0.434,-0.196 -0.714,-0.518 -0.28,-0.336 -0.406,-0.756 -0.126,-0.434 -0.112,-0.91 h 5.418 q 0.028,-0.658 -0.126,-1.386 -0.14,-0.728 -0.532,-1.344 -0.378,-0.616 -1.022,-1.008 -0.63,-0.406 -1.596,-0.406 -0.742,0 -1.372,0.28 -0.616,0.28 -1.078,0.784 -0.448,0.504 -0.7,1.19 -0.252,0.686 -0.252,1.512 0.028,0.826 0.238,1.526 0.224,0.7 0.658,1.204 0.434,0.504 1.064,0.784 0.644,0.28 1.512,0.28 1.232,0 2.044,-0.616 0.812,-0.616 1.05,-1.834 z" /><path
+               id="path1778"
+               style=""
+               d="m 125.412,-3.556 q 0,-0.532 0.112,-1.036 0.112,-0.504 0.364,-0.896 0.252,-0.392 0.672,-0.63 0.42,-0.238 1.022,-0.238 0.616,0 1.05,0.238 0.434,0.224 0.7,0.602 0.28,0.378 0.406,0.882 0.126,0.49 0.126,1.022 0,0.504 -0.126,0.994 -0.112,0.49 -0.378,0.882 -0.266,0.378 -0.686,0.616 -0.42,0.238 -1.022,0.238 -0.574,0 -1.008,-0.224 -0.42,-0.224 -0.7,-0.602 -0.266,-0.378 -0.406,-0.854 -0.126,-0.49 -0.126,-0.994 z m 5.6,3.556 v -9.996 h -1.19 v 3.724 h -0.028 q -0.196,-0.322 -0.49,-0.532 -0.28,-0.224 -0.602,-0.35 -0.322,-0.14 -0.644,-0.196 -0.322,-0.056 -0.602,-0.056 -0.826,0 -1.456,0.308 -0.616,0.294 -1.036,0.812 -0.406,0.504 -0.616,1.19 -0.196,0.686 -0.196,1.456 0,0.77 0.21,1.456 0.21,0.686 0.616,1.204 0.42,0.518 1.036,0.826 0.63,0.308 1.47,0.308 0.756,0 1.386,-0.266 0.63,-0.266 0.924,-0.868 h 0.028 V 0 Z" /><path
+               id="path1780"
+               style=""
+               d="M 136.738,-7.238 V 0 h 1.19 v -4.508 q 0,-0.21 0.098,-0.518 0.112,-0.322 0.336,-0.616 0.238,-0.294 0.602,-0.504 0.378,-0.21 0.896,-0.21 0.406,0 0.658,0.126 0.266,0.112 0.42,0.336 0.154,0.21 0.21,0.504 0.07,0.294 0.07,0.644 V 0 h 1.19 v -4.508 q 0,-0.84 0.504,-1.344 0.504,-0.504 1.386,-0.504 0.434,0 0.7,0.126 0.28,0.126 0.434,0.35 0.154,0.21 0.21,0.504 0.056,0.294 0.056,0.63 V 0 h 1.19 v -5.306 q 0,-0.56 -0.182,-0.952 -0.168,-0.406 -0.49,-0.658 -0.308,-0.252 -0.756,-0.364 -0.434,-0.126 -0.98,-0.126 -0.714,0 -1.316,0.322 -0.588,0.322 -0.952,0.91 -0.224,-0.672 -0.77,-0.952 -0.546,-0.28 -1.218,-0.28 -1.526,0 -2.338,1.232 h -0.028 v -1.064 z" /><path
+               id="path1782"
+               style=""
+               d="m 150.64,2.758 h 0.91 q -0.994,-1.61 -1.428,-3.192 -0.42,-1.582 -0.42,-3.346 0,-1.722 0.42,-3.29 0.42,-1.568 1.428,-3.164 h -0.91 q -1.092,1.442 -1.652,3.122 -0.546,1.68 -0.546,3.332 0,0.924 0.154,1.764 0.154,0.84 0.434,1.638 0.294,0.798 0.7,1.568 0.406,0.784 0.91,1.568 z" /><path
+               id="path1784"
+               style=""
+               d="m 155.946,-0.84 v 0.938 l 7.112,-3.206 v -0.868 l -7.112,-3.22 v 0.952 l 5.95,2.702 z" /><path
+               id="path1786"
+               style=""
+               d="M 168.48999,-7.238 V 0 h 1.19 v -4.088 q 0,-0.49 0.126,-0.896 0.14,-0.42 0.406,-0.728 0.266,-0.308 0.658,-0.476 0.406,-0.168 0.952,-0.168 0.686,0 1.078,0.392 0.392,0.392 0.392,1.064 V 0 h 1.19 v -4.76 q 0,-0.588 -0.126,-1.064 -0.112,-0.49 -0.406,-0.84 -0.294,-0.35 -0.77,-0.546 -0.476,-0.196 -1.19,-0.196 -1.61,0 -2.352,1.316 h -0.028 v -1.148 z" /><path
+               id="path1788"
+               style=""
+               d="m 175.25201,2.758 h 0.896 q 1.092,-1.442 1.638,-3.108 0.56,-1.68 0.56,-3.332 0,-0.924 -0.154,-1.764 -0.154,-0.84 -0.448,-1.638 -0.28,-0.812 -0.686,-1.582 -0.406,-0.784 -0.91,-1.568 h -0.896 q 0.98,1.61 1.4,3.206 0.434,1.582 0.434,3.346 0,1.708 -0.42,3.29 -0.42,1.568 -1.414,3.15 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,498.7277,286.8678)"
+           id="g506"><g
+             id="text510"
+             style="font-variant:normal;font-weight:normal;font-size:14px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-55.881,13)"
+             aria-label="by other proposer"><path
+               id="path1791"
+               style=""
+               d="M 0.938,-9.996 V 0 h 1.19 v -0.966 h 0.028 q 0.196,0.322 0.476,0.546 0.294,0.21 0.616,0.336 0.322,0.126 0.644,0.182 0.336,0.056 0.602,0.056 0.826,0 1.442,-0.294 0.63,-0.294 1.036,-0.798 0.42,-0.518 0.616,-1.204 0.21,-0.686 0.21,-1.456 0,-0.77 -0.21,-1.456 Q 7.378,-5.74 6.958,-6.258 6.552,-6.79 5.922,-7.098 5.306,-7.406 4.466,-7.406 3.71,-7.406 3.08,-7.126 2.45,-6.86 2.156,-6.258 H 2.128 v -3.738 z m 5.6,6.314 q 0,0.532 -0.112,1.036 -0.112,0.504 -0.364,0.896 -0.252,0.392 -0.672,0.63 -0.406,0.238 -1.022,0.238 -0.616,0 -1.05,-0.224 Q 2.884,-1.344 2.604,-1.722 2.338,-2.1 2.212,-2.59 2.086,-3.094 2.086,-3.626 q 0,-0.504 0.112,-0.994 0.126,-0.49 0.392,-0.868 0.266,-0.392 0.686,-0.63 0.42,-0.238 1.022,-0.238 0.574,0 0.994,0.224 0.434,0.224 0.7,0.602 0.28,0.378 0.406,0.868 0.14,0.476 0.14,0.98 z" /><path
+               id="path1793"
+               style=""
+               d="M 12.04,0.966 Q 11.83,1.498 11.62,1.862 11.424,2.226 11.172,2.45 10.934,2.688 10.626,2.786 10.332,2.898 9.94,2.898 9.73,2.898 9.52,2.87 9.31,2.842 9.114,2.772 V 1.68 q 0.154,0.07 0.35,0.112 0.21,0.056 0.35,0.056 0.364,0 0.602,-0.182 0.252,-0.168 0.378,-0.49 l 0.49,-1.218 -2.87,-7.196 h 1.344 l 2.114,5.922 H 11.9 l 2.03,-5.922 h 1.26 z" /><path
+               id="path1795"
+               style=""
+               d="m 20.958,-3.612 q 0,-0.658 0.168,-1.162 0.182,-0.518 0.49,-0.868 0.308,-0.35 0.714,-0.532 0.42,-0.182 0.882,-0.182 0.462,0 0.868,0.182 0.42,0.182 0.728,0.532 0.308,0.35 0.476,0.868 0.182,0.504 0.182,1.162 0,0.658 -0.182,1.176 -0.168,0.504 -0.476,0.854 -0.308,0.336 -0.728,0.518 -0.406,0.182 -0.868,0.182 -0.462,0 -0.882,-0.182 -0.406,-0.182 -0.714,-0.518 -0.308,-0.35 -0.49,-0.854 -0.168,-0.518 -0.168,-1.176 z m -1.26,0 q 0,0.798 0.224,1.484 0.224,0.686 0.672,1.204 0.448,0.504 1.106,0.798 0.658,0.28 1.512,0.28 0.868,0 1.512,-0.28 0.658,-0.294 1.106,-0.798 0.448,-0.518 0.672,-1.204 0.224,-0.686 0.224,-1.484 0,-0.798 -0.224,-1.484 -0.224,-0.7 -0.672,-1.204 -0.448,-0.518 -1.106,-0.812 -0.644,-0.294 -1.512,-0.294 -0.854,0 -1.512,0.294 -0.658,0.294 -1.106,0.812 -0.448,0.504 -0.672,1.204 -0.224,0.686 -0.224,1.484 z" /><path
+               id="path1797"
+               style=""
+               d="m 29.778,-7.238 v -2.17 h -1.19 v 2.17 h -1.232 v 1.05 h 1.232 v 4.606 q 0,0.504 0.098,0.812 0.098,0.308 0.294,0.476 0.21,0.168 0.532,0.238 Q 29.848,0 30.31,0 h 0.91 v -1.05 h -0.546 q -0.28,0 -0.462,-0.014 -0.168,-0.028 -0.266,-0.098 -0.098,-0.07 -0.14,-0.196 -0.028,-0.126 -0.028,-0.336 v -4.494 h 1.442 v -1.05 z" /><path
+               id="path1799"
+               style=""
+               d="M 32.535999,-9.996 V 0 h 1.19 v -4.088 q 0,-0.49 0.126,-0.896 0.14,-0.42 0.406,-0.728 0.266,-0.308 0.658,-0.476 0.406,-0.168 0.952,-0.168 0.686,0 1.078,0.392 0.392,0.392 0.392,1.064 V 0 h 1.19 v -4.76 q 0,-0.588 -0.126,-1.064 -0.112,-0.49 -0.406,-0.84 -0.294,-0.35 -0.77,-0.546 -0.476,-0.196 -1.19,-0.196 -0.322,0 -0.672,0.07 -0.336,0.07 -0.658,0.224 -0.308,0.14 -0.56,0.378 -0.252,0.224 -0.392,0.56 h -0.028 v -3.822 z" /><path
+               id="path1801"
+               style=""
+               d="m 45.346,-4.312 h -4.158 q 0.028,-0.42 0.182,-0.784 0.154,-0.378 0.42,-0.658 0.266,-0.28 0.63,-0.434 0.378,-0.168 0.84,-0.168 0.448,0 0.812,0.168 0.378,0.154 0.644,0.434 0.28,0.266 0.434,0.644 0.168,0.378 0.196,0.798 z m 1.148,2.016 h -1.176 q -0.154,0.714 -0.644,1.064 -0.476,0.35 -1.232,0.35 -0.588,0 -1.022,-0.196 -0.434,-0.196 -0.714,-0.518 -0.28,-0.336 -0.406,-0.756 -0.126,-0.434 -0.112,-0.91 h 5.418 Q 46.634,-3.92 46.48,-4.648 46.34,-5.376 45.948,-5.992 45.57,-6.608 44.926,-7 q -0.63,-0.406 -1.596,-0.406 -0.742,0 -1.372,0.28 -0.616,0.28 -1.078,0.784 -0.448,0.504 -0.7,1.19 -0.252,0.686 -0.252,1.512 0.028,0.826 0.238,1.526 0.224,0.7 0.658,1.204 0.434,0.504 1.064,0.784 0.644,0.28 1.512,0.28 1.232,0 2.044,-0.616 0.812,-0.616 1.05,-1.834 z" /><path
+               id="path1803"
+               style=""
+               d="M 47.796001,-7.238 V 0 h 1.19 v -3.22 q 0,-0.7 0.14,-1.232 0.14,-0.546 0.448,-0.924 0.308,-0.378 0.812,-0.574 0.504,-0.196 1.218,-0.196 v -1.26 q -0.966,-0.028 -1.596,0.392 -0.63,0.42 -1.064,1.302 h -0.028 v -1.526 z" /><path
+               id="path1805"
+               style=""
+               d="m 56.433998,-7.238 v 9.996 h 1.19 v -3.724 h 0.028 q 0.196,0.322 0.476,0.546 0.294,0.21 0.616,0.336 0.322,0.126 0.644,0.182 0.336,0.056 0.602,0.056 0.826,0 1.442,-0.294 0.63,-0.294 1.036,-0.798 0.42,-0.518 0.616,-1.204 0.21,-0.686 0.21,-1.456 0,-0.77 -0.21,-1.456 -0.21,-0.686 -0.63,-1.204 -0.406,-0.532 -1.036,-0.84 -0.616,-0.308 -1.456,-0.308 -0.756,0 -1.386,0.28 -0.63,0.266 -0.924,0.868 h -0.028 v -0.98 z m 5.6,3.556 q 0,0.532 -0.112,1.036 -0.112,0.504 -0.364,0.896 -0.252,0.392 -0.672,0.63 -0.406,0.238 -1.022,0.238 -0.616,0 -1.05,-0.224 -0.434,-0.238 -0.714,-0.616 -0.266,-0.378 -0.392,-0.868 -0.126,-0.504 -0.126,-1.036 0,-0.504 0.112,-0.994 0.126,-0.49 0.392,-0.868 0.266,-0.392 0.686,-0.63 0.42,-0.238 1.022,-0.238 0.574,0 0.994,0.224 0.434,0.224 0.7,0.602 0.28,0.378 0.406,0.868 0.14,0.476 0.14,0.98 z" /><path
+               id="path1807"
+               style=""
+               d="M 64.652,-7.238 V 0 h 1.19 v -3.22 q 0,-0.7 0.14,-1.232 0.14,-0.546 0.448,-0.924 0.308,-0.378 0.812,-0.574 0.504,-0.196 1.218,-0.196 v -1.26 q -0.966,-0.028 -1.596,0.392 -0.63,0.42 -1.064,1.302 h -0.028 v -1.526 z" /><path
+               id="path1809"
+               style=""
+               d="m 69.972,-3.612 q 0,-0.658 0.168,-1.162 0.182,-0.518 0.49,-0.868 0.308,-0.35 0.714,-0.532 0.42,-0.182 0.882,-0.182 0.462,0 0.868,0.182 0.42,0.182 0.728,0.532 0.308,0.35 0.476,0.868 0.182,0.504 0.182,1.162 0,0.658 -0.182,1.176 -0.168,0.504 -0.476,0.854 -0.308,0.336 -0.728,0.518 -0.406,0.182 -0.868,0.182 -0.462,0 -0.882,-0.182 -0.406,-0.182 -0.714,-0.518 -0.308,-0.35 -0.49,-0.854 -0.168,-0.518 -0.168,-1.176 z m -1.26,0 q 0,0.798 0.224,1.484 0.224,0.686 0.672,1.204 0.448,0.504 1.106,0.798 0.658,0.28 1.512,0.28 0.868,0 1.512,-0.28 0.658,-0.294 1.106,-0.798 0.448,-0.518 0.672,-1.204 0.224,-0.686 0.224,-1.484 0,-0.798 -0.224,-1.484 -0.224,-0.7 -0.672,-1.204 -0.448,-0.518 -1.106,-0.812 -0.644,-0.294 -1.512,-0.294 -0.854,0 -1.512,0.294 -0.658,0.294 -1.106,0.812 -0.448,0.504 -0.672,1.204 -0.224,0.686 -0.224,1.484 z" /><path
+               id="path1811"
+               style=""
+               d="m 77.182003,-7.238 v 9.996 h 1.19 v -3.724 h 0.028 q 0.196,0.322 0.476,0.546 0.294,0.21 0.616,0.336 0.322,0.126 0.644,0.182 0.336,0.056 0.602,0.056 0.826,0 1.442,-0.294 0.63,-0.294 1.036,-0.798 0.42,-0.518 0.616,-1.204 0.21,-0.686 0.21,-1.456 0,-0.77 -0.21,-1.456 -0.21,-0.686 -0.63,-1.204 -0.406,-0.532 -1.036,-0.84 -0.616,-0.308 -1.456,-0.308 -0.756,0 -1.386,0.28 -0.63,0.266 -0.924,0.868 h -0.028 v -0.98 z m 5.6,3.556 q 0,0.532 -0.112,1.036 -0.112,0.504 -0.364,0.896 -0.252,0.392 -0.672,0.63 -0.406,0.238 -1.022,0.238 -0.616,0 -1.05,-0.224 -0.434,-0.238 -0.714,-0.616 -0.266,-0.378 -0.392,-0.868 -0.126,-0.504 -0.126,-1.036 0,-0.504 0.112,-0.994 0.126,-0.49 0.392,-0.868 0.266,-0.392 0.686,-0.63 0.42,-0.238 1.022,-0.238 0.574,0 0.994,0.224 0.434,0.224 0.7,0.602 0.28,0.378 0.406,0.868 0.14,0.476 0.14,0.98 z" /><path
+               id="path1813"
+               style=""
+               d="m 86.309998,-3.612 q 0,-0.658 0.168,-1.162 0.182,-0.518 0.49,-0.868 0.308,-0.35 0.714,-0.532 0.42,-0.182 0.882,-0.182 0.462,0 0.868,0.182 0.42,0.182 0.728,0.532 0.308,0.35 0.476,0.868 0.182,0.504 0.182,1.162 0,0.658 -0.182,1.176 -0.168,0.504 -0.476,0.854 -0.308,0.336 -0.728,0.518 -0.406,0.182 -0.868,0.182 -0.462,0 -0.882,-0.182 -0.406,-0.182 -0.714,-0.518 -0.308,-0.35 -0.49,-0.854 -0.168,-0.518 -0.168,-1.176 z m -1.26,0 q 0,0.798 0.224,1.484 0.224,0.686 0.672,1.204 0.448,0.504 1.106,0.798 0.658,0.28 1.512,0.28 0.868,0 1.512,-0.28 0.658,-0.294 1.106,-0.798 0.448,-0.518 0.672,-1.204 0.224,-0.686 0.224,-1.484 0,-0.798 -0.224,-1.484 -0.224,-0.7 -0.672,-1.204 -0.448,-0.518 -1.106,-0.812 -0.644,-0.294 -1.512,-0.294 -0.854,0 -1.512,0.294 -0.658,0.294 -1.106,0.812 -0.448,0.504 -0.672,1.204 -0.224,0.686 -0.224,1.484 z" /><path
+               id="path1815"
+               style=""
+               d="m 94.206001,-2.282 h -1.19 q 0.028,0.672 0.28,1.148 0.252,0.462 0.672,0.756 0.42,0.28 0.966,0.406 0.546,0.126 1.148,0.126 0.546,0 1.092,-0.112 0.56,-0.098 0.994,-0.364 0.448,-0.266 0.714,-0.7 0.28,-0.434 0.28,-1.092 0,-0.518 -0.21,-0.868 -0.196,-0.35 -0.532,-0.574 -0.322,-0.238 -0.756,-0.378 -0.42,-0.14 -0.868,-0.238 -0.42,-0.098 -0.84,-0.182 -0.42,-0.098 -0.756,-0.224 -0.336,-0.14 -0.56,-0.336 -0.21,-0.21 -0.21,-0.518 0,-0.28 0.14,-0.448 0.14,-0.182 0.364,-0.28 0.224,-0.112 0.49,-0.154 0.28,-0.042 0.546,-0.042 0.294,0 0.574,0.07 0.294,0.056 0.532,0.196 0.238,0.14 0.392,0.378 0.154,0.224 0.182,0.574 h 1.19 q -0.042,-0.658 -0.28,-1.092 -0.238,-0.448 -0.644,-0.7 -0.392,-0.266 -0.91,-0.364 -0.518,-0.112 -1.134,-0.112 -0.476,0 -0.966,0.126 -0.476,0.112 -0.868,0.364 -0.378,0.238 -0.63,0.63 -0.238,0.392 -0.238,0.938 0,0.7 0.35,1.092 0.35,0.392 0.868,0.616 0.532,0.21 1.148,0.336 0.616,0.112 1.134,0.266 0.532,0.14 0.882,0.378 0.35,0.238 0.35,0.7 0,0.336 -0.168,0.56 -0.168,0.21 -0.434,0.322 -0.252,0.112 -0.56,0.154 -0.308,0.042 -0.588,0.042 -0.364,0 -0.714,-0.07 -0.336,-0.07 -0.616,-0.224 -0.266,-0.168 -0.434,-0.434 -0.168,-0.28 -0.182,-0.672 z" /><path
+               id="path1817"
+               style=""
+               d="m 105.504,-4.312 h -4.158 q 0.028,-0.42 0.182,-0.784 0.154,-0.378 0.42,-0.658 0.266,-0.28 0.63,-0.434 0.378,-0.168 0.84,-0.168 0.448,0 0.812,0.168 0.378,0.154 0.644,0.434 0.28,0.266 0.434,0.644 0.168,0.378 0.196,0.798 z m 1.148,2.016 h -1.176 q -0.154,0.714 -0.644,1.064 -0.476,0.35 -1.232,0.35 -0.588,0 -1.022,-0.196 -0.434,-0.196 -0.714,-0.518 -0.28,-0.336 -0.406,-0.756 -0.126,-0.434 -0.112,-0.91 h 5.418 q 0.028,-0.658 -0.126,-1.386 -0.14,-0.728 -0.532,-1.344 -0.378,-0.616 -1.022,-1.008 -0.63,-0.406 -1.596,-0.406 -0.742,0 -1.372,0.28 -0.616,0.28 -1.078,0.784 -0.448,0.504 -0.7,1.19 -0.252,0.686 -0.252,1.512 0.028,0.826 0.238,1.526 0.224,0.7 0.658,1.204 0.434,0.504 1.064,0.784 0.644,0.28 1.512,0.28 1.232,0 2.044,-0.616 0.812,-0.616 1.05,-1.834 z" /><path
+               id="path1819"
+               style=""
+               d="M 107.954,-7.238 V 0 h 1.19 v -3.22 q 0,-0.7 0.14,-1.232 0.14,-0.546 0.448,-0.924 0.308,-0.378 0.812,-0.574 0.504,-0.196 1.218,-0.196 v -1.26 q -0.966,-0.028 -1.596,0.392 -0.63,0.42 -1.064,1.302 h -0.028 v -1.526 z" /></g></g><path
+           id="path512"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 479.6602,404.8439 c 10.9399,-10.9399 10.9399,-28.6768 0,-39.6166 -10.9398,-10.9399 -28.6768,-10.9399 -39.6166,0 -10.9399,10.9398 -10.9399,28.6767 0,39.6166 10.9398,10.9399 28.6768,10.9399 39.6166,0" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g514"><path
+             id="path516"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 601.324,136.8504 c 13.8376,13.8375 13.8376,36.2724 0,50.1099 -13.8374,13.8375 -36.2724,13.8375 -50.1098,0 -13.8376,-13.8375 -13.8376,-36.2724 0,-50.1099 13.8374,-13.8375 36.2724,-13.8375 50.1098,0" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,459.8519,385.0355)"
+           id="g518"><g
+             id="text522"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.875,3.860001)"
+             aria-label="proposer1"><path
+               id="path1822"
+               style=""
+               d="m 0.67,-5.17 v 7.14 h 0.85 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 Q 5.27,-4.1 4.97,-4.47 4.68,-4.85 4.23,-5.07 3.79,-5.29 3.19,-5.29 2.65,-5.29 2.2,-5.09 1.75,-4.9 1.54,-4.47 H 1.52 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 Q 2.06,-0.96 1.86,-1.23 1.67,-1.5 1.58,-1.85 1.49,-2.21 1.49,-2.59 q 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path1824"
+               style=""
+               d="M 6.5399998,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path1826"
+               style=""
+               d="m 10.34,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9000001,0 q 0,0.57 0.16,1.06 0.16,0.49 0.4800001,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.3200001,0.36 -0.4800001,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path1828"
+               style=""
+               d="m 15.49,-5.17 v 7.14 h 0.85 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 h -0.02 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path1830"
+               style=""
+               d="m 22.01,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path1832"
+               style=""
+               d="M 27.65,-1.63 H 26.8 q 0.02,0.48 0.2,0.82 0.18,0.33 0.48,0.54 0.3,0.2 0.69,0.29 0.39,0.09 0.82,0.09 0.39,0 0.78,-0.08 0.4,-0.07 0.71,-0.26 0.32,-0.19 0.51,-0.5 0.2,-0.31 0.2,-0.78 0,-0.37 -0.15,-0.62 -0.14,-0.25 -0.38,-0.41 -0.23,-0.17 -0.54,-0.27 -0.3,-0.1 -0.62,-0.17 -0.3,-0.07 -0.6,-0.13 -0.3,-0.07 -0.54,-0.16 -0.24,-0.1 -0.4,-0.24 -0.15,-0.15 -0.15,-0.37 0,-0.2 0.1,-0.32 0.1,-0.13 0.26,-0.2 0.16,-0.08 0.35,-0.11 0.2,-0.03 0.39,-0.03 0.21,0 0.41,0.05 0.21,0.04 0.38,0.14 0.17,0.1 0.28,0.27 0.11,0.16 0.13,0.41 h 0.85 q -0.03,-0.47 -0.2,-0.78 -0.17,-0.32 -0.46,-0.5 -0.28,-0.19 -0.65,-0.26 -0.37,-0.08 -0.81,-0.08 -0.34,0 -0.69,0.09 -0.34,0.08 -0.62,0.26 -0.27,0.17 -0.45,0.45 -0.17,0.28 -0.17,0.67 0,0.5 0.25,0.78 0.25,0.28 0.62,0.44 0.38,0.15 0.82,0.24 0.44,0.08 0.81,0.19 0.38,0.1 0.63,0.27 0.25,0.17 0.25,0.5 0,0.24 -0.12,0.4 -0.12,0.15 -0.31,0.23 -0.18,0.08 -0.4,0.11 -0.22,0.03 -0.42,0.03 -0.26,0 -0.51,-0.05 -0.24,-0.05 -0.44,-0.16 -0.19,-0.12 -0.31,-0.31 -0.12,-0.2 -0.13,-0.48 z" /><path
+               id="path1834"
+               style=""
+               d="m 35.72,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 H 35.7 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path1836"
+               style=""
+               d="M 37.470001,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path1838"
+               style=""
+               d="m 43.749999,0 v -7.09 h -0.65 q -0.07,0.4 -0.26,0.66 -0.19,0.26 -0.47,0.41 -0.27,0.15 -0.61,0.21 -0.34,0.05 -0.7,0.05 v 0.68 h 1.84 V 0 Z" /></g></g><path
+           id="path524"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 603.6807,471.3461 c 10.9398,-10.9398 10.9398,-28.6767 0,-39.6166 -10.9399,-10.9399 -28.6768,-10.9399 -39.6167,0 -10.9398,10.9399 -10.9398,28.6768 0,39.6166 10.9399,10.9399 28.6768,10.9399 39.6167,0" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g526"><path
+             id="path528"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 758.1938,52.73371 c 13.8375,13.83747 13.8375,36.27241 0,50.10989 -13.8375,13.8375 -36.2724,13.8375 -50.1099,0 -13.8375,-13.83748 -13.8375,-36.27242 0,-50.10989 13.8375,-13.83753 36.2724,-13.83753 50.1099,0" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,583.8723,451.5379)"
+           id="g530"><g
+             id="text534"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor1"><path
+               id="path1841"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path1843"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path1845"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path1847"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path1849"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path1851"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path1853"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path1855"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path1857"
+               style=""
+               d="m 43.190001,0 v -7.09 h -0.65 q -0.07,0.4 -0.26,0.66 -0.19,0.26 -0.47,0.41 -0.27,0.15 -0.61,0.21 -0.34,0.05 -0.7,0.05 v 0.68 h 1.84 V 0 Z" /></g></g><path
+           id="path536"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 603.6807,409.717 c 10.9398,-10.9397 10.9398,-28.6767 0,-39.6165 -10.9399,-10.9399 -28.6768,-10.9399 -39.6167,0 -10.9398,10.9398 -10.9398,28.6768 0,39.6165 10.9399,10.94 28.6768,10.94 39.6167,0" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g538"><path
+             id="path540"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 758.1938,130.6865 c 13.8375,13.8374 13.8375,36.2724 0,50.1098 -13.8375,13.8376 -36.2724,13.8376 -50.1099,0 -13.8375,-13.8374 -13.8375,-36.2724 0,-50.1098 13.8375,-13.8376 36.2724,-13.8376 50.1099,0" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,583.8723,389.9088)"
+           id="g542"><g
+             id="text546"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor2"><path
+               id="path1860"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path1862"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path1864"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path1866"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path1868"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path1870"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path1872"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path1874"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path1876"
+               style=""
+               d="m 40.070001,-4.58 h 0.85 q -0.01,-0.32 0.06,-0.63 0.08,-0.32 0.25,-0.57 0.17,-0.25 0.43,-0.4 0.27,-0.16 0.64,-0.16 0.28,0 0.53,0.09 0.25,0.09 0.43,0.26 0.19,0.17 0.3,0.41 0.11,0.23 0.11,0.52 0,0.37 -0.12,0.65 -0.11,0.28 -0.34,0.52 -0.22,0.24 -0.56,0.48 -0.34,0.23 -0.79,0.51 -0.37,0.22 -0.71,0.47 -0.34,0.25 -0.61,0.58 -0.27,0.33 -0.45,0.78 -0.17,0.44 -0.22,1.07 h 4.63 v -0.75 h -3.64 q 0.06,-0.33 0.25,-0.58 0.2,-0.26 0.47,-0.48 0.28,-0.22 0.61,-0.41 0.33,-0.2 0.66,-0.4 0.33,-0.21 0.64,-0.44 0.31,-0.23 0.55,-0.51 0.24,-0.29 0.38,-0.65 0.15,-0.36 0.15,-0.83 0,-0.5 -0.18,-0.88 -0.17,-0.38 -0.47,-0.63 -0.3,-0.26 -0.71,-0.39 -0.4,-0.14 -0.86,-0.14 -0.56,0 -1,0.19 -0.44,0.19 -0.74,0.53 -0.29,0.33 -0.43,0.79 -0.14,0.46 -0.11,1 z" /></g></g><path
+           id="path548"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 603.6807,348.088 c 10.9398,-10.9398 10.9398,-28.6767 0,-39.6166 -10.9399,-10.9399 -28.6768,-10.9399 -39.6167,0 -10.9398,10.9399 -10.9398,28.6768 0,39.6166 10.9399,10.9399 28.6768,10.9399 39.6167,0" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g550"><path
+             id="path552"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 758.1938,208.6392 c 13.8375,13.8375 13.8375,36.2724 0,50.1099 -13.8375,13.8375 -36.2724,13.8375 -50.1099,0 -13.8375,-13.8375 -13.8375,-36.2724 0,-50.1099 13.8375,-13.8375 36.2724,-13.8375 50.1099,0" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,583.8723,328.2797)"
+           id="g554"><g
+             id="text558"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor3"><path
+               id="path1879"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path1881"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path1883"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path1885"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path1887"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path1889"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path1891"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path1893"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path1895"
+               style=""
+               d="m 41.810001,-4.05 v 0.72 q 0.24,-0.03 0.51,-0.03 0.32,0 0.59,0.09 0.28,0.08 0.48,0.26 0.2,0.17 0.32,0.43 0.12,0.25 0.12,0.58 0,0.32 -0.13,0.58 -0.12,0.25 -0.33,0.43 -0.21,0.17 -0.49,0.27 -0.28,0.09 -0.59,0.09 -0.73,0 -1.11,-0.43 -0.38,-0.44 -0.4,-1.13 h -0.85 q -0.01,0.55 0.15,0.98 0.17,0.43 0.48,0.73 0.31,0.29 0.75,0.44 0.44,0.15 0.98,0.15 0.5,0 0.94,-0.13 0.45,-0.14 0.78,-0.41 0.33,-0.27 0.52,-0.67 0.2,-0.41 0.2,-0.94 0,-0.64 -0.32,-1.11 -0.31,-0.47 -0.96,-0.61 v -0.02 q 0.42,-0.19 0.7,-0.56 0.28,-0.37 0.28,-0.85 0,-0.49 -0.17,-0.85 -0.16,-0.36 -0.45,-0.59 -0.29,-0.23 -0.69,-0.34 -0.39,-0.12 -0.85,-0.12 -0.53,0 -0.94,0.17 -0.4,0.17 -0.67,0.47 -0.27,0.3 -0.42,0.72 -0.14,0.42 -0.16,0.93 h 0.85 q 0,-0.31 0.08,-0.59 0.08,-0.28 0.24,-0.49 0.17,-0.21 0.42,-0.33 0.26,-0.13 0.6,-0.13 0.54,0 0.9,0.29 0.36,0.28 0.36,0.85 0,0.28 -0.11,0.5 -0.11,0.22 -0.3,0.37 -0.18,0.14 -0.43,0.22 -0.24,0.07 -0.51,0.07 h -0.18 q -0.05,0 -0.1,0 -0.04,0 -0.09,-0.01 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g560"><path
+             id="path562"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 702.7363,94.09308 -87.0304,46.46102 m 87.163,-46.57174 -86.7147,46.32374" /></g><path
+           id="path564"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 485.8701,398.9871 6.6948,0.8986 -2.2417,4.1805 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g566"><path
+             id="path568"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 609.1787,144.2585 8.4681,-1.1366 -2.8354,-5.2878 z" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g570"><path
+             id="path572"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 698.4802,157.1071 -77.5966,2.6489 m 77.7241,-2.6995 -77.2626,2.6337" /></g><path
+           id="path574"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 489.3446,386.1945 6.413,-2.1217 -0.1862,4.74 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g576"><path
+             id="path578"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 613.5736,160.4395 8.1116,2.6836 -0.2356,-5.9954 z" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g580"><path
+             id="path582"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="M 701.4133,219.1723 616.724,180.9636 m 84.8112,38.0906 -84.4298,-37.9927" /></g><path
+           id="path584"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 486.6973,372.7503 4.7642,-4.7887 1.9738,4.3134 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g586"><path
+             id="path588"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 610.225,177.4447 6.0261,6.057 2.4967,-5.4559 z" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,638.4172,455.7997)"
+           id="g590"><g
+             id="text594"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-30.018,3.832001)"
+             aria-label="promise: m"><path
+               id="path1898"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1900"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1902"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1904"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1906"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1908"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1910"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1912"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1914"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,640.7422,445.6947)"
+           id="g596"><g
+             id="text600"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.008,3.832001)"
+             aria-label="accept: null"><path
+               id="path1917"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1919"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1921"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1923"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1925"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1927"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1929"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1931"
+               style=""
+               d="M 44.112002,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1933"
+               style=""
+               d="m 55.919999,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path1935"
+               style=""
+               d="M 57.516,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1937"
+               style=""
+               d="M 60.180001,-8.568 V 0 h 1.02 v -8.568 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,638.4172,394.1706)"
+           id="g602"><g
+             id="text606"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-30.018,3.832001)"
+             aria-label="promise: m"><path
+               id="path1940"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1942"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1944"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1946"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1948"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1950"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1952"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1954"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1956"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,640.7422,384.0656)"
+           id="g608"><g
+             id="text612"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.008,3.832001)"
+             aria-label="accept: null"><path
+               id="path1959"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1961"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1963"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1965"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1967"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1969"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1971"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1973"
+               style=""
+               d="M 44.112002,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1975"
+               style=""
+               d="m 55.919999,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path1977"
+               style=""
+               d="M 57.516,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1979"
+               style=""
+               d="M 60.180001,-8.568 V 0 h 1.02 v -8.568 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,638.4172,332.5416)"
+           id="g614"><g
+             id="text618"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.236,3.832001)"
+             aria-label="promise: n"><path
+               id="path1982"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1984"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1986"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1988"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1990"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1992"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1994"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1996"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1998"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,638.4172,322.4366)"
+           id="g620"><g
+             id="text624"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.008,3.832001)"
+             aria-label="accept: null"><path
+               id="path2001"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path2003"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path2005"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path2007"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path2009"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path2011"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path2013"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path2015"
+               style=""
+               d="M 44.112002,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path2017"
+               style=""
+               d="m 55.919999,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path2019"
+               style=""
+               d="M 57.516,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path2021"
+               style=""
+               d="M 60.180001,-8.568 V 0 h 1.02 v -8.568 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,498.7277,472.2002)"
+           id="g626"><g
+             id="text630"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-29.34,-10.504)"
+             aria-label="not Accept"><path
+               id="path2024"
+               style=""
+               d="M 0.768,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 H 1.728 v -0.984 z" /><path
+               id="path2026"
+               style=""
+               d="m 8.1839999,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.7560001,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.3960001,0 -0.7560001,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.2960001,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.7320001,0 -1.2960001,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path2028"
+               style=""
+               d="m 15.744,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 Q 15.804,0 16.2,0 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path2030"
+               style=""
+               d="m 23.088001,-3.54 1.452,-3.996 h 0.024 l 1.428,3.996 z m 0.852,-5.028 -3.336,8.568 h 1.164 l 0.96,-2.58 h 3.624 l 0.936,2.58 h 1.26 l -3.348,-8.568 z" /><path
+               id="path2032"
+               style=""
+               d="m 33.432,-4.212 h 1.056 Q 34.428,-4.764 34.2,-5.16 33.972,-5.568 33.612,-5.832 33.264,-6.096 32.796,-6.216 32.34,-6.348 31.812,-6.348 q -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 H 33.48 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path2034"
+               style=""
+               d="m 39.876,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path2036"
+               style=""
+               d="m 46.416,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 Q 47.52,-3.36 47.388,-3.984 47.268,-4.608 46.932,-5.136 46.608,-5.664 46.056,-6 q -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path2038"
+               style=""
+               d="m 48.588,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path2040"
+               style=""
+               d="m 57.084002,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,498.7277,472.2002)"
+           id="g632"><g
+             id="text636"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-48.336,3.832001)"
+             aria-label="reply FailMessage "><path
+               id="path2043"
+               style=""
+               d="M 0.732,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 Q 2.52,-4.932 2.952,-5.1 3.384,-5.268 3.996,-5.268 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 1.692 v -1.308 z" /><path
+               id="path2045"
+               style=""
+               d="M 8.856,-3.696 H 5.292 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z M 9.84,-1.968 H 8.832 Q 8.7,-1.356 8.28,-1.056 q -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 Q 5.976,-1.092 5.736,-1.368 5.496,-1.656 5.388,-2.016 5.28,-2.388 5.292,-2.796 H 9.936 Q 9.96,-3.36 9.828,-3.984 9.708,-4.608 9.372,-5.136 9.048,-5.664 8.496,-6 7.956,-6.348 7.128,-6.348 q -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path2047"
+               style=""
+               d="m 11.028,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path2049"
+               style=""
+               d="M 18.168,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path2051"
+               style=""
+               d="M 23.208,0.828 Q 23.028,1.284 22.848,1.596 22.68,1.908 22.464,2.1 22.26,2.304 21.996,2.388 21.744,2.484 21.408,2.484 21.228,2.484 21.048,2.46 20.868,2.436 20.7,2.376 V 1.44 q 0.132,0.06 0.3,0.096 0.18,0.048 0.3,0.048 0.312,0 0.516,-0.156 0.216,-0.144 0.324,-0.42 l 0.42,-1.044 -2.46,-6.168 h 1.152 l 1.812,5.076 h 0.024 l 1.74,-5.076 h 1.08 z" /><path
+               id="path2053"
+               style=""
+               d="M 30.276,-8.568 V 0 h 1.14 v -3.924 h 3.936 v -0.96 h -3.936 v -2.724 h 4.488 v -0.96 z" /><path
+               id="path2055"
+               style=""
+               d="m 42.492001,-0.024 q -0.264,0.156 -0.732,0.156 -0.396,0 -0.636,-0.216 -0.228,-0.228 -0.228,-0.732 -0.42,0.504 -0.984,0.732 -0.552,0.216 -1.2,0.216 -0.42,0 -0.804,-0.096 -0.372,-0.096 -0.648,-0.3 -0.276,-0.204 -0.444,-0.528 -0.156,-0.336 -0.156,-0.804 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 -0.12,-0.204 -0.324,-0.312 -0.192,-0.108 -0.444,-0.144 -0.24,-0.036 -0.48,-0.036 -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 0.228,-0.216 0.336,-0.456 0.108,-0.252 0.108,-0.468 z" /><path
+               id="path2057"
+               style=""
+               d="m 44.520001,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path2059"
+               style=""
+               d="M 46.163999,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path2061"
+               style=""
+               d="M 48.96,-8.568 V 0 h 1.08 v -7.128 h 0.024 L 52.74,0 h 0.972 l 2.676,-7.128 h 0.024 V 0 h 1.08 v -8.568 h -1.56 l -2.712,7.2 -2.7,-7.2 z" /><path
+               id="path2063"
+               style=""
+               d="m 63.528,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 Q 64.632,-3.36 64.5,-3.984 64.38,-4.608 64.044,-5.136 63.72,-5.664 63.168,-6 62.628,-6.348 61.8,-6.348 q -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path2065"
+               style=""
+               d="m 66.288004,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path2067"
+               style=""
+               d="m 72.288004,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path2069"
+               style=""
+               d="m 83.160004,-0.024 q -0.264,0.156 -0.732,0.156 -0.396,0 -0.636,-0.216 -0.228,-0.228 -0.228,-0.732 -0.42,0.504 -0.984,0.732 -0.552,0.216 -1.2,0.216 -0.42,0 -0.804,-0.096 -0.372,-0.096 -0.648,-0.3 -0.276,-0.204 -0.444,-0.528 -0.156,-0.336 -0.156,-0.804 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 -0.12,-0.204 -0.324,-0.312 -0.192,-0.108 -0.444,-0.144 -0.24,-0.036 -0.48,-0.036 -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 0.228,-0.216 0.336,-0.456 0.108,-0.252 0.108,-0.468 z" /><path
+               id="path2071"
+               style=""
+               d="m 89.459996,-0.528 v -5.676 h -0.96 v 0.888 h -0.012 q -0.276,-0.516 -0.768,-0.768 -0.492,-0.264 -1.08,-0.264 -0.804,0 -1.356,0.312 -0.552,0.3 -0.888,0.78 -0.336,0.468 -0.48,1.056 -0.144,0.576 -0.144,1.128 0,0.636 0.168,1.212 0.18,0.564 0.528,0.996 0.348,0.42 0.864,0.672 0.516,0.252 1.212,0.252 0.6,0 1.128,-0.264 0.54,-0.276 0.804,-0.852 h 0.024 v 0.408 q 0,0.516 -0.108,0.948 -0.096,0.432 -0.324,0.732 -0.228,0.312 -0.576,0.48 -0.348,0.18 -0.852,0.18 -0.252,0 -0.528,-0.06 -0.276,-0.048 -0.516,-0.168 -0.228,-0.12 -0.396,-0.312 -0.156,-0.192 -0.168,-0.468 h -1.02 q 0.024,0.504 0.264,0.852 0.24,0.348 0.6,0.564 0.372,0.216 0.816,0.312 0.456,0.096 0.888,0.096 1.488,0 2.184,-0.756 0.696,-0.756 0.696,-2.28 z m -2.856,-0.3 q -0.504,0 -0.84,-0.204 -0.336,-0.216 -0.54,-0.552 -0.204,-0.348 -0.288,-0.768 -0.084,-0.42 -0.084,-0.84 0,-0.444 0.096,-0.852 0.108,-0.408 0.324,-0.72 0.228,-0.312 0.576,-0.492 0.348,-0.192 0.84,-0.192 0.48,0 0.816,0.192 0.336,0.192 0.54,0.516 0.216,0.312 0.312,0.708 0.096,0.396 0.096,0.804 0,0.432 -0.108,0.864 -0.096,0.432 -0.312,0.78 -0.216,0.336 -0.576,0.552 -0.348,0.204 -0.852,0.204 z" /><path
+               id="path2073"
+               style=""
+               d="m 95.303997,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,498.7277,472.2002)"
+           id="g638"><g
+             id="text642"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-24,18.168)"
+             aria-label="or Ignore"><path
+               id="path2076"
+               style=""
+               d="m 1.512,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 Q 2.34,-1.068 2.076,-1.356 1.812,-1.656 1.656,-2.088 1.512,-2.532 1.512,-3.096 Z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 6.072,-4.968 5.688,-5.4 5.304,-5.844 4.74,-6.096 4.188,-6.348 3.444,-6.348 2.712,-6.348 2.148,-6.096 1.584,-5.844 1.2,-5.4 0.816,-4.968 0.624,-4.368 0.432,-3.78 0.432,-3.096 Z" /><path
+               id="path2078"
+               style=""
+               d="M 7.62,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 8.58 v -1.308 z" /><path
+               id="path2080"
+               style=""
+               d="M 15.204,-8.568 V 0 h 1.14 v -8.568 z" /><path
+               id="path2082"
+               style=""
+               d="m 23.447999,-0.528 v -5.676 h -0.96 v 0.888 h -0.012 q -0.276,-0.516 -0.768,-0.768 -0.492,-0.264 -1.08,-0.264 -0.804,0 -1.356,0.312 -0.552,0.3 -0.888,0.78 -0.336,0.468 -0.48,1.056 -0.144,0.576 -0.144,1.128 0,0.636 0.168,1.212 0.18,0.564 0.528,0.996 0.348,0.42 0.864,0.672 0.516,0.252 1.212,0.252 0.6,0 1.128,-0.264 0.54,-0.276 0.804,-0.852 h 0.024 v 0.408 q 0,0.516 -0.108,0.948 -0.096,0.432 -0.324,0.732 -0.228,0.312 -0.576,0.48 -0.348,0.18 -0.852,0.18 -0.252,0 -0.528,-0.06 -0.276,-0.048 -0.516,-0.168 -0.228,-0.12 -0.396,-0.312 -0.156,-0.192 -0.168,-0.468 h -1.02 q 0.024,0.504 0.264,0.852 0.24,0.348 0.6,0.564 0.372,0.216 0.816,0.312 0.456,0.096 0.888,0.096 1.488,0 2.184,-0.756 0.696,-0.756 0.696,-2.28 z m -2.856,-0.3 q -0.504,0 -0.84,-0.204 -0.336,-0.216 -0.54,-0.552 -0.204,-0.348 -0.288,-0.768 -0.084,-0.42 -0.084,-0.84 0,-0.444 0.096,-0.852 0.108,-0.408 0.324,-0.72 0.228,-0.312 0.576,-0.492 0.348,-0.192 0.84,-0.192 0.48,0 0.816,0.192 0.336,0.192 0.54,0.516 0.216,0.312 0.312,0.708 0.096,0.396 0.096,0.804 0,0.432 -0.108,0.864 -0.096,0.432 -0.312,0.78 -0.216,0.336 -0.576,0.552 -0.348,0.204 -0.852,0.204 z" /><path
+               id="path2084"
+               style=""
+               d="M 24.984,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 Q 29.1,-4.776 29.1,-4.2 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path2086"
+               style=""
+               d="m 32.4,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 Q 32.4,-2.532 32.4,-3.096 Z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path2088"
+               style=""
+               d="M 38.508001,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path2090"
+               style=""
+               d="m 46.632,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 Q 47.736,-3.36 47.604,-3.984 47.484,-4.608 47.148,-5.136 46.824,-5.664 46.272,-6 q -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,604.0471,190.1442)"
+           id="g644"><g
+             id="text648"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-25.11,3.832001)"
+             aria-label="Accept(v)"><path
+               id="path2093"
+               style=""
+               d="M 2.412,-3.54 3.864,-7.536 H 3.888 L 5.316,-3.54 Z M 3.264,-8.568 -0.072,0 h 1.164 l 0.96,-2.58 H 5.676 L 6.612,0 h 1.26 L 4.524,-8.568 Z" /><path
+               id="path2095"
+               style=""
+               d="m 12.756,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 9.924,-1.14 9.708,-1.452 9.492,-1.776 9.384,-2.184 9.288,-2.592 9.288,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path2097"
+               style=""
+               d="m 19.2,-4.212 h 1.056 Q 20.196,-4.764 19.968,-5.16 19.74,-5.568 19.38,-5.832 19.032,-6.096 18.564,-6.216 18.108,-6.348 17.58,-6.348 q -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path2099"
+               style=""
+               d="m 25.74,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 H 26.82 Q 26.844,-3.36 26.712,-3.984 26.592,-4.608 26.256,-5.136 25.932,-5.664 25.38,-6 q -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path2101"
+               style=""
+               d="m 27.912,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 29.58,-1.152 29.34,-1.476 29.112,-1.8 29.004,-2.22 q -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path2103"
+               style=""
+               d="m 36.407999,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path2105"
+               style=""
+               d="m 40.452002,2.364 h 0.78 q -0.852,-1.38 -1.224,-2.736 -0.36,-1.356 -0.36,-2.868 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path2107"
+               style=""
+               d="m 44.676,0 2.268,-6.204 h -1.068 l -1.692,5.172 H 44.16 L 42.42,-6.204 H 41.28 L 43.584,0 Z" /><path
+               id="path2109"
+               style=""
+               d="m 47.004,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,600.717,134.9224)"
+           id="g650"><g
+             id="text654"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-25.11,3.832001)"
+             aria-label="Accept(v)"><path
+               id="path2112"
+               style=""
+               d="M 2.412,-3.54 3.864,-7.536 H 3.888 L 5.316,-3.54 Z M 3.264,-8.568 -0.072,0 h 1.164 l 0.96,-2.58 H 5.676 L 6.612,0 h 1.26 L 4.524,-8.568 Z" /><path
+               id="path2114"
+               style=""
+               d="m 12.756,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 9.924,-1.14 9.708,-1.452 9.492,-1.776 9.384,-2.184 9.288,-2.592 9.288,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path2116"
+               style=""
+               d="m 19.2,-4.212 h 1.056 Q 20.196,-4.764 19.968,-5.16 19.74,-5.568 19.38,-5.832 19.032,-6.096 18.564,-6.216 18.108,-6.348 17.58,-6.348 q -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path2118"
+               style=""
+               d="m 25.74,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 H 26.82 Q 26.844,-3.36 26.712,-3.984 26.592,-4.608 26.256,-5.136 25.932,-5.664 25.38,-6 q -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path2120"
+               style=""
+               d="m 27.912,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 29.58,-1.152 29.34,-1.476 29.112,-1.8 29.004,-2.22 q -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path2122"
+               style=""
+               d="m 36.407999,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path2124"
+               style=""
+               d="m 40.452002,2.364 h 0.78 q -0.852,-1.38 -1.224,-2.736 -0.36,-1.356 -0.36,-2.868 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path2126"
+               style=""
+               d="m 44.676,0 2.268,-6.204 h -1.068 l -1.692,5.172 H 44.16 L 42.42,-6.204 H 41.28 L 43.584,0 Z" /><path
+               id="path2128"
+               style=""
+               d="m 47.004,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,515.2649,339.8408)"
+           id="g656"><g
+             id="text660"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-25.11,3.832001)"
+             aria-label="Accept(v)"><path
+               id="path2131"
+               style=""
+               d="M 2.412,-3.54 3.864,-7.536 H 3.888 L 5.316,-3.54 Z M 3.264,-8.568 -0.072,0 h 1.164 l 0.96,-2.58 H 5.676 L 6.612,0 h 1.26 L 4.524,-8.568 Z" /><path
+               id="path2133"
+               style=""
+               d="m 12.756,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 9.924,-1.14 9.708,-1.452 9.492,-1.776 9.384,-2.184 9.288,-2.592 9.288,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path2135"
+               style=""
+               d="m 19.2,-4.212 h 1.056 Q 20.196,-4.764 19.968,-5.16 19.74,-5.568 19.38,-5.832 19.032,-6.096 18.564,-6.216 18.108,-6.348 17.58,-6.348 q -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path2137"
+               style=""
+               d="m 25.74,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 H 26.82 Q 26.844,-3.36 26.712,-3.984 26.592,-4.608 26.256,-5.136 25.932,-5.664 25.38,-6 q -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path2139"
+               style=""
+               d="m 27.912,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 29.58,-1.152 29.34,-1.476 29.112,-1.8 29.004,-2.22 q -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path2141"
+               style=""
+               d="m 36.407999,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path2143"
+               style=""
+               d="m 40.452002,2.364 h 0.78 q -0.852,-1.38 -1.224,-2.736 -0.36,-1.356 -0.36,-2.868 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path2145"
+               style=""
+               d="m 44.676,0 2.268,-6.204 h -1.068 l -1.692,5.172 H 44.16 L 42.42,-6.204 H 41.28 L 43.584,0 Z" /><path
+               id="path2147"
+               style=""
+               d="m 47.004,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,525.1473,394.1706)"
+           id="g662"><g
+             id="text666"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-37.566,3.832001)"
+             aria-label="not Accept(m)"><path
+               id="path2150"
+               style=""
+               d="M 0.768,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 H 1.728 v -0.984 z" /><path
+               id="path2152"
+               style=""
+               d="m 8.1839999,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.7560001,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.3960001,0 -0.7560001,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.2960001,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.7320001,0 -1.2960001,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path2154"
+               style=""
+               d="m 15.744,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 Q 15.804,0 16.2,0 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path2156"
+               style=""
+               d="m 23.088001,-3.54 1.452,-3.996 h 0.024 l 1.428,3.996 z m 0.852,-5.028 -3.336,8.568 h 1.164 l 0.96,-2.58 h 3.624 l 0.936,2.58 h 1.26 l -3.348,-8.568 z" /><path
+               id="path2158"
+               style=""
+               d="m 33.432,-4.212 h 1.056 Q 34.428,-4.764 34.2,-5.16 33.972,-5.568 33.612,-5.832 33.264,-6.096 32.796,-6.216 32.34,-6.348 31.812,-6.348 q -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 H 33.48 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path2160"
+               style=""
+               d="m 39.876,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path2162"
+               style=""
+               d="m 46.416,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 Q 47.52,-3.36 47.388,-3.984 47.268,-4.608 46.932,-5.136 46.608,-5.664 46.056,-6 q -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path2164"
+               style=""
+               d="m 48.588,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path2166"
+               style=""
+               d="m 57.084002,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path2168"
+               style=""
+               d="m 61.128,2.364 h 0.78 q -0.852,-1.38 -1.224,-2.736 -0.36,-1.356 -0.36,-2.868 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path2170"
+               style=""
+               d="M 62.555998,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path2172"
+               style=""
+               d="m 71.916002,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,515.2649,436.5596)"
+           id="g668"><g
+             id="text672"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-37.566,3.832001)"
+             aria-label="not Accept(m)"><path
+               id="path2175"
+               style=""
+               d="M 0.768,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 H 1.728 v -0.984 z" /><path
+               id="path2177"
+               style=""
+               d="m 8.1839999,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.7560001,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.3960001,0 -0.7560001,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.2960001,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.7320001,0 -1.2960001,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path2179"
+               style=""
+               d="m 15.744,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 Q 15.804,0 16.2,0 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path2181"
+               style=""
+               d="m 23.088001,-3.54 1.452,-3.996 h 0.024 l 1.428,3.996 z m 0.852,-5.028 -3.336,8.568 h 1.164 l 0.96,-2.58 h 3.624 l 0.936,2.58 h 1.26 l -3.348,-8.568 z" /><path
+               id="path2183"
+               style=""
+               d="m 33.432,-4.212 h 1.056 Q 34.428,-4.764 34.2,-5.16 33.972,-5.568 33.612,-5.832 33.264,-6.096 32.796,-6.216 32.34,-6.348 31.812,-6.348 q -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 H 33.48 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path2185"
+               style=""
+               d="m 39.876,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path2187"
+               style=""
+               d="m 46.416,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 Q 47.52,-3.36 47.388,-3.984 47.268,-4.608 46.932,-5.136 46.608,-5.664 46.056,-6 q -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path2189"
+               style=""
+               d="m 48.588,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path2191"
+               style=""
+               d="m 57.084002,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path2193"
+               style=""
+               d="m 61.128,2.364 h 0.78 q -0.852,-1.38 -1.224,-2.736 -0.36,-1.356 -0.36,-2.868 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path2195"
+               style=""
+               d="M 62.555998,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path2197"
+               style=""
+               d="m 71.916002,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g674"><path
+             id="path676"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 854.1628,159.0998 8.581,-0.2476 m -8.4579,0.059 7.6488,-0.1867" /></g><path
+           id="path678"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 691.5629,386.9287 -6.2544,2.5517 -0.1357,-4.7416 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g680"><path
+             id="path682"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 869.3534,159.5108 -7.911,-3.2276 -0.1716,5.9975 z" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,760.8097,386.8677)"
+           id="g684"><g
+             id="text688"
+             style="font-variant:normal;font-weight:normal;font-size:16px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-74.688,-3.447998)"
+             aria-label="retry prepare request "><path
+               id="path2200"
+               style=""
+               d="M 0.976,-8.272 V 0 h 1.36 v -3.68 q 0,-0.8 0.16,-1.408 0.16,-0.624 0.512,-1.056 Q 3.36,-6.576 3.936,-6.8 4.512,-7.024 5.328,-7.024 v -1.44 q -1.104,-0.032 -1.824,0.448 -0.72,0.48 -1.216,1.488 H 2.256 v -1.744 z" /><path
+               id="path2202"
+               style=""
+               d="M 11.808,-4.928 H 7.056 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 Q 7.968,-1.456 7.648,-1.824 7.328,-2.208 7.184,-2.688 7.04,-3.184 7.056,-3.728 h 6.192 Q 13.28,-4.48 13.104,-5.312 12.944,-6.144 12.496,-6.848 12.064,-7.552 11.328,-8 q -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path2204"
+               style=""
+               d="m 16.544,-8.272 v -2.48 h -1.36 v 2.48 h -1.408 v 1.2 h 1.408 v 5.264 q 0,0.576 0.112,0.928 0.112,0.352 0.336,0.544 0.24,0.192 0.608,0.272 Q 16.624,0 17.152,0 h 1.04 v -1.2 h -0.624 q -0.32,0 -0.528,-0.016 -0.192,-0.032 -0.304,-0.112 -0.112,-0.08 -0.16,-0.224 -0.032,-0.144 -0.032,-0.384 v -5.136 h 1.648 v -1.2 z" /><path
+               id="path2206"
+               style=""
+               d="M 19.648001,-8.272 V 0 h 1.36 v -3.68 q 0,-0.8 0.16,-1.408 0.16,-0.624 0.512,-1.056 0.352,-0.432 0.928,-0.656 0.576,-0.224 1.392,-0.224 v -1.44 q -1.104,-0.032 -1.824,0.448 -0.72,0.48 -1.216,1.488 h -0.032 v -1.744 z" /><path
+               id="path2208"
+               style=""
+               d="m 28.272,1.104 q -0.24,0.608 -0.48,1.024 -0.224,0.416 -0.512,0.672 -0.272,0.272 -0.624,0.384 -0.336,0.128 -0.784,0.128 -0.24,0 -0.48,-0.032 -0.24,-0.032 -0.464,-0.112 V 1.92 q 0.176,0.08 0.4,0.128 0.24,0.064 0.4,0.064 0.416,0 0.688,-0.208 0.288,-0.192 0.432,-0.56 l 0.56,-1.392 -3.28,-8.224 h 1.536 l 2.416,6.768 h 0.032 l 2.32,-6.768 h 1.44 z" /><path
+               id="path2210"
+               style=""
+               d="M 37.520002,-8.272 V 3.152 h 1.36 v -4.256 h 0.032 q 0.224,0.368 0.544,0.624 0.336,0.24 0.704,0.384 0.368,0.144 0.736,0.208 0.384,0.064 0.688,0.064 0.944,0 1.648,-0.336 0.72,-0.336 1.184,-0.912 0.48,-0.592 0.704,-1.376 0.24,-0.784 0.24,-1.664 0,-0.88 -0.24,-1.664 -0.24,-0.784 -0.72,-1.376 -0.464,-0.608 -1.184,-0.96 -0.704,-0.352 -1.664,-0.352 -0.864,0 -1.584,0.32 -0.72,0.304 -1.056,0.992 h -0.032 v -1.12 z m 6.4,4.064 q 0,0.608 -0.128,1.184 -0.128,0.576 -0.416,1.024 -0.288,0.448 -0.768,0.72 -0.464,0.272 -1.168,0.272 -0.704,0 -1.2,-0.256 -0.496,-0.272 -0.816,-0.704 -0.304,-0.432 -0.448,-0.992 -0.144,-0.576 -0.144,-1.184 0,-0.576 0.128,-1.136 0.144,-0.56 0.448,-0.992 0.304,-0.448 0.784,-0.72 0.48,-0.272 1.168,-0.272 0.656,0 1.136,0.256 0.496,0.256 0.8,0.688 0.32,0.432 0.464,0.992 0.16,0.544 0.16,1.12 z" /><path
+               id="path2212"
+               style=""
+               d="M 46.912001,-8.272 V 0 h 1.36 v -3.68 q 0,-0.8 0.16,-1.408 0.16,-0.624 0.512,-1.056 0.352,-0.432 0.928,-0.656 0.576,-0.224 1.392,-0.224 v -1.44 q -1.104,-0.032 -1.824,0.448 -0.72,0.48 -1.216,1.488 h -0.032 v -1.744 z" /><path
+               id="path2214"
+               style=""
+               d="m 57.744002,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 -0.496,-0.224 -0.816,-0.592 -0.32,-0.384 -0.464,-0.864 -0.144,-0.496 -0.128,-1.04 h 6.192 q 0.032,-0.752 -0.144,-1.584 -0.16,-0.832 -0.608,-1.536 -0.432,-0.704 -1.168,-1.152 -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path2216"
+               style=""
+               d="M 60.640001,-8.272 V 3.152 h 1.36 v -4.256 h 0.032 q 0.224,0.368 0.544,0.624 0.336,0.24 0.704,0.384 0.368,0.144 0.736,0.208 0.384,0.064 0.688,0.064 0.944,0 1.648,-0.336 0.72,-0.336 1.184,-0.912 0.48,-0.592 0.704,-1.376 0.24,-0.784 0.24,-1.664 0,-0.88 -0.24,-1.664 -0.24,-0.784 -0.72,-1.376 -0.464,-0.608 -1.184,-0.96 -0.704,-0.352 -1.664,-0.352 -0.864,0 -1.584,0.32 -0.72,0.304 -1.056,0.992 h -0.032 v -1.12 z m 6.4,4.064 q 0,0.608 -0.128,1.184 -0.128,0.576 -0.416,1.024 -0.288,0.448 -0.768,0.72 -0.464,0.272 -1.168,0.272 -0.704,0 -1.2,-0.256 -0.496,-0.272 -0.816,-0.704 -0.304,-0.432 -0.448,-0.992 -0.144,-0.576 -0.144,-1.184 0,-0.576 0.128,-1.136 0.144,-0.56 0.448,-0.992 0.304,-0.448 0.784,-0.72 0.48,-0.272 1.168,-0.272 0.656,0 1.136,0.256 0.496,0.256 0.8,0.688 0.32,0.432 0.464,0.992 0.16,0.544 0.16,1.12 z" /><path
+               id="path2218"
+               style=""
+               d="m 77.408,-0.032 q -0.352,0.208 -0.976,0.208 -0.528,0 -0.848,-0.288 -0.304,-0.304 -0.304,-0.976 -0.56,0.672 -1.312,0.976 -0.736,0.288 -1.6,0.288 -0.56,0 -1.072,-0.128 -0.496,-0.128 -0.864,-0.4 -0.368,-0.272 -0.592,-0.704 -0.208,-0.448 -0.208,-1.072 0,-0.704 0.24,-1.152 0.24,-0.448 0.624,-0.72 0.4,-0.288 0.896,-0.432 0.512,-0.144 1.04,-0.24 0.56,-0.112 1.056,-0.16 0.512,-0.064 0.896,-0.16 0.384,-0.112 0.608,-0.304 0.224,-0.208 0.224,-0.592 0,-0.448 -0.176,-0.72 -0.16,-0.272 -0.432,-0.416 -0.256,-0.144 -0.592,-0.192 -0.32,-0.048 -0.64,-0.048 -0.864,0 -1.44,0.336 -0.576,0.32 -0.624,1.232 h -1.36 q 0.032,-0.768 0.32,-1.296 0.288,-0.528 0.768,-0.848 0.48,-0.336 1.088,-0.48 0.624,-0.144 1.328,-0.144 0.56,0 1.104,0.08 0.56,0.08 1.008,0.336 0.448,0.24 0.72,0.688 0.272,0.448 0.272,1.168 v 4.256 q 0,0.48 0.048,0.704 0.064,0.224 0.384,0.224 0.176,0 0.416,-0.08 z M 75.2,-4.272 q -0.256,0.192 -0.672,0.288 -0.416,0.08 -0.88,0.144 -0.448,0.048 -0.912,0.128 -0.464,0.064 -0.832,0.224 -0.368,0.16 -0.608,0.464 -0.224,0.288 -0.224,0.8 0,0.336 0.128,0.576 0.144,0.224 0.352,0.368 0.224,0.144 0.512,0.208 0.288,0.064 0.608,0.064 0.672,0 1.152,-0.176 0.48,-0.192 0.784,-0.464 0.304,-0.288 0.448,-0.608 Q 75.2,-2.592 75.2,-2.88 Z" /><path
+               id="path2220"
+               style=""
+               d="M 78.624003,-8.272 V 0 h 1.36 v -3.68 q 0,-0.8 0.16,-1.408 0.16,-0.624 0.512,-1.056 0.352,-0.432 0.928,-0.656 0.576,-0.224 1.392,-0.224 v -1.44 q -1.104,-0.032 -1.824,0.448 -0.72,0.48 -1.216,1.488 h -0.032 v -1.744 z" /><path
+               id="path2222"
+               style=""
+               d="m 89.456004,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 -0.496,-0.224 -0.816,-0.592 -0.32,-0.384 -0.464,-0.864 -0.144,-0.496 -0.128,-1.04 h 6.192 q 0.032,-0.752 -0.144,-1.584 -0.16,-0.832 -0.608,-1.536 -0.432,-0.704 -1.168,-1.152 -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path2224"
+               style=""
+               d="M 96.703997,-8.272 V 0 h 1.36 v -3.68 q 0,-0.8 0.16,-1.408 0.16,-0.624 0.512,-1.056 0.352,-0.432 0.928,-0.656 Q 100.24,-7.024 101.056,-7.024 v -1.44 q -1.104003,-0.032 -1.824003,0.448 -0.72,0.48 -1.216,1.488 h -0.032 v -1.744 z" /><path
+               id="path2226"
+               style=""
+               d="m 107.536,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 -0.496,-0.224 -0.816,-0.592 -0.32,-0.384 -0.464,-0.864 -0.144,-0.496 -0.128,-1.04 h 6.192 q 0.032,-0.752 -0.144,-1.584 -0.16,-0.832 -0.608,-1.536 -0.432,-0.704 -1.168,-1.152 -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path2228"
+               style=""
+               d="m 111.376,-4.064 q 0,-0.608 0.128,-1.184 0.128,-0.576 0.416,-1.024 0.288,-0.448 0.768,-0.72 0.48,-0.272 1.168,-0.272 0.704,0 1.2,0.272 0.496,0.256 0.8,0.688 0.32,0.432 0.464,1.008 0.144,0.56 0.144,1.168 0,0.576 -0.144,1.136 -0.128,0.56 -0.432,1.008 -0.304,0.432 -0.784,0.704 -0.48,0.272 -1.168,0.272 -0.656,0 -1.152,-0.256 -0.48,-0.256 -0.8,-0.688 -0.304,-0.432 -0.464,-0.976 -0.144,-0.56 -0.144,-1.136 z m 6.4,7.216 V -8.272 h -1.36 v 1.104 h -0.032 q -0.224,-0.368 -0.56,-0.608 -0.32,-0.256 -0.688,-0.4 -0.368,-0.16 -0.736,-0.224 -0.368,-0.064 -0.688,-0.064 -0.944,0 -1.664,0.352 -0.704,0.336 -1.184,0.928 -0.464,0.576 -0.704,1.36 -0.224,0.784 -0.224,1.664 0,0.88 0.24,1.664 0.24,0.784 0.704,1.376 0.48,0.592 1.184,0.944 0.72,0.352 1.68,0.352 0.864,0 1.584,-0.304 0.72,-0.304 1.056,-0.992 h 0.032 v 4.272 z" /><path
+               id="path2230"
+               style=""
+               d="m 126.72,0 v -8.272 h -1.36 V -3.6 q 0,0.56 -0.16,1.04 -0.144,0.464 -0.448,0.816 -0.304,0.352 -0.768,0.544 -0.448,0.192 -1.072,0.192 -0.784,0 -1.232,-0.448 -0.448,-0.448 -0.448,-1.216 v -5.6 h -1.36 v 5.44 q 0,0.672 0.128,1.232 0.144,0.544 0.48,0.944 0.336,0.4 0.88,0.624 0.544,0.208 1.36,0.208 0.912,0 1.584,-0.352 0.672,-0.368 1.104,-1.136 h 0.032 V 0 Z" /><path
+               id="path2232"
+               style=""
+               d="m 134.512,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 -0.496,-0.224 -0.816,-0.592 -0.32,-0.384 -0.464,-0.864 -0.144,-0.496 -0.128,-1.04 h 6.192 q 0.032,-0.752 -0.144,-1.584 -0.16,-0.832 -0.608,-1.536 -0.432,-0.704 -1.168,-1.152 -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path2234"
+               style=""
+               d="m 138.192,-2.608 h -1.36 q 0.032,0.768 0.32,1.312 0.288,0.528 0.768,0.864 0.48,0.32 1.104,0.464 0.624,0.144 1.312,0.144 0.624,0 1.248,-0.128 0.64,-0.112 1.136,-0.416 0.512,-0.304 0.816,-0.8 0.32,-0.496 0.32,-1.248 0,-0.592 -0.24,-0.992 -0.224,-0.4 -0.608,-0.656 -0.368,-0.272 -0.864,-0.432 -0.48,-0.16 -0.992,-0.272 -0.48,-0.112 -0.96,-0.208 -0.48,-0.112 -0.864,-0.256 -0.384,-0.16 -0.64,-0.384 -0.24,-0.24 -0.24,-0.592 0,-0.32 0.16,-0.512 0.16,-0.208 0.416,-0.32 0.256,-0.128 0.56,-0.176 0.32,-0.048 0.624,-0.048 0.336,0 0.656,0.08 0.336,0.064 0.608,0.224 0.272,0.16 0.448,0.432 0.176,0.256 0.208,0.656 h 1.36 q -0.048,-0.752 -0.32,-1.248 -0.272,-0.512 -0.736,-0.8 -0.448,-0.304 -1.04,-0.416 -0.592,-0.128 -1.296,-0.128 -0.544,0 -1.104,0.144 -0.544,0.128 -0.992,0.416 -0.432,0.272 -0.72,0.72 -0.272,0.448 -0.272,1.072 0,0.8 0.4,1.248 0.4,0.448 0.992,0.704 0.608,0.24 1.312,0.384 0.704,0.128 1.296,0.304 0.608,0.16 1.008,0.432 0.4,0.272 0.4,0.8 0,0.384 -0.192,0.64 -0.192,0.24 -0.496,0.368 -0.288,0.128 -0.64,0.176 -0.352,0.048 -0.672,0.048 -0.416,0 -0.816,-0.08 -0.384,-0.08 -0.704,-0.256 -0.304,-0.192 -0.496,-0.496 -0.192,-0.32 -0.208,-0.768 z" /><path
+               id="path2236"
+               style=""
+               d="m 147.248,-8.272 v -2.48 h -1.36 v 2.48 h -1.408 v 1.2 h 1.408 v 5.264 q 0,0.576 0.112,0.928 0.112,0.352 0.336,0.544 0.24,0.192 0.608,0.272 Q 147.328,0 147.856,0 h 1.04 v -1.2 h -0.624 q -0.32,0 -0.528,-0.016 -0.192,-0.032 -0.304,-0.112 -0.112,-0.08 -0.16,-0.224 -0.032,-0.144 -0.032,-0.384 v -5.136 h 1.648 v -1.2 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,760.8097,386.8677)"
+           id="g690"><g
+             id="text694"
+             style="font-variant:normal;font-weight:normal;font-size:16px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-39.776,15)"
+             aria-label="set n’ ( &gt; n)"><path
+               id="path2239"
+               style=""
+               d="m 1.856,-2.608 h -1.36 q 0.032,0.768 0.32,1.312 0.288,0.528 0.768,0.864 0.48,0.32 1.104,0.464 0.624,0.144 1.312,0.144 0.624,0 1.248,-0.128 0.64,-0.112 1.136,-0.416 0.512,-0.304 0.816,-0.8 0.32,-0.496 0.32,-1.248 0,-0.592 -0.24,-0.992 -0.224,-0.4 -0.608,-0.656 -0.368,-0.272 -0.864,-0.432 -0.48,-0.16 -0.992,-0.272 -0.48,-0.112 -0.96,-0.208 -0.48,-0.112 -0.864,-0.256 -0.384,-0.16 -0.64,-0.384 -0.24,-0.24 -0.24,-0.592 0,-0.32 0.16,-0.512 0.16,-0.208 0.416,-0.32 0.256,-0.128 0.56,-0.176 0.32,-0.048 0.624,-0.048 0.336,0 0.656,0.08 0.336,0.064 0.608,0.224 0.272,0.16 0.448,0.432 0.176,0.256 0.208,0.656 h 1.36 Q 7.104,-6.624 6.832,-7.12 6.56,-7.632 6.096,-7.92 5.648,-8.224 5.056,-8.336 4.464,-8.464 3.76,-8.464 q -0.544,0 -1.104,0.144 -0.544,0.128 -0.992,0.416 -0.432,0.272 -0.72,0.72 -0.272,0.448 -0.272,1.072 0,0.8 0.4,1.248 0.4,0.448 0.992,0.704 0.608,0.24 1.312,0.384 0.704,0.128 1.296,0.304 0.608,0.16 1.008,0.432 0.4,0.272 0.4,0.8 0,0.384 -0.192,0.64 -0.192,0.24 -0.496,0.368 -0.288,0.128 -0.64,0.176 -0.352,0.048 -0.672,0.048 -0.416,0 -0.816,-0.08 Q 2.88,-1.168 2.56,-1.344 2.256,-1.536 2.064,-1.84 1.872,-2.16 1.856,-2.608 Z" /><path
+               id="path2241"
+               style=""
+               d="m 14.768,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 H 14.736 Q 14.56,-1.808 14,-1.408 q -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 -0.496,-0.224 -0.816,-0.592 -0.32,-0.384 -0.464,-0.864 Q 10,-3.184 10.016,-3.728 h 6.192 Q 16.24,-4.48 16.064,-5.312 15.904,-6.144 15.456,-6.848 15.024,-7.552 14.288,-8 q -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path2243"
+               style=""
+               d="m 19.503999,-8.272 v -2.48 h -1.36 v 2.48 h -1.408 v 1.2 h 1.408 v 5.264 q 0,0.576 0.112,0.928 0.112,0.352 0.336,0.544 0.24,0.192 0.608,0.272 0.384,0.064 0.912,0.064 h 1.04 v -1.2 h -0.624 q -0.32,0 -0.528,-0.016 -0.192,-0.032 -0.304,-0.112 -0.112,-0.08 -0.16,-0.224 -0.032,-0.144 -0.032,-0.384 v -5.136 h 1.648 v -1.2 z" /><path
+               id="path2245"
+               style=""
+               d="M 27.104,-8.272 V 0 h 1.36 v -4.672 q 0,-0.56 0.144,-1.024 0.16,-0.48 0.464,-0.832 0.304,-0.352 0.752,-0.544 0.464,-0.192 1.088,-0.192 0.784,0 1.232,0.448 0.448,0.448 0.448,1.216 V 0 h 1.36 v -5.44 q 0,-0.672 -0.144,-1.216 -0.128,-0.56 -0.464,-0.96 -0.336,-0.4 -0.88,-0.624 -0.544,-0.224 -1.36,-0.224 -1.84,0 -2.688,1.504 h -0.032 v -1.312 z" /><path
+               id="path2247"
+               style=""
+               d="m 36.304002,-11.424 v 1.776 h 0.944 q 0,0.272 -0.048,0.56 -0.032,0.272 -0.144,0.496 -0.112,0.224 -0.288,0.368 -0.176,0.128 -0.448,0.128 v 0.8 q 0.464,0 0.784,-0.192 0.336,-0.192 0.544,-0.512 0.224,-0.32 0.32,-0.736 0.112,-0.432 0.112,-0.912 v -1.776 z" /><path
+               id="path2249"
+               style=""
+               d="m 47.136002,3.152 h 1.04 q -1.136,-1.84 -1.632,-3.648 -0.48,-1.808 -0.48,-3.824 0,-1.968 0.48,-3.76 0.48,-1.792 1.632,-3.616 h -1.04 q -1.248,1.648 -1.888,3.568 -0.624,1.92 -0.624,3.808 0,1.056 0.176,2.016 0.176,0.96 0.496,1.872 0.336,0.912 0.8,1.792 0.464,0.896 1.04,1.792 z" /><path
+               id="path2251"
+               style=""
+               d="m 53.200001,-0.96 v 1.072 l 8.128,-3.664 v -0.992 l -8.128,-3.68 v 1.088 l 6.8,3.088 z" /><path
+               id="path2253"
+               style=""
+               d="M 67.536001,-8.272 V 0 h 1.36 v -4.672 q 0,-0.56 0.144,-1.024 0.16,-0.48 0.464,-0.832 0.304,-0.352 0.752,-0.544 0.464,-0.192 1.088,-0.192 0.784,0 1.232,0.448 0.448,0.448 0.448,1.216 V 0 h 1.36 v -5.44 q 0,-0.672 -0.144,-1.216 -0.128,-0.56 -0.464,-0.96 -0.336,-0.4 -0.88,-0.624 -0.544,-0.224 -1.36,-0.224 -1.84,0 -2.688,1.504 h -0.032 v -1.312 z" /><path
+               id="path2255"
+               style=""
+               d="m 75.263997,3.152 h 1.024 q 1.248,-1.648 1.872,-3.552 0.64,-1.92 0.64,-3.808 0,-1.056 -0.176,-2.016 -0.176,-0.96 -0.512,-1.872 -0.32,-0.928 -0.784,-1.808 -0.464,-0.896 -1.04,-1.792 h -1.024 q 1.12,1.84 1.6,3.664 0.496,1.808 0.496,3.824 0,1.952 -0.48,3.76 -0.48,1.792 -1.616,3.6 z" /></g></g><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g696"><path
+             id="path698"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 939.9228,416.5667 8.6623,-0.2238 m -8.5387,0.0439 7.7459,-0.2289" /></g><path
+           id="path700"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 759.6469,184.0389 -6.3876,2.1969 0.1306,-4.7419 z" /><g
+           transform="matrix(0.790595,0,0,-0.790595,4.25643,513.0371)"
+           id="g702"><path
+             id="path704"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 955.4709,416.1401 -8.0795,-2.7788 0.1651,5.9978 z" /></g><g
+           transform="matrix(0.790595,0,0,-0.790595,795.9911,185.9347)"
+           id="g706"><g
+             id="text710"
+             style="font-variant:normal;font-weight:normal;font-size:16px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-32.304,5.776001)"
+             aria-label="chosen v"><path
+               id="path2258"
+               style=""
+               d="M 6.64,-5.616 H 8.048 Q 7.968,-6.352 7.664,-6.88 7.36,-7.424 6.88,-7.776 6.416,-8.128 5.792,-8.288 5.184,-8.464 4.48,-8.464 q -0.976,0 -1.712,0.352 -0.736,0.336 -1.232,0.944 -0.48,0.592 -0.72,1.408 -0.24,0.8 -0.24,1.728 0,0.928 0.24,1.712 0.256,0.768 0.736,1.328 0.496,0.56 1.216,0.864 0.736,0.304 1.68,0.304 1.584,0 2.496,-0.832 0.928,-0.832 1.152,-2.368 H 6.704 Q 6.576,-2.064 6,-1.536 5.44,-1.008 4.432,-1.008 3.792,-1.008 3.328,-1.264 2.864,-1.52 2.576,-1.936 2.288,-2.368 2.144,-2.912 2.016,-3.456 2.016,-4.032 q 0,-0.624 0.128,-1.2 0.128,-0.592 0.416,-1.04 0.304,-0.448 0.8,-0.72 0.496,-0.272 1.232,-0.272 0.864,0 1.376,0.432 0.512,0.432 0.672,1.216 z" /><path
+               id="path2260"
+               style=""
+               d="M 9.616,-11.424 V 0 h 1.36 v -4.672 q 0,-0.56 0.144,-1.024 0.16,-0.48 0.464,-0.832 0.304,-0.352 0.752,-0.544 0.464,-0.192 1.088,-0.192 0.784,0 1.232,0.448 0.448,0.448 0.448,1.216 V 0 h 1.36 v -5.44 q 0,-0.672 -0.144,-1.216 -0.128,-0.56 -0.464,-0.96 -0.336,-0.4 -0.88,-0.624 -0.544,-0.224 -1.36,-0.224 -0.368,0 -0.768,0.08 -0.384,0.08 -0.752,0.256 -0.352,0.16 -0.64,0.432 -0.288,0.256 -0.448,0.64 h -0.032 v -4.368 z" /><path
+               id="path2262"
+               style=""
+               d="m 19.504001,-4.128 q 0,-0.752 0.192,-1.328 0.208,-0.592 0.56,-0.992 0.352,-0.4 0.816,-0.608 0.48,-0.208 1.008,-0.208 0.528,0 0.992,0.208 0.48,0.208 0.832,0.608 0.352,0.4 0.544,0.992 0.208,0.576 0.208,1.328 0,0.752 -0.208,1.344 -0.192,0.576 -0.544,0.976 -0.352,0.384 -0.832,0.592 -0.464,0.208 -0.992,0.208 -0.528,0 -1.008,-0.208 -0.464,-0.208 -0.816,-0.592 -0.352,-0.4 -0.56,-0.976 -0.192,-0.592 -0.192,-1.344 z m -1.44,0 q 0,0.912 0.256,1.696 0.256,0.784 0.768,1.376 0.512,0.576 1.264,0.912 0.752,0.32 1.728,0.32 0.992,0 1.728,-0.32 0.752,-0.336 1.264,-0.912 0.512,-0.592 0.768,-1.376 0.256,-0.784 0.256,-1.696 0,-0.912 -0.256,-1.696 -0.256,-0.8 -0.768,-1.376 -0.512,-0.592 -1.264,-0.928 -0.736,-0.336 -1.728,-0.336 -0.976,0 -1.728,0.336 -0.752,0.336 -1.264,0.928 -0.512,0.576 -0.768,1.376 -0.256,0.784 -0.256,1.696 z" /><path
+               id="path2264"
+               style=""
+               d="m 28.528001,-2.608 h -1.36 q 0.032,0.768 0.32,1.312 0.288,0.528 0.768,0.864 0.48,0.32 1.104,0.464 0.624,0.144 1.312,0.144 0.624,0 1.248,-0.128 0.64,-0.112 1.136,-0.416 0.512,-0.304 0.816,-0.8 0.32,-0.496 0.32,-1.248 0,-0.592 -0.24,-0.992 -0.224,-0.4 -0.608,-0.656 -0.368,-0.272 -0.864,-0.432 -0.48,-0.16 -0.992,-0.272 -0.48,-0.112 -0.96,-0.208 -0.48,-0.112 -0.864,-0.256 -0.384,-0.16 -0.64,-0.384 -0.24,-0.24 -0.24,-0.592 0,-0.32 0.16,-0.512 0.16,-0.208 0.416,-0.32 0.256,-0.128 0.56,-0.176 0.32,-0.048 0.624,-0.048 0.336,0 0.656,0.08 0.336,0.064 0.608,0.224 0.272,0.16 0.448,0.432 0.176,0.256 0.208,0.656 h 1.36 q -0.048,-0.752 -0.32,-1.248 -0.272,-0.512 -0.736,-0.8 -0.448,-0.304 -1.04,-0.416 -0.592,-0.128 -1.296,-0.128 -0.544,0 -1.104,0.144 -0.544,0.128 -0.992,0.416 -0.432,0.272 -0.72,0.72 -0.272,0.448 -0.272,1.072 0,0.8 0.4,1.248 0.4,0.448 0.992,0.704 0.608,0.24 1.312,0.384 0.704,0.128 1.296,0.304 0.608,0.16 1.008,0.432 0.4,0.272 0.4,0.8 0,0.384 -0.192,0.64 -0.192,0.24 -0.496,0.368 -0.288,0.128 -0.64,0.176 -0.352,0.048 -0.672,0.048 -0.416,0 -0.816,-0.08 -0.384,-0.08 -0.704,-0.256 -0.304,-0.192 -0.496,-0.496 -0.192,-0.32 -0.208,-0.768 z" /><path
+               id="path2266"
+               style=""
+               d="m 41.440001,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 -0.496,-0.224 -0.816,-0.592 -0.32,-0.384 -0.464,-0.864 -0.144,-0.496 -0.128,-1.04 h 6.192 q 0.032,-0.752 -0.144,-1.584 -0.16,-0.832 -0.608,-1.536 -0.432,-0.704 -1.168,-1.152 -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path2268"
+               style=""
+               d="M 44.288,-8.272 V 0 h 1.36 v -4.672 q 0,-0.56 0.144,-1.024 0.16,-0.48 0.464,-0.832 0.304,-0.352 0.752,-0.544 0.464,-0.192 1.088,-0.192 0.784,0 1.232,0.448 0.448,0.448 0.448,1.216 V 0 h 1.36 v -5.44 q 0,-0.672 -0.144,-1.216 -0.128,-0.56 -0.464,-0.96 -0.336,-0.4 -0.88,-0.624 -0.544,-0.224 -1.36,-0.224 -1.84,0 -2.688,1.504 h -0.032 v -1.312 z" /><path
+               id="path2270"
+               style=""
+               d="m 61.360002,0 3.024,-8.272 h -1.424 l -2.256,6.896 h -0.032 l -2.32,-6.896 h -1.52 l 3.072,8.272 z" /></g></g></g></g></g></svg>
\ No newline at end of file
Binary file slide/images/blockchain.graffle has changed
Binary file slide/images/blockchain.pdf has changed
Binary file slide/images/blockchain.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/slide/images/blockchain.svg	Tue Feb 19 21:49:55 2019 +0900
@@ -0,0 +1,950 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   viewBox="0 0 1062.6667 590.66669"
+   height="590.66669"
+   width="1062.6667"
+   xml:space="preserve"
+   id="svg2"
+   version="1.1"><metadata
+     id="metadata8"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+     id="defs6"><clipPath
+       id="clipPath20"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path18"
+         d="M 0,0 H 797 V 443 H 0 Z" /></clipPath></defs><g
+     transform="matrix(1.3333333,0,0,-1.3333333,0,590.66667)"
+     id="g10"><g
+       id="g12" /><g
+       id="g14"><g
+         clip-path="url(#clipPath20)"
+         id="g16"><path
+           id="path22"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="M 11,504 H 794 V -55 H 11 Z" /><path
+           id="path24"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="M 336.9638,431.1286 H 785.5172 V 243.095 H 336.9638 Z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g26"><path
+             id="path28"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="M 325.9638,72.87137 H 774.5172 V 260.905 H 325.9638 Z" /></g><g
+           transform="matrix(1,0,0,-1,561.2405,337.1118)"
+           id="g30"><g
+             id="text34"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-89.22,-78.01681)"
+             aria-label="ノードはブロックチェーンを保有"><path
+               id="path460"
+               style=""
+               d="m 8.844,-9.18 c -0.108,0.684 -0.624,1.944 -1.26,3.072 -1.38,2.436 -3.204,4.02 -5.916,5.172 0.324,0.336 0.42,0.468 0.612,0.84 2.004,-1.008 3.348,-1.98 4.524,-3.324 1.092,-1.224 1.92,-2.664 2.736,-4.728 0.204,-0.516 0.204,-0.516 0.3,-0.696 z" /><path
+               id="path462"
+               style=""
+               d="m 13.044,-4.116 c 0.36,-0.036 0.612,-0.048 1.488,-0.048 h 6.96 c 0.804,0 1.08,0.012 1.464,0.048 v -0.972 c -0.372,0.048 -0.564,0.06 -1.452,0.06 h -6.972 c -0.816,0 -1.14,-0.012 -1.488,-0.072 z" /><path
+               id="path464"
+               style=""
+               d="M 28.584,0.372 C 28.536,0.084 28.524,-0.18 28.524,-0.9 v -3.612 c 0,-0.3 -0.012,-0.492 -0.048,-0.708 L 28.5,-5.232 c 0.108,0.084 0.204,0.132 0.372,0.204 1.692,0.708 3.576,1.704 4.476,2.376 l 0.516,-0.888 c -1.968,-1.14 -3.624,-1.92 -5.34,-2.532 v -2.244 c 0,-0.744 0.012,-0.972 0.06,-1.248 h -1.032 c 0.048,0.264 0.06,0.468 0.072,1.224 v 7.452 c -0.012,0.732 -0.024,0.984 -0.072,1.26 z m 2.976,-9.144 c 0.36,0.372 0.936,1.272 1.236,1.908 l 0.6,-0.36 C 33.036,-7.932 32.7,-8.436 32.16,-9.084 Z m 1.368,-0.648 c 0.468,0.552 0.972,1.32 1.224,1.896 l 0.6,-0.348 c -0.396,-0.756 -0.696,-1.2 -1.236,-1.872 z" /><path
+               id="path466"
+               style=""
+               d="m 40.404,-6.192 c 0.024,0 0.036,0 0.048,0 0.024,0 0.06,0 0.12,0.012 0.024,0 0.096,0 0.204,0.012 0.048,0 0.18,0 0.384,0.024 0.42,0.024 0.864,0.036 1.356,0.036 0.456,0 0.828,-0.012 1.368,-0.036 0.036,1.752 0.084,2.88 0.12,3.132 -0.276,-0.144 -0.84,-0.24 -1.332,-0.24 -1.332,0 -2.28,0.708 -2.28,1.704 0,1.044 0.876,1.704 2.268,1.704 0.984,0 1.716,-0.372 2.004,-1.008 0.096,-0.216 0.144,-0.504 0.144,-0.816 0,-0.108 0,-0.132 -0.024,-0.312 0.06,0.036 0.06,0.036 0.108,0.072 0.072,0.048 0.072,0.048 0.12,0.072 0.852,0.492 1.332,0.828 1.704,1.248 l 0.372,-0.84 c -0.132,-0.084 -0.156,-0.108 -0.3,-0.204 -0.792,-0.588 -1.128,-0.78 -2.004,-1.176 -0.096,-1.596 -0.12,-2.208 -0.132,-3.396 0.624,-0.072 0.96,-0.12 1.272,-0.192 0.816,-0.168 0.816,-0.168 0.84,-0.168 L 46.728,-7.38 c -0.456,0.192 -1.152,0.336 -2.076,0.444 C 44.64,-7.2 44.64,-7.392 44.64,-7.524 c 0,-0.996 0.024,-1.56 0.084,-1.884 h -0.9 c 0.024,0.12 0.036,0.288 0.036,0.492 0,0.912 0,0.912 0.012,2.04 -0.492,0.024 -0.816,0.036 -1.284,0.036 -1.056,0 -1.572,-0.048 -2.16,-0.192 z m 3.612,3.912 c 0,0 0.012,0.276 0.012,0.36 0,0.468 -0.072,0.756 -0.228,0.936 -0.228,0.264 -0.696,0.42 -1.224,0.42 -0.84,0 -1.392,-0.384 -1.392,-0.972 0,-0.6 0.612,-0.996 1.548,-0.996 0.48,0 0.792,0.06 1.284,0.252 z M 38.28,-9.42 c -0.012,0.156 -0.024,0.228 -0.132,0.756 -0.468,2.076 -0.624,3.336 -0.624,4.932 0,1.212 0.12,2.448 0.336,3.564 0.048,0.276 0.06,0.336 0.072,0.444 L 38.784,0.192 C 38.76,0.024 38.76,0.012 38.76,-0.048 c 0,-0.708 0.468,-2.232 1.032,-3.408 L 39.204,-3.732 C 39.18,-3.648 39.156,-3.6 39.108,-3.492 38.7,-2.508 38.616,-2.28 38.4,-1.38 l -0.048,-0.012 c 0,-0.12 0,-0.12 0,-0.228 -0.012,-0.216 -0.012,-0.24 -0.012,-0.336 -0.024,-0.552 -0.048,-1.26 -0.048,-1.68 0,-1.968 0.408,-4.428 0.924,-5.628 z" /><path
+               id="path468"
+               style=""
+               d="m 57.792,-7.872 0.444,-0.264 c -0.24,-0.54 -0.684,-1.188 -1.296,-1.92 l -0.6,0.312 c 0.432,0.492 0.636,0.78 1.128,1.632 -0.3,0.012 -0.456,0.012 -0.708,0.012 h -5.796 c -0.648,0 -0.924,-0.012 -1.356,-0.072 v 0.96 c 0.36,-0.048 0.648,-0.072 1.344,-0.072 h 6.108 c -0.42,1.752 -1.116,3.156 -2.1,4.272 -1.08,1.224 -2.784,2.28 -4.392,2.724 0.288,0.288 0.42,0.456 0.588,0.828 1.512,-0.564 2.64,-1.236 3.768,-2.256 1.404,-1.26 2.292,-2.76 2.94,-4.98 0.156,-0.588 0.18,-0.636 0.252,-0.744 z m 0.108,-2.28 c 0.48,0.564 0.984,1.32 1.236,1.884 l 0.612,-0.36 c -0.42,-0.756 -0.72,-1.2 -1.26,-1.848 z" /><path
+               id="path470"
+               style=""
+               d="m 68.736,-0.984 v 0.852 h 0.912 c -0.024,-0.252 -0.036,-0.564 -0.036,-0.924 v -6.492 c 0,-0.492 0,-0.648 0.036,-0.936 -0.276,0.036 -0.42,0.036 -0.936,0.036 h -6.396 c -0.468,0 -0.696,-0.012 -0.936,-0.036 0.036,0.288 0.048,0.444 0.048,0.936 v 6.516 c 0,0.396 -0.012,0.636 -0.048,0.9 h 0.924 v -0.852 z m 0,-0.78 h -6.432 v -5.892 h 6.432 z" /><path
+               id="path472"
+               style=""
+               d="m 73.763997,-6.336 c 0.504,0.828 0.84,1.632 1.128,2.688 l 0.816,-0.276 c -0.444,-1.272 -0.708,-1.836 -1.188,-2.664 z m 2.472,-0.504 c 0.516,0.9 0.888,1.776 1.104,2.628 l 0.792,-0.276 c -0.312,-0.96 -0.528,-1.44 -1.164,-2.58 z m 4.164,-0.012 c 0,0.036 0,0.036 0,0.072 v 0.048 c 0,0.144 -0.048,0.42 -0.132,0.816 -0.216,0.924 -0.564,1.824 -1.02,2.58 -0.828,1.38 -1.956,2.304 -3.804,3.132 0.276,0.252 0.372,0.372 0.552,0.672 1.86,-0.9 3.12,-2.004 3.972,-3.468 0.432,-0.744 0.864,-1.848 1.056,-2.688 0.192,-0.78 0.192,-0.78 0.264,-0.972 z" /><path
+               id="path474"
+               style=""
+               d="m 88.619997,-9.78 c -0.06,0.42 -0.3,0.96 -0.756,1.752 -0.828,1.464 -1.74,2.46 -3.012,3.288 0.348,0.216 0.468,0.324 0.672,0.624 1.176,-0.888 2.136,-1.944 2.868,-3.12 l 4.044,-0.072 c -0.42,1.5 -1.14,2.904 -2.064,4.02 -1.152,1.38 -2.424,2.292 -4.236,3.036 0.312,0.24 0.408,0.36 0.6,0.708 1.752,-0.792 3.072,-1.74 4.176,-3 1.02,-1.188 1.896,-2.82 2.4,-4.512 0.132,-0.432 0.132,-0.444 0.24,-0.588 l -0.516,-0.504 c -0.168,0.072 -0.204,0.084 -0.624,0.084 -3.468,0.06 -3.468,0.06 -3.624,0.096 0.132,-0.216 0.24,-0.42 0.552,-1.068 0.156,-0.336 0.156,-0.336 0.264,-0.492 z" /><path
+               id="path476"
+               style=""
+               d="m 104.688,-9.48 c -0.384,0.24 -0.696,0.372 -1.368,0.576 -1.536,0.456 -3.504003,0.756 -5.040003,0.756 -0.18,0 -0.36,0 -0.696,-0.024 0.18,0.384 0.216,0.492 0.288,0.804 1.764,-0.072 2.796003,-0.18 3.552003,-0.336 0,1.056 -0.012,1.728 -0.036,2.256 h -3.444003 c -0.684,0 -0.864,-0.012 -1.26,-0.084 v 0.912 c 0.432,-0.048 0.648,-0.06 1.26,-0.06 H 101.316 c -0.084,1.032 -0.288,1.692 -0.732,2.352 -0.588003,0.888 -1.500003,1.56 -2.808003,2.064 0.324,0.264 0.432,0.384 0.648,0.744 1.464,-0.708 2.364003,-1.464 2.988003,-2.508 0.456,-0.756 0.684,-1.524 0.78,-2.652 h 2.94 c 0.612,0 0.828,0.012 1.26,0.06 v -0.912 c -0.396,0.072 -0.576,0.084 -1.26,0.084 h -2.88 c 0.012,-0.468 0.024,-1.248 0.036,-2.4 0.948,-0.192 1.764,-0.432 2.64,-0.744 0.228,-0.084 0.228,-0.084 0.372,-0.12 z" /><path
+               id="path478"
+               style=""
+               d="m 113.868,-4.884 h 1.848 c 0.636,0 0.732,0 1.056,0.048 v -0.84 c -0.288,0.048 -0.576,0.072 -1.068,0.072 h -4.38 c -0.48,0 -0.768,-0.024 -1.068,-0.072 v 0.84 c 0.276,-0.036 0.54,-0.048 1.068,-0.048 h 1.716 v 4.152 h -2.436 c -0.576,0 -0.768,-0.012 -1.08,-0.072 V 0.048 C 109.812,0.012 110.1,0 110.616,0 h 5.808 c 0.492,0 0.804,0.012 1.092,0.048 v -0.84 c -0.3,0.048 -0.516,0.06 -1.08,0.06 h -2.568 z" /><path
+               id="path480"
+               style=""
+               d="m 120.564,-4.116 c 0.36,-0.036 0.612,-0.048 1.488,-0.048 h 6.96 c 0.804,0 1.08,0.012 1.464,0.048 v -0.972 c -0.372,0.048 -0.564,0.06 -1.452,0.06 h -6.972 c -0.816,0 -1.14,-0.012 -1.488,-0.072 z" /><path
+               id="path482"
+               style=""
+               d="m 132.312,-7.836 c 1.044,0.636 1.992,1.416 2.856,2.352 l 0.624,-0.744 c -0.864,-0.852 -1.608,-1.44 -2.892,-2.256 z m 0.084,7.8 c 0.3,-0.096 0.396,-0.12 0.72,-0.192 2.004,-0.456 3.24,-0.948 4.476,-1.788 1.584,-1.092 2.7,-2.496 3.66,-4.584 -0.336,-0.228 -0.456,-0.336 -0.732,-0.708 -0.972,2.544 -2.58,4.308 -4.896,5.34 -1.116,0.516 -2.556,0.888 -3.492,0.924 z" /><path
+               id="path484"
+               style=""
+               d="m 146.58,-8.076 c -1.2,0 -2.124,-0.048 -2.544,-0.132 l -0.012,0.828 c 0.132,-0.012 0.18,-0.012 0.264,-0.012 0.048,0 0.108,0 0.18,0 0.456,0.012 1.488,0.036 1.776,0.036 0.072,0 0.18,-0.012 0.228,-0.024 -0.072,0.12 -0.072,0.12 -0.108,0.18 -0.852,1.524 -1.86,2.808 -2.688,3.432 l 0.672,0.672 c 0.192,-0.324 0.456,-0.6 0.924,-0.996 0.972,-0.828 1.908,-1.272 2.676,-1.272 0.564,0 0.852,0.288 0.948,0.948 -0.864,0.384 -1.344,0.636 -1.788,0.972 -0.84,0.612 -1.224,1.224 -1.224,1.908 0,0.588 0.3,1.104 0.792,1.38 0.564,0.3 1.308,0.444 2.4,0.444 0.936,0 1.968,-0.084 2.916,-0.24 0.24,-0.036 0.3,-0.048 0.48,-0.06 l -0.108,-0.924 c -0.708,0.276 -2.004,0.468 -3.264,0.468 -1.644,0 -2.376,-0.348 -2.376,-1.14 0,-0.42 0.228,-0.792 0.732,-1.188 0.348,-0.264 0.732,-0.492 1.524,-0.864 0.012,0.144 0.012,0.216 0.012,0.36 0,0.72 -0.036,1.464 -0.072,1.728 l 0.816,-0.012 c -0.024,-0.168 -0.024,-0.252 -0.024,-0.432 0,-0.12 0,-0.3 0.012,-0.54 0.012,-0.288 0.012,-0.516 0.012,-0.66 0,-0.252 0,-0.456 -0.024,-0.732 1.5,-0.6 2.58,-0.948 3.204,-1.056 l -0.384,-0.84 c -0.192,0.132 -0.228,0.144 -0.816,0.348 -0.552,0.204 -1.008,0.372 -2.088,0.792 -0.156,-0.876 -0.708,-1.332 -1.584,-1.332 -0.624,0 -1.26,0.204 -1.812,0.588 -0.12,0.084 -0.12,0.084 -0.552,0.42 -0.012,-0.012 -0.024,-0.012 -0.024,-0.024 0.624,-0.576 1.104,-1.248 1.656,-2.316 1.404,-0.036 2.712,-0.144 3.96,-0.312 0.216,-0.036 0.288,-0.048 0.48,-0.06 l -0.072,-0.816 c -0.66,0.216 -1.8,0.36 -3.78,0.456 -0.12,0 -0.144,0 -0.252,0.012 0.06,-0.108 0.216,-0.432 0.372,-0.816 0.204,-0.492 0.204,-0.492 0.312,-0.648 l -0.96,-0.168 c -0.036,0.384 -0.18,0.804 -0.576,1.644 z" /><path
+               id="path486"
+               style=""
+               d="m 162.144,-4.476 v -1.272 h 1.596 c 0.468,0 0.984,0.024 1.26,0.048 -0.036,-0.312 -0.048,-0.576 -0.048,-1.068 v -1.548 c 0,-0.492 0,-0.72 0.048,-1.092 -0.336,0.048 -0.66,0.06 -1.32,0.06 h -3.54 c -0.648,0 -0.984,-0.012 -1.32,-0.06 0.036,0.348 0.048,0.612 0.048,1.068 v 1.56 c 0,0.444 -0.024,0.756 -0.048,1.08 0.384,-0.036 0.672,-0.048 1.272,-0.048 h 1.332 v 1.272 h -2.328 c -0.48,0 -0.84,-0.024 -1.188,-0.072 v 0.816 c 0.336,-0.048 0.732,-0.072 1.188,-0.072 h 2.076 c -0.6,0.828 -0.792,1.056 -1.38,1.584 -0.756,0.672 -1.392,1.104 -2.352,1.572 0.228,0.204 0.396,0.408 0.552,0.672 0.66,-0.372 1.068,-0.66 1.656,-1.164 0.816,-0.684 1.26,-1.188 1.824,-2.088 -0.036,0.336 -0.048,0.732 -0.048,1.296 V -0.3 c 0,0.432 -0.024,0.804 -0.072,1.176 h 0.864 c -0.06,-0.36 -0.072,-0.732 -0.072,-1.176 v -1.644 c 0,-0.54 -0.024,-0.912 -0.06,-1.284 0.576,0.852 0.936,1.272 1.608,1.848 0.612,0.54 1.176,0.936 1.908,1.38 0.18,-0.312 0.312,-0.504 0.54,-0.744 -0.84,-0.372 -1.476,-0.768 -2.172,-1.344 -0.66,-0.528 -0.888,-0.768 -1.62,-1.716 h 2.256 c 0.348,0 0.756,0.024 1.164,0.072 v -0.816 c -0.336,0.048 -0.732,0.072 -1.176,0.072 z m -2.532,-4.188 h 4.584 v 2.232 h -4.584 z m -3.192,8.1 c 0,0.612 -0.024,0.984 -0.072,1.44 h 0.864 c -0.048,-0.432 -0.06,-0.852 -0.06,-1.404 v -6.384 c 0.444,-0.864 0.768,-1.644 0.96,-2.244 0.096,-0.336 0.144,-0.48 0.216,-0.648 l -0.816,-0.264 c -0.06,0.42 -0.24,1.044 -0.48,1.656 -0.54,1.416 -1.272,2.532 -2.328,3.576 0.24,0.276 0.24,0.276 0.492,0.684 0.624,-0.672 0.912,-1.056 1.26,-1.692 -0.024,0.528 -0.036,0.972 -0.036,1.44 z" /><path
+               id="path488"
+               style=""
+               d="m 170.556,-7.752 c -0.408,0.756 -0.804,1.344 -1.356,1.956 -0.732,0.828 -1.488,1.476 -2.364,2.04 0.288,0.24 0.384,0.348 0.528,0.612 0.972,-0.732 1.512,-1.236 2.196,-2.016 v 4.608 c 0,0.516 -0.024,0.948 -0.072,1.368 h 0.888 c -0.048,-0.384 -0.06,-0.768 -0.06,-1.368 v -1.284 h 5.064 v 1.464 c 0,0.3 -0.084,0.36 -0.552,0.36 -0.516,0 -0.924,-0.024 -1.524,-0.12 0.108,0.288 0.144,0.444 0.18,0.768 0.588,0.036 0.936,0.048 1.32,0.048 0.588,0 0.828,-0.036 1.008,-0.156 0.216,-0.144 0.324,-0.396 0.324,-0.768 v -4.812 c 0,-0.624 0.012,-1.044 0.048,-1.404 -0.36,0.048 -0.672,0.06 -1.284,0.06 h -4.38 c 0.288,-0.396 0.576,-0.876 0.816,-1.356 h 5.124 c 0.504,0 0.948,0.024 1.308,0.072 v -0.864 c -0.384,0.048 -0.756,0.072 -1.308,0.072 h -4.788 c 0.132,-0.324 0.228,-0.576 0.3,-0.768 0.168,-0.492 0.18,-0.528 0.24,-0.66 l -0.876,-0.108 c -0.072,0.516 -0.204,0.996 -0.444,1.536 h -2.412 c -0.576,0 -0.948,-0.024 -1.332,-0.072 v 0.864 c 0.396,-0.048 0.78,-0.072 1.332,-0.072 z m -0.24,3.96 h 5.064 v 1.308 h -5.064 z m 0,-0.648 v -1.272 h 5.064 v 1.272 z" /></g></g><path
+           id="path36"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 343.6873,378.7258 h 57.63 V 332.488 h -57.63 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g38"><path
+             id="path40"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 332.6873,125.2742 h 57.63 v 46.2378 h -57.63 z" /></g><g
+           transform="matrix(1,0,0,-1,372.5023,355.6069)"
+           id="g42"><g
+             id="text46"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-23.76,1.999994)"
+             aria-label="ブロック"><path
+               id="path491"
+               style=""
+               d="m 9.792,-7.872 0.444,-0.264 c -0.24,-0.54 -0.684,-1.188 -1.296,-1.92 l -0.6,0.312 c 0.432,0.492 0.636,0.78 1.128,1.632 C 9.168,-8.1 9.012,-8.1 8.76,-8.1 H 2.964 C 2.316,-8.1 2.04,-8.112 1.608,-8.172 v 0.96 C 1.968,-7.26 2.256,-7.284 2.952,-7.284 H 9.06 c -0.42,1.752 -1.116,3.156 -2.1,4.272 -1.08,1.224 -2.784,2.28 -4.392,2.724 0.288,0.288 0.42,0.456 0.588,0.828 1.512,-0.564 2.64,-1.236 3.768,-2.256 1.404,-1.26 2.292,-2.76 2.94,-4.98 0.156,-0.588 0.18,-0.636 0.252,-0.744 z m 0.108,-2.28 c 0.48,0.564 0.984,1.32 1.236,1.884 l 0.612,-0.36 c -0.42,-0.756 -0.72,-1.2 -1.26,-1.848 z" /><path
+               id="path493"
+               style=""
+               d="m 20.736,-0.984 v 0.852 h 0.912 c -0.024,-0.252 -0.036,-0.564 -0.036,-0.924 v -6.492 c 0,-0.492 0,-0.648 0.036,-0.936 -0.276,0.036 -0.42,0.036 -0.936,0.036 h -6.396 c -0.468,0 -0.696,-0.012 -0.936,-0.036 0.036,0.288 0.048,0.444 0.048,0.936 v 6.516 c 0,0.396 -0.012,0.636 -0.048,0.9 h 0.924 v -0.852 z m 0,-0.78 h -6.432 v -5.892 h 6.432 z" /><path
+               id="path495"
+               style=""
+               d="m 25.764,-6.336 c 0.504,0.828 0.84,1.632 1.128,2.688 l 0.816,-0.276 C 27.264,-5.196 27,-5.76 26.52,-6.588 Z m 2.472,-0.504 c 0.516,0.9 0.888,1.776 1.104,2.628 l 0.792,-0.276 c -0.312,-0.96 -0.528,-1.44 -1.164,-2.58 z M 32.4,-6.852 c 0,0.036 0,0.036 0,0.072 v 0.048 c 0,0.144 -0.048,0.42 -0.132,0.816 -0.216,0.924 -0.564,1.824 -1.02,2.58 -0.828,1.38 -1.956,2.304 -3.804,3.132 0.276,0.252 0.372,0.372 0.552,0.672 1.86,-0.9 3.12,-2.004 3.972,-3.468 0.432,-0.744 0.864,-1.848 1.056,-2.688 0.192,-0.78 0.192,-0.78 0.264,-0.972 z" /><path
+               id="path497"
+               style=""
+               d="m 40.62,-9.78 c -0.06,0.42 -0.3,0.96 -0.756,1.752 -0.828,1.464 -1.74,2.46 -3.012,3.288 0.348,0.216 0.468,0.324 0.672,0.624 1.176,-0.888 2.136,-1.944 2.868,-3.12 l 4.044,-0.072 c -0.42,1.5 -1.14,2.904 -2.064,4.02 -1.152,1.38 -2.424,2.292 -4.236,3.036 0.312,0.24 0.408,0.36 0.6,0.708 1.752,-0.792 3.072,-1.74 4.176,-3 1.02,-1.188 1.896,-2.82 2.4,-4.512 0.132,-0.432 0.132,-0.444 0.24,-0.588 l -0.516,-0.504 c -0.168,0.072 -0.204,0.084 -0.624,0.084 -3.468,0.06 -3.468,0.06 -3.624,0.096 0.132,-0.216 0.24,-0.42 0.552,-1.068 0.156,-0.336 0.156,-0.336 0.264,-0.492 z" /></g></g><path
+           id="path48"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 411.8828,378.7258 h 57.63 V 332.488 h -57.63 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g50"><path
+             id="path52"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 400.8828,125.2742 h 57.63 v 46.2378 h -57.63 z" /></g><g
+           transform="matrix(1,0,0,-1,440.6978,355.6069)"
+           id="g54"><g
+             id="text58"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-23.76,1.999994)"
+             aria-label="ブロック"><path
+               id="path500"
+               style=""
+               d="m 9.792,-7.872 0.444,-0.264 c -0.24,-0.54 -0.684,-1.188 -1.296,-1.92 l -0.6,0.312 c 0.432,0.492 0.636,0.78 1.128,1.632 C 9.168,-8.1 9.012,-8.1 8.76,-8.1 H 2.964 C 2.316,-8.1 2.04,-8.112 1.608,-8.172 v 0.96 C 1.968,-7.26 2.256,-7.284 2.952,-7.284 H 9.06 c -0.42,1.752 -1.116,3.156 -2.1,4.272 -1.08,1.224 -2.784,2.28 -4.392,2.724 0.288,0.288 0.42,0.456 0.588,0.828 1.512,-0.564 2.64,-1.236 3.768,-2.256 1.404,-1.26 2.292,-2.76 2.94,-4.98 0.156,-0.588 0.18,-0.636 0.252,-0.744 z m 0.108,-2.28 c 0.48,0.564 0.984,1.32 1.236,1.884 l 0.612,-0.36 c -0.42,-0.756 -0.72,-1.2 -1.26,-1.848 z" /><path
+               id="path502"
+               style=""
+               d="m 20.736,-0.984 v 0.852 h 0.912 c -0.024,-0.252 -0.036,-0.564 -0.036,-0.924 v -6.492 c 0,-0.492 0,-0.648 0.036,-0.936 -0.276,0.036 -0.42,0.036 -0.936,0.036 h -6.396 c -0.468,0 -0.696,-0.012 -0.936,-0.036 0.036,0.288 0.048,0.444 0.048,0.936 v 6.516 c 0,0.396 -0.012,0.636 -0.048,0.9 h 0.924 v -0.852 z m 0,-0.78 h -6.432 v -5.892 h 6.432 z" /><path
+               id="path504"
+               style=""
+               d="m 25.764,-6.336 c 0.504,0.828 0.84,1.632 1.128,2.688 l 0.816,-0.276 C 27.264,-5.196 27,-5.76 26.52,-6.588 Z m 2.472,-0.504 c 0.516,0.9 0.888,1.776 1.104,2.628 l 0.792,-0.276 c -0.312,-0.96 -0.528,-1.44 -1.164,-2.58 z M 32.4,-6.852 c 0,0.036 0,0.036 0,0.072 v 0.048 c 0,0.144 -0.048,0.42 -0.132,0.816 -0.216,0.924 -0.564,1.824 -1.02,2.58 -0.828,1.38 -1.956,2.304 -3.804,3.132 0.276,0.252 0.372,0.372 0.552,0.672 1.86,-0.9 3.12,-2.004 3.972,-3.468 0.432,-0.744 0.864,-1.848 1.056,-2.688 0.192,-0.78 0.192,-0.78 0.264,-0.972 z" /><path
+               id="path506"
+               style=""
+               d="m 40.62,-9.78 c -0.06,0.42 -0.3,0.96 -0.756,1.752 -0.828,1.464 -1.74,2.46 -3.012,3.288 0.348,0.216 0.468,0.324 0.672,0.624 1.176,-0.888 2.136,-1.944 2.868,-3.12 l 4.044,-0.072 c -0.42,1.5 -1.14,2.904 -2.064,4.02 -1.152,1.38 -2.424,2.292 -4.236,3.036 0.312,0.24 0.408,0.36 0.6,0.708 1.752,-0.792 3.072,-1.74 4.176,-3 1.02,-1.188 1.896,-2.82 2.4,-4.512 0.132,-0.432 0.132,-0.444 0.24,-0.588 l -0.516,-0.504 c -0.168,0.072 -0.204,0.084 -0.624,0.084 -3.468,0.06 -3.468,0.06 -3.624,0.096 0.132,-0.216 0.24,-0.42 0.552,-1.068 0.156,-0.336 0.156,-0.336 0.264,-0.492 z" /></g></g><path
+           id="path60"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 480.0783,410.7284 h 57.63 v -46.2378 h -57.63 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g62"><path
+             id="path64"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 469.0783,93.27165 h 57.63 v 46.23775 h -57.63 z" /></g><g
+           transform="matrix(1,0,0,-1,508.8933,387.6095)"
+           id="g66"><g
+             id="text70"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-23.76,1.999994)"
+             aria-label="ブロック"><path
+               id="path509"
+               style=""
+               d="m 9.792,-7.872 0.444,-0.264 c -0.24,-0.54 -0.684,-1.188 -1.296,-1.92 l -0.6,0.312 c 0.432,0.492 0.636,0.78 1.128,1.632 C 9.168,-8.1 9.012,-8.1 8.76,-8.1 H 2.964 C 2.316,-8.1 2.04,-8.112 1.608,-8.172 v 0.96 C 1.968,-7.26 2.256,-7.284 2.952,-7.284 H 9.06 c -0.42,1.752 -1.116,3.156 -2.1,4.272 -1.08,1.224 -2.784,2.28 -4.392,2.724 0.288,0.288 0.42,0.456 0.588,0.828 1.512,-0.564 2.64,-1.236 3.768,-2.256 1.404,-1.26 2.292,-2.76 2.94,-4.98 0.156,-0.588 0.18,-0.636 0.252,-0.744 z m 0.108,-2.28 c 0.48,0.564 0.984,1.32 1.236,1.884 l 0.612,-0.36 c -0.42,-0.756 -0.72,-1.2 -1.26,-1.848 z" /><path
+               id="path511"
+               style=""
+               d="m 20.736,-0.984 v 0.852 h 0.912 c -0.024,-0.252 -0.036,-0.564 -0.036,-0.924 v -6.492 c 0,-0.492 0,-0.648 0.036,-0.936 -0.276,0.036 -0.42,0.036 -0.936,0.036 h -6.396 c -0.468,0 -0.696,-0.012 -0.936,-0.036 0.036,0.288 0.048,0.444 0.048,0.936 v 6.516 c 0,0.396 -0.012,0.636 -0.048,0.9 h 0.924 v -0.852 z m 0,-0.78 h -6.432 v -5.892 h 6.432 z" /><path
+               id="path513"
+               style=""
+               d="m 25.764,-6.336 c 0.504,0.828 0.84,1.632 1.128,2.688 l 0.816,-0.276 C 27.264,-5.196 27,-5.76 26.52,-6.588 Z m 2.472,-0.504 c 0.516,0.9 0.888,1.776 1.104,2.628 l 0.792,-0.276 c -0.312,-0.96 -0.528,-1.44 -1.164,-2.58 z M 32.4,-6.852 c 0,0.036 0,0.036 0,0.072 v 0.048 c 0,0.144 -0.048,0.42 -0.132,0.816 -0.216,0.924 -0.564,1.824 -1.02,2.58 -0.828,1.38 -1.956,2.304 -3.804,3.132 0.276,0.252 0.372,0.372 0.552,0.672 1.86,-0.9 3.12,-2.004 3.972,-3.468 0.432,-0.744 0.864,-1.848 1.056,-2.688 0.192,-0.78 0.192,-0.78 0.264,-0.972 z" /><path
+               id="path515"
+               style=""
+               d="m 40.62,-9.78 c -0.06,0.42 -0.3,0.96 -0.756,1.752 -0.828,1.464 -1.74,2.46 -3.012,3.288 0.348,0.216 0.468,0.324 0.672,0.624 1.176,-0.888 2.136,-1.944 2.868,-3.12 l 4.044,-0.072 c -0.42,1.5 -1.14,2.904 -2.064,4.02 -1.152,1.38 -2.424,2.292 -4.236,3.036 0.312,0.24 0.408,0.36 0.6,0.708 1.752,-0.792 3.072,-1.74 4.176,-3 1.02,-1.188 1.896,-2.82 2.4,-4.512 0.132,-0.432 0.132,-0.444 0.24,-0.588 l -0.516,-0.504 c -0.168,0.072 -0.204,0.084 -0.624,0.084 -3.468,0.06 -3.468,0.06 -3.624,0.096 0.132,-0.216 0.24,-0.42 0.552,-1.068 0.156,-0.336 0.156,-0.336 0.264,-0.492 z" /></g></g><path
+           id="path72"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 480.0783,341.7356 h 57.63 v -46.2378 h -57.63 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g74"><path
+             id="path76"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 469.0783,162.2644 h 57.63 v 46.2378 h -57.63 z" /></g><g
+           transform="matrix(1,0,0,-1,508.8933,318.6167)"
+           id="g78"><g
+             id="text82"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-23.76,1.999994)"
+             aria-label="ブロック"><path
+               id="path518"
+               style=""
+               d="m 9.792,-7.872 0.444,-0.264 c -0.24,-0.54 -0.684,-1.188 -1.296,-1.92 l -0.6,0.312 c 0.432,0.492 0.636,0.78 1.128,1.632 C 9.168,-8.1 9.012,-8.1 8.76,-8.1 H 2.964 C 2.316,-8.1 2.04,-8.112 1.608,-8.172 v 0.96 C 1.968,-7.26 2.256,-7.284 2.952,-7.284 H 9.06 c -0.42,1.752 -1.116,3.156 -2.1,4.272 -1.08,1.224 -2.784,2.28 -4.392,2.724 0.288,0.288 0.42,0.456 0.588,0.828 1.512,-0.564 2.64,-1.236 3.768,-2.256 1.404,-1.26 2.292,-2.76 2.94,-4.98 0.156,-0.588 0.18,-0.636 0.252,-0.744 z m 0.108,-2.28 c 0.48,0.564 0.984,1.32 1.236,1.884 l 0.612,-0.36 c -0.42,-0.756 -0.72,-1.2 -1.26,-1.848 z" /><path
+               id="path520"
+               style=""
+               d="m 20.736,-0.984 v 0.852 h 0.912 c -0.024,-0.252 -0.036,-0.564 -0.036,-0.924 v -6.492 c 0,-0.492 0,-0.648 0.036,-0.936 -0.276,0.036 -0.42,0.036 -0.936,0.036 h -6.396 c -0.468,0 -0.696,-0.012 -0.936,-0.036 0.036,0.288 0.048,0.444 0.048,0.936 v 6.516 c 0,0.396 -0.012,0.636 -0.048,0.9 h 0.924 v -0.852 z m 0,-0.78 h -6.432 v -5.892 h 6.432 z" /><path
+               id="path522"
+               style=""
+               d="m 25.764,-6.336 c 0.504,0.828 0.84,1.632 1.128,2.688 l 0.816,-0.276 C 27.264,-5.196 27,-5.76 26.52,-6.588 Z m 2.472,-0.504 c 0.516,0.9 0.888,1.776 1.104,2.628 l 0.792,-0.276 c -0.312,-0.96 -0.528,-1.44 -1.164,-2.58 z M 32.4,-6.852 c 0,0.036 0,0.036 0,0.072 v 0.048 c 0,0.144 -0.048,0.42 -0.132,0.816 -0.216,0.924 -0.564,1.824 -1.02,2.58 -0.828,1.38 -1.956,2.304 -3.804,3.132 0.276,0.252 0.372,0.372 0.552,0.672 1.86,-0.9 3.12,-2.004 3.972,-3.468 0.432,-0.744 0.864,-1.848 1.056,-2.688 0.192,-0.78 0.192,-0.78 0.264,-0.972 z" /><path
+               id="path524"
+               style=""
+               d="m 40.62,-9.78 c -0.06,0.42 -0.3,0.96 -0.756,1.752 -0.828,1.464 -1.74,2.46 -3.012,3.288 0.348,0.216 0.468,0.324 0.672,0.624 1.176,-0.888 2.136,-1.944 2.868,-3.12 l 4.044,-0.072 c -0.42,1.5 -1.14,2.904 -2.064,4.02 -1.152,1.38 -2.424,2.292 -4.236,3.036 0.312,0.24 0.408,0.36 0.6,0.708 1.752,-0.792 3.072,-1.74 4.176,-3 1.02,-1.188 1.896,-2.82 2.4,-4.512 0.132,-0.432 0.132,-0.444 0.24,-0.588 l -0.516,-0.504 c -0.168,0.072 -0.204,0.084 -0.624,0.084 -3.468,0.06 -3.468,0.06 -3.624,0.096 0.132,-0.216 0.24,-0.42 0.552,-1.068 0.156,-0.336 0.156,-0.336 0.264,-0.492 z" /></g></g><path
+           id="path84"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 548.2738,341.7356 h 57.63 v -46.2378 h -57.63 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g86"><path
+             id="path88"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 537.2738,162.2644 h 57.63 v 46.2378 h -57.63 z" /></g><g
+           transform="matrix(1,0,0,-1,577.0888,318.6167)"
+           id="g90"><g
+             id="text94"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-23.76,1.999994)"
+             aria-label="ブロック"><path
+               id="path527"
+               style=""
+               d="m 9.792,-7.872 0.444,-0.264 c -0.24,-0.54 -0.684,-1.188 -1.296,-1.92 l -0.6,0.312 c 0.432,0.492 0.636,0.78 1.128,1.632 C 9.168,-8.1 9.012,-8.1 8.76,-8.1 H 2.964 C 2.316,-8.1 2.04,-8.112 1.608,-8.172 v 0.96 C 1.968,-7.26 2.256,-7.284 2.952,-7.284 H 9.06 c -0.42,1.752 -1.116,3.156 -2.1,4.272 -1.08,1.224 -2.784,2.28 -4.392,2.724 0.288,0.288 0.42,0.456 0.588,0.828 1.512,-0.564 2.64,-1.236 3.768,-2.256 1.404,-1.26 2.292,-2.76 2.94,-4.98 0.156,-0.588 0.18,-0.636 0.252,-0.744 z m 0.108,-2.28 c 0.48,0.564 0.984,1.32 1.236,1.884 l 0.612,-0.36 c -0.42,-0.756 -0.72,-1.2 -1.26,-1.848 z" /><path
+               id="path529"
+               style=""
+               d="m 20.736,-0.984 v 0.852 h 0.912 c -0.024,-0.252 -0.036,-0.564 -0.036,-0.924 v -6.492 c 0,-0.492 0,-0.648 0.036,-0.936 -0.276,0.036 -0.42,0.036 -0.936,0.036 h -6.396 c -0.468,0 -0.696,-0.012 -0.936,-0.036 0.036,0.288 0.048,0.444 0.048,0.936 v 6.516 c 0,0.396 -0.012,0.636 -0.048,0.9 h 0.924 v -0.852 z m 0,-0.78 h -6.432 v -5.892 h 6.432 z" /><path
+               id="path531"
+               style=""
+               d="m 25.764,-6.336 c 0.504,0.828 0.84,1.632 1.128,2.688 l 0.816,-0.276 C 27.264,-5.196 27,-5.76 26.52,-6.588 Z m 2.472,-0.504 c 0.516,0.9 0.888,1.776 1.104,2.628 l 0.792,-0.276 c -0.312,-0.96 -0.528,-1.44 -1.164,-2.58 z M 32.4,-6.852 c 0,0.036 0,0.036 0,0.072 v 0.048 c 0,0.144 -0.048,0.42 -0.132,0.816 -0.216,0.924 -0.564,1.824 -1.02,2.58 -0.828,1.38 -1.956,2.304 -3.804,3.132 0.276,0.252 0.372,0.372 0.552,0.672 1.86,-0.9 3.12,-2.004 3.972,-3.468 0.432,-0.744 0.864,-1.848 1.056,-2.688 0.192,-0.78 0.192,-0.78 0.264,-0.972 z" /><path
+               id="path533"
+               style=""
+               d="m 40.62,-9.78 c -0.06,0.42 -0.3,0.96 -0.756,1.752 -0.828,1.464 -1.74,2.46 -3.012,3.288 0.348,0.216 0.468,0.324 0.672,0.624 1.176,-0.888 2.136,-1.944 2.868,-3.12 l 4.044,-0.072 c -0.42,1.5 -1.14,2.904 -2.064,4.02 -1.152,1.38 -2.424,2.292 -4.236,3.036 0.312,0.24 0.408,0.36 0.6,0.708 1.752,-0.792 3.072,-1.74 4.176,-3 1.02,-1.188 1.896,-2.82 2.4,-4.512 0.132,-0.432 0.132,-0.444 0.24,-0.588 l -0.516,-0.504 c -0.168,0.072 -0.204,0.084 -0.624,0.084 -3.468,0.06 -3.468,0.06 -3.624,0.096 0.132,-0.216 0.24,-0.42 0.552,-1.068 0.156,-0.336 0.156,-0.336 0.264,-0.492 z" /></g></g><path
+           id="path96"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 616.4693,341.7356 h 57.6299 v -46.2378 h -57.6299 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g98"><path
+             id="path100"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 605.4693,162.2644 h 57.6299 v 46.2378 h -57.6299 z" /></g><g
+           transform="matrix(1,0,0,-1,645.2842,318.6167)"
+           id="g102"><g
+             id="text106"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-23.76,1.999994)"
+             aria-label="ブロック"><path
+               id="path536"
+               style=""
+               d="m 9.792,-7.872 0.444,-0.264 c -0.24,-0.54 -0.684,-1.188 -1.296,-1.92 l -0.6,0.312 c 0.432,0.492 0.636,0.78 1.128,1.632 C 9.168,-8.1 9.012,-8.1 8.76,-8.1 H 2.964 C 2.316,-8.1 2.04,-8.112 1.608,-8.172 v 0.96 C 1.968,-7.26 2.256,-7.284 2.952,-7.284 H 9.06 c -0.42,1.752 -1.116,3.156 -2.1,4.272 -1.08,1.224 -2.784,2.28 -4.392,2.724 0.288,0.288 0.42,0.456 0.588,0.828 1.512,-0.564 2.64,-1.236 3.768,-2.256 1.404,-1.26 2.292,-2.76 2.94,-4.98 0.156,-0.588 0.18,-0.636 0.252,-0.744 z m 0.108,-2.28 c 0.48,0.564 0.984,1.32 1.236,1.884 l 0.612,-0.36 c -0.42,-0.756 -0.72,-1.2 -1.26,-1.848 z" /><path
+               id="path538"
+               style=""
+               d="m 20.736,-0.984 v 0.852 h 0.912 c -0.024,-0.252 -0.036,-0.564 -0.036,-0.924 v -6.492 c 0,-0.492 0,-0.648 0.036,-0.936 -0.276,0.036 -0.42,0.036 -0.936,0.036 h -6.396 c -0.468,0 -0.696,-0.012 -0.936,-0.036 0.036,0.288 0.048,0.444 0.048,0.936 v 6.516 c 0,0.396 -0.012,0.636 -0.048,0.9 h 0.924 v -0.852 z m 0,-0.78 h -6.432 v -5.892 h 6.432 z" /><path
+               id="path540"
+               style=""
+               d="m 25.764,-6.336 c 0.504,0.828 0.84,1.632 1.128,2.688 l 0.816,-0.276 C 27.264,-5.196 27,-5.76 26.52,-6.588 Z m 2.472,-0.504 c 0.516,0.9 0.888,1.776 1.104,2.628 l 0.792,-0.276 c -0.312,-0.96 -0.528,-1.44 -1.164,-2.58 z M 32.4,-6.852 c 0,0.036 0,0.036 0,0.072 v 0.048 c 0,0.144 -0.048,0.42 -0.132,0.816 -0.216,0.924 -0.564,1.824 -1.02,2.58 -0.828,1.38 -1.956,2.304 -3.804,3.132 0.276,0.252 0.372,0.372 0.552,0.672 1.86,-0.9 3.12,-2.004 3.972,-3.468 0.432,-0.744 0.864,-1.848 1.056,-2.688 0.192,-0.78 0.192,-0.78 0.264,-0.972 z" /><path
+               id="path542"
+               style=""
+               d="m 40.62,-9.78 c -0.06,0.42 -0.3,0.96 -0.756,1.752 -0.828,1.464 -1.74,2.46 -3.012,3.288 0.348,0.216 0.468,0.324 0.672,0.624 1.176,-0.888 2.136,-1.944 2.868,-3.12 l 4.044,-0.072 c -0.42,1.5 -1.14,2.904 -2.064,4.02 -1.152,1.38 -2.424,2.292 -4.236,3.036 0.312,0.24 0.408,0.36 0.6,0.708 1.752,-0.792 3.072,-1.74 4.176,-3 1.02,-1.188 1.896,-2.82 2.4,-4.512 0.132,-0.432 0.132,-0.444 0.24,-0.588 l -0.516,-0.504 c -0.168,0.072 -0.204,0.084 -0.624,0.084 -3.468,0.06 -3.468,0.06 -3.624,0.096 0.132,-0.216 0.24,-0.42 0.552,-1.068 0.156,-0.336 0.156,-0.336 0.264,-0.492 z" /></g></g><path
+           id="path108"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 684.6647,300.1216 h 57.63 v -46.2378 h -57.63 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g110"><path
+             id="path112"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 673.6647,203.8784 h 57.63 v 46.2378 h -57.63 z" /></g><g
+           transform="matrix(1,0,0,-1,713.4797,277.0027)"
+           id="g114"><g
+             id="text118"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-23.76,1.999994)"
+             aria-label="ブロック"><path
+               id="path545"
+               style=""
+               d="m 9.792,-7.872 0.444,-0.264 c -0.24,-0.54 -0.684,-1.188 -1.296,-1.92 l -0.6,0.312 c 0.432,0.492 0.636,0.78 1.128,1.632 C 9.168,-8.1 9.012,-8.1 8.76,-8.1 H 2.964 C 2.316,-8.1 2.04,-8.112 1.608,-8.172 v 0.96 C 1.968,-7.26 2.256,-7.284 2.952,-7.284 H 9.06 c -0.42,1.752 -1.116,3.156 -2.1,4.272 -1.08,1.224 -2.784,2.28 -4.392,2.724 0.288,0.288 0.42,0.456 0.588,0.828 1.512,-0.564 2.64,-1.236 3.768,-2.256 1.404,-1.26 2.292,-2.76 2.94,-4.98 0.156,-0.588 0.18,-0.636 0.252,-0.744 z m 0.108,-2.28 c 0.48,0.564 0.984,1.32 1.236,1.884 l 0.612,-0.36 c -0.42,-0.756 -0.72,-1.2 -1.26,-1.848 z" /><path
+               id="path547"
+               style=""
+               d="m 20.736,-0.984 v 0.852 h 0.912 c -0.024,-0.252 -0.036,-0.564 -0.036,-0.924 v -6.492 c 0,-0.492 0,-0.648 0.036,-0.936 -0.276,0.036 -0.42,0.036 -0.936,0.036 h -6.396 c -0.468,0 -0.696,-0.012 -0.936,-0.036 0.036,0.288 0.048,0.444 0.048,0.936 v 6.516 c 0,0.396 -0.012,0.636 -0.048,0.9 h 0.924 v -0.852 z m 0,-0.78 h -6.432 v -5.892 h 6.432 z" /><path
+               id="path549"
+               style=""
+               d="m 25.764,-6.336 c 0.504,0.828 0.84,1.632 1.128,2.688 l 0.816,-0.276 C 27.264,-5.196 27,-5.76 26.52,-6.588 Z m 2.472,-0.504 c 0.516,0.9 0.888,1.776 1.104,2.628 l 0.792,-0.276 c -0.312,-0.96 -0.528,-1.44 -1.164,-2.58 z M 32.4,-6.852 c 0,0.036 0,0.036 0,0.072 v 0.048 c 0,0.144 -0.048,0.42 -0.132,0.816 -0.216,0.924 -0.564,1.824 -1.02,2.58 -0.828,1.38 -1.956,2.304 -3.804,3.132 0.276,0.252 0.372,0.372 0.552,0.672 1.86,-0.9 3.12,-2.004 3.972,-3.468 0.432,-0.744 0.864,-1.848 1.056,-2.688 0.192,-0.78 0.192,-0.78 0.264,-0.972 z" /><path
+               id="path551"
+               style=""
+               d="m 40.62,-9.78 c -0.06,0.42 -0.3,0.96 -0.756,1.752 -0.828,1.464 -1.74,2.46 -3.012,3.288 0.348,0.216 0.468,0.324 0.672,0.624 1.176,-0.888 2.136,-1.944 2.868,-3.12 l 4.044,-0.072 c -0.42,1.5 -1.14,2.904 -2.064,4.02 -1.152,1.38 -2.424,2.292 -4.236,3.036 0.312,0.24 0.408,0.36 0.6,0.708 1.752,-0.792 3.072,-1.74 4.176,-3 1.02,-1.188 1.896,-2.82 2.4,-4.512 0.132,-0.432 0.132,-0.444 0.24,-0.588 l -0.516,-0.504 c -0.168,0.072 -0.204,0.084 -0.624,0.084 -3.468,0.06 -3.468,0.06 -3.624,0.096 0.132,-0.216 0.24,-0.42 0.552,-1.068 0.156,-0.336 0.156,-0.336 0.264,-0.492 z" /></g></g><path
+           id="path120"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 684.6647,378.7258 h 57.63 V 332.488 h -57.63 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g122"><path
+             id="path124"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 673.6647,125.2742 h 57.63 v 46.2378 h -57.63 z" /></g><g
+           transform="matrix(1,0,0,-1,713.4797,355.6069)"
+           id="g126"><g
+             id="text130"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-23.76,1.999994)"
+             aria-label="ブロック"><path
+               id="path554"
+               style=""
+               d="m 9.792,-7.872 0.444,-0.264 c -0.24,-0.54 -0.684,-1.188 -1.296,-1.92 l -0.6,0.312 c 0.432,0.492 0.636,0.78 1.128,1.632 C 9.168,-8.1 9.012,-8.1 8.76,-8.1 H 2.964 C 2.316,-8.1 2.04,-8.112 1.608,-8.172 v 0.96 C 1.968,-7.26 2.256,-7.284 2.952,-7.284 H 9.06 c -0.42,1.752 -1.116,3.156 -2.1,4.272 -1.08,1.224 -2.784,2.28 -4.392,2.724 0.288,0.288 0.42,0.456 0.588,0.828 1.512,-0.564 2.64,-1.236 3.768,-2.256 1.404,-1.26 2.292,-2.76 2.94,-4.98 0.156,-0.588 0.18,-0.636 0.252,-0.744 z m 0.108,-2.28 c 0.48,0.564 0.984,1.32 1.236,1.884 l 0.612,-0.36 c -0.42,-0.756 -0.72,-1.2 -1.26,-1.848 z" /><path
+               id="path556"
+               style=""
+               d="m 20.736,-0.984 v 0.852 h 0.912 c -0.024,-0.252 -0.036,-0.564 -0.036,-0.924 v -6.492 c 0,-0.492 0,-0.648 0.036,-0.936 -0.276,0.036 -0.42,0.036 -0.936,0.036 h -6.396 c -0.468,0 -0.696,-0.012 -0.936,-0.036 0.036,0.288 0.048,0.444 0.048,0.936 v 6.516 c 0,0.396 -0.012,0.636 -0.048,0.9 h 0.924 v -0.852 z m 0,-0.78 h -6.432 v -5.892 h 6.432 z" /><path
+               id="path558"
+               style=""
+               d="m 25.764,-6.336 c 0.504,0.828 0.84,1.632 1.128,2.688 l 0.816,-0.276 C 27.264,-5.196 27,-5.76 26.52,-6.588 Z m 2.472,-0.504 c 0.516,0.9 0.888,1.776 1.104,2.628 l 0.792,-0.276 c -0.312,-0.96 -0.528,-1.44 -1.164,-2.58 z M 32.4,-6.852 c 0,0.036 0,0.036 0,0.072 v 0.048 c 0,0.144 -0.048,0.42 -0.132,0.816 -0.216,0.924 -0.564,1.824 -1.02,2.58 -0.828,1.38 -1.956,2.304 -3.804,3.132 0.276,0.252 0.372,0.372 0.552,0.672 1.86,-0.9 3.12,-2.004 3.972,-3.468 0.432,-0.744 0.864,-1.848 1.056,-2.688 0.192,-0.78 0.192,-0.78 0.264,-0.972 z" /><path
+               id="path560"
+               style=""
+               d="m 40.62,-9.78 c -0.06,0.42 -0.3,0.96 -0.756,1.752 -0.828,1.464 -1.74,2.46 -3.012,3.288 0.348,0.216 0.468,0.324 0.672,0.624 1.176,-0.888 2.136,-1.944 2.868,-3.12 l 4.044,-0.072 c -0.42,1.5 -1.14,2.904 -2.064,4.02 -1.152,1.38 -2.424,2.292 -4.236,3.036 0.312,0.24 0.408,0.36 0.6,0.708 1.752,-0.792 3.072,-1.74 4.176,-3 1.02,-1.188 1.896,-2.82 2.4,-4.512 0.132,-0.432 0.132,-0.444 0.24,-0.588 l -0.516,-0.504 c -0.168,0.072 -0.204,0.084 -0.624,0.084 -3.468,0.06 -3.468,0.06 -3.624,0.096 0.132,-0.216 0.24,-0.42 0.552,-1.068 0.156,-0.336 0.156,-0.336 0.264,-0.492 z" /></g></g><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g132"><path
+             id="path134"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 390.3173,148.3931 h 10.5655" /></g><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g136"><path
+             id="path138"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 458.5128,134.8709 10.5655,-4.9582" /></g><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g140"><path
+             id="path142"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 458.5128,164.0227 10.5655,5.7309" /></g><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g144"><path
+             id="path146"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 526.7083,185.3833 h 10.5655" /></g><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g148"><path
+             id="path150"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 594.9038,184.9716 6.5702,-0.0938 3.9953,0.0615" /></g><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g152"><path
+             id="path154"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 663.0992,169.7536 10.5655,-5.7309" /></g><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g156"><path
+             id="path158"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 663.0992,202.9667 10.5655,6.4472" /></g><g
+           transform="matrix(1,0,0,-1,589.0577,388.4721)"
+           id="g160"><g
+             id="text164"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-17.66942,1.999994)"
+             aria-label="・・・"><path
+               id="path563"
+               style=""
+               d="m 6,-5.544 c -0.54,0 -0.984,0.444 -0.984,0.984 0,0.54 0.444,0.984 0.984,0.984 0.54,0 0.984,-0.444 0.984,-0.984 C 6.984,-5.1 6.54,-5.544 6,-5.544 Z" /><path
+               id="path565"
+               style=""
+               d="m 18,-5.544 c -0.54,0 -0.984,0.444 -0.984,0.984 0,0.54 0.444,0.984 0.984,0.984 0.54,0 0.984,-0.444 0.984,-0.984 0,-0.54 -0.444,-0.984 -0.984,-0.984 z" /><path
+               id="path567"
+               style=""
+               d="m 30,-5.544 c -0.54,0 -0.984,0.444 -0.984,0.984 0,0.54 0.444,0.984 0.984,0.984 0.54,0 0.984,-0.444 0.984,-0.984 0,-0.54 -0.444,-0.984 -0.984,-0.984 z" /></g></g><g
+           transform="matrix(1,0,0,-1,630.023,392.2889)"
+           id="g166"><g
+             id="text170"
+             style="font-variant:normal;font-weight:normal;font-size:46px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-13.69256,16.356)"
+             aria-label="×"><path
+               id="path570"
+               style=""
+               d="m 3.266,-3.312 2.208,2.208 8.372,-8.372 8.326,8.372 2.208,-2.208 -8.326,-8.372 8.28,-8.28 -2.208,-2.208 -8.28,8.28 -8.326,-8.28 -2.208,2.208 8.326,8.28 z" /></g></g><g
+           transform="matrix(1,0,0,-1,567.964,355.3351)"
+           id="g172"><g
+             id="text176"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-9.385719,3.832001)"
+             aria-label="fork"><path
+               id="path573"
+               style=""
+               d="M 1.188,-5.304 V 0 h 1.02 v -5.304 h 1.2 v -0.9 h -1.2 v -0.864 q 0,-0.408 0.204,-0.552 0.204,-0.144 0.576,-0.144 0.132,0 0.288,0.024 0.156,0.012 0.288,0.06 V -8.568 Q 3.42,-8.616 3.228,-8.64 3.048,-8.664 2.904,-8.664 q -0.84,0 -1.284,0.396 -0.432,0.384 -0.432,1.14 v 0.924 H 0.144 v 0.9 z" /><path
+               id="path575"
+               style=""
+               d="m 5.064,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 Q 8.628,-1.656 8.364,-1.356 8.1,-1.068 7.74,-0.912 7.392,-0.756 6.996,-0.756 6.6,-0.756 6.24,-0.912 5.892,-1.068 5.628,-1.356 5.364,-1.656 5.208,-2.088 5.064,-2.532 5.064,-3.096 Z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 9.624,-4.968 9.24,-5.4 8.856,-5.844 8.292,-6.096 7.74,-6.348 6.996,-6.348 6.264,-6.348 5.7,-6.096 5.136,-5.844 4.752,-5.4 4.368,-4.968 4.176,-4.368 3.984,-3.78 3.984,-3.096 Z" /><path
+               id="path577"
+               style=""
+               d="M 11.172,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path579"
+               style=""
+               d="M 15.264,-8.568 V 0 h 1.02 V -2.352 L 17.244,-3.24 19.368,0 h 1.296 l -2.64,-3.948 2.46,-2.256 h -1.368 l -2.832,2.712 v -5.076 z" /></g></g><g
+           transform="matrix(1,0,0,-1,528.1033,352.8412)"
+           id="g178"><g
+             id="text182"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-17.66942,1.999994)"
+             aria-label="・・・"><path
+               id="path582"
+               style=""
+               d="m 6,-5.544 c -0.54,0 -0.984,0.444 -0.984,0.984 0,0.54 0.444,0.984 0.984,0.984 0.54,0 0.984,-0.444 0.984,-0.984 C 6.984,-5.1 6.54,-5.544 6,-5.544 Z" /><path
+               id="path584"
+               style=""
+               d="m 18,-5.544 c -0.54,0 -0.984,0.444 -0.984,0.984 0,0.54 0.444,0.984 0.984,0.984 0.54,0 0.984,-0.444 0.984,-0.984 0,-0.54 -0.444,-0.984 -0.984,-0.984 z" /><path
+               id="path586"
+               style=""
+               d="m 30,-5.544 c -0.54,0 -0.984,0.444 -0.984,0.984 0,0.54 0.444,0.984 0.984,0.984 0.54,0 0.984,-0.444 0.984,-0.984 0,-0.54 -0.444,-0.984 -0.984,-0.984 z" /></g></g><g
+           transform="matrix(1,0,0,-1,770.4641,318.3449)"
+           id="g184"><g
+             id="text188"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-9.385719,3.832001)"
+             aria-label="fork"><path
+               id="path589"
+               style=""
+               d="M 1.188,-5.304 V 0 h 1.02 v -5.304 h 1.2 v -0.9 h -1.2 v -0.864 q 0,-0.408 0.204,-0.552 0.204,-0.144 0.576,-0.144 0.132,0 0.288,0.024 0.156,0.012 0.288,0.06 V -8.568 Q 3.42,-8.616 3.228,-8.64 3.048,-8.664 2.904,-8.664 q -0.84,0 -1.284,0.396 -0.432,0.384 -0.432,1.14 v 0.924 H 0.144 v 0.9 z" /><path
+               id="path591"
+               style=""
+               d="m 5.064,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 Q 8.628,-1.656 8.364,-1.356 8.1,-1.068 7.74,-0.912 7.392,-0.756 6.996,-0.756 6.6,-0.756 6.24,-0.912 5.892,-1.068 5.628,-1.356 5.364,-1.656 5.208,-2.088 5.064,-2.532 5.064,-3.096 Z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 9.624,-4.968 9.24,-5.4 8.856,-5.844 8.292,-6.096 7.74,-6.348 6.996,-6.348 6.264,-6.348 5.7,-6.096 5.136,-5.844 4.752,-5.4 4.368,-4.968 4.176,-4.368 3.984,-3.78 3.984,-3.096 Z" /><path
+               id="path593"
+               style=""
+               d="M 11.172,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path595"
+               style=""
+               d="M 15.264,-8.568 V 0 h 1.02 V -2.352 L 17.244,-3.24 19.368,0 h 1.296 l -2.64,-3.948 2.46,-2.256 h -1.368 l -2.832,2.712 v -5.076 z" /></g></g><g
+           transform="matrix(1,0,0,-1,737.9351,316.033)"
+           id="g190"><g
+             id="text194"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-17.66942,1.999994)"
+             aria-label="・・・"><path
+               id="path598"
+               style=""
+               d="m 6,-5.544 c -0.54,0 -0.984,0.444 -0.984,0.984 0,0.54 0.444,0.984 0.984,0.984 0.54,0 0.984,-0.444 0.984,-0.984 C 6.984,-5.1 6.54,-5.544 6,-5.544 Z" /><path
+               id="path600"
+               style=""
+               d="m 18,-5.544 c -0.54,0 -0.984,0.444 -0.984,0.984 0,0.54 0.444,0.984 0.984,0.984 0.54,0 0.984,-0.444 0.984,-0.984 0,-0.54 -0.444,-0.984 -0.984,-0.984 z" /><path
+               id="path602"
+               style=""
+               d="m 30,-5.544 c -0.54,0 -0.984,0.444 -0.984,0.984 0,0.54 0.444,0.984 0.984,0.984 0.54,0 0.984,-0.444 0.984,-0.984 0,-0.54 -0.444,-0.984 -0.984,-0.984 z" /></g></g><path
+           id="path196"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="M 332.7323,129.8268 H 781.2857 V 11.92044 H 332.7323 Z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g198"><path
+             id="path200"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="M 321.7323,374.1732 H 770.2857 V 492.0796 H 321.7323 Z" /></g><g
+           transform="matrix(1,0,0,-1,557.009,70.87361)"
+           id="g202"><g
+             id="text206"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-23.76,-42.95316)"
+             aria-label="ブロック"><path
+               id="path605"
+               style=""
+               d="m 9.792,-7.872 0.444,-0.264 c -0.24,-0.54 -0.684,-1.188 -1.296,-1.92 l -0.6,0.312 c 0.432,0.492 0.636,0.78 1.128,1.632 C 9.168,-8.1 9.012,-8.1 8.76,-8.1 H 2.964 C 2.316,-8.1 2.04,-8.112 1.608,-8.172 v 0.96 C 1.968,-7.26 2.256,-7.284 2.952,-7.284 H 9.06 c -0.42,1.752 -1.116,3.156 -2.1,4.272 -1.08,1.224 -2.784,2.28 -4.392,2.724 0.288,0.288 0.42,0.456 0.588,0.828 1.512,-0.564 2.64,-1.236 3.768,-2.256 1.404,-1.26 2.292,-2.76 2.94,-4.98 0.156,-0.588 0.18,-0.636 0.252,-0.744 z m 0.108,-2.28 c 0.48,0.564 0.984,1.32 1.236,1.884 l 0.612,-0.36 c -0.42,-0.756 -0.72,-1.2 -1.26,-1.848 z" /><path
+               id="path607"
+               style=""
+               d="m 20.736,-0.984 v 0.852 h 0.912 c -0.024,-0.252 -0.036,-0.564 -0.036,-0.924 v -6.492 c 0,-0.492 0,-0.648 0.036,-0.936 -0.276,0.036 -0.42,0.036 -0.936,0.036 h -6.396 c -0.468,0 -0.696,-0.012 -0.936,-0.036 0.036,0.288 0.048,0.444 0.048,0.936 v 6.516 c 0,0.396 -0.012,0.636 -0.048,0.9 h 0.924 v -0.852 z m 0,-0.78 h -6.432 v -5.892 h 6.432 z" /><path
+               id="path609"
+               style=""
+               d="m 25.764,-6.336 c 0.504,0.828 0.84,1.632 1.128,2.688 l 0.816,-0.276 C 27.264,-5.196 27,-5.76 26.52,-6.588 Z m 2.472,-0.504 c 0.516,0.9 0.888,1.776 1.104,2.628 l 0.792,-0.276 c -0.312,-0.96 -0.528,-1.44 -1.164,-2.58 z M 32.4,-6.852 c 0,0.036 0,0.036 0,0.072 v 0.048 c 0,0.144 -0.048,0.42 -0.132,0.816 -0.216,0.924 -0.564,1.824 -1.02,2.58 -0.828,1.38 -1.956,2.304 -3.804,3.132 0.276,0.252 0.372,0.372 0.552,0.672 1.86,-0.9 3.12,-2.004 3.972,-3.468 0.432,-0.744 0.864,-1.848 1.056,-2.688 0.192,-0.78 0.192,-0.78 0.264,-0.972 z" /><path
+               id="path611"
+               style=""
+               d="m 40.62,-9.78 c -0.06,0.42 -0.3,0.96 -0.756,1.752 -0.828,1.464 -1.74,2.46 -3.012,3.288 0.348,0.216 0.468,0.324 0.672,0.624 1.176,-0.888 2.136,-1.944 2.868,-3.12 l 4.044,-0.072 c -0.42,1.5 -1.14,2.904 -2.064,4.02 -1.152,1.38 -2.424,2.292 -4.236,3.036 0.312,0.24 0.408,0.36 0.6,0.708 1.752,-0.792 3.072,-1.74 4.176,-3 1.02,-1.188 1.896,-2.82 2.4,-4.512 0.132,-0.432 0.132,-0.444 0.24,-0.588 l -0.516,-0.504 c -0.168,0.072 -0.204,0.084 -0.624,0.084 -3.468,0.06 -3.468,0.06 -3.624,0.096 0.132,-0.216 0.24,-0.42 0.552,-1.068 0.156,-0.336 0.156,-0.336 0.264,-0.492 z" /></g></g><path
+           id="path208"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 389.4018,106.9326 h 101.813 V 52.53904 h -101.813 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g210"><path
+             id="path212"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 378.4018,397.0674 h 101.813 v 54.3936 h -101.813 z" /></g><g
+           transform="matrix(1,0,0,-1,440.3083,79.73585)"
+           id="g214"><g
+             id="text218"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-41.76,-7.000012)"
+             aria-label="トランザクショ"><path
+               id="path614"
+               style=""
+               d="M 4.584,0.372 C 4.536,0.036 4.524,-0.228 4.524,-0.9 v -3.612 c 0,-0.3 -0.012,-0.468 -0.048,-0.708 L 4.5,-5.232 c 0.108,0.084 0.192,0.132 0.372,0.204 1.692,0.696 3.348,1.584 4.476,2.376 L 9.864,-3.54 c -2.1,-1.212 -3.492,-1.872 -5.34,-2.532 v -2.244 c 0,-0.684 0.012,-0.936 0.06,-1.248 H 3.552 c 0.048,0.3 0.072,0.588 0.072,1.224 v 7.452 c 0,0.648 -0.024,0.936 -0.072,1.26 z" /><path
+               id="path616"
+               style=""
+               d="m 14.688,-8.16 c 0.324,-0.048 0.612,-0.06 1.248,-0.06 h 4.032 c 0.636,0 0.924,0.012 1.248,0.06 V -9.084 C 20.868,-9.012 20.628,-9 19.956,-9 h -4.008 c -0.672,0 -0.912,-0.012 -1.26,-0.084 z m -1.032,2.76 c 0.408,-0.048 0.756,-0.06 1.392,-0.06 h 6.264 c -0.552,1.476 -1.092,2.364 -1.944,3.144 -0.9,0.828 -1.956,1.368 -3.564,1.824 0.288,0.348 0.372,0.48 0.516,0.828 3.108,-1.044 4.764,-2.58 5.784,-5.376 0.204,-0.528 0.228,-0.588 0.336,-0.756 l -0.444,-0.516 c -0.204,0.072 -0.336,0.084 -0.78,0.084 H 15.06 c -0.72,0 -0.972,-0.012 -1.404,-0.072 z" /><path
+               id="path618"
+               style=""
+               d="m 25.872,-7.836 c 1.044,0.636 1.992,1.416 2.856,2.352 l 0.624,-0.744 C 28.488,-7.08 27.744,-7.668 26.46,-8.484 Z m 0.084,7.8 c 0.3,-0.096 0.396,-0.12 0.72,-0.192 2.004,-0.456 3.24,-0.948 4.476,-1.788 1.584,-1.092 2.7,-2.496 3.66,-4.584 -0.336,-0.228 -0.456,-0.336 -0.732,-0.708 -0.972,2.544 -2.58,4.308 -4.896,5.34 -1.116,0.516 -2.556,0.888 -3.492,0.924 z" /><path
+               id="path620"
+               style=""
+               d="m 40.056,-6.96 v -1.428 c 0,-0.528 0.012,-0.684 0.048,-0.972 h -0.972 c 0.036,0.264 0.048,0.372 0.048,1.008 v 1.392 h -0.996 c -0.756,0 -0.996,-0.012 -1.404,-0.072 v 0.912 c 0.384,-0.048 0.624,-0.06 1.392,-0.06 h 1.008 v 1.968 c 0,0.636 -0.012,0.756 -0.048,1.008 h 0.972 C 40.068,-3.48 40.056,-3.648 40.056,-4.176 V -6.18 h 3.648 c -0.024,1.92 -0.096,2.64 -0.36,3.36 -0.48,1.212 -1.692,2.148 -3.264,2.544 0.276,0.264 0.396,0.444 0.54,0.756 1.62,-0.552 2.7,-1.392 3.348,-2.592 0.444,-0.864 0.576,-1.752 0.588,-4.068 h 1.056 c 0.768,0 1.008,0.012 1.392,0.06 v -0.912 c -0.408,0.06 -0.648,0.072 -1.404,0.072 h -1.032 v -0.636 c 0,-0.252 0,-0.48 0,-0.624 0.012,-0.792 0.012,-0.804 0.048,-1.14 H 43.68 c 0.036,0.276 0.036,0.384 0.036,1.224 v 1.176 z m 5.016,-2.976 c 0.324,0.54 0.564,1.116 0.852,2.004 L 46.56,-8.148 C 46.284,-9 46.092,-9.42 45.708,-10.116 Z m 1.404,-0.372 c 0.288,0.468 0.612,1.236 0.84,1.968 l 0.624,-0.216 c -0.192,-0.648 -0.492,-1.332 -0.852,-1.956 z" /><path
+               id="path622"
+               style=""
+               d="m 52.62,-9.78 c -0.06,0.42 -0.3,0.96 -0.756,1.752 -0.828,1.464 -1.74,2.46 -3.012,3.288 0.348,0.216 0.468,0.324 0.672,0.624 1.176,-0.888 2.136,-1.944 2.868,-3.12 l 4.044,-0.072 c -0.42,1.5 -1.14,2.904 -2.064,4.02 -1.152,1.38 -2.424,2.292 -4.236,3.036 0.312,0.24 0.408,0.36 0.6,0.708 1.752,-0.792 3.072,-1.74 4.176,-3 1.02,-1.188 1.896,-2.82 2.4,-4.512 0.132,-0.432 0.132,-0.444 0.24,-0.588 l -0.516,-0.504 c -0.168,0.072 -0.204,0.084 -0.624,0.084 -3.468,0.06 -3.468,0.06 -3.624,0.096 0.132,-0.216 0.24,-0.42 0.552,-1.068 0.156,-0.336 0.156,-0.336 0.264,-0.492 z" /><path
+               id="path624"
+               style=""
+               d="m 62.196,-8.496 c 0.876,0.3 2.124,0.972 2.952,1.584 l 0.492,-0.804 c -1.02,-0.636 -1.8,-1.032 -2.976,-1.512 z m -0.948,2.868 c 1.092,0.408 2.184,1.008 3.06,1.644 l 0.468,-0.804 c -1.044,-0.66 -1.908,-1.104 -3.048,-1.572 z m 0.408,5.748 c 0.18,-0.06 0.228,-0.084 0.468,-0.132 0.24,-0.048 0.456,-0.096 0.648,-0.132 0.984,-0.204 2.196,-0.612 3.036,-1.032 2.112,-1.044 3.576,-2.676 4.62,-5.172 -0.324,-0.216 -0.444,-0.324 -0.744,-0.636 -0.372,1.056 -0.768,1.812 -1.44,2.688 -0.972,1.26 -2.112,2.112 -3.6,2.676 -1.2,0.456 -2.448,0.744 -3.228,0.744 z" /><path
+               id="path626"
+               style=""
+               d="m 79.751997,0.048 v 0.6 h 0.828 c -0.036,-0.204 -0.048,-0.36 -0.048,-0.744 V -5.52 c 0,-0.42 0,-0.612 0.012,-0.924 -0.216,0.012 -0.432,0.024 -0.816,0.024 h -4.464 c -0.468,0 -0.756,-0.024 -1.044,-0.072 v 0.828 c 0.3,-0.048 0.408,-0.048 1.044,-0.048 h 4.488 v 2.088 h -4.212 c -0.468,0 -0.756,-0.024 -1.044,-0.072 v 0.816 c 0.3,-0.048 0.396,-0.048 1.032,-0.048 h 4.224 v 2.256 h -4.608 c -0.444,0 -0.756,-0.024 -1.044,-0.072 v 0.84 c 0.3,-0.048 0.396,-0.048 1.044,-0.048 z" /></g></g><g
+           transform="matrix(1,0,0,-1,440.3083,79.73585)"
+           id="g220"><g
+             id="text224"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-6,11)"
+             aria-label="ン"><path
+               id="path629"
+               style=""
+               d="M 1.872,-7.836 C 2.916,-7.2 3.864,-6.42 4.728,-5.484 L 5.352,-6.228 C 4.488,-7.08 3.744,-7.668 2.46,-8.484 Z m 0.084,7.8 c 0.3,-0.096 0.396,-0.12 0.72,-0.192 2.004,-0.456 3.24,-0.948 4.476,-1.788 1.584,-1.092 2.7,-2.496 3.66,-4.584 C 10.476,-6.828 10.356,-6.936 10.08,-7.308 9.108,-4.764 7.5,-3 5.184,-1.968 4.068,-1.452 2.628,-1.08 1.692,-1.044 Z" /></g></g><path
+           id="path226"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="M 510.334,106.9326 H 612.147 V 52.53904 H 510.334 Z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g228"><path
+             id="path230"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="M 499.334,397.0674 H 601.147 V 451.461 H 499.334 Z" /></g><g
+           transform="matrix(1,0,0,-1,561.2405,79.73585)"
+           id="g232"><g
+             id="text236"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-41.76,-7.000012)"
+             aria-label="トランザクショ"><path
+               id="path632"
+               style=""
+               d="M 4.584,0.372 C 4.536,0.036 4.524,-0.228 4.524,-0.9 v -3.612 c 0,-0.3 -0.012,-0.468 -0.048,-0.708 L 4.5,-5.232 c 0.108,0.084 0.192,0.132 0.372,0.204 1.692,0.696 3.348,1.584 4.476,2.376 L 9.864,-3.54 c -2.1,-1.212 -3.492,-1.872 -5.34,-2.532 v -2.244 c 0,-0.684 0.012,-0.936 0.06,-1.248 H 3.552 c 0.048,0.3 0.072,0.588 0.072,1.224 v 7.452 c 0,0.648 -0.024,0.936 -0.072,1.26 z" /><path
+               id="path634"
+               style=""
+               d="m 14.688,-8.16 c 0.324,-0.048 0.612,-0.06 1.248,-0.06 h 4.032 c 0.636,0 0.924,0.012 1.248,0.06 V -9.084 C 20.868,-9.012 20.628,-9 19.956,-9 h -4.008 c -0.672,0 -0.912,-0.012 -1.26,-0.084 z m -1.032,2.76 c 0.408,-0.048 0.756,-0.06 1.392,-0.06 h 6.264 c -0.552,1.476 -1.092,2.364 -1.944,3.144 -0.9,0.828 -1.956,1.368 -3.564,1.824 0.288,0.348 0.372,0.48 0.516,0.828 3.108,-1.044 4.764,-2.58 5.784,-5.376 0.204,-0.528 0.228,-0.588 0.336,-0.756 l -0.444,-0.516 c -0.204,0.072 -0.336,0.084 -0.78,0.084 H 15.06 c -0.72,0 -0.972,-0.012 -1.404,-0.072 z" /><path
+               id="path636"
+               style=""
+               d="m 25.872,-7.836 c 1.044,0.636 1.992,1.416 2.856,2.352 l 0.624,-0.744 C 28.488,-7.08 27.744,-7.668 26.46,-8.484 Z m 0.084,7.8 c 0.3,-0.096 0.396,-0.12 0.72,-0.192 2.004,-0.456 3.24,-0.948 4.476,-1.788 1.584,-1.092 2.7,-2.496 3.66,-4.584 -0.336,-0.228 -0.456,-0.336 -0.732,-0.708 -0.972,2.544 -2.58,4.308 -4.896,5.34 -1.116,0.516 -2.556,0.888 -3.492,0.924 z" /><path
+               id="path638"
+               style=""
+               d="m 40.056,-6.96 v -1.428 c 0,-0.528 0.012,-0.684 0.048,-0.972 h -0.972 c 0.036,0.264 0.048,0.372 0.048,1.008 v 1.392 h -0.996 c -0.756,0 -0.996,-0.012 -1.404,-0.072 v 0.912 c 0.384,-0.048 0.624,-0.06 1.392,-0.06 h 1.008 v 1.968 c 0,0.636 -0.012,0.756 -0.048,1.008 h 0.972 C 40.068,-3.48 40.056,-3.648 40.056,-4.176 V -6.18 h 3.648 c -0.024,1.92 -0.096,2.64 -0.36,3.36 -0.48,1.212 -1.692,2.148 -3.264,2.544 0.276,0.264 0.396,0.444 0.54,0.756 1.62,-0.552 2.7,-1.392 3.348,-2.592 0.444,-0.864 0.576,-1.752 0.588,-4.068 h 1.056 c 0.768,0 1.008,0.012 1.392,0.06 v -0.912 c -0.408,0.06 -0.648,0.072 -1.404,0.072 h -1.032 v -0.636 c 0,-0.252 0,-0.48 0,-0.624 0.012,-0.792 0.012,-0.804 0.048,-1.14 H 43.68 c 0.036,0.276 0.036,0.384 0.036,1.224 v 1.176 z m 5.016,-2.976 c 0.324,0.54 0.564,1.116 0.852,2.004 L 46.56,-8.148 C 46.284,-9 46.092,-9.42 45.708,-10.116 Z m 1.404,-0.372 c 0.288,0.468 0.612,1.236 0.84,1.968 l 0.624,-0.216 c -0.192,-0.648 -0.492,-1.332 -0.852,-1.956 z" /><path
+               id="path640"
+               style=""
+               d="m 52.62,-9.78 c -0.06,0.42 -0.3,0.96 -0.756,1.752 -0.828,1.464 -1.74,2.46 -3.012,3.288 0.348,0.216 0.468,0.324 0.672,0.624 1.176,-0.888 2.136,-1.944 2.868,-3.12 l 4.044,-0.072 c -0.42,1.5 -1.14,2.904 -2.064,4.02 -1.152,1.38 -2.424,2.292 -4.236,3.036 0.312,0.24 0.408,0.36 0.6,0.708 1.752,-0.792 3.072,-1.74 4.176,-3 1.02,-1.188 1.896,-2.82 2.4,-4.512 0.132,-0.432 0.132,-0.444 0.24,-0.588 l -0.516,-0.504 c -0.168,0.072 -0.204,0.084 -0.624,0.084 -3.468,0.06 -3.468,0.06 -3.624,0.096 0.132,-0.216 0.24,-0.42 0.552,-1.068 0.156,-0.336 0.156,-0.336 0.264,-0.492 z" /><path
+               id="path642"
+               style=""
+               d="m 62.196,-8.496 c 0.876,0.3 2.124,0.972 2.952,1.584 l 0.492,-0.804 c -1.02,-0.636 -1.8,-1.032 -2.976,-1.512 z m -0.948,2.868 c 1.092,0.408 2.184,1.008 3.06,1.644 l 0.468,-0.804 c -1.044,-0.66 -1.908,-1.104 -3.048,-1.572 z m 0.408,5.748 c 0.18,-0.06 0.228,-0.084 0.468,-0.132 0.24,-0.048 0.456,-0.096 0.648,-0.132 0.984,-0.204 2.196,-0.612 3.036,-1.032 2.112,-1.044 3.576,-2.676 4.62,-5.172 -0.324,-0.216 -0.444,-0.324 -0.744,-0.636 -0.372,1.056 -0.768,1.812 -1.44,2.688 -0.972,1.26 -2.112,2.112 -3.6,2.676 -1.2,0.456 -2.448,0.744 -3.228,0.744 z" /><path
+               id="path644"
+               style=""
+               d="m 79.751997,0.048 v 0.6 h 0.828 c -0.036,-0.204 -0.048,-0.36 -0.048,-0.744 V -5.52 c 0,-0.42 0,-0.612 0.012,-0.924 -0.216,0.012 -0.432,0.024 -0.816,0.024 h -4.464 c -0.468,0 -0.756,-0.024 -1.044,-0.072 v 0.828 c 0.3,-0.048 0.408,-0.048 1.044,-0.048 h 4.488 v 2.088 h -4.212 c -0.468,0 -0.756,-0.024 -1.044,-0.072 v 0.816 c 0.3,-0.048 0.396,-0.048 1.032,-0.048 h 4.224 v 2.256 h -4.608 c -0.444,0 -0.756,-0.024 -1.044,-0.072 v 0.84 c 0.3,-0.048 0.396,-0.048 1.044,-0.048 z" /></g></g><g
+           transform="matrix(1,0,0,-1,561.2405,79.73585)"
+           id="g238"><g
+             id="text242"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-6,11)"
+             aria-label="ン"><path
+               id="path647"
+               style=""
+               d="M 1.872,-7.836 C 2.916,-7.2 3.864,-6.42 4.728,-5.484 L 5.352,-6.228 C 4.488,-7.08 3.744,-7.668 2.46,-8.484 Z m 0.084,7.8 c 0.3,-0.096 0.396,-0.12 0.72,-0.192 2.004,-0.456 3.24,-0.948 4.476,-1.788 1.584,-1.092 2.7,-2.496 3.66,-4.584 C 10.476,-6.828 10.356,-6.936 10.08,-7.308 9.108,-4.764 7.5,-3 5.184,-1.968 4.068,-1.452 2.628,-1.08 1.692,-1.044 Z" /></g></g><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g244"><path
+             id="path246"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="M 480.2148,424.2642 H 499.334" /></g><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g248"><path
+             id="path250"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 601.147,424.2642 h 19.1193" /></g><path
+           id="path252"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 631.2663,106.9326 h 101.813 V 52.53904 h -101.813 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g254"><path
+             id="path256"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 620.2663,397.0674 h 101.813 v 54.3936 h -101.813 z" /></g><g
+           transform="matrix(1,0,0,-1,682.1728,79.73585)"
+           id="g258"><g
+             id="text262"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-41.76,-7.000012)"
+             aria-label="トランザクショ"><path
+               id="path650"
+               style=""
+               d="M 4.584,0.372 C 4.536,0.036 4.524,-0.228 4.524,-0.9 v -3.612 c 0,-0.3 -0.012,-0.468 -0.048,-0.708 L 4.5,-5.232 c 0.108,0.084 0.192,0.132 0.372,0.204 1.692,0.696 3.348,1.584 4.476,2.376 L 9.864,-3.54 c -2.1,-1.212 -3.492,-1.872 -5.34,-2.532 v -2.244 c 0,-0.684 0.012,-0.936 0.06,-1.248 H 3.552 c 0.048,0.3 0.072,0.588 0.072,1.224 v 7.452 c 0,0.648 -0.024,0.936 -0.072,1.26 z" /><path
+               id="path652"
+               style=""
+               d="m 14.688,-8.16 c 0.324,-0.048 0.612,-0.06 1.248,-0.06 h 4.032 c 0.636,0 0.924,0.012 1.248,0.06 V -9.084 C 20.868,-9.012 20.628,-9 19.956,-9 h -4.008 c -0.672,0 -0.912,-0.012 -1.26,-0.084 z m -1.032,2.76 c 0.408,-0.048 0.756,-0.06 1.392,-0.06 h 6.264 c -0.552,1.476 -1.092,2.364 -1.944,3.144 -0.9,0.828 -1.956,1.368 -3.564,1.824 0.288,0.348 0.372,0.48 0.516,0.828 3.108,-1.044 4.764,-2.58 5.784,-5.376 0.204,-0.528 0.228,-0.588 0.336,-0.756 l -0.444,-0.516 c -0.204,0.072 -0.336,0.084 -0.78,0.084 H 15.06 c -0.72,0 -0.972,-0.012 -1.404,-0.072 z" /><path
+               id="path654"
+               style=""
+               d="m 25.872,-7.836 c 1.044,0.636 1.992,1.416 2.856,2.352 l 0.624,-0.744 C 28.488,-7.08 27.744,-7.668 26.46,-8.484 Z m 0.084,7.8 c 0.3,-0.096 0.396,-0.12 0.72,-0.192 2.004,-0.456 3.24,-0.948 4.476,-1.788 1.584,-1.092 2.7,-2.496 3.66,-4.584 -0.336,-0.228 -0.456,-0.336 -0.732,-0.708 -0.972,2.544 -2.58,4.308 -4.896,5.34 -1.116,0.516 -2.556,0.888 -3.492,0.924 z" /><path
+               id="path656"
+               style=""
+               d="m 40.056,-6.96 v -1.428 c 0,-0.528 0.012,-0.684 0.048,-0.972 h -0.972 c 0.036,0.264 0.048,0.372 0.048,1.008 v 1.392 h -0.996 c -0.756,0 -0.996,-0.012 -1.404,-0.072 v 0.912 c 0.384,-0.048 0.624,-0.06 1.392,-0.06 h 1.008 v 1.968 c 0,0.636 -0.012,0.756 -0.048,1.008 h 0.972 C 40.068,-3.48 40.056,-3.648 40.056,-4.176 V -6.18 h 3.648 c -0.024,1.92 -0.096,2.64 -0.36,3.36 -0.48,1.212 -1.692,2.148 -3.264,2.544 0.276,0.264 0.396,0.444 0.54,0.756 1.62,-0.552 2.7,-1.392 3.348,-2.592 0.444,-0.864 0.576,-1.752 0.588,-4.068 h 1.056 c 0.768,0 1.008,0.012 1.392,0.06 v -0.912 c -0.408,0.06 -0.648,0.072 -1.404,0.072 h -1.032 v -0.636 c 0,-0.252 0,-0.48 0,-0.624 0.012,-0.792 0.012,-0.804 0.048,-1.14 H 43.68 c 0.036,0.276 0.036,0.384 0.036,1.224 v 1.176 z m 5.016,-2.976 c 0.324,0.54 0.564,1.116 0.852,2.004 L 46.56,-8.148 C 46.284,-9 46.092,-9.42 45.708,-10.116 Z m 1.404,-0.372 c 0.288,0.468 0.612,1.236 0.84,1.968 l 0.624,-0.216 c -0.192,-0.648 -0.492,-1.332 -0.852,-1.956 z" /><path
+               id="path658"
+               style=""
+               d="m 52.62,-9.78 c -0.06,0.42 -0.3,0.96 -0.756,1.752 -0.828,1.464 -1.74,2.46 -3.012,3.288 0.348,0.216 0.468,0.324 0.672,0.624 1.176,-0.888 2.136,-1.944 2.868,-3.12 l 4.044,-0.072 c -0.42,1.5 -1.14,2.904 -2.064,4.02 -1.152,1.38 -2.424,2.292 -4.236,3.036 0.312,0.24 0.408,0.36 0.6,0.708 1.752,-0.792 3.072,-1.74 4.176,-3 1.02,-1.188 1.896,-2.82 2.4,-4.512 0.132,-0.432 0.132,-0.444 0.24,-0.588 l -0.516,-0.504 c -0.168,0.072 -0.204,0.084 -0.624,0.084 -3.468,0.06 -3.468,0.06 -3.624,0.096 0.132,-0.216 0.24,-0.42 0.552,-1.068 0.156,-0.336 0.156,-0.336 0.264,-0.492 z" /><path
+               id="path660"
+               style=""
+               d="m 62.196,-8.496 c 0.876,0.3 2.124,0.972 2.952,1.584 l 0.492,-0.804 c -1.02,-0.636 -1.8,-1.032 -2.976,-1.512 z m -0.948,2.868 c 1.092,0.408 2.184,1.008 3.06,1.644 l 0.468,-0.804 c -1.044,-0.66 -1.908,-1.104 -3.048,-1.572 z m 0.408,5.748 c 0.18,-0.06 0.228,-0.084 0.468,-0.132 0.24,-0.048 0.456,-0.096 0.648,-0.132 0.984,-0.204 2.196,-0.612 3.036,-1.032 2.112,-1.044 3.576,-2.676 4.62,-5.172 -0.324,-0.216 -0.444,-0.324 -0.744,-0.636 -0.372,1.056 -0.768,1.812 -1.44,2.688 -0.972,1.26 -2.112,2.112 -3.6,2.676 -1.2,0.456 -2.448,0.744 -3.228,0.744 z" /><path
+               id="path662"
+               style=""
+               d="m 79.751997,0.048 v 0.6 h 0.828 c -0.036,-0.204 -0.048,-0.36 -0.048,-0.744 V -5.52 c 0,-0.42 0,-0.612 0.012,-0.924 -0.216,0.012 -0.432,0.024 -0.816,0.024 h -4.464 c -0.468,0 -0.756,-0.024 -1.044,-0.072 v 0.828 c 0.3,-0.048 0.408,-0.048 1.044,-0.048 h 4.488 v 2.088 h -4.212 c -0.468,0 -0.756,-0.024 -1.044,-0.072 v 0.816 c 0.3,-0.048 0.396,-0.048 1.032,-0.048 h 4.224 v 2.256 h -4.608 c -0.444,0 -0.756,-0.024 -1.044,-0.072 v 0.84 c 0.3,-0.048 0.396,-0.048 1.044,-0.048 z" /></g></g><g
+           transform="matrix(1,0,0,-1,682.1728,79.73585)"
+           id="g264"><g
+             id="text268"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-6,11)"
+             aria-label="ン"><path
+               id="path665"
+               style=""
+               d="M 1.872,-7.836 C 2.916,-7.2 3.864,-6.42 4.728,-5.484 L 5.352,-6.228 C 4.488,-7.08 3.744,-7.668 2.46,-8.484 Z m 0.084,7.8 c 0.3,-0.096 0.396,-0.12 0.72,-0.192 2.004,-0.456 3.24,-0.948 4.476,-1.788 1.584,-1.092 2.7,-2.496 3.66,-4.584 C 10.476,-6.828 10.356,-6.936 10.08,-7.308 9.108,-4.764 7.5,-3 5.184,-1.968 4.068,-1.452 2.628,-1.08 1.692,-1.044 Z" /></g></g><path
+           id="path270"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 76.587,312.4325 c 15.004,-12.038 15.004,-31.5554 0,-43.5934 -15.00393,-12.038 -39.33009,-12.038 -54.33402,0 -15.004001,12.038 -15.004001,31.5554 0,43.5934 15.00393,12.038 39.33009,12.038 54.33402,0" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g272"><path
+             id="path274"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 65.587,191.5675 c 15.004,12.038 15.004,31.5554 0,43.5934 -15.00393,12.038 -39.33009,12.038 -54.33402,0 -15.004001,-12.038 -15.004001,-31.5554 0,-43.5934 15.00393,-12.038 39.33009,-12.038 54.33402,0" /></g><g
+           transform="matrix(1,0,0,-1,49.41999,290.6358)"
+           id="g276"><g
+             id="text280"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-18,1.999994)"
+             aria-label="ノード"><path
+               id="path668"
+               style=""
+               d="m 8.844,-9.18 c -0.108,0.684 -0.624,1.944 -1.26,3.072 -1.38,2.436 -3.204,4.02 -5.916,5.172 0.324,0.336 0.42,0.468 0.612,0.84 2.004,-1.008 3.348,-1.98 4.524,-3.324 1.092,-1.224 1.92,-2.664 2.736,-4.728 0.204,-0.516 0.204,-0.516 0.3,-0.696 z" /><path
+               id="path670"
+               style=""
+               d="m 13.044,-4.116 c 0.36,-0.036 0.612,-0.048 1.488,-0.048 h 6.96 c 0.804,0 1.08,0.012 1.464,0.048 v -0.972 c -0.372,0.048 -0.564,0.06 -1.452,0.06 h -6.972 c -0.816,0 -1.14,-0.012 -1.488,-0.072 z" /><path
+               id="path672"
+               style=""
+               d="M 28.584,0.372 C 28.536,0.084 28.524,-0.18 28.524,-0.9 v -3.612 c 0,-0.3 -0.012,-0.492 -0.048,-0.708 L 28.5,-5.232 c 0.108,0.084 0.204,0.132 0.372,0.204 1.692,0.708 3.576,1.704 4.476,2.376 l 0.516,-0.888 c -1.968,-1.14 -3.624,-1.92 -5.34,-2.532 v -2.244 c 0,-0.744 0.012,-0.972 0.06,-1.248 h -1.032 c 0.048,0.264 0.06,0.468 0.072,1.224 v 7.452 c -0.012,0.732 -0.024,0.984 -0.072,1.26 z m 2.976,-9.144 c 0.36,0.372 0.936,1.272 1.236,1.908 l 0.6,-0.36 C 33.036,-7.932 32.7,-8.436 32.16,-9.084 Z m 1.368,-0.648 c 0.468,0.552 0.972,1.32 1.224,1.896 l 0.6,-0.348 c -0.396,-0.756 -0.696,-1.2 -1.236,-1.872 z" /></g></g><path
+           id="path282"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 159.19,358.9085 c 15.004,-12.038 15.004,-31.5554 0,-43.5933 -15.004,-12.0381 -39.3301,-12.0381 -54.334,0 -15.00404,12.0379 -15.00404,31.5553 0,43.5933 15.0039,12.038 39.33,12.038 54.334,0" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g284"><path
+             id="path286"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 148.19,145.0915 c 15.004,12.038 15.004,31.5554 0,43.5933 -15.004,12.0381 -39.3301,12.0381 -54.33403,0 -15.00401,-12.0379 -15.00401,-31.5553 0,-43.5933 15.00393,-12.038 39.33003,-12.038 54.33403,0" /></g><g
+           transform="matrix(1,0,0,-1,132.023,337.1118)"
+           id="g288"><g
+             id="text292"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-18,1.999994)"
+             aria-label="ノード"><path
+               id="path675"
+               style=""
+               d="m 8.844,-9.18 c -0.108,0.684 -0.624,1.944 -1.26,3.072 -1.38,2.436 -3.204,4.02 -5.916,5.172 0.324,0.336 0.42,0.468 0.612,0.84 2.004,-1.008 3.348,-1.98 4.524,-3.324 1.092,-1.224 1.92,-2.664 2.736,-4.728 0.204,-0.516 0.204,-0.516 0.3,-0.696 z" /><path
+               id="path677"
+               style=""
+               d="m 13.044,-4.116 c 0.36,-0.036 0.612,-0.048 1.488,-0.048 h 6.96 c 0.804,0 1.08,0.012 1.464,0.048 v -0.972 c -0.372,0.048 -0.564,0.06 -1.452,0.06 h -6.972 c -0.816,0 -1.14,-0.012 -1.488,-0.072 z" /><path
+               id="path679"
+               style=""
+               d="M 28.584,0.372 C 28.536,0.084 28.524,-0.18 28.524,-0.9 v -3.612 c 0,-0.3 -0.012,-0.492 -0.048,-0.708 L 28.5,-5.232 c 0.108,0.084 0.204,0.132 0.372,0.204 1.692,0.708 3.576,1.704 4.476,2.376 l 0.516,-0.888 c -1.968,-1.14 -3.624,-1.92 -5.34,-2.532 v -2.244 c 0,-0.744 0.012,-0.972 0.06,-1.248 h -1.032 c 0.048,0.264 0.06,0.468 0.072,1.224 v 7.452 c -0.012,0.732 -0.024,0.984 -0.072,1.26 z m 2.976,-9.144 c 0.36,0.372 0.936,1.272 1.236,1.908 l 0.6,-0.36 C 33.036,-7.932 32.7,-8.436 32.16,-9.084 Z m 1.368,-0.648 c 0.468,0.552 0.972,1.32 1.224,1.896 l 0.6,-0.348 c -0.396,-0.756 -0.696,-1.2 -1.236,-1.872 z" /></g></g><path
+           id="path294"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 175.5185,244.6171 c 15.004,-12.038 15.004,-31.5554 0,-43.5934 -15.004,-12.038 -39.3301,-12.038 -54.334,0 -15.004,12.038 -15.004,31.5554 0,43.5934 15.0039,12.038 39.33,12.038 54.334,0" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g296"><path
+             id="path298"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 164.5185,259.3829 c 15.004,12.038 15.004,31.5554 0,43.5934 -15.004,12.038 -39.3301,12.038 -54.334,0 -15.00404,-12.038 -15.00404,-31.5554 0,-43.5934 15.0039,-12.038 39.33,-12.038 54.334,0" /></g><g
+           transform="matrix(1,0,0,-1,148.3515,222.8204)"
+           id="g300"><g
+             id="text304"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-18,1.999994)"
+             aria-label="ノード"><path
+               id="path682"
+               style=""
+               d="m 8.844,-9.18 c -0.108,0.684 -0.624,1.944 -1.26,3.072 -1.38,2.436 -3.204,4.02 -5.916,5.172 0.324,0.336 0.42,0.468 0.612,0.84 2.004,-1.008 3.348,-1.98 4.524,-3.324 1.092,-1.224 1.92,-2.664 2.736,-4.728 0.204,-0.516 0.204,-0.516 0.3,-0.696 z" /><path
+               id="path684"
+               style=""
+               d="m 13.044,-4.116 c 0.36,-0.036 0.612,-0.048 1.488,-0.048 h 6.96 c 0.804,0 1.08,0.012 1.464,0.048 v -0.972 c -0.372,0.048 -0.564,0.06 -1.452,0.06 h -6.972 c -0.816,0 -1.14,-0.012 -1.488,-0.072 z" /><path
+               id="path686"
+               style=""
+               d="M 28.584,0.372 C 28.536,0.084 28.524,-0.18 28.524,-0.9 v -3.612 c 0,-0.3 -0.012,-0.492 -0.048,-0.708 L 28.5,-5.232 c 0.108,0.084 0.204,0.132 0.372,0.204 1.692,0.708 3.576,1.704 4.476,2.376 l 0.516,-0.888 c -1.968,-1.14 -3.624,-1.92 -5.34,-2.532 v -2.244 c 0,-0.744 0.012,-0.972 0.06,-1.248 h -1.032 c 0.048,0.264 0.06,0.468 0.072,1.224 v 7.452 c -0.012,0.732 -0.024,0.984 -0.072,1.26 z m 2.976,-9.144 c 0.36,0.372 0.936,1.272 1.236,1.908 l 0.6,-0.36 C 33.036,-7.932 32.7,-8.436 32.16,-9.084 Z m 1.368,-0.648 c 0.468,0.552 0.972,1.32 1.224,1.896 l 0.6,-0.348 c -0.396,-0.756 -0.696,-1.2 -1.236,-1.872 z" /></g></g><path
+           id="path306"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 312.8699,343.2576 c 15.004,-12.0379 15.004,-31.5553 0,-43.5933 -15.0039,-12.038 -39.33,-12.038 -54.334,0 -15.004,12.038 -15.004,31.5554 0,43.5933 15.004,12.0381 39.3301,12.0381 54.334,0" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g308"><path
+             id="path310"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 301.8699,160.7424 c 15.004,12.0379 15.004,31.5553 0,43.5933 -15.0039,12.038 -39.33,12.038 -54.334,0 -15.004,-12.038 -15.004,-31.5554 0,-43.5933 15.004,-12.0381 39.3301,-12.0381 54.334,0" /></g><g
+           transform="matrix(1,0,0,-1,285.7029,321.461)"
+           id="g312"><g
+             id="text316"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-18,1.999994)"
+             aria-label="ノード"><path
+               id="path689"
+               style=""
+               d="m 8.844,-9.18 c -0.108,0.684 -0.624,1.944 -1.26,3.072 -1.38,2.436 -3.204,4.02 -5.916,5.172 0.324,0.336 0.42,0.468 0.612,0.84 2.004,-1.008 3.348,-1.98 4.524,-3.324 1.092,-1.224 1.92,-2.664 2.736,-4.728 0.204,-0.516 0.204,-0.516 0.3,-0.696 z" /><path
+               id="path691"
+               style=""
+               d="m 13.044,-4.116 c 0.36,-0.036 0.612,-0.048 1.488,-0.048 h 6.96 c 0.804,0 1.08,0.012 1.464,0.048 v -0.972 c -0.372,0.048 -0.564,0.06 -1.452,0.06 h -6.972 c -0.816,0 -1.14,-0.012 -1.488,-0.072 z" /><path
+               id="path693"
+               style=""
+               d="M 28.584,0.372 C 28.536,0.084 28.524,-0.18 28.524,-0.9 v -3.612 c 0,-0.3 -0.012,-0.492 -0.048,-0.708 L 28.5,-5.232 c 0.108,0.084 0.204,0.132 0.372,0.204 1.692,0.708 3.576,1.704 4.476,2.376 l 0.516,-0.888 c -1.968,-1.14 -3.624,-1.92 -5.34,-2.532 v -2.244 c 0,-0.744 0.012,-0.972 0.06,-1.248 h -1.032 c 0.048,0.264 0.06,0.468 0.072,1.224 v 7.452 c -0.012,0.732 -0.024,0.984 -0.072,1.26 z m 2.976,-9.144 c 0.36,0.372 0.936,1.272 1.236,1.908 l 0.6,-0.36 C 33.036,-7.932 32.7,-8.436 32.16,-9.084 Z m 1.368,-0.648 c 0.468,0.552 0.972,1.32 1.224,1.896 l 0.6,-0.348 c -0.396,-0.756 -0.696,-1.2 -1.236,-1.872 z" /></g></g><path
+           id="path318"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 317.6724,219.9569 c 15.004,-12.038 15.004,-31.5554 0,-43.5933 -15.0039,-12.0381 -39.33,-12.0381 -54.334,0 -15.004,12.0379 -15.004,31.5553 0,43.5933 15.004,12.038 39.3301,12.038 54.334,0" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g320"><path
+             id="path322"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 306.6724,284.0431 c 15.004,12.038 15.004,31.5554 0,43.5933 -15.0039,12.0381 -39.33,12.0381 -54.334,0 -15.004,-12.0379 -15.004,-31.5553 0,-43.5933 15.004,-12.038 39.3301,-12.038 54.334,0" /></g><g
+           transform="matrix(1,0,0,-1,290.5054,198.1602)"
+           id="g324"><g
+             id="text328"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-18,1.999994)"
+             aria-label="ノード"><path
+               id="path696"
+               style=""
+               d="m 8.844,-9.18 c -0.108,0.684 -0.624,1.944 -1.26,3.072 -1.38,2.436 -3.204,4.02 -5.916,5.172 0.324,0.336 0.42,0.468 0.612,0.84 2.004,-1.008 3.348,-1.98 4.524,-3.324 1.092,-1.224 1.92,-2.664 2.736,-4.728 0.204,-0.516 0.204,-0.516 0.3,-0.696 z" /><path
+               id="path698"
+               style=""
+               d="m 13.044,-4.116 c 0.36,-0.036 0.612,-0.048 1.488,-0.048 h 6.96 c 0.804,0 1.08,0.012 1.464,0.048 v -0.972 c -0.372,0.048 -0.564,0.06 -1.452,0.06 h -6.972 c -0.816,0 -1.14,-0.012 -1.488,-0.072 z" /><path
+               id="path700"
+               style=""
+               d="M 28.584,0.372 C 28.536,0.084 28.524,-0.18 28.524,-0.9 v -3.612 c 0,-0.3 -0.012,-0.492 -0.048,-0.708 L 28.5,-5.232 c 0.108,0.084 0.204,0.132 0.372,0.204 1.692,0.708 3.576,1.704 4.476,2.376 l 0.516,-0.888 c -1.968,-1.14 -3.624,-1.92 -5.34,-2.532 v -2.244 c 0,-0.744 0.012,-0.972 0.06,-1.248 h -1.032 c 0.048,0.264 0.06,0.468 0.072,1.224 v 7.452 c -0.012,0.732 -0.024,0.984 -0.072,1.26 z m 2.976,-9.144 c 0.36,0.372 0.936,1.272 1.236,1.908 l 0.6,-0.36 C 33.036,-7.932 32.7,-8.436 32.16,-9.084 Z m 1.368,-0.648 c 0.468,0.552 0.972,1.32 1.224,1.896 l 0.6,-0.348 c -0.396,-0.756 -0.696,-1.2 -1.236,-1.872 z" /></g></g><path
+           id="path330"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 236.03,298.5611 c 15.004,-12.0379 15.004,-31.5553 0,-43.5933 -15.004,-12.0381 -39.3301,-12.0381 -54.3341,0 -15.004,12.038 -15.004,31.5554 0,43.5933 15.004,12.0381 39.3301,12.0381 54.3341,0" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g332"><path
+             id="path334"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 225.03,205.4389 c 15.004,12.0379 15.004,31.5553 0,43.5933 -15.004,12.0381 -39.3301,12.0381 -54.3341,0 -15.004,-12.038 -15.004,-31.5554 0,-43.5933 15.004,-12.0381 39.3301,-12.0381 54.3341,0" /></g><g
+           transform="matrix(1,0,0,-1,208.863,276.7645)"
+           id="g336"><g
+             id="text340"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-18,1.999994)"
+             aria-label="ノード"><path
+               id="path703"
+               style=""
+               d="m 8.844,-9.18 c -0.108,0.684 -0.624,1.944 -1.26,3.072 -1.38,2.436 -3.204,4.02 -5.916,5.172 0.324,0.336 0.42,0.468 0.612,0.84 2.004,-1.008 3.348,-1.98 4.524,-3.324 1.092,-1.224 1.92,-2.664 2.736,-4.728 0.204,-0.516 0.204,-0.516 0.3,-0.696 z" /><path
+               id="path705"
+               style=""
+               d="m 13.044,-4.116 c 0.36,-0.036 0.612,-0.048 1.488,-0.048 h 6.96 c 0.804,0 1.08,0.012 1.464,0.048 v -0.972 c -0.372,0.048 -0.564,0.06 -1.452,0.06 h -6.972 c -0.816,0 -1.14,-0.012 -1.488,-0.072 z" /><path
+               id="path707"
+               style=""
+               d="M 28.584,0.372 C 28.536,0.084 28.524,-0.18 28.524,-0.9 v -3.612 c 0,-0.3 -0.012,-0.492 -0.048,-0.708 L 28.5,-5.232 c 0.108,0.084 0.204,0.132 0.372,0.204 1.692,0.708 3.576,1.704 4.476,2.376 l 0.516,-0.888 c -1.968,-1.14 -3.624,-1.92 -5.34,-2.532 v -2.244 c 0,-0.744 0.012,-0.972 0.06,-1.248 h -1.032 c 0.048,0.264 0.06,0.468 0.072,1.224 v 7.452 c -0.012,0.732 -0.024,0.984 -0.072,1.26 z m 2.976,-9.144 c 0.36,0.372 0.936,1.272 1.236,1.908 l 0.6,-0.36 C 33.036,-7.932 32.7,-8.436 32.16,-9.084 Z m 1.368,-0.648 c 0.468,0.552 0.972,1.32 1.224,1.896 l 0.6,-0.348 c -0.396,-0.756 -0.696,-1.2 -1.236,-1.872 z" /></g></g><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g342"><path
+             id="path344"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="M 75.79776,238.9859 99.9737,255.558" /></g><path
+           id="path346"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 117.5723,243.9189 -4.9024,6.9976 -3.3924,-4.9489 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g348"><path
+             id="path350"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 106.5723,260.0811 -4.9024,-6.9976 -3.39239,4.9489 z" /></g><path
+           id="path352"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 80.1992,269.5373 4.90237,-6.9976 3.39238,4.9489 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g354"><path
+             id="path356"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 69.1992,234.4627 4.90237,6.9976 3.39238,-4.9489 z" /></g><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g358"><path
+             id="path360"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 78.50936,190.8082 2.42424,-1.364" /></g><path
+           id="path362"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 98.90578,318.4786 -8.44325,-1.3082 2.94214,-5.2292 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g364"><path
+             id="path366"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 87.90578,185.5214 -8.44325,1.3082 2.94214,5.2292 z" /></g><path
+           id="path368"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 82.53718,309.269 8.44325,1.3082 -2.94214,5.2292 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g370"><path
+             id="path372"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 71.53718,194.731 8.44325,-1.3082 -2.94214,-5.2292 z" /></g><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g374"><path
+             id="path376"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 229.5922,257.784 18.184,17.5073" /></g><path
+           id="path378"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 264.5393,223.1601 -3.6824,7.7097 -4.1614,-4.3223 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g380"><path
+             id="path382"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 253.5393,280.8399 -3.6824,-7.7097 -4.1614,4.3223 z" /></g><path
+           id="path384"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 234.8291,251.7646 3.6823,-7.7097 4.1615,4.3223 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g386"><path
+             id="path388"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 223.8291,252.2354 3.6823,7.7097 4.1615,-4.3223 z" /></g><path
+           id="path390"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 181.7425,252.5874 -7.968,-3.0842 3.9927,-4.4787 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g392"><path
+             id="path394"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 170.7425,251.4126 -7.968,3.0842 3.9927,4.4787 z" /></g><path
+           id="path396"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 175.472,246.9974 7.9679,3.0842 -3.9926,4.4787 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g398"><path
+             id="path400"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 164.472,257.0026 7.9679,-3.0842 -3.9926,-4.4787 z" /></g><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g402"><path
+             id="path404"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 156.2645,194.5656 6.3569,4.9925" /></g><path
+           id="path406"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 179.9131,299.5007 -4.4387,7.3005 -3.7059,-4.7187 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g408"><path
+             id="path410"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 168.9131,204.4993 -4.4387,-7.3005 -3.7059,4.7187 z" /></g><path
+           id="path412"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 160.9729,314.3756 4.4386,-7.3005 3.7059,4.7187 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g414"><path
+             id="path416"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 149.9729,189.6244 4.4386,7.3005 3.7059,-4.7187 z" /></g><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g418"><path
+             id="path420"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 168.988,171.773 57.7499,5.8812" /></g><path
+           id="path422"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 245.6967,325.5352 -7.6549,3.7951 -0.6079,-5.9691 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g424"><path
+             id="path426"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 234.6967,178.4648 -7.6549,-3.7951 -0.6079,5.9691 z" /></g><path
+           id="path428"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 172.0292,333.0376 7.6549,-3.7951 0.6079,5.9691 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g430"><path
+             id="path432"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 161.0292,170.9624 7.6549,3.7951 0.6079,-5.9691 z" /></g><path
+           id="path434"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 252.9508,302.4096 -8.4236,-1.4292 3.0168,-5.1864 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g436"><path
+             id="path438"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 241.9508,201.5904 -8.4236,1.4292 3.0168,5.1864 z" /></g><path
+           id="path440"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 241.6151,295.8158 8.4236,1.4293 -3.0168,5.1864 z" /><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g442"><path
+             id="path444"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 230.6151,208.1842 8.4236,-1.4293 -3.0168,-5.1864 z" /></g><g
+           transform="matrix(1,0,0,-1,172.049,407.9884)"
+           id="g446"><g
+             id="text450"
+             style="font-variant:normal;font-size:12px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-137.0572,-5.000006)"
+             aria-label="ノード間でブロックとトランザクションをやり取り"><path
+               id="path710"
+               style=""
+               d="m 8.844,-9.18 c -0.108,0.684 -0.624,1.944 -1.26,3.072 -1.38,2.436 -3.204,4.02 -5.916,5.172 0.324,0.336 0.42,0.468 0.612,0.84 2.004,-1.008 3.348,-1.98 4.524,-3.324 1.092,-1.224 1.92,-2.664 2.736,-4.728 0.204,-0.516 0.204,-0.516 0.3,-0.696 z" /><path
+               id="path712"
+               style=""
+               d="m 13.044,-4.116 c 0.36,-0.036 0.612,-0.048 1.488,-0.048 h 6.96 c 0.804,0 1.08,0.012 1.464,0.048 v -0.972 c -0.372,0.048 -0.564,0.06 -1.452,0.06 h -6.972 c -0.816,0 -1.14,-0.012 -1.488,-0.072 z" /><path
+               id="path714"
+               style=""
+               d="M 28.584,0.372 C 28.536,0.084 28.524,-0.18 28.524,-0.9 v -3.612 c 0,-0.3 -0.012,-0.492 -0.048,-0.708 L 28.5,-5.232 c 0.108,0.084 0.204,0.132 0.372,0.204 1.692,0.708 3.576,1.704 4.476,2.376 l 0.516,-0.888 c -1.968,-1.14 -3.624,-1.92 -5.34,-2.532 v -2.244 c 0,-0.744 0.012,-0.972 0.06,-1.248 h -1.032 c 0.048,0.264 0.06,0.468 0.072,1.224 v 7.452 c -0.012,0.732 -0.024,0.984 -0.072,1.26 z m 2.976,-9.144 c 0.36,0.372 0.936,1.272 1.236,1.908 l 0.6,-0.36 C 33.036,-7.932 32.7,-8.436 32.16,-9.084 Z m 1.368,-0.648 c 0.468,0.552 0.972,1.32 1.224,1.896 l 0.6,-0.348 c -0.396,-0.756 -0.696,-1.2 -1.236,-1.872 z" /><path
+               id="path716"
+               style=""
+               d="m 37.908,-5.856 h 2.196 c 0.48,0 0.888,0.012 1.212,0.036 -0.024,-0.3 -0.036,-0.636 -0.036,-1.116 v -1.488 c 0,-0.444 0.012,-0.804 0.036,-1.14 -0.336,0.036 -0.624,0.048 -1.224,0.048 h -1.716 c -0.612,0 -0.924,-0.012 -1.26,-0.048 0.036,0.384 0.048,0.732 0.048,1.32 v 7.752 c 0,0.648 -0.024,1.02 -0.072,1.344 H 37.98 C 37.932,0.54 37.908,0.18 37.908,-0.492 Z m 0,-3.072 h 2.688 v 0.96 h -2.688 z m 0,1.524 h 2.688 v 0.972 h -2.688 z m 8.916,-0.84 c 0,-0.54 0.012,-0.852 0.06,-1.32 -0.348,0.036 -0.636,0.048 -1.26,0.048 h -1.98 c -0.612,0 -0.888,-0.012 -1.224,-0.048 0.024,0.36 0.036,0.72 0.036,1.14 v 1.488 c 0,0.444 -0.012,0.804 -0.036,1.116 0.324,-0.024 0.708,-0.036 1.212,-0.036 h 2.46 v 5.496 c 0,0.288 -0.084,0.336 -0.576,0.336 -0.276,0 -0.732,-0.036 -1.332,-0.108 0.108,0.252 0.168,0.444 0.216,0.768 0.336,0.024 0.9,0.036 1.188,0.036 0.996,0 1.236,-0.192 1.236,-0.984 z M 43.14,-8.928 h 2.952 v 0.96 H 43.14 Z m 0,1.524 h 2.952 v 0.972 H 43.14 Z m 1.068,3.624 c 0,-0.48 0.012,-0.792 0.036,-1.128 -0.36,0.036 -0.636,0.048 -1.188,0.048 h -2.184 c -0.552,0 -0.84,-0.012 -1.2,-0.048 0.024,0.348 0.036,0.708 0.036,1.128 v 2.028 c 0,0.444 -0.012,0.66 -0.048,0.972 0.348,-0.036 0.588,-0.048 1.068,-0.048 h 2.292 c 0.504,0 0.888,0.012 1.224,0.036 -0.024,-0.312 -0.036,-0.636 -0.036,-1.092 z m -3.804,-0.48 h 3.12 v 1.068 h -3.12 z m 0,1.668 h 3.12 v 1.164 h -3.12 z" /><path
+               id="path718"
+               style=""
+               d="m 49.14,-6.996 c 0.432,-0.108 1.752,-0.228 4.14,-0.396 1.26,-0.084 1.956,-0.144 2.64,-0.264 -0.456,0.216 -0.768,0.384 -1.14,0.636 -1.428,0.972 -2.244,2.292 -2.244,3.684 0,0.996 0.48,1.872 1.332,2.448 0.684,0.468 1.404,0.72 2.592,0.924 0.216,0.036 0.24,0.048 0.372,0.072 l 0.156,-0.972 c -0.048,0 -0.096,0 -0.12,0 -0.456,0 -1.212,-0.168 -1.8,-0.384 -1.068,-0.408 -1.68,-1.212 -1.68,-2.22 0,-0.996 0.516,-1.968 1.476,-2.772 0.66,-0.564 1.5,-0.996 2.304,-1.2 0.456,-0.12 0.864,-0.168 1.344,-0.168 L 58.44,-8.496 c -0.168,0.048 -0.396,0.072 -1.428,0.132 l -0.684,0.024 c -0.396,0.012 -0.552,0.024 -2.028,0.108 l -1.884,0.12 c -1.476,0.084 -1.548,0.096 -2.22,0.144 -0.372,0.024 -0.516,0.036 -0.684,0.036 -0.084,0 -0.204,0 -0.432,-0.012 z m 7.368,1.152 c 0.36,0.372 0.936,1.272 1.224,1.908 l 0.612,-0.36 c -0.36,-0.708 -0.696,-1.212 -1.236,-1.86 z m 1.368,-0.648 c 0.468,0.552 0.96,1.32 1.224,1.884 l 0.6,-0.336 C 59.304,-5.7 59.004,-6.156 58.464,-6.816 Z" /><path
+               id="path720"
+               style=""
+               d="m 69.792,-7.872 0.444,-0.264 c -0.24,-0.54 -0.684,-1.188 -1.296,-1.92 l -0.6,0.312 c 0.432,0.492 0.636,0.78 1.128,1.632 -0.3,0.012 -0.456,0.012 -0.708,0.012 h -5.796 c -0.648,0 -0.924,-0.012 -1.356,-0.072 v 0.96 c 0.36,-0.048 0.648,-0.072 1.344,-0.072 h 6.108 c -0.42,1.752 -1.116,3.156 -2.1,4.272 -1.08,1.224 -2.784,2.28 -4.392,2.724 0.288,0.288 0.42,0.456 0.588,0.828 1.512,-0.564 2.64,-1.236 3.768,-2.256 1.404,-1.26 2.292,-2.76 2.94,-4.98 0.156,-0.588 0.18,-0.636 0.252,-0.744 z m 0.108,-2.28 c 0.48,0.564 0.984,1.32 1.236,1.884 l 0.612,-0.36 c -0.42,-0.756 -0.72,-1.2 -1.26,-1.848 z" /><path
+               id="path722"
+               style=""
+               d="m 80.735997,-0.984 v 0.852 h 0.912 c -0.024,-0.252 -0.036,-0.564 -0.036,-0.924 v -6.492 c 0,-0.492 0,-0.648 0.036,-0.936 -0.276,0.036 -0.42,0.036 -0.936,0.036 h -6.396 c -0.468,0 -0.696,-0.012 -0.936,-0.036 0.036,0.288 0.048,0.444 0.048,0.936 v 6.516 c 0,0.396 -0.012,0.636 -0.048,0.9 h 0.924 v -0.852 z m 0,-0.78 h -6.432 v -5.892 h 6.432 z" /><path
+               id="path724"
+               style=""
+               d="m 85.763997,-6.336 c 0.504,0.828 0.84,1.632 1.128,2.688 l 0.816,-0.276 c -0.444,-1.272 -0.708,-1.836 -1.188,-2.664 z m 2.472,-0.504 c 0.516,0.9 0.888,1.776 1.104,2.628 l 0.792,-0.276 c -0.312,-0.96 -0.528,-1.44 -1.164,-2.58 z m 4.164,-0.012 c 0,0.036 0,0.036 0,0.072 v 0.048 c 0,0.144 -0.048,0.42 -0.132,0.816 -0.216,0.924 -0.564,1.824 -1.02,2.58 -0.828,1.38 -1.956,2.304 -3.804,3.132 0.276,0.252 0.372,0.372 0.552,0.672 1.86,-0.9 3.12,-2.004 3.972,-3.468 0.432,-0.744 0.864,-1.848 1.056,-2.688 0.192,-0.78 0.192,-0.78 0.264,-0.972 z" /><path
+               id="path726"
+               style=""
+               d="m 100.62,-9.78 c -0.06,0.42 -0.3,0.96 -0.756003,1.752 -0.828,1.464 -1.74,2.46 -3.012,3.288 0.348,0.216 0.468,0.324 0.672,0.624 1.176,-0.888 2.136,-1.944 2.868003,-3.12 l 4.044,-0.072 c -0.42,1.5 -1.14,2.904 -2.064,4.02 -1.152,1.38 -2.424003,2.292 -4.236003,3.036 0.312,0.24 0.408,0.36 0.6,0.708 1.752003,-0.792 3.072003,-1.74 4.176003,-3 1.02,-1.188 1.896,-2.82 2.4,-4.512 0.132,-0.432 0.132,-0.444 0.24,-0.588 l -0.516,-0.504 c -0.168,0.072 -0.204,0.084 -0.624,0.084 -3.468,0.06 -3.468,0.06 -3.624,0.096 0.132,-0.216 0.24,-0.42 0.552,-1.068 0.156,-0.336 0.156,-0.336 0.264,-0.492 z" /><path
+               id="path728"
+               style=""
+               d="m 111.24,-9.42 c 0.072,0.192 0.096,0.252 0.204,0.756 0.312,1.536 0.54,2.376 0.876,3.36 -0.744,0.372 -1.116,0.6 -1.572,0.972 -0.708,0.576 -1.068,1.272 -1.068,2.04 0,0.948 0.504,1.608 1.488,1.968 0.576,0.216 1.476,0.324 2.664,0.324 0.84,0 1.416,-0.036 2.652,-0.156 0.66,-0.072 0.66,-0.072 0.888,-0.072 l -0.096,-0.996 c -0.708,0.252 -2.052,0.408 -3.432,0.408 -2.352,0 -3.276,-0.42 -3.276,-1.512 0,-0.996 0.888,-1.788 2.94,-2.604 1.056,-0.432 2.772,-0.984 3.612,-1.164 l -0.36,-0.912 c -0.24,0.12 -0.348,0.156 -0.768,0.312 -1.86,0.648 -2.196,0.78 -2.904,1.068 -0.408,-1.2 -0.852,-3.168 -0.9,-3.972 z" /><path
+               id="path730"
+               style=""
+               d="m 124.104,0.372 c -0.048,-0.336 -0.06,-0.6 -0.06,-1.272 v -3.612 c 0,-0.3 -0.012,-0.468 -0.048,-0.708 l 0.024,-0.012 c 0.108,0.084 0.192,0.132 0.372,0.204 1.692,0.696 3.348,1.584 4.476,2.376 l 0.516,-0.888 c -2.1,-1.212 -3.492,-1.872 -5.34,-2.532 v -2.244 c 0,-0.684 0.012,-0.936 0.06,-1.248 h -1.032 c 0.048,0.3 0.072,0.588 0.072,1.224 v 7.452 c 0,0.648 -0.024,0.936 -0.072,1.26 z" /><path
+               id="path732"
+               style=""
+               d="m 134.208,-8.16 c 0.324,-0.048 0.612,-0.06 1.248,-0.06 h 4.032 c 0.636,0 0.924,0.012 1.248,0.06 V -9.084 C 140.388,-9.012 140.148,-9 139.476,-9 h -4.008 c -0.672,0 -0.912,-0.012 -1.26,-0.084 z m -1.032,2.76 c 0.408,-0.048 0.756,-0.06 1.392,-0.06 h 6.264 c -0.552,1.476 -1.092,2.364 -1.944,3.144 -0.9,0.828 -1.956,1.368 -3.564,1.824 0.288,0.348 0.372,0.48 0.516,0.828 3.108,-1.044 4.764,-2.58 5.784,-5.376 0.204,-0.528 0.228,-0.588 0.336,-0.756 l -0.444,-0.516 c -0.204,0.072 -0.336,0.084 -0.78,0.084 h -6.156 c -0.72,0 -0.972,-0.012 -1.404,-0.072 z" /><path
+               id="path734"
+               style=""
+               d="m 145.392,-7.836 c 1.044,0.636 1.992,1.416 2.856,2.352 l 0.624,-0.744 c -0.864,-0.852 -1.608,-1.44 -2.892,-2.256 z m 0.084,7.8 c 0.3,-0.096 0.396,-0.12 0.72,-0.192 2.004,-0.456 3.24,-0.948 4.476,-1.788 1.584,-1.092 2.7,-2.496 3.66,-4.584 -0.336,-0.228 -0.456,-0.336 -0.732,-0.708 -0.972,2.544 -2.58,4.308 -4.896,5.34 -1.116,0.516 -2.556,0.888 -3.492,0.924 z" /><path
+               id="path736"
+               style=""
+               d="m 159.576,-6.96 v -1.428 c 0,-0.528 0.012,-0.684 0.048,-0.972 h -0.972 c 0.036,0.264 0.048,0.372 0.048,1.008 v 1.392 h -0.996 c -0.756,0 -0.996,-0.012 -1.404,-0.072 v 0.912 c 0.384,-0.048 0.624,-0.06 1.392,-0.06 h 1.008 v 1.968 c 0,0.636 -0.012,0.756 -0.048,1.008 h 0.972 c -0.036,-0.276 -0.048,-0.444 -0.048,-0.972 V -6.18 h 3.648 c -0.024,1.92 -0.096,2.64 -0.36,3.36 -0.48,1.212 -1.692,2.148 -3.264,2.544 0.276,0.264 0.396,0.444 0.54,0.756 1.62,-0.552 2.7,-1.392 3.348,-2.592 0.444,-0.864 0.576,-1.752 0.588,-4.068 h 1.056 c 0.768,0 1.008,0.012 1.392,0.06 v -0.912 c -0.408,0.06 -0.648,0.072 -1.404,0.072 h -1.032 v -0.636 c 0,-0.252 0,-0.48 0,-0.624 0.012,-0.792 0.012,-0.804 0.048,-1.14 H 163.2 c 0.036,0.276 0.036,0.384 0.036,1.224 v 1.176 z m 5.016,-2.976 c 0.324,0.54 0.564,1.116 0.852,2.004 l 0.636,-0.216 C 165.804,-9 165.612,-9.42 165.228,-10.116 Z m 1.404,-0.372 c 0.288,0.468 0.612,1.236 0.84,1.968 l 0.624,-0.216 c -0.192,-0.648 -0.492,-1.332 -0.852,-1.956 z" /><path
+               id="path738"
+               style=""
+               d="m 172.13999,-9.78 c -0.06,0.42 -0.3,0.96 -0.756,1.752 -0.828,1.464 -1.74,2.46 -3.012,3.288 0.348,0.216 0.468,0.324 0.672,0.624 1.176,-0.888 2.136,-1.944 2.868,-3.12 l 4.044,-0.072 c -0.42,1.5 -1.14,2.904 -2.064,4.02 -1.152,1.38 -2.424,2.292 -4.236,3.036 0.312,0.24 0.408,0.36 0.6,0.708 1.752,-0.792 3.072,-1.74 4.176,-3 1.02,-1.188 1.896,-2.82 2.4,-4.512 0.132,-0.432 0.132,-0.444 0.24,-0.588 l -0.516,-0.504 c -0.168,0.072 -0.204,0.084 -0.624,0.084 -3.468,0.06 -3.468,0.06 -3.624,0.096 0.132,-0.216 0.24,-0.42 0.552,-1.068 0.156,-0.336 0.156,-0.336 0.264,-0.492 z" /><path
+               id="path740"
+               style=""
+               d="m 181.71599,-8.496 c 0.876,0.3 2.124,0.972 2.952,1.584 l 0.492,-0.804 c -1.02,-0.636 -1.8,-1.032 -2.976,-1.512 z m -0.948,2.868 c 1.092,0.408 2.184,1.008 3.06,1.644 l 0.468,-0.804 c -1.044,-0.66 -1.908,-1.104 -3.048,-1.572 z m 0.408,5.748 c 0.18,-0.06 0.228,-0.084 0.468,-0.132 0.24,-0.048 0.456,-0.096 0.648,-0.132 0.984,-0.204 2.196,-0.612 3.036,-1.032 2.112,-1.044 3.576,-2.676 4.62,-5.172 -0.324,-0.216 -0.444,-0.324 -0.744,-0.636 -0.372,1.056 -0.768,1.812 -1.44,2.688 -0.972,1.26 -2.112,2.112 -3.6,2.676 -1.2,0.456 -2.448,0.744 -3.228,0.744 z" /><path
+               id="path742"
+               style=""
+               d="m 199.27199,0.048 v 0.6 h 0.828 c -0.036,-0.204 -0.048,-0.36 -0.048,-0.744 V -5.52 c 0,-0.42 0,-0.612 0.012,-0.924 -0.216,0.012 -0.432,0.024 -0.816,0.024 h -4.464 c -0.468,0 -0.756,-0.024 -1.044,-0.072 v 0.828 c 0.3,-0.048 0.408,-0.048 1.044,-0.048 h 4.488 v 2.088 h -4.212 c -0.468,0 -0.756,-0.024 -1.044,-0.072 v 0.816 c 0.3,-0.048 0.396,-0.048 1.032,-0.048 h 4.224 v 2.256 h -4.608 c -0.444,0 -0.756,-0.024 -1.044,-0.072 v 0.84 c 0.3,-0.048 0.396,-0.048 1.044,-0.048 z" /><path
+               id="path744"
+               style=""
+               d="m 204.91199,-7.836 c 1.044,0.636 1.992,1.416 2.856,2.352 l 0.624,-0.744 c -0.864,-0.852 -1.608,-1.44 -2.892,-2.256 z m 0.084,7.8 c 0.3,-0.096 0.396,-0.12 0.72,-0.192 2.004,-0.456 3.24,-0.948 4.476,-1.788 1.584,-1.092 2.7,-2.496 3.66,-4.584 -0.336,-0.228 -0.456,-0.336 -0.732,-0.708 -0.972,2.544 -2.58,4.308 -4.896,5.34 -1.116,0.516 -2.556,0.888 -3.492,0.924 z" /><path
+               id="path746"
+               style=""
+               d="m 219.17999,-8.076 c -1.2,0 -2.124,-0.048 -2.544,-0.132 l -0.012,0.828 c 0.132,-0.012 0.18,-0.012 0.264,-0.012 0.048,0 0.108,0 0.18,0 0.456,0.012 1.488,0.036 1.776,0.036 0.072,0 0.18,-0.012 0.228,-0.024 -0.072,0.12 -0.072,0.12 -0.108,0.18 -0.852,1.524 -1.86,2.808 -2.688,3.432 l 0.672,0.672 c 0.192,-0.324 0.456,-0.6 0.924,-0.996 0.972,-0.828 1.908,-1.272 2.676,-1.272 0.564,0 0.852,0.288 0.948,0.948 -0.864,0.384 -1.344,0.636 -1.788,0.972 -0.84,0.612 -1.224,1.224 -1.224,1.908 0,0.588 0.3,1.104 0.792,1.38 0.564,0.3 1.308,0.444 2.4,0.444 0.936,0 1.968,-0.084 2.916,-0.24 0.24,-0.036 0.3,-0.048 0.48,-0.06 l -0.108,-0.924 c -0.708,0.276 -2.004,0.468 -3.264,0.468 -1.644,0 -2.376,-0.348 -2.376,-1.14 0,-0.42 0.228,-0.792 0.732,-1.188 0.348,-0.264 0.732,-0.492 1.524,-0.864 0.012,0.144 0.012,0.216 0.012,0.36 0,0.72 -0.036,1.464 -0.072,1.728 l 0.816,-0.012 c -0.024,-0.168 -0.024,-0.252 -0.024,-0.432 0,-0.12 0,-0.3 0.012,-0.54 0.012,-0.288 0.012,-0.516 0.012,-0.66 0,-0.252 0,-0.456 -0.024,-0.732 1.5,-0.6 2.58,-0.948 3.204,-1.056 l -0.384,-0.84 c -0.192,0.132 -0.228,0.144 -0.816,0.348 -0.552,0.204 -1.008,0.372 -2.088,0.792 -0.156,-0.876 -0.708,-1.332 -1.584,-1.332 -0.624,0 -1.26,0.204 -1.812,0.588 -0.12,0.084 -0.12,0.084 -0.552,0.42 -0.012,-0.012 -0.024,-0.012 -0.024,-0.024 0.624,-0.576 1.104,-1.248 1.656,-2.316 1.404,-0.036 2.712,-0.144 3.96,-0.312 0.216,-0.036 0.288,-0.048 0.48,-0.06 l -0.072,-0.816 c -0.66,0.216 -1.8,0.36 -3.78,0.456 -0.12,0 -0.144,0 -0.252,0.012 0.06,-0.108 0.216,-0.432 0.372,-0.816 0.204,-0.492 0.204,-0.492 0.312,-0.648 l -0.96,-0.168 c -0.036,0.384 -0.18,0.804 -0.576,1.644 z" /><path
+               id="path748"
+               style=""
+               d="m 229.41599,-8.892 c 0.228,0.384 0.492,1.08 0.864,2.28 -0.192,0.06 -0.312,0.084 -0.612,0.192 -1.428,0.492 -1.428,0.492 -1.764,0.564 l 0.312,0.852 c 0.324,-0.18 0.96,-0.432 1.644,-0.66 0.54,-0.168 0.54,-0.168 0.648,-0.216 0.78,2.604 1.452,5.496 1.512,6.48 l 0.972,-0.216 c -0.072,-0.204 -0.096,-0.264 -0.156,-0.516 -0.504,-2.256 -0.936,-3.948 -1.548,-5.988 1.74,-0.564 3.036,-0.852 3.912,-0.852 1.212,0 1.92,0.54 1.92,1.452 0,0.516 -0.192,0.936 -0.576,1.224 -0.396,0.3 -0.924,0.468 -1.44,0.468 -0.696,0 -1.38,-0.192 -2.016,-0.552 0.06,0.468 0.072,0.54 0.072,0.684 0,0.036 0,0.12 -0.012,0.216 0.708,0.3 1.356,0.444 2.028,0.444 1.644,0 2.82,-1.032 2.82,-2.472 0,-1.344 -1.032,-2.208 -2.64,-2.208 -0.3,0 -0.564,0.024 -0.9,0.072 -0.012,-0.144 -0.012,-0.372 -0.012,-0.384 0,-0.936 0.012,-1.308 0.06,-1.62 h -0.9 c 0.036,0.3 0.048,0.408 0.048,2.124 -0.9,0.18 -0.9,0.18 -2.58,0.672 -0.168,-0.54 -0.288,-0.876 -0.528,-1.584 -0.132,-0.36 -0.168,-0.468 -0.228,-0.732 z" /><path
+               id="path750"
+               style=""
+               d="m 242.23199,-9.72 c 0,0.144 -0.012,0.204 -0.036,0.384 -0.3,2.124 -0.408,3.252 -0.408,4.428 0,0.06 0,0.168 0,0.276 l 0.024,1.248 0.012,0.216 c 0,0.024 0,0.072 0,0.132 l 0.864,-0.036 c -0.012,-0.18 -0.012,-0.24 -0.012,-0.288 0,-0.876 0.228,-1.8 0.648,-2.676 0.684,-1.404 1.452,-2.088 2.364,-2.088 1.152,0 1.824,1.116 1.824,3.048 0,1.92 -0.66,3.18 -2.064,3.984 -0.696,0.396 -1.32,0.588 -2.436,0.756 0.264,0.324 0.336,0.456 0.48,0.816 0.84,-0.18 1.56,-0.42 2.136,-0.708 1.8,-0.9 2.772,-2.544 2.772,-4.716 0,-1.284 -0.216,-2.172 -0.72,-2.916 -0.468,-0.696 -1.14,-1.068 -1.92,-1.068 -0.936,0 -1.728,0.516 -2.4,1.548 -0.348,0.54 -0.588,1.128 -0.732,1.788 -0.06,0.252 -0.06,0.252 -0.084,0.348 l -0.048,-0.012 c 0.036,-0.612 0.204,-1.92 0.396,-3.132 0.108,-0.648 0.18,-0.984 0.276,-1.236 z" /><path
+               id="path752"
+               style=""
+               d="m 256.47599,-8.844 h 0.048 c 0.288,0 0.288,0 0.816,0.024 v -0.744 c -0.276,0.036 -0.492,0.048 -0.9,0.048 h -3.804 c -0.36,0 -0.648,-0.024 -0.936,-0.06 v 0.792 c 0.3,-0.048 0.564,-0.06 0.876,-0.06 h 0.096 v 7.104 c -0.396,0.048 -0.396,0.048 -0.444,0.06 -0.432,0.06 -0.444,0.06 -0.648,0.06 l 0.24,0.864 c 0.384,-0.132 0.84,-0.228 1.68,-0.36 0.924,-0.156 0.924,-0.156 1.38,-0.24 0.696,-0.12 0.696,-0.12 0.84,-0.144 v 1.176 c 0,0.48 -0.024,0.9 -0.072,1.248 h 0.9 c -0.048,-0.288 -0.072,-0.708 -0.072,-1.236 v -1.32 c 0.348,-0.06 0.624,-0.108 0.828,-0.156 l -0.06,-0.684 -0.768,0.144 z m -0.756,0 v 1.776 h -2.292 v -1.776 z m 0,2.4 v 1.812 h -2.292 v -1.812 z m 0,2.448 v 1.788 l -2.292,0.36 v -2.148 z m 2.304,-4.704 c -0.444,0 -0.708,-0.012 -1.008,-0.06 v 0.816 c 0.228,-0.036 0.384,-0.048 0.708,-0.06 0.144,1.212 0.276,1.92 0.492,2.712 0.276,0.984 0.648,1.884 1.128,2.712 -0.732,1.044 -1.548,1.788 -2.688,2.472 0.204,0.204 0.336,0.42 0.48,0.72 1.128,-0.756 1.764,-1.368 2.628,-2.52 0.696,1.008 1.344,1.644 2.592,2.508 0.144,-0.348 0.288,-0.576 0.468,-0.78 -1.236,-0.756 -1.884,-1.368 -2.604,-2.4 0.936,-1.536 1.608,-3.432 1.884,-5.304 0.06,-0.456 0.096,-0.708 0.132,-0.864 -0.288,0.036 -0.588,0.048 -0.9,0.048 z m 3.324,0.696 c -0.216,1.368 -0.408,2.112 -0.804,3.12 -0.228,0.612 -0.468,1.104 -0.756,1.608 -0.36,-0.672 -0.648,-1.392 -0.876,-2.22 -0.228,-0.816 -0.3,-1.224 -0.456,-2.508 z" /><path
+               id="path754"
+               style=""
+               d="m 266.23201,-9.72 c 0,0.144 -0.012,0.204 -0.036,0.384 -0.3,2.124 -0.408,3.252 -0.408,4.428 0,0.06 0,0.168 0,0.276 l 0.024,1.248 0.012,0.216 c 0,0.024 0,0.072 0,0.132 l 0.864,-0.036 c -0.012,-0.18 -0.012,-0.24 -0.012,-0.288 0,-0.876 0.228,-1.8 0.648,-2.676 0.684,-1.404 1.452,-2.088 2.364,-2.088 1.152,0 1.824,1.116 1.824,3.048 0,1.92 -0.66,3.18 -2.064,3.984 -0.696,0.396 -1.32,0.588 -2.436,0.756 0.264,0.324 0.336,0.456 0.48,0.816 0.84,-0.18 1.56,-0.42 2.136,-0.708 1.8,-0.9 2.772,-2.544 2.772,-4.716 0,-1.284 -0.216,-2.172 -0.72,-2.916 -0.468,-0.696 -1.14,-1.068 -1.92,-1.068 -0.936,0 -1.728,0.516 -2.4,1.548 -0.348,0.54 -0.588,1.128 -0.732,1.788 -0.06,0.252 -0.06,0.252 -0.084,0.348 l -0.048,-0.012 c 0.036,-0.612 0.204,-1.92 0.396,-3.132 0.108,-0.648 0.18,-0.984 0.276,-1.236 z" /></g></g><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g452"><path
+             id="path454"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 313.0276,180.3621 12.9362,-0.7347" /></g><g
+           transform="matrix(1,0,0,-1,11,504)"
+           id="g456"><path
+             id="path458"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="M 376.4833,171.512 507.8074,374.1732" /></g></g></g></g></svg>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/slide/images/paxos1.svg	Tue Feb 19 21:49:55 2019 +0900
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentScriptType="application/ecmascript" contentStyleType="text/css" height="728px" preserveAspectRatio="none" style="width:864px;height:728px;" version="1.1" viewBox="0 0 864 728" width="864px" zoomAndPan="magnify"><defs><filter height="300%" id="fc7ra6n53s53c" width="300%" x="-1" y="-1"><feGaussianBlur result="blurOut" stdDeviation="2.0"/><feColorMatrix in="blurOut" result="blurOut2" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .4 0"/><feOffset dx="4.0" dy="4.0" in="blurOut2" result="blurOut3"/><feBlend in="SourceGraphic" in2="blurOut3" mode="normal"/></filter></defs><g><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="56" x="405.5" y="23.5352">Paxos 1</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="68" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="208" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="346" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="482" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="618" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="749" y="78.9766"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="73" x2="73" y1="68.9766" y2="688.1875"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="213" x2="213" y1="68.9766" y2="688.1875"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="351" x2="351" y1="68.9766" y2="688.1875"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="487" x2="487" y1="68.9766" y2="688.1875"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="623" x2="623" y1="68.9766" y2="688.1875"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="754" x2="754" y1="68.9766" y2="688.1875"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="28" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="35" y="54.0234">proposer1</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="28" y="687.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="35" y="707.7227">proposer1</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="168" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="175" y="54.0234">proposer2</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="168" y="687.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="175" y="707.7227">proposer2</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="308" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="315" y="54.0234">acceptor1</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="308" y="687.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="315" y="707.7227">acceptor1</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="444" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="451" y="54.0234">acceptor2</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="444" y="687.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="451" y="707.7227">acceptor2</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="580" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="587" y="54.0234">acceptor3</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="580" y="687.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="587" y="707.7227">acceptor3</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="72" x="716" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="58" x="723" y="54.0234">learner1</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="72" x="716" y="687.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="58" x="723" y="707.7227">learner1</text><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="68" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="208" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="346" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="482" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="618" y="78.9766"/><rect fill="#FFFFFF" filter="url(#fc7ra6n53s53c)" height="600.2109" style="stroke: #000000; stroke-width: 1.0;" width="10" x="749" y="78.9766"/><polygon fill="#000000" points="334,111.5977,344,115.5977,334,119.5977,338,115.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="115.5977" y2="115.5977"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="85" y="95.5449">Prepare request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="85" y="110.8555">Proposal(7, 1)</text><polygon fill="#000000" points="470,125.5977,480,129.5977,470,133.5977,474,129.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="129.5977" y2="129.5977"/><polygon fill="#000000" points="606,139.5977,616,143.5977,606,147.5977,610,143.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="143.5977" y2="143.5977"/><polygon fill="#000000" points="89,184.2188,79,188.2188,89,192.2188,85,188.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="345" y1="188.2188" y2="188.2188"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="95" y="168.166">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="95" y="183.4766">Proposal(7, 1)</text><polygon fill="#000000" points="89,198.2188,79,202.2188,89,206.2188,85,202.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="481" y1="202.2188" y2="202.2188"/><polygon fill="#000000" points="89,212.2188,79,216.2188,89,220.2188,85,216.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="617" y1="216.2188" y2="216.2188"/><polygon fill="#000000" points="334,256.8398,344,260.8398,334,264.8398,338,260.8398" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="340" y1="260.8398" y2="260.8398"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="225" y="240.7871">Prepare request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="225" y="256.0977">Proposal(8, 2)</text><polygon fill="#000000" points="470,270.8398,480,274.8398,470,278.8398,474,274.8398" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="476" y1="274.8398" y2="274.8398"/><polygon fill="#000000" points="606,284.8398,616,288.8398,606,292.8398,610,288.8398" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="612" y1="288.8398" y2="288.8398"/><polygon fill="#000000" points="229,329.4609,219,333.4609,229,337.4609,225,333.4609" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="345" y1="333.4609" y2="333.4609"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="235" y="313.4082">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="235" y="328.7188">Proposal(8, 2)</text><polygon fill="#000000" points="229,343.4609,219,347.4609,229,351.4609,225,347.4609" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="481" y1="347.4609" y2="347.4609"/><polygon fill="#000000" points="229,357.4609,219,361.4609,229,365.4609,225,361.4609" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="617" y1="361.4609" y2="361.4609"/><polygon fill="#000000" points="334,402.082,344,406.082,334,410.082,338,406.082" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="340" y1="406.082" y2="406.082"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="225" y="386.0293">Accept request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="225" y="401.3398">Proposal(8, 2)</text><polygon fill="#000000" points="470,416.082,480,420.082,470,424.082,474,420.082" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="476" y1="420.082" y2="420.082"/><polygon fill="#000000" points="606,430.082,616,434.082,606,438.082,610,434.082" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="612" y1="434.082" y2="434.082"/><polygon fill="#000000" points="229,474.7031,219,478.7031,229,482.7031,225,478.7031" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="345" y1="478.7031" y2="478.7031"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="235" y="458.6504">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="235" y="473.9609">Proposal(8, 2)</text><polygon fill="#000000" points="737,519.3242,747,523.3242,737,527.3242,741,523.3242" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="356" x2="743" y1="523.3242" y2="523.3242"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="363" y="503.2715">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="363" y="518.582">Proposal(8, 2)</text><polygon fill="#000000" points="229,563.9453,219,567.9453,229,571.9453,225,567.9453" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="481" y1="567.9453" y2="567.9453"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="235" y="547.8926">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="235" y="563.2031">Proposal(8, 2)</text><polygon fill="#000000" points="737,608.5664,747,612.5664,737,616.5664,741,612.5664" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="492" x2="743" y1="612.5664" y2="612.5664"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="499" y="592.5137">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="499" y="607.8242">Proposal(8, 2)</text><line style="stroke: #000000; stroke-width: 1.0;" x1="759" x2="801" y1="657.1875" y2="657.1875"/><line style="stroke: #000000; stroke-width: 1.0;" x1="801" x2="801" y1="657.1875" y2="670.1875"/><line style="stroke: #000000; stroke-width: 1.0;" x1="760" x2="801" y1="670.1875" y2="670.1875"/><polygon fill="#000000" points="770,666.1875,760,670.1875,770,674.1875,766,670.1875" style="stroke: #000000; stroke-width: 1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="45" x="766" y="637.1348">chosen</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="766" y="652.4453">Proposal(8, 2)</text><!--
+@startuml
+title Paxos 1
+
+skinparam sequence {
+ArrowColor black
+LifeLineBorderColor black
+
+ParticipantBorderColor black
+ParticipantBackgroundColor white
+ParticipantPadding 20
+}
+
+
+participant proposer1
+activate proposer1
+participant proposer2
+activate proposer2
+
+participant acceptor1
+activate acceptor1
+participant acceptor2
+activate acceptor2
+participant acceptor3
+activate acceptor3
+
+participant learner1
+activate learner1
+
+
+proposer1 -> acceptor1:Prepare request \nProposal(7, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 - -> proposer1:Promise Success\nProposal(7, 1)
+acceptor2 - -> proposer1
+acceptor3 - -> proposer1
+
+proposer2 -> acceptor1:Prepare request \nProposal(8, 2)
+proposer2 -> acceptor2
+proposer2 -> acceptor3
+
+acceptor1 - -> proposer2:Promise Success\nProposal(8, 2)
+acceptor2 - -> proposer2
+acceptor3 - -> proposer2
+
+proposer2 -> acceptor1:Accept request \nProposal(8, 2)
+proposer2 -> acceptor2
+proposer2 -> acceptor3
+
+acceptor1 - -> proposer2:Accept \nProposal(8, 2)
+acceptor1 -> learner1:Accept \nProposal(8, 2)
+
+acceptor2 - -> proposer2:Accept \nProposal(8, 2)
+acceptor2 -> learner1:Accept \nProposal(8, 2)
+
+learner1 -> learner1:chosen \nProposal(8, 2)
+
+@enduml
+
+PlantUML version 1.2019.01(Sun Feb 10 00:32:04 JST 2019)
+(GPL source distribution)
+Java Runtime: OpenJDK Runtime Environment
+JVM: OpenJDK 64-Bit Server VM
+Java Version: 11.0.1+13
+Operating System: Mac OS X
+OS Version: 10.13.6
+Default Encoding: UTF-8
+Language: ja
+Country: JP
+--></g></svg>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/slide/images/paxos2.svg	Tue Feb 19 21:49:55 2019 +0900
@@ -0,0 +1,102 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentScriptType="application/ecmascript" contentStyleType="text/css" height="1316px" preserveAspectRatio="none" style="width:872px;height:1316px;" version="1.1" viewBox="0 0 872 1316" width="872px" zoomAndPan="magnify"><defs><filter height="300%" id="f1ronj4dwj7ktb" width="300%" x="-1" y="-1"><feGaussianBlur result="blurOut" stdDeviation="2.0"/><feColorMatrix in="blurOut" result="blurOut2" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .4 0"/><feOffset dx="4.0" dy="4.0" in="blurOut2" result="blurOut3"/><feBlend in="SourceGraphic" in2="blurOut3" mode="normal"/></filter></defs><g><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="56" x="409.5" y="23.5352">Paxos 2</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="68" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="208" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="346" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="482" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="618" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="749" y="78.9766"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="73" x2="73" y1="68.9766" y2="1275.709"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="213" x2="213" y1="68.9766" y2="1275.709"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="351" x2="351" y1="68.9766" y2="1275.709"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="487" x2="487" y1="68.9766" y2="1275.709"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="623" x2="623" y1="68.9766" y2="1275.709"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="754" x2="754" y1="68.9766" y2="1275.709"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="28" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="35" y="54.0234">proposer1</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="28" y="1274.709"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="35" y="1295.2441">proposer1</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="168" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="175" y="54.0234">proposer2</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="168" y="1274.709"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="175" y="1295.2441">proposer2</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="308" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="315" y="54.0234">acceptor1</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="308" y="1274.709"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="315" y="1295.2441">acceptor1</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="444" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="451" y="54.0234">acceptor2</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="444" y="1274.709"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="451" y="1295.2441">acceptor2</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="580" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="587" y="54.0234">acceptor3</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="580" y="1274.709"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="587" y="1295.2441">acceptor3</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="72" x="716" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="58" x="723" y="54.0234">learner1</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="72" x="716" y="1274.709"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="58" x="723" y="1295.2441">learner1</text><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="68" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="208" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="346" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="482" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="618" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1ronj4dwj7ktb)" height="1187.7324" style="stroke: #000000; stroke-width: 1.0;" width="10" x="749" y="78.9766"/><polygon fill="#000000" points="334,111.5977,344,115.5977,334,119.5977,338,115.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="115.5977" y2="115.5977"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="85" y="95.5449">Prepare request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="85" y="110.8555">Proposal(7, 1)</text><polygon fill="#000000" points="470,125.5977,480,129.5977,470,133.5977,474,129.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="129.5977" y2="129.5977"/><polygon fill="#000000" points="606,139.5977,616,143.5977,606,147.5977,610,143.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="143.5977" y2="143.5977"/><polygon fill="#000000" points="89,184.2188,79,188.2188,89,192.2188,85,188.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="345" y1="188.2188" y2="188.2188"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="95" y="168.166">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="95" y="183.4766">Proposal(7, 1)</text><polygon fill="#000000" points="89,198.2188,79,202.2188,89,206.2188,85,202.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="481" y1="202.2188" y2="202.2188"/><polygon fill="#000000" points="89,212.2188,79,216.2188,89,220.2188,85,216.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="617" y1="216.2188" y2="216.2188"/><polygon fill="#000000" points="334,256.8398,344,260.8398,334,264.8398,338,260.8398" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="340" y1="260.8398" y2="260.8398"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="225" y="240.7871">Prepare request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="225" y="256.0977">Proposal(8, 2)</text><polygon fill="#000000" points="470,270.8398,480,274.8398,470,278.8398,474,274.8398" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="476" y1="274.8398" y2="274.8398"/><polygon fill="#000000" points="606,284.8398,616,288.8398,606,292.8398,610,288.8398" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="612" y1="288.8398" y2="288.8398"/><polygon fill="#000000" points="229,329.4609,219,333.4609,229,337.4609,225,333.4609" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="345" y1="333.4609" y2="333.4609"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="235" y="313.4082">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="235" y="328.7188">Proposal(8, 2)</text><polygon fill="#000000" points="229,343.4609,219,347.4609,229,351.4609,225,347.4609" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="481" y1="347.4609" y2="347.4609"/><polygon fill="#000000" points="229,357.4609,219,361.4609,229,365.4609,225,361.4609" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="617" y1="361.4609" y2="361.4609"/><polygon fill="#000000" points="334,402.082,344,406.082,334,410.082,338,406.082" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="406.082" y2="406.082"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="85" y="386.0293">Accept request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="85" y="401.3398">Proposal(7, 1)</text><polygon fill="#000000" points="470,416.082,480,420.082,470,424.082,474,420.082" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="420.082" y2="420.082"/><polygon fill="#000000" points="606,430.082,616,434.082,606,438.082,610,434.082" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="434.082" y2="434.082"/><polygon fill="#000000" points="89,474.7031,79,478.7031,89,482.7031,85,478.7031" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="345" y1="478.7031" y2="478.7031"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="69" x="95" y="458.6504">Accept Fail</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="95" y="473.9609">Proposal(8, 2)</text><polygon fill="#000000" points="89,488.7031,79,492.7031,89,496.7031,85,492.7031" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="481" y1="492.7031" y2="492.7031"/><polygon fill="#000000" points="89,502.7031,79,506.7031,89,510.7031,85,506.7031" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="617" y1="506.7031" y2="506.7031"/><polygon fill="#000000" points="470,547.3242,480,551.3242,470,555.3242,474,551.3242" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="476" y1="551.3242" y2="551.3242"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="225" y="531.2715">Accept request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="225" y="546.582">Proposal(8, 2)</text><polygon fill="#000000" points="229,591.9453,219,595.9453,229,599.9453,225,595.9453" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="481" y1="595.9453" y2="595.9453"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="235" y="575.8926">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="235" y="591.2031">Proposal(8, 2)</text><polygon fill="#000000" points="737,636.5664,747,640.5664,737,644.5664,741,640.5664" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="492" x2="743" y1="640.5664" y2="640.5664"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="499" y="620.5137">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="499" y="635.8242">Proposal(8, 2)</text><polygon fill="#000000" points="334,681.1875,344,685.1875,334,689.1875,338,685.1875" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="685.1875" y2="685.1875"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="85" y="665.1348">Prepare request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="85" y="680.4453">Proposal(13, 1)</text><polygon fill="#000000" points="470,695.1875,480,699.1875,470,703.1875,474,699.1875" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="699.1875" y2="699.1875"/><polygon fill="#000000" points="606,709.1875,616,713.1875,606,717.1875,610,713.1875" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="713.1875" y2="713.1875"/><polygon fill="#000000" points="89,769.1191,79,773.1191,89,777.1191,85,773.1191" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="481" y1="773.1191" y2="773.1191"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="95" y="737.7559">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="82" x="95" y="753.0664">But Accepted</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="95" y="768.377">Proposal(8, 2)</text><polygon fill="#000000" points="89,813.7402,79,817.7402,89,821.7402,85,817.7402" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="345" y1="817.7402" y2="817.7402"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="95" y="797.6875">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="95" y="812.998">Proposal(13, 1)</text><polygon fill="#000000" points="89,827.7402,79,831.7402,89,835.7402,85,831.7402" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="617" y1="831.7402" y2="831.7402"/><polygon fill="#000000" points="334,872.3613,344,876.3613,334,880.3613,338,876.3613" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="340" y1="876.3613" y2="876.3613"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="225" y="856.3086">Accept request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="225" y="871.6191">Proposal(8, 2)</text><polygon fill="#000000" points="606,886.3613,616,890.3613,606,894.3613,610,890.3613" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="612" y1="890.3613" y2="890.3613"/><polygon fill="#000000" points="229,930.9824,219,934.9824,229,938.9824,225,934.9824" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="345" y1="934.9824" y2="934.9824"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="69" x="235" y="914.9297">Accept Fail</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="235" y="930.2402">Proposal(8, 2)</text><polygon fill="#000000" points="229,944.9824,219,948.9824,229,952.9824,225,948.9824" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="617" y1="948.9824" y2="948.9824"/><polygon fill="#000000" points="334,989.6035,344,993.6035,334,997.6035,338,993.6035" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="993.6035" y2="993.6035"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="85" y="973.5508">Accept request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="85" y="988.8613">Proposal(13, 2)</text><polygon fill="#000000" points="470,1003.6035,480,1007.6035,470,1011.6035,474,1007.6035" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="1007.6035" y2="1007.6035"/><polygon fill="#000000" points="606,1017.6035,616,1021.6035,606,1025.6035,610,1021.6035" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="1021.6035" y2="1021.6035"/><polygon fill="#000000" points="229,1062.2246,219,1066.2246,229,1070.2246,225,1066.2246" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="345" y1="1066.2246" y2="1066.2246"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="235" y="1046.1719">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="235" y="1061.4824">Proposal(13, 2)</text><polygon fill="#000000" points="737,1106.8457,747,1110.8457,737,1114.8457,741,1110.8457" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="356" x2="743" y1="1110.8457" y2="1110.8457"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="363" y="1090.793">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="363" y="1106.1035">Proposal(13, 2)</text><polygon fill="#000000" points="229,1151.4668,219,1155.4668,229,1159.4668,225,1155.4668" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="481" y1="1155.4668" y2="1155.4668"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="235" y="1135.4141">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="235" y="1150.7246">Proposal(13, 2)</text><polygon fill="#000000" points="737,1196.0879,747,1200.0879,737,1204.0879,741,1200.0879" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="492" x2="743" y1="1200.0879" y2="1200.0879"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="499" y="1180.0352">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="499" y="1195.3457">Proposal(13, 2)</text><line style="stroke: #000000; stroke-width: 1.0;" x1="759" x2="801" y1="1244.709" y2="1244.709"/><line style="stroke: #000000; stroke-width: 1.0;" x1="801" x2="801" y1="1244.709" y2="1257.709"/><line style="stroke: #000000; stroke-width: 1.0;" x1="760" x2="801" y1="1257.709" y2="1257.709"/><polygon fill="#000000" points="770,1253.709,760,1257.709,770,1261.709,766,1257.709" style="stroke: #000000; stroke-width: 1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="45" x="766" y="1224.6563">chosen</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="766" y="1239.9668">Proposal(13, 2)</text><!--
+@startuml
+title Paxos 2
+
+skinparam sequence {
+ArrowColor black
+LifeLineBorderColor black
+
+ParticipantBorderColor black
+ParticipantBackgroundColor white
+ParticipantPadding 20
+}
+
+
+participant proposer1
+activate proposer1
+participant proposer2
+activate proposer2
+
+participant acceptor1
+activate acceptor1
+participant acceptor2
+activate acceptor2
+participant acceptor3
+activate acceptor3
+
+participant learner1
+activate learner1
+
+
+proposer1 -> acceptor1:Prepare request \nProposal(7, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 - -> proposer1:Promise Success\nProposal(7, 1)
+acceptor2 - -> proposer1
+acceptor3 - -> proposer1
+
+proposer2 -> acceptor1:Prepare request \nProposal(8, 2)
+proposer2 -> acceptor2
+proposer2 -> acceptor3
+
+acceptor1 - -> proposer2:Promise Success\nProposal(8, 2)
+acceptor2 - -> proposer2
+acceptor3 - -> proposer2
+
+proposer1 -> acceptor1:Accept request \nProposal(7, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+
+
+acceptor1 - -> proposer1:Accept Fail\nProposal(8, 2)
+acceptor2 - -> proposer1
+acceptor3 - -> proposer1
+
+
+proposer2 -> acceptor2:Accept request \nProposal(8, 2)
+
+acceptor2 - -> proposer2:Accept \nProposal(8, 2)
+acceptor2 -> learner1:Accept \nProposal(8, 2)
+
+proposer1 -> acceptor1:Prepare request \nProposal(13, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor2 - -> proposer1:Promise Success\nBut Accepted \nProposal(8, 2)
+acceptor1 - -> proposer1:Promise Success\nProposal(13, 1)
+acceptor3 - -> proposer1
+
+proposer2 -> acceptor1:Accept request \nProposal(8, 2)
+proposer2 -> acceptor3
+
+acceptor1 - -> proposer2:Accept Fail\nProposal(8, 2)
+acceptor3 - -> proposer2
+
+proposer1 -> acceptor1:Accept request \nProposal(13, 2)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 - -> proposer2:Accept \nProposal(13, 2)
+acceptor1 -> learner1:Accept \nProposal(13, 2)
+
+
+acceptor2 - -> proposer2:Accept \nProposal(13, 2)
+acceptor2 -> learner1:Accept \nProposal(13, 2)
+
+learner1 -> learner1:chosen \nProposal(13, 2)
+
+@enduml
+
+PlantUML version 1.2019.01(Sun Feb 10 00:32:04 JST 2019)
+(GPL source distribution)
+Java Runtime: OpenJDK Runtime Environment
+JVM: OpenJDK 64-Bit Server VM
+Java Version: 11.0.1+13
+Operating System: Mac OS X
+OS Version: 10.13.6
+Default Encoding: UTF-8
+Language: ja
+Country: JP
+--></g></svg>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/slide/images/paxos3.svg	Tue Feb 19 21:49:55 2019 +0900
@@ -0,0 +1,97 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentScriptType="application/ecmascript" contentStyleType="text/css" height="1275px" preserveAspectRatio="none" style="width:872px;height:1275px;" version="1.1" viewBox="0 0 872 1275" width="872px" zoomAndPan="magnify"><defs><filter height="300%" id="f1jrqdh23d0xyz" width="300%" x="-1" y="-1"><feGaussianBlur result="blurOut" stdDeviation="2.0"/><feColorMatrix in="blurOut" result="blurOut2" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .4 0"/><feOffset dx="4.0" dy="4.0" in="blurOut2" result="blurOut3"/><feBlend in="SourceGraphic" in2="blurOut3" mode="normal"/></filter></defs><g><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="56" x="409.5" y="23.5352">Paxos 3</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="68" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="208" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="346" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="482" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="618" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="749" y="78.9766"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="73" x2="73" y1="68.9766" y2="1235.0195"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="213" x2="213" y1="68.9766" y2="1235.0195"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="351" x2="351" y1="68.9766" y2="1235.0195"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="487" x2="487" y1="68.9766" y2="1235.0195"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="623" x2="623" y1="68.9766" y2="1235.0195"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 5.0,5.0;" x1="754" x2="754" y1="68.9766" y2="1235.0195"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="28" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="35" y="54.0234">proposer1</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="28" y="1234.0195"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="35" y="1254.5547">proposer1</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="168" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="175" y="54.0234">proposer2</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="86" x="168" y="1234.0195"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="72" x="175" y="1254.5547">proposer2</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="308" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="315" y="54.0234">acceptor1</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="308" y="1234.0195"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="315" y="1254.5547">acceptor1</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="444" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="451" y="54.0234">acceptor2</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="444" y="1234.0195"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="451" y="1254.5547">acceptor2</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="580" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="587" y="54.0234">acceptor3</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="82" x="580" y="1234.0195"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="68" x="587" y="1254.5547">acceptor3</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="72" x="716" y="33.4883"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="58" x="723" y="54.0234">learner1</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="30.4883" style="stroke: #000000; stroke-width: 1.5;" width="72" x="716" y="1234.0195"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="58" x="723" y="1254.5547">learner1</text><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="68" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="208" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="346" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="482" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="618" y="78.9766"/><rect fill="#FFFFFF" filter="url(#f1jrqdh23d0xyz)" height="1147.043" style="stroke: #000000; stroke-width: 1.0;" width="10" x="749" y="78.9766"/><polygon fill="#000000" points="334,111.5977,344,115.5977,334,119.5977,338,115.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="115.5977" y2="115.5977"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="85" y="95.5449">Prepare request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="85" y="110.8555">Proposal(7, 1)</text><polygon fill="#000000" points="470,125.5977,480,129.5977,470,133.5977,474,129.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="129.5977" y2="129.5977"/><polygon fill="#000000" points="606,139.5977,616,143.5977,606,147.5977,610,143.5977" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="143.5977" y2="143.5977"/><polygon fill="#000000" points="89,184.2188,79,188.2188,89,192.2188,85,188.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="345" y1="188.2188" y2="188.2188"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="95" y="168.166">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="95" y="183.4766">Proposal(7, 1)</text><polygon fill="#000000" points="89,198.2188,79,202.2188,89,206.2188,85,202.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="481" y1="202.2188" y2="202.2188"/><polygon fill="#000000" points="89,212.2188,79,216.2188,89,220.2188,85,216.2188" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="617" y1="216.2188" y2="216.2188"/><polygon fill="#000000" points="606,256.8398,616,260.8398,606,264.8398,610,260.8398" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="260.8398" y2="260.8398"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="85" y="240.7871">Accept Request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="85" y="256.0977">Proposal(7, 1)</text><polygon fill="#000000" points="89,301.4609,79,305.4609,89,309.4609,85,305.4609" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="617" y1="305.4609" y2="305.4609"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="95" y="285.4082">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="82" x="95" y="300.7188">Proposal(7,1)</text><polygon fill="#000000" points="737,346.082,747,350.082,737,354.082,741,350.082" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="628" x2="743" y1="350.082" y2="350.082"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="635" y="330.0293">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="635" y="345.3398">Proposal(7, 1)</text><polygon fill="#000000" points="334,390.7031,344,394.7031,334,398.7031,338,394.7031" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="340" y1="394.7031" y2="394.7031"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="225" y="374.6504">Prepare request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="225" y="389.9609">Proposal(8, 2)</text><polygon fill="#000000" points="470,404.7031,480,408.7031,470,412.7031,474,408.7031" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="476" y1="408.7031" y2="408.7031"/><polygon fill="#000000" points="606,418.7031,616,422.7031,606,426.7031,610,422.7031" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="218" x2="612" y1="422.7031" y2="422.7031"/><polygon fill="#000000" points="229,463.3242,219,467.3242,229,471.3242,225,467.3242" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="345" y1="467.3242" y2="467.3242"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="235" y="447.2715">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="235" y="462.582">Proposal(8, 2)</text><polygon fill="#000000" points="229,477.3242,219,481.3242,229,485.3242,225,481.3242" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="481" y1="481.3242" y2="481.3242"/><polygon fill="#000000" points="229,537.2559,219,541.2559,229,545.2559,225,541.2559" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="223" x2="617" y1="541.2559" y2="541.2559"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="235" y="505.8926">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="82" x="235" y="521.2031">But Accepted</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="235" y="536.5137">Proposal(7, 1)</text><polygon fill="#000000" points="334,581.877,344,585.877,334,589.877,338,585.877" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="585.877" y2="585.877"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="85" y="565.8242">Accept request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="85" y="581.1348">Proposal(7, 1)</text><polygon fill="#000000" points="470,595.877,480,599.877,470,603.877,474,599.877" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="599.877" y2="599.877"/><polygon fill="#000000" points="89,655.8086,79,659.8086,89,663.8086,85,659.8086" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="345" y1="659.8086" y2="659.8086"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="69" x="95" y="624.4453">Accept Fail</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="58" x="95" y="639.7559">Promised</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="86" x="95" y="655.0664">Proposal(8, 2)</text><polygon fill="#000000" points="89,669.8086,79,673.8086,89,677.8086,85,673.8086" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="481" y1="673.8086" y2="673.8086"/><polygon fill="#000000" points="334,714.4297,344,718.4297,334,722.4297,338,718.4297" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="718.4297" y2="718.4297"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="97" x="85" y="698.377">Prepare request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="85" y="713.6875">Proposal(13, 1)</text><polygon fill="#000000" points="470,728.4297,480,732.4297,470,736.4297,474,732.4297" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="732.4297" y2="732.4297"/><polygon fill="#000000" points="606,742.4297,616,746.4297,606,750.4297,610,746.4297" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="746.4297" y2="746.4297"/><polygon fill="#000000" points="89,787.0508,79,791.0508,89,795.0508,85,791.0508" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="345" y1="791.0508" y2="791.0508"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="104" x="95" y="770.998">Promise Success</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="95" y="786.3086">Proposal(13, 1)</text><polygon fill="#000000" points="89,801.0508,79,805.0508,89,809.0508,85,805.0508" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="481" y1="805.0508" y2="805.0508"/><polygon fill="#000000" points="89,815.0508,79,819.0508,89,823.0508,85,819.0508" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="617" y1="819.0508" y2="819.0508"/><polygon fill="#000000" points="334,859.6719,344,863.6719,334,867.6719,338,863.6719" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="340" y1="863.6719" y2="863.6719"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="85" y="843.6191">Accept request</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="85" y="858.9297">Proposal(13, 1)</text><polygon fill="#000000" points="470,873.6719,480,877.6719,470,881.6719,474,877.6719" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="476" y1="877.6719" y2="877.6719"/><polygon fill="#000000" points="606,887.6719,616,891.6719,606,895.6719,610,891.6719" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="78" x2="612" y1="891.6719" y2="891.6719"/><polygon fill="#000000" points="89,932.293,79,936.293,89,940.293,85,936.293" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="345" y1="936.293" y2="936.293"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="95" y="916.2402">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="95" y="931.5508">Proposal(13, 1)</text><polygon fill="#000000" points="737,976.9141,747,980.9141,737,984.9141,741,980.9141" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="356" x2="743" y1="980.9141" y2="980.9141"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="363" y="960.8613">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="363" y="976.1719">Proposal(13, 1)</text><polygon fill="#000000" points="89,1021.5352,79,1025.5352,89,1029.5352,85,1025.5352" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="481" y1="1025.5352" y2="1025.5352"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="95" y="1005.4824">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="95" y="1020.793">Proposal(13, 1)</text><polygon fill="#000000" points="737,1066.1563,747,1070.1563,737,1074.1563,741,1070.1563" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="492" x2="743" y1="1070.1563" y2="1070.1563"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="499" y="1050.1035">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="499" y="1065.4141">Proposal(13, 1)</text><polygon fill="#000000" points="89,1110.7773,79,1114.7773,89,1118.7773,85,1114.7773" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0; stroke-dasharray: 2.0,2.0;" x1="83" x2="617" y1="1114.7773" y2="1114.7773"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="95" y="1094.7246">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="95" y="1110.0352">Proposal(13, 1)</text><polygon fill="#000000" points="737,1155.3984,747,1159.3984,737,1163.3984,741,1159.3984" style="stroke: #000000; stroke-width: 1.0;"/><line style="stroke: #000000; stroke-width: 1.0;" x1="628" x2="743" y1="1159.3984" y2="1159.3984"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="43" x="635" y="1139.3457">Accept</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="635" y="1154.6563">Proposal(13, 1)</text><line style="stroke: #000000; stroke-width: 1.0;" x1="759" x2="801" y1="1204.0195" y2="1204.0195"/><line style="stroke: #000000; stroke-width: 1.0;" x1="801" x2="801" y1="1204.0195" y2="1217.0195"/><line style="stroke: #000000; stroke-width: 1.0;" x1="760" x2="801" y1="1217.0195" y2="1217.0195"/><polygon fill="#000000" points="770,1213.0195,760,1217.0195,770,1221.0195,766,1217.0195" style="stroke: #000000; stroke-width: 1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="45" x="766" y="1183.9668">chosen</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="94" x="766" y="1199.2773">Proposal(13, 1)</text><!--
+@startuml
+title Paxos 3
+
+skinparam sequence {
+ArrowColor black
+LifeLineBorderColor black
+
+ParticipantBorderColor black
+ParticipantBackgroundColor white
+ParticipantPadding 20
+}
+
+
+participant proposer1
+activate proposer1
+participant proposer2
+activate proposer2
+
+participant acceptor1
+activate acceptor1
+participant acceptor2
+activate acceptor2
+participant acceptor3
+activate acceptor3
+
+participant learner1
+activate learner1
+
+
+proposer1 -> acceptor1:Prepare request \nProposal(7, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 - -> proposer1:Promise Success\nProposal(7, 1)
+acceptor2 - -> proposer1
+acceptor3 - -> proposer1
+
+proposer1 -> acceptor3:Accept Request \nProposal(7, 1)
+acceptor3 - -> proposer1: Accept \nProposal(7,1)
+acceptor3 -> learner1:Accept \nProposal(7, 1)
+
+
+proposer2 -> acceptor1:Prepare request \nProposal(8, 2)
+proposer2 -> acceptor2
+proposer2 -> acceptor3
+
+acceptor1 - -> proposer2:Promise Success\nProposal(8, 2)
+acceptor2 - -> proposer2
+acceptor3 - -> proposer2:Promise Success \nBut Accepted \nProposal(7, 1)
+
+proposer1 -> acceptor1:Accept request \nProposal(7, 1)
+proposer1 -> acceptor2
+
+acceptor1 - -> proposer1:Accept Fail\nPromised \nProposal(8, 2)
+acceptor2 - -> proposer1
+
+
+proposer1 -> acceptor1:Prepare request \nProposal(13, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 - -> proposer1:Promise Success\nProposal(13, 1)
+acceptor2 - -> proposer1
+acceptor3 - -> proposer1
+
+
+proposer1 -> acceptor1:Accept request \nProposal(13, 1)
+proposer1 -> acceptor2
+proposer1 -> acceptor3
+
+acceptor1 - -> proposer1:Accept \nProposal(13, 1)
+acceptor1 -> learner1:Accept \nProposal(13, 1)
+
+acceptor2 - -> proposer1:Accept \nProposal(13, 1)
+acceptor2 -> learner1:Accept \nProposal(13, 1)
+
+
+
+acceptor3 - -> proposer1:Accept \nProposal(13, 1)
+acceptor3 -> learner1:Accept \nProposal(13, 1)
+
+learner1 -> learner1:chosen \nProposal(13, 1)
+
+@enduml
+
+PlantUML version 1.2019.01(Sun Feb 10 00:32:04 JST 2019)
+(GPL source distribution)
+Java Runtime: OpenJDK Runtime Environment
+JVM: OpenJDK 64-Bit Server VM
+Java Version: 11.0.1+13
+Operating System: Mac OS X
+OS Version: 10.13.6
+Default Encoding: UTF-8
+Language: ja
+Country: JP
+--></g></svg>
\ No newline at end of file
Binary file slide/images/prepare-promise.pdf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/slide/images/prepare-promise.svg	Tue Feb 19 21:49:55 2019 +0900
@@ -0,0 +1,2341 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   viewBox="0 0 1122.4 793.59998"
+   height="793.59998"
+   width="1122.4"
+   xml:space="preserve"
+   id="svg2"
+   version="1.1"><metadata
+     id="metadata8"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+     id="defs6"><clipPath
+       id="clipPath20"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path18"
+         d="m 9,12.43847 h 823.8 v 570.3231 H 9 Z" /></clipPath></defs><g
+     transform="matrix(1.3333333,0,0,-1.3333333,0,793.6)"
+     id="g10"><g
+       id="g12" /><g
+       id="g14"><g
+         clip-path="url(#clipPath20)"
+         id="g16"><path
+           id="path22"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="M 16.15459,580.7174 H 1616.739 V 9.372219 H 16.15459 Z" /><path
+           id="path24"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 82.32431,293.093 c 14.14312,-14.1431 14.14312,-37.0734 0,-51.2165 -14.14306,-14.1431 -37.07346,-14.1431 -51.21652,0 -14.14313,14.1431 -14.14313,37.0734 0,51.2165 14.14306,14.1431 37.07346,14.1431 51.21652,0" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g26"><path
+             id="path28"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 64.73998,281.4096 c 13.83753,13.8375 13.83753,36.2724 0,50.1099 -13.83747,13.8375 -36.27241,13.8375 -50.10988,0 -13.8375331,-13.8375 -13.8375331,-36.2724 0,-50.1099 13.83747,-13.8375 36.27241,-13.8375 50.10988,0" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,56.71605,267.4847)"
+           id="g30"><g
+             id="text34"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.875,3.860001)"
+             aria-label="proposer1"><path
+               id="path602"
+               style=""
+               d="m 0.67,-5.17 v 7.14 h 0.85 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 Q 5.27,-4.1 4.97,-4.47 4.68,-4.85 4.23,-5.07 3.79,-5.29 3.19,-5.29 2.65,-5.29 2.2,-5.09 1.75,-4.9 1.54,-4.47 H 1.52 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 Q 2.06,-0.96 1.86,-1.23 1.67,-1.5 1.58,-1.85 1.49,-2.21 1.49,-2.59 q 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path604"
+               style=""
+               d="M 6.5399998,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path606"
+               style=""
+               d="m 10.34,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9000001,0 q 0,0.57 0.16,1.06 0.16,0.49 0.4800001,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.3200001,0.36 -0.4800001,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path608"
+               style=""
+               d="m 15.49,-5.17 v 7.14 h 0.85 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 h -0.02 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path610"
+               style=""
+               d="m 22.01,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path612"
+               style=""
+               d="M 27.65,-1.63 H 26.8 q 0.02,0.48 0.2,0.82 0.18,0.33 0.48,0.54 0.3,0.2 0.69,0.29 0.39,0.09 0.82,0.09 0.39,0 0.78,-0.08 0.4,-0.07 0.71,-0.26 0.32,-0.19 0.51,-0.5 0.2,-0.31 0.2,-0.78 0,-0.37 -0.15,-0.62 -0.14,-0.25 -0.38,-0.41 -0.23,-0.17 -0.54,-0.27 -0.3,-0.1 -0.62,-0.17 -0.3,-0.07 -0.6,-0.13 -0.3,-0.07 -0.54,-0.16 -0.24,-0.1 -0.4,-0.24 -0.15,-0.15 -0.15,-0.37 0,-0.2 0.1,-0.32 0.1,-0.13 0.26,-0.2 0.16,-0.08 0.35,-0.11 0.2,-0.03 0.39,-0.03 0.21,0 0.41,0.05 0.21,0.04 0.38,0.14 0.17,0.1 0.28,0.27 0.11,0.16 0.13,0.41 h 0.85 q -0.03,-0.47 -0.2,-0.78 -0.17,-0.32 -0.46,-0.5 -0.28,-0.19 -0.65,-0.26 -0.37,-0.08 -0.81,-0.08 -0.34,0 -0.69,0.09 -0.34,0.08 -0.62,0.26 -0.27,0.17 -0.45,0.45 -0.17,0.28 -0.17,0.67 0,0.5 0.25,0.78 0.25,0.28 0.62,0.44 0.38,0.15 0.82,0.24 0.44,0.08 0.81,0.19 0.38,0.1 0.63,0.27 0.25,0.17 0.25,0.5 0,0.24 -0.12,0.4 -0.12,0.15 -0.31,0.23 -0.18,0.08 -0.4,0.11 -0.22,0.03 -0.42,0.03 -0.26,0 -0.51,-0.05 -0.24,-0.05 -0.44,-0.16 -0.19,-0.12 -0.31,-0.31 -0.12,-0.2 -0.13,-0.48 z" /><path
+               id="path614"
+               style=""
+               d="m 35.72,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 H 35.7 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path616"
+               style=""
+               d="M 37.470001,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path618"
+               style=""
+               d="m 43.749999,0 v -7.09 h -0.65 q -0.07,0.4 -0.26,0.66 -0.19,0.26 -0.47,0.41 -0.27,0.15 -0.61,0.21 -0.34,0.05 -0.7,0.05 v 0.68 h 1.84 V 0 Z" /></g></g><path
+           id="path36"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 217.0463,372.7673 c 14.1431,-14.143 14.1431,-37.0735 0,-51.2165 -14.1431,-14.1432 -37.0735,-14.1432 -51.2166,0 -14.143,14.143 -14.143,37.0735 0,51.2165 14.1431,14.1432 37.0735,14.1432 51.2166,0" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g38"><path
+             id="path40"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 196.551,203.4569 c 13.8375,13.8374 13.8375,36.2724 0,50.1098 -13.8375,13.8376 -36.2724,13.8376 -50.1099,0 -13.8375,-13.8374 -13.8375,-36.2724 0,-50.1098 13.8375,-13.8376 36.2724,-13.8376 50.1099,0" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,191.4381,347.159)"
+           id="g42"><g
+             id="text46"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor1"><path
+               id="path621"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path623"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path625"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path627"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path629"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path631"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path633"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path635"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path637"
+               style=""
+               d="m 43.190001,0 v -7.09 h -0.65 q -0.07,0.4 -0.26,0.66 -0.19,0.26 -0.47,0.41 -0.27,0.15 -0.61,0.21 -0.34,0.05 -0.7,0.05 v 0.68 h 1.84 V 0 Z" /></g></g><path
+           id="path48"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 217.0463,293.093 c 14.1431,-14.1431 14.1431,-37.0734 0,-51.2165 -14.1431,-14.1431 -37.0735,-14.1431 -51.2166,0 -14.143,14.1431 -14.143,37.0734 0,51.2165 14.1431,14.1431 37.0735,14.1431 51.2166,0" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g50"><path
+             id="path52"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 196.551,281.4096 c 13.8375,13.8375 13.8375,36.2724 0,50.1099 -13.8375,13.8375 -36.2724,13.8375 -50.1099,0 -13.8375,-13.8375 -13.8375,-36.2724 0,-50.1099 13.8375,-13.8375 36.2724,-13.8375 50.1099,0" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,191.4381,267.4847)"
+           id="g54"><g
+             id="text58"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor2"><path
+               id="path640"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path642"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path644"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path646"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path648"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path650"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path652"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path654"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path656"
+               style=""
+               d="m 40.070001,-4.58 h 0.85 q -0.01,-0.32 0.06,-0.63 0.08,-0.32 0.25,-0.57 0.17,-0.25 0.43,-0.4 0.27,-0.16 0.64,-0.16 0.28,0 0.53,0.09 0.25,0.09 0.43,0.26 0.19,0.17 0.3,0.41 0.11,0.23 0.11,0.52 0,0.37 -0.12,0.65 -0.11,0.28 -0.34,0.52 -0.22,0.24 -0.56,0.48 -0.34,0.23 -0.79,0.51 -0.37,0.22 -0.71,0.47 -0.34,0.25 -0.61,0.58 -0.27,0.33 -0.45,0.78 -0.17,0.44 -0.22,1.07 h 4.63 v -0.75 h -3.64 q 0.06,-0.33 0.25,-0.58 0.2,-0.26 0.47,-0.48 0.28,-0.22 0.61,-0.41 0.33,-0.2 0.66,-0.4 0.33,-0.21 0.64,-0.44 0.31,-0.23 0.55,-0.51 0.24,-0.29 0.38,-0.65 0.15,-0.36 0.15,-0.83 0,-0.5 -0.18,-0.88 -0.17,-0.38 -0.47,-0.63 -0.3,-0.26 -0.71,-0.39 -0.4,-0.14 -0.86,-0.14 -0.56,0 -1,0.19 -0.44,0.19 -0.74,0.53 -0.29,0.33 -0.43,0.79 -0.14,0.46 -0.11,1 z" /></g></g><path
+           id="path60"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 217.0463,213.4187 c 14.1431,-14.1431 14.1431,-37.0735 0,-51.2166 -14.1431,-14.1431 -37.0735,-14.1431 -51.2166,0 -14.143,14.1431 -14.143,37.0735 0,51.2166 14.1431,14.1431 37.0735,14.1431 51.2166,0" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g62"><path
+             id="path64"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 196.551,359.3624 c 13.8375,13.8375 13.8375,36.2724 0,50.1099 -13.8375,13.8375 -36.2724,13.8375 -50.1099,0 -13.8375,-13.8375 -13.8375,-36.2724 0,-50.1099 13.8375,-13.8375 36.2724,-13.8375 50.1099,0" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,191.4381,187.8105)"
+           id="g66"><g
+             id="text70"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor3"><path
+               id="path659"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path661"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path663"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path665"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path667"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path669"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path671"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path673"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path675"
+               style=""
+               d="m 41.810001,-4.05 v 0.72 q 0.24,-0.03 0.51,-0.03 0.32,0 0.59,0.09 0.28,0.08 0.48,0.26 0.2,0.17 0.32,0.43 0.12,0.25 0.12,0.58 0,0.32 -0.13,0.58 -0.12,0.25 -0.33,0.43 -0.21,0.17 -0.49,0.27 -0.28,0.09 -0.59,0.09 -0.73,0 -1.11,-0.43 -0.38,-0.44 -0.4,-1.13 h -0.85 q -0.01,0.55 0.15,0.98 0.17,0.43 0.48,0.73 0.31,0.29 0.75,0.44 0.44,0.15 0.98,0.15 0.5,0 0.94,-0.13 0.45,-0.14 0.78,-0.41 0.33,-0.27 0.52,-0.67 0.2,-0.41 0.2,-0.94 0,-0.64 -0.32,-1.11 -0.31,-0.47 -0.96,-0.61 v -0.02 q 0.42,-0.19 0.7,-0.56 0.28,-0.37 0.28,-0.85 0,-0.49 -0.17,-0.85 -0.16,-0.36 -0.45,-0.59 -0.29,-0.23 -0.69,-0.34 -0.39,-0.12 -0.85,-0.12 -0.53,0 -0.94,0.17 -0.4,0.17 -0.67,0.47 -0.27,0.3 -0.42,0.72 -0.14,0.42 -0.16,0.93 h 0.85 q 0,-0.31 0.08,-0.59 0.08,-0.28 0.24,-0.49 0.17,-0.21 0.42,-0.33 0.26,-0.13 0.6,-0.13 0.54,0 0.9,0.29 0.36,0.28 0.36,0.85 0,0.28 -0.11,0.5 -0.11,0.22 -0.3,0.37 -0.18,0.14 -0.43,0.22 -0.24,0.07 -0.51,0.07 h -0.18 q -0.05,0 -0.1,0 -0.04,0 -0.09,-0.01 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g72"><path
+             id="path74"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 69.50013,288.8398 62.99317,-37.9674 m -62.87205,37.836 62.43335,-37.7277" /></g><path
+           id="path76"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 158.5867,327.7308 -8.5989,-1.523 3.1218,-5.2785 z" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g78"><path
+             id="path80"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 139.3546,247.5202 -8.4131,1.4901 3.0543,5.1645 z" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g82"><path
+             id="path84"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 74.50752,306.4611 52.62868,0.3027 m -52.5033,-0.4935 52.0346,0.2469" /></g><path
+           id="path86"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 153.2805,267.4847 -8.1767,3.0663 v -6.1326 z" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g88"><path
+             id="path90"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 134.163,306.4646 -8,-3 v 6 z" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g92"><path
+             id="path94"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 69.83401,324.2954 63.38879,37.3388 m -63.20091,-37.5705 62.83161,37.1309" /></g><path
+           id="path96"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 158.5867,207.2387 -5.4771,6.8014 -3.1218,-5.2784 z" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g98"><path
+             id="path100"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 139.3546,365.4089 -5.3588,-6.6545 -3.0543,5.1644 z" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,107.772,325.6913)"
+           id="g102"><g
+             id="text106"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-30.222,3.832001)"
+             aria-label="Proposal(n)"><path
+               id="path678"
+               style=""
+               d="m 2.076,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z M 0.936,-8.568 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path680"
+               style=""
+               d="M 8.508,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 9.468 v -1.308 z" /><path
+               id="path682"
+               style=""
+               d="m 13.068,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 17.628,-4.968 17.244,-5.4 16.86,-5.844 16.296,-6.096 15.744,-6.348 15,-6.348 q -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path684"
+               style=""
+               d="m 19.248,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path686"
+               style=""
+               d="m 27.071999,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path688"
+               style=""
+               d="m 33.840002,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path690"
+               style=""
+               d="m 44.712002,-0.024 q -0.264,0.156 -0.732,0.156 -0.396,0 -0.636,-0.216 -0.228,-0.228 -0.228,-0.732 -0.42,0.504 -0.984,0.732 -0.552,0.216 -1.2,0.216 -0.42,0 -0.804,-0.096 -0.372,-0.096 -0.648,-0.3 -0.276,-0.204 -0.444,-0.528 -0.156,-0.336 -0.156,-0.804 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 -0.12,-0.204 -0.324,-0.312 -0.192,-0.108 -0.444,-0.144 -0.24,-0.036 -0.48,-0.036 -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 0.228,-0.216 0.336,-0.456 0.108,-0.252 0.108,-0.468 z" /><path
+               id="path692"
+               style=""
+               d="M 45.719998,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path694"
+               style=""
+               d="m 50.004,2.364 h 0.78 Q 49.932,0.984 49.56,-0.372 49.2,-1.728 49.2,-3.24 q 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path696"
+               style=""
+               d="M 51.432001,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path698"
+               style=""
+               d="m 57.227999,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><path
+           id="path108"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 316.9911,439.1545 c 14.1431,-14.1431 14.1431,-37.0735 0,-51.2165 -14.1431,-14.1431 -37.0735,-14.1431 -51.2165,0 -14.1432,14.143 -14.1432,37.0734 0,51.2165 14.143,14.1431 37.0734,14.1431 51.2165,0" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g110"><path
+             id="path112"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 294.3363,138.5041 c 13.8375,13.8375 13.8375,36.2724 0,50.1099 -13.8375,13.8375 -36.2725,13.8375 -50.1099,0 -13.8376,-13.8375 -13.8376,-36.2724 0,-50.1099 13.8374,-13.8375 36.2724,-13.8375 50.1099,0" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,291.3828,413.5462)"
+           id="g114"><g
+             id="text118"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.875,3.860001)"
+             aria-label="proposer1"><path
+               id="path701"
+               style=""
+               d="m 0.67,-5.17 v 7.14 h 0.85 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 Q 5.27,-4.1 4.97,-4.47 4.68,-4.85 4.23,-5.07 3.79,-5.29 3.19,-5.29 2.65,-5.29 2.2,-5.09 1.75,-4.9 1.54,-4.47 H 1.52 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 Q 2.06,-0.96 1.86,-1.23 1.67,-1.5 1.58,-1.85 1.49,-2.21 1.49,-2.59 q 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path703"
+               style=""
+               d="M 6.5399998,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path705"
+               style=""
+               d="m 10.34,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9000001,0 q 0,0.57 0.16,1.06 0.16,0.49 0.4800001,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.3200001,0.36 -0.4800001,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path707"
+               style=""
+               d="m 15.49,-5.17 v 7.14 h 0.85 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 h -0.02 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path709"
+               style=""
+               d="m 22.01,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path711"
+               style=""
+               d="M 27.65,-1.63 H 26.8 q 0.02,0.48 0.2,0.82 0.18,0.33 0.48,0.54 0.3,0.2 0.69,0.29 0.39,0.09 0.82,0.09 0.39,0 0.78,-0.08 0.4,-0.07 0.71,-0.26 0.32,-0.19 0.51,-0.5 0.2,-0.31 0.2,-0.78 0,-0.37 -0.15,-0.62 -0.14,-0.25 -0.38,-0.41 -0.23,-0.17 -0.54,-0.27 -0.3,-0.1 -0.62,-0.17 -0.3,-0.07 -0.6,-0.13 -0.3,-0.07 -0.54,-0.16 -0.24,-0.1 -0.4,-0.24 -0.15,-0.15 -0.15,-0.37 0,-0.2 0.1,-0.32 0.1,-0.13 0.26,-0.2 0.16,-0.08 0.35,-0.11 0.2,-0.03 0.39,-0.03 0.21,0 0.41,0.05 0.21,0.04 0.38,0.14 0.17,0.1 0.28,0.27 0.11,0.16 0.13,0.41 h 0.85 q -0.03,-0.47 -0.2,-0.78 -0.17,-0.32 -0.46,-0.5 -0.28,-0.19 -0.65,-0.26 -0.37,-0.08 -0.81,-0.08 -0.34,0 -0.69,0.09 -0.34,0.08 -0.62,0.26 -0.27,0.17 -0.45,0.45 -0.17,0.28 -0.17,0.67 0,0.5 0.25,0.78 0.25,0.28 0.62,0.44 0.38,0.15 0.82,0.24 0.44,0.08 0.81,0.19 0.38,0.1 0.63,0.27 0.25,0.17 0.25,0.5 0,0.24 -0.12,0.4 -0.12,0.15 -0.31,0.23 -0.18,0.08 -0.4,0.11 -0.22,0.03 -0.42,0.03 -0.26,0 -0.51,-0.05 -0.24,-0.05 -0.44,-0.16 -0.19,-0.12 -0.31,-0.31 -0.12,-0.2 -0.13,-0.48 z" /><path
+               id="path713"
+               style=""
+               d="m 35.72,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 H 35.7 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path715"
+               style=""
+               d="M 37.470001,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path717"
+               style=""
+               d="m 43.749999,0 v -7.09 h -0.65 q -0.07,0.4 -0.26,0.66 -0.19,0.26 -0.47,0.41 -0.27,0.15 -0.61,0.21 -0.34,0.05 -0.7,0.05 v 0.68 h 1.84 V 0 Z" /></g></g><path
+           id="path120"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 451.7131,518.8287 c 14.1431,-14.143 14.1431,-37.0734 0,-51.2164 -14.1431,-14.1432 -37.0735,-14.1432 -51.2166,0 -14.1431,14.143 -14.1431,37.0734 0,51.2164 14.1431,14.1432 37.0735,14.1432 51.2166,0" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g122"><path
+             id="path124"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 426.1473,60.55136 c 13.8375,13.83747 13.8375,36.27241 0,50.10984 -13.8375,13.8376 -36.2724,13.8376 -50.1099,0 -13.8375,-13.83743 -13.8375,-36.27237 0,-50.10984 13.8375,-13.83753 36.2724,-13.83753 50.1099,0" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,426.1048,493.2205)"
+           id="g126"><g
+             id="text130"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor1"><path
+               id="path720"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path722"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path724"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path726"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path728"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path730"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path732"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path734"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path736"
+               style=""
+               d="m 43.190001,0 v -7.09 h -0.65 q -0.07,0.4 -0.26,0.66 -0.19,0.26 -0.47,0.41 -0.27,0.15 -0.61,0.21 -0.34,0.05 -0.7,0.05 v 0.68 h 1.84 V 0 Z" /></g></g><path
+           id="path132"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 451.7131,439.1545 c 14.1431,-14.1431 14.1431,-37.0735 0,-51.2165 -14.1431,-14.1431 -37.0735,-14.1431 -51.2166,0 -14.1431,14.143 -14.1431,37.0734 0,51.2165 14.1431,14.1431 37.0735,14.1431 51.2166,0" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g134"><path
+             id="path136"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 426.1473,138.5041 c 13.8375,13.8375 13.8375,36.2724 0,50.1099 -13.8375,13.8375 -36.2724,13.8375 -50.1099,0 -13.8375,-13.8375 -13.8375,-36.2724 0,-50.1099 13.8375,-13.8375 36.2724,-13.8375 50.1099,0" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,426.1048,413.5462)"
+           id="g138"><g
+             id="text142"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor2"><path
+               id="path739"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path741"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path743"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path745"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path747"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path749"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path751"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path753"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path755"
+               style=""
+               d="m 40.070001,-4.58 h 0.85 q -0.01,-0.32 0.06,-0.63 0.08,-0.32 0.25,-0.57 0.17,-0.25 0.43,-0.4 0.27,-0.16 0.64,-0.16 0.28,0 0.53,0.09 0.25,0.09 0.43,0.26 0.19,0.17 0.3,0.41 0.11,0.23 0.11,0.52 0,0.37 -0.12,0.65 -0.11,0.28 -0.34,0.52 -0.22,0.24 -0.56,0.48 -0.34,0.23 -0.79,0.51 -0.37,0.22 -0.71,0.47 -0.34,0.25 -0.61,0.58 -0.27,0.33 -0.45,0.78 -0.17,0.44 -0.22,1.07 h 4.63 v -0.75 h -3.64 q 0.06,-0.33 0.25,-0.58 0.2,-0.26 0.47,-0.48 0.28,-0.22 0.61,-0.41 0.33,-0.2 0.66,-0.4 0.33,-0.21 0.64,-0.44 0.31,-0.23 0.55,-0.51 0.24,-0.29 0.38,-0.65 0.15,-0.36 0.15,-0.83 0,-0.5 -0.18,-0.88 -0.17,-0.38 -0.47,-0.63 -0.3,-0.26 -0.71,-0.39 -0.4,-0.14 -0.86,-0.14 -0.56,0 -1,0.19 -0.44,0.19 -0.74,0.53 -0.29,0.33 -0.43,0.79 -0.14,0.46 -0.11,1 z" /></g></g><path
+           id="path144"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 451.7131,359.4802 c 14.1431,-14.143 14.1431,-37.0735 0,-51.2166 -14.1431,-14.1431 -37.0735,-14.1431 -51.2166,0 -14.1431,14.1431 -14.1431,37.0736 0,51.2166 14.1431,14.1432 37.0735,14.1432 51.2166,0" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g146"><path
+             id="path148"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 426.1473,216.4569 c 13.8375,13.8374 13.8375,36.2724 0,50.1099 -13.8375,13.8375 -36.2724,13.8375 -50.1099,0 -13.8375,-13.8375 -13.8375,-36.2725 0,-50.1099 13.8375,-13.8376 36.2724,-13.8376 50.1099,0" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,426.1048,333.8719)"
+           id="g150"><g
+             id="text154"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor3"><path
+               id="path758"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path760"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path762"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path764"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path766"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path768"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path770"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path772"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path774"
+               style=""
+               d="m 41.810001,-4.05 v 0.72 q 0.24,-0.03 0.51,-0.03 0.32,0 0.59,0.09 0.28,0.08 0.48,0.26 0.2,0.17 0.32,0.43 0.12,0.25 0.12,0.58 0,0.32 -0.13,0.58 -0.12,0.25 -0.33,0.43 -0.21,0.17 -0.49,0.27 -0.28,0.09 -0.59,0.09 -0.73,0 -1.11,-0.43 -0.38,-0.44 -0.4,-1.13 h -0.85 q -0.01,0.55 0.15,0.98 0.17,0.43 0.48,0.73 0.31,0.29 0.75,0.44 0.44,0.15 0.98,0.15 0.5,0 0.94,-0.13 0.45,-0.14 0.78,-0.41 0.33,-0.27 0.52,-0.67 0.2,-0.41 0.2,-0.94 0,-0.64 -0.32,-1.11 -0.31,-0.47 -0.96,-0.61 v -0.02 q 0.42,-0.19 0.7,-0.56 0.28,-0.37 0.28,-0.85 0,-0.49 -0.17,-0.85 -0.16,-0.36 -0.45,-0.59 -0.29,-0.23 -0.69,-0.34 -0.39,-0.12 -0.85,-0.12 -0.53,0 -0.94,0.17 -0.4,0.17 -0.67,0.47 -0.27,0.3 -0.42,0.72 -0.14,0.42 -0.16,0.93 h 0.85 q 0,-0.31 0.08,-0.59 0.08,-0.28 0.24,-0.49 0.17,-0.21 0.42,-0.33 0.26,-0.13 0.6,-0.13 0.54,0 0.9,0.29 0.36,0.28 0.36,0.85 0,0.28 -0.11,0.5 -0.11,0.22 -0.3,0.37 -0.18,0.14 -0.43,0.22 -0.24,0.07 -0.51,0.07 h -0.18 q -0.05,0 -0.1,0 -0.04,0 -0.09,-0.01 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g156"><path
+             id="path158"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 370.8838,103.4727 -62.8027,36.9035 m 62.973,-36.9514 -62.348,36.6615" /></g><path
+           id="path160"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 324.2341,432.9744 8.5989,1.5231 -3.1217,5.2784 z" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g162"><path
+             id="path164"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 301.4228,144.5507 8.4131,-1.4902 -3.0543,-5.1644 z" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g166"><path
+             id="path168"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 371.1915,223.8278 -63.353,-37.3943 m 63.4369,37.3389 -62.9044,-37.1767" /></g><path
+           id="path170"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 324.2341,394.118 5.4772,-6.8015 3.1217,5.2785 z" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g172"><path
+             id="path174"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 301.4228,182.5675 5.3588,6.6545 3.0543,-5.1644 z" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,353.4885,485.8285)"
+           id="g176"><g
+             id="text180"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-9.33,-3.335999)"
+             aria-label="Fail"><path
+               id="path777"
+               style=""
+               d="M 0.936,-8.568 V 0 h 1.14 v -3.924 h 3.936 v -0.96 H 2.076 v -2.724 h 4.488 v -0.96 z" /><path
+               id="path779"
+               style=""
+               d="m 13.152,-0.024 q -0.264,0.156 -0.732,0.156 -0.396,0 -0.636,-0.216 -0.228,-0.228 -0.228,-0.732 -0.42,0.504 -0.984,0.732 -0.552,0.216 -1.2,0.216 -0.42,0 -0.804,-0.096 Q 8.196,-0.06 7.92,-0.264 7.644,-0.468 7.476,-0.792 7.32,-1.128 7.32,-1.596 7.32,-2.124 7.5,-2.46 7.68,-2.796 7.968,-3 q 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 -0.12,-0.204 -0.324,-0.312 -0.192,-0.108 -0.444,-0.144 -0.24,-0.036 -0.48,-0.036 -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 H 7.56 Q 7.584,-4.848 7.8,-5.244 8.016,-5.64 8.376,-5.88 q 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 0.228,-0.216 0.336,-0.456 0.108,-0.252 0.108,-0.468 z" /><path
+               id="path781"
+               style=""
+               d="m 15.18,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path783"
+               style=""
+               d="M 16.824,-8.568 V 0 h 1.02 v -8.568 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,353.4885,485.8285)"
+           id="g182"><g
+             id="text186"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-30.12,11)"
+             aria-label="Promise(m)"><path
+               id="path786"
+               style=""
+               d="m 2.076,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z M 0.936,-8.568 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path788"
+               style=""
+               d="M 8.508,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 9.468 v -1.308 z" /><path
+               id="path790"
+               style=""
+               d="m 13.068,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 17.628,-4.968 17.244,-5.4 16.86,-5.844 16.296,-6.096 15.744,-6.348 15,-6.348 q -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path792"
+               style=""
+               d="M 19.212,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path794"
+               style=""
+               d="m 30.528,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path796"
+               style=""
+               d="m 32.736,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path798"
+               style=""
+               d="m 42.420002,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path800"
+               style=""
+               d="m 46.235998,2.364 h 0.78 q -0.852,-1.38 -1.224,-2.736 -0.36,-1.356 -0.36,-2.868 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path802"
+               style=""
+               d="M 47.664,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path804"
+               style=""
+               d="m 57.024,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g188"><path
+             id="path190"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="M 211.1326,305.6624 485.835,410.3344 M 211.2596,305.5324 485.5636,409.9288" /></g><path
+           id="path192"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 520.3529,158.7522 -6.5549,5.77 -2.1777,-5.7329 z" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g194"><path
+             id="path196"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 493.304,412.8477 -6.4133,-5.6453 -2.1306,5.609 z" /></g><path
+           id="path198"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 600.1886,165.4491 c 14.1431,-14.143 14.1431,-37.0735 0,-51.2165 -14.1431,-14.1431 -37.0735,-14.1431 -51.2165,0 -14.1432,14.143 -14.1432,37.0735 0,51.2165 14.143,14.1432 37.0734,14.1432 51.2165,0" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g200"><path
+             id="path202"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 571.4147,406.2955 c 13.8375,13.8374 13.8375,36.2724 0,50.1098 -13.8375,13.8376 -36.2725,13.8376 -50.1099,0 -13.8376,-13.8374 -13.8376,-36.2724 0,-50.1098 13.8374,-13.8376 36.2724,-13.8376 50.1099,0" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,574.5803,139.8409)"
+           id="g204"><g
+             id="text208"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.875,3.860001)"
+             aria-label="proposer1"><path
+               id="path807"
+               style=""
+               d="m 0.67,-5.17 v 7.14 h 0.85 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 Q 5.27,-4.1 4.97,-4.47 4.68,-4.85 4.23,-5.07 3.79,-5.29 3.19,-5.29 2.65,-5.29 2.2,-5.09 1.75,-4.9 1.54,-4.47 H 1.52 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 Q 2.06,-0.96 1.86,-1.23 1.67,-1.5 1.58,-1.85 1.49,-2.21 1.49,-2.59 q 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path809"
+               style=""
+               d="M 6.5399998,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path811"
+               style=""
+               d="m 10.34,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9000001,0 q 0,0.57 0.16,1.06 0.16,0.49 0.4800001,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.3200001,0.36 -0.4800001,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path813"
+               style=""
+               d="m 15.49,-5.17 v 7.14 h 0.85 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 h -0.02 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path815"
+               style=""
+               d="m 22.01,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path817"
+               style=""
+               d="M 27.65,-1.63 H 26.8 q 0.02,0.48 0.2,0.82 0.18,0.33 0.48,0.54 0.3,0.2 0.69,0.29 0.39,0.09 0.82,0.09 0.39,0 0.78,-0.08 0.4,-0.07 0.71,-0.26 0.32,-0.19 0.51,-0.5 0.2,-0.31 0.2,-0.78 0,-0.37 -0.15,-0.62 -0.14,-0.25 -0.38,-0.41 -0.23,-0.17 -0.54,-0.27 -0.3,-0.1 -0.62,-0.17 -0.3,-0.07 -0.6,-0.13 -0.3,-0.07 -0.54,-0.16 -0.24,-0.1 -0.4,-0.24 -0.15,-0.15 -0.15,-0.37 0,-0.2 0.1,-0.32 0.1,-0.13 0.26,-0.2 0.16,-0.08 0.35,-0.11 0.2,-0.03 0.39,-0.03 0.21,0 0.41,0.05 0.21,0.04 0.38,0.14 0.17,0.1 0.28,0.27 0.11,0.16 0.13,0.41 h 0.85 q -0.03,-0.47 -0.2,-0.78 -0.17,-0.32 -0.46,-0.5 -0.28,-0.19 -0.65,-0.26 -0.37,-0.08 -0.81,-0.08 -0.34,0 -0.69,0.09 -0.34,0.08 -0.62,0.26 -0.27,0.17 -0.45,0.45 -0.17,0.28 -0.17,0.67 0,0.5 0.25,0.78 0.25,0.28 0.62,0.44 0.38,0.15 0.82,0.24 0.44,0.08 0.81,0.19 0.38,0.1 0.63,0.27 0.25,0.17 0.25,0.5 0,0.24 -0.12,0.4 -0.12,0.15 -0.31,0.23 -0.18,0.08 -0.4,0.11 -0.22,0.03 -0.42,0.03 -0.26,0 -0.51,-0.05 -0.24,-0.05 -0.44,-0.16 -0.19,-0.12 -0.31,-0.31 -0.12,-0.2 -0.13,-0.48 z" /><path
+               id="path819"
+               style=""
+               d="m 35.72,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 H 35.7 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path821"
+               style=""
+               d="M 37.470001,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path823"
+               style=""
+               d="m 43.749999,0 v -7.09 h -0.65 q -0.07,0.4 -0.26,0.66 -0.19,0.26 -0.47,0.41 -0.27,0.15 -0.61,0.21 -0.34,0.05 -0.7,0.05 v 0.68 h 1.84 V 0 Z" /></g></g><path
+           id="path210"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 734.9106,245.1234 c 14.1431,-14.1431 14.1431,-37.0734 0,-51.2165 -14.1431,-14.1431 -37.0735,-14.1431 -51.2166,0 -14.1431,14.1431 -14.1431,37.0734 0,51.2165 14.1431,14.1431 37.0735,14.1431 51.2166,0" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g212"><path
+             id="path214"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 703.2257,328.3427 c 13.8375,13.8375 13.8375,36.2724 0,50.1099 -13.8375,13.8375 -36.2724,13.8375 -50.1099,0 -13.8375,-13.8375 -13.8375,-36.2724 0,-50.1099 13.8375,-13.8375 36.2724,-13.8375 50.1099,0" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,709.3023,219.5152)"
+           id="g216"><g
+             id="text220"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor1"><path
+               id="path826"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path828"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path830"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path832"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path834"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path836"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path838"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path840"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path842"
+               style=""
+               d="m 43.190001,0 v -7.09 h -0.65 q -0.07,0.4 -0.26,0.66 -0.19,0.26 -0.47,0.41 -0.27,0.15 -0.61,0.21 -0.34,0.05 -0.7,0.05 v 0.68 h 1.84 V 0 Z" /></g></g><path
+           id="path222"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 734.9106,165.4491 c 14.1431,-14.143 14.1431,-37.0735 0,-51.2165 -14.1431,-14.1431 -37.0735,-14.1431 -51.2166,0 -14.1431,14.143 -14.1431,37.0735 0,51.2165 14.1431,14.1432 37.0735,14.1432 51.2166,0" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g224"><path
+             id="path226"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 703.2257,406.2955 c 13.8375,13.8374 13.8375,36.2724 0,50.1098 -13.8375,13.8376 -36.2724,13.8376 -50.1099,0 -13.8375,-13.8374 -13.8375,-36.2724 0,-50.1098 13.8375,-13.8376 36.2724,-13.8376 50.1099,0" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,709.3023,139.8409)"
+           id="g228"><g
+             id="text232"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor2"><path
+               id="path845"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path847"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path849"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path851"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path853"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path855"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path857"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path859"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path861"
+               style=""
+               d="m 40.070001,-4.58 h 0.85 q -0.01,-0.32 0.06,-0.63 0.08,-0.32 0.25,-0.57 0.17,-0.25 0.43,-0.4 0.27,-0.16 0.64,-0.16 0.28,0 0.53,0.09 0.25,0.09 0.43,0.26 0.19,0.17 0.3,0.41 0.11,0.23 0.11,0.52 0,0.37 -0.12,0.65 -0.11,0.28 -0.34,0.52 -0.22,0.24 -0.56,0.48 -0.34,0.23 -0.79,0.51 -0.37,0.22 -0.71,0.47 -0.34,0.25 -0.61,0.58 -0.27,0.33 -0.45,0.78 -0.17,0.44 -0.22,1.07 h 4.63 v -0.75 h -3.64 q 0.06,-0.33 0.25,-0.58 0.2,-0.26 0.47,-0.48 0.28,-0.22 0.61,-0.41 0.33,-0.2 0.66,-0.4 0.33,-0.21 0.64,-0.44 0.31,-0.23 0.55,-0.51 0.24,-0.29 0.38,-0.65 0.15,-0.36 0.15,-0.83 0,-0.5 -0.18,-0.88 -0.17,-0.38 -0.47,-0.63 -0.3,-0.26 -0.71,-0.39 -0.4,-0.14 -0.86,-0.14 -0.56,0 -1,0.19 -0.44,0.19 -0.74,0.53 -0.29,0.33 -0.43,0.79 -0.14,0.46 -0.11,1 z" /></g></g><path
+           id="path234"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 734.9106,85.77485 c 14.1431,-14.14306 14.1431,-37.07346 0,-51.21652 -14.1431,-14.14313 -37.0735,-14.14313 -51.2166,0 -14.1431,14.14306 -14.1431,37.07346 0,51.21652 14.1431,14.14313 37.0735,14.14313 51.2166,0" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g236"><path
+             id="path238"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 703.2257,484.2482 c 13.8375,13.8375 13.8375,36.2724 0,50.1099 -13.8375,13.8375 -36.2724,13.8375 -50.1099,0 -13.8375,-13.8375 -13.8375,-36.2724 0,-50.1099 13.8375,-13.8375 36.2724,-13.8375 50.1099,0" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,709.3023,60.16659)"
+           id="g240"><g
+             id="text244"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor3"><path
+               id="path864"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path866"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path868"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path870"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path872"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path874"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path876"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path878"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path880"
+               style=""
+               d="m 41.810001,-4.05 v 0.72 q 0.24,-0.03 0.51,-0.03 0.32,0 0.59,0.09 0.28,0.08 0.48,0.26 0.2,0.17 0.32,0.43 0.12,0.25 0.12,0.58 0,0.32 -0.13,0.58 -0.12,0.25 -0.33,0.43 -0.21,0.17 -0.49,0.27 -0.28,0.09 -0.59,0.09 -0.73,0 -1.11,-0.43 -0.38,-0.44 -0.4,-1.13 h -0.85 q -0.01,0.55 0.15,0.98 0.17,0.43 0.48,0.73 0.31,0.29 0.75,0.44 0.44,0.15 0.98,0.15 0.5,0 0.94,-0.13 0.45,-0.14 0.78,-0.41 0.33,-0.27 0.52,-0.67 0.2,-0.41 0.2,-0.94 0,-0.64 -0.32,-1.11 -0.31,-0.47 -0.96,-0.61 v -0.02 q 0.42,-0.19 0.7,-0.56 0.28,-0.37 0.28,-0.85 0,-0.49 -0.17,-0.85 -0.16,-0.36 -0.45,-0.59 -0.29,-0.23 -0.69,-0.34 -0.39,-0.12 -0.85,-0.12 -0.53,0 -0.94,0.17 -0.4,0.17 -0.67,0.47 -0.27,0.3 -0.42,0.72 -0.14,0.42 -0.16,0.93 h 0.85 q 0,-0.31 0.08,-0.59 0.08,-0.28 0.24,-0.49 0.17,-0.21 0.42,-0.33 0.26,-0.13 0.6,-0.13 0.54,0 0.9,0.29 0.36,0.28 0.36,0.85 0,0.28 -0.11,0.5 -0.11,0.22 -0.3,0.37 -0.18,0.14 -0.43,0.22 -0.24,0.07 -0.51,0.07 h -0.18 q -0.05,0 -0.1,0 -0.04,0 -0.09,-0.01 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g246"><path
+             id="path248"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 648.4608,370.9742 -63.733,37.1945 m 63.8596,-37.3167 -63.43,37.0441" /></g><path
+           id="path250"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 607.4316,159.2691 8.5989,1.523 -3.1217,5.2785 z" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g252"><path
+             id="path254"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 578.5012,412.342 8.4131,-1.4901 -3.0543,-5.1645 z" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g256"><path
+             id="path258"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 643.1056,431.3502 -51.9978,0.0247 m 52.1229,-0.0796 -51.6515,0.0785" /></g><path
+           id="path260"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 612.7379,139.8409 8.1766,-3.0663 v 6.1325 z" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g262"><path
+             id="path264"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 583.6928,431.3504 8,3 v -6 z" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g266"><path
+             id="path268"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 648.1516,491.5469 -63.1804,-36.9754 m 63.2994,36.8606 -62.917,-36.7224" /></g><path
+           id="path270"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 607.4316,120.4127 5.4772,-6.8015 3.1217,5.2785 z" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g272"><path
+             id="path274"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 578.5012,450.3588 5.3588,6.6546 3.0543,-5.1645 z" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,316.6935,295.0448)"
+           id="g276"><g
+             id="text280"
+             style="font-variant:normal;font-weight:normal;font-size:14px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-60.354,4.804001)"
+             aria-label="if promised m ( &gt; n) "><path
+               id="path883"
+               style=""
+               d="m 2.156,-8.54 v -1.456 h -1.19 v 1.456 z m -1.19,1.302 V 0 h 1.19 v -7.238 z" /><path
+               id="path885"
+               style=""
+               d="M 4.494,-6.188 V 0 h 1.19 v -6.188 h 1.4 v -1.05 h -1.4 v -1.008 q 0,-0.476 0.238,-0.644 0.238,-0.168 0.672,-0.168 0.154,0 0.336,0.028 0.182,0.014 0.336,0.07 v -1.036 q -0.168,-0.056 -0.392,-0.084 -0.21,-0.028 -0.378,-0.028 -0.98,0 -1.498,0.462 -0.504,0.448 -0.504,1.33 v 1.078 H 3.276 v 1.05 z" /><path
+               id="path887"
+               style=""
+               d="m 12.082,-7.238 v 9.996 h 1.19 V -0.966 H 13.3 q 0.196,0.322 0.476,0.546 0.294,0.21 0.616,0.336 0.322,0.126 0.644,0.182 0.336,0.056 0.602,0.056 0.826,0 1.442,-0.294 0.63,-0.294 1.036,-0.798 0.42,-0.518 0.616,-1.204 0.21,-0.686 0.21,-1.456 0,-0.77 -0.21,-1.456 -0.21,-0.686 -0.63,-1.204 -0.406,-0.532 -1.036,-0.84 -0.616,-0.308 -1.456,-0.308 -0.756,0 -1.386,0.28 -0.63,0.266 -0.924,0.868 h -0.028 v -0.98 z m 5.6,3.556 q 0,0.532 -0.112,1.036 -0.112,0.504 -0.364,0.896 -0.252,0.392 -0.672,0.63 -0.406,0.238 -1.022,0.238 -0.616,0 -1.05,-0.224 Q 14.028,-1.344 13.748,-1.722 13.482,-2.1 13.356,-2.59 13.23,-3.094 13.23,-3.626 q 0,-0.504 0.112,-0.994 0.126,-0.49 0.392,-0.868 0.266,-0.392 0.686,-0.63 0.42,-0.238 1.022,-0.238 0.574,0 0.994,0.224 0.434,0.224 0.7,0.602 0.28,0.378 0.406,0.868 0.14,0.476 0.14,0.98 z" /><path
+               id="path889"
+               style=""
+               d="M 20.299999,-7.238 V 0 h 1.19 v -3.22 q 0,-0.7 0.14,-1.232 0.14,-0.546 0.448,-0.924 0.308,-0.378 0.812,-0.574 0.504,-0.196 1.218,-0.196 v -1.26 q -0.966,-0.028 -1.596,0.392 -0.63,0.42 -1.064,1.302 h -0.028 v -1.526 z" /><path
+               id="path891"
+               style=""
+               d="m 25.620001,-3.612 q 0,-0.658 0.168,-1.162 0.182,-0.518 0.49,-0.868 0.308,-0.35 0.714,-0.532 0.42,-0.182 0.882,-0.182 0.462,0 0.868,0.182 0.42,0.182 0.728,0.532 0.308,0.35 0.476,0.868 0.182,0.504 0.182,1.162 0,0.658 -0.182,1.176 -0.168,0.504 -0.476,0.854 -0.308,0.336 -0.728,0.518 -0.406,0.182 -0.868,0.182 -0.462,0 -0.882,-0.182 -0.406,-0.182 -0.714,-0.518 -0.308,-0.35 -0.49,-0.854 -0.168,-0.518 -0.168,-1.176 z m -1.26,0 q 0,0.798 0.224,1.484 0.224,0.686 0.672,1.204 0.448,0.504 1.106,0.798 0.658,0.28 1.512,0.28 0.868,0 1.512,-0.28 0.658,-0.294 1.106,-0.798 0.448,-0.518 0.672,-1.204 0.224,-0.686 0.224,-1.484 0,-0.798 -0.224,-1.484 -0.224,-0.7 -0.672,-1.204 -0.448,-0.518 -1.106,-0.812 -0.644,-0.294 -1.512,-0.294 -0.854,0 -1.512,0.294 -0.658,0.294 -1.106,0.812 -0.448,0.504 -0.672,1.204 -0.224,0.686 -0.224,1.484 z" /><path
+               id="path893"
+               style=""
+               d="M 32.788,-7.238 V 0 h 1.19 v -4.508 q 0,-0.21 0.098,-0.518 0.112,-0.322 0.336,-0.616 0.238,-0.294 0.602,-0.504 0.378,-0.21 0.896,-0.21 0.406,0 0.658,0.126 0.266,0.112 0.42,0.336 0.154,0.21 0.21,0.504 0.07,0.294 0.07,0.644 V 0 h 1.19 v -4.508 q 0,-0.84 0.504,-1.344 0.504,-0.504 1.386,-0.504 0.434,0 0.7,0.126 0.28,0.126 0.434,0.35 0.154,0.21 0.21,0.504 0.056,0.294 0.056,0.63 V 0 h 1.19 v -5.306 q 0,-0.56 -0.182,-0.952 -0.168,-0.406 -0.49,-0.658 -0.308,-0.252 -0.756,-0.364 -0.434,-0.126 -0.98,-0.126 -0.714,0 -1.316,0.322 -0.588,0.322 -0.952,0.91 -0.224,-0.672 -0.77,-0.952 -0.546,-0.28 -1.218,-0.28 -1.526,0 -2.338,1.232 h -0.028 v -1.064 z" /><path
+               id="path895"
+               style=""
+               d="M 45.99,-8.54 V -9.996 H 44.8 V -8.54 Z M 44.8,-7.238 V 0 h 1.19 v -7.238 z" /><path
+               id="path897"
+               style=""
+               d="m 48.566001,-2.282 h -1.19 q 0.028,0.672 0.28,1.148 0.252,0.462 0.672,0.756 0.42,0.28 0.966,0.406 0.546,0.126 1.148,0.126 0.546,0 1.092,-0.112 0.56,-0.098 0.994,-0.364 0.448,-0.266 0.714,-0.7 0.28,-0.434 0.28,-1.092 0,-0.518 -0.21,-0.868 -0.196,-0.35 -0.532,-0.574 -0.322,-0.238 -0.756,-0.378 -0.42,-0.14 -0.868,-0.238 -0.42,-0.098 -0.84,-0.182 -0.42,-0.098 -0.756,-0.224 -0.336,-0.14 -0.56,-0.336 -0.21,-0.21 -0.21,-0.518 0,-0.28 0.14,-0.448 0.14,-0.182 0.364,-0.28 0.224,-0.112 0.49,-0.154 0.28,-0.042 0.546,-0.042 0.294,0 0.574,0.07 0.294,0.056 0.532,0.196 0.238,0.14 0.392,0.378 0.154,0.224 0.182,0.574 h 1.19 q -0.042,-0.658 -0.28,-1.092 -0.238,-0.448 -0.644,-0.7 -0.392,-0.266 -0.91,-0.364 -0.518,-0.112 -1.134,-0.112 -0.476,0 -0.966,0.126 -0.476,0.112 -0.868,0.364 -0.378,0.238 -0.63,0.63 -0.238,0.392 -0.238,0.938 0,0.7 0.35,1.092 0.35,0.392 0.868,0.616 0.532,0.21 1.148,0.336 0.616,0.112 1.134,0.266 0.532,0.14 0.882,0.378 0.35,0.238 0.35,0.7 0,0.336 -0.168,0.56 -0.168,0.21 -0.434,0.322 -0.252,0.112 -0.56,0.154 -0.308,0.042 -0.588,0.042 -0.364,0 -0.714,-0.07 -0.336,-0.07 -0.616,-0.224 -0.266,-0.168 -0.434,-0.434 -0.168,-0.28 -0.182,-0.672 z" /><path
+               id="path899"
+               style=""
+               d="m 59.864001,-4.312 h -4.158 q 0.028,-0.42 0.182,-0.784 0.154,-0.378 0.42,-0.658 0.266,-0.28 0.63,-0.434 0.378,-0.168 0.84,-0.168 0.448,0 0.812,0.168 0.378,0.154 0.644,0.434 0.28,0.266 0.434,0.644 0.168,0.378 0.196,0.798 z m 1.148,2.016 h -1.176 q -0.154,0.714 -0.644,1.064 -0.476,0.35 -1.232,0.35 -0.588,0 -1.022,-0.196 -0.434,-0.196 -0.714,-0.518 -0.28,-0.336 -0.406,-0.756 -0.126,-0.434 -0.112,-0.91 h 5.418 q 0.028,-0.658 -0.126,-1.386 -0.14,-0.728 -0.532,-1.344 -0.378,-0.616 -1.022,-1.008 -0.63,-0.406 -1.596,-0.406 -0.742,0 -1.372,0.28 -0.616,0.28 -1.078,0.784 -0.448,0.504 -0.7,1.19 -0.252,0.686 -0.252,1.512 0.028,0.826 0.238,1.526 0.224,0.7 0.658,1.204 0.434,0.504 1.064,0.784 0.644,0.28 1.512,0.28 1.232,0 2.044,-0.616 0.812,-0.616 1.05,-1.834 z" /><path
+               id="path901"
+               style=""
+               d="m 63.223999,-3.556 q 0,-0.532 0.112,-1.036 0.112,-0.504 0.364,-0.896 0.252,-0.392 0.672,-0.63 0.42,-0.238 1.022,-0.238 0.616,0 1.05,0.238 0.434,0.224 0.7,0.602 0.28,0.378 0.406,0.882 0.126,0.49 0.126,1.022 0,0.504 -0.126,0.994 -0.112,0.49 -0.378,0.882 -0.266,0.378 -0.686,0.616 -0.42,0.238 -1.022,0.238 -0.574,0 -1.008,-0.224 -0.42,-0.224 -0.7,-0.602 -0.266,-0.378 -0.406,-0.854 -0.126,-0.49 -0.126,-0.994 z m 5.6,3.556 v -9.996 h -1.19 v 3.724 h -0.028 q -0.196,-0.322 -0.49,-0.532 -0.28,-0.224 -0.602,-0.35 -0.322,-0.14 -0.644,-0.196 -0.322,-0.056 -0.602,-0.056 -0.826,0 -1.456,0.308 -0.616,0.294 -1.036,0.812 -0.406,0.504 -0.616,1.19 -0.196,0.686 -0.196,1.456 0,0.77 0.21,1.456 0.21,0.686 0.616,1.204 0.42,0.518 1.036,0.826 0.63,0.308 1.47,0.308 0.756,0 1.386,-0.266 0.63,-0.266 0.924,-0.868 h 0.028 V 0 Z" /><path
+               id="path903"
+               style=""
+               d="M 74.549999,-7.238 V 0 h 1.19 v -4.508 q 0,-0.21 0.098,-0.518 0.112,-0.322 0.336,-0.616 0.238,-0.294 0.602,-0.504 0.378,-0.21 0.896,-0.21 0.406,0 0.658,0.126 0.266,0.112 0.42,0.336 0.154,0.21 0.21,0.504 0.07,0.294 0.07,0.644 V 0 h 1.19 v -4.508 q 0,-0.84 0.504,-1.344 0.504,-0.504 1.386,-0.504 0.434,0 0.7,0.126 0.28,0.126 0.434,0.35 0.154,0.21 0.21,0.504 0.056,0.294 0.056,0.63 V 0 h 1.19 v -5.306 q 0,-0.56 -0.182,-0.952 -0.168,-0.406 -0.49,-0.658 -0.308,-0.252 -0.756,-0.364 -0.434,-0.126 -0.98,-0.126 -0.714,0 -1.316,0.322 -0.588,0.322 -0.952,0.91 -0.224,-0.672 -0.77,-0.952 -0.546,-0.28 -1.218,-0.28 -1.526,0 -2.338,1.232 h -0.028 v -1.064 z" /><path
+               id="path905"
+               style=""
+               d="m 92.343999,2.758 h 0.91 q -0.994,-1.61 -1.428,-3.192 -0.42,-1.582 -0.42,-3.346 0,-1.722 0.42,-3.29 0.42,-1.568 1.428,-3.164 h -0.91 q -1.092,1.442 -1.652,3.122 -0.546,1.68 -0.546,3.332 0,0.924 0.154,1.764 0.154,0.84 0.434,1.638 0.294,0.798 0.7,1.568 0.406,0.784 0.91,1.568 z" /><path
+               id="path907"
+               style=""
+               d="M 97.649997,-0.84 V 0.098 L 104.762,-3.108 v -0.868 l -7.112003,-3.22 v 0.952 L 103.6,-3.542 Z" /><path
+               id="path909"
+               style=""
+               d="M 110.194,-7.238 V 0 h 1.19 v -4.088 q 0,-0.49 0.126,-0.896 0.14,-0.42 0.406,-0.728 0.266,-0.308 0.658,-0.476 0.406,-0.168 0.952,-0.168 0.686,0 1.078,0.392 0.392,0.392 0.392,1.064 V 0 h 1.19 v -4.76 q 0,-0.588 -0.126,-1.064 -0.112,-0.49 -0.406,-0.84 -0.294,-0.35 -0.77,-0.546 -0.476,-0.196 -1.19,-0.196 -1.61,0 -2.352,1.316 h -0.028 v -1.148 z" /><path
+               id="path911"
+               style=""
+               d="m 116.956,2.758 h 0.896 q 1.092,-1.442 1.638,-3.108 0.56,-1.68 0.56,-3.332 0,-0.924 -0.154,-1.764 -0.154,-0.84 -0.448,-1.638 -0.28,-0.812 -0.686,-1.582 -0.406,-0.784 -0.91,-1.568 h -0.896 q 0.98,1.61 1.4,3.206 0.434,1.582 0.434,3.346 0,1.708 -0.42,3.29 -0.42,1.568 -1.414,3.15 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,120.0732,477.6559)"
+           id="g282"><g
+             id="text286"
+             style="font-variant:normal;font-weight:normal;font-size:16px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-60.472,2.499992)"
+             aria-label="prepare"><path
+               id="path914"
+               style=""
+               d="M 1.072,-8.272 V 3.152 h 1.36 v -4.256 h 0.032 q 0.224,0.368 0.544,0.624 0.336,0.24 0.704,0.384 0.368,0.144 0.736,0.208 0.384,0.064 0.688,0.064 0.944,0 1.648,-0.336 0.72,-0.336 1.184,-0.912 0.48,-0.592 0.704,-1.376 0.24,-0.784 0.24,-1.664 0,-0.88 -0.24,-1.664 Q 8.432,-6.56 7.952,-7.152 7.488,-7.76 6.768,-8.112 6.064,-8.464 5.104,-8.464 4.24,-8.464 3.52,-8.144 2.8,-7.84 2.464,-7.152 H 2.432 v -1.12 z m 6.4,4.064 q 0,0.608 -0.128,1.184 Q 7.216,-2.448 6.928,-2 6.64,-1.552 6.16,-1.28 q -0.464,0.272 -1.168,0.272 -0.704,0 -1.2,-0.256 Q 3.296,-1.536 2.976,-1.968 2.672,-2.4 2.528,-2.96 2.384,-3.536 2.384,-4.144 q 0,-0.576 0.128,-1.136 0.144,-0.56 0.448,-0.992 0.304,-0.448 0.784,-0.72 0.48,-0.272 1.168,-0.272 0.656,0 1.136,0.256 0.496,0.256 0.8,0.688 0.32,0.432 0.464,0.992 0.16,0.544 0.16,1.12 z" /><path
+               id="path916"
+               style=""
+               d="M 10.464,-8.272 V 0 h 1.36 v -3.68 q 0,-0.8 0.16,-1.408 0.16,-0.624 0.512,-1.056 0.352,-0.432 0.928,-0.656 0.576,-0.224 1.392,-0.224 v -1.44 q -1.104,-0.032 -1.824,0.448 -0.72,0.48 -1.216,1.488 h -0.032 v -1.744 z" /><path
+               id="path918"
+               style=""
+               d="m 21.296,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 -0.496,-0.224 -0.816,-0.592 -0.32,-0.384 -0.464,-0.864 -0.144,-0.496 -0.128,-1.04 h 6.192 Q 22.768,-4.48 22.592,-5.312 22.432,-6.144 21.984,-6.848 21.552,-7.552 20.816,-8 q -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /><path
+               id="path920"
+               style=""
+               d="M 24.192001,-8.272 V 3.152 h 1.36 v -4.256 h 0.032 q 0.224,0.368 0.544,0.624 0.336,0.24 0.704,0.384 0.368,0.144 0.736,0.208 0.384,0.064 0.688,0.064 0.944,0 1.648,-0.336 0.72,-0.336 1.184,-0.912 0.48,-0.592 0.704,-1.376 0.24,-0.784 0.24,-1.664 0,-0.88 -0.24,-1.664 -0.24,-0.784 -0.72,-1.376 -0.464,-0.608 -1.184,-0.96 -0.704,-0.352 -1.664,-0.352 -0.864,0 -1.584,0.32 -0.72,0.304 -1.056,0.992 h -0.032 v -1.12 z m 6.4,4.064 q 0,0.608 -0.128,1.184 -0.128,0.576 -0.416,1.024 -0.288,0.448 -0.768,0.72 -0.464,0.272 -1.168,0.272 -0.704,0 -1.2,-0.256 -0.496,-0.272 -0.816,-0.704 -0.304,-0.432 -0.448,-0.992 -0.144,-0.576 -0.144,-1.184 0,-0.576 0.128,-1.136 0.144,-0.56 0.448,-0.992 0.304,-0.448 0.784,-0.72 0.48,-0.272 1.168,-0.272 0.656,0 1.136,0.256 0.496,0.256 0.8,0.688 0.32,0.432 0.464,0.992 0.16,0.544 0.16,1.12 z" /><path
+               id="path922"
+               style=""
+               d="m 40.960002,-0.032 q -0.352,0.208 -0.976,0.208 -0.528,0 -0.848,-0.288 -0.304,-0.304 -0.304,-0.976 -0.56,0.672 -1.312,0.976 -0.736,0.288 -1.6,0.288 -0.56,0 -1.072,-0.128 -0.496,-0.128 -0.864,-0.4 -0.368,-0.272 -0.592,-0.704 -0.208,-0.448 -0.208,-1.072 0,-0.704 0.24,-1.152 0.24,-0.448 0.624,-0.72 0.4,-0.288 0.896,-0.432 0.512,-0.144 1.04,-0.24 0.56,-0.112 1.056,-0.16 0.512,-0.064 0.896,-0.16 0.384,-0.112 0.608,-0.304 0.224,-0.208 0.224,-0.592 0,-0.448 -0.176,-0.72 -0.16,-0.272 -0.432,-0.416 -0.256,-0.144 -0.592,-0.192 -0.32,-0.048 -0.64,-0.048 -0.864,0 -1.44,0.336 -0.576,0.32 -0.624,1.232 h -1.36 q 0.032,-0.768 0.32,-1.296 0.288,-0.528 0.768,-0.848 0.48,-0.336 1.088,-0.48 0.624,-0.144 1.328,-0.144 0.56,0 1.104,0.08 0.56,0.08 1.008,0.336 0.448,0.24 0.72,0.688 0.272,0.448 0.272,1.168 v 4.256 q 0,0.48 0.048,0.704 0.064,0.224 0.384,0.224 0.176,0 0.416,-0.08 z m -2.208,-4.24 q -0.256,0.192 -0.672,0.288 -0.416,0.08 -0.88,0.144 -0.448,0.048 -0.912,0.128 -0.464,0.064 -0.832,0.224 -0.368,0.16 -0.608,0.464 -0.224,0.288 -0.224,0.8 0,0.336 0.128,0.576 0.144,0.224 0.352,0.368 0.224,0.144 0.512,0.208 0.288,0.064 0.608,0.064 0.672,0 1.152,-0.176 0.48,-0.192 0.784,-0.464 0.304,-0.288 0.448,-0.608 0.144,-0.336 0.144,-0.624 z" /><path
+               id="path924"
+               style=""
+               d="M 42.176001,-8.272 V 0 h 1.36 v -3.68 q 0,-0.8 0.16,-1.408 0.16,-0.624 0.512,-1.056 0.352,-0.432 0.928,-0.656 0.576,-0.224 1.392,-0.224 v -1.44 q -1.104,-0.032 -1.824,0.448 -0.72,0.48 -1.216,1.488 h -0.032 v -1.744 z" /><path
+               id="path926"
+               style=""
+               d="m 53.008002,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 -0.496,-0.224 -0.816,-0.592 -0.32,-0.384 -0.464,-0.864 -0.144,-0.496 -0.128,-1.04 h 6.192 q 0.032,-0.752 -0.144,-1.584 -0.16,-0.832 -0.608,-1.536 -0.432,-0.704 -1.168,-1.152 -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,120.0732,477.6559)"
+           id="g288"><g
+             id="text292"
+             style="font-variant:normal;font-size:16px;font-family:'Hiragino Sans GB';-inkscape-font-specification:HiraginoSans-W3;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-0.312,2.499992)"
+             aria-label="request"><path
+               id="path929"
+               style=""
+               d="M 6.672,-8.72 C 6,-8.832 5.728,-8.864 5.248,-8.864 c -0.768,0 -1.312,0.16 -1.92,0.56 -0.336,0.224 -0.576,0.48 -0.88,0.976 0.016,-0.112 0.016,-0.352 0.016,-0.48 V -8.72 H 1.136 c 0.08,0.576 0.112,1.008 0.112,1.808 v 5.008 c 0,0.656 -0.032,1.072 -0.112,1.808 h 1.44 C 2.496,-0.72 2.464,-1.168 2.464,-1.888 v -3.264 c 0.064,-0.72 0.208,-1.104 0.592,-1.6 0.48,-0.64 1.152,-0.976 1.968,-0.976 0.4,0 0.688,0.048 1.296,0.24 z" /><path
+               id="path931"
+               style=""
+               d="m 15.568,-4.224 c -0.032,-0.432 -0.096,-1.056 -0.112,-1.232 -0.32,-2.144 -1.808,-3.472 -3.872,-3.472 -2.3999999,0 -3.9679999,1.792 -3.9679999,4.528 0,2.768 1.584,4.528 4.0959999,4.528 1.168,0 2.144,-0.384 2.896,-1.12 0.368,-0.368 0.576,-0.656 0.88,-1.328 l -1.12,-0.448 c -0.448,1.232 -1.344,1.872 -2.64,1.872 -0.96,0 -1.7439999,-0.384 -2.2559999,-1.088 -0.432,-0.576 -0.592,-1.168 -0.64,-2.24 z M 8.8800001,-5.232 c 0.096,-0.608 0.176,-0.896 0.4,-1.296 0.48,-0.896 1.2959999,-1.392 2.2719999,-1.392 0.768,0 1.392,0.24 1.888,0.72 0.512,0.496 0.752,1.072 0.848,1.968 z" /><path
+               id="path933"
+               style=""
+               d="M 25.488,3.264 C 25.408,2.672 25.376,2.144 25.376,1.472 V -6.88 c 0,-0.784 0.032,-1.248 0.112,-1.84 h -1.28 v 0.912 c 0,0.24 0.016,0.384 0.048,0.656 -0.72,-1.152 -1.824,-1.728 -3.28,-1.728 -2.416,0 -3.952,1.744 -3.952,4.48 0,2.752 1.52,4.448 3.984,4.448 1.376,0 2.496,-0.576 3.248,-1.696 -0.048,0.416 -0.064,0.672 -0.064,1.12 v 1.984 c 0,0.72 -0.032,1.2 -0.112,1.808 z M 18.272,-4.4 c 0,-2.16 1.072,-3.44 2.864,-3.44 1.84,0 3.04,1.344 3.04,3.392 0,2.096 -1.232,3.456 -3.104,3.456 -1.744,0 -2.8,-1.28 -2.8,-3.408 z" /><path
+               id="path935"
+               style=""
+               d="m 34.048001,-0.096 h 1.328 c -0.096,-0.64 -0.128,-1.088 -0.128,-1.808 v -5.008 c 0,-0.736 0.032,-1.248 0.112,-1.808 h -1.424 c 0.08,0.56 0.112,1.12 0.112,1.808 v 3.088 c -0.144,0.64 -0.32,1.04 -0.736,1.6 -0.64,0.864 -1.392,1.264 -2.304,1.264 -1.248,0 -1.936,-0.8 -1.936,-2.224 v -3.728 c 0,-0.704 0.032,-1.248 0.112,-1.808 h -1.44 c 0.08,0.512 0.112,1.072 0.112,1.792 v 3.952 c 0,0.768 0.16,1.392 0.448,1.856 0.512,0.768 1.408,1.184 2.56,1.184 1.44,0 2.432,-0.592 3.232,-1.904 -0.048,0.416 -0.048,0.528 -0.048,0.704 z" /><path
+               id="path937"
+               style=""
+               d="m 45.200001,-4.224 c -0.032,-0.432 -0.096,-1.056 -0.112,-1.232 -0.32,-2.144 -1.808,-3.472 -3.872,-3.472 -2.4,0 -3.968,1.792 -3.968,4.528 0,2.768 1.584,4.528 4.096,4.528 1.168,0 2.144,-0.384 2.896,-1.12 0.368,-0.368 0.576,-0.656 0.88,-1.328 l -1.12,-0.448 c -0.448,1.232 -1.344,1.872 -2.64,1.872 -0.96,0 -1.744,-0.384 -2.256,-1.088 -0.432,-0.576 -0.592,-1.168 -0.64,-2.24 z m -6.688,-1.008 c 0.096,-0.608 0.176,-0.896 0.4,-1.296 0.48,-0.896 1.296,-1.392 2.272,-1.392 0.768,0 1.392,0.24 1.888,0.72 0.512,0.496 0.752,1.072 0.848,1.968 z" /><path
+               id="path939"
+               style=""
+               d="m 46.591998,-2.432 c 0.16,0.656 0.272,0.928 0.512,1.264 0.592,0.816 1.712,1.248 3.168,1.248 2.192,0 3.552,-0.992 3.552,-2.592 0,-0.656 -0.272,-1.264 -0.768,-1.664 -0.48,-0.368 -0.992,-0.56 -2.544,-0.912 -0.992,-0.208 -1.408,-0.336 -1.776,-0.544 -0.352,-0.192 -0.544,-0.512 -0.544,-0.88 0,-0.848 0.832,-1.44 2,-1.44 0.72,0 1.296,0.208 1.664,0.608 0.224,0.224 0.304,0.416 0.4,0.848 l 1.264,-0.208 c -0.208,-0.736 -0.432,-1.104 -0.848,-1.456 -0.576,-0.512 -1.424,-0.768 -2.512,-0.768 -1.072,0 -1.936,0.288 -2.496,0.832 -0.448,0.432 -0.688,0.976 -0.688,1.552 0,0.704 0.304,1.296 0.864,1.68 0.544,0.368 1.088,0.56 2.368,0.832 1.184,0.24 1.504,0.336 1.888,0.576 0.336,0.208 0.496,0.544 0.496,0.992 0,0.944 -0.88,1.536 -2.272,1.536 -0.816,0 -1.456,-0.192 -1.856,-0.56 -0.32,-0.288 -0.448,-0.576 -0.56,-1.168 z" /><path
+               id="path941"
+               style=""
+               d="m 56.656001,-11.104 c 0.08,0.528 0.112,1.136 0.112,1.776 v 0.608 h -0.64 c -0.672,0 -0.992,-0.016 -1.44,-0.096 V -7.6 c 0.528,-0.064 0.896,-0.096 1.44,-0.096 h 0.64 v 5.728 c 0,0.752 0.128,1.216 0.448,1.536 0.32,0.32 0.864,0.496 1.568,0.496 0.656,0 1.152,-0.096 1.808,-0.368 l -0.352,-1.12 c -0.528,0.32 -0.848,0.416 -1.264,0.416 -0.336,0 -0.608,-0.096 -0.784,-0.272 -0.144,-0.144 -0.208,-0.384 -0.208,-0.848 v -5.568 h 0.768 c 0.72,0 1.12,0.016 1.632,0.096 v -1.216 c -0.56,0.08 -0.896,0.096 -1.632,0.096 h -0.768 v -0.608 c 0,-0.688 0.032,-1.264 0.112,-1.776 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g294"><path
+             id="path296"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 211.7399,306.9054 20.2737,-94.6018 m -20.1687,94.4725 20.1735,-94.242" /></g><path
+           id="path298"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 254.7628,371.2586 -4.7018,-7.3588 5.998,-1.2771 z" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g300"><path
+             id="path302"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 233.4526,204.933 -4.6002,7.1998 5.8684,1.2495 z" /></g><path
+           id="path304"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 603.2867,450.162 c 14.143,-14.1431 14.143,-37.0734 0,-51.2165 -14.1431,-14.1431 -37.0735,-14.1431 -51.2166,0 -14.1431,14.1431 -14.1431,37.0734 0,51.2165 14.1431,14.1431 37.0735,14.1431 51.2166,0" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g306"><path
+             id="path308"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 574.4458,127.7344 c 13.8375,13.8375 13.8375,36.2724 0,50.1099 -13.8375,13.8375 -36.2724,13.8375 -50.1099,0 -13.8375,-13.8375 -13.8375,-36.2724 0,-50.1099 13.8375,-13.8375 36.2724,-13.8375 50.1099,0" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,577.6784,424.5537)"
+           id="g310"><g
+             id="text314"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.875,3.860001)"
+             aria-label="proposer1"><path
+               id="path944"
+               style=""
+               d="m 0.67,-5.17 v 7.14 h 0.85 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 Q 5.27,-4.1 4.97,-4.47 4.68,-4.85 4.23,-5.07 3.79,-5.29 3.19,-5.29 2.65,-5.29 2.2,-5.09 1.75,-4.9 1.54,-4.47 H 1.52 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 Q 2.06,-0.96 1.86,-1.23 1.67,-1.5 1.58,-1.85 1.49,-2.21 1.49,-2.59 q 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path946"
+               style=""
+               d="M 6.5399998,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path948"
+               style=""
+               d="m 10.34,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9000001,0 q 0,0.57 0.16,1.06 0.16,0.49 0.4800001,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.3200001,0.36 -0.4800001,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path950"
+               style=""
+               d="m 15.49,-5.17 v 7.14 h 0.85 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 h -0.02 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path952"
+               style=""
+               d="m 22.01,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path954"
+               style=""
+               d="M 27.65,-1.63 H 26.8 q 0.02,0.48 0.2,0.82 0.18,0.33 0.48,0.54 0.3,0.2 0.69,0.29 0.39,0.09 0.82,0.09 0.39,0 0.78,-0.08 0.4,-0.07 0.71,-0.26 0.32,-0.19 0.51,-0.5 0.2,-0.31 0.2,-0.78 0,-0.37 -0.15,-0.62 -0.14,-0.25 -0.38,-0.41 -0.23,-0.17 -0.54,-0.27 -0.3,-0.1 -0.62,-0.17 -0.3,-0.07 -0.6,-0.13 -0.3,-0.07 -0.54,-0.16 -0.24,-0.1 -0.4,-0.24 -0.15,-0.15 -0.15,-0.37 0,-0.2 0.1,-0.32 0.1,-0.13 0.26,-0.2 0.16,-0.08 0.35,-0.11 0.2,-0.03 0.39,-0.03 0.21,0 0.41,0.05 0.21,0.04 0.38,0.14 0.17,0.1 0.28,0.27 0.11,0.16 0.13,0.41 h 0.85 q -0.03,-0.47 -0.2,-0.78 -0.17,-0.32 -0.46,-0.5 -0.28,-0.19 -0.65,-0.26 -0.37,-0.08 -0.81,-0.08 -0.34,0 -0.69,0.09 -0.34,0.08 -0.62,0.26 -0.27,0.17 -0.45,0.45 -0.17,0.28 -0.17,0.67 0,0.5 0.25,0.78 0.25,0.28 0.62,0.44 0.38,0.15 0.82,0.24 0.44,0.08 0.81,0.19 0.38,0.1 0.63,0.27 0.25,0.17 0.25,0.5 0,0.24 -0.12,0.4 -0.12,0.15 -0.31,0.23 -0.18,0.08 -0.4,0.11 -0.22,0.03 -0.42,0.03 -0.26,0 -0.51,-0.05 -0.24,-0.05 -0.44,-0.16 -0.19,-0.12 -0.31,-0.31 -0.12,-0.2 -0.13,-0.48 z" /><path
+               id="path956"
+               style=""
+               d="m 35.72,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 H 35.7 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path958"
+               style=""
+               d="M 37.470001,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path960"
+               style=""
+               d="m 43.749999,0 v -7.09 h -0.65 q -0.07,0.4 -0.26,0.66 -0.19,0.26 -0.47,0.41 -0.27,0.15 -0.61,0.21 -0.34,0.05 -0.7,0.05 v 0.68 h 1.84 V 0 Z" /></g></g><path
+           id="path316"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 738.0086,529.8363 c 14.1432,-14.143 14.1432,-37.0735 0,-51.2165 -14.143,-14.1432 -37.0734,-14.1432 -51.2165,0 -14.1431,14.143 -14.1431,37.0735 0,51.2165 14.1431,14.1432 37.0735,14.1432 51.2165,0" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g318"><path
+             id="path320"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 706.2568,49.78167 c 13.8376,13.83747 13.8376,36.27241 0,50.10988 -13.8374,13.83755 -36.2724,13.83755 -50.1099,0 -13.8375,-13.83747 -13.8375,-36.27241 0,-50.10988 13.8375,-13.83753 36.2725,-13.83753 50.1099,0" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,712.4004,504.2281)"
+           id="g322"><g
+             id="text326"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor1"><path
+               id="path963"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path965"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path967"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path969"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path971"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path973"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path975"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path977"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path979"
+               style=""
+               d="m 43.190001,0 v -7.09 h -0.65 q -0.07,0.4 -0.26,0.66 -0.19,0.26 -0.47,0.41 -0.27,0.15 -0.61,0.21 -0.34,0.05 -0.7,0.05 v 0.68 h 1.84 V 0 Z" /></g></g><path
+           id="path328"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 738.0086,450.162 c 14.1432,-14.1431 14.1432,-37.0734 0,-51.2165 -14.143,-14.1431 -37.0734,-14.1431 -51.2165,0 -14.1431,14.1431 -14.1431,37.0734 0,51.2165 14.1431,14.1431 37.0735,14.1431 51.2165,0" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g330"><path
+             id="path332"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 706.2568,127.7344 c 13.8376,13.8375 13.8376,36.2724 0,50.1099 -13.8374,13.8375 -36.2724,13.8375 -50.1099,0 -13.8375,-13.8375 -13.8375,-36.2724 0,-50.1099 13.8375,-13.8375 36.2725,-13.8375 50.1099,0" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,712.4004,424.5537)"
+           id="g334"><g
+             id="text338"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor2"><path
+               id="path982"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path984"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path986"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path988"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path990"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path992"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path994"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path996"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path998"
+               style=""
+               d="m 40.070001,-4.58 h 0.85 q -0.01,-0.32 0.06,-0.63 0.08,-0.32 0.25,-0.57 0.17,-0.25 0.43,-0.4 0.27,-0.16 0.64,-0.16 0.28,0 0.53,0.09 0.25,0.09 0.43,0.26 0.19,0.17 0.3,0.41 0.11,0.23 0.11,0.52 0,0.37 -0.12,0.65 -0.11,0.28 -0.34,0.52 -0.22,0.24 -0.56,0.48 -0.34,0.23 -0.79,0.51 -0.37,0.22 -0.71,0.47 -0.34,0.25 -0.61,0.58 -0.27,0.33 -0.45,0.78 -0.17,0.44 -0.22,1.07 h 4.63 v -0.75 h -3.64 q 0.06,-0.33 0.25,-0.58 0.2,-0.26 0.47,-0.48 0.28,-0.22 0.61,-0.41 0.33,-0.2 0.66,-0.4 0.33,-0.21 0.64,-0.44 0.31,-0.23 0.55,-0.51 0.24,-0.29 0.38,-0.65 0.15,-0.36 0.15,-0.83 0,-0.5 -0.18,-0.88 -0.17,-0.38 -0.47,-0.63 -0.3,-0.26 -0.71,-0.39 -0.4,-0.14 -0.86,-0.14 -0.56,0 -1,0.19 -0.44,0.19 -0.74,0.53 -0.29,0.33 -0.43,0.79 -0.14,0.46 -0.11,1 z" /></g></g><path
+           id="path340"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 738.0086,370.4877 c 14.1432,-14.1431 14.1432,-37.0734 0,-51.2165 -14.143,-14.1431 -37.0734,-14.1431 -51.2165,0 -14.1431,14.1431 -14.1431,37.0734 0,51.2165 14.1431,14.1431 37.0735,14.1431 51.2165,0" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g342"><path
+             id="path344"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 706.2568,205.6872 c 13.8376,13.8375 13.8376,36.2724 0,50.1099 -13.8374,13.8375 -36.2724,13.8375 -50.1099,0 -13.8375,-13.8375 -13.8375,-36.2724 0,-50.1099 13.8375,-13.8375 36.2725,-13.8375 50.1099,0" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,712.4004,344.8795)"
+           id="g346"><g
+             id="text350"
+             style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-22.595,3.860001)"
+             aria-label="acceptor3"><path
+               id="path1001"
+               style=""
+               d="M 5.22,-0.02 Q 5,0.11 4.61,0.11 4.28,0.11 4.08,-0.07 3.89,-0.26 3.89,-0.68 3.54,-0.26 3.07,-0.07 2.61,0.11 2.07,0.11 1.72,0.11 1.4,0.03 1.09,-0.05 0.86,-0.22 0.63,-0.39 0.49,-0.66 0.36,-0.94 0.36,-1.33 q 0,-0.44 0.15,-0.72 0.15,-0.28 0.39,-0.45 0.25,-0.18 0.56,-0.27 0.32,-0.09 0.65,-0.15 0.35,-0.07 0.66,-0.1 0.32,-0.04 0.56,-0.1 0.24,-0.07 0.38,-0.19 0.14,-0.13 0.14,-0.37 0,-0.28 -0.11,-0.45 Q 3.64,-4.3 3.47,-4.39 3.31,-4.48 3.1,-4.51 2.9,-4.54 2.7,-4.54 q -0.54,0 -0.9,0.21 -0.36,0.2 -0.39,0.77 H 0.56 q 0.02,-0.48 0.2,-0.81 0.18,-0.33 0.48,-0.53 0.3,-0.21 0.68,-0.3 0.39,-0.09 0.83,-0.09 0.35,0 0.69,0.05 0.35,0.05 0.63,0.21 0.28,0.15 0.45,0.43 0.17,0.28 0.17,0.73 v 2.66 q 0,0.3 0.03,0.44 0.04,0.14 0.24,0.14 0.11,0 0.26,-0.05 z M 3.84,-2.67 q -0.16,0.12 -0.42,0.18 -0.26,0.05 -0.55,0.09 -0.28,0.03 -0.57,0.08 -0.29,0.04 -0.52,0.14 -0.23,0.1 -0.38,0.29 -0.14,0.18 -0.14,0.5 0,0.21 0.08,0.36 0.09,0.14 0.22,0.23 0.14,0.09 0.32,0.13 0.18,0.04 0.38,0.04 0.42,0 0.72,-0.11 0.3,-0.12 0.49,-0.29 0.19,-0.18 0.28,-0.38 0.09,-0.21 0.09,-0.39 z" /><path
+               id="path1003"
+               style=""
+               d="M 9.5199999,-3.51 H 10.4 Q 10.35,-3.97 10.16,-4.3 9.9699999,-4.64 9.6699999,-4.86 q -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 Q 10.29,-0.93 10.43,-1.89 H 9.5599999 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 -0.29,-0.16 -0.47,-0.42 -0.18,-0.27 -0.27,-0.61 -0.08,-0.34 -0.08,-0.7 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path1005"
+               style=""
+               d="m 14.89,-3.51 h 0.88 q -0.05,-0.46 -0.24,-0.79 -0.19,-0.34 -0.49,-0.56 -0.29,-0.22 -0.68,-0.32 -0.38,-0.11 -0.82,-0.11 -0.61,0 -1.07,0.22 -0.46,0.21 -0.77,0.59 -0.3,0.37 -0.45,0.88 -0.15,0.5 -0.15,1.08 0,0.58 0.15,1.07 0.16,0.48 0.46,0.83 0.31,0.35 0.76,0.54 0.46,0.19 1.05,0.19 0.99,0 1.56,-0.52 0.58,-0.52 0.72,-1.48 h -0.87 q -0.08,0.6 -0.44,0.93 -0.35,0.33 -0.98,0.33 -0.4,0 -0.69,-0.16 Q 12.53,-0.95 12.35,-1.21 12.17,-1.48 12.08,-1.82 12,-2.16 12,-2.52 q 0,-0.39 0.08,-0.75 0.08,-0.37 0.26,-0.65 0.19,-0.28 0.5,-0.45 0.31,-0.17 0.77,-0.17 0.54,0 0.86,0.27 0.32,0.27 0.42,0.76 z" /><path
+               id="path1007"
+               style=""
+               d="m 20.340001,-3.08 h -2.97 q 0.02,-0.3 0.13,-0.56 0.11,-0.27 0.3,-0.47 0.19,-0.2 0.45,-0.31 0.27,-0.12 0.6,-0.12 0.32,0 0.58,0.12 0.27,0.11 0.46,0.31 0.2,0.19 0.31,0.46 0.12,0.27 0.14,0.57 z m 0.82,1.44 h -0.84 q -0.11,0.51 -0.46,0.76 -0.34,0.25 -0.88,0.25 -0.42,0 -0.73,-0.14 -0.31,-0.14 -0.51,-0.37 -0.2,-0.24 -0.29,-0.54 -0.09,-0.31 -0.08,-0.65 h 3.87 q 0.02,-0.47 -0.09,-0.99 -0.1,-0.52 -0.38,-0.96 -0.27,-0.44 -0.73,-0.72 -0.45,-0.29 -1.14,-0.29 -0.53,0 -0.98,0.2 -0.44,0.2 -0.77,0.56 -0.32,0.36 -0.5,0.85 -0.18,0.49 -0.18,1.08 0.02,0.59 0.17,1.09 0.16,0.5 0.47,0.86 0.31,0.36 0.76,0.56 0.46,0.2 1.08,0.2 0.88,0 1.46,-0.44 0.58,-0.44 0.75,-1.31 z" /><path
+               id="path1009"
+               style=""
+               d="M 22.15,-5.17 V 1.97 H 23 v -2.66 h 0.02 q 0.14,0.23 0.34,0.39 0.21,0.15 0.44,0.24 0.23,0.09 0.46,0.13 0.24,0.04 0.43,0.04 0.59,0 1.03,-0.21 0.45,-0.21 0.74,-0.57 0.3,-0.37 0.44,-0.86 0.15,-0.49 0.15,-1.04 0,-0.55 -0.15,-1.04 -0.15,-0.49 -0.45,-0.86 -0.29,-0.38 -0.74,-0.6 -0.44,-0.22 -1.04,-0.22 -0.54,0 -0.99,0.2 -0.45,0.19 -0.66,0.62 H 23 v -0.7 z m 4,2.54 q 0,0.38 -0.08,0.74 -0.08,0.36 -0.26,0.64 -0.18,0.28 -0.48,0.45 -0.29,0.17 -0.73,0.17 -0.44,0 -0.75,-0.16 -0.31,-0.17 -0.51,-0.44 -0.19,-0.27 -0.28,-0.62 -0.09,-0.36 -0.09,-0.74 0,-0.36 0.08,-0.71 0.09,-0.35 0.28,-0.62 0.19,-0.28 0.49,-0.45 0.3,-0.17 0.73,-0.17 0.41,0 0.71,0.16 0.31,0.16 0.5,0.43 0.2,0.27 0.29,0.62 0.1,0.34 0.1,0.7 z" /><path
+               id="path1011"
+               style=""
+               d="m 29.23,-5.17 v -1.55 h -0.85 v 1.55 H 27.5 v 0.75 h 0.88 v 3.29 q 0,0.36 0.07,0.58 0.07,0.22 0.21,0.34 0.15,0.12 0.38,0.17 Q 29.28,0 29.61,0 h 0.65 v -0.75 h -0.39 q -0.2,0 -0.33,-0.01 -0.12,-0.02 -0.19,-0.07 -0.07,-0.05 -0.1,-0.14 -0.02,-0.09 -0.02,-0.24 v -3.21 h 1.03 v -0.75 z" /><path
+               id="path1013"
+               style=""
+               d="m 31.819999,-2.58 q 0,-0.47 0.12,-0.83 0.13,-0.37 0.35,-0.62 0.22,-0.25 0.51,-0.38 0.3,-0.13 0.63,-0.13 0.33,0 0.62,0.13 0.3,0.13 0.52,0.38 0.22,0.25 0.34,0.62 0.13,0.36 0.13,0.83 0,0.47 -0.13,0.84 -0.12,0.36 -0.34,0.61 -0.22,0.24 -0.52,0.37 -0.29,0.13 -0.62,0.13 -0.33,0 -0.63,-0.13 -0.29,-0.13 -0.51,-0.37 -0.22,-0.25 -0.35,-0.61 -0.12,-0.37 -0.12,-0.84 z m -0.9,0 q 0,0.57 0.16,1.06 0.16,0.49 0.48,0.86 0.32,0.36 0.79,0.57 0.47,0.2 1.08,0.2 0.62,0 1.08,-0.2 0.47,-0.21 0.79,-0.57 0.32,-0.37 0.48,-0.86 0.16,-0.49 0.16,-1.06 0,-0.57 -0.16,-1.06 -0.16,-0.5 -0.48,-0.86 -0.32,-0.37 -0.79,-0.58 -0.46,-0.21 -1.08,-0.21 -0.61,0 -1.08,0.21 -0.47,0.21 -0.79,0.58 -0.32,0.36 -0.48,0.86 -0.16,0.49 -0.16,1.06 z" /><path
+               id="path1015"
+               style=""
+               d="M 36.909999,-5.17 V 0 h 0.85 v -2.3 q 0,-0.5 0.1,-0.88 0.1,-0.39 0.32,-0.66 0.22,-0.27 0.58,-0.41 0.36,-0.14 0.87,-0.14 v -0.9 q -0.69,-0.02 -1.14,0.28 -0.45,0.3 -0.76,0.93 h -0.02 v -1.09 z" /><path
+               id="path1017"
+               style=""
+               d="m 41.810001,-4.05 v 0.72 q 0.24,-0.03 0.51,-0.03 0.32,0 0.59,0.09 0.28,0.08 0.48,0.26 0.2,0.17 0.32,0.43 0.12,0.25 0.12,0.58 0,0.32 -0.13,0.58 -0.12,0.25 -0.33,0.43 -0.21,0.17 -0.49,0.27 -0.28,0.09 -0.59,0.09 -0.73,0 -1.11,-0.43 -0.38,-0.44 -0.4,-1.13 h -0.85 q -0.01,0.55 0.15,0.98 0.17,0.43 0.48,0.73 0.31,0.29 0.75,0.44 0.44,0.15 0.98,0.15 0.5,0 0.94,-0.13 0.45,-0.14 0.78,-0.41 0.33,-0.27 0.52,-0.67 0.2,-0.41 0.2,-0.94 0,-0.64 -0.32,-1.11 -0.31,-0.47 -0.96,-0.61 v -0.02 q 0.42,-0.19 0.7,-0.56 0.28,-0.37 0.28,-0.85 0,-0.49 -0.17,-0.85 -0.16,-0.36 -0.45,-0.59 -0.29,-0.23 -0.69,-0.34 -0.39,-0.12 -0.85,-0.12 -0.53,0 -0.94,0.17 -0.4,0.17 -0.67,0.47 -0.27,0.3 -0.42,0.72 -0.14,0.42 -0.16,0.93 h 0.85 q 0,-0.31 0.08,-0.59 0.08,-0.28 0.24,-0.49 0.17,-0.21 0.42,-0.33 0.26,-0.13 0.6,-0.13 0.54,0 0.9,0.29 0.36,0.28 0.36,0.85 0,0.28 -0.11,0.5 -0.11,0.22 -0.3,0.37 -0.18,0.14 -0.43,0.22 -0.24,0.07 -0.51,0.07 h -0.18 q -0.05,0 -0.1,0 -0.04,0 -0.09,-0.01 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g352"><path
+             id="path354"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 651.1221,92.6266 -63.0918,37.1828 m 63.2688,-37.21961 -62.8669,37.00461" /></g><path
+           id="path356"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 610.5297,443.9819 8.5989,1.523 -3.1217,5.2786 z" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g358"><path
+             id="path360"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 581.5323,133.781 8.4131,-1.4901 -3.0542,-5.1645 z" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g362"><path
+             id="path364"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 646.0674,152.7913 -51.8911,-0.3427 m 52.0159,0.2533 -51.6161,-0.2864" /></g><path
+           id="path366"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 615.8359,424.5537 8.1767,-3.0662 v 6.1325 z" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g368"><path
+             id="path370"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 586.7239,152.7894 8,3 v -6 z" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g372"><path
+             id="path374"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 651.4327,213.1296 -63.6463,-37.0279 m 63.7241,36.9839 -63.4275,-36.8737" /></g><path
+           id="path376"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 610.5297,405.1255 5.4772,-6.8014 3.1217,5.2784 z" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g378"><path
+             id="path380"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 581.5323,171.7978 5.3589,6.6545 3.0542,-5.1644 z" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,502.2377,492.9831)"
+           id="g382"><g
+             id="text386"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-30.018,3.832001)"
+             aria-label="promise: m"><path
+               id="path1020"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1022"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1024"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1026"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1028"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1030"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1032"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1034"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1036"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,498.8857,413.7434)"
+           id="g388"><g
+             id="text392"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-30.018,3.832001)"
+             aria-label="promise: m"><path
+               id="path1039"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1041"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1043"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1045"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1047"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1049"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1051"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1053"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1055"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,358.7438,412.5241)"
+           id="g394"><g
+             id="text398"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-16.668,3.832001)"
+             aria-label="ignore"><path
+               id="path1058"
+               style=""
+               d="m 1.848,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1060"
+               style=""
+               d="m 8.784,-0.528 v -5.676 h -0.96 v 0.888 H 7.812 Q 7.536,-5.832 7.044,-6.084 6.552,-6.348 5.964,-6.348 q -0.804,0 -1.356,0.312 -0.552,0.3 -0.888,0.78 -0.336,0.468 -0.48,1.056 -0.144,0.576 -0.144,1.128 0,0.636 0.168,1.212 0.18,0.564 0.528,0.996 0.348,0.42 0.864,0.672 0.516,0.252 1.212,0.252 0.6,0 1.128,-0.264 0.54,-0.276 0.804,-0.852 h 0.024 v 0.408 Q 7.824,-0.132 7.716,0.3 7.62,0.732 7.392,1.032 7.164,1.344 6.816,1.512 6.468,1.692 5.964,1.692 5.712,1.692 5.436,1.632 5.16,1.584 4.92,1.464 4.692,1.344 4.524,1.152 4.368,0.96 4.356,0.684 H 3.336 Q 3.36,1.188 3.6,1.536 3.84,1.884 4.2,2.1 q 0.372,0.216 0.816,0.312 0.456,0.096 0.888,0.096 1.488,0 2.184,-0.756 0.696,-0.756 0.696,-2.28 z m -2.856,-0.3 q -0.504,0 -0.84,-0.204 -0.336,-0.216 -0.54,-0.552 -0.204,-0.348 -0.288,-0.768 -0.084,-0.42 -0.084,-0.84 0,-0.444 0.096,-0.852 0.108,-0.408 0.324,-0.72 0.228,-0.312 0.576,-0.492 0.348,-0.192 0.84,-0.192 0.48,0 0.816,0.192 0.336,0.192 0.54,0.516 0.216,0.312 0.312,0.708 0.096,0.396 0.096,0.804 0,0.432 -0.108,0.864 -0.096,0.432 -0.312,0.78 -0.216,0.336 -0.576,0.552 -0.348,0.204 -0.852,0.204 z" /><path
+               id="path1062"
+               style=""
+               d="M 10.32,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 H 11.28 v -0.984 z" /><path
+               id="path1064"
+               style=""
+               d="m 17.736001,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1066"
+               style=""
+               d="M 23.844,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1068"
+               style=""
+               d="m 31.968,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 Q 33.072,-3.36 32.94,-3.984 32.82,-4.608 32.484,-5.136 32.16,-5.664 31.608,-6 q -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,498.8857,334.5037)"
+           id="g400"><g
+             id="text404"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.236,3.832001)"
+             aria-label="promise: n"><path
+               id="path1071"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1073"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1075"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1077"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1079"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1081"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1083"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1085"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1087"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,351.4444,348.4186)"
+           id="g406"><g
+             id="text410"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.338,3.832001)"
+             aria-label="Promise(n)"><path
+               id="path1090"
+               style=""
+               d="m 2.076,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z M 0.936,-8.568 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path1092"
+               style=""
+               d="M 8.508,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 9.468 v -1.308 z" /><path
+               id="path1094"
+               style=""
+               d="m 13.068,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 17.628,-4.968 17.244,-5.4 16.86,-5.844 16.296,-6.096 15.744,-6.348 15,-6.348 q -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1096"
+               style=""
+               d="M 19.212,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1098"
+               style=""
+               d="m 30.528,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1100"
+               style=""
+               d="m 32.736,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1102"
+               style=""
+               d="m 42.420002,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1104"
+               style=""
+               d="m 46.235998,2.364 h 0.78 q -0.852,-1.38 -1.224,-2.736 -0.36,-1.356 -0.36,-2.868 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path1106"
+               style=""
+               d="M 47.664,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1108"
+               style=""
+               d="m 53.460001,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,503.4851,483.2774)"
+           id="g412"><g
+             id="text416"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.008,3.832001)"
+             aria-label="accept: null"><path
+               id="path1111"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1113"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1115"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1117"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1119"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1121"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1123"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1125"
+               style=""
+               d="M 44.112002,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1127"
+               style=""
+               d="m 55.919999,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path1129"
+               style=""
+               d="M 57.516,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1131"
+               style=""
+               d="M 60.180001,-8.568 V 0 h 1.02 v -8.568 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,501.8916,401.5227)"
+           id="g418"><g
+             id="text422"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.008,3.832001)"
+             aria-label="accept: null"><path
+               id="path1134"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1136"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1138"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1140"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1142"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1144"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1146"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1148"
+               style=""
+               d="M 44.112002,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1150"
+               style=""
+               d="m 55.919999,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path1152"
+               style=""
+               d="M 57.516,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1154"
+               style=""
+               d="M 60.180001,-8.568 V 0 h 1.02 v -8.568 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,501.8916,321.4399)"
+           id="g424"><g
+             id="text428"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.008,3.832001)"
+             aria-label="accept: null"><path
+               id="path1157"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1159"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1161"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1163"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1165"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1167"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1169"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1171"
+               style=""
+               d="M 44.112002,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1173"
+               style=""
+               d="m 55.919999,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path1175"
+               style=""
+               d="M 57.516,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1177"
+               style=""
+               d="M 60.180001,-8.568 V 0 h 1.02 v -8.568 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,782.9161,510.7599)"
+           id="g430"><g
+             id="text434"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.236,3.832001)"
+             aria-label="promise: n"><path
+               id="path1180"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1182"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1184"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1186"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1188"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1190"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1192"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1194"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1196"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,785.922,497.6961)"
+           id="g436"><g
+             id="text440"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.008,3.832001)"
+             aria-label="accept: null"><path
+               id="path1199"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1201"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1203"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1205"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1207"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1209"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1211"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1213"
+               style=""
+               d="M 44.112002,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1215"
+               style=""
+               d="m 55.919999,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path1217"
+               style=""
+               d="M 57.516,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1219"
+               style=""
+               d="M 60.180001,-8.568 V 0 h 1.02 v -8.568 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,782.9161,431.0857)"
+           id="g442"><g
+             id="text446"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.236,3.832001)"
+             aria-label="promise: n"><path
+               id="path1222"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1224"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1226"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1228"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1230"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1232"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1234"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1236"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1238"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,785.922,418.0219)"
+           id="g448"><g
+             id="text452"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.008,3.832001)"
+             aria-label="accept: null"><path
+               id="path1241"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1243"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1245"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1247"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1249"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1251"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1253"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1255"
+               style=""
+               d="M 44.112002,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1257"
+               style=""
+               d="m 55.919999,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path1259"
+               style=""
+               d="M 57.516,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1261"
+               style=""
+               d="M 60.180001,-8.568 V 0 h 1.02 v -8.568 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,782.9161,351.4113)"
+           id="g454"><g
+             id="text458"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.236,3.832001)"
+             aria-label="promise: n"><path
+               id="path1264"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1266"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1268"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1270"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1272"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1274"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1276"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1278"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1280"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,782.9161,338.3475)"
+           id="g460"><g
+             id="text464"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-26.34,3.832001)"
+             aria-label="accept: v’"><path
+               id="path1283"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1285"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1287"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1289"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1291"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1293"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1295"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1297"
+               style=""
+               d="m 46.908002,0 2.268,-6.204 h -1.068 l -1.692,5.172 h -0.024 l -1.74,-5.172 h -1.14 l 2.304,6.204 z" /><path
+               id="path1299"
+               style=""
+               d="m 50.340002,-8.568 v 1.332 h 0.708 q 0,0.204 -0.036,0.42 -0.024,0.204 -0.108,0.372 -0.084,0.168 -0.216,0.276 -0.132,0.096 -0.336,0.096 v 0.6 q 0.348,0 0.588,-0.144 0.252,-0.144 0.408,-0.384 0.168,-0.24 0.24,-0.552 0.084,-0.324 0.084,-0.684 v -1.332 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,497.3569,518.5352)"
+           id="g466"><g
+             id="text470"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.902,3.832001)"
+             aria-label="not promise"><path
+               id="path1302"
+               style=""
+               d="M 0.768,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 H 1.728 v -0.984 z" /><path
+               id="path1304"
+               style=""
+               d="m 8.1839999,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.7560001,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.3960001,0 -0.7560001,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.2960001,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.7320001,0 -1.2960001,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1306"
+               style=""
+               d="m 15.744,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 Q 15.804,0 16.2,0 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1308"
+               style=""
+               d="m 21.480001,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1310"
+               style=""
+               d="M 28.524,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1312"
+               style=""
+               d="m 33.084001,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1314"
+               style=""
+               d="M 39.227999,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1316"
+               style=""
+               d="m 50.543999,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1318"
+               style=""
+               d="m 52.752001,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1320"
+               style=""
+               d="m 62.436001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,498.8857,437.7905)"
+           id="g472"><g
+             id="text476"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.902,3.832001)"
+             aria-label="not promise"><path
+               id="path1323"
+               style=""
+               d="M 0.768,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 H 1.728 v -0.984 z" /><path
+               id="path1325"
+               style=""
+               d="m 8.1839999,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.7560001,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.3960001,0 -0.7560001,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.2960001,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.7320001,0 -1.2960001,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1327"
+               style=""
+               d="m 15.744,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 Q 15.804,0 16.2,0 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1329"
+               style=""
+               d="m 21.480001,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1331"
+               style=""
+               d="M 28.524,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1333"
+               style=""
+               d="m 33.084001,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1335"
+               style=""
+               d="M 39.227999,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1337"
+               style=""
+               d="m 50.543999,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1339"
+               style=""
+               d="m 52.752001,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1341"
+               style=""
+               d="m 62.436001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,494.572,361.4813)"
+           id="g478"><g
+             id="text482"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-21.564,3.832001)"
+             aria-label="promise"><path
+               id="path1344"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1346"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1348"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1350"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1352"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1354"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1356"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,358.7438,545.6948)"
+           id="g484"><g
+             id="text488"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-32.232,-10.504)"
+             aria-label="not Promise"><path
+               id="path1359"
+               style=""
+               d="M 0.768,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 H 1.728 v -0.984 z" /><path
+               id="path1361"
+               style=""
+               d="m 8.1839999,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.7560001,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.3960001,0 -0.7560001,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.2960001,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.7320001,0 -1.2960001,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1363"
+               style=""
+               d="m 15.744,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 Q 15.804,0 16.2,0 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1365"
+               style=""
+               d="m 22.752001,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z m -1.14,-4.104 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path1367"
+               style=""
+               d="M 29.184,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1369"
+               style=""
+               d="m 33.743998,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1371"
+               style=""
+               d="M 39.887999,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1373"
+               style=""
+               d="m 51.203999,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1375"
+               style=""
+               d="m 53.412,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1377"
+               style=""
+               d="m 63.096,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 Q 64.2,-3.36 64.068,-3.984 63.948,-4.608 63.612,-5.136 63.288,-5.664 62.736,-6 q -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,358.7438,545.6948)"
+           id="g490"><g
+             id="text494"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-48.336,3.832001)"
+             aria-label="reply FailMessage "><path
+               id="path1380"
+               style=""
+               d="M 0.732,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 Q 2.52,-4.932 2.952,-5.1 3.384,-5.268 3.996,-5.268 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 1.692 v -1.308 z" /><path
+               id="path1382"
+               style=""
+               d="M 8.856,-3.696 H 5.292 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z M 9.84,-1.968 H 8.832 Q 8.7,-1.356 8.28,-1.056 q -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 Q 5.976,-1.092 5.736,-1.368 5.496,-1.656 5.388,-2.016 5.28,-2.388 5.292,-2.796 H 9.936 Q 9.96,-3.36 9.828,-3.984 9.708,-4.608 9.372,-5.136 9.048,-5.664 8.496,-6 7.956,-6.348 7.128,-6.348 q -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1384"
+               style=""
+               d="m 11.028,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1386"
+               style=""
+               d="M 18.168,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1388"
+               style=""
+               d="M 23.208,0.828 Q 23.028,1.284 22.848,1.596 22.68,1.908 22.464,2.1 22.26,2.304 21.996,2.388 21.744,2.484 21.408,2.484 21.228,2.484 21.048,2.46 20.868,2.436 20.7,2.376 V 1.44 q 0.132,0.06 0.3,0.096 0.18,0.048 0.3,0.048 0.312,0 0.516,-0.156 0.216,-0.144 0.324,-0.42 l 0.42,-1.044 -2.46,-6.168 h 1.152 l 1.812,5.076 h 0.024 l 1.74,-5.076 h 1.08 z" /><path
+               id="path1390"
+               style=""
+               d="M 30.276,-8.568 V 0 h 1.14 v -3.924 h 3.936 v -0.96 h -3.936 v -2.724 h 4.488 v -0.96 z" /><path
+               id="path1392"
+               style=""
+               d="m 42.492001,-0.024 q -0.264,0.156 -0.732,0.156 -0.396,0 -0.636,-0.216 -0.228,-0.228 -0.228,-0.732 -0.42,0.504 -0.984,0.732 -0.552,0.216 -1.2,0.216 -0.42,0 -0.804,-0.096 -0.372,-0.096 -0.648,-0.3 -0.276,-0.204 -0.444,-0.528 -0.156,-0.336 -0.156,-0.804 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 -0.12,-0.204 -0.324,-0.312 -0.192,-0.108 -0.444,-0.144 -0.24,-0.036 -0.48,-0.036 -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 0.228,-0.216 0.336,-0.456 0.108,-0.252 0.108,-0.468 z" /><path
+               id="path1394"
+               style=""
+               d="m 44.520001,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1396"
+               style=""
+               d="M 46.163999,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1398"
+               style=""
+               d="M 48.96,-8.568 V 0 h 1.08 v -7.128 h 0.024 L 52.74,0 h 0.972 l 2.676,-7.128 h 0.024 V 0 h 1.08 v -8.568 h -1.56 l -2.712,7.2 -2.7,-7.2 z" /><path
+               id="path1400"
+               style=""
+               d="m 63.528,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 Q 64.632,-3.36 64.5,-3.984 64.38,-4.608 64.044,-5.136 63.72,-5.664 63.168,-6 62.628,-6.348 61.8,-6.348 q -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1402"
+               style=""
+               d="m 66.288004,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1404"
+               style=""
+               d="m 72.288004,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1406"
+               style=""
+               d="m 83.160004,-0.024 q -0.264,0.156 -0.732,0.156 -0.396,0 -0.636,-0.216 -0.228,-0.228 -0.228,-0.732 -0.42,0.504 -0.984,0.732 -0.552,0.216 -1.2,0.216 -0.42,0 -0.804,-0.096 -0.372,-0.096 -0.648,-0.3 -0.276,-0.204 -0.444,-0.528 -0.156,-0.336 -0.156,-0.804 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 -0.12,-0.204 -0.324,-0.312 -0.192,-0.108 -0.444,-0.144 -0.24,-0.036 -0.48,-0.036 -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 0.228,-0.216 0.336,-0.456 0.108,-0.252 0.108,-0.468 z" /><path
+               id="path1408"
+               style=""
+               d="m 89.459996,-0.528 v -5.676 h -0.96 v 0.888 h -0.012 q -0.276,-0.516 -0.768,-0.768 -0.492,-0.264 -1.08,-0.264 -0.804,0 -1.356,0.312 -0.552,0.3 -0.888,0.78 -0.336,0.468 -0.48,1.056 -0.144,0.576 -0.144,1.128 0,0.636 0.168,1.212 0.18,0.564 0.528,0.996 0.348,0.42 0.864,0.672 0.516,0.252 1.212,0.252 0.6,0 1.128,-0.264 0.54,-0.276 0.804,-0.852 h 0.024 v 0.408 q 0,0.516 -0.108,0.948 -0.096,0.432 -0.324,0.732 -0.228,0.312 -0.576,0.48 -0.348,0.18 -0.852,0.18 -0.252,0 -0.528,-0.06 -0.276,-0.048 -0.516,-0.168 -0.228,-0.12 -0.396,-0.312 -0.156,-0.192 -0.168,-0.468 h -1.02 q 0.024,0.504 0.264,0.852 0.24,0.348 0.6,0.564 0.372,0.216 0.816,0.312 0.456,0.096 0.888,0.096 1.488,0 2.184,-0.756 0.696,-0.756 0.696,-2.28 z m -2.856,-0.3 q -0.504,0 -0.84,-0.204 -0.336,-0.216 -0.54,-0.552 -0.204,-0.348 -0.288,-0.768 -0.084,-0.42 -0.084,-0.84 0,-0.444 0.096,-0.852 0.108,-0.408 0.324,-0.72 0.228,-0.312 0.576,-0.492 0.348,-0.192 0.84,-0.192 0.48,0 0.816,0.192 0.336,0.192 0.54,0.516 0.216,0.312 0.312,0.708 0.096,0.396 0.096,0.804 0,0.432 -0.108,0.864 -0.096,0.432 -0.312,0.78 -0.216,0.336 -0.576,0.552 -0.348,0.204 -0.852,0.204 z" /><path
+               id="path1410"
+               style=""
+               d="m 95.303997,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,358.7438,545.6948)"
+           id="g496"><g
+             id="text500"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-24,18.168)"
+             aria-label="or Ignore"><path
+               id="path1413"
+               style=""
+               d="m 1.512,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 Q 2.34,-1.068 2.076,-1.356 1.812,-1.656 1.656,-2.088 1.512,-2.532 1.512,-3.096 Z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 6.072,-4.968 5.688,-5.4 5.304,-5.844 4.74,-6.096 4.188,-6.348 3.444,-6.348 2.712,-6.348 2.148,-6.096 1.584,-5.844 1.2,-5.4 0.816,-4.968 0.624,-4.368 0.432,-3.78 0.432,-3.096 Z" /><path
+               id="path1415"
+               style=""
+               d="M 7.62,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 8.58 v -1.308 z" /><path
+               id="path1417"
+               style=""
+               d="M 15.204,-8.568 V 0 h 1.14 v -8.568 z" /><path
+               id="path1419"
+               style=""
+               d="m 23.447999,-0.528 v -5.676 h -0.96 v 0.888 h -0.012 q -0.276,-0.516 -0.768,-0.768 -0.492,-0.264 -1.08,-0.264 -0.804,0 -1.356,0.312 -0.552,0.3 -0.888,0.78 -0.336,0.468 -0.48,1.056 -0.144,0.576 -0.144,1.128 0,0.636 0.168,1.212 0.18,0.564 0.528,0.996 0.348,0.42 0.864,0.672 0.516,0.252 1.212,0.252 0.6,0 1.128,-0.264 0.54,-0.276 0.804,-0.852 h 0.024 v 0.408 q 0,0.516 -0.108,0.948 -0.096,0.432 -0.324,0.732 -0.228,0.312 -0.576,0.48 -0.348,0.18 -0.852,0.18 -0.252,0 -0.528,-0.06 -0.276,-0.048 -0.516,-0.168 -0.228,-0.12 -0.396,-0.312 -0.156,-0.192 -0.168,-0.468 h -1.02 q 0.024,0.504 0.264,0.852 0.24,0.348 0.6,0.564 0.372,0.216 0.816,0.312 0.456,0.096 0.888,0.096 1.488,0 2.184,-0.756 0.696,-0.756 0.696,-2.28 z m -2.856,-0.3 q -0.504,0 -0.84,-0.204 -0.336,-0.216 -0.54,-0.552 -0.204,-0.348 -0.288,-0.768 -0.084,-0.42 -0.084,-0.84 0,-0.444 0.096,-0.852 0.108,-0.408 0.324,-0.72 0.228,-0.312 0.576,-0.492 0.348,-0.192 0.84,-0.192 0.48,0 0.816,0.192 0.336,0.192 0.54,0.516 0.216,0.312 0.312,0.708 0.096,0.396 0.096,0.804 0,0.432 -0.108,0.864 -0.096,0.432 -0.312,0.78 -0.216,0.336 -0.576,0.552 -0.348,0.204 -0.852,0.204 z" /><path
+               id="path1421"
+               style=""
+               d="M 24.984,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 Q 29.1,-4.776 29.1,-4.2 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1423"
+               style=""
+               d="m 32.4,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 Q 32.4,-2.532 32.4,-3.096 Z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1425"
+               style=""
+               d="M 38.508001,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1427"
+               style=""
+               d="m 46.632,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 Q 47.736,-3.36 47.604,-3.984 47.484,-4.608 47.148,-5.136 46.824,-5.664 46.272,-6 q -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g502"><path
+             id="path504"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="M 460.2769,400.5716 525.011,203.654 m -64.7105,196.7593 64.5245,-196.159" /></g><path
+           id="path506"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 554.8132,379.2498 -5.4621,-6.8135 5.827,-1.9115 z" /><g
+           transform="matrix(1.022084,0,0,-1.022084,16.15459,580.7174)"
+           id="g508"><path
+             id="path510"
+             style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+             d="m 527.0197,197.1144 -5.3441,6.6663 5.7011,1.8702 z" /></g><g
+           transform="matrix(1.022084,0,0,-1.022084,585.7629,277.4961)"
+           id="g512"><g
+             id="text516"
+             style="font-variant:normal;font-weight:normal;font-size:14px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-42.266,4.804001)"
+             aria-label="if accepted v’ "><path
+               id="path1430"
+               style=""
+               d="m 2.156,-8.54 v -1.456 h -1.19 v 1.456 z m -1.19,1.302 V 0 h 1.19 v -7.238 z" /><path
+               id="path1432"
+               style=""
+               d="M 4.494,-6.188 V 0 h 1.19 v -6.188 h 1.4 v -1.05 h -1.4 v -1.008 q 0,-0.476 0.238,-0.644 0.238,-0.168 0.672,-0.168 0.154,0 0.336,0.028 0.182,0.014 0.336,0.07 v -1.036 q -0.168,-0.056 -0.392,-0.084 -0.21,-0.028 -0.378,-0.028 -0.98,0 -1.498,0.462 -0.504,0.448 -0.504,1.33 v 1.078 H 3.276 v 1.05 z" /><path
+               id="path1434"
+               style=""
+               d="m 18.452,-0.028 q -0.308,0.182 -0.854,0.182 -0.462,0 -0.742,-0.252 -0.266,-0.266 -0.266,-0.854 -0.49,0.588 -1.148,0.854 -0.644,0.252 -1.4,0.252 -0.49,0 -0.938,-0.112 -0.434,-0.112 -0.756,-0.35 -0.322,-0.238 -0.518,-0.616 -0.182,-0.392 -0.182,-0.938 0,-0.616 0.21,-1.008 0.21,-0.392 0.546,-0.63 0.35,-0.252 0.784,-0.378 0.448,-0.126 0.91,-0.21 0.49,-0.098 0.924,-0.14 0.448,-0.056 0.784,-0.14 0.336,-0.098 0.532,-0.266 0.196,-0.182 0.196,-0.518 0,-0.392 -0.154,-0.63 -0.14,-0.238 -0.378,-0.364 -0.224,-0.126 -0.518,-0.168 -0.28,-0.042 -0.56,-0.042 -0.756,0 -1.26,0.294 -0.504,0.28 -0.546,1.078 h -1.19 q 0.028,-0.672 0.28,-1.134 0.252,-0.462 0.672,-0.742 0.42,-0.294 0.952,-0.42 0.546,-0.126 1.162,-0.126 0.49,0 0.966,0.07 0.49,0.07 0.882,0.294 0.392,0.21 0.63,0.602 0.238,0.392 0.238,1.022 v 3.724 q 0,0.42 0.042,0.616 0.056,0.196 0.336,0.196 0.154,0 0.364,-0.07 z m -1.932,-3.71 q -0.224,0.168 -0.588,0.252 -0.364,0.07 -0.77,0.126 -0.392,0.042 -0.798,0.112 -0.406,0.056 -0.728,0.196 -0.322,0.14 -0.532,0.406 -0.196,0.252 -0.196,0.7 0,0.294 0.112,0.504 0.126,0.196 0.308,0.322 0.196,0.126 0.448,0.182 0.252,0.056 0.532,0.056 0.588,0 1.008,-0.154 0.42,-0.168 0.686,-0.406 0.266,-0.252 0.392,-0.532 0.126,-0.294 0.126,-0.546 z" /><path
+               id="path1436"
+               style=""
+               d="m 24.472001,-4.914 h 1.232 q -0.07,-0.644 -0.336,-1.106 -0.266,-0.476 -0.686,-0.784 -0.406,-0.308 -0.952,-0.448 -0.532,-0.154 -1.148,-0.154 -0.854,0 -1.498,0.308 -0.644,0.294 -1.078,0.826 -0.42,0.518 -0.63,1.232 -0.21,0.7 -0.21,1.512 0,0.812 0.21,1.498 0.224,0.672 0.644,1.162 0.434,0.49 1.064,0.756 0.644,0.266 1.47,0.266 1.386,0 2.184,-0.728 0.812,-0.728 1.008,-2.072 h -1.218 q -0.112,0.84 -0.616,1.302 -0.49,0.462 -1.372,0.462 -0.56,0 -0.966,-0.224 -0.406,-0.224 -0.658,-0.588 -0.252,-0.378 -0.378,-0.854 -0.112,-0.476 -0.112,-0.98 0,-0.546 0.112,-1.05 0.112,-0.518 0.364,-0.91 0.266,-0.392 0.7,-0.63 0.434,-0.238 1.078,-0.238 0.756,0 1.204,0.378 0.448,0.378 0.588,1.064 z" /><path
+               id="path1438"
+               style=""
+               d="m 31.99,-4.914 h 1.232 Q 33.152,-5.558 32.886,-6.02 32.62,-6.496 32.2,-6.804 31.794,-7.112 31.248,-7.252 30.716,-7.406 30.1,-7.406 q -0.854,0 -1.498,0.308 -0.644,0.294 -1.078,0.826 -0.42,0.518 -0.63,1.232 -0.21,0.7 -0.21,1.512 0,0.812 0.21,1.498 0.224,0.672 0.644,1.162 0.434,0.49 1.064,0.756 0.644,0.266 1.47,0.266 1.386,0 2.184,-0.728 0.812,-0.728 1.008,-2.072 h -1.218 q -0.112,0.84 -0.616,1.302 -0.49,0.462 -1.372,0.462 -0.56,0 -0.966,-0.224 -0.406,-0.224 -0.658,-0.588 -0.252,-0.378 -0.378,-0.854 -0.112,-0.476 -0.112,-0.98 0,-0.546 0.112,-1.05 0.112,-0.518 0.364,-0.91 0.266,-0.392 0.7,-0.63 0.434,-0.238 1.078,-0.238 0.756,0 1.204,0.378 0.448,0.378 0.588,1.064 z" /><path
+               id="path1440"
+               style=""
+               d="m 39.620002,-4.312 h -4.158 q 0.028,-0.42 0.182,-0.784 0.154,-0.378 0.42,-0.658 0.266,-0.28 0.63,-0.434 0.378,-0.168 0.84,-0.168 0.448,0 0.812,0.168 0.378,0.154 0.644,0.434 0.28,0.266 0.434,0.644 0.168,0.378 0.196,0.798 z m 1.148,2.016 h -1.176 q -0.154,0.714 -0.644,1.064 -0.476,0.35 -1.232,0.35 -0.588,0 -1.022,-0.196 -0.434,-0.196 -0.714,-0.518 -0.28,-0.336 -0.406,-0.756 -0.126,-0.434 -0.112,-0.91 h 5.418 q 0.028,-0.658 -0.126,-1.386 -0.14,-0.728 -0.532,-1.344 -0.378,-0.616 -1.022,-1.008 -0.63,-0.406 -1.596,-0.406 -0.742,0 -1.372,0.28 -0.616,0.28 -1.078,0.784 -0.448,0.504 -0.7,1.19 -0.252,0.686 -0.252,1.512 0.028,0.826 0.238,1.526 0.224,0.7 0.658,1.204 0.434,0.504 1.064,0.784 0.644,0.28 1.512,0.28 1.232,0 2.044,-0.616 0.812,-0.616 1.05,-1.834 z" /><path
+               id="path1442"
+               style=""
+               d="m 42.154,-7.238 v 9.996 h 1.19 v -3.724 h 0.028 q 0.196,0.322 0.476,0.546 0.294,0.21 0.616,0.336 0.322,0.126 0.644,0.182 0.336,0.056 0.602,0.056 0.826,0 1.442,-0.294 0.63,-0.294 1.036,-0.798 0.42,-0.518 0.616,-1.204 0.21,-0.686 0.21,-1.456 0,-0.77 -0.21,-1.456 -0.21,-0.686 -0.63,-1.204 -0.406,-0.532 -1.036,-0.84 -0.616,-0.308 -1.456,-0.308 -0.756,0 -1.386,0.28 -0.63,0.266 -0.924,0.868 h -0.028 v -0.98 z m 5.6,3.556 q 0,0.532 -0.112,1.036 -0.112,0.504 -0.364,0.896 -0.252,0.392 -0.672,0.63 -0.406,0.238 -1.022,0.238 -0.616,0 -1.05,-0.224 Q 44.1,-1.344 43.82,-1.722 43.554,-2.1 43.428,-2.59 q -0.126,-0.504 -0.126,-1.036 0,-0.504 0.112,-0.994 0.126,-0.49 0.392,-0.868 0.266,-0.392 0.686,-0.63 0.42,-0.238 1.022,-0.238 0.574,0 0.994,0.224 0.434,0.224 0.7,0.602 0.28,0.378 0.406,0.868 0.14,0.476 0.14,0.98 z" /><path
+               id="path1444"
+               style=""
+               d="m 52.066002,-7.238 v -2.17 h -1.19 v 2.17 h -1.232 v 1.05 h 1.232 v 4.606 q 0,0.504 0.098,0.812 0.098,0.308 0.294,0.476 0.21,0.168 0.532,0.238 0.336,0.056 0.798,0.056 h 0.91 v -1.05 h -0.546 q -0.28,0 -0.462,-0.014 -0.168,-0.028 -0.266,-0.098 -0.098,-0.07 -0.14,-0.196 -0.028,-0.126 -0.028,-0.336 v -4.494 h 1.442 v -1.05 z" /><path
+               id="path1446"
+               style=""
+               d="m 59.850001,-4.312 h -4.158 q 0.028,-0.42 0.182,-0.784 0.154,-0.378 0.42,-0.658 0.266,-0.28 0.63,-0.434 0.378,-0.168 0.84,-0.168 0.448,0 0.812,0.168 0.378,0.154 0.644,0.434 0.28,0.266 0.434,0.644 0.168,0.378 0.196,0.798 z m 1.148,2.016 h -1.176 q -0.154,0.714 -0.644,1.064 -0.476,0.35 -1.232,0.35 -0.588,0 -1.022,-0.196 -0.434,-0.196 -0.714,-0.518 -0.28,-0.336 -0.406,-0.756 -0.126,-0.434 -0.112,-0.91 h 5.418 q 0.028,-0.658 -0.126,-1.386 -0.14,-0.728 -0.532,-1.344 -0.378,-0.616 -1.022,-1.008 -0.63,-0.406 -1.596,-0.406 -0.742,0 -1.372,0.28 -0.616,0.28 -1.078,0.784 -0.448,0.504 -0.7,1.19 -0.252,0.686 -0.252,1.512 0.028,0.826 0.238,1.526 0.224,0.7 0.658,1.204 0.434,0.504 1.064,0.784 0.644,0.28 1.512,0.28 1.232,0 2.044,-0.616 0.812,-0.616 1.05,-1.834 z" /><path
+               id="path1448"
+               style=""
+               d="m 63.209999,-3.556 q 0,-0.532 0.112,-1.036 0.112,-0.504 0.364,-0.896 0.252,-0.392 0.672,-0.63 0.42,-0.238 1.022,-0.238 0.616,0 1.05,0.238 0.434,0.224 0.7,0.602 0.28,0.378 0.406,0.882 0.126,0.49 0.126,1.022 0,0.504 -0.126,0.994 -0.112,0.49 -0.378,0.882 -0.266,0.378 -0.686,0.616 -0.42,0.238 -1.022,0.238 -0.574,0 -1.008,-0.224 -0.42,-0.224 -0.7,-0.602 -0.266,-0.378 -0.406,-0.854 -0.126,-0.49 -0.126,-0.994 z m 5.6,3.556 v -9.996 h -1.19 v 3.724 h -0.028 q -0.196,-0.322 -0.49,-0.532 -0.28,-0.224 -0.602,-0.35 -0.322,-0.14 -0.644,-0.196 -0.322,-0.056 -0.602,-0.056 -0.826,0 -1.456,0.308 -0.616,0.294 -1.036,0.812 -0.406,0.504 -0.616,1.19 -0.196,0.686 -0.196,1.456 0,0.77 0.21,1.456 0.21,0.686 0.616,1.204 0.42,0.518 1.036,0.826 0.63,0.308 1.47,0.308 0.756,0 1.386,-0.266 0.63,-0.266 0.924,-0.868 h 0.028 V 0 Z" /><path
+               id="path1450"
+               style=""
+               d="m 77.797999,0 2.646,-7.238 h -1.246 l -1.974,6.034 h -0.028 l -2.03,-6.034 h -1.33 l 2.688,7.238 z" /><path
+               id="path1452"
+               style=""
+               d="m 81.801999,-9.996 v 1.554 h 0.826 q 0,0.238 -0.042,0.49 -0.028,0.238 -0.126,0.434 -0.098,0.196 -0.252,0.322 -0.154,0.112 -0.392,0.112 v 0.7 q 0.406,0 0.686,-0.168 0.294,-0.168 0.476,-0.448 0.196,-0.28 0.28,-0.644 0.098,-0.378 0.098,-0.798 v -1.554 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,643.4177,496.674)"
+           id="g518"><g
+             id="text522"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.338,3.832001)"
+             aria-label="Promise(n)"><path
+               id="path1455"
+               style=""
+               d="m 2.076,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z M 0.936,-8.568 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path1457"
+               style=""
+               d="M 8.508,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 9.468 v -1.308 z" /><path
+               id="path1459"
+               style=""
+               d="m 13.068,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 17.628,-4.968 17.244,-5.4 16.86,-5.844 16.296,-6.096 15.744,-6.348 15,-6.348 q -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1461"
+               style=""
+               d="M 19.212,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1463"
+               style=""
+               d="m 30.528,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1465"
+               style=""
+               d="m 32.736,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1467"
+               style=""
+               d="m 42.420002,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1469"
+               style=""
+               d="m 46.235998,2.364 h 0.78 q -0.852,-1.38 -1.224,-2.736 -0.36,-1.356 -0.36,-2.868 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path1471"
+               style=""
+               d="M 47.664,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1473"
+               style=""
+               d="m 53.460001,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,638.3072,361.5905)"
+           id="g524"><g
+             id="text528"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-36.342,3.832001)"
+             aria-label="Promise(n, v’)"><path
+               id="path1476"
+               style=""
+               d="m 2.076,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z M 0.936,-8.568 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path1478"
+               style=""
+               d="M 8.508,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 9.468 v -1.308 z" /><path
+               id="path1480"
+               style=""
+               d="m 13.068,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 17.628,-4.968 17.244,-5.4 16.86,-5.844 16.296,-6.096 15.744,-6.348 15,-6.348 q -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1482"
+               style=""
+               d="M 19.212,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1484"
+               style=""
+               d="m 30.528,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1486"
+               style=""
+               d="m 32.736,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1488"
+               style=""
+               d="m 42.420002,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1490"
+               style=""
+               d="m 46.235998,2.364 h 0.78 q -0.852,-1.38 -1.224,-2.736 -0.36,-1.356 -0.36,-2.868 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path1492"
+               style=""
+               d="M 47.664,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1494"
+               style=""
+               d="M 54.564001,-1.332 V 0 h 0.708 q 0.012,0.144 -0.024,0.312 -0.024,0.168 -0.108,0.324 -0.084,0.168 -0.228,0.3 -0.132,0.144 -0.336,0.216 v 0.6 q 0.696,-0.204 1.008,-0.696 0.312,-0.492 0.312,-1.176 v -1.212 z" /><path
+               id="path1496"
+               style=""
+               d="m 63.804002,0 2.268,-6.204 h -1.068 l -1.692,5.172 h -0.024 l -1.74,-5.172 h -1.14 l 2.304,6.204 z" /><path
+               id="path1498"
+               style=""
+               d="m 67.235998,-8.568 v 1.332 h 0.708 q 0,0.204 -0.036,0.42 -0.024,0.204 -0.108,0.372 -0.084,0.168 -0.216,0.276 -0.132,0.096 -0.336,0.096 v 0.6 q 0.348,0 0.588,-0.144 0.252,-0.144 0.408,-0.384 0.168,-0.24 0.24,-0.552 0.084,-0.324 0.084,-0.684 v -1.332 z" /><path
+               id="path1500"
+               style=""
+               d="m 69.467996,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,646.5443,438.0059)"
+           id="g530"><g
+             id="text534"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.338,3.832001)"
+             aria-label="Promise(n)"><path
+               id="path1503"
+               style=""
+               d="m 2.076,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z M 0.936,-8.568 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path1505"
+               style=""
+               d="M 8.508,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 9.468 v -1.308 z" /><path
+               id="path1507"
+               style=""
+               d="m 13.068,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 17.628,-4.968 17.244,-5.4 16.86,-5.844 16.296,-6.096 15.744,-6.348 15,-6.348 q -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1509"
+               style=""
+               d="M 19.212,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1511"
+               style=""
+               d="m 30.528,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1513"
+               style=""
+               d="m 32.736,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1515"
+               style=""
+               d="m 42.420002,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1517"
+               style=""
+               d="m 46.235998,2.364 h 0.78 q -0.852,-1.38 -1.224,-2.736 -0.36,-1.356 -0.36,-2.868 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path1519"
+               style=""
+               d="M 47.664,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1521"
+               style=""
+               d="m 53.460001,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,779.221,226.047)"
+           id="g536"><g
+             id="text540"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.236,3.832001)"
+             aria-label="promise: n"><path
+               id="path1524"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1526"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1528"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1530"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1532"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1534"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1536"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1538"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1540"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,782.2269,212.9833)"
+           id="g542"><g
+             id="text546"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.008,3.832001)"
+             aria-label="accept: null"><path
+               id="path1543"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1545"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1547"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1549"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1551"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1553"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1555"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1557"
+               style=""
+               d="M 44.112002,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1559"
+               style=""
+               d="m 55.919999,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path1561"
+               style=""
+               d="M 57.516,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1563"
+               style=""
+               d="M 60.180001,-8.568 V 0 h 1.02 v -8.568 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,779.221,146.3728)"
+           id="g548"><g
+             id="text552"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.236,3.832001)"
+             aria-label="promise: n"><path
+               id="path1566"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1568"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1570"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1572"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1574"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1576"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1578"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1580"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1582"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,782.2269,133.309)"
+           id="g554"><g
+             id="text558"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.008,3.832001)"
+             aria-label="accept: null"><path
+               id="path1585"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1587"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1589"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1591"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1593"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1595"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1597"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1599"
+               style=""
+               d="M 44.112002,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1601"
+               style=""
+               d="m 55.919999,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path1603"
+               style=""
+               d="M 57.516,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1605"
+               style=""
+               d="M 60.180001,-8.568 V 0 h 1.02 v -8.568 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,779.221,66.69848)"
+           id="g560"><g
+             id="text564"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.236,3.832001)"
+             aria-label="promise: n"><path
+               id="path1608"
+               style=""
+               d="m 0.804,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 Q 6.324,-4.92 5.964,-5.364 5.616,-5.82 5.076,-6.084 4.548,-6.348 3.828,-6.348 3.18,-6.348 2.64,-6.108 2.1,-5.88 1.848,-5.364 H 1.824 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 Q 2.472,-1.152 2.232,-1.476 2.004,-1.8 1.896,-2.22 1.788,-2.652 1.788,-3.108 q 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1610"
+               style=""
+               d="M 7.8480002,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.6959998,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.3679998,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1612"
+               style=""
+               d="m 12.408,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1614"
+               style=""
+               d="M 18.552,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1616"
+               style=""
+               d="m 29.868,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1618"
+               style=""
+               d="m 32.076,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1620"
+               style=""
+               d="m 41.759998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1622"
+               style=""
+               d="m 45.455998,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1624"
+               style=""
+               d="M 50.567999,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,779.221,53.63471)"
+           id="g566"><g
+             id="text570"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-31.008,3.832001)"
+             aria-label="accept: null"><path
+               id="path1627"
+               style=""
+               d="M 6.264,-0.024 Q 6,0.132 5.532,0.132 5.136,0.132 4.896,-0.084 4.668,-0.312 4.668,-0.816 4.248,-0.312 3.684,-0.084 3.132,0.132 2.484,0.132 2.064,0.132 1.68,0.036 1.308,-0.06 1.032,-0.264 0.756,-0.468 0.588,-0.792 0.432,-1.128 0.432,-1.596 q 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 Q 4.368,-5.16 4.164,-5.268 3.972,-5.376 3.72,-5.412 3.48,-5.448 3.24,-5.448 q -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 Q 4.392,-1.452 4.5,-1.692 4.608,-1.944 4.608,-2.16 Z" /><path
+               id="path1629"
+               style=""
+               d="m 11.424,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.9840002,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.1880002,0 1.8720002,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.1760002,0.396 -0.48,0 -0.828,-0.192 -0.348,-0.192 -0.564,-0.504 -0.216,-0.324 -0.324,-0.732 -0.096,-0.408 -0.096,-0.84 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.6480002,0 1.0320002,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1631"
+               style=""
+               d="m 17.868,-4.212 h 1.056 q -0.06,-0.552 -0.288,-0.948 -0.228,-0.408 -0.588,-0.672 -0.348,-0.264 -0.816,-0.384 -0.456,-0.132 -0.984,-0.132 -0.732,0 -1.284,0.264 -0.552,0.252 -0.924,0.708 -0.36,0.444 -0.54,1.056 -0.18,0.6 -0.18,1.296 0,0.696 0.18,1.284 0.192,0.576 0.552,0.996 0.372,0.42 0.912,0.648 0.552,0.228 1.26,0.228 1.188,0 1.872,-0.624 0.696,-0.624 0.864,-1.776 h -1.044 q -0.096,0.72 -0.528,1.116 -0.42,0.396 -1.176,0.396 -0.48,0 -0.828,-0.192 Q 15.036,-1.14 14.82,-1.452 14.604,-1.776 14.496,-2.184 14.4,-2.592 14.4,-3.024 q 0,-0.468 0.096,-0.9 0.096,-0.444 0.312,-0.78 0.228,-0.336 0.6,-0.54 0.372,-0.204 0.924,-0.204 0.648,0 1.032,0.324 0.384,0.324 0.504,0.912 z" /><path
+               id="path1633"
+               style=""
+               d="m 24.408001,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1635"
+               style=""
+               d="m 26.579999,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1637"
+               style=""
+               d="m 35.075998,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1639"
+               style=""
+               d="m 39.000001,-4.872 v -1.332 h -1.332 v 1.332 z m -1.332,3.54 V 0 h 1.332 v -1.332 z" /><path
+               id="path1641"
+               style=""
+               d="M 44.112002,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1643"
+               style=""
+               d="m 55.919999,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path1645"
+               style=""
+               d="M 57.516,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1647"
+               style=""
+               d="M 60.180001,-8.568 V 0 h 1.02 v -8.568 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,636.2518,199.4718)"
+           id="g572"><g
+             id="text576"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.338,3.832001)"
+             aria-label="Promise(n)"><path
+               id="path1650"
+               style=""
+               d="m 2.076,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z M 0.936,-8.568 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path1652"
+               style=""
+               d="M 8.508,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 9.468 v -1.308 z" /><path
+               id="path1654"
+               style=""
+               d="m 13.068,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 17.628,-4.968 17.244,-5.4 16.86,-5.844 16.296,-6.096 15.744,-6.348 15,-6.348 q -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1656"
+               style=""
+               d="M 19.212,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1658"
+               style=""
+               d="m 30.528,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1660"
+               style=""
+               d="m 32.736,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1662"
+               style=""
+               d="m 42.420002,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1664"
+               style=""
+               d="m 46.235998,2.364 h 0.78 q -0.852,-1.38 -1.224,-2.736 -0.36,-1.356 -0.36,-2.868 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path1666"
+               style=""
+               d="M 47.664,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1668"
+               style=""
+               d="m 53.460001,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,647.0517,153.1159)"
+           id="g578"><g
+             id="text582"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.338,3.832001)"
+             aria-label="Promise(n)"><path
+               id="path1671"
+               style=""
+               d="m 2.076,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z M 0.936,-8.568 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path1673"
+               style=""
+               d="M 8.508,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 9.468 v -1.308 z" /><path
+               id="path1675"
+               style=""
+               d="m 13.068,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 17.628,-4.968 17.244,-5.4 16.86,-5.844 16.296,-6.096 15.744,-6.348 15,-6.348 q -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1677"
+               style=""
+               d="M 19.212,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1679"
+               style=""
+               d="m 30.528,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1681"
+               style=""
+               d="m 32.736,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1683"
+               style=""
+               d="m 42.420002,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1685"
+               style=""
+               d="m 46.235998,2.364 h 0.78 q -0.852,-1.38 -1.224,-2.736 -0.36,-1.356 -0.36,-2.868 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path1687"
+               style=""
+               d="M 47.664,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1689"
+               style=""
+               d="m 53.460001,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,636.2518,78.16574)"
+           id="g584"><g
+             id="text588"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-28.338,3.832001)"
+             aria-label="Promise(n)"><path
+               id="path1692"
+               style=""
+               d="m 2.076,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z M 0.936,-8.568 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path1694"
+               style=""
+               d="M 8.508,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 9.468 v -1.308 z" /><path
+               id="path1696"
+               style=""
+               d="m 13.068,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 17.628,-4.968 17.244,-5.4 16.86,-5.844 16.296,-6.096 15.744,-6.348 15,-6.348 q -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1698"
+               style=""
+               d="M 19.212,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1700"
+               style=""
+               d="m 30.528,-7.32 v -1.248 h -1.02 v 1.248 z m -1.02,1.116 V 0 h 1.02 v -6.204 z" /><path
+               id="path1702"
+               style=""
+               d="m 32.736,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1704"
+               style=""
+               d="m 42.420002,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1706"
+               style=""
+               d="m 46.235998,2.364 h 0.78 q -0.852,-1.38 -1.224,-2.736 -0.36,-1.356 -0.36,-2.868 0,-1.476 0.36,-2.82 0.36,-1.344 1.224,-2.712 h -0.78 q -0.936,1.236 -1.416,2.676 -0.468,1.44 -0.468,2.856 0,0.792 0.132,1.512 0.132,0.72 0.372,1.404 0.252,0.684 0.6,1.344 0.348,0.672 0.78,1.344 z" /><path
+               id="path1708"
+               style=""
+               d="M 47.664,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /><path
+               id="path1710"
+               style=""
+               d="m 53.460001,2.364 h 0.768 q 0.936,-1.236 1.404,-2.664 0.48,-1.44 0.48,-2.856 0,-0.792 -0.132,-1.512 -0.132,-0.72 -0.384,-1.404 -0.24,-0.696 -0.588,-1.356 -0.348,-0.672 -0.78,-1.344 h -0.768 q 0.84,1.38 1.2,2.748 0.372,1.356 0.372,2.868 0,1.464 -0.36,2.82 -0.36,1.344 -1.212,2.7 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,689.754,557.9598)"
+           id="g590"><g
+             id="text594"
+             style="font-variant:normal;font-weight:normal;font-size:16px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-29.192,5.776001)"
+             aria-label="Promise"><path
+               id="path1713"
+               style=""
+               d="m 2.768,-5.952 v -4.192 h 2.976 q 1.296,0 1.888,0.544 0.608,0.528 0.608,1.552 0,1.024 -0.608,1.568 -0.592,0.544 -1.888,0.528 z m -1.52,-5.472 V 0 h 1.52 v -4.672 h 3.488 q 1.728,0.016 2.608,-0.88 0.896,-0.896 0.896,-2.496 0,-1.6 -0.896,-2.48 -0.88,-0.896 -2.608,-0.896 z" /><path
+               id="path1715"
+               style=""
+               d="M 11.344,-8.272 V 0 h 1.36 v -3.68 q 0,-0.8 0.16,-1.408 0.16,-0.624 0.512,-1.056 0.352,-0.432 0.928,-0.656 0.576,-0.224 1.392,-0.224 v -1.44 q -1.104,-0.032 -1.824,0.448 -0.72,0.48 -1.216,1.488 h -0.032 v -1.744 z" /><path
+               id="path1717"
+               style=""
+               d="m 17.424,-4.128 q 0,-0.752 0.192,-1.328 0.208,-0.592 0.56,-0.992 0.352,-0.4 0.816,-0.608 0.48,-0.208 1.008,-0.208 0.528,0 0.992,0.208 0.48,0.208 0.832,0.608 0.352,0.4 0.544,0.992 0.208,0.576 0.208,1.328 0,0.752 -0.208,1.344 -0.192,0.576 -0.544,0.976 -0.352,0.384 -0.832,0.592 -0.464,0.208 -0.992,0.208 -0.528,0 -1.008,-0.208 -0.464,-0.208 -0.816,-0.592 -0.352,-0.4 -0.56,-0.976 -0.192,-0.592 -0.192,-1.344 z m -1.44,0 q 0,0.912 0.256,1.696 0.256,0.784 0.768,1.376 0.512,0.576 1.264,0.912 0.752,0.32 1.728,0.32 0.992,0 1.728,-0.32 0.752,-0.336 1.264,-0.912 0.512,-0.592 0.768,-1.376 0.256,-0.784 0.256,-1.696 0,-0.912 -0.256,-1.696 Q 23.504,-6.624 22.992,-7.2 22.48,-7.792 21.728,-8.128 20.992,-8.464 20,-8.464 q -0.976,0 -1.728,0.336 -0.752,0.336 -1.264,0.928 -0.512,0.576 -0.768,1.376 -0.256,0.784 -0.256,1.696 z" /><path
+               id="path1719"
+               style=""
+               d="M 25.615999,-8.272 V 0 h 1.36 v -5.152 q 0,-0.24 0.112,-0.592 0.128,-0.368 0.384,-0.704 0.272,-0.336 0.688,-0.576 0.432,-0.24 1.024,-0.24 0.464,0 0.752,0.144 0.304,0.128 0.48,0.384 0.176,0.24 0.24,0.576 0.08,0.336 0.08,0.736 V 0 h 1.36 v -5.152 q 0,-0.96 0.576,-1.536 0.576,-0.576 1.584,-0.576 0.496,0 0.8,0.144 0.32,0.144 0.496,0.4 0.176,0.24 0.24,0.576 0.064,0.336 0.064,0.72 V 0 h 1.36 v -6.064 q 0,-0.64 -0.208,-1.088 -0.192,-0.464 -0.56,-0.752 -0.352,-0.288 -0.864,-0.416 -0.496,-0.144 -1.12,-0.144 -0.816,0 -1.504,0.368 -0.672,0.368 -1.088,1.04 -0.256,-0.768 -0.88,-1.088 -0.624,-0.32 -1.392,-0.32 -1.744,0 -2.672,1.408 h -0.032 v -1.216 z" /><path
+               id="path1721"
+               style=""
+               d="m 40.704002,-9.76 v -1.664 h -1.36 v 1.664 z m -1.36,1.488 V 0 h 1.36 v -8.272 z" /><path
+               id="path1723"
+               style=""
+               d="m 43.648,-2.608 h -1.36 q 0.032,0.768 0.32,1.312 0.288,0.528 0.768,0.864 0.48,0.32 1.104,0.464 0.624,0.144 1.312,0.144 0.624,0 1.248,-0.128 0.64,-0.112 1.136,-0.416 0.512,-0.304 0.816,-0.8 0.32,-0.496 0.32,-1.248 0,-0.592 -0.24,-0.992 -0.224,-0.4 -0.608,-0.656 -0.368,-0.272 -0.864,-0.432 -0.48,-0.16 -0.992,-0.272 -0.48,-0.112 -0.96,-0.208 -0.48,-0.112 -0.864,-0.256 -0.384,-0.16 -0.64,-0.384 -0.24,-0.24 -0.24,-0.592 0,-0.32 0.16,-0.512 0.16,-0.208 0.416,-0.32 0.256,-0.128 0.56,-0.176 0.32,-0.048 0.624,-0.048 0.336,0 0.656,0.08 0.336,0.064 0.608,0.224 0.272,0.16 0.448,0.432 0.176,0.256 0.208,0.656 h 1.36 q -0.048,-0.752 -0.32,-1.248 -0.272,-0.512 -0.736,-0.8 -0.448,-0.304 -1.04,-0.416 -0.592,-0.128 -1.296,-0.128 -0.544,0 -1.104,0.144 -0.544,0.128 -0.992,0.416 -0.432,0.272 -0.72,0.72 -0.272,0.448 -0.272,1.072 0,0.8 0.4,1.248 0.4,0.448 0.992,0.704 0.608,0.24 1.312,0.384 0.704,0.128 1.296,0.304 0.608,0.16 1.008,0.432 0.4,0.272 0.4,0.8 0,0.384 -0.192,0.64 -0.192,0.24 -0.496,0.368 -0.288,0.128 -0.64,0.176 -0.352,0.048 -0.672,0.048 -0.416,0 -0.816,-0.08 -0.384,-0.08 -0.704,-0.256 -0.304,-0.192 -0.496,-0.496 -0.192,-0.32 -0.208,-0.768 z" /><path
+               id="path1725"
+               style=""
+               d="m 56.56,-4.928 h -4.752 q 0.032,-0.48 0.208,-0.896 0.176,-0.432 0.48,-0.752 0.304,-0.32 0.72,-0.496 0.432,-0.192 0.96,-0.192 0.512,0 0.928,0.192 0.432,0.176 0.736,0.496 0.32,0.304 0.496,0.736 0.192,0.432 0.224,0.912 z m 1.312,2.304 h -1.344 q -0.176,0.816 -0.736,1.216 -0.544,0.4 -1.408,0.4 -0.672,0 -1.168,-0.224 Q 52.72,-1.456 52.4,-1.824 52.08,-2.208 51.936,-2.688 51.792,-3.184 51.808,-3.728 H 58 Q 58.032,-4.48 57.856,-5.312 57.696,-6.144 57.248,-6.848 56.816,-7.552 56.08,-8 q -0.72,-0.464 -1.824,-0.464 -0.848,0 -1.568,0.32 -0.704,0.32 -1.232,0.896 -0.512,0.576 -0.8,1.36 -0.288,0.784 -0.288,1.728 0.032,0.944 0.272,1.744 0.256,0.8 0.752,1.376 0.496,0.576 1.216,0.896 0.736,0.32 1.728,0.32 1.408,0 2.336,-0.704 0.928,-0.704 1.2,-2.096 z" /></g></g><g
+           transform="matrix(1.022084,0,0,-1.022084,107.772,395.0441)"
+           id="g596"><g
+             id="text600"
+             style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             transform="translate(-61.794,3.832001)"
+             aria-label="Proposal set Number n"><path
+               id="path1728"
+               style=""
+               d="m 2.076,-4.464 v -3.144 h 2.232 q 0.972,0 1.416,0.408 0.456,0.396 0.456,1.164 0,0.768 -0.456,1.176 -0.444,0.408 -1.416,0.396 z M 0.936,-8.568 V 0 h 1.14 v -3.504 h 2.616 q 1.296,0.012 1.956,-0.66 0.672,-0.672 0.672,-1.872 0,-1.2 -0.672,-1.86 -0.66,-0.672 -1.956,-0.672 z" /><path
+               id="path1730"
+               style=""
+               d="M 8.508,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 H 9.468 v -1.308 z" /><path
+               id="path1732"
+               style=""
+               d="m 13.068,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 Q 17.628,-4.968 17.244,-5.4 16.86,-5.844 16.296,-6.096 15.744,-6.348 15,-6.348 q -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1734"
+               style=""
+               d="m 19.248,-6.204 v 8.568 h 1.02 v -3.192 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.708,0 1.236,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.248,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -0.84 z m 4.8,3.048 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.876,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.492,0 0.852,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1736"
+               style=""
+               d="m 27.071999,-3.096 q 0,-0.564 0.144,-0.996 0.156,-0.444 0.42,-0.744 0.264,-0.3 0.612,-0.456 0.36,-0.156 0.756,-0.156 0.396,0 0.744,0.156 0.36,0.156 0.624,0.456 0.264,0.3 0.408,0.744 0.156,0.432 0.156,0.996 0,0.564 -0.156,1.008 -0.144,0.432 -0.408,0.732 -0.264,0.288 -0.624,0.444 -0.348,0.156 -0.744,0.156 -0.396,0 -0.756,-0.156 -0.348,-0.156 -0.612,-0.444 -0.264,-0.3 -0.42,-0.732 -0.144,-0.444 -0.144,-1.008 z m -1.08,0 q 0,0.684 0.192,1.272 0.192,0.588 0.576,1.032 0.384,0.432 0.948,0.684 0.564,0.24 1.296,0.24 0.744,0 1.296,-0.24 0.564,-0.252 0.948,-0.684 0.384,-0.444 0.576,-1.032 0.192,-0.588 0.192,-1.272 0,-0.684 -0.192,-1.272 -0.192,-0.6 -0.576,-1.032 -0.384,-0.444 -0.948,-0.696 -0.552,-0.252 -1.296,-0.252 -0.732,0 -1.296,0.252 -0.564,0.252 -0.948,0.696 -0.384,0.432 -0.576,1.032 -0.192,0.588 -0.192,1.272 z" /><path
+               id="path1738"
+               style=""
+               d="m 33.840002,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1740"
+               style=""
+               d="m 44.712002,-0.024 q -0.264,0.156 -0.732,0.156 -0.396,0 -0.636,-0.216 -0.228,-0.228 -0.228,-0.732 -0.42,0.504 -0.984,0.732 -0.552,0.216 -1.2,0.216 -0.42,0 -0.804,-0.096 -0.372,-0.096 -0.648,-0.3 -0.276,-0.204 -0.444,-0.528 -0.156,-0.336 -0.156,-0.804 0,-0.528 0.18,-0.864 0.18,-0.336 0.468,-0.54 0.3,-0.216 0.672,-0.324 0.384,-0.108 0.78,-0.18 0.42,-0.084 0.792,-0.12 0.384,-0.048 0.672,-0.12 0.288,-0.084 0.456,-0.228 0.168,-0.156 0.168,-0.444 0,-0.336 -0.132,-0.54 -0.12,-0.204 -0.324,-0.312 -0.192,-0.108 -0.444,-0.144 -0.24,-0.036 -0.48,-0.036 -0.648,0 -1.08,0.252 -0.432,0.24 -0.468,0.924 h -1.02 q 0.024,-0.576 0.24,-0.972 0.216,-0.396 0.576,-0.636 0.36,-0.252 0.816,-0.36 0.468,-0.108 0.996,-0.108 0.42,0 0.828,0.06 0.42,0.06 0.756,0.252 0.336,0.18 0.54,0.516 0.204,0.336 0.204,0.876 v 3.192 q 0,0.36 0.036,0.528 0.048,0.168 0.288,0.168 0.132,0 0.312,-0.06 z m -1.656,-3.18 q -0.192,0.144 -0.504,0.216 -0.312,0.06 -0.66,0.108 -0.336,0.036 -0.684,0.096 -0.348,0.048 -0.624,0.168 -0.276,0.12 -0.456,0.348 -0.168,0.216 -0.168,0.6 0,0.252 0.096,0.432 0.108,0.168 0.264,0.276 0.168,0.108 0.384,0.156 0.216,0.048 0.456,0.048 0.504,0 0.864,-0.132 0.36,-0.144 0.588,-0.348 0.228,-0.216 0.336,-0.456 0.108,-0.252 0.108,-0.468 z" /><path
+               id="path1742"
+               style=""
+               d="M 45.719998,-8.568 V 0 h 1.02 v -8.568 z" /><path
+               id="path1744"
+               style=""
+               d="m 52.283998,-1.956 h -1.02 q 0.024,0.576 0.24,0.984 0.216,0.396 0.576,0.648 0.36,0.24 0.828,0.348 0.468,0.108 0.984,0.108 0.468,0 0.936,-0.096 0.48,-0.084 0.852,-0.312 0.384,-0.228 0.612,-0.6 0.24,-0.372 0.24,-0.936 0,-0.444 -0.18,-0.744 -0.168,-0.3 -0.456,-0.492 -0.276,-0.204 -0.648,-0.324 -0.36,-0.12 -0.744,-0.204 -0.36,-0.084 -0.72,-0.156 -0.36,-0.084 -0.648,-0.192 -0.288,-0.12 -0.48,-0.288 -0.18,-0.18 -0.18,-0.444 0,-0.24 0.12,-0.384 0.12,-0.156 0.312,-0.24 0.192,-0.096 0.42,-0.132 0.24,-0.036 0.468,-0.036 0.252,0 0.492,0.06 0.252,0.048 0.456,0.168 0.204,0.12 0.336,0.324 0.132,0.192 0.156,0.492 h 1.02 q -0.036,-0.564 -0.24,-0.936 -0.204,-0.384 -0.552,-0.6 -0.336,-0.228 -0.78,-0.312 -0.444,-0.096 -0.972,-0.096 -0.408,0 -0.828,0.108 -0.408,0.096 -0.744,0.312 -0.324,0.204 -0.54,0.54 -0.204,0.336 -0.204,0.804 0,0.6 0.3,0.936 0.3,0.336 0.744,0.528 0.456,0.18 0.984,0.288 0.528,0.096 0.972,0.228 0.456,0.12 0.756,0.324 0.3,0.204 0.3,0.6 0,0.288 -0.144,0.48 -0.144,0.18 -0.372,0.276 -0.216,0.096 -0.48,0.132 -0.264,0.036 -0.504,0.036 -0.312,0 -0.612,-0.06 -0.288,-0.06 -0.528,-0.192 -0.228,-0.144 -0.372,-0.372 -0.144,-0.24 -0.156,-0.576 z" /><path
+               id="path1746"
+               style=""
+               d="m 61.967998,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1748"
+               style=""
+               d="m 65.519999,-6.204 v -1.86 h -1.02 v 1.86 h -1.056 v 0.9 h 1.056 v 3.948 q 0,0.432 0.084,0.696 0.084,0.264 0.252,0.408 0.18,0.144 0.456,0.204 0.288,0.048 0.684,0.048 h 0.78 v -0.9 h -0.468 q -0.24,0 -0.396,-0.012 -0.144,-0.024 -0.228,-0.084 -0.084,-0.06 -0.12,-0.168 -0.024,-0.108 -0.024,-0.288 v -3.852 h 1.236 v -0.9 z" /><path
+               id="path1750"
+               style=""
+               d="M 71.376003,-8.568 V 0 h 1.08 v -6.876 h 0.024 l 4.476,6.876 h 1.248 v -8.568 h -1.08 v 6.948 h -0.024 l -4.512,-6.948 z" /><path
+               id="path1752"
+               style=""
+               d="m 85.019997,0 v -6.204 h -1.02 V -2.7 q 0,0.42 -0.12,0.78 -0.108,0.348 -0.336,0.612 -0.228,0.264 -0.576,0.408 -0.336,0.144 -0.804,0.144 -0.588,0 -0.924,-0.336 -0.336,-0.336 -0.336,-0.912 v -4.2 h -1.02 v 4.08 q 0,0.504 0.096,0.924 0.108,0.408 0.36,0.708 0.252,0.3 0.66,0.468 0.408,0.156 1.02,0.156 0.684,0 1.188,-0.264 0.504,-0.276 0.828,-0.852 h 0.024 V 0 Z" /><path
+               id="path1754"
+               style=""
+               d="M 86.556002,-6.204 V 0 h 1.02 v -3.864 q 0,-0.18 0.084,-0.444 0.096,-0.276 0.288,-0.528 0.204,-0.252 0.516,-0.432 0.324,-0.18 0.768,-0.18 0.348,0 0.564,0.108 0.228,0.096 0.36,0.288 0.132,0.18 0.18,0.432 0.06,0.252 0.06,0.552 V 0 h 1.02 v -3.864 q 0,-0.72 0.432,-1.152 0.432,-0.432 1.188,-0.432 0.372,0 0.6,0.108 0.24,0.108 0.372,0.3 0.132,0.18 0.18,0.432 0.048,0.252 0.048,0.54 V 0 h 1.02 v -4.548 q 0,-0.48 -0.156,-0.816 -0.144,-0.348 -0.42,-0.564 -0.264,-0.216 -0.648,-0.312 -0.372,-0.108 -0.84,-0.108 -0.612,0 -1.128,0.276 -0.504,0.276 -0.816,0.78 -0.192,-0.576 -0.66,-0.816 -0.468,-0.24 -1.044,-0.24 -1.308,0 -2.004,1.056 h -0.024 v -0.912 z" /><path
+               id="path1756"
+               style=""
+               d="M 96.828002,-8.568 V 0 h 1.02 v -0.828 h 0.024 q 0.168,0.276 0.408,0.468 0.252,0.18 0.528,0.288 0.276,0.108 0.552,0.156 0.288,0.048 0.516,0.048 0.707998,0 1.235998,-0.252 0.54,-0.252 0.888,-0.684 0.36,-0.444 0.528,-1.032 0.18,-0.588 0.18,-1.248 0,-0.66 -0.18,-1.248 -0.18,-0.588 -0.54,-1.032 -0.348,-0.456 -0.888,-0.72 -0.528,-0.264 -1.247998,-0.264 -0.648,0 -1.188,0.24 -0.54,0.228 -0.792,0.744 h -0.024 v -3.204 z m 4.799998,5.412 q 0,0.456 -0.096,0.888 -0.096,0.432 -0.312,0.768 -0.216,0.336 -0.576,0.54 -0.348,0.204 -0.875998,0.204 -0.528,0 -0.9,-0.192 -0.372,-0.204 -0.612,-0.528 -0.228,-0.324 -0.336,-0.744 -0.108,-0.432 -0.108,-0.888 0,-0.432 0.096,-0.852 0.108,-0.42 0.336,-0.744 0.228,-0.336 0.588,-0.54 0.36,-0.204 0.876,-0.204 0.491998,0 0.851998,0.192 0.372,0.192 0.6,0.516 0.24,0.324 0.348,0.744 0.12,0.408 0.12,0.84 z" /><path
+               id="path1758"
+               style=""
+               d="m 108.216,-3.696 h -3.564 q 0.024,-0.36 0.156,-0.672 0.132,-0.324 0.36,-0.564 0.228,-0.24 0.54,-0.372 0.324,-0.144 0.72,-0.144 0.384,0 0.696,0.144 0.324,0.132 0.552,0.372 0.24,0.228 0.372,0.552 0.144,0.324 0.168,0.684 z m 0.984,1.728 h -1.008 q -0.132,0.612 -0.552,0.912 -0.408,0.3 -1.056,0.3 -0.504,0 -0.876,-0.168 -0.372,-0.168 -0.612,-0.444 -0.24,-0.288 -0.348,-0.648 -0.108,-0.372 -0.096,-0.78 h 4.644 q 0.024,-0.564 -0.108,-1.188 -0.12,-0.624 -0.456,-1.152 -0.324,-0.528 -0.876,-0.864 -0.54,-0.348 -1.368,-0.348 -0.636,0 -1.176,0.24 -0.528,0.24 -0.924,0.672 -0.384,0.432 -0.6,1.02 -0.216,0.588 -0.216,1.296 0.024,0.708 0.204,1.308 0.192,0.6 0.564,1.032 0.372,0.432 0.912,0.672 0.552,0.24 1.296,0.24 1.056,0 1.752,-0.528 0.696,-0.528 0.9,-1.572 z" /><path
+               id="path1760"
+               style=""
+               d="M 110.316,-6.204 V 0 h 1.02 v -2.76 q 0,-0.6 0.12,-1.056 0.12,-0.468 0.384,-0.792 0.264,-0.324 0.696,-0.492 0.432,-0.168 1.044,-0.168 v -1.08 q -0.828,-0.024 -1.368,0.336 -0.54,0.36 -0.912,1.116 h -0.024 v -1.308 z" /><path
+               id="path1762"
+               style=""
+               d="M 117.684,-6.204 V 0 h 1.02 v -3.504 q 0,-0.42 0.108,-0.768 0.12,-0.36 0.348,-0.624 0.228,-0.264 0.564,-0.408 0.348,-0.144 0.816,-0.144 0.588,0 0.924,0.336 0.336,0.336 0.336,0.912 V 0 h 1.02 v -4.08 q 0,-0.504 -0.108,-0.912 -0.096,-0.42 -0.348,-0.72 -0.252,-0.3 -0.66,-0.468 -0.408,-0.168 -1.02,-0.168 -1.38,0 -2.016,1.128 h -0.024 v -0.984 z" /></g></g></g></g></g></svg>
\ No newline at end of file
--- a/slide/slide.html	Tue Feb 19 15:28:07 2019 +0900
+++ b/slide/slide.html	Tue Feb 19 21:49:55 2019 +0900
@@ -86,7 +86,7 @@
 <!-- === begin markdown block ===
 
       generated by markdown/1.2.0 on Ruby 2.3.7 (2018-03-28) [universal.x86_64-darwin17]
-                on 2019-02-19 10:39:13 +0900 with Markdown engine kramdown (1.17.0)
+                on 2019-02-19 17:49:17 +0900 with Markdown engine kramdown (1.17.0)
                   using options {}
   -->
 
@@ -94,7 +94,7 @@
 <h1 id="section">目次</h1>
 
 <ul>
-  <li>OS単位での分散システム</li>
+  <li>研究目的</li>
   <li>ブロックチェーンとは</li>
   <li>ブロックチェーンのfork</li>
   <li>コンセンサスアルゴリズム
@@ -112,7 +112,7 @@
 </div>
 <div class='slide '>
 <!-- _S9SLIDE_ -->
-<h1 id="os">OS単位での分散システム</h1>
+<h1 id="os">研究目的 OS単位での分散システム</h1>
 
 <ul>
   <li>コンピュータでデータが壊れることはあり得る. 誤操作や, データの破損, 最悪の場合システムの重要な部分のデータの破損も起こりうる.</li>
@@ -211,7 +211,7 @@
   <li>パブリックブロックチェーンのコンセンサスアルゴリズムは, 「ある程度ブロックの差がついたら, 長い方を正とする」というもの.</li>
   <li>これだけだと, 裏切り者が適当なブロックをガシガシ積めば攻撃できるのでレベル4にはなれない. これを大幅に補強したのがProof of Work.</li>
   <li>Proof of Workは, 簡単に言えばブロックのHashに条件をつけるアルゴリズム. つまり, 新しいブロックを作るのが難しくなる.</li>
-  <li>新しいブロックを作るのが難しいので, みんなで協力して作ったチェーンが自然に勝つ. また, 改ざんも難しくなる. ただし, トランザクションの確定が遅い.</li>
+  <li>新しいブロックを作るのが難しいので, みんなで協力して作ったチェーンが自然に勝つ. また, 改ざんも難しい. ただし, トランザクションの確定が遅い.</li>
 </ul>
 
 
@@ -230,12 +230,104 @@
 </div>
 <div class='slide '>
 <!-- _S9SLIDE_ -->
+<h1 id="paxos">Paxos</h1>
+
+<ul>
+  <li>Lamport先生が「故障モデルレベル3での合意が不可能なのを証明してやる」と言って証明の途中で逆に編み出してしまったらしいアルゴリズム.</li>
+  <li>レベル3のアルゴリズムの基礎となっている.</li>
+  <li>proposerが値を提案し, acceptorが決め, Learnerが集計し, 多数決を取って決まった値を保持.</li>
+</ul>
+
+
+</div>
+<div class='slide '>
+<!-- _S9SLIDE_ -->
+<h1 id="paxos-1">Paxos</h1>
+
+<p>Paxosアルゴリズムに入る前の用語説明</p>
+<dl>
+  <dt>提案</dt>
+  <dd>提案は, 異なる提案ごとにユニークな提案番号と値からなる. 提案番号とは, 異なる提案を見分けるための識別子であり, 単調増加する. 値は一意に決まってほしいデータである.</dd>
+  <dt>値(提案)がacceptされる</dt>
+  <dd>acceptorによって値(提案)が決まること.</dd>
+  <dt>値(提案)が選択(chosen)される</dt>
+  <dd>過半数以上のacceptorによって, 値(提案)がacceptされた場合, それを値(提案)が選択されたと言う.</dd>
+</dl>
+
+
+</div>
+<div class='slide '>
+<!-- _S9SLIDE_ -->
+<h1 id="paxos-2">Paxos</h1>
+
+<p>Paxosは2つのフェーズで動作する. 1つ目のフェーズ, prepare-promiseは次のような手順で動作する.</p>
+
+<ul>
+  <li>proposerは提案番号nを設定した提案を過半数以上のacceptorに送る. これをprepareリクエストという.</li>
+  <li>acceptorはprepareリクエストが来たら次の動作をする.
+    <ul>
+      <li>もし, 以前に送られたprepareリクエストの提案番号より, 今送られてきたprepareリクエストの提案番号のほうが大きければ, それ以下の提案番号の提案を拒否するという約束を返す. この状態をPromiseしたという.</li>
+      <li>もし, 値がすでにacceptされていれば, accpetされた提案を返す.</li>
+    </ul>
+  </li>
+</ul>
+
+
+</div>
+<div class='slide '>
+<!-- _S9SLIDE_ -->
+<h1 id="paxos-3">Paxos</h1>
+
+<div style="text-align: center;">
+    <img src="./images/prepare-promise.svg" alt="blockchain" width="1000" height="500" />
+</div>
+
+
+</div>
+<div class='slide '>
+<!-- _S9SLIDE_ -->
+<h1 id="paxos-4">Paxos</h1>
+
+<p>2つ目のフェーズ, accept-acceptedは次のような手順で動作する.</p>
+
+<ul>
+  <li>proposerは過半数のacceptorから返信が来たならば, 次の提案をacceptorに送る. これをacceptリクエストという.
+    <ul>
+      <li>もし, 約束のみが返ってきているならば, 任意の値vをprepareリクエストで送った提案に設定する.</li>
+      <li>もし, acceptされた提案が返ってきたら, その中で最大の提案番号を持つ提案の値v’をprepareリクエストで送った提案の値として設定する.</li>
+    </ul>
+  </li>
+  <li>acceptorはacceptリクエストが来た場合, Promiseした提案よりもacceptリクエストで提案された提案番号が低ければ, その提案を拒否する. それ以外の場合はacceptする.</li>
+</ul>
+
+
+</div>
+<div class='slide '>
+<!-- _S9SLIDE_ -->
+<h1 id="paxos-5">Paxos</h1>
+
+<div style="text-align: center;">
+    <img src="./images/accept-accepted.svg" alt="blockchain" width="1000" height="500" />
+</div>
+
+
+</div>
+<div class='slide '>
+<!-- _S9SLIDE_ -->
+<h1 id="paxos-6">Paxos</h1>
+<p>とりあえず, このアルゴリズムで値が一意に決まる.</p>
+
+
+</div>
+<div class='slide '>
+<!-- _S9SLIDE_ -->
 <h1 id="christie">Christieとは</h1>
 
 <ul>
   <li>研究室で使っていたAliceの問題点を解消した, 分散プログラミングを簡単に書けるjavaのフレームワーク.</li>
   <li>Continued based C(CbC)と似た書き方が可能.</li>
-  <li>まだAliceから引き継いでない機能でTopologyManagerというものがあるので, それも実装.</li>
+  <li>まだAliceから引き継いでない機能でTopologyManagerというものがある. これは, Topologyを構成するための機能.</li>
+  <li>簡単に言えば, ノード間の配線をしてくれる. 分散環境上で実験を行いたい場合に便利なため, これを実装してからPaxosを実装した.</li>
 </ul>
 
 
@@ -248,7 +340,7 @@
   <li>TopologyManagerは参加を表明したノード(TopologyNode)を元にTopologyを作る.</li>
   <li>TopologyManagerは静的Topologyと動的Topologyを作れる.</li>
   <li>静的Topologyはdotファイルというものを読み込んで, そのとおりにTopologyを生成する.</li>
-  <li>動的Topologyは参加を表明したノードを動的に配置する. が, 今はTreeしか実装していません.</li>
+  <li>動的Topologyは参加を表明したノードを動的に配置する. が, 今はTreeしか実装していない.</li>
 </ul>
 
 
@@ -261,31 +353,44 @@
   <li>ブロックチェーンにおいて, 分散環境上でテストしなければいけないのはコンセンサスアルゴリズムである. そのため, Paxosを実装し, 実際の分散環境上で動かした.</li>
   <li>評価は値が一意に決まるかどうかである. 値が一意に決まるならば, リーダーがコンセンサスをとっても良いし, ブロックについてコンセンサスをとっても良い.</li>
   <li>今回は単純化のために, 整数でコンセンサスを取る.</li>
+  <li>また, ノードはproposerが2つ, acceptorが3つ, learnerが1つという構成で実験する.</li>
 </ul>
 
 
 </div>
 <div class='slide '>
 <!-- _S9SLIDE_ -->
-<h1 id="section-7">実験1</h1>
+<h1 id="paxos1">Paxos実験1</h1>
+
+<div style="text-align: center;">
+    <img src="./images/paxos1.svg" alt="blockchain" width="1000" height="800" />
+</div>
 
 
 </div>
 <div class='slide '>
 <!-- _S9SLIDE_ -->
-<h1 id="section-8">実験2</h1>
+<h1 id="paxos2">Paxos実験2</h1>
+
+<div style="text-align: center;">
+    <img src="./images/paxos2.svg" alt="blockchain" width="1000" height="1000" />
+</div>
 
 
 </div>
 <div class='slide '>
 <!-- _S9SLIDE_ -->
-<h1 id="section-9">実験3</h1>
+<h1 id="paxos3">Paxos実験3</h1>
+
+<div style="text-align: center;">
+    <img src="./images/paxos3.svg" alt="blockchain" width="1000" height="1000" />
+</div>
 
 
 </div>
 <div class='slide '>
 <!-- _S9SLIDE_ -->
-<h1 id="section-10">まとめ</h1>
+<h1 id="section-7">まとめ</h1>
 
 <ul>
   <li>コンセンサスアルゴリズムのPaxosを実装しました.</li>
--- a/slide/slide.md	Tue Feb 19 15:28:07 2019 +0900
+++ b/slide/slide.md	Tue Feb 19 21:49:55 2019 +0900
@@ -6,7 +6,7 @@
 
 # 目次
 
-- OS単位での分散システム
+- 研究目的
 - ブロックチェーンとは
 - ブロックチェーンのfork
 - コンセンサスアルゴリズム
@@ -16,7 +16,7 @@
 - PCクラスタ上でPaxosを動かした話
 - まとめ
 
-# OS単位での分散システム
+# 研究目的 OS単位での分散システム
 
 - コンピュータでデータが壊れることはあり得る. 誤操作や, データの破損, 最悪の場合システムの重要な部分のデータの破損も起こりうる.
 - ブロックチェーンはデータを分散でき, 破損や不整合の検知が可能である.
@@ -72,47 +72,56 @@
 
 - プライベートブロックチェーンは管理者が許可するノードしか参加しない. つまり, レベル3のコンセンサスアルゴリズムで十分.
 - 新しいブロックもパブリックブロックチェーンより早く作れる.
-- コンセンサスアルゴリズムの中でPaxosが速いらしいので, 今回はこちらも実装してみます.
+- コンセンサスアルゴリズムの中でPaxosを実装します.
 
 # Paxos
 
 - Lamport先生が「故障モデルレベル3での合意が不可能なのを証明してやる」と言って証明の途中で逆に編み出してしまったらしいアルゴリズム.
 - レベル3のアルゴリズムの基礎となっている.
-- proposerが値を提案し, acceptorが決め, Learnerが集計して多数決を取って決まった値を保持.
+- proposerが値を提案し, acceptorが決め, Learnerが集計し, 多数決を取って決まった値を保持.
 
-# Paxos説明の前の用語説明
 
-- 
-
-# [25行でわかるPaxosアルゴリズム](http://nil.csail.mit.edu/6.824/2015/notes/paxos-code.html)
-
-- Proposerは
+# Paxos
+とりあえず, このアルゴリズムで値が一意に決まる.
 
 # Christieとは
 
 - 研究室で使っていたAliceの問題点を解消した, 分散プログラミングを簡単に書けるjavaのフレームワーク.
 - Continued based C(CbC)と似た書き方が可能.
-- まだAliceから引き継いでない機能でTopologyManagerというものがあるので, それも実装.
+- まだAliceから引き継いでない機能でTopologyManagerというものがある. これは, Topologyを構成するための機能.
+- 簡単に言えば, ノード間の配線をしてくれる. 分散環境上で実験を行いたい場合に便利なため, これを実装してからPaxosを実装した.
 
 # TopologyManagerとは
 
 - TopologyManagerは参加を表明したノード(TopologyNode)を元にTopologyを作る.
 - TopologyManagerは静的Topologyと動的Topologyを作れる.
 - 静的Topologyはdotファイルというものを読み込んで, そのとおりにTopologyを生成する.
-- 動的Topologyは参加を表明したノードを動的に配置する. が, 今はTreeしか実装していません.
+- 動的Topologyは参加を表明したノードを動的に配置する. が, 今はTreeしか実装していない.
 
 # PCクラスタ上でPaxosを動かした話
 
 - ブロックチェーンにおいて, 分散環境上でテストしなければいけないのはコンセンサスアルゴリズムである. そのため, Paxosを実装し, 実際の分散環境上で動かした.
 - 評価は値が一意に決まるかどうかである. 値が一意に決まるならば, リーダーがコンセンサスをとっても良いし, ブロックについてコンセンサスをとっても良い.
 - 今回は単純化のために, 整数でコンセンサスを取る.
+- また, ノードはproposerが2つ, acceptorが3つ, learnerが1つという構成で実験する.
 
+# Paxos実験1
 
-# 実験1
+<div style="text-align: center;">
+    <img src="./images/paxos1.svg" alt="blockchain" width="1000" height="800">
+</div>
+
+# Paxos実験2
 
-# 実験2
+<div style="text-align: center;">
+    <img src="./images/paxos2.svg" alt="blockchain" width="1000" height="1000">
+</div>
 
-# 実験3
+# Paxos実験3
+
+<div style="text-align: center;">
+    <img src="./images/paxos3.svg" alt="blockchain" width="1000" height="1000">
+</div>
 
 # まとめ