Quick fixes

This commit is contained in:
Samy Avrillon 2024-09-03 18:22:20 +02:00
parent a7df1d8369
commit b8ed28e8e4
Signed by: Mysaa
GPG Key ID: 0220AC4A3D6A328B
6 changed files with 792 additions and 101 deletions

View File

@ -2,6 +2,7 @@
\DocumentMetadata{}
\documentclass[12pt,xcolor={dvipsnames},aspectratio=169]{beamer}
\input{./headerDiapo.tex}
\title[Semantics of 2-sortification]{Categorical semantics of the reduction of GATs to two-sorted GATs.
@ -20,8 +21,8 @@
\section{GATs and 2-sortification}
\begin{frame}{What is a GAT ?}
\begin{itemize}
\item A dependent \textbf{type theory}
\item[\ding{220}] Enables to create sorts, object of those sorts, equalities between those objects
\item A \textbf{list} of declarations
\item[\ding{220}] Enables to declare sorts, objects of those sorts and equalities between those objects
\item A \textbf{syntactic object}
\item[\ding{220}] Type judgements are defined with induction rules
\item Describes \textbf{models}
@ -35,10 +36,10 @@
\begin{columns}
\begin{column}{.6\textwidth}
\renewcommand\arraystretch{1.5}
\begin{tabular}{l}
$A : \Set$ \\
$B : \Set$ \\\hline
$\operatorname{exec} : A \to B$
\begin{tabular}{ll}
$A : \Set$&\multirow{2}{*}{$\left.\begin{array}{c}\\\\\end{array}\right\}\text{sorts}$}\\
$B : \Set$&\\\hdashline
$\operatorname{exec} : A \to B$&$\}\text{constructors}$
\end{tabular}
\end{column}
\begin{column}{.4\textwidth}
@ -52,18 +53,19 @@
\begin{frame}{A GAT for an bijective function in Set}
\begin{tcolorbox}
\begin{columns}
\begin{column}{.6\textwidth}
\begin{column}{.7\textwidth}
\renewcommand\arraystretch{1.5}
\begin{tabular}{l}
$A : \Set$ \\
$B : \Set$ \\\hline
$\operatorname{exec} : A \to B$ \\
$\operatorname{invexec} : B \to A$\\\hline
$\operatorname{isol} : (x : A) \to \operatorname{invexec}(\operatorname{exec}\;x) = x$\\
$\operatorname{isor} : (y : B) \to \operatorname{exec}(\operatorname{invexec}\;y) = y$\\
\begin{tabular}{ll}
$A : \Set$ & \multirow{2}{*}{$\left.\begin{array}{c}\\\\\end{array}\right\}\text{sorts}$}\\
$B : \Set$ &\\\hdashline
$\operatorname{exec} : A \to B$ &\multirow{2}{*}{$\left.\begin{array}{c}\\\\\end{array}\right\}\text{constructors}$}\\
$\operatorname{invexec} : B \to A$&\\\hdashline
$\operatorname{isol} : (x : A) \to \operatorname{invexec}(\operatorname{exec}\;x) = x$&
\multirow{2}{*}{$\left.\begin{array}{c}\\\\\end{array}\right\}\text{equalities}$}\\
$\operatorname{isor} : (y : B) \to \operatorname{exec}(\operatorname{invexec}\;y) = y$&\\
\end{tabular}
\end{column}
\begin{column}{.4\textwidth}
\begin{column}{.3\textwidth}
Models:
triples (A,B,f)
@ -80,12 +82,12 @@
\renewcommand\arraystretch{1.5}
\begin{tabular}{l}
$\Obj : \Set$ \\
$\Hom : \Obj \to \Obj \to \Set$ \\\hline
$\Hom : \Obj \to \Obj \to \Set$ \\\hdashline
$\id : (A : \Obj) \to \Hom\;A\;A$ \\
$\operatorname{comp} : (A\;B\;C:\Obj) \to \Hom\;B\;C \to\Hom\;A\;B \to \Hom\;A\;C$ \\\hline
$\operatorname{idl}: (A B : \Obj) \to (\sigma : \Hom\;A\;B) \to \operatorname{comp} (\id\;B) \sigma = \sigma$\\
$\operatorname{idr}: (A B : \Obj) \to (\sigma : \Hom\;A\;B) \to \operatorname{comp} \sigma (\id\;A) = \sigma$\\
$\operatorname{comp-trans}: \dots$\\
$\circ : (A\;B\;C:\Obj) \to \Hom\;B\;C \to\Hom\;A\;B \to \Hom\;A\;C$ \\\hdashline
$\operatorname{idl}: (A B : \Obj) \to (\sigma : \Hom\;A\;B) \to \circ\;(\id\;B)\;\sigma = \sigma$\\
$\operatorname{idr}: (A B : \Obj) \to (\sigma : \Hom\;A\;B) \to \circ\;\sigma\;(\id\;A) = \sigma$\\
$\operatorname{\circ-trans}: \dots$\\
\end{tabular}
\end{column}
\begin{column}{0.2\textwidth}
@ -105,7 +107,7 @@
\begin{tabular}{l}
$\Con : \Set$ \\
$\Ty : \Con \to \Set$ \\
$\Tm : (\Gamma : \Con) \to \Ty\;\Gamma \to \Set$ \\\hline
$\Tm : (\Gamma : \Con) \to \Ty\;\Gamma \to \Set$ \\\hdashline
$\operatorname{empty}: \Con$ \\
$\operatorname{ext}: (\Gamma:\Con)\to(A:\Ty\;\Gamma)\to\Con$ \\
$\operatorname{implies} : (\Gamma:\Con) \to \Ty\;\Gamma \to \Ty\;\Gamma \to \Ty\;\Gamma$ \\
@ -129,12 +131,17 @@
\end{tcolorbox}
\end{frame}
\begin{frame}{2-sortification}
\begin{frame}{Subject of my internship}{2-sortification of GATs}
\begin{center}
{\large Transform a GAT into a GAT with only two sorts}
\ding{229} Simplify a study of GATs
\end{center}
\vspace{3ex}
\ding{229} Process observed since at least 2021
\ding{229} Never formally studied
\ding{229} Studying all GATs by only studying GATs with two sorts ?
\end{frame}
\begin{frame}{2-sortification of the Set Function GAT}
\begin{tcolorbox}
@ -142,7 +149,7 @@
\begin{tabular}{llrcl}
\pause
$\mathcal{O} : \Set$ & \color{RoyalBlue} \text{sorts} & $o:\mathcal{O}$ &$\leftrightarrow$&$o$ is a sort \\
$\El : \mathcal{O} \to \Set$ & \color{RoyalBlue}\text{objects of that sort} & \qquad $x : \El\;o$ & $\leftrightarrow$ & $x : \mathcal{O}$ \pause\\\hline
$\El : \mathcal{O} \to \Set$ & \color{RoyalBlue}\text{objects of that sort} & \qquad $x : \El\;o$ & $\leftrightarrow$ & $x : o$ \pause\\\hline
$A : \mathcal{O}$ &&\multicolumn{1}{l}{\color{teal}$A : \Set$}&&\\
$B : \mathcal{O}$ &&\multicolumn{1}{l}{\color{teal}$B : \Set$}&&\\
$\operatorname{exec} : \El\;A \to \El\;B$&&\color{teal}$\operatorname{exec} : A \to B$&&
@ -171,7 +178,7 @@
\ding{229} Can one study all GATs by studying only GATs with two sorts
\vspace{1ex}
{\large How to state this fact}
{\large How to state this fact ?}
\ding{229} Semantical proof
@ -185,10 +192,11 @@
\section{One Example}
\begin{frame}{Constructing the categories}
\begin{frame}{Categories of models}
\begin{center}
\renewcommand{\ULthickness}{2.4pt}
\only<1>{GAT = sorts + constructors + equalities}
\only<2>{GAT = sorts + \sout{constructors} + \sout{equalities}}
\only<2>{GAT = \textbf{sorts} + \sout{constructors} + \sout{equalities}}
\end{center}
\pause[2]
\begin{center}
@ -202,7 +210,7 @@
&
$\begin{array}{l}
\mathcal{O} : \Set\\
\El : \mathcal{O} \to \Set \\\hline
\El : \mathcal{O} \to \Set \\\hdashline
\underline{\Con} : \mathcal{O} \\
\underline{\Ty} : \El\;\underline{\Con} \to \mathcal{O} \\
\underline{\Tm} : (\Gamma : \El\;\underline{\Con}) \to \El(\underline{\Ty}\;\Gamma) \to \mathcal{O}
@ -222,27 +230,27 @@
\end{center}
\end{frame}
\begin{frame}{Category of Models \& Generalization}
\begin{frame}{Categories of Models}{of the original GAT}
\begin{tabular}{lcp{0.5\textwidth}}
$\boxed{()}$ & $\CC_0 :=$ &
$\one$ \\
$\boxed{\Con : \Set}$ & $\CC_1 := $&
\only<1>{$\left[X_\Con\right]$}
\only<2>{$\left[X_\Con : \Set\right]$}
\only<1>{$\left(X_\Con\right)$}
\only<2>{$\left(X_\Con : \Set\right)$}
\only<3>{$(\bullet : \CC_0) \times \left(\Set\right)$}
\only<4>{$\left(X : \CC_0\right) \times \Set^{H_1(X)}$} \\
$\boxed{\Ty : (\Gamma : \Con) \to \Set}$ & $\CC_2 := $&
\only<1>{$\left[X_\Con, \left(X_\Ty(\Gamma)\right)_{\Gamma \in X_\Con}\right]$}
\only<2>{$\left[X_\Con : \Set, X_\Ty : \Set^{X_\Con}\right]$}
\only<1>{$\left(X_\Con, \left(X_\Ty(\Gamma)\right)_{\Gamma \in X_\Con}\right)$}
\only<2>{$\left(X_\Con : \Set, X_\Ty : \Set^{X_\Con}\right)$}
\only<3>{$\left(X_\Con : \CC_1\right) \times \left(\Set^{X_\Con}\right)$}
\only<4>{$\left(X : \CC_1\right) \times \Set^{H_2(X)}$} \\
$\boxed{\Tm : (\Delta : \Con) \to (A : \Ty\;\Delta) \to \Set}$ & $\CC_3 :=$&
\only<1>{$\left[X_\Con, \left(X_\Ty(\Gamma)\right)_{\Gamma \in X_\Con},\right.$}
\only<2>{$\left[X_\Con : \Set, X_\Ty : \Set^{X_\Con},\right.$}
\only<1>{$\left(X_\Con, \left(X_\Ty(\Gamma)\right)_{\Gamma \in X_\Con},\right.$}
\only<2>{$\left(X_\Con : \Set, X_\Ty : \Set^{X_\Con},\right.$}
\only<3>{$\left((X_\Con,X_\Ty) : \CC_2\right) \times$}
\only<4>{$\left(X : \CC_2\right) \times \Set^{H_3(X)}$} \\ &&
\only<1>{$\left.\left(\left(X_\Tm(\Delta,A)\right)_{A \in \Ty(\Delta)}\right)_{\Delta \in X_\Con} \right]$}
\only<2>{\quad$\left.X_\Tm : \Set^{\prod_{\Delta:X_\Con}X_\Ty(\Delta)}\right]$}
\only<1>{$\left.\left(\left(X_\Tm(\Delta,A)\right)_{A \in \Ty(\Delta)}\right)_{\Delta \in X_\Con} \right)$}
\only<2>{\quad$\left.X_\Tm : \Set^{\prod_{\Delta:X_\Con}X_\Ty(\Delta)}\right)$}
\only<3>{\quad$\left(\Set^{\prod_{\Delta:X_\Con}X_\Ty(\Delta)}\right)$}
\end{tabular}
@ -254,7 +262,7 @@
\end{array}\]
\end{frame}
\begin{frame}{Category of Models of transformed GAT}
\begin{frame}{Category of Models}{of the transformed GAT}
\[
\begin{array}{|c|}
\hline
@ -277,55 +285,70 @@
\end{frame}
\begin{frame}{Adding transformed sort declarations}
\begin{frame}{Category of Models}{of the transformed GAT}
\begin{center}
\color{blue}{
\begin{tabular}{ll}
$X_\UU$:& Sorts \\
$X_\El(o)$:& Objects of sort $o$\\
\end{tabular}
\end{tabular}}
\end{center}
\begin{center}
\renewcommand\arraystretch{1.4}
\begin{tabular}{lrp{0.4\textwidth}}
$\boxed{\mathcal{O} : \Set\quad\El : \mathcal{O} \to \Set}$ & $\BB_0 =$ &
$(X_\UU,X_\El)$ \\
$\boxed{\Con : \mathcal{O}}$ & $\Cstr_\Con :$ &
$\boxed{\Con : \mathcal{O}}$ & $\XCon_X :$ &
\only<1>{$X_\UU$}
\only<2>{$H_1F_0(X) \to X_\UU$} \\
$\boxed{\Ty : (\Gamma : \underline{\Con}) \to \mathcal{O}}$ & $\Cstr_\Ty :$&
\only<1>{$\left(\Gamma \in X_\El(\Cstr_\Con)\right) \to X_\UU $}
\only<2>{$H_2F_1(X,\Cstr_\Con) \to X_\UU$} \\
$\boxed{\Tm : (\Delta : \underline{\Con}) \to (A : \underline{\Ty\;\Delta}) \to \mathcal{O}}$ & $\Cstr_\Tm : $ &
\only<1>{\rule[6ex]{0pt}{0pt}\renewcommand\arraystretch{0.9}$\begin{array}{c}\left(\Delta \in X_\El(\Cstr_\Con)\right) \to\\ \left(A \in X_\El(\Cstr_\Ty(\Delta))\right) \to\\ X_\UU\end{array}$}
\only<2>{$H_3F_2(X,\Cstr_\Con,\Cstr_\Ty) \to X_\UU$}
$\boxed{\Ty : (\Gamma : \underline{\Con}) \to \mathcal{O}}$ & $\XTy_X :$&
\only<1>{$\left(\Gamma \in X_\El(\XCon_X)\right) \to X_\UU $}
\only<2>{$H_2F_1(X,\XCon_X) \to X_\UU$} \\
$\boxed{\Tm : (\Delta : \underline{\Con}) \to (A : \underline{\Ty\;\Delta}) \to \mathcal{O}}$ &
$\XTm_X : $ &
\only<1>{\rule[6ex]{0pt}{0pt}\renewcommand\arraystretch{0.9}$\begin{array}{c}\left(\Delta \in X_\El(\XCon_X)\right) \to\\ \left(A \in X_\El(\XTy_X(\Delta))\right) \to\\ X_\UU\end{array}$}
\only<2>{$H_3F_2(X,\XCon_X,\XTy_X) \to X_\UU$}
\end{tabular}
\end{center}
\pause
\begin{center}
\includesvg[scale=.4]{graphs/diagrammeFGmini.svg}
\end{center}
\end{frame}
\begin{frame}{Constructing the functors}
\begin{frame}{Constructing $F$ and $G$}
\begin{center}
\includesvg[scale=.4]{graphs/diagrammeFGmini.svg}
\end{center}
\[
\begin{array}{l|l}
Y : \mathbf{\CC_3} & X : \mathbf{\BB_3} \\\hline
& X_\UU : \Set \quad X_\El : \Set^{X_\UU}\\
Y_\Con : \Set & \Cstr_\Con : X_\UU \\
Y_\Con : \Set & \XCon_X : X_\UU \\
\left(Y_\Ty(\Gamma)\right)_{\Gamma \in Y_\Con} &
\Cstr_\Ty : H_2 F_{1} (X,\Cstr_\Con) \to X_\UU \\
\XTy_X : H_2 F_{1} (X,\XCon_X) \to X_\UU \\
\left(\left(Y_\Tm(\Delta,A)\right)_{A \in Y_\Ty(\Delta)}\right)_{\Delta \in Y_\Con} &
\Cstr_\Tm : H_3 F_{2} (X,\Cstr_\Con,\Cstr_\Ty) \to X_\UU \\
\XTm_X : H_3 F_{2} (X,\XCon_X,\XTy_X) \to X_\UU \\
\end{array}
\]
\begin{center}
\begin{tabular}{ll}
$X_\UU$:& Sorts \\
$X_\El(o)$:& Objects of sort $o$\\
\end{tabular}
\end{center}
\end{frame}
\begin{frame}{Constructing $G_3$}
\begin{columns}
\begin{column}{.5\textwidth}
\begin{center}
\includesvg[scale=.4]{graphs/diagrammeGmini.svg}
\end{center}
\end{column}
\begin{column}{.5\textwidth}
\[
Y = \left(Y_\Con,Y_\Ty,Y_\Tm\right)
\]
\end{column}
\end{columns}
\vspace{.5ex}
\only<1>{
\[\begin{array}{ccl}
X_\UU & = & \text{«sorts»}\\
@ -335,8 +358,8 @@
\pause
\[\begin{array}{ccccccc}
X_\UU & = &
1 & \oplus &
Y_\Con & \oplus&
\{\star\} & \uplus &
Y_\Con & \uplus&
\displaystyle\coprod_{\Delta \in Y_\Con}Y_\Ty(\Delta) \\
X_\El(\inj_1(\star)) & = &
Y_\Con &&&&\\
@ -348,37 +371,42 @@
\end{array}\]
\pause
\[\begin{array}{lcl}
\Cstr_\Con &=& \inj_1(\star)\\
\Cstr_\Ty(\Gamma) &=& \inj_2(\Gamma) \\
\Cstr_\Tm(\Delta,A) &=& \inj_3(\Delta,A)
\XCon_X &=& \inj_1(\star)\\
\XTy_X(\Gamma) &=& \inj_2(\Gamma) \\
\XTm_X(\Delta,A) &=& \inj_3(\Delta,A)
\end{array}\]
\pause
\begin{remark}
All sorts of $X_\UU$ are reached by some $\Cstr$
\end{remark}
\vspace{-1.5ex}
\begin{tcolorbox}
All sorts of $X_\UU$ are in the image of some constructor $(\XCon_X,\XTy_X,\XTm_X)$
\end{tcolorbox}
\end{frame}
\begin{frame}{Constructing $F_3$}
\renewcommand\arraystretch{1.8}
\begin{center}
\includesvg[scale=.4]{graphs/diagrammeFmini.svg}
\end{center}
\vspace{-1ex}
\renewcommand\arraystretch{1.5}
\[
\begin{array}{l|l}
X : \mathbf{\BB_3} & Y = F_3(X): \mathbf{\CC_3}\\\hline
X_\UU : \Set\quad X_\El : \Set^{X_\UU} &\\
\Cstr_\Con : X_\UU & Y_\Con =
\uncover<2->{\ensuremath{X_\El(\Cstr^X_\Con)}}\\
\Cstr_\Ty : H_2 F_{1} (X,\Cstr_\Con) \to X_\UU &
\XCon_X : X_\UU & Y_\Con =
\uncover<2->{\ensuremath{X_\El(\XCon_X)}}\\
\XTy_X : H_2 F_{1} (X,\XCon_X) \to X_\UU &
Y_\Ty(\Gamma) =
\uncover<3->{\ensuremath{X_\El(\Cstr^X_\Ty(\Gamma))}}\\
\Cstr_\Tm : H_3 F_{2} (X,\Cstr_\Con,\Cstr_\Ty) \to X_\UU &
\uncover<3->{\ensuremath{X_\El(\XTy_X(\Gamma))}}\\
\XTm_X : H_3 F_{2} (X,\XCon_X,\XTy_X) \to X_\UU &
Y_\Tm(\Delta,A) =
\uncover<4->{\ensuremath{X_\El(\Cstr^X_\Tm(\Delta,A))}} \\
\uncover<4->{\ensuremath{X_\El(\XTm_X(\Delta,A))}} \\
\end{array}
\]
\pause[5]
\begin{remark}
Each object of $Y$ are associated by $X_\El$ to some $\Cstr$
\end{remark}
\vspace{-.5ex}
\begin{tcolorbox}
Each object of $Y$ are associated by $X_\El$ to some constructor
\end{tcolorbox}
\end{frame}
@ -389,11 +417,11 @@
\pause
\begin{remark}
All sorts of $G_3Y$ are reached by some $\Cstr$ of $G_3Y$
All sorts of $G_3Y$ are reached by some constructor of $G_3Y$
\uncover<3>{\ding{220}$\Hom_{\BB_3}\left(G_3Y,X\right)$ transforms constructible into constructible}
Each object of $F_3X$ are associated by $X_\El$ to some $\Cstr$ of $X$
Each object of $F_3X$ are associated by $X_\El$ to some constructor of $X$
\uncover<3>{\ding{220}$\Hom_{\CC_3}\left(Y,F_3X\right)$ transforms constructible into constructible}
\end{remark}

View File

@ -24,15 +24,15 @@
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="1.6819304"
inkscape:cx="395.37902"
inkscape:cy="181.04197"
inkscape:window-width="1680"
inkscape:window-height="978"
inkscape:zoom="1.4810357"
inkscape:cx="413.22434"
inkscape:cy="132.00222"
inkscape:window-width="1920"
inkscape:window-height="1008"
inkscape:window-x="0"
inkscape:window-y="15"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
inkscape:current-layer="text625" />
<defs
id="defs2">
<marker
@ -54,15 +54,35 @@
d="M 5.77,0 -2.88,5 V -5 Z"
id="path135" />
</marker>
<marker
style="overflow:visible"
id="TriangleStart-3"
refX="0"
refY="0"
orient="auto-start-reverse"
inkscape:stockid="TriangleStart"
markerWidth="5.3244081"
markerHeight="6.155385"
viewBox="0 0 5.3244081 6.1553851"
inkscape:isstock="true"
inkscape:collect="always"
preserveAspectRatio="xMidYMid">
<path
transform="scale(0.5)"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path135-6" />
</marker>
</defs>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g1316">
id="g1316"
transform="translate(12.700002)">
<rect
style="opacity:0.75462;fill:#8fe092;stroke:#4c4c4c;stroke-width:1.45481;fill-opacity:1;stroke-opacity:1"
style="opacity:0.75462;fill:#8fe092;fill-opacity:1;stroke:#4c4c4c;stroke-width:1.45481;stroke-opacity:1"
id="rect234-3-6"
width="54.818592"
height="54.818592"
@ -114,7 +134,7 @@
style="text-align:center;text-anchor:middle"
id="path437" />
<path
d="m 54.653909,42.474029 0.09313,0.651933 -0.01693,-0.0508 q 0.220133,-0.372533 0.550333,-0.575733 0.3302,-0.211667 0.795867,-0.211667 0.3048,0 0.5334,0.08467 0.237067,0.08467 0.397934,0.254001 0.160867,0.160866 0.220133,0.423333 l -0.04233,0.0085 q 0.237067,-0.347134 0.567267,-0.5588 0.338667,-0.211667 0.702733,-0.211667 0.550334,0 0.872067,0.313267 0.330201,0.3048 0.338667,0.795867 v 2.777067 H 58.48931 v -2.286001 q -0.0085,-0.245533 -0.0762,-0.397933 -0.06773,-0.160867 -0.313267,-0.1778 -0.287867,0 -0.491067,0.2032 -0.194733,0.194733 -0.296333,0.508 -0.09313,0.3048 -0.09313,0.635 v 1.515534 h -1.185334 v -2.286001 q -0.0085,-0.245533 -0.09313,-0.397933 -0.0762,-0.160867 -0.321733,-0.1778 -0.2794,0 -0.474134,0.2032 -0.186266,0.194733 -0.287866,0.499533 -0.09313,0.304801 -0.09313,0.626534 v 1.532467 h -1.185334 v -3.699934 z"
d="m 54.653909,42.474029 0.09313,0.651933 -0.01693,-0.0508 q 0.220133,-0.372533 0.550333,-0.575733 0.3302,-0.211667 0.795867,-0.211667 0.3048,0 0.5334,0.08467 0.237067,0.08467 0.397934,0.254001 0.160867,0.160866 0.220133,0.423333 l -0.04233,0.0085 q 0.237067,-0.347134 0.567267,-0.5588 0.338667,-0.211667 0.702733,-0.211667 0.550334,0 0.872067,0.313267 0.330201,0.3048 0.338667,0.795867 V 46.174 h -1.17687 v -2.286001 q -0.0085,-0.245533 -0.0762,-0.397933 -0.06773,-0.160867 -0.313267,-0.1778 -0.287867,0 -0.491067,0.2032 -0.194733,0.194733 -0.296333,0.508 -0.09313,0.3048 -0.09313,0.635 V 46.174 h -1.185334 v -2.286001 q -0.0085,-0.245533 -0.09313,-0.397933 -0.0762,-0.160867 -0.321733,-0.1778 -0.2794,0 -0.474134,0.2032 -0.186266,0.194733 -0.287866,0.499533 -0.09313,0.304801 -0.09313,0.626534 V 46.174 h -1.185334 v -3.699934 z"
style="text-align:center;text-anchor:middle"
id="path439" />
<path
@ -134,7 +154,7 @@
style="text-align:center;text-anchor:middle"
id="path447" />
<path
d="m 79.291924,46.250163 q -0.457201,0 -0.855134,-0.160866 -0.389467,-0.160867 -0.6604,-0.448734 l 0.491066,-0.651933 q 0.270934,0.245533 0.499534,0.3556 0.237067,0.1016 0.423333,0.1016 0.143934,0 0.254001,-0.0254 0.118533,-0.03387 0.186266,-0.09313 0.06773,-0.06773 0.06773,-0.169333 0,-0.143933 -0.118534,-0.2286 -0.110066,-0.08467 -0.287866,-0.135467 -0.177801,-0.05927 -0.381001,-0.118533 -0.508,-0.160867 -0.7366,-0.465667 -0.220133,-0.313267 -0.220133,-0.677334 0,-0.2794 0.143933,-0.5588 0.1524,-0.287867 0.474134,-0.474133 0.3302,-0.194734 0.846667,-0.194734 0.465666,0 0.7874,0.09313 0.321733,0.09313 0.6096,0.304801 l -0.448733,0.694267 q -0.160867,-0.127001 -0.364067,-0.211667 -0.194734,-0.09313 -0.364067,-0.1016 -0.1524,-0.0085 -0.262467,0.03387 -0.1016,0.04233 -0.160867,0.110067 -0.05927,0.06773 -0.05927,0.143934 -0.0085,0.160866 0.118533,0.254 0.135467,0.09313 0.338667,0.143933 0.2032,0.0508 0.397933,0.118533 0.270934,0.08467 0.465667,0.2286 0.194734,0.143934 0.296334,0.347134 0.110066,0.194733 0.110066,0.474133 0,0.338667 -0.1778,0.643467 -0.169333,0.296334 -0.524933,0.482601 -0.347134,0.186266 -0.889,0.186266 z"
d="m 79.291924,46.250163 q -0.457201,0 -0.855134,-0.160866 -0.389467,-0.160867 -0.6604,-0.448734 l 0.491066,-0.651933 q 0.270934,0.245533 0.499534,0.3556 0.237067,0.1016 0.423333,0.1016 0.143934,0 0.254001,-0.0254 0.118533,-0.03387 0.186266,-0.09313 0.06773,-0.06773 0.06773,-0.169333 0,-0.143933 -0.118534,-0.2286 -0.110066,-0.08467 -0.287866,-0.135467 -0.177801,-0.05927 -0.381001,-0.118533 -0.508,-0.160867 -0.7366,-0.465667 -0.220133,-0.313267 -0.220133,-0.677334 0,-0.2794 0.143933,-0.5588 0.1524,-0.287867 0.474134,-0.474133 0.3302,-0.194734 0.846667,-0.194734 0.465666,0 0.7874,0.09313 0.321733,0.09313 0.6096,0.304801 l -0.448733,0.694267 Q 80.20632,43.269896 80.00312,43.18523 q -0.194734,-0.09313 -0.364067,-0.1016 -0.1524,-0.0085 -0.262467,0.03387 -0.1016,0.04233 -0.160867,0.110067 -0.05927,0.06773 -0.05927,0.143934 -0.0085,0.160866 0.118533,0.254 0.135467,0.09313 0.338667,0.143933 0.2032,0.0508 0.397933,0.118533 0.270934,0.08467 0.465667,0.2286 0.194734,0.143934 0.296334,0.347134 0.110066,0.194733 0.110066,0.474133 0,0.338667 -0.1778,0.643467 -0.169333,0.296334 -0.524933,0.482601 -0.347134,0.186266 -0.889,0.186266 z"
style="text-align:center;text-anchor:middle"
id="path449" />
<path
@ -173,7 +193,7 @@
</g>
<g
id="g1308"
transform="translate(-15.832557,1.1054134)">
transform="translate(-3.1325529,1.1054134)">
<rect
style="opacity:0.75462;fill:#7bf8ff;fill-opacity:1;stroke:#4d4d4d;stroke-width:1.45481;stroke-opacity:1"
id="rect234-3"
@ -211,7 +231,7 @@
style="text-align:center;text-anchor:middle"
id="path478" />
<path
d="m 194.31354,25.49361 0.11007,1.016 -0.0254,-0.1524 q 0.16087,-0.3302 0.44027,-0.5588 0.2794,-0.237067 0.55033,-0.364067 0.2794,-0.127 0.42333,-0.127 l -0.0593,1.185334 q -0.41487,-0.0508 -0.7112,0.135466 -0.29634,0.186267 -0.4572,0.491067 -0.16087,0.3048 -0.16087,0.626534 v 1.4478 h -1.17687 V 25.49361 Z"
d="m 194.31354,25.49361 0.11007,1.016 -0.0254,-0.1524 q 0.16087,-0.3302 0.44027,-0.5588 0.2794,-0.237067 0.55033,-0.364067 0.2794,-0.127 0.42333,-0.127 l -0.0593,1.185334 q -0.41487,-0.0508 -0.7112,0.135466 -0.29634,0.186267 -0.4572,0.491067 -0.16087,0.3048 -0.16087,0.626534 v 1.4478 H 193.2467 V 25.49361 Z"
style="text-align:center;text-anchor:middle"
id="path480" />
<path
@ -279,7 +299,7 @@
style="text-align:center;text-anchor:middle"
id="path512" />
<path
d="m 165.9756,61.045157 q -0.51646,0 -0.9398,-0.2032 -0.41487,-0.211667 -0.6604,-0.643467 -0.24553,-0.4318 -0.24553,-1.100667 0,-0.626534 0.254,-1.083734 0.254,-0.4572 0.66886,-0.702733 0.41487,-0.254001 0.88054,-0.254001 0.55033,0 0.82973,0.186267 0.28787,0.1778 0.47414,0.397934 l -0.0508,0.143933 0.11006,-0.541867 h 1.10067 v 3.699935 h -1.18533 v -0.804334 l 0.0931,0.254 q -0.0169,0 -0.1016,0.101601 -0.0847,0.09313 -0.254,0.2286 -0.16087,0.127 -0.4064,0.220133 -0.23707,0.1016 -0.56727,0.1016 z m 0.33867,-0.9652 q 0.21167,0 0.381,-0.05927 0.16933,-0.06773 0.29633,-0.186267 0.127,-0.127 0.22014,-0.313267 v -0.905933 q -0.0677,-0.186267 -0.2032,-0.313267 -0.13547,-0.135467 -0.32174,-0.2032 -0.18626,-0.0762 -0.41486,-0.0762 -0.254,0 -0.47414,0.135467 -0.21166,0.127 -0.33866,0.3556 -0.12701,0.2286 -0.12701,0.524933 0,0.296334 0.13547,0.5334 0.13547,0.237067 0.3556,0.372534 0.2286,0.135467 0.49107,0.135467 z"
d="m 165.9756,61.045157 q -0.51646,0 -0.9398,-0.2032 -0.41487,-0.211667 -0.6604,-0.643467 -0.24553,-0.4318 -0.24553,-1.100667 0,-0.626534 0.254,-1.083734 0.254,-0.4572 0.66886,-0.702733 0.41487,-0.254001 0.88054,-0.254001 0.55033,0 0.82973,0.186267 0.28787,0.1778 0.47414,0.397934 l -0.0508,0.143933 0.11006,-0.541867 h 1.10067 v 3.699935 h -1.18533 v -0.804334 l 0.0931,0.254 q -0.0169,0 -0.1016,0.101601 -0.0847,0.09313 -0.254,0.2286 -0.16087,0.127 -0.4064,0.220133 -0.23707,0.1016 -0.56727,0.1016 z m 0.33867,-0.9652 q 0.21167,0 0.381,-0.05927 0.16933,-0.06773 0.29633,-0.186267 0.127,-0.127 0.22014,-0.313267 V 58.61522 q -0.0677,-0.186267 -0.2032,-0.313267 -0.13547,-0.135467 -0.32174,-0.2032 -0.18626,-0.0762 -0.41486,-0.0762 -0.254,0 -0.47414,0.135467 -0.21166,0.127 -0.33866,0.3556 -0.12701,0.2286 -0.12701,0.524933 0,0.296334 0.13547,0.5334 0.13547,0.237067 0.3556,0.372534 0.2286,0.135467 0.49107,0.135467 z"
style="text-align:center;text-anchor:middle"
id="path514" />
<path
@ -333,23 +353,31 @@
transform="translate(0,-1.5357037)">
<path
style="opacity:0.75462;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.17271;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleStart)"
d="m 90.341106,34.26352 c 0,0 13.325584,-3.395537 21.129024,-3.396158 7.80344,-6.21e-4 21.87109,3.396158 21.87109,3.396158"
d="m 103.04113,34.26352 c 0,0 13.32564,-3.395537 21.12908,-3.396158 7.80344,-6.21e-4 21.87109,3.396158 21.87109,3.396158"
id="path1372"
inkscape:transform-center-x="0.60034168"
inkscape:transform-center-y="1.6496774"
sodipodi:nodetypes="czc" />
<path
style="opacity:0.75462;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.17271;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleStart)"
d="m 137.24448,65.507686 c 0,0 -13.32558,3.395537 -21.12902,3.396158 -7.80344,6.21e-4 -21.871094,-3.396158 -21.871094,-3.396158"
d="m 149.94456,65.507686 c 0,0 -13.32558,3.395537 -21.12902,3.396158 -7.80344,6.21e-4 -21.87113,-3.396158 -21.87113,-3.396158"
id="path1644"
inkscape:transform-center-x="-0.60033982"
inkscape:transform-center-y="-1.6496775"
sodipodi:nodetypes="czc" />
<path
style="opacity:0.75462;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.17271;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleStart-3)"
d="m 44.519931,57.307942 c 0,0 -24.522783,25.14956 -24.522783,-7.498726 0,-32.648286 22.884759,-7.016108 22.884759,-7.016108"
id="path1372-7"
inkscape:transform-center-x="0.60034168"
inkscape:transform-center-y="1.6496774"
sodipodi:nodetypes="czc" />
</g>
<g
aria-label="G"
id="text1666"
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:1.296">
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:1.296"
transform="translate(12.700002)">
<path
d="m 116.51059,26.630018 q -0.11006,0.118534 -0.34713,0.245534 -0.23707,0.118533 -0.55033,0.220133 -0.3048,0.1016 -0.62654,0.160867 -0.32173,0.06773 -0.6096,0.06773 -0.762,0 -1.3716,-0.220133 -0.6096,-0.2286 -1.0414,-0.626534 -0.4318,-0.4064 -0.6604,-0.956734 -0.2286,-0.550333 -0.2286,-1.202267 0,-0.855133 0.254,-1.481667 0.26247,-0.635 0.70274,-1.049867 0.44873,-0.423334 1.02446,-0.626534 0.5842,-0.2032 1.2192,-0.2032 0.60114,0 1.10067,0.135467 0.49953,0.127 0.84667,0.321733 l -0.39794,1.143001 q -0.1524,-0.08467 -0.4064,-0.169334 -0.254,-0.08467 -0.51646,-0.135466 -0.26247,-0.05927 -0.46567,-0.05927 -0.508,0 -0.89747,0.127 -0.38946,0.127 -0.6604,0.381 -0.26246,0.254 -0.39793,0.635001 -0.13547,0.372533 -0.13547,0.872067 0,0.440266 0.1524,0.795867 0.1524,0.347133 0.42334,0.592666 0.2794,0.245534 0.65193,0.372534 0.381,0.127 0.8382,0.127 0.26247,0 0.4826,-0.03387 0.22013,-0.04233 0.37253,-0.127 v -0.753533 h -1.07526 v -1.185334 h 2.31986 z"
id="path539" />
@ -357,19 +385,54 @@
<g
aria-label="F"
id="text1666-7"
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:1.296">
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:1.296"
transform="translate(12.700002)">
<path
d="m 111.84546,69.042068 h 3.89467 v 1.185333 h -2.667 v 1.413934 h 2.3114 v 1.185334 h -2.3114 v 2.446868 h -1.22767 z"
id="path542" />
</g>
<g
aria-label="⊢"
transform="rotate(-90)"
transform="rotate(-90,6.3499993,-6.3499993)"
id="text374"
style="font-weight:bold;font-size:9.09966px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke:#000000;stroke-width:1.07046">
<path
d="m -51.731169,110.58481 h 0.959729 v 2.72812 h 5.802811 v 0.95973 h -5.802811 v 2.72812 h -0.959729 z"
id="path370" />
</g>
<g
aria-label="FG
Id"
id="text625"
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:0.996">
<g
id="g1275"
transform="translate(6.3500003)">
<g
id="g1262"
transform="translate(0,1.0871138)">
<path
d="M 1.9193766,37.075196 H 5.8140448 V 38.26053 H 3.1470437 v 1.413934 h 2.311401 v 1.185334 h -2.311401 v 2.446867 H 1.9193766 Z"
id="path1249" />
<path
d="m 12.053984,42.680132 q -0.110067,0.118533 -0.347134,0.245533 -0.237066,0.118533 -0.550333,0.220133 -0.3048,0.1016 -0.626534,0.160867 -0.321733,0.06773 -0.6096001,0.06773 -0.7620003,0 -1.3716005,-0.220134 Q 7.9391821,42.925665 7.507382,42.527732 7.0755818,42.121331 6.8469817,41.570998 6.6183816,41.020664 6.6183816,40.368731 q 0,-0.855134 0.2540001,-1.481668 0.2624668,-0.635 0.7027336,-1.049867 0.4487335,-0.423333 1.0244671,-0.626533 0.5842002,-0.2032 1.2192005,-0.2032 0.6011331,0 1.1006671,0.135466 0.499534,0.127 0.846667,0.321734 l -0.397934,1.143 q -0.1524,-0.08467 -0.4064,-0.169333 -0.254,-0.08467 -0.516467,-0.135467 -0.262466,-0.05927 -0.4656664,-0.05927 -0.5080002,0 -0.897467,0.127001 -0.3894668,0.127 -0.6604003,0.381 -0.2624667,0.254 -0.3979335,0.635 -0.1354667,0.372533 -0.1354667,0.872067 0,0.440267 0.1524001,0.795867 0.1524,0.347133 0.4233335,0.592667 0.2794001,0.245533 0.6519336,0.372533 0.3810001,0.127 0.8382003,0.127 0.2624664,0 0.4826004,-0.03387 0.220133,-0.04233 0.372533,-0.127 V 41.232331 H 9.7341162 v -1.185334 h 2.3198678 z"
id="path1251" />
</g>
<path
d="M 7.0501766,46.419497 C 6.6691764,46.13163 6.2458429,45.90303 5.7124427,45.90303 c -0.846667,0 -1.5155339,0.575734 -1.9473341,1.286935 l 0.6942669,0.524932 c 0.2624668,-0.499533 0.745067,-0.948267 1.2446005,-0.948267 0.3810002,0 0.6519336,0.2032 0.9652004,0.431801 0.3810002,0.287866 0.8128003,0.516466 1.3377339,0.516466 0.846667,0 1.5240006,-0.575733 1.9473341,-1.2954 L 9.2599774,45.90303 c -0.2624667,0.491067 -0.7450669,0.948268 -1.2361338,0.948268 -0.3810001,0 -0.6604002,-0.203201 -0.973667,-0.431801 z M 9.886511,48.273699 H 3.8751753 v 0.821266 H 9.886511 Z m 0,1.286932 H 3.8751753 v 0.821267 H 9.886511 Z"
id="path1253" />
<g
id="g1266"
transform="translate(0,1.0871138)">
<path
d="m 3.6254101,51.185039 h 1.2276671 v 6.231469 H 3.6254101 Z"
id="path1255" />
<path
d="m 7.7740705,57.518108 q -0.5164668,0 -0.922867,-0.237066 -0.4064002,-0.245534 -0.6434669,-0.702734 -0.2286001,-0.4572 -0.2286001,-1.083734 0,-0.626533 0.2540001,-1.0668 0.2540001,-0.440267 0.6942669,-0.668867 0.4402669,-0.2286 0.9990671,-0.2286 0.3556001,0 0.6773336,0.110067 0.3302001,0.110066 0.5503336,0.338666 v 0.372534 -3.615268 h 1.1768672 v 6.680202 H 9.1456711 v -0.719667 l 0.093133,0.254001 q -0.2878668,0.237066 -0.643467,0.4064 -0.3556001,0.160866 -0.8212666,0.160866 z m 0.3894669,-0.999067 q 0.2370667,0 0.4148668,-0.05927 0.1862667,-0.06773 0.3217335,-0.186267 0.1439333,-0.127 0.2455334,-0.313267 v -0.905934 q -0.067733,-0.186266 -0.2116668,-0.313266 -0.1354667,-0.135467 -0.3386668,-0.2032 -0.1947334,-0.0762 -0.4318001,-0.0762 -0.2624668,0 -0.4910669,0.135466 -0.2201334,0.127 -0.3556001,0.3556 -0.1354668,0.2286 -0.1354668,0.524934 0,0.296333 0.1354668,0.5334 0.1354667,0.237067 0.3556001,0.372534 0.2286001,0.135466 0.4910669,0.135466 z"
id="path1257" />
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 53 KiB

View File

@ -0,0 +1,216 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="210mm"
height="297mm"
viewBox="0 0 210 297"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="diagrammeFGmini.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="1.4810357"
inkscape:cx="413.22434"
inkscape:cy="133.35263"
inkscape:window-width="1920"
inkscape:window-height="1008"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="g1519" />
<defs
id="defs2">
<marker
style="overflow:visible"
id="TriangleStart"
refX="0"
refY="0"
orient="auto-start-reverse"
inkscape:stockid="TriangleStart"
markerWidth="5.3244081"
markerHeight="6.155385"
viewBox="0 0 5.3244081 6.1553851"
inkscape:isstock="true"
inkscape:collect="always"
preserveAspectRatio="xMidYMid">
<path
transform="scale(0.5)"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path135" />
</marker>
</defs>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g1536"
transform="translate(0,-18.885387)">
<g
id="g1654"
transform="translate(0,-1.5357037)">
<path
style="opacity:0.75462;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.17271;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleStart)"
d="m 103.04113,46.434361 c 0,0 13.32564,-3.395537 21.12908,-3.396158 7.80344,-6.21e-4 21.87109,3.396158 21.87109,3.396158"
id="path1372"
inkscape:transform-center-x="0.60034168"
inkscape:transform-center-y="1.6496774"
sodipodi:nodetypes="czc" />
<path
style="opacity:0.75462;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.17271;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleStart)"
d="m 149.94456,53.866012 c 0,0 -13.32558,3.395537 -21.12902,3.396158 -7.80344,6.21e-4 -21.87113,-3.396158 -21.87113,-3.396158"
id="path1644"
inkscape:transform-center-x="-0.60033982"
inkscape:transform-center-y="-1.6496775"
sodipodi:nodetypes="czc" />
</g>
<g
aria-label="G"
id="text1666"
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:1.296"
transform="translate(12.700002,12.700001)">
<path
d="m 116.51059,26.630018 q -0.11006,0.118534 -0.34713,0.245534 -0.23707,0.118533 -0.55033,0.220133 -0.3048,0.1016 -0.62654,0.160867 -0.32173,0.06773 -0.6096,0.06773 -0.762,0 -1.3716,-0.220133 -0.6096,-0.2286 -1.0414,-0.626534 -0.4318,-0.4064 -0.6604,-0.956734 -0.2286,-0.550333 -0.2286,-1.202267 0,-0.855133 0.254,-1.481667 0.26247,-0.635 0.70274,-1.049867 0.44873,-0.423334 1.02446,-0.626534 0.5842,-0.2032 1.2192,-0.2032 0.60114,0 1.10067,0.135467 0.49953,0.127 0.84667,0.321733 l -0.39794,1.143001 q -0.1524,-0.08467 -0.4064,-0.169334 -0.254,-0.08467 -0.51646,-0.135466 -0.26247,-0.05927 -0.46567,-0.05927 -0.508,0 -0.89747,0.127 -0.38946,0.127 -0.6604,0.381 -0.26246,0.254 -0.39793,0.635001 -0.13547,0.372533 -0.13547,0.872067 0,0.440266 0.1524,0.795867 0.1524,0.347133 0.42334,0.592666 0.2794,0.245534 0.65193,0.372534 0.381,0.127 0.8382,0.127 0.26247,0 0.4826,-0.03387 0.22013,-0.04233 0.37253,-0.127 v -0.753533 h -1.07526 v -1.185334 h 2.31986 z"
id="path539" />
</g>
<g
aria-label="F"
id="text1666-7"
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:1.296"
transform="translate(12.700002,-11.641667)">
<path
d="m 111.84546,69.042068 h 3.89467 v 1.185333 h -2.667 v 1.413934 h 2.3114 v 1.185334 h -2.3114 v 2.446868 h -1.22767 z"
id="path542" />
</g>
<g
aria-label="⊢"
transform="rotate(-90,6.3499993,-6.3499993)"
id="text374"
style="font-weight:bold;font-size:9.09966px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke:#000000;stroke-width:1.07046">
<path
d="m -50.85191,111.41901 h 0.710163 v 2.0187 h 4.293859 v 0.71017 h -4.293859 v 2.0187 h -0.710163 z"
id="path370"
style="stroke-width:0.19979;stroke-dasharray:none" />
</g>
</g>
<g
aria-label="FG ≅ Id"
id="text625"
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:0.996" />
<g
id="g1519"
transform="translate(6.3500003,2.4383222)">
<g
id="g1308-3"
transform="translate(-113.03615,-1.3329088)">
<rect
style="opacity:0.75462;fill:#8fe092;fill-opacity:1;stroke:#4d4d4d;stroke-width:1.45481;stroke-opacity:1"
id="rect234-3-67"
width="54.818588"
height="17.637238"
x="154.45401"
y="19.83519"
ry="5.128902" />
</g>
<g
aria-label="original"
id="text795"
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:0.996">
<path
d="m 53.739554,27.833134 q 0,-0.567267 0.262467,-1.016001 0.270933,-0.448733 0.753533,-0.702733 0.4826,-0.262467 1.109134,-0.262467 0.635,0 1.100667,0.262467 0.465667,0.254 0.7112,0.702733 0.254,0.448734 0.254,1.016001 0,0.567266 -0.254,1.024467 -0.245533,0.448733 -0.7112,0.7112 -0.465667,0.262467 -1.1176,0.262467 -0.609601,0 -1.092201,-0.237067 -0.474133,-0.237067 -0.745067,-0.6858 -0.270933,-0.448734 -0.270933,-1.075267 z m 1.1938,0.0085 q 0,0.287867 0.118534,0.524934 0.118533,0.2286 0.321733,0.364067 0.2032,0.135466 0.4572,0.135466 0.2794,0 0.4826,-0.135466 0.203201,-0.135467 0.313267,-0.364067 0.110067,-0.237067 0.110067,-0.524934 0,-0.296333 -0.110067,-0.524933 -0.110066,-0.2286 -0.313267,-0.364067 -0.2032,-0.135467 -0.4826,-0.135467 -0.254,0 -0.4572,0.135467 -0.2032,0.135467 -0.321733,0.364067 -0.118534,0.2286 -0.118534,0.524933 z"
id="path339" />
<path
d="m 59.928682,26.029733 0.110067,1.016 -0.0254,-0.1524 q 0.160867,-0.3302 0.440267,-0.5588 0.2794,-0.237067 0.550333,-0.364067 0.2794,-0.127 0.423334,-0.127 l -0.05927,1.185334 q -0.414867,-0.0508 -0.7112,0.135467 -0.296334,0.186266 -0.4572,0.491067 -0.160867,0.3048 -0.160867,0.626533 v 1.447801 h -1.176867 v -3.699935 z"
id="path341" />
<path
d="m 62.333215,26.029733 h 1.185334 v 3.699935 h -1.185334 z m -0.0254,-1.312334 q 0,-0.262467 0.2032,-0.4318 0.211667,-0.169334 0.448734,-0.169334 0.237067,0 0.4318,0.169334 0.2032,0.169333 0.2032,0.4318 0,0.262467 -0.2032,0.4318 -0.194733,0.160867 -0.4318,0.160867 -0.237067,0 -0.448734,-0.160867 -0.2032,-0.169333 -0.2032,-0.4318 z"
id="path343" />
<path
d="m 66.651221,31.592335 q -0.499534,0 -0.846667,-0.118533 -0.338667,-0.118534 -0.575734,-0.287867 -0.237067,-0.169333 -0.423333,-0.321734 l 0.694267,-0.8128 q 0.194733,0.1778 0.448733,0.338667 0.262467,0.169333 0.6858,0.169333 0.279401,0 0.516467,-0.1016 0.245534,-0.09313 0.389467,-0.2794 0.1524,-0.186267 0.1524,-0.465667 v -0.8128 l 0.04233,0.211667 q -0.135467,0.287867 -0.491067,0.508 -0.3556,0.211667 -0.931334,0.211667 -0.499534,0 -0.931334,-0.254 -0.423333,-0.262467 -0.677333,-0.702734 -0.254,-0.448734 -0.254,-1.016 0,-0.584201 0.270933,-1.032934 0.270933,-0.4572 0.702734,-0.719667 0.4318,-0.262467 0.9144,-0.262467 0.4826,0 0.829734,0.143934 0.3556,0.135466 0.5334,0.338666 l -0.04233,0.110067 0.127,-0.4064 h 1.0922 v 3.699935 q 0,0.541867 -0.3048,0.956733 -0.3048,0.423334 -0.8128,0.660401 -0.499534,0.245533 -1.109134,0.245533 z m -1.007534,-3.767668 q 0,0.296333 0.135467,0.5334 0.135467,0.237067 0.364067,0.372534 0.237066,0.135466 0.524933,0.135466 0.245534,0 0.4318,-0.05927 0.194734,-0.06773 0.338667,-0.186267 0.1524,-0.127 0.254,-0.313267 v -0.905934 q -0.0762,-0.186266 -0.2286,-0.313266 -0.1524,-0.135467 -0.3556,-0.2032 -0.194733,-0.0762 -0.440267,-0.0762 -0.287867,0 -0.524933,0.135466 -0.2286,0.127 -0.364067,0.3556 -0.135467,0.2286 -0.135467,0.524934 z"
id="path345" />
<path
d="m 70.097149,26.029733 h 1.185334 v 3.699935 h -1.185334 z m -0.0254,-1.312334 q 0,-0.262467 0.2032,-0.4318 0.211667,-0.169334 0.448734,-0.169334 0.237067,0 0.4318,0.169334 0.2032,0.169333 0.2032,0.4318 0,0.262467 -0.2032,0.4318 -0.194733,0.160867 -0.4318,0.160867 -0.237067,0 -0.448734,-0.160867 -0.2032,-0.169333 -0.2032,-0.4318 z"
id="path347" />
<path
d="m 73.576956,26.029733 0.09313,0.6604 -0.01693,-0.05927 q 0.194733,-0.347133 0.550333,-0.5588 0.3556,-0.220133 0.872067,-0.220133 0.524934,0 0.872067,0.313267 0.3556,0.3048 0.364067,0.795867 v 2.768601 h -1.185334 v -2.328335 q -0.0085,-0.245533 -0.135467,-0.389466 -0.118533,-0.1524 -0.4064,-0.1524 -0.270933,0 -0.474133,0.1778 -0.2032,0.1778 -0.313267,0.4826 -0.110067,0.3048 -0.110067,0.702733 v 1.507068 h -1.185334 v -3.699935 z"
id="path349" />
<path
d="m 79.088755,29.831268 q -0.516467,0 -0.9398,-0.2032 -0.414867,-0.211667 -0.6604,-0.643467 -0.245534,-0.4318 -0.245534,-1.100667 0,-0.626534 0.254,-1.083734 0.254,-0.4572 0.668867,-0.702734 0.414867,-0.254 0.880534,-0.254 0.550334,0 0.829734,0.186267 0.287866,0.1778 0.474133,0.397933 l -0.0508,0.143934 0.110067,-0.541867 h 1.100667 v 3.699935 h -1.185334 v -0.804334 l 0.09313,0.254 q -0.01693,0 -0.1016,0.1016 -0.08467,0.09313 -0.254001,0.2286 -0.160866,0.127 -0.4064,0.220134 -0.237067,0.1016 -0.567267,0.1016 z m 0.338667,-0.965201 q 0.211667,0 0.381,-0.05927 0.169334,-0.06773 0.296334,-0.186267 0.127,-0.127 0.220133,-0.313267 v -0.905934 q -0.06773,-0.186266 -0.2032,-0.313266 -0.135467,-0.135467 -0.321733,-0.2032 -0.186267,-0.0762 -0.414867,-0.0762 -0.254,0 -0.474134,0.135466 -0.211666,0.127 -0.338667,0.3556 -0.127,0.2286 -0.127,0.524934 0,0.296333 0.135467,0.5334 0.135467,0.237067 0.3556,0.372534 0.2286,0.135466 0.491067,0.135466 z"
id="path351" />
<path
d="m 82.729428,23.049465 h 1.185334 v 6.680203 h -1.185334 z"
id="path353" />
</g>
</g>
<g
id="g1525"
transform="translate(-1.0583333)">
<g
id="g1308"
transform="translate(-3.1325529,1.1054134)">
<rect
style="opacity:0.75462;fill:#7bf8ff;fill-opacity:1;stroke:#4d4d4d;stroke-width:1.45481;stroke-opacity:1"
id="rect234-3"
width="54.818588"
height="17.637238"
x="154.45401"
y="19.83519"
ry="5.128902" />
</g>
<g
aria-label="transformed"
id="text853"
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:0.996">
<path
d="m 154.9521,27.722987 h 1.18533 v 1.608668 h 0.89747 v 0.922867 h -0.89747 v 2.794001 h -1.18533 v -2.794001 h -0.57573 v -0.922867 h 0.57573 z"
id="path316" />
<path
d="m 159.00763,29.348588 0.11006,1.016001 -0.0254,-0.152401 q 0.16087,-0.3302 0.44027,-0.5588 0.2794,-0.237066 0.55034,-0.364067 0.2794,-0.127 0.42333,-0.127 l -0.0593,1.185334 q -0.41486,-0.0508 -0.7112,0.135467 -0.29633,0.186267 -0.4572,0.491067 -0.16087,0.3048 -0.16087,0.626533 v 1.447801 h -1.17686 v -3.699935 z"
id="path318" />
<path
d="m 162.84303,33.150123 q -0.51646,0 -0.9398,-0.2032 -0.41486,-0.211667 -0.6604,-0.643467 -0.24553,-0.4318 -0.24553,-1.100667 0,-0.626534 0.254,-1.083734 0.254,-0.4572 0.66887,-0.702733 0.41486,-0.254001 0.88053,-0.254001 0.55033,0 0.82973,0.186267 0.28787,0.1778 0.47414,0.397934 l -0.0508,0.143933 0.11006,-0.541867 h 1.10067 v 3.699935 h -1.18533 v -0.804334 l 0.0931,0.254 q -0.0169,0 -0.1016,0.1016 -0.0847,0.09313 -0.254,0.228601 -0.16087,0.127 -0.4064,0.220133 -0.23707,0.1016 -0.56727,0.1016 z m 0.33867,-0.9652 q 0.21167,0 0.381,-0.05927 0.16933,-0.06773 0.29633,-0.186267 0.127,-0.127 0.22014,-0.313267 v -0.905933 q -0.0677,-0.186267 -0.2032,-0.313267 -0.13547,-0.135467 -0.32174,-0.2032 -0.18626,-0.0762 -0.41486,-0.0762 -0.254,0 -0.47414,0.135467 -0.21166,0.127 -0.33866,0.3556 -0.127,0.2286 -0.127,0.524933 0,0.296334 0.13546,0.5334 0.13547,0.237067 0.3556,0.372534 0.2286,0.135467 0.49107,0.135467 z"
id="path320" />
<path
d="m 167.55897,29.348588 0.0931,0.6604 -0.0169,-0.05927 q 0.19474,-0.347134 0.55034,-0.558801 0.3556,-0.220133 0.87206,-0.220133 0.52494,0 0.87207,0.313267 0.3556,0.3048 0.36407,0.795867 v 2.768601 h -1.18534 v -2.328334 q -0.008,-0.245534 -0.13546,-0.389467 -0.11854,-0.1524 -0.4064,-0.1524 -0.27094,0 -0.47414,0.1778 -0.2032,0.1778 -0.31326,0.4826 -0.11007,0.3048 -0.11007,0.702734 v 1.507067 h -1.18534 v -3.699935 z"
id="path322" />
<path
d="m 172.71517,33.124723 q -0.4572,0 -0.85513,-0.160867 -0.38947,-0.160866 -0.6604,-0.448733 l 0.49107,-0.651934 q 0.27093,0.245534 0.49953,0.3556 0.23707,0.1016 0.42333,0.1016 0.14394,0 0.254,-0.0254 0.11854,-0.03387 0.18627,-0.09313 0.0677,-0.06773 0.0677,-0.169333 0,-0.143934 -0.11853,-0.228601 -0.11007,-0.08467 -0.28787,-0.135466 -0.1778,-0.05927 -0.381,-0.118534 -0.508,-0.160866 -0.7366,-0.465666 -0.22013,-0.313267 -0.22013,-0.677334 0,-0.2794 0.14393,-0.5588 0.1524,-0.287867 0.47414,-0.474134 0.3302,-0.194733 0.84666,-0.194733 0.46567,0 0.7874,0.09313 0.32174,0.09313 0.6096,0.3048 l -0.44873,0.694267 q -0.16087,-0.127 -0.36407,-0.211667 -0.19473,-0.09313 -0.36406,-0.1016 -0.1524,-0.0085 -0.26247,0.03387 -0.1016,0.04233 -0.16087,0.110067 -0.0593,0.06773 -0.0593,0.143933 -0.008,0.160867 0.11853,0.254 0.13547,0.09313 0.33867,0.143934 0.2032,0.0508 0.39793,0.118533 0.27093,0.08467 0.46567,0.2286 0.19473,0.143934 0.29633,0.347134 0.11007,0.194733 0.11007,0.474133 0,0.338667 -0.1778,0.643467 -0.16934,0.296333 -0.52494,0.4826 -0.34713,0.186267 -0.889,0.186267 z"
id="path324" />
<path
d="m 175.65311,33.048523 v -2.667001 h -0.62653 v -1.049867 h 0.62653 v -1.286934 q 0,-0.728134 0.41487,-1.185334 0.42333,-0.465667 1.2192,-0.465667 0.23707,0 0.52493,0.0762 0.29634,0.06773 0.51647,0.2286 l -0.49953,0.855134 q -0.0847,-0.110067 -0.2032,-0.143933 -0.11007,-0.04233 -0.21167,-0.04233 -0.254,0 -0.41487,0.169334 -0.16086,0.169333 -0.16086,0.541867 v 1.253067 h 1.1176 v 1.049867 h -1.1176 v 2.667001 z"
id="path326" />
<path
d="m 178.43865,31.151989 q 0,-0.567267 0.26247,-1.016001 0.27093,-0.448733 0.75353,-0.702733 0.4826,-0.262467 1.10914,-0.262467 0.635,0 1.10066,0.262467 0.46567,0.254 0.7112,0.702733 0.254,0.448734 0.254,1.016001 0,0.567267 -0.254,1.024467 -0.24553,0.448733 -0.7112,0.7112 -0.46566,0.262467 -1.1176,0.262467 -0.6096,0 -1.0922,-0.237067 -0.47413,-0.237067 -0.74506,-0.6858 -0.27094,-0.448734 -0.27094,-1.075267 z m 1.1938,0.0085 q 0,0.287866 0.11854,0.524933 0.11853,0.2286 0.32173,0.364067 0.2032,0.135467 0.4572,0.135467 0.2794,0 0.4826,-0.135467 0.2032,-0.135467 0.31327,-0.364067 0.11006,-0.237067 0.11006,-0.524933 0,-0.296334 -0.11006,-0.524934 -0.11007,-0.2286 -0.31327,-0.364067 -0.2032,-0.135467 -0.4826,-0.135467 -0.254,0 -0.4572,0.135467 -0.2032,0.135467 -0.32173,0.364067 -0.11854,0.2286 -0.11854,0.524934 z"
id="path328" />
<path
d="m 184.62778,29.348588 0.11007,1.016001 -0.0254,-0.152401 q 0.16086,-0.3302 0.44026,-0.5588 0.2794,-0.237066 0.55034,-0.364067 0.2794,-0.127 0.42333,-0.127 l -0.0593,1.185334 q -0.41486,-0.0508 -0.7112,0.135467 -0.29633,0.186267 -0.4572,0.491067 -0.16086,0.3048 -0.16086,0.626533 v 1.447801 h -1.17687 v -3.699935 z"
id="path330" />
<path
d="m 188.10758,29.348588 0.0931,0.651934 -0.0169,-0.0508 q 0.22013,-0.372534 0.55033,-0.575734 0.3302,-0.211667 0.79587,-0.211667 0.3048,0 0.5334,0.08467 0.23707,0.08467 0.39793,0.254 0.16087,0.160867 0.22014,0.423334 l -0.0423,0.0085 q 0.23707,-0.347133 0.56727,-0.5588 0.33867,-0.211667 0.70273,-0.211667 0.55034,0 0.87207,0.313267 0.3302,0.3048 0.33867,0.795867 v 2.777068 h -1.17687 v -2.286001 q -0.008,-0.245533 -0.0762,-0.397933 -0.0677,-0.160867 -0.31327,-0.177801 -0.28786,0 -0.49106,0.203201 -0.19474,0.194733 -0.29634,0.508 -0.0931,0.3048 -0.0931,0.635 v 1.515534 h -1.18533 v -2.286001 q -0.008,-0.245533 -0.0931,-0.397933 -0.0762,-0.160867 -0.32173,-0.177801 -0.2794,0 -0.47413,0.203201 -0.18627,0.194733 -0.28787,0.499533 -0.0931,0.3048 -0.0931,0.626534 v 1.532467 h -1.18534 v -3.699935 z"
id="path332" />
<path
d="m 196.15939,33.150123 q -0.67733,0 -1.15147,-0.254 -0.46566,-0.254 -0.7112,-0.702734 -0.24553,-0.448733 -0.24553,-1.032933 0,-0.558801 0.28787,-1.007534 0.28786,-0.448734 0.77046,-0.7112 0.4826,-0.270934 1.07527,-0.270934 0.79587,0 1.30387,0.465667 0.51646,0.4572 0.66886,1.329267 l -2.87866,0.9144 -0.26247,-0.643466 2.0828,-0.702734 -0.24553,0.110067 q -0.0677,-0.220134 -0.24554,-0.381 -0.16933,-0.169334 -0.51646,-0.169334 -0.26247,0 -0.46567,0.127 -0.19473,0.118534 -0.3048,0.347134 -0.1016,0.220133 -0.1016,0.524933 0,0.347134 0.127,0.5842 0.127,0.2286 0.34713,0.347134 0.22014,0.118533 0.49107,0.118533 0.19473,0 0.37253,-0.06773 0.18627,-0.06773 0.36407,-0.1778 l 0.52493,0.880534 q -0.29633,0.169333 -0.64346,0.270933 -0.33867,0.1016 -0.64347,0.1016 z"
id="path334" />
<path
d="m 200.52819,33.150123 q -0.51647,0 -0.92287,-0.237067 -0.4064,-0.245533 -0.64347,-0.702733 -0.2286,-0.457201 -0.2286,-1.083734 0,-0.626534 0.254,-1.066801 0.254,-0.440266 0.69427,-0.668867 0.44027,-0.2286 0.99907,-0.2286 0.3556,0 0.67733,0.110067 0.3302,0.110067 0.55033,0.338667 v 0.372533 -3.615268 h 1.17687 v 6.680203 h -1.18533 v -0.719667 l 0.0931,0.254 q -0.28787,0.237067 -0.64347,0.4064 -0.3556,0.160867 -0.82126,0.160867 z m 0.38946,-0.999067 q 0.23707,0 0.41487,-0.05927 0.18627,-0.06773 0.32173,-0.186267 0.14394,-0.127 0.24554,-0.313266 v -0.905934 q -0.0677,-0.186267 -0.21167,-0.313267 -0.13547,-0.135467 -0.33867,-0.2032 -0.19473,-0.0762 -0.4318,-0.0762 -0.26246,0 -0.49106,0.135467 -0.22014,0.127 -0.3556,0.3556 -0.13547,0.2286 -0.13547,0.524934 0,0.296333 0.13547,0.5334 0.13546,0.237066 0.3556,0.372533 0.2286,0.135467 0.49106,0.135467 z"
id="path336" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,190 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="210mm"
height="297mm"
viewBox="0 0 210 297"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="diagrammeFmini.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="1.4810357"
inkscape:cx="413.22434"
inkscape:cy="134.02783"
inkscape:window-width="1920"
inkscape:window-height="1008"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="g1536" />
<defs
id="defs2">
<marker
style="overflow:visible"
id="TriangleStart"
refX="0"
refY="0"
orient="auto-start-reverse"
inkscape:stockid="TriangleStart"
markerWidth="5.3244081"
markerHeight="6.155385"
viewBox="0 0 5.3244081 6.1553851"
inkscape:isstock="true"
inkscape:collect="always"
preserveAspectRatio="xMidYMid">
<path
transform="scale(0.5)"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path135" />
</marker>
</defs>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g1536"
transform="translate(0,-18.885387)">
<g
id="g1654"
transform="translate(0,-1.5357037)">
<path
style="opacity:0.75462;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.17271;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleStart)"
d="m 149.94456,53.866012 c 0,0 -13.32558,3.395537 -21.12902,3.396158 -7.80344,6.21e-4 -21.87113,-3.396158 -21.87113,-3.396158"
id="path1644"
inkscape:transform-center-x="-0.60033982"
inkscape:transform-center-y="-1.6496775"
sodipodi:nodetypes="czc" />
</g>
<g
aria-label="F"
id="text1666-7"
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:1.296"
transform="translate(12.700002,-11.641667)">
<path
d="m 111.84546,69.042068 h 3.89467 v 1.185333 h -2.667 v 1.413934 h 2.3114 v 1.185334 h -2.3114 v 2.446868 h -1.22767 z"
id="path542" />
</g>
</g>
<g
aria-label="FG ≅ Id"
id="text625"
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:0.996" />
<g
id="g1519"
transform="translate(6.3500003,2.4383222)">
<g
id="g1308-3"
transform="translate(-113.03615,-1.3329088)">
<rect
style="opacity:0.75462;fill:#8fe092;fill-opacity:1;stroke:#4d4d4d;stroke-width:1.45481;stroke-opacity:1"
id="rect234-3-67"
width="54.818588"
height="17.637238"
x="154.45401"
y="19.83519"
ry="5.128902" />
</g>
<g
aria-label="original"
id="text795"
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:0.996">
<path
d="m 53.739554,27.833134 q 0,-0.567267 0.262467,-1.016001 0.270933,-0.448733 0.753533,-0.702733 0.4826,-0.262467 1.109134,-0.262467 0.635,0 1.100667,0.262467 0.465667,0.254 0.7112,0.702733 0.254,0.448734 0.254,1.016001 0,0.567266 -0.254,1.024467 -0.245533,0.448733 -0.7112,0.7112 -0.465667,0.262467 -1.1176,0.262467 -0.609601,0 -1.092201,-0.237067 -0.474133,-0.237067 -0.745067,-0.6858 -0.270933,-0.448734 -0.270933,-1.075267 z m 1.1938,0.0085 q 0,0.287867 0.118534,0.524934 0.118533,0.2286 0.321733,0.364067 0.2032,0.135466 0.4572,0.135466 0.2794,0 0.4826,-0.135466 0.203201,-0.135467 0.313267,-0.364067 0.110067,-0.237067 0.110067,-0.524934 0,-0.296333 -0.110067,-0.524933 -0.110066,-0.2286 -0.313267,-0.364067 -0.2032,-0.135467 -0.4826,-0.135467 -0.254,0 -0.4572,0.135467 -0.2032,0.135467 -0.321733,0.364067 -0.118534,0.2286 -0.118534,0.524933 z"
id="path339" />
<path
d="m 59.928682,26.029733 0.110067,1.016 -0.0254,-0.1524 q 0.160867,-0.3302 0.440267,-0.5588 0.2794,-0.237067 0.550333,-0.364067 0.2794,-0.127 0.423334,-0.127 l -0.05927,1.185334 q -0.414867,-0.0508 -0.7112,0.135467 -0.296334,0.186266 -0.4572,0.491067 -0.160867,0.3048 -0.160867,0.626533 v 1.447801 h -1.176867 v -3.699935 z"
id="path341" />
<path
d="m 62.333215,26.029733 h 1.185334 v 3.699935 h -1.185334 z m -0.0254,-1.312334 q 0,-0.262467 0.2032,-0.4318 0.211667,-0.169334 0.448734,-0.169334 0.237067,0 0.4318,0.169334 0.2032,0.169333 0.2032,0.4318 0,0.262467 -0.2032,0.4318 -0.194733,0.160867 -0.4318,0.160867 -0.237067,0 -0.448734,-0.160867 -0.2032,-0.169333 -0.2032,-0.4318 z"
id="path343" />
<path
d="m 66.651221,31.592335 q -0.499534,0 -0.846667,-0.118533 -0.338667,-0.118534 -0.575734,-0.287867 -0.237067,-0.169333 -0.423333,-0.321734 l 0.694267,-0.8128 q 0.194733,0.1778 0.448733,0.338667 0.262467,0.169333 0.6858,0.169333 0.279401,0 0.516467,-0.1016 0.245534,-0.09313 0.389467,-0.2794 0.1524,-0.186267 0.1524,-0.465667 v -0.8128 l 0.04233,0.211667 q -0.135467,0.287867 -0.491067,0.508 -0.3556,0.211667 -0.931334,0.211667 -0.499534,0 -0.931334,-0.254 -0.423333,-0.262467 -0.677333,-0.702734 -0.254,-0.448734 -0.254,-1.016 0,-0.584201 0.270933,-1.032934 0.270933,-0.4572 0.702734,-0.719667 0.4318,-0.262467 0.9144,-0.262467 0.4826,0 0.829734,0.143934 0.3556,0.135466 0.5334,0.338666 l -0.04233,0.110067 0.127,-0.4064 h 1.0922 v 3.699935 q 0,0.541867 -0.3048,0.956733 -0.3048,0.423334 -0.8128,0.660401 -0.499534,0.245533 -1.109134,0.245533 z m -1.007534,-3.767668 q 0,0.296333 0.135467,0.5334 0.135467,0.237067 0.364067,0.372534 0.237066,0.135466 0.524933,0.135466 0.245534,0 0.4318,-0.05927 0.194734,-0.06773 0.338667,-0.186267 0.1524,-0.127 0.254,-0.313267 v -0.905934 q -0.0762,-0.186266 -0.2286,-0.313266 -0.1524,-0.135467 -0.3556,-0.2032 -0.194733,-0.0762 -0.440267,-0.0762 -0.287867,0 -0.524933,0.135466 -0.2286,0.127 -0.364067,0.3556 -0.135467,0.2286 -0.135467,0.524934 z"
id="path345" />
<path
d="m 70.097149,26.029733 h 1.185334 v 3.699935 h -1.185334 z m -0.0254,-1.312334 q 0,-0.262467 0.2032,-0.4318 0.211667,-0.169334 0.448734,-0.169334 0.237067,0 0.4318,0.169334 0.2032,0.169333 0.2032,0.4318 0,0.262467 -0.2032,0.4318 -0.194733,0.160867 -0.4318,0.160867 -0.237067,0 -0.448734,-0.160867 -0.2032,-0.169333 -0.2032,-0.4318 z"
id="path347" />
<path
d="m 73.576956,26.029733 0.09313,0.6604 -0.01693,-0.05927 q 0.194733,-0.347133 0.550333,-0.5588 0.3556,-0.220133 0.872067,-0.220133 0.524934,0 0.872067,0.313267 0.3556,0.3048 0.364067,0.795867 v 2.768601 h -1.185334 v -2.328335 q -0.0085,-0.245533 -0.135467,-0.389466 -0.118533,-0.1524 -0.4064,-0.1524 -0.270933,0 -0.474133,0.1778 -0.2032,0.1778 -0.313267,0.4826 -0.110067,0.3048 -0.110067,0.702733 v 1.507068 h -1.185334 v -3.699935 z"
id="path349" />
<path
d="m 79.088755,29.831268 q -0.516467,0 -0.9398,-0.2032 -0.414867,-0.211667 -0.6604,-0.643467 -0.245534,-0.4318 -0.245534,-1.100667 0,-0.626534 0.254,-1.083734 0.254,-0.4572 0.668867,-0.702734 0.414867,-0.254 0.880534,-0.254 0.550334,0 0.829734,0.186267 0.287866,0.1778 0.474133,0.397933 l -0.0508,0.143934 0.110067,-0.541867 h 1.100667 v 3.699935 h -1.185334 v -0.804334 l 0.09313,0.254 q -0.01693,0 -0.1016,0.1016 -0.08467,0.09313 -0.254001,0.2286 -0.160866,0.127 -0.4064,0.220134 -0.237067,0.1016 -0.567267,0.1016 z m 0.338667,-0.965201 q 0.211667,0 0.381,-0.05927 0.169334,-0.06773 0.296334,-0.186267 0.127,-0.127 0.220133,-0.313267 v -0.905934 q -0.06773,-0.186266 -0.2032,-0.313266 -0.135467,-0.135467 -0.321733,-0.2032 -0.186267,-0.0762 -0.414867,-0.0762 -0.254,0 -0.474134,0.135466 -0.211666,0.127 -0.338667,0.3556 -0.127,0.2286 -0.127,0.524934 0,0.296333 0.135467,0.5334 0.135467,0.237067 0.3556,0.372534 0.2286,0.135466 0.491067,0.135466 z"
id="path351" />
<path
d="m 82.729428,23.049465 h 1.185334 v 6.680203 h -1.185334 z"
id="path353" />
</g>
</g>
<g
id="g1525"
transform="translate(-1.0583333)">
<g
id="g1308"
transform="translate(-3.1325529,1.1054134)">
<rect
style="opacity:0.75462;fill:#7bf8ff;fill-opacity:1;stroke:#4d4d4d;stroke-width:1.45481;stroke-opacity:1"
id="rect234-3"
width="54.818588"
height="17.637238"
x="154.45401"
y="19.83519"
ry="5.128902" />
</g>
<g
aria-label="transformed"
id="text853"
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:0.996">
<path
d="m 154.9521,27.722987 h 1.18533 v 1.608668 h 0.89747 v 0.922867 h -0.89747 v 2.794001 h -1.18533 v -2.794001 h -0.57573 v -0.922867 h 0.57573 z"
id="path316" />
<path
d="m 159.00763,29.348588 0.11006,1.016001 -0.0254,-0.152401 q 0.16087,-0.3302 0.44027,-0.5588 0.2794,-0.237066 0.55034,-0.364067 0.2794,-0.127 0.42333,-0.127 l -0.0593,1.185334 q -0.41486,-0.0508 -0.7112,0.135467 -0.29633,0.186267 -0.4572,0.491067 -0.16087,0.3048 -0.16087,0.626533 v 1.447801 h -1.17686 v -3.699935 z"
id="path318" />
<path
d="m 162.84303,33.150123 q -0.51646,0 -0.9398,-0.2032 -0.41486,-0.211667 -0.6604,-0.643467 -0.24553,-0.4318 -0.24553,-1.100667 0,-0.626534 0.254,-1.083734 0.254,-0.4572 0.66887,-0.702733 0.41486,-0.254001 0.88053,-0.254001 0.55033,0 0.82973,0.186267 0.28787,0.1778 0.47414,0.397934 l -0.0508,0.143933 0.11006,-0.541867 h 1.10067 v 3.699935 h -1.18533 v -0.804334 l 0.0931,0.254 q -0.0169,0 -0.1016,0.1016 -0.0847,0.09313 -0.254,0.228601 -0.16087,0.127 -0.4064,0.220133 -0.23707,0.1016 -0.56727,0.1016 z m 0.33867,-0.9652 q 0.21167,0 0.381,-0.05927 0.16933,-0.06773 0.29633,-0.186267 0.127,-0.127 0.22014,-0.313267 v -0.905933 q -0.0677,-0.186267 -0.2032,-0.313267 -0.13547,-0.135467 -0.32174,-0.2032 -0.18626,-0.0762 -0.41486,-0.0762 -0.254,0 -0.47414,0.135467 -0.21166,0.127 -0.33866,0.3556 -0.127,0.2286 -0.127,0.524933 0,0.296334 0.13546,0.5334 0.13547,0.237067 0.3556,0.372534 0.2286,0.135467 0.49107,0.135467 z"
id="path320" />
<path
d="m 167.55897,29.348588 0.0931,0.6604 -0.0169,-0.05927 q 0.19474,-0.347134 0.55034,-0.558801 0.3556,-0.220133 0.87206,-0.220133 0.52494,0 0.87207,0.313267 0.3556,0.3048 0.36407,0.795867 v 2.768601 h -1.18534 v -2.328334 q -0.008,-0.245534 -0.13546,-0.389467 -0.11854,-0.1524 -0.4064,-0.1524 -0.27094,0 -0.47414,0.1778 -0.2032,0.1778 -0.31326,0.4826 -0.11007,0.3048 -0.11007,0.702734 v 1.507067 h -1.18534 v -3.699935 z"
id="path322" />
<path
d="m 172.71517,33.124723 q -0.4572,0 -0.85513,-0.160867 -0.38947,-0.160866 -0.6604,-0.448733 l 0.49107,-0.651934 q 0.27093,0.245534 0.49953,0.3556 0.23707,0.1016 0.42333,0.1016 0.14394,0 0.254,-0.0254 0.11854,-0.03387 0.18627,-0.09313 0.0677,-0.06773 0.0677,-0.169333 0,-0.143934 -0.11853,-0.228601 -0.11007,-0.08467 -0.28787,-0.135466 -0.1778,-0.05927 -0.381,-0.118534 -0.508,-0.160866 -0.7366,-0.465666 -0.22013,-0.313267 -0.22013,-0.677334 0,-0.2794 0.14393,-0.5588 0.1524,-0.287867 0.47414,-0.474134 0.3302,-0.194733 0.84666,-0.194733 0.46567,0 0.7874,0.09313 0.32174,0.09313 0.6096,0.3048 l -0.44873,0.694267 q -0.16087,-0.127 -0.36407,-0.211667 -0.19473,-0.09313 -0.36406,-0.1016 -0.1524,-0.0085 -0.26247,0.03387 -0.1016,0.04233 -0.16087,0.110067 -0.0593,0.06773 -0.0593,0.143933 -0.008,0.160867 0.11853,0.254 0.13547,0.09313 0.33867,0.143934 0.2032,0.0508 0.39793,0.118533 0.27093,0.08467 0.46567,0.2286 0.19473,0.143934 0.29633,0.347134 0.11007,0.194733 0.11007,0.474133 0,0.338667 -0.1778,0.643467 -0.16934,0.296333 -0.52494,0.4826 -0.34713,0.186267 -0.889,0.186267 z"
id="path324" />
<path
d="m 175.65311,33.048523 v -2.667001 h -0.62653 v -1.049867 h 0.62653 v -1.286934 q 0,-0.728134 0.41487,-1.185334 0.42333,-0.465667 1.2192,-0.465667 0.23707,0 0.52493,0.0762 0.29634,0.06773 0.51647,0.2286 l -0.49953,0.855134 q -0.0847,-0.110067 -0.2032,-0.143933 -0.11007,-0.04233 -0.21167,-0.04233 -0.254,0 -0.41487,0.169334 -0.16086,0.169333 -0.16086,0.541867 v 1.253067 h 1.1176 v 1.049867 h -1.1176 v 2.667001 z"
id="path326" />
<path
d="m 178.43865,31.151989 q 0,-0.567267 0.26247,-1.016001 0.27093,-0.448733 0.75353,-0.702733 0.4826,-0.262467 1.10914,-0.262467 0.635,0 1.10066,0.262467 0.46567,0.254 0.7112,0.702733 0.254,0.448734 0.254,1.016001 0,0.567267 -0.254,1.024467 -0.24553,0.448733 -0.7112,0.7112 -0.46566,0.262467 -1.1176,0.262467 -0.6096,0 -1.0922,-0.237067 -0.47413,-0.237067 -0.74506,-0.6858 -0.27094,-0.448734 -0.27094,-1.075267 z m 1.1938,0.0085 q 0,0.287866 0.11854,0.524933 0.11853,0.2286 0.32173,0.364067 0.2032,0.135467 0.4572,0.135467 0.2794,0 0.4826,-0.135467 0.2032,-0.135467 0.31327,-0.364067 0.11006,-0.237067 0.11006,-0.524933 0,-0.296334 -0.11006,-0.524934 -0.11007,-0.2286 -0.31327,-0.364067 -0.2032,-0.135467 -0.4826,-0.135467 -0.254,0 -0.4572,0.135467 -0.2032,0.135467 -0.32173,0.364067 -0.11854,0.2286 -0.11854,0.524934 z"
id="path328" />
<path
d="m 184.62778,29.348588 0.11007,1.016001 -0.0254,-0.152401 q 0.16086,-0.3302 0.44026,-0.5588 0.2794,-0.237066 0.55034,-0.364067 0.2794,-0.127 0.42333,-0.127 l -0.0593,1.185334 q -0.41486,-0.0508 -0.7112,0.135467 -0.29633,0.186267 -0.4572,0.491067 -0.16086,0.3048 -0.16086,0.626533 v 1.447801 h -1.17687 v -3.699935 z"
id="path330" />
<path
d="m 188.10758,29.348588 0.0931,0.651934 -0.0169,-0.0508 q 0.22013,-0.372534 0.55033,-0.575734 0.3302,-0.211667 0.79587,-0.211667 0.3048,0 0.5334,0.08467 0.23707,0.08467 0.39793,0.254 0.16087,0.160867 0.22014,0.423334 l -0.0423,0.0085 q 0.23707,-0.347133 0.56727,-0.5588 0.33867,-0.211667 0.70273,-0.211667 0.55034,0 0.87207,0.313267 0.3302,0.3048 0.33867,0.795867 v 2.777068 h -1.17687 v -2.286001 q -0.008,-0.245533 -0.0762,-0.397933 -0.0677,-0.160867 -0.31327,-0.177801 -0.28786,0 -0.49106,0.203201 -0.19474,0.194733 -0.29634,0.508 -0.0931,0.3048 -0.0931,0.635 v 1.515534 h -1.18533 v -2.286001 q -0.008,-0.245533 -0.0931,-0.397933 -0.0762,-0.160867 -0.32173,-0.177801 -0.2794,0 -0.47413,0.203201 -0.18627,0.194733 -0.28787,0.499533 -0.0931,0.3048 -0.0931,0.626534 v 1.532467 h -1.18534 v -3.699935 z"
id="path332" />
<path
d="m 196.15939,33.150123 q -0.67733,0 -1.15147,-0.254 -0.46566,-0.254 -0.7112,-0.702734 -0.24553,-0.448733 -0.24553,-1.032933 0,-0.558801 0.28787,-1.007534 0.28786,-0.448734 0.77046,-0.7112 0.4826,-0.270934 1.07527,-0.270934 0.79587,0 1.30387,0.465667 0.51646,0.4572 0.66886,1.329267 l -2.87866,0.9144 -0.26247,-0.643466 2.0828,-0.702734 -0.24553,0.110067 q -0.0677,-0.220134 -0.24554,-0.381 -0.16933,-0.169334 -0.51646,-0.169334 -0.26247,0 -0.46567,0.127 -0.19473,0.118534 -0.3048,0.347134 -0.1016,0.220133 -0.1016,0.524933 0,0.347134 0.127,0.5842 0.127,0.2286 0.34713,0.347134 0.22014,0.118533 0.49107,0.118533 0.19473,0 0.37253,-0.06773 0.18627,-0.06773 0.36407,-0.1778 l 0.52493,0.880534 q -0.29633,0.169333 -0.64346,0.270933 -0.33867,0.1016 -0.64347,0.1016 z"
id="path334" />
<path
d="m 200.52819,33.150123 q -0.51647,0 -0.92287,-0.237067 -0.4064,-0.245533 -0.64347,-0.702733 -0.2286,-0.457201 -0.2286,-1.083734 0,-0.626534 0.254,-1.066801 0.254,-0.440266 0.69427,-0.668867 0.44027,-0.2286 0.99907,-0.2286 0.3556,0 0.67733,0.110067 0.3302,0.110067 0.55033,0.338667 v 0.372533 -3.615268 h 1.17687 v 6.680203 h -1.18533 v -0.719667 l 0.0931,0.254 q -0.28787,0.237067 -0.64347,0.4064 -0.3556,0.160867 -0.82126,0.160867 z m 0.38946,-0.999067 q 0.23707,0 0.41487,-0.05927 0.18627,-0.06773 0.32173,-0.186267 0.14394,-0.127 0.24554,-0.313266 v -0.905934 q -0.0677,-0.186267 -0.21167,-0.313267 -0.13547,-0.135467 -0.33867,-0.2032 -0.19473,-0.0762 -0.4318,-0.0762 -0.26246,0 -0.49106,0.135467 -0.22014,0.127 -0.3556,0.3556 -0.13547,0.2286 -0.13547,0.524934 0,0.296333 0.13547,0.5334 0.13546,0.237066 0.3556,0.372533 0.2286,0.135467 0.49106,0.135467 z"
id="path336" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1,190 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="210mm"
height="297mm"
viewBox="0 0 210 297"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="diagrammeGmini.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="1.4810357"
inkscape:cx="413.22434"
inkscape:cy="134.02783"
inkscape:window-width="1920"
inkscape:window-height="1008"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="g1654" />
<defs
id="defs2">
<marker
style="overflow:visible"
id="TriangleStart"
refX="0"
refY="0"
orient="auto-start-reverse"
inkscape:stockid="TriangleStart"
markerWidth="5.3244081"
markerHeight="6.155385"
viewBox="0 0 5.3244081 6.1553851"
inkscape:isstock="true"
inkscape:collect="always"
preserveAspectRatio="xMidYMid">
<path
transform="scale(0.5)"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path135" />
</marker>
</defs>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g1536"
transform="translate(0,-18.885387)">
<g
id="g1654"
transform="translate(0,-1.5357037)">
<path
style="opacity:0.75462;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.17271;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleStart)"
d="m 103.04113,46.434361 c 0,0 13.32564,-3.395537 21.12908,-3.396158 7.80344,-6.21e-4 21.87109,3.396158 21.87109,3.396158"
id="path1372"
inkscape:transform-center-x="0.60034168"
inkscape:transform-center-y="1.6496774"
sodipodi:nodetypes="czc" />
</g>
<g
aria-label="G"
id="text1666"
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:1.296"
transform="translate(12.700002,12.700001)">
<path
d="m 116.51059,26.630018 q -0.11006,0.118534 -0.34713,0.245534 -0.23707,0.118533 -0.55033,0.220133 -0.3048,0.1016 -0.62654,0.160867 -0.32173,0.06773 -0.6096,0.06773 -0.762,0 -1.3716,-0.220133 -0.6096,-0.2286 -1.0414,-0.626534 -0.4318,-0.4064 -0.6604,-0.956734 -0.2286,-0.550333 -0.2286,-1.202267 0,-0.855133 0.254,-1.481667 0.26247,-0.635 0.70274,-1.049867 0.44873,-0.423334 1.02446,-0.626534 0.5842,-0.2032 1.2192,-0.2032 0.60114,0 1.10067,0.135467 0.49953,0.127 0.84667,0.321733 l -0.39794,1.143001 q -0.1524,-0.08467 -0.4064,-0.169334 -0.254,-0.08467 -0.51646,-0.135466 -0.26247,-0.05927 -0.46567,-0.05927 -0.508,0 -0.89747,0.127 -0.38946,0.127 -0.6604,0.381 -0.26246,0.254 -0.39793,0.635001 -0.13547,0.372533 -0.13547,0.872067 0,0.440266 0.1524,0.795867 0.1524,0.347133 0.42334,0.592666 0.2794,0.245534 0.65193,0.372534 0.381,0.127 0.8382,0.127 0.26247,0 0.4826,-0.03387 0.22013,-0.04233 0.37253,-0.127 v -0.753533 h -1.07526 v -1.185334 h 2.31986 z"
id="path539" />
</g>
</g>
<g
aria-label="FG ≅ Id"
id="text625"
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:0.996" />
<g
id="g1519"
transform="translate(6.3500003,2.4383222)">
<g
id="g1308-3"
transform="translate(-113.03615,-1.3329088)">
<rect
style="opacity:0.75462;fill:#8fe092;fill-opacity:1;stroke:#4d4d4d;stroke-width:1.45481;stroke-opacity:1"
id="rect234-3-67"
width="54.818588"
height="17.637238"
x="154.45401"
y="19.83519"
ry="5.128902" />
</g>
<g
aria-label="original"
id="text795"
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:0.996">
<path
d="m 53.739554,27.833134 q 0,-0.567267 0.262467,-1.016001 0.270933,-0.448733 0.753533,-0.702733 0.4826,-0.262467 1.109134,-0.262467 0.635,0 1.100667,0.262467 0.465667,0.254 0.7112,0.702733 0.254,0.448734 0.254,1.016001 0,0.567266 -0.254,1.024467 -0.245533,0.448733 -0.7112,0.7112 -0.465667,0.262467 -1.1176,0.262467 -0.609601,0 -1.092201,-0.237067 -0.474133,-0.237067 -0.745067,-0.6858 -0.270933,-0.448734 -0.270933,-1.075267 z m 1.1938,0.0085 q 0,0.287867 0.118534,0.524934 0.118533,0.2286 0.321733,0.364067 0.2032,0.135466 0.4572,0.135466 0.2794,0 0.4826,-0.135466 0.203201,-0.135467 0.313267,-0.364067 0.110067,-0.237067 0.110067,-0.524934 0,-0.296333 -0.110067,-0.524933 -0.110066,-0.2286 -0.313267,-0.364067 -0.2032,-0.135467 -0.4826,-0.135467 -0.254,0 -0.4572,0.135467 -0.2032,0.135467 -0.321733,0.364067 -0.118534,0.2286 -0.118534,0.524933 z"
id="path339" />
<path
d="m 59.928682,26.029733 0.110067,1.016 -0.0254,-0.1524 q 0.160867,-0.3302 0.440267,-0.5588 0.2794,-0.237067 0.550333,-0.364067 0.2794,-0.127 0.423334,-0.127 l -0.05927,1.185334 q -0.414867,-0.0508 -0.7112,0.135467 -0.296334,0.186266 -0.4572,0.491067 -0.160867,0.3048 -0.160867,0.626533 v 1.447801 h -1.176867 v -3.699935 z"
id="path341" />
<path
d="m 62.333215,26.029733 h 1.185334 v 3.699935 h -1.185334 z m -0.0254,-1.312334 q 0,-0.262467 0.2032,-0.4318 0.211667,-0.169334 0.448734,-0.169334 0.237067,0 0.4318,0.169334 0.2032,0.169333 0.2032,0.4318 0,0.262467 -0.2032,0.4318 -0.194733,0.160867 -0.4318,0.160867 -0.237067,0 -0.448734,-0.160867 -0.2032,-0.169333 -0.2032,-0.4318 z"
id="path343" />
<path
d="m 66.651221,31.592335 q -0.499534,0 -0.846667,-0.118533 -0.338667,-0.118534 -0.575734,-0.287867 -0.237067,-0.169333 -0.423333,-0.321734 l 0.694267,-0.8128 q 0.194733,0.1778 0.448733,0.338667 0.262467,0.169333 0.6858,0.169333 0.279401,0 0.516467,-0.1016 0.245534,-0.09313 0.389467,-0.2794 0.1524,-0.186267 0.1524,-0.465667 v -0.8128 l 0.04233,0.211667 q -0.135467,0.287867 -0.491067,0.508 -0.3556,0.211667 -0.931334,0.211667 -0.499534,0 -0.931334,-0.254 -0.423333,-0.262467 -0.677333,-0.702734 -0.254,-0.448734 -0.254,-1.016 0,-0.584201 0.270933,-1.032934 0.270933,-0.4572 0.702734,-0.719667 0.4318,-0.262467 0.9144,-0.262467 0.4826,0 0.829734,0.143934 0.3556,0.135466 0.5334,0.338666 l -0.04233,0.110067 0.127,-0.4064 h 1.0922 v 3.699935 q 0,0.541867 -0.3048,0.956733 -0.3048,0.423334 -0.8128,0.660401 -0.499534,0.245533 -1.109134,0.245533 z m -1.007534,-3.767668 q 0,0.296333 0.135467,0.5334 0.135467,0.237067 0.364067,0.372534 0.237066,0.135466 0.524933,0.135466 0.245534,0 0.4318,-0.05927 0.194734,-0.06773 0.338667,-0.186267 0.1524,-0.127 0.254,-0.313267 v -0.905934 q -0.0762,-0.186266 -0.2286,-0.313266 -0.1524,-0.135467 -0.3556,-0.2032 -0.194733,-0.0762 -0.440267,-0.0762 -0.287867,0 -0.524933,0.135466 -0.2286,0.127 -0.364067,0.3556 -0.135467,0.2286 -0.135467,0.524934 z"
id="path345" />
<path
d="m 70.097149,26.029733 h 1.185334 v 3.699935 h -1.185334 z m -0.0254,-1.312334 q 0,-0.262467 0.2032,-0.4318 0.211667,-0.169334 0.448734,-0.169334 0.237067,0 0.4318,0.169334 0.2032,0.169333 0.2032,0.4318 0,0.262467 -0.2032,0.4318 -0.194733,0.160867 -0.4318,0.160867 -0.237067,0 -0.448734,-0.160867 -0.2032,-0.169333 -0.2032,-0.4318 z"
id="path347" />
<path
d="m 73.576956,26.029733 0.09313,0.6604 -0.01693,-0.05927 q 0.194733,-0.347133 0.550333,-0.5588 0.3556,-0.220133 0.872067,-0.220133 0.524934,0 0.872067,0.313267 0.3556,0.3048 0.364067,0.795867 v 2.768601 h -1.185334 v -2.328335 q -0.0085,-0.245533 -0.135467,-0.389466 -0.118533,-0.1524 -0.4064,-0.1524 -0.270933,0 -0.474133,0.1778 -0.2032,0.1778 -0.313267,0.4826 -0.110067,0.3048 -0.110067,0.702733 v 1.507068 h -1.185334 v -3.699935 z"
id="path349" />
<path
d="m 79.088755,29.831268 q -0.516467,0 -0.9398,-0.2032 -0.414867,-0.211667 -0.6604,-0.643467 -0.245534,-0.4318 -0.245534,-1.100667 0,-0.626534 0.254,-1.083734 0.254,-0.4572 0.668867,-0.702734 0.414867,-0.254 0.880534,-0.254 0.550334,0 0.829734,0.186267 0.287866,0.1778 0.474133,0.397933 l -0.0508,0.143934 0.110067,-0.541867 h 1.100667 v 3.699935 h -1.185334 v -0.804334 l 0.09313,0.254 q -0.01693,0 -0.1016,0.1016 -0.08467,0.09313 -0.254001,0.2286 -0.160866,0.127 -0.4064,0.220134 -0.237067,0.1016 -0.567267,0.1016 z m 0.338667,-0.965201 q 0.211667,0 0.381,-0.05927 0.169334,-0.06773 0.296334,-0.186267 0.127,-0.127 0.220133,-0.313267 v -0.905934 q -0.06773,-0.186266 -0.2032,-0.313266 -0.135467,-0.135467 -0.321733,-0.2032 -0.186267,-0.0762 -0.414867,-0.0762 -0.254,0 -0.474134,0.135466 -0.211666,0.127 -0.338667,0.3556 -0.127,0.2286 -0.127,0.524934 0,0.296333 0.135467,0.5334 0.135467,0.237067 0.3556,0.372534 0.2286,0.135466 0.491067,0.135466 z"
id="path351" />
<path
d="m 82.729428,23.049465 h 1.185334 v 6.680203 h -1.185334 z"
id="path353" />
</g>
</g>
<g
id="g1525"
transform="translate(-1.0583333)">
<g
id="g1308"
transform="translate(-3.1325529,1.1054134)">
<rect
style="opacity:0.75462;fill:#7bf8ff;fill-opacity:1;stroke:#4d4d4d;stroke-width:1.45481;stroke-opacity:1"
id="rect234-3"
width="54.818588"
height="17.637238"
x="154.45401"
y="19.83519"
ry="5.128902" />
</g>
<g
aria-label="transformed"
id="text853"
style="font-weight:bold;font-size:8.46667px;font-family:'Josefin Sans';-inkscape-font-specification:'Josefin Sans Bold';text-align:center;text-anchor:middle;opacity:0.75462;stroke-width:0.996">
<path
d="m 154.9521,27.722987 h 1.18533 v 1.608668 h 0.89747 v 0.922867 h -0.89747 v 2.794001 h -1.18533 v -2.794001 h -0.57573 v -0.922867 h 0.57573 z"
id="path316" />
<path
d="m 159.00763,29.348588 0.11006,1.016001 -0.0254,-0.152401 q 0.16087,-0.3302 0.44027,-0.5588 0.2794,-0.237066 0.55034,-0.364067 0.2794,-0.127 0.42333,-0.127 l -0.0593,1.185334 q -0.41486,-0.0508 -0.7112,0.135467 -0.29633,0.186267 -0.4572,0.491067 -0.16087,0.3048 -0.16087,0.626533 v 1.447801 h -1.17686 v -3.699935 z"
id="path318" />
<path
d="m 162.84303,33.150123 q -0.51646,0 -0.9398,-0.2032 -0.41486,-0.211667 -0.6604,-0.643467 -0.24553,-0.4318 -0.24553,-1.100667 0,-0.626534 0.254,-1.083734 0.254,-0.4572 0.66887,-0.702733 0.41486,-0.254001 0.88053,-0.254001 0.55033,0 0.82973,0.186267 0.28787,0.1778 0.47414,0.397934 l -0.0508,0.143933 0.11006,-0.541867 h 1.10067 v 3.699935 h -1.18533 v -0.804334 l 0.0931,0.254 q -0.0169,0 -0.1016,0.1016 -0.0847,0.09313 -0.254,0.228601 -0.16087,0.127 -0.4064,0.220133 -0.23707,0.1016 -0.56727,0.1016 z m 0.33867,-0.9652 q 0.21167,0 0.381,-0.05927 0.16933,-0.06773 0.29633,-0.186267 0.127,-0.127 0.22014,-0.313267 v -0.905933 q -0.0677,-0.186267 -0.2032,-0.313267 -0.13547,-0.135467 -0.32174,-0.2032 -0.18626,-0.0762 -0.41486,-0.0762 -0.254,0 -0.47414,0.135467 -0.21166,0.127 -0.33866,0.3556 -0.127,0.2286 -0.127,0.524933 0,0.296334 0.13546,0.5334 0.13547,0.237067 0.3556,0.372534 0.2286,0.135467 0.49107,0.135467 z"
id="path320" />
<path
d="m 167.55897,29.348588 0.0931,0.6604 -0.0169,-0.05927 q 0.19474,-0.347134 0.55034,-0.558801 0.3556,-0.220133 0.87206,-0.220133 0.52494,0 0.87207,0.313267 0.3556,0.3048 0.36407,0.795867 v 2.768601 h -1.18534 v -2.328334 q -0.008,-0.245534 -0.13546,-0.389467 -0.11854,-0.1524 -0.4064,-0.1524 -0.27094,0 -0.47414,0.1778 -0.2032,0.1778 -0.31326,0.4826 -0.11007,0.3048 -0.11007,0.702734 v 1.507067 h -1.18534 v -3.699935 z"
id="path322" />
<path
d="m 172.71517,33.124723 q -0.4572,0 -0.85513,-0.160867 -0.38947,-0.160866 -0.6604,-0.448733 l 0.49107,-0.651934 q 0.27093,0.245534 0.49953,0.3556 0.23707,0.1016 0.42333,0.1016 0.14394,0 0.254,-0.0254 0.11854,-0.03387 0.18627,-0.09313 0.0677,-0.06773 0.0677,-0.169333 0,-0.143934 -0.11853,-0.228601 -0.11007,-0.08467 -0.28787,-0.135466 -0.1778,-0.05927 -0.381,-0.118534 -0.508,-0.160866 -0.7366,-0.465666 -0.22013,-0.313267 -0.22013,-0.677334 0,-0.2794 0.14393,-0.5588 0.1524,-0.287867 0.47414,-0.474134 0.3302,-0.194733 0.84666,-0.194733 0.46567,0 0.7874,0.09313 0.32174,0.09313 0.6096,0.3048 l -0.44873,0.694267 q -0.16087,-0.127 -0.36407,-0.211667 -0.19473,-0.09313 -0.36406,-0.1016 -0.1524,-0.0085 -0.26247,0.03387 -0.1016,0.04233 -0.16087,0.110067 -0.0593,0.06773 -0.0593,0.143933 -0.008,0.160867 0.11853,0.254 0.13547,0.09313 0.33867,0.143934 0.2032,0.0508 0.39793,0.118533 0.27093,0.08467 0.46567,0.2286 0.19473,0.143934 0.29633,0.347134 0.11007,0.194733 0.11007,0.474133 0,0.338667 -0.1778,0.643467 -0.16934,0.296333 -0.52494,0.4826 -0.34713,0.186267 -0.889,0.186267 z"
id="path324" />
<path
d="m 175.65311,33.048523 v -2.667001 h -0.62653 v -1.049867 h 0.62653 v -1.286934 q 0,-0.728134 0.41487,-1.185334 0.42333,-0.465667 1.2192,-0.465667 0.23707,0 0.52493,0.0762 0.29634,0.06773 0.51647,0.2286 l -0.49953,0.855134 q -0.0847,-0.110067 -0.2032,-0.143933 -0.11007,-0.04233 -0.21167,-0.04233 -0.254,0 -0.41487,0.169334 -0.16086,0.169333 -0.16086,0.541867 v 1.253067 h 1.1176 v 1.049867 h -1.1176 v 2.667001 z"
id="path326" />
<path
d="m 178.43865,31.151989 q 0,-0.567267 0.26247,-1.016001 0.27093,-0.448733 0.75353,-0.702733 0.4826,-0.262467 1.10914,-0.262467 0.635,0 1.10066,0.262467 0.46567,0.254 0.7112,0.702733 0.254,0.448734 0.254,1.016001 0,0.567267 -0.254,1.024467 -0.24553,0.448733 -0.7112,0.7112 -0.46566,0.262467 -1.1176,0.262467 -0.6096,0 -1.0922,-0.237067 -0.47413,-0.237067 -0.74506,-0.6858 -0.27094,-0.448734 -0.27094,-1.075267 z m 1.1938,0.0085 q 0,0.287866 0.11854,0.524933 0.11853,0.2286 0.32173,0.364067 0.2032,0.135467 0.4572,0.135467 0.2794,0 0.4826,-0.135467 0.2032,-0.135467 0.31327,-0.364067 0.11006,-0.237067 0.11006,-0.524933 0,-0.296334 -0.11006,-0.524934 -0.11007,-0.2286 -0.31327,-0.364067 -0.2032,-0.135467 -0.4826,-0.135467 -0.254,0 -0.4572,0.135467 -0.2032,0.135467 -0.32173,0.364067 -0.11854,0.2286 -0.11854,0.524934 z"
id="path328" />
<path
d="m 184.62778,29.348588 0.11007,1.016001 -0.0254,-0.152401 q 0.16086,-0.3302 0.44026,-0.5588 0.2794,-0.237066 0.55034,-0.364067 0.2794,-0.127 0.42333,-0.127 l -0.0593,1.185334 q -0.41486,-0.0508 -0.7112,0.135467 -0.29633,0.186267 -0.4572,0.491067 -0.16086,0.3048 -0.16086,0.626533 v 1.447801 h -1.17687 v -3.699935 z"
id="path330" />
<path
d="m 188.10758,29.348588 0.0931,0.651934 -0.0169,-0.0508 q 0.22013,-0.372534 0.55033,-0.575734 0.3302,-0.211667 0.79587,-0.211667 0.3048,0 0.5334,0.08467 0.23707,0.08467 0.39793,0.254 0.16087,0.160867 0.22014,0.423334 l -0.0423,0.0085 q 0.23707,-0.347133 0.56727,-0.5588 0.33867,-0.211667 0.70273,-0.211667 0.55034,0 0.87207,0.313267 0.3302,0.3048 0.33867,0.795867 v 2.777068 h -1.17687 v -2.286001 q -0.008,-0.245533 -0.0762,-0.397933 -0.0677,-0.160867 -0.31327,-0.177801 -0.28786,0 -0.49106,0.203201 -0.19474,0.194733 -0.29634,0.508 -0.0931,0.3048 -0.0931,0.635 v 1.515534 h -1.18533 v -2.286001 q -0.008,-0.245533 -0.0931,-0.397933 -0.0762,-0.160867 -0.32173,-0.177801 -0.2794,0 -0.47413,0.203201 -0.18627,0.194733 -0.28787,0.499533 -0.0931,0.3048 -0.0931,0.626534 v 1.532467 h -1.18534 v -3.699935 z"
id="path332" />
<path
d="m 196.15939,33.150123 q -0.67733,0 -1.15147,-0.254 -0.46566,-0.254 -0.7112,-0.702734 -0.24553,-0.448733 -0.24553,-1.032933 0,-0.558801 0.28787,-1.007534 0.28786,-0.448734 0.77046,-0.7112 0.4826,-0.270934 1.07527,-0.270934 0.79587,0 1.30387,0.465667 0.51646,0.4572 0.66886,1.329267 l -2.87866,0.9144 -0.26247,-0.643466 2.0828,-0.702734 -0.24553,0.110067 q -0.0677,-0.220134 -0.24554,-0.381 -0.16933,-0.169334 -0.51646,-0.169334 -0.26247,0 -0.46567,0.127 -0.19473,0.118534 -0.3048,0.347134 -0.1016,0.220133 -0.1016,0.524933 0,0.347134 0.127,0.5842 0.127,0.2286 0.34713,0.347134 0.22014,0.118533 0.49107,0.118533 0.19473,0 0.37253,-0.06773 0.18627,-0.06773 0.36407,-0.1778 l 0.52493,0.880534 q -0.29633,0.169333 -0.64346,0.270933 -0.33867,0.1016 -0.64347,0.1016 z"
id="path334" />
<path
d="m 200.52819,33.150123 q -0.51647,0 -0.92287,-0.237067 -0.4064,-0.245533 -0.64347,-0.702733 -0.2286,-0.457201 -0.2286,-1.083734 0,-0.626534 0.254,-1.066801 0.254,-0.440266 0.69427,-0.668867 0.44027,-0.2286 0.99907,-0.2286 0.3556,0 0.67733,0.110067 0.3302,0.110067 0.55033,0.338667 v 0.372533 -3.615268 h 1.17687 v 6.680203 h -1.18533 v -0.719667 l 0.0931,0.254 q -0.28787,0.237067 -0.64347,0.4064 -0.3556,0.160867 -0.82126,0.160867 z m 0.38946,-0.999067 q 0.23707,0 0.41487,-0.05927 0.18627,-0.06773 0.32173,-0.186267 0.14394,-0.127 0.24554,-0.313266 v -0.905934 q -0.0677,-0.186267 -0.21167,-0.313267 -0.13547,-0.135467 -0.33867,-0.2032 -0.19473,-0.0762 -0.4318,-0.0762 -0.26246,0 -0.49106,0.135467 -0.22014,0.127 -0.3556,0.3556 -0.13547,0.2286 -0.13547,0.524934 0,0.296333 0.13547,0.5334 0.13546,0.237066 0.3556,0.372533 0.2286,0.135467 0.49106,0.135467 z"
id="path336" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -31,6 +31,7 @@
\usepackage[backend=biber,style=numeric]{biblatex}
\usepackage{hyperref}
\usepackage{array}
\usepackage{arydshln}
\usepackage[lighttt]{lmodern}
\usetikzlibrary{shapes.geometric,positioning,backgrounds}
@ -84,6 +85,9 @@
\newcommand\Con{{\ensuremath{\operatorname{Con}}}}
\newcommand\Ty{{\ensuremath{\operatorname{Ty}}}}
\newcommand\Tm{{\ensuremath{\operatorname{Tm}}}}
\newcommand\XCon{{\ensuremath{\operatorname{\mathbf{Con}}}}}
\newcommand\XTy{{\ensuremath{\operatorname{\mathbf{Ty}}}}}
\newcommand\XTm{{\ensuremath{\operatorname{\mathbf{Tm}}}}}
\newcommand\Cstr{{\ensuremath{\operatorname{\mathcal{C}str}}}}
\newcommand\Rtsc{{\ensuremath{\operatorname{\mathcal{R}tsc}}}}
\newcommand\Cat{{\ensuremath{\operatorname{\mathcal{C}at}}}}
@ -186,4 +190,4 @@
\pdfpcnote{#1}
\tableofcontents[currentsection,hideothersubsections,sections=\value{section}]
\end{frame}
}
}